styles.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <resources>
  2. <!--
  3. Base application theme, dependent on API level. This theme is replaced
  4. by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
  5. -->
  6. <style name="AppBaseTheme" parent="android:Theme.Light">
  7. <!--
  8. Theme customizations available in newer API levels can go in
  9. res/values-vXX/styles.xml, while customizations related to
  10. backward-compatibility can go here.
  11. -->
  12. </style>
  13. <!-- Application theme. -->
  14. <style name="AppTheme" parent="AppBaseTheme">
  15. <!-- All customizations that are NOT specific to a particular API-level can go here. -->
  16. </style>
  17. <style name="DoneBarActionButton" parent="android:style/Widget.Holo.ActionButton">
  18. <item name="android:layout_height">match_parent</item>
  19. <item name="android:layout_width">0dp</item>
  20. <item name="android:layout_weight">1</item>
  21. <item name="android:focusable">true</item>
  22. <item name="android:orientation">horizontal</item>
  23. </style>
  24. <style name="DoneBarActionButtonImage">
  25. <item name="android:layout_height">wrap_content</item>
  26. <item name="android:layout_width">wrap_content</item>
  27. <item name="android:padding">4dp</item>
  28. </style>
  29. <style name="DoneBarActionButtonText">
  30. <item name="android:layout_height">wrap_content</item>
  31. <item name="android:layout_width">wrap_content</item>
  32. <item name="android:textAppearance">?android:attr/actionMenuTextAppearance</item>
  33. <item name="android:textColor">?android:attr/actionMenuTextColor</item>
  34. <item name="android:orientation">horizontal</item>
  35. <item name="android:singleLine">true</item>
  36. <item name="android:ellipsize">none</item>
  37. <item name="android:padding">4dp</item>
  38. </style>
  39. </resources>