| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?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="match_parent"
- android:layout_height="match_parent">
- <ImageView
- android:id="@+id/image_full"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_centerHorizontal="true"
- android:adjustViewBounds="true"
- android:scaleType="fitXY" />
- <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_weight="8"
- android:paddingEnd="4dp"
- android:paddingStart="4dp"
- android:paddingTop="4dp">
- <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:id="@+id/image_bottom_tv"
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="1"
- android:layout_marginTop="-3dp"
- android:gravity="top|center_horizontal"
- android:text="扫我开始赚钱"
- android:textColor="#ff999999"
- android:textSize="8sp" />
- </LinearLayout>
- </RelativeLayout>
|