拡張された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」ボタンの色を変更したいのですが、どうすればいいですか?