未设置文件名时读取 SharedPreferences
当您在 Android 上创建 PreferenceScreen 时,您的应用程序会为设置创建默认的 SharedPreferences 文件。 我想阅读这个名字,或者在不指定名字的情况下获得参考。
目前我使用:
SharedPreferences prefs = ctx.getSharedPreferences("prefs", 0);
SharedPreferences.Editor ed=prefs.edit();
但这会返回首选项的另一个副本。当我检查 /data/data/myapk/shared_prefs 中的文件夹时,
我看到两个文件,一个名为 prefs.xml,另一个是我的 [package name]_preferences.xml (这是由 PreferenceActivity 创建的);
如何使用默认文件名获取共享首选项的实例,这样我就不应该提及它的名称?
When you createa a PreferenceScreen on Android, your application creates a default SharedPreferences file for the settings.
I want to read this name, or get a reference without specifing the name.
Currently I use:
SharedPreferences prefs = ctx.getSharedPreferences("prefs", 0);
SharedPreferences.Editor ed=prefs.edit();
But this returns another copy of the preference. When I checked the folder in /data/data/myapk/shared_prefs
I see two files, one named prefs.xml and the other is my [package name]_preferences.xml (this was created by the PreferenceActivity);
How do I get an instance of the shared preference with the usage of the default file name, so I should not mention a name for it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相当确定你想要
PreferenceManager.getDefaultSharedPreferences(Context context)
。I'm fairly sure you want
PreferenceManager.getDefaultSharedPreferences(Context context)
.