列表首选项返回条目而不是条目值

发布于 2024-11-08 18:31:06 字数 1623 浏览 2 评论 0原文

我在首选项活动中创建了一个列表首选项,代码为所选项目返回的值是 Entry 的值,而不是 EntryValues 的值。

示例:
条目:David New
值:DAVIDNEW.TTF

代码返回“David New”而不是“DAVIDNEW.TTF”。


代码如下:

文件preferences.xml

<ListPreference
            android:key="fontSelect"
            android:title="@string/textPrefs"
            android:summary="@string/textPrefs"
            android:defaultValue="DAVIDNEW.TTF"
            android:entries="@array/fonts"
            android:entryValues="@array/fontsValues" />

文件arrays.xml

<string-array name="fonts">
    <item>Alex</item>
    <item>Cardo</item>
    <item>Chaya</item>
    <item>David New</item>
    <item>Droid Sans</item>
    <item>Frank</item>
    <item>Mike Hebrew</item>
</string-array>
<string-array name="fontsValues">
    <item>ALEX.TTF</item>
    <item>Cardo99s.ttf</item>
    <item>CHAYA.TTF</item>
    <item>DAVIDNEW.TTF</item>
    <item>DroidSansHebrew.ttf</item>
    <item>frank.ttf</item>
    <item>mike_hebrew_regular_v33.ttf</item>
</string-array>

文件reader.java

String f1 = new String(myprefs.getString("fontSelect", "DAVIDNEW.TTF"));
font = Typeface.createFromAsset(getAssets(), f1);
tv.setTypeface(font);

f1的值是“David New”而不是“DAVIDNEW.TTF”。

I created a List Preference in my Preferences Activity and the value that the code is returning for the selected item is the value of the Entry and not the value of the EntryValues.

Example:
Entry: David New
Value: DAVIDNEW.TTF

The codes returns "David New" instead of "DAVIDNEW.TTF".


Here's the code:

File preferences.xml:

<ListPreference
            android:key="fontSelect"
            android:title="@string/textPrefs"
            android:summary="@string/textPrefs"
            android:defaultValue="DAVIDNEW.TTF"
            android:entries="@array/fonts"
            android:entryValues="@array/fontsValues" />

File arrays.xml:

<string-array name="fonts">
    <item>Alex</item>
    <item>Cardo</item>
    <item>Chaya</item>
    <item>David New</item>
    <item>Droid Sans</item>
    <item>Frank</item>
    <item>Mike Hebrew</item>
</string-array>
<string-array name="fontsValues">
    <item>ALEX.TTF</item>
    <item>Cardo99s.ttf</item>
    <item>CHAYA.TTF</item>
    <item>DAVIDNEW.TTF</item>
    <item>DroidSansHebrew.ttf</item>
    <item>frank.ttf</item>
    <item>mike_hebrew_regular_v33.ttf</item>
</string-array>

File reader.java:

String f1 = new String(myprefs.getString("fontSelect", "DAVIDNEW.TTF"));
font = Typeface.createFromAsset(getAssets(), f1);
tv.setTypeface(font);

Value of f1 is "David New" instead of "DAVIDNEW.TTF".

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文