Android改变标题栏背景和文字颜色

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M){
    // 背景颜色
    getWindow().setStatusBarColor(getResources().getColor(R.color.colorPrimary));
    // 黑色文字
    getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR);
    // 白色文字
    // getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_VISIBLE);
}

你可能感兴趣的:(android)