沉浸式状态栏ImmersionBar使用

 https://github.com/gyf-dev/ImmersionBar   7.11k star

1 Activity中切换状态栏的背景颜色+字体颜色(statusBarDarkFont代表是否改变字体颜色)

 switch (Index) {
            case ONE://白底黑字
                ImmersionBar.with(this).keyboardEnable(true).statusBarDarkFont(true, 0.2f).statusBarColor(R.color.white).navigationBarColor(R.color.white).init();
                break;

            case TWO://绿底白字
            ImmersionBar.with(this).keyboardEnable(true).statusBarDarkFont(false).statusBarColor(R.color.green_title).navigationBarColor(R.color.green_title).init();
                break;

            case FOUR://白底黑字
                ImmersionBar.with(this).keyboardEnable(true).statusBarDarkFont(true, 0.2f).statusBarColor(R.color.white).navigationBarColor(R.color.white).init();
                break;

            case MINE://绿地白字
          ImmersionBar.with(this)
.keyboardEnable(true)
.statusBarDarkFont(false)//状态栏字体是深色,不写默认为亮色
.statusBarColor(R.color.green_title)//状态栏-顶部显示时间、电量、推送图标那一栏
.navigationBarColor(R.color.green_title)//导航栏-有“返回键”、“Home键”、”菜单键“那一栏。导航栏是虚拟的,不是每个手机都有的。
.init();
                break;
        }

 

你可能感兴趣的:(三方框架)