styles.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources xmlns:android="http://schemas.android.com/apk/res/android">
  3. <!--
  4. Base application theme, dependent on API level. This theme is replaced
  5. by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
  6. -->
  7. <style name="AppBaseTheme" parent="android:Theme.Light">
  8. <!--
  9. Theme customizations available in newer API levels can go in
  10. res/values-vXX/styles.xml, while customizations related to
  11. backward-compatibility can go here.
  12. -->
  13. </style>
  14. <!-- Application theme. -->
  15. <style name="AppTheme" parent="android:Theme.Holo">
  16. <!-- All customizations that are NOT specific to a particular API-level can go here. -->
  17. <item name="android:windowFullscreen">true</item>
  18. </style>
  19. <!-- used by CaptureActivity. -->
  20. <style name="ResultButton" parent="@android:style/Widget.Holo.Button.Borderless.Small">
  21. <item name="android:layout_width">0dip</item>
  22. <item name="android:layout_height">wrap_content</item>
  23. <item name="android:layout_weight">1</item>
  24. </style>
  25. <style name="ShareButton" parent="@android:style/Widget.Holo.Button.Borderless.Small">
  26. <item name="android:layout_width">wrap_content</item>
  27. <item name="android:layout_height">wrap_content</item>
  28. </style>
  29. <style name="LoginFormContainer">
  30. <item name="android:layout_width">match_parent</item>
  31. <item name="android:layout_height">wrap_content</item>
  32. <item name="android:padding">16dp</item>
  33. </style>
  34. <style name="TransparentBG">
  35. <item name="android:windowBackground">
  36. @color/transparent_background
  37. </item>
  38. <item name="android:windowNoTitle">true</item>
  39. <item name="android:windowIsTranslucent">true</item>
  40. <item name="android:windowAnimationStyle">
  41. @+android:style/Animation.Translucent
  42. </item>
  43. </style>
  44. </resources>