使用image作为listpreference

时间:2017-10-12 17:18:10

标签: android listview android-preferences listpreference

我在偏好设置屏幕中使用了listpreference。我想在列表条目中显示图像。我已经使用了代码,但我在条目中获取图像地址而不是图像。帮助我解决这个问题。

这是我的代码:

preferencecheckbox.xml

<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<ListPreference
    android:key="listkey"
    android:title="select"
    android:summary="Select type"
    android:entries="@array/array"
    android:entryValues="@array/value"/>
</PreferenceScreen>

array.xml

<resources>
<array name="array">
    <item>@drawable/image1</item>
    <item>@drawable/image2</item>
    <item>@drawable/image3</item>
</array>
<string-array name="value">
    <item>data1</item>
    <item>data2</item>
    <item>data3</item>
</string-array>
</resources>

0 个答案:

没有答案