Android状态栏从kitkat到棒棒糖的色调

时间:2015-05-26 21:28:54

标签: android android-5.0-lollipop statusbar android-4.4-kitkat android-appcompat

我正在尝试为我的应用实现好的状态栏,并且已经在kitkat上成功实现了这一点。

这是我使用

的xml
<?xml version="1.0" encoding="utf-8" ?>
<resources>
    <style name="AppTheme" parent="AppTheme.Base"/>

    <style name="AppTheme.Base" parent="Theme.AppCompat.Light.NoActionBar">
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="android:windowBackground">@color/colorPrimary</item>
        <item name="android:windowTranslucentStatus">true</item>
        <item name="android:windowTranslucentNavigation">false</item>       
    </style>
</resources>

Status bar on kitkat

然而,在棒棒糖上它并没有很好的渐变效果。它只是一种颜色较深的颜色。

Status bar on lollipop

如何让棒棒糖状态栏看起来像kitkat?

1 个答案:

答案 0 :(得分:0)

您可以使用SystemBarTint

开发的Jeff Gilfelt