Created
November 16, 2014 16:57
-
-
Save himattm/a8adb8e1c811c38c32d7 to your computer and use it in GitHub Desktop.
A Gist to remember the four color attributes for the Lollipop action bar / navigation bar
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
<?xml version="1.0" encoding="utf-8"?> | |
<resources> | |
<style name="AppTheme" parent="android:Theme.Material"> | |
<!--Cannot be transparent--> | |
<item name="android:colorPrimary">@color/colorPrimary</item> | |
<!--Can be transparent--> | |
<item name="android:colorPrimaryDark">@color/colorPrimaryDark</item> | |
<!--Can be transparent--> | |
<item name="android:colorAccent">@color/accent</item> | |
<!--Can be transparent--> | |
<item name="android:navigationBarColor">@color/accent</item> | |
</style> | |
</resources> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment