我正在创建一个类似于4pics1word的安卓游戏。
我目前的状态游戏:
我的问题是:
是否可以解决所述问题?
代码段将是一个biiiig帮助。
你可以帮帮我吗?非常感谢你。答案 0 :(得分:0)
SharedPreferences值将在用户会话中保持不变。即使用户关闭了应用程序,共享首选项中的数据也将保持不变。
您可以使用getSharedPreferences()方法从共享首选项中获取值。 您还需要一个编辑器来编辑和保存共享首选项中的更改。
以下是存储和检索班级名称的简单代码:
/******* Store the class name using SharedPreferences *******/
SharedPreferences pref = PreferenceManager.getDefaultSharedPreferences(context);
Editor editor = pref.edit();
editor.putString("any_key", "YourActivityName"); // Saving string
editor.commit(); // commit changes
//retrive the class name..
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
String myactivity_name = prefs.getString("any_key", "DefaultActivityName"); // if no value in your key "DefaultActivityName" return. else your saved activity name returns.