自学内容网 自学内容网

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 文件的属性,下面包含了一些其他属性


原文地址:https://blog.csdn.net/go12355/article/details/142856626

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!