Skip to content

Instantly share code, notes, and snippets.

@lucas-marciano
Created October 7, 2016 02:13
Show Gist options
  • Select an option

  • Save lucas-marciano/d1b953ded01eccfe89bcf72ab3dc5e57 to your computer and use it in GitHub Desktop.

Select an option

Save lucas-marciano/d1b953ded01eccfe89bcf72ab3dc5e57 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