-1

我希望你能帮助我解决这个问题。我有一个带有复选框控件的 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>

谢谢。

4

1 回答 1

2

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

于 2013-10-23T15:39:40.133 回答