状态栏更改颜色(沉浸式4.4以上才可以更改)

 * Android4.4以上  但是抽屉有点冲突,目前就重写一个方法暂时解决4.4的问题
         */
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
            this.getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
            SystemBarTintManager tintManager = new SystemBarTintManager(this);
            if(color == 0){
                tintManager.setStatusBarTintEnabled(false);
            }else{
                tintManager.setStatusBarTintEnabled(true);
                tintManager.setStatusBarTintResource(color);
            }
        }

你可能感兴趣的:(状态栏更改颜色(沉浸式4.4以上才可以更改))