139 lines
5.0 KiB
XML
139 lines
5.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/rl_attestation"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@color/colorPrimaryBlue"
|
|
android:orientation="horizontal"
|
|
android:paddingTop="@dimen/top_pind_sp"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_attestation"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="45dp"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_marginLeft="15dp"
|
|
android:src="@drawable/ic_baseline_arrow" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_attestation"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="45dp"
|
|
android:layout_marginLeft="15dp"
|
|
android:layout_toRightOf="@id/iv_find_task"
|
|
android:gravity="center"
|
|
android:text="实名认证"
|
|
android:textColor="#fff"
|
|
android:textSize="17sp"
|
|
android:textStyle="bold" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="20dp"
|
|
android:orientation="vertical"
|
|
app:layout_constraintEnd_toEndOf="@+id/linear_hint"
|
|
app:layout_constraintStart_toStartOf="@+id/linear_hint"
|
|
app:layout_constraintTop_toBottomOf="@+id/rl_attestation">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="60dp"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="100dp"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:text="姓名:"
|
|
android:textColor="#333"
|
|
android:textSize="18sp" />
|
|
|
|
<EditText
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="@null"
|
|
android:hint="请输入姓名"
|
|
android:textSize="16sp" />
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="#2196F3" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="60dp"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="100dp"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:text="身份证号:"
|
|
android:textColor="#333"
|
|
android:textSize="18sp" />
|
|
|
|
<EditText
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="@null"
|
|
android:hint="请输入身份证号"
|
|
android:textSize="16sp" />
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="#2196F3" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="150dp"
|
|
android:layout_marginTop="20dp"
|
|
android:orientation="horizontal">
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_attestation1"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_centerVertical="true"
|
|
android:layout_margin="10dp"
|
|
android:background="@mipmap/checkbox"
|
|
android:layout_weight="1" />
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_attestation2"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_margin="10dp"
|
|
android:background="@mipmap/checkbox"
|
|
android:layout_weight="1" />
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="#2196F3" />
|
|
|
|
<Button
|
|
android:id="@+id/btn_attestation"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginTop="40dp"
|
|
android:text="认证" />
|
|
|
|
</LinearLayout>
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |