处理事件时onCreate()方法中的NullPointerException

时间:2012-03-08 14:58:08

标签: android android-layout android-widget

我使用Eclipse创建了一个新的Android项目(用于android 2.3.3),我修改了main.xml文件夹中的res/layout文件,如下所示。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"
    android:gravity="center" >

    <Button android:id="@+id/button01"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/button01_name" />

</LinearLayout>

strings.xml文件夹中的res/values文件如下。

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="app_name">ButtonClickDemo3</string>
    <string name="button01_name">Press this button!</string>

</resources>

最后,这是项目onCreate()的{​​{1}}方法。

Activity

当我运行这个简单的应用程序时,会在@Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); Button button01 = (Button) findViewById(R.id.button01); button01.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Toast toast = Toast.makeText(v.getContext(), "The button was pressed!", Toast.LENGTH_SHORT); toast.show(); } }); setContentView(R.layout.main); } 上抛出NullPointerException。实际上,如果我在创建按钮之前移动button01.setOnClickListener(...)指令,那就是

setContentView(R.layout.main);

该应用程序成功运行。为什么呢?

3 个答案:

答案 0 :(得分:3)

您必须先设置contentView,否则您希望findViewById如何查找视图。这就是你得到一个空指针的原因。 button01是R.layout.main上的视图,因此您必须先设置contentView

答案 1 :(得分:1)

这是因为您在定义按钮时的活动不知道它应该在哪个布局中搜索id / button01

答案 2 :(得分:0)

您的setContentView(R.Layout.main)方法

中缺少

onCreate()