Skip to content

Instantly share code, notes, and snippets.

@lucas-marciano
Created April 5, 2017 22:20
Show Gist options
  • Save lucas-marciano/0ba1b10860bde2c31299a7c8eea74ebc to your computer and use it in GitHub Desktop.
Save lucas-marciano/0ba1b10860bde2c31299a7c8eea74ebc to your computer and use it in GitHub Desktop.
public void chanceColorStatusBar(){
if (android.os.Build.VERSION.SDK_INT >= 21) {
Window window = this.getWindow();
window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
window.setStatusBarColor(this.getResources().getColor(R.color.colorPrimaryDark));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment