Android一体式(沉浸式)状态栏的实现

注:公司开发任务适配是在4.4版本之上进行,所以此适配仅在4.4之上进行测试。

1、主要使用了第三方的开源项目SystemBarTint,github:https://github.com/jgilfelt/SystemBarTint

2、根据SystemBarTint自带sample进行研究,主要步骤如下:

1、在Activity中加入如下代码: 
  public class MainActivity extends BaseActivity {

    @Override
    public void setContentView() {
      setContentView(R.layout.activity_main);
      // 沉浸式状态栏
      setTranslucentStatus();
    }

  }


    /**
     * 为xml 的根布局添加android:fitsSystemWindows=”true” 属性<br/>
     */
    protected void setTranslucentStatus() {
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
            setTranslucentStatus(true);
        }
        SystemBarTintManager tintManager = new SystemBarTintManager(this);
        tintManager.setStatusBarTintEnabled(true);
        tintManager.setStatusBarTintResource(R.color.statusbar_bg);// 通知栏所需颜色
    }

    @TargetApi(19)
    private void setTranslucentStatus(boolean on) {
        Window win = getWindow();
        WindowManager.LayoutParams winParams = win.getAttributes();
        final int bits = WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS;
        if (on) {
            winParams.flags |= bits;
        } else {
            winParams.flags &= ~bits;
        }
        win.setAttributes(winParams);
    }

   注:有些资料说setTranslucentStatus()方法需要放在setConentView()之后,实际上没有影响。

   2、在MainActivity的根布局中添加:  

android:fitsSystemWindows="true"

   3、如果我们在布局中间加入一个自定义TextView控件,并且设置的背景色和setTranslucentStatus()方法中的color一样的话,我们运行会发现效果如下图:

这里写图片描述

  其中,在statusbar与textview中间会有一个空白,这个空白是actionbar的留白,所以,如果使用自带titlebar的话,要取消actionbar的显示;如果使用actionbar的话,要将actionbar的背景设置为相同色。

public class MainActivity  {

    @Override
    public void setContentView() {
          noTitleBar();
      setContentView(R.layout.activity_main);
      // 沉浸式状态栏
      setTranslucentStatus();
    }

             /**
     * 不显示标题栏
     */
    protected void noTitleBar() {
        this.requestWindowFeature(Window.FEATURE_NO_TITLE);
    }
}  

效果如下:

这里写图片描述

4、由于github上面的代码是基于gradle的,下面放出基于eclipse的版本源码。
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值