拡張された 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" />
または、たとえば、ボタンのプロパティを変更することは可能ですか?
OK ボタンが 1 つあり、たとえば、この「OK」ボタンの色を変更したいのですが、どうすればよいですか?