2012-07-25 7 views
5

Desidero modificare l'immagine predefinita di un ListPreference creando un nuovo style.Cambia elenco Stile riferimento

l'ho fatto con un CheckBoxPreference da ereditare Widget.CompoundButton.CheckBox e stabilendo un nuovo android:button, ma non so come si fa su un ListPreference.

risposta

1

È possibile aggiungere un'icona nelle preferenze utilizzando la proprietà WidgetLayout.

Esempio:

<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" 
    /> 

E il 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" />