Aleks G(问题下方)的评论指出了正确的方向。对话框的外观由单独的样式 ( android:alertDialogStyle
) 定义。但是不能将样式直接应用于ProgressDialog
. 现在,我如何获得黄色背景?
第 1 步:定义一个继承自的主题Theme.Dialog
:
<style name="MyTheme" parent="@android:style/Theme.Dialog">
<item name="android:alertDialogStyle">@style/CustomAlertDialogStyle</item>
<item name="android:textColorPrimary">#000000</item>
</style>
在那里,您可以定义整个窗口的背景颜色(问题中的黄色)、字体颜色等。真正重要的是android:alertDialogStyle
. 此样式控制问题中黑色区域的外观。
第 2 步:定义CustomAlertDialogStyle
:
<style name="CustomAlertDialogStyle">
<item name="android:bottomBright">@color/yellow</item>
<item name="android:bottomDark">@color/yellow</item>
<item name="android:bottomMedium">@color/yellow</item>
<item name="android:centerBright">@color/yellow</item>
<item name="android:centerDark">@color/yellow</item>
<item name="android:centerMedium">@color/yellow</item>
<item name="android:fullBright">@color/yellow</item>
<item name="android:fullDark">@color/yellow</item>
<item name="android:topBright">@color/yellow</item>
<item name="android:topDark">@color/yellow</item>
</style>
这会将问题中的黑色区域设置为黄色。
第 3 步:申请MyTheme
,不是ProgressDialog
: CustomAlertDialogStyle
ProgressDialog dialog = new ProgressDialog(this, R.style.MyTheme);
结果如下:
相同的过程适用于AlertDialog
(它是 的父类ProgressDialog
)。