// 4.4及以上版本开启 if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { setTranslucentStatus(true); } SystemBarTintManager tintManager = new SystemBarTintManager(this); tintManager.setStatusBarTintEnabled(true); tintManager.setNavigationBarTintEnabled(true); // 自定义颜色 tintManager.setTintColor(Color.parseColor("#24b7a4"));
时间: 2024-10-18 17:46:35