首页 > 学院 > 开发设计 > 正文

修改状态栏颜色

2019-11-09 15:41:13
字体:
来源:转载
供稿:网友
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {    Window window = getWindow();    SystemBarTintManager tintManager = new SystemBarTintManager(this);    tintManager.setStatusBarTintEnabled(true);    //此处可以重新指定状态栏颜色    tintManager.setStatusBarTintResource(R.color.title_back_n);}
需要注意的是,只有在大于4.4.版本的才适用
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表