Android EditTextPreference dialog style/theme
问题 I'm trying to style the dialog box that appears when I select an EditTextPreference in my SettingsActivity. So far I have been able to change the colour of the two buttons and the background with: dialog.getButton(DialogInterface.BUTTON_NEGATIVE).setTextColor(0xffffffff); dialog.getButton(DialogInterface.BUTTON_POSITIVE).setTextColor(0xffffffff); dialog.getWindow().setBackgroundDrawableResource(R.drawable.blue_background); But I am so far unable to change the title at the top of the dialog.