How can I change the background of Android alert dialogs?
Your approach won't work. It seems AlertDialog (and Builder) hardcode the theme and don't honor alertDialogStyle anywhere:
protected AlertDialog(Context context) {
this(context, com.android.internal.R.style.Theme_Dialog_Alert);
}
public Builder(Context context) {
this(context, com.android.internal.R.style.Theme_Dialog_Alert);
}
They came to the same conclusion here.
A custom dialog class derived from AlertDialog that calls the protected constructor AlertDialog(context, R.style.MyOpaqueAlertDialog) would be a workaround.
In the latest android source, there is a new public constructor for AlertDialog.Builder that takes a theme argument. Unfortunately, it hasn't been released yet (maybe in Gingerbread?).
It's easy to do this in an XML style once you figure that AlertDialogs have somewhat special attributes.
However, it would be interesting to know which Android version you're referring to (or are targeting at). Theme.Dialog is relatively new as far as I know. Newer Android versions also don't use AlertDialogs under all circumstances where older versions used them.
This works for me in Android 2.2:
<style name="MyTheme" parent="@android:style/Theme">
<item name="android:alertDialogStyle">@style/MyOpaqueAlertDialog</item>
</style>
<style name="MyOpaqueAlertDialog">
<item name="android:fullDark">@drawable/[...]</item>
<item name="android:topDark">@drawable/[...]</item>
<item name="android:centerDark">@drawable/[...]</item>
<item name="android:bottomDark">@drawable/[...]</item>
<item name="android:fullBright">@drawable/[...]</item>
<item name="android:topBright">@drawable/[...]</item>
<item name="android:centerBright">@drawable/[...]</item>
<item name="android:bottomBright">@drawable/[...]</item>
<item name="android:bottomMedium">@drawable/[...]</item>
<item name="android:centerMedium">@drawable/[...]</item>
</style>
Newer Android versions also have android:progressLayout and android:horizontalProgressLayout attributes for the AlertDialog style.
Also, in newer Android versions, it is possible to refer to an AlertDialog theme by using alertDialogTheme instead of alertDialogStyle in a custom theme. AlertDDialogThemes support more familiar and more powerful attributes like windowBackground, windowTitleStyle etc. Have a look at styles.xml and themes.xml.
Unfortunately, the documentation of which feature was added when is super poor. Please find out for yourself whcih approach is the best for you.
From the documentation its looks like you could do this in onCreateDialog.
FrameLayout fl = (FrameLayout) findViewById(android.R.id.custom);
fl.setBackgroundResource(); // has to be a drawable.
Only other solution is a custom dialog using that Theme.