是否可以在 Android XML 资源文件中写入字符串数组文字?

发布于 2024-12-25 05:35:39 字数 452 浏览 3 评论 0原文

对于我的 PreferenceActivity,我使用典型的preferences.xml 文件。

ListPreference 的entryValues 并不是要本地化的。是否可以使用某种数组文字直接定义entryValues属性?

我下面的第一次尝试不起作用,“拉,推”被认为是一个字符串:

<ListPreference
        android:key="server_reception_mode"
        android:title="@string/title_server_reception_mode_preference"
        android:entries="@array/entries_server_reception_mode_preference"
        android:entryValues="pull, push" />

For my PreferenceActivity, I am using the typical preferences.xml file.

The entryValues of a ListPreference is not something meant to be localized. Is it possible to define the entryValues attribute directly using some kind of array literal?

My first try below won't work, "pull, push" is considered a string:

<ListPreference
        android:key="server_reception_mode"
        android:title="@string/title_server_reception_mode_preference"
        android:entries="@array/entries_server_reception_mode_preference"
        android:entryValues="pull, push" />

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

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

发布评论

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

评论(3

今天小雨转甜 2025-01-01 05:35:39

您可以声明一个 字符串数组。例如:

<string-array name="entry_values">
    <item>pull</item>
    <item>push</item>
</string-array>

您可以在 XML 中使用它:

<ListPreference
    android:key="server_reception_mode"
    android:title="@string/title_server_reception_mode_preference"
    android:entries="@array/entries_server_reception_mode_preference"
    android:entryValues="@array/entry_values" />

如果您所追求的只是避免翻译,则可以使用 Android 源:它们具有名为 values/donottranslate.xmlvalues/donottranslate-names.xml< 的资源文件/代码>, ETC。

You can declare a <string-array> array of strings. For example:

<string-array name="entry_values">
    <item>pull</item>
    <item>push</item>
</string-array>

You could then use it in XML:

<ListPreference
    android:key="server_reception_mode"
    android:title="@string/title_server_reception_mode_preference"
    android:entries="@array/entries_server_reception_mode_preference"
    android:entryValues="@array/entry_values" />

If all you're after is avoiding translation, you can use the convention used in the Android sources: they have resource files named values/donottranslate.xml, values/donottranslate-names.xml, etc.

靖瑶 2025-01-01 05:35:39

查看 文档 中的 entryValues< /code> 属性,否:

必须是对另一个资源的引用[...]

当然,仅仅因为您有一个字符串资源并不意味着您必须对其进行本地化。

Looking at the documentation for the entryValues attribute, no:

Must be a reference to another resource [...]

Of course, just because you have a string resource doesn't mean you have to localise it.

倥絔 2025-01-01 05:35:39

您需要在资源中创建一个数组。您不能像您希望的那样直接声明它。

对于这些类型的数组,我通常会创建第二个 XML 文件,其中包含不需要翻译的所有条目(例如 array-notranslate.xml)。这样,如果您将 xml 文件交给某人进行翻译,他们就不必处​​理它。

You'll need to create an array in your resources. You can't declare it directly like you were hoping to.

For those kind of arrays, I usually create a second XML file with all entries that do not need to be translated (like array-notranslate.xml). That way, if you hand your xml files to somebody for translation, they won't have to deal with it.

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