I have a Dialog that is constructed with AlertDialog.Builder, and I would like to change the backgroud color of the dialog.
I've been reading in Internet that it's possible to do using ContextThemeWrapper (working with API 10), but it doesn't work.
What I'm doing is:
ContextThemeWrapper wrapper = new ContextThemeWrapper(this, R.style.MyDialogTheme);
AlertDialog alertDialog = new AlertDialog.Builder(wrapper)).create();
<style name="MyDialogTheme" parent="@android:style/Theme.Dialog">
<item name="android:background">#FFFFFF</item>
</style>
Why does this not work?
Thanks in advance!