styles.xml 955 B

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources>
  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.Light">
  16. <!-- All customizations that are NOT specific to a particular API-level can go here. -->
  17. </style>
  18. <style name="LoginFormContainer">
  19. <item name="android:layout_width">match_parent</item>
  20. <item name="android:layout_height">wrap_content</item>
  21. <item name="android:padding">16dp</item>
  22. </style>
  23. </resources>