如何在 PreferenceActivity 第一次启动时显示 defaultValues?

发布于 2024-09-12 14:06:16 字数 207 浏览 10 评论 0原文

我已在 xml 文件、preferences.xml 中定义了我的首选项。我还有一个扩展 PreferenceActivity 的 SettingsWindow 类。我已在 xml 文件中的首选项中设置了 android:defaultValue 属性,但它们在应用程序首次启动时不会出现。如何在第一次启动 Activity 时将 xml 文件中定义的默认值加载到 SettingsWindow 中?

I've defined my preferences in an xml file, preferences.xml. I've also got a SettingsWindow class which extends PreferenceActivity. I've set the android:defaultValue attribute on my preferences in the xml file but they don't appear the first time the app is launched. How do I load the default values defined in the xml file into the SettingsWindow the first time the activity is launched?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

千年*琉璃梦 2024-09-19 14:06:16

弄清楚发生了什么事。我已经定义了偏好设置.xml 文件和关联的 PreferenceActivity ,但没有指定默认值,并在模拟器中运行它。后来,我将 defaultValue 标记添加到 xml 文件中。当我部署到模拟器时,这不是第一次加载首选项,因此跳过了 defaultValue。删除应用程序的数据并卸载\重新安装应用程序解决了该问题。

Figured out what's going on. I had defined my preferences.xml file and associated PreferenceActivity without specifying defaults and ran that in the emulator. Later on, I added the defaultValue tags to the xml file. When I deployed to the emulator, it wasn't the first time the preferences had been loaded so the defaultValues were skipped. Deleting the app's data and uninstalling\reinstalling the app fixed the issue.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文