Android设置状态栏隐藏、固定颜色

设置隐藏效果:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <style name="Theme.XiaoShuang" parent="Theme.AppCompat.Light.NoActionBar">

        <!--设置沉浸式通知栏-->
        <item name="android:windowTranslucentStatus">true</item>

    </style>
</resources>

设置固定颜色效果:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <style name="Theme.XiaoShuang" parent="Theme.AppCompat.Light.NoActionBar">

        <!-- 状态栏 -->
        <item name="colorPrimaryDark">@color/blue_top</item>

    </style>
</resources>

以上均为设置 values 文件夹中 themes.xml 文件的属性,下面包含了一些其他属性