我有一个方法如下:
public static void addHighligtedDate(String date){
prefs = context.getSharedPreferences(Fields.SHARED_PREFS_FILE, 0);
Set<String> highlightedDates = prefs.getStringSet(Fields.HIGHLIGHTED_DATES, new HashSet<String>());
highlightedDates.add(date);
SharedPreferences.Editor editor = prefs.edit();
editor.putStringSet(Fields.HIGHLIGHTED_DATES, highlightedDates);
editor.commit();
}
现在的情况如下:
当我打开应用程序添加要突出显示的日期时,它们会突出显示,因为SharedPreferences包含值。当我按下主页按钮退出应用程序并返回时,值仍然存在。
然而,当应用程序从最近删除时,值会消失。这是正常行为还是我做错了什么?
浏览文档:
此数据将持续跨用户会话(即使您的应用程序 被杀了)
答案 0 :(得分:3)
SharedPreferences
始终与应用卸载一起删除。
当您卸载任何应用程序时,应用程序在内部存储器中所做的所有更改都将被撤消,这意味着您的 SharedPreference文件,其他数据文件,数据库文件,应用程序会被Android操作系统自动删除
检查 - how-to-remove-shared-preference-while-application-uninstall-in-android。
<强>更新强>
但是,当应用程序被终止或关闭时,SharedPreferences
的值仍然存在。您的代码中存在一些问题。
将方法更改为 -
public static void addHighligtedDate(String date){
prefs = context.getSharedPreferences(Fields.SHARED_PREFS_FILE, 0);
Set<String> highlightedDates = prefs.
getStringSet(Fields.HIGHLIGHTED_DATES, new HashSet<String>());
highlightedDates.add(date);
SharedPreferences.Editor editor = prefs.edit();
editor.clear();
editor.putStringSet(Fields.HIGHLIGHTED_DATES, highlightedDates);
editor.commit();
}
<强>更新强>
public abstract Set getStringSet (String key,Set defValues)
从首选项中检索一组String值。
请注意,您不得修改此调用返回的set实例。 如果您这样做,则无法保证存储数据的一致性 你根本无法修改实例。
<强>参数强>
key 要检索的首选项的名称。
defValues 如果此首选项不存在,则返回值。
同时寻找参考资料 - sharedpreferences-does-not-save-on-force-close。