Created
May 13, 2018 13:57
-
-
Save vsay01/6f27dfa55325a9b6d8a85f5791dccae0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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