更改ListPreference样式

时间:2012-07-25 14:08:01

标签: android android-layout android-widget android-theme

我想通过创建新的ListPreference来更改style的默认图片。

我使用CheckBoxPreference继承Widget.CompoundButton.CheckBox并设置新的android:button,但我不知道如何在ListPreference上执行此操作。

1 个答案:

答案 0 :(得分:1)

您可以使用WidgetLayout属性在首选项中添加图标。

示例:

<EditTextPreference
    android:defaultValue=""
    android:dialogTitle="@string/mode_name"
    android:key="mode_name"
    android:order="0"
    android:summary=""
    android:title="@string/mode_name"
    android:widgetLayout="@layout/mode_item_preference"
     />

还有mode_item_preference.xml

<?xml version="1.0" encoding="utf-8"?>
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/imageView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:contentDescription="@string/app_name"
    android:focusable="false"
    android:src="@drawable/delete" />