-1

これで私を助けてくれることを願っています。チェックボックス コントロールを持つ XML があり、それをコードでチェックするように変更したいと考えています。

Android Studio をコンパイルすると、コードの「cb.setChecked(true)」にエラーが発生します。致命的な例外: main 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 に答える