Android 默认首选项 xml 文件格式
我似乎是互联网上唯一无法弄清楚这一点的人,但是当我使用
PreferenceManager.setDefaultValues(this, R.xml.preference, false);
默认设置的 XML 文件的语法时。我只是想将两个首选项设置为 true。
我已经尝试过正常的 android 字符串资源格式,但似乎没有任何效果。提前致谢。
I appear to be the only person on the internet who can't figure this out, but when I use
PreferenceManager.setDefaultValues(this, R.xml.preference, false);
what is the syntax of the XML file for the default settings. I simply want to set two preferences to true.
I have tried the normal android string resource format, but nothing seems to work. Thanks ahead of time.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 android:defaultValue 像这样:
Use android:defaultValue like so:
你不是唯一不知道这一点的人。甚至我还在努力了解 XML 的文件格式。终于我找到了答案!就这样吧!
You are not the only person who doesn't know this. Even am struggling to know the file format of the XML. Finally i found the answer! There you go!
默认设置的 XML 文件的语法是什么。我只是想将两个首选项设置为 true。
为此,只需将默认值设置为
true
无论您在首选项 xml 文件中提供的默认值,都将是放。
what is the syntax of the XML file for the default settings. I simply want to set two preferences to true.
For this just set default value to
true
Whatever default values you have provided in preference xml file, that will be set.