改变 Android System bar 颜色

来源:互联网 发布:华硕黄静事件知乎 编辑:程序博客网 时间:2024/05/25 23:28

SnapShot


实现方式

  • Android 4.4以上,使用SystemBarTintManager
  • Android 5.0,使用android:statusBarColor,Window.setStatusBarColor
  • 使用第三方兼容库 SystemBarTint

    推荐最后一种方式


SystemBarTint简单使用

gradle引用:

compile 'com.readystatesoftware.systembartint:systembartint:1.0.3'

Java Code 设置:

private void initSystemBar() {    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {        setTranslucentStatus(true);    }    SystemBarTintManager tintManager = new SystemBarTintManager(this);    tintManager.setStatusBarTintEnabled(true);    tintManager.setStatusBarTintResource(R.color.material_deep_teal_500);}

XML设置:

android:fitsSystemWindows="true"
0 0