Im trying to change the button color of AlertDialog.Builder but i didnt find a way to do it.
I want to change the color of the buttons and the title to white like in HOLO theme.
see these 2 screenshots for examples:
Ive looked here:
How to change theme for AlertDialog
Change the style of AlertDialog
How to change the background of the custom alert dialog
All of them are not working for me.
Here is my code:
public void logInDialog()
{
ContextThemeWrapper ctw = new ContextThemeWrapper( this, R.style.dialogStyle);
AlertDialog.Builder builder = new AlertDialog.Builder(ctw);
builder.setTitle("Log in");
View prefView = View.inflate(this, R.layout.log_in, null);
//The rest of the code.........
}
This is my style code:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="dialogStyle" parent="android:Theme.Dialog">
<item name="android:background">@color/white</item>
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:button">@color/white</item>
</style>
</resources>