您好我需要知道如何以编程方式设置值.
我正在使用该代码
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this); . . . SharedPreferences.Editor geted = prefs.edit(); geted.putBoolean("checkBox_Schedule",false); geted.commit();
但我没有看到任何变化
<CheckBoxPreference android:defaultValue="false" android:dependency="checkBox" android:key="checkBox_Schedule" android:summary="On/Off" android:title="Schedule" />
一种解决方案是做
startActivity(new Intent(SetPreference.this,SetPreference.class));
但这不是我想要做的.