5
ListPreference
のデフォルトイメージを変更して、新しいstyle
を作成します。リストを変更するプレビュースタイル
私は継承Widget.CompoundButton.CheckBox
によってCheckBoxPreference
でそれをやったし、新しいandroid:button
を設定するが、私はListPreference
にどのように行うのか分かりません。
ListPreference
のデフォルトイメージを変更して、新しいstyle
を作成します。リストを変更するプレビュースタイル
私は継承Widget.CompoundButton.CheckBox
によってCheckBoxPreference
でそれをやったし、新しいandroid:button
を設定するが、私はListPreference
にどのように行うのか分かりません。
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" />