styles.xml 800 B

12345678910111213141516171819202122
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources xmlns:android="http://schemas.android.com/apk/res/android">
  3. <!--自适应高度-->
  4. <style name="push_layout_properties_self_adaption">
  5. <item name="android:layout_width">wrap_content</item>
  6. <item name="android:layout_height">wrap_content</item>
  7. </style>
  8. <!--指定宽度和高度-->
  9. <style name="push_layout_properties_specify_width_geight">
  10. <item name="android:layout_width">match_parent</item>
  11. <item name="android:layout_height">match_parent</item>
  12. </style>
  13. <!--指定宽度-->
  14. <style name="push_layout_properties_specify_width">
  15. <item name="android:layout_width">match_parent</item>
  16. <item name="android:layout_height">wrap_content</item>
  17. </style>
  18. </resources>