checkBox中的setChecked返回java.lang.NullPointerException

时间:2013-10-23 15:37:54

标签: java android

我希望你能帮助我。我有一个带有checkBox控件的XML,我希望将其更改为代码检查。

当Android Studio编译时,代码在“cb.setChecked(true)”中出错。致命异议:主要     显示java.lang.NullPointerException

CheckBox cb = (CheckBox) findViewById(R.id.checkBox);
cb.setChecked(true);

XML文件。

<?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="wrap_content"
          android:background="#ff8989"
          android:id="@+id/backColor"
          android:divider="@drawable/ic_launcher"
          android:longClickable="true">

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="20dp">

    <CheckBox
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/checkBox"
        android:layout_gravity="left|top"
        android:checked="false"/>

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:text="..."
        android:id="@+id/txt_tarea"
        android:paddingLeft="10dp"
        android:textSize="15sp"/>

    </LinearLayout>
</LinearLayout>

感谢。

1 个答案:

答案 0 :(得分:2)

请检查您提供给findViewById的ID。它是否存在于layout.xml中。在调用之前,还必须使用该布局文件对视图进行膨胀。请验证这些要点,我认为您的问题将得到解决。