How to customize style in advanced DialogPreference?
public class AboutDialog extends DialogPreference { public AboutDialog(Context oContext, AttributeSet attrs) { super(oContext,attrs);
and in 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" />
or, for example, can I change the properties of a button?
I have one ok button, and for example, I want to change the color of this ok button, how can I do this?
Lukap source share