Android 设计支持库 27.1.0 颜色通知栏灰色
Android Design Support Library 27.1.0 colors notificationbar grey
更新到 27.1.0 版本后,我的应用程序中的弹出窗口有一个灰色的通知栏。在更新之前,它们只是蓝色的,就像所有其他通知栏一样。更新后我的代码没有改变任何东西。这是一个已知问题吗?
我也遇到了同样的问题,我在样式 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>
更新到 27.1.0 版本后,我的应用程序中的弹出窗口有一个灰色的通知栏。在更新之前,它们只是蓝色的,就像所有其他通知栏一样。更新后我的代码没有改变任何东西。这是一个已知问题吗?
我也遇到了同样的问题,我在样式 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>