Skip to content

Instantly share code, notes, and snippets.

@vsay01
Created May 13, 2018 13:57
Show Gist options
  • Save vsay01/6f27dfa55325a9b6d8a85f5791dccae0 to your computer and use it in GitHub Desktop.
Save vsay01/6f27dfa55325a9b6d8a85f5791dccae0 to your computer and use it in GitHub Desktop.
// Show the Up button in the action bar.
ActionBar actionBar = getSupportActionBar();
if (actionBar != null) {
actionBar.setDisplayHomeAsUpEnabled(true);
//set color action bar
actionBar.setBackgroundDrawable(new ColorDrawable(ColorUtils.manipulateColor(mPaletteColor, 0.62f)));
//set color status bar
getWindow().setStatusBarColor(ColorUtils.manipulateColor(mPaletteColor, 0.32f));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment