Skip to content

Instantly share code, notes, and snippets.

@himattm
Created November 16, 2014 16:57
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 himattm/a8adb8e1c811c38c32d7 to your computer and use it in GitHub Desktop.
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
<?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