gpt4 book ai didi

Android:应用一打开就强制关闭

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:07:26 24 4
gpt4 key购买 nike

我正在 Netbeans 上修改 android 并做了一个简单的数学应用程序。在某个地方,应用程序一打开就突然强制关闭(在模拟器上)...我尝试评论托管主要 Activity 的类中的所有代码,但无济于事。由于它没有给我具体的错误信息,我感到有点迷茫。

发生这种情况的原因是什么?

这里是请求的布局文件:

<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView android:id="@+id/result"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text=""/>
<LinearLayout android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content">

<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/number" />
<EditText android:id="@+id/n"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:numeric="decimal"/>
<Button android:id="@+id/calc"
android:text="@string/calculate"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
</LinearLayout>

按照建议我检查了 logcat,这是错误列表

E/AndroidRuntime(  881): Uncaught handler: thread main exiting due to uncaught exception
E/AndroidRuntime( 881): java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{org.me.mathdroid/org.me.mathdroid.MainActivity}: java.lang.NullPointerException
E/AndroidRuntime( 881): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2324)
E/AndroidRuntime( 881): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2417)
E/AndroidRuntime( 881): at android.app.ActivityThread.access$2100(ActivityThread.java:116)
E/AndroidRuntime( 881): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1794)
E/AndroidRuntime( 881): at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime( 881): at android.os.Looper.loop(Looper.java:123)
E/AndroidRuntime( 881): at android.app.ActivityThread.main(ActivityThread.java:4203)
E/AndroidRuntime( 881): at java.lang.reflect.Method.invokeNative(NativeMethod)
E/AndroidRuntime( 881): at java.lang.reflect.Method.invoke(Method.java:521)
E/AndroidRuntime( 881): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:791)
E/AndroidRuntime( 881): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:549)
E/AndroidRuntime( 881): at dalvik.system.NativeStart.main(Native Method)

E/AndroidRuntime( 881): Caused by: java.lang.NullPointerException
E/AndroidRuntime( 881): at android.app.Activity.findViewById(Activity.java:1610)
E/AndroidRuntime( 881): at org.me.mathdroid.MainActivity.<init>(MainActivity.java:22)
E/AndroidRuntime( 881): at java.lang.Class.newInstanceImpl(Native Method)
E/AndroidRuntime( 881): at java.lang.Class.newInstance(Class.java:1472)
E/AndroidRuntime( 881): at android.app.Instrumentation.newActivity(Instrumentation.java:1097)
E/AndroidRuntime( 881): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2316)
E/AndroidRuntime( 881): ... 11 more

最佳答案

这是在手机上还是在模拟器上?我首先要看的是日志。在 Eclipse 中转到 Window > Show View > Other... > Android > LogCat。

您可以通过以下方式在代码中添加自己的调试日志消息

Log.d("Debug", "Informative Log Message.");

如果您能在这里发布您的代码,那将会很有帮助。发布展示错误行为的最小工作代码示例。

关于Android:应用一打开就强制关闭,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1621513/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com