styles.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. <!--
  18. <style name="TopspeedTheme" parent="@android:style/Theme.Holo.Light.NoActionBar.TranslucentDecor">
  19. <item name="android:windowActionBar">false</item>
  20. <item name="android:windowNoTitle">true</item>
  21. </style>
  22. -->
  23. <style name="dialog" parent="@android:style/Theme.Dialog">
  24. <item name="android:windowFrame">@null</item>
  25. <item name="android:windowIsFloating">true</item>
  26. <item name="android:windowIsTranslucent">false</item>
  27. <item name="android:windowNoTitle">true</item>
  28. <item name="android:windowBackground">@android:color/transparent</item>
  29. <item name="android:backgroundDimEnabled">true</item>
  30. </style>
  31. <style name="AppStartLoadTranslucent" parent="android:Theme">
  32. <item name="android:windowIsTranslucent">true</item>
  33. <item name="android:windowNoTitle">true</item>
  34. <item name="android:windowActionBar">false</item>
  35. <item name="android:windowFullscreen">true</item>
  36. </style>
  37. </resources>