Created
April 14, 2014 15:40
-
-
Save bjorncoltof/10659358 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
| <?xml version="1.0" encoding="utf-8"?> | |
| <resources> | |
| <!-- the theme applied to the application or activity --> | |
| <style name="AppTheme" | |
| parent="@style/Theme.AppCompat.Light"> | |
| <item name="android:actionBarStyle">@style/AppActionBar</item> | |
| <!-- Support library compatibility --> | |
| <item name="actionBarStyle">@style/AppActionBar</item> | |
| </style> | |
| <!-- ActionBar styles --> | |
| <style name="AppActionBar" | |
| parent="@style/Widget.AppCompat.Light.ActionBar.Solid.Inverse"> | |
| <item name="android:background">@color/actionbar_background</item> | |
| <!-- Support library compatibility --> | |
| <item name="background">@color/actionbar_background</item> | |
| </style> | |
| </resources> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment