有没有办法改变AlertDialog的标题背景颜色(android.support.v7.app.AlertDialog)?? 目前我的主题是
<item name="alertDialogTheme">@style/AppCompatAlertDialogStyle</item>
<style name="AppCompatAlertDialogStyle" parent="Theme.AppCompat.Light.Dialog.Alert">
<item name="colorAccent">@color/colorAccent</item>
</style>
Run Code Online (Sandbox Code Playgroud)
我这样得到它,
我怎么能让它看起来像这样
运用
<style name="AppCompatAlertDialogStyle" parent="Theme.AppCompat.Light.Dialog.Alert">
<item name="colorAccent">@color/colorAccent</item>
<item name="android:windowTitleStyle">@style/DialogTitle</item>
</style>
<style name="DialogTitle">
<item name="android:background">@color/colorPrimary</item>
</style>
Run Code Online (Sandbox Code Playgroud)
给
关于如何实现这一点的任何想法?