12345678910111213141516171819202122 |
- <?xml version="1.0" encoding="utf-8"?>
- <resources xmlns:android="http://schemas.android.com/apk/res/android">
- <!--自适应高度-->
- <style name="push_layout_properties_self_adaption">
- <item name="android:layout_width">wrap_content</item>
- <item name="android:layout_height">wrap_content</item>
- </style>
- <!--指定宽度和高度-->
- <style name="push_layout_properties_specify_width_geight">
- <item name="android:layout_width">match_parent</item>
- <item name="android:layout_height">match_parent</item>
- </style>
- <!--指定宽度-->
- <style name="push_layout_properties_specify_width">
- <item name="android:layout_width">match_parent</item>
- <item name="android:layout_height">wrap_content</item>
- </style>
- </resources>
|