AlertDialog.Builderで構築されたダイアログがあり、ダイアログの背景色を変更したいと思います。
私はインターネットでContextThemeWrapper(API 10で動作)を使用して実行できることを読んでいますが、動作しません。
私がしていることは:
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>
なぜこれが機能しないのですか?
前もって感謝します!