Skip to content

Instantly share code, notes, and snippets.

@dodikk
Last active April 25, 2019 08:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dodikk/1ef6a97b6428a934a3c35c421cbf34c6 to your computer and use it in GitHub Desktop.
Save dodikk/1ef6a97b6428a934a3c35c421cbf34c6 to your computer and use it in GitHub Desktop.
Tweak droid toolbar from code - xamarin.droid
var yellowColor = Color.ParseColor("#f6c046");
// set left icon color
Toolbar.NavigationIcon.SetTint(yellowColor);
// set text color
Toolbar.SetTitleTextColor(yellowColor);
Toolbar.SetSubtitleTextColor(yellowColor);
// set right button color
_rightToolbarImage.SetColorFilter(yellowColor, PorterDuff.Mode.SrcIn);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment