我正在尝试动态更改我的复选框。 由于某种原因,该应用程序抛出了我的异常。 我究竟做错了什么? 这是我的java代码:
package com.school.commtest;
import android.app.Activity;
import android.os.Bundle;
import android.widget.CheckBox;
import android.widget.TableLayout;
import android.widget.TableRow;
public class OtherPlacesMenu extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
CheckBox c1 = (CheckBox)this.findViewById(R.id.schools);
c1.setChecked(true);
setContentView(R.layout.otherplacesmenu);
}
}
这是xml:
<?xml version="1.0" encoding="utf-8"?>
<TableLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/table">
<TableRow android:layout_height="fill_parent" android:layout_width="wrap_content" android:id="@+id/tableRow1">
<CheckBox android:text="School" android:id="@+id/schools" android:layout_width="wrap_content" android:layout_height="wrap_content"></CheckBox>
</TableRow>
<TableRow android:layout_height="fill_parent" android:layout_width="wrap_content" android:id="@+id/tableRow2">
<CheckBox android:text="Supermaker" android:layout_height="wrap_content" android:id="@+id/supermarkets" android:layout_width="wrap_content"></CheckBox>
</TableRow>
<TableRow android:layout_height="fill_parent" android:layout_width="wrap_content" android:id="@+id/tableRow3">
<CheckBox android:text="Gardens" android:layout_height="wrap_content" android:id="@+id/gardens" android:layout_width="wrap_content"></CheckBox>
</TableRow>
</TableLayout>
我确定这是一个简单的问题,但我无法在任何地方找到答案。 附: 我无法在xml中将复选框的值设置为true,因为我稍后想要更改用户设置中的复选框。 10倍!
答案 0 :(得分:1)
通常你应该在提出这样的问题时发布异常消息,但看起来问题是你在findViewById
之前尝试setContentView
。找不到您的视图。