android textview settext显示nullpointer异常

时间:2010-03-02 07:32:01

标签: android textview

<TextView
android:id="@+id/first_name"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@color/black"
android:textColor="@color/light_grey"
android:text="FirstName"
></TextView>

TextView first_text_view;

first_text_view = (TextView)this.findViewById(R.id.first_name);
try {
first_text_view.setText("Android");
}catch(Exception e) {
}

我得到了nullpointer异常。

这是什么解决方案。请回复我

1 个答案:

答案 0 :(得分:6)

好吧,似乎findViewById返回null。可能就是这种情况,因为this没有引用该活动,或者您没有将视图分配到onCreate中的活动(您必须在setContentView中调用onCreate })。