小编Ros*_*han的帖子

Android AlertDialog标题背景颜色

有没有办法改变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)

在此输入图像描述

关于如何实现这一点的任何想法?

android android-theme android-alertdialog

7
推荐指数
3
解决办法
5952
查看次数