未设置文件名时读取 SharedPreferences

发布于 2024-08-24 12:10:44 字数 461 浏览 9 评论 0原文

当您在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文