Android:首选项默认值
我有 3 - 4 项活动。其中之一是主要活动,第二个是首选项屏幕。我有一个首选项屏幕,其中包含具有默认值的不同首选项,例如 ListPreference 等。
当我启动项目时如何激活设置的默认值?
默认情况下,它们仅在我启动“设置活动”时激活。不久:我需要在主活动中使用默认值而不调用设置活动。
I have 3 - 4 Activities. One of those is the main activity and a second one is a Preference Screen. I have a preference screen with different Preferences like ListPreference etc that have default values.
How can i activate default Value of Settings when I start my project?
By default, they activate only when I start the Settings Activity. Shortly: I need to use the default value in the main activity without calling the Settings Activity.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我所做的是在我的 Preferences 活动类中有一个静态方法,因此可以从任何地方调用它:
请注意,我的默认值 (true) 是在 getBoolean() 调用中指定的。如果您希望在一处指定所有默认值,则可能需要调用 Preference.setDefaultValue(),而不是在 XML 中进行设置。
What I do is have a static method in my Preferences activity class, so it can be called from anywhere:
Note that my default value (true) is specified here in the getBoolean() call. If you want all the defaults specified in one place, you might need to call Preference.setDefaultValue() rather than setting it in the XML.
如果您使用共享首选项,只需这样设置即可。
还实现 LoadSettings() 和 SaveSettings() 方法,它会正常工作
Just set it like that if you use Shared Preferences.
Also implement LoadSettings() and SaveSettings() methods and it will work fine
使用 SharedPreferences 存储首选项,并将其加载到 MainActivity 中。 SharedPreferences 有 get 方法,您可以传入默认值以在首选项尚不存在时返回。
更新:
主要活动中的代码示例
Store the preferences using SharedPreferences, and load them in your MainActivity. SharedPreferences has get methods that you pass in a default value to return if the preference doesn't yet exist.
Update: Code Example
In your Main Activity
有一个方法可以做到这一点。请参阅文档
在
onCreate中调用它
您的主要活动。它将首选项初始化为存储在 XML 文件中的值。There is a method for this. See the docs
Call it at in the
onCreate
of your main activity. It initializes the preferences to the values stored in your XML file.