android读/写用户首选项

时间:2012-02-29 11:57:41

标签: java android sharedpreferences

我正在将iOS应用程序迁移到android,考虑到iOS,我设置了一个默认的plist文件,其中包含字符串和键,然后使用NSuserDefaults进行修改。我阅读了一些帖子和文档,并没有真正清楚如何在Android中正确地完成它。 我需要一个首字母文件,其中包含我可以读写的键和字符串。谢谢。

1 个答案:

答案 0 :(得分:20)

SharedPreferences settings;
settings = getSharedPreferences("PREF_NAME", Context.MODE_PRIVATE);

//get the sharepref
int id = settings.getInt("ID", 0);

//set the sharedpref
Editor editor = settings.edit();
editor.putInt("ID", "1");
editor.commit();