【发布时间】:2016-02-14 04:19:24
【问题描述】:
嘿,我正在尝试将状态栏的颜色更改为与操作栏颜色相同(可能是透明的)。在 Android Lolipop 上这不是问题,但在 Kitkat it looks like on this picture
我尝试了许多其他解决方案,但仍然无法解决。
这里是 v19 xml 样式
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:windowTranslucentStatus">true</item>
<item name="android:windowTranslucentNavigation">true</item>
</style>
【问题讨论】:
-
@SteveM 我试过了,但还是不行
-
究竟是什么不工作?在 KitKat 上,您应该能够使状态栏半透明并在其下方添加颜色,如以下答案所述:stackoverflow.com/a/27516736/919219
标签: android xml android-studio android-5.0-lollipop android-4.4-kitkat