Android设计支持库27.1.0颜色通知栏灰色

时间:2018-02-28 14:16:01

标签: android android-support-library

更新到版本27.1.0后,我的应用中的弹出式窗口显示灰色通知栏。在更新之前,它们只是蓝色,就像所有其他通知栏一样。更新后,我的代码中没有更改任何内容。这是一个已知的问题吗?

enter image description here

1 个答案:

答案 0 :(得分:2)

我也遇到了同样的问题,我在样式v21中使用了它,现在工作正常

<style name="AppTheme.NoActionBar">
    <item name="windowActionBar">false</item>
    <item name="windowNoTitle">true</item>
    <item name="android:windowDrawsSystemBarBackgrounds">true</item>
    <item name="android:statusBarColor">?attr/colorPrimary</item>
</style>