Как настроить стиль в расширенной 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" />
или, например, можно ли изменить свойства кнопки?
У меня есть одна кнопка ОК, и, например,Я хочу изменить цвет этой кнопки «ОК», как я могу это сделать?