android沉浸式 & 状态栏颜色设置

  android4.4推出沉浸式以后,整体感觉美观大气了不少。如图:


  1.设置actionbar的背景色。

    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light">
        <!-- Customize your theme here. -->
        <item name="actionBarStyle">@style/LightBaseActionBarStyle</item>
    </style>

    <style name="LightBaseActionBarStyle" parent="@style/Widget.AppCompat.Light.ActionBar">
        <item name="background">@drawable/actionbar_bg</item>
    </style>

  2.设置状态栏的背景色,二者保持一致

   为了向下适配要引入一个开源的项目

         compile 'com.readystatesoftware.systembartint:systembartint:1.0.3'
         然后在你要加载的activity中添加如下代码(可以写在基类中):
        //写在加载 setContentView之前,必须设置透明,在Theme中添加也是一样
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
            //透明状态栏
            getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
            //透明导航栏
            getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
        }

        SystemBarTintManager tintManager = new SystemBarTintManager(this);
        // 激活状态栏设置
        tintManager.setStatusBarTintEnabled(true);
        // 激活导航栏设置
        tintManager.setNavigationBarTintEnabled(true);
        // 设置一个颜色给系统栏
        tintManager.setTintColor(Color.parseColor("#01D9AE"));

   

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值