2012-07-25 6 views
5

ListPreferenceのデフォルトイメージを変更して、新しいstyleを作成します。リストを変更するプレビュースタイル

私は継承Widget.CompoundButton.CheckBoxによってCheckBoxPreferenceでそれをやったし、新しいandroid:buttonを設定するが、私はListPreferenceにどのように行うのか分かりません。

答えて

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" /> 
関連する問題