styles.xml 988 B

1234567891011121314151617181920212223242526
  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="Theme.PopupActivity" parent="android:style/Theme.Dialog">
  18. <item name="android:windowBackground">@android:color/transparent</item>
  19. <item name="android:windowNoTitle">true</item>
  20. <item name="android:windowIsFloating">true</item>
  21. </style>
  22. </resources>