Advertisement
Guest User

Untitled

a guest
Aug 6th, 2015
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. <resources xmlns:android="http://schemas.android.com/apk/res/android">
  2.  
  3. <!--
  4. Base application theme for API 11+. This theme completely replaces
  5. AppBaseTheme from res/values/styles.xml on API 11+ devices.
  6. -->
  7. <style name="AppBaseTheme" parent="Theme.AppCompat.Light">
  8. <!-- API 11 theme customizations can go here. -->
  9. </style>
  10.  
  11. <!-- SQUASHBOT THEME -->
  12. <style name="SquashBotTheme" parent="Theme.AppCompat.Light.DarkActionBar">
  13.  
  14. <item name="android:actionBarStyle">@style/SquashBotTheme.ActionBarTheme</item>
  15.  
  16. <item name="android:actionDropDownStyle">@style/SquashBotTheme.DropDownNavigation</item>
  17.  
  18. </style>
  19.  
  20. <!-- ACTIONBAR THEME -->
  21. <style name="SquashBotTheme.ActionBarTheme" parent="@android:style/Widget.Holo.Light.ActionBar.Solid.Inverse">
  22. <item name="android:background">@drawable/actionbar_theme</item>
  23. <item name="android:titleTextStyle">@style/SquashBotTheme.TitleText</item>
  24. </style>
  25.  
  26. <!-- TITLE TEXT -->
  27. <style name="SquashBotTheme.TitleText" parent="@android:style/Widget.Holo.Light.ActionBar.Solid.Inverse">
  28. <item name="android:textColor">@color/OrangeRed</item>
  29. </style>
  30.  
  31. <!-- DROPDOWN ITEM -->
  32. <style name="SquashBotTheme.DropDownNavigation" parent="@android:style/Widget.Holo.Spinner">
  33. <item name = "android:textAppearance">@color/OrangeRed</item>
  34. <item name = "android:textColor">@color/OrangeRed</item>
  35. <item name = "android:popupBackground">@color/OrangeRed</item>
  36. </style>
  37.  
  38. </resources>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement