| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginTop="10dp"
- android:orientation="vertical">
- <ImageView
- android:id="@+id/first_iv_scanning"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerHorizontal="true"
- android:layout_marginTop="105dp"
- android:background="@drawable/doctordown" />
- <TextView
- android:layout_below="@+id/first_iv_scanning"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true"
- android:layout_centerHorizontal="true"
- android:layout_marginTop="40dp"
- android:text="点击按钮开始扫描"
- android:textSize="14sp"
- android:textStyle="bold" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true"
- android:layout_centerHorizontal="true"
- android:layout_marginBottom="80dp"
- android:text="智能微电子标签追溯"
- android:textSize="16sp"
- android:textStyle="bold" />
- </RelativeLayout>
|