我正在编写一些代码,可以在屏幕打开时打开或关闭飞行模式(取决于用户选择)。我保留了用户选择的标志(0表示关闭,1表示打开)。但是出于某种原因,无论用户选择什么,选择(airplanei)的值在活动中始终为1。我确定错误发生在我发布的代码中;最有可能错误地使用SharedPreferences。
活动代码: -
protected void airplane(int i) {
// Store flag in SharedPreferences
SharedPreferences flags = this.getSharedPreferences("toggleflags",
MODE_WORLD_READABLE);
SharedPreferences.Editor editor = flags.edit();
if (i == 0)
editor.putInt("airplanei", 0);
else if (i == 1)
flags.edit().putInt("airplanei", 1);
else if (i == -1)
flags.edit().putInt("airplanei", -1);
editor.commit();
}
广播接收器中的代码: -
public class Screen_On extends BroadcastReceiver{
@Override
public void onReceive(final Context context, Intent intent) {
SharedPreferences flag = context.getSharedPreferences("toggleflags", 0);
int i = flag.getInt("airplanei", 1);
if (i == 0) {
//Code to turn airplane mode off
} else if (i == 1) {
//Code to turn airplane mode on
}
}
}
感谢您的时间。
答案 0 :(得分:1)
当(i == 0)使用editor.putInt()和(i == 1)和(i == -1)时,使用flags.edit()。
我相信你应该为他们使用editor.putInt()。
答案 1 :(得分:1)
正如@Matt已经说过你实际上创建了两个Editor
的新实例,但只提交了第一个:
flags.edit().putInt("airplanei", 1); // New editor here
...
flags.edit().putInt("airplanei", -1);
...
editor.commit(); // Commit first editor instance