2011-11-14 77 views
4

如何在擴展DialogPreference中設置自定義樣式?對話框首選項中的自定義視圖

public class AboutDialog extends DialogPreference { 
    public AboutDialog(Context oContext, AttributeSet attrs) 
    { 
     super(oContext,attrs); 
      //there is no such a thing like setBackground(int res_id)... 
    } 
} 

和在XML

<com.pak1.pak.About 
    android:key="key" android:title="@string/preferences_about" 
    android:dialogTitle="@string/preferences_about_title" 
    android:dialogIcon="@drawable/app_icon" android:negativeButtonText="@null" 
    android:positiveButtonText="@string/ok" /> 

,或者例如是有可能改變該按鈕的屬性?

我有一個確定按鈕,例如我想改變這個「確定」按鈕的顏色,我該怎麼做?

回答

0

要設置DialogPreference的背景,你也可以使用方法

DialogPreference.setDialogLayoutResource(R.layout.layout1); 

和簡單的色彩資源,內部res/values/colors.xml通常規定:

<color name="red">#ffff0000</color> 

請參閱此資源通過res/layout/layout1.xml中的android:background="@color/red"。 (More info about setting a background

相關問題