我是android / java的新手,所以请多多包涵。我的代码之前运行良好,但是自从我添加了for()循环以来,我一直在获取NullPointerException。有任何想法吗?
public class PreferencesActivity extends Activity {
SharedPreferences settings;
SharedPreferences.Editor editor;
static CheckBox box, box2;
private final static CheckBox[] boxes={box, box2};
private final static String[] checkValues={"checked1", "checked2"};
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
box=(CheckBox)findViewById(R.id.checkBox);
box2=(CheckBox)findViewById(R.id.checkBox2);
settings= getSharedPreferences("MyBoxes", 0);
editor = settings.edit();
if(settings != null){
for(int i =0;i<boxes.length; i++)
boxes[i].setChecked(settings.getBoolean(checkValues[i], false));
}
}
@Override
protected void onStop(){
super.onStop();
for(int i = 0; i <boxes.length; i++){
boolean checkBoxValue = boxes[i].isChecked();
editor.putBoolean(checkValues[i], checkBoxValue);
editor.commit();
}
}
}
最佳答案
您将box
和box2
的值初始化为null
(因为这是未明确分配时的默认值)。然后,在创建Checkbox
数组boxes
时使用这些值。因此,boxes
具有两个空值。然后,您重新分配box
和box2
的值。请注意,这对boxes
数组中的值没有影响。因此,当您尝试访问数组中的值时,将得到一个NullPointerException
。
在为boxes
和box
分配值后,在box2
中设置值。