如何在擴展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" />
,或者例如是有可能改變該按鈕的屬性?
我有一個確定按鈕,例如我想改變這個「確定」按鈕的顏色,我該怎麼做?