12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?xml version="1.0" encoding="utf-8"?>
- <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:layout_width="428dp"
- android:layout_height="598dp"
- android:layout_gravity="center">
- <ImageView
- android:id="@+id/cusview_model_view_g_background"
- android:layout_width="match_parent"
- android:layout_height="match_parent"></ImageView>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
- <FrameLayout
- android:id="@+id/cusview_model_view_g_rule"
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="1"></FrameLayout>
- <LinearLayout
- android:id="@+id/cusview_model_view_g_item_layout"
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_gravity="center"
- android:layout_weight="4"
- android:gravity="center|top"
- android:orientation="vertical"
- android:paddingLeft="10dp"
- android:paddingTop="50dp"
- android:paddingRight="10dp"
- android:paddingBottom="40dp">
- </LinearLayout>
- </LinearLayout>
- </FrameLayout>
|