styles.xml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources>
  3. <style name="ActivityTransparent" parent="@style/Theme.Issp">
  4. <item name="android:windowBackground">@color/colorTransparent</item>
  5. <item name="android:windowIsTranslucent">true</item>
  6. <item name="android:windowNoTitle">true</item>
  7. <item name="android:windowFullscreen">true</item>
  8. <item name="android:windowActionBar">false</item>
  9. </style>
  10. <style name="match">
  11. <item name="android:layout_width">match_parent</item>
  12. <item name="android:layout_height">match_parent</item>
  13. </style>
  14. <style name="wrap">
  15. <item name="android:layout_width">wrap_content</item>
  16. <item name="android:layout_height">wrap_content</item>
  17. </style>
  18. <style name="fullWidth">
  19. <item name="android:layout_width">match_parent</item>
  20. <item name="android:layout_height">wrap_content</item>
  21. </style>
  22. <style name="fullHeight">
  23. <item name="android:layout_width">wrap_content</item>
  24. <item name="android:layout_height">match_parent</item>
  25. </style>
  26. <style name="zeroWH">
  27. <item name="android:layout_width">0dp</item>
  28. <item name="android:layout_height">0dp</item>
  29. </style>
  30. </resources>