gpt4 book ai didi

java - setText 导致应用程序崩溃

转载 作者:行者123 更新时间:2023-12-02 08:08:09 26 4
gpt4 key购买 nike

我是 Android 开发新手。我不明白为什么这会在模拟器中崩溃,当我在 Android 模拟器上运行这个程序时,它打开然后快速关闭,给我一条“不幸的是, Hello World 已停止”消息。

            public class HelloAndroidActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
TextView t=(TextView)findViewById(R.id.textView1);
t.setText("Secoknd text to display!");

}
}

xml 文件:

            <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:orientation="horizontal" >





<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="38dp"
android:editable="true"
android:text="TextView" />

</LinearLayout>

日志猫:

            10-20 20:07:48.784: D/AndroidRuntime(601): Shutting down VM
10-20 20:07:48.784: W/dalvikvm(601): threadid=1: thread exiting with uncaught exception (group=0x409951f8)
10-20 20:07:48.804: E/AndroidRuntime(601): FATAL EXCEPTION: main
10-20 20:07:48.804: E/AndroidRuntime(601): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.helloandroid/com.example.helloandroid.HelloAndroidActivity}: java.lang.NullPointerException
10-20 20:07:48.804: E/AndroidRuntime(601): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1955)
10-20 20:07:48.804: E/AndroidRuntime(601): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1980)
10-20 20:07:48.804: E/AndroidRuntime(601): at android.app.ActivityThread.access$600(ActivityThread.java:122)
10-20 20:07:48.804: E/AndroidRuntime(601): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1146)
10-20 20:07:48.804: E/AndroidRuntime(601): at android.os.Handler.dispatchMessage(Handler.java:99)
10-20 20:07:48.804: E/AndroidRuntime(601): at android.os.Looper.loop(Looper.java:137)
10-20 20:07:48.804: E/AndroidRuntime(601): at android.app.ActivityThread.main(ActivityThread.java:4340)
10-20 20:07:48.804: E/AndroidRuntime(601): at java.lang.reflect.Method.invokeNative(Native Method)
10-20 20:07:48.804: E/AndroidRuntime(601): at java.lang.reflect.Method.invoke(Method.java:511)
10-20 20:07:48.804: E/AndroidRuntime(601): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
10-20 20:07:48.804: E/AndroidRuntime(601): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
10-20 20:07:48.804: E/AndroidRuntime(601): at dalvik.system.NativeStart.main(Native Method)
10-20 20:07:48.804: E/AndroidRuntime(601): Caused by: java.lang.NullPointerException
10-20 20:07:48.804: E/AndroidRuntime(601): at com.example.helloandroid.HelloAndroidActivity.onCreate(HelloAndroidActivity.java:16)
10-20 20:07:48.804: E/AndroidRuntime(601): at android.app.Activity.performCreate(Activity.java:4465)
10-20 20:07:48.804: E/AndroidRuntime(601): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1049)
10-20 20:07:48.804: E/AndroidRuntime(601): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1919)
10-20 20:07:48.804: E/AndroidRuntime(601): ... 11 more
10-20 20:12:48.894: I/Process(601): Sending signal. PID: 601 SIG: 9

最佳答案

如果您提供的代码中 TextView 为 null,则您必须设置错误的布局 ID。您的代码示例具有 setContentView(R.layout.main);。您提供的 xml 是否可能来自 main.xml 以外的文件?

关于java - setText 导致应用程序崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7841631/

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