SharedPreferences在android活动之间保存状态,但在重新启动应用程序时不保存



我正在使用SharedPreferences运行一个非常奇怪的行为。我想知道我是否遇到了同步问题。

应用程序似乎能记住活动之间的偏好变化,但当我重新启动应用程序时却记不住。状态总是返回到我创建首选项的第一个实例。我遵循了几个示例、教程和android文档,它们都建议使用类似的代码布局。我还观察了preference.xml文件在使用调试器与代码交互时的变化,并确认它看起来像是更新了键值对。

我的模拟器可能出现同步问题吗?我尝试使用editor.apply((方法和editor.commit((方法,结果相同。我发现唯一能解决问题的是使用editer.clear((方法,但这感觉有点麻烦。。。

注意:请原谅变量名,我正在制作一个pokedex。。。

public class SecondActivity extends AppCompatActivity {
private boolean caught;
private Set<String> pokemonCaught;
private String pokemonName;
public SharedPreferences sharedPreferences;
public static final String SHARED_PREFERENCES = "shared_preferences";
public static final String PREF_KEY = "inCaughtState";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_second);
/*SKIPPING THE VIEW SETUP*/
/*SKIPPING BUTTON VIEW ATTRIBUTES*/
//variables required for changing button state
pokemonName = (String) nameTextView.getText();
caught = false;
//Loading in sharedPreferences
sharedPreferences =
getSharedPreferences(SHARED_PREFERENCES, Context.MODE_PRIVATE);
pokemonCaught = sharedPreferences.getStringSet(PREF_KEY, new HashSet<String>());
if (pokemonCaught.contains(pokemonName)) {
toggleCatch(catchButton);
}
}
public void toggleCatch (View view) {
//Editing and updating preferences
sharedPreferences =
getSharedPreferences(SHARED_PREFERENCES, Context.MODE_PRIVATE);
SharedPreferences.Editor editor = sharedPreferences.edit();
if (caught == true) {
/*SKIPPING BUTTON ATTRIBUTES*/
caught = false;
pokemonCaught.remove(pokemonName);
}
else {
/*SKIPPING BUTTON ATTRIBUTES*/
caught = true;
pokemonCaught.add(pokemonName);
}
editor.clear(); //This is my hacky solution...
editor.putStringSet(PREF_KEY, pokemonCaught);
editor.apply();
}
}

尝试以这种方式使用SharedPreferences:

保存数据

SharedPreferences.Editor editor = getSharedPreferences("PREFS", MODE_PRIVATE).edit();
editor.putString("stringName", "stringValue");
editor.apply();

检索数据

SharedPreferences preferences = getApplicationContext().getSharedPreferences("PREFS", MODE_PRIVATE);
String name = preferences.getString("stringName", "none"));

请注意,如果字符串"stringName"为null,则此"none"为空。

相关内容

  • 没有找到相关文章

最新更新