我在切换按钮上打开服务并使用它停止。
现在我想在服务按钮开启后保存状态。
我不知道如何在不影响我的代码的情况下做到这一点。
这是我的Toggle Button代码
prefs = PreferenceManager.getDefaultSharedPreferences(this);
edit = prefs.edit();
tb = (ToggleButton) findViewById(R.id.toggleButton1);
tb.setOnCheckedChangeListener(this);
public void onCheckedChanged(CompoundButton arg0, boolean arg1) {
if (arg1) {
edit.putBoolean("main_state", arg1);
// startService(new Intent(MainActivity.this, Unlock_hud.class));
} else {
edit.putBoolean("main_state", arg1);
}
edit.commit();
}
那我怎么能保存这个Toggle Button的状态呢。
提前感谢。