Skip to content

Instantly share code, notes, and snippets.

@LoriBru
Created January 14, 2019 11:45
Show Gist options
  • Select an option

  • Save LoriBru/c2543ab0572712ffa022d72af21dbcb7 to your computer and use it in GitHub Desktop.

Select an option

Save LoriBru/c2543ab0572712ffa022d72af21dbcb7 to your computer and use it in GitHub Desktop.
Changing status bar color if version is Lollipop or newer.
if (Build.VERSION.SdkInt >= BuildVersionCodes.Lollipop)
{
Window.ClearFlags(WindowManagerFlags.TranslucentStatus);
Window.AddFlags(WindowManagerFlags.DrawsSystemBarBackgrounds);
var color = Color.Argb(210, 57, 169, 220);
Window.SetStatusBarColor(color);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment