Skip to content

Instantly share code, notes, and snippets.

@bopbi
Created December 8, 2014 16:24
Show Gist options
  • Save bopbi/1ebc2702ce726de2099a to your computer and use it in GitHub Desktop.
Save bopbi/1ebc2702ce726de2099a to your computer and use it in GitHub Desktop.
set status bar color in lollipop
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
getWindow().addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
getWindow().setStatusBarColor(getResources().getColor(R.color.some_color));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment