Skip to content

Instantly share code, notes, and snippets.

@dmitriy-chernysh
Created June 4, 2015 20:11
Show Gist options
  • Save dmitriy-chernysh/b12e185858296f9ef4c1 to your computer and use it in GitHub Desktop.
Save dmitriy-chernysh/b12e185858296f9ef4c1 to your computer and use it in GitHub Desktop.
Android statusbar color
//set statusbar color for API 21+
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
Window window = getWindow();
window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
window.setStatusBarColor(getResources().getColor(R.color.primary_dark));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment