| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/layout_view"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content">
- <ImageView
- android:id="@+id/image_full"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_centerHorizontal="true" />
- <LinearLayout
- android:layout_width="70dp"
- android:layout_height="80dp"
- android:layout_alignParentBottom="true"
- android:layout_centerHorizontal="true"
- android:background="@drawable/shape_white_solid_rectangle_2"
- android:orientation="vertical">
- <RelativeLayout
- android:layout_width="wrap_content"
- android:layout_height="0dp"
- android:layout_gravity="center_horizontal"
- android:layout_marginLeft="4dp"
- android:layout_marginTop="4dp"
- android:layout_marginRight="4dp"
- android:layout_weight="1">
- <ImageView
- android:id="@+id/image_bottom"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:src="@drawable/loading_01" />
- <ImageView
- android:layout_width="10dp"
- android:layout_height="10dp"
- android:layout_centerInParent="true"
- android:src="@mipmap/sheep_logo" />
- </RelativeLayout>
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="1dp"
- android:layout_marginBottom="3dp"
- android:gravity="center"
- android:text="扫我开始赚钱"
- android:textColor="#ff999999"
- android:textSize="8sp" />
- </LinearLayout>
- </RelativeLayout>
|