如何在首次运行时将checkbox的值设置为false。
答案 0 :(得分:0)
CheckBox ch = (CheckBox) findViewById(R.id.checkBox1);
ch.setChecked(false);
and
ch.setChecked(true);
答案 1 :(得分:0)
您可以在活动onCreate()方法中初始化您的复选框。覆盖onCreate()并执行类似
的操作 CheckBox android = (CheckBox) findViewById(R.id.checkBox1);
android.setChecked(false);
如果您想了解有关Android活动生命周期的更多信息,请查看Android API中的教程:
http://developer.android.com/training/basics/activity-lifecycle/starting.html#Create
你有onCreate()方法的完整示例。