147 lines
5.4 KiB
XML
147 lines
5.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="#F7F8F9"
|
|
android:orientation="vertical">
|
|
|
|
<include layout="@layout/view_title_custom" />
|
|
|
|
<ScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="10dp"
|
|
android:text="@string/layout_auth_tips1"
|
|
android:textColor="@color/black2"
|
|
android:textSize="18sp"
|
|
android:textStyle="bold" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="10dp"
|
|
android:text="@string/layout_auth_tips2"
|
|
android:textColor="@color/text_gray"
|
|
android:textSize="14sp" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_marginTop="20dp"
|
|
android:text="@string/layout_auth_tips3"
|
|
android:textColor="@color/black2"
|
|
android:textSize="18sp"
|
|
android:textStyle="bold" />
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="180dp"
|
|
android:layout_marginLeft="40dp"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_marginRight="40dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/image1"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center"
|
|
android:scaleType="centerCrop"
|
|
android:src="@mipmap/auth_add_bg" />
|
|
|
|
<ImageView
|
|
android:id="@+id/image11"
|
|
android:layout_width="80dp"
|
|
android:layout_height="80dp"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_centerVertical="true"
|
|
android:layout_gravity="center"
|
|
android:scaleType="centerCrop"
|
|
android:src="@mipmap/auth_add_img" />
|
|
|
|
</RelativeLayout>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_marginTop="10dp"
|
|
android:text="@string/layout_auth_tips4"
|
|
android:textColor="@color/black2"
|
|
android:textSize="18sp"
|
|
android:textStyle="bold" />
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="180dp"
|
|
android:layout_marginLeft="40dp"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_marginRight="40dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/image2"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center"
|
|
android:scaleType="centerCrop"
|
|
android:src="@mipmap/auth_add_bg" />
|
|
|
|
<ImageView
|
|
android:id="@+id/image22"
|
|
android:layout_width="80dp"
|
|
android:layout_height="80dp"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_centerVertical="true"
|
|
android:layout_gravity="center"
|
|
android:scaleType="centerCrop"
|
|
android:src="@mipmap/auth_add_img" />
|
|
|
|
</RelativeLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/remake"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_marginTop="10dp"
|
|
android:text="@string/layout_auth_tips4"
|
|
android:textColor="@color/red"
|
|
android:textSize="14sp"
|
|
android:visibility="gone" />
|
|
|
|
<TextView
|
|
android:id="@+id/submit"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_marginLeft="70dp"
|
|
android:layout_marginTop="20dp"
|
|
android:layout_marginRight="70dp"
|
|
android:background="@drawable/bg_auth_submit_1"
|
|
android:gravity="center"
|
|
android:paddingTop="10dp"
|
|
android:paddingBottom="10dp"
|
|
android:text="@string/layout_auth_tips5"
|
|
android:textColor="@color/black2"
|
|
android:textSize="16sp"
|
|
android:textStyle="bold" />
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|