Android 默认首选项 xml 文件格式

发布于 2024-12-01 09:41:54 字数 222 浏览 1 评论 0原文

我似乎是互联网上唯一无法弄清楚这一点的人,但是当我使用

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

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

发布评论

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

评论(3

孤独陪着我 2024-12-08 09:41:54

使用 android:defaultValue 像这样:

<CheckBoxPreference
        android:key="my_pref"
        android:defaultValue="true"
        android:title="@string/pref_title_my_pref"
        android:summary="@string/pref_summary_my_pref"/>

Use android:defaultValue like so:

<CheckBoxPreference
        android:key="my_pref"
        android:defaultValue="true"
        android:title="@string/pref_title_my_pref"
        android:summary="@string/pref_summary_my_pref"/>
濫情▎り 2024-12-08 09:41:54

你不是唯一不知道这一点的人。甚至我还在努力了解 XML 的文件格式。终于我找到了答案!就这样吧!

<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
    <EditTextPreference android:key="CLIENT_HOMESCREEN_TITLE"
                android:defaultValue="Home Screen"/>
    <EditTextPreference android:key="CLIENT_ADMIN_BUTTON"
                android:defaultValue="Admin"/>
    <EditTextPreference android:key="CLIENT_PLAYER_BUTTON"
                android:defaultValue="Player"/>
    <EditTextPreference android:key="CLIENT_SAVE_BUTTON"
                android:defaultValue="Save"/>
    <EditTextPreference android:key="CLIENT_CANCEL_BUTTON"
                android:defaultValue="Cancel"/>
    <EditTextPreference android:key="CLIENT_SERVER_SETUP_IP"
                android:defaultValue="IP:"/>
    <EditTextPreference android:key="CLIENT_SERVER_SETUP_PORT"
                android:defaultValue="Port:"/>
    <EditTextPreference android:key="CLIENT_SERVER_SETUP_TITLE"
                android:defaultValue="Server Setup"/>
</PreferenceScreen>

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 version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
    <EditTextPreference android:key="CLIENT_HOMESCREEN_TITLE"
                android:defaultValue="Home Screen"/>
    <EditTextPreference android:key="CLIENT_ADMIN_BUTTON"
                android:defaultValue="Admin"/>
    <EditTextPreference android:key="CLIENT_PLAYER_BUTTON"
                android:defaultValue="Player"/>
    <EditTextPreference android:key="CLIENT_SAVE_BUTTON"
                android:defaultValue="Save"/>
    <EditTextPreference android:key="CLIENT_CANCEL_BUTTON"
                android:defaultValue="Cancel"/>
    <EditTextPreference android:key="CLIENT_SERVER_SETUP_IP"
                android:defaultValue="IP:"/>
    <EditTextPreference android:key="CLIENT_SERVER_SETUP_PORT"
                android:defaultValue="Port:"/>
    <EditTextPreference android:key="CLIENT_SERVER_SETUP_TITLE"
                android:defaultValue="Server Setup"/>
</PreferenceScreen>
清风挽心 2024-12-08 09:41:54

默认设置的 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.

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