第一次提交

This commit is contained in:
被淹死的鱼
2026-03-11 18:26:29 +08:00
commit cd3b53759e
8532 changed files with 522078 additions and 0 deletions

View File

@@ -0,0 +1,159 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:fresco="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#F8F8F8"
android:orientation="vertical"
tools:viewBindingIgnore="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="44dp"
android:background="#EBB7F9"
android:gravity="center"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/shape_oval_verify1"
android:gravity="center"
android:text="1"
android:textColor="@color/white"
android:textSize="14dp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="6dp"
android:text="输入证件信息"
android:textColor="@color/one_text"
android:textSize="14dp"
android:textStyle="bold" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="20dp"
android:layout_marginEnd="20dp"
android:src="@drawable/ic_edit_verify_hint" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/shape_oval_verify"
android:gravity="center"
android:includeFontPadding="false"
android:text="2"
android:textColor="@color/white"
android:textSize="12dp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="6dp"
android:text="人脸识别认证"
android:textColor="#919191"
android:textSize="14dp"
android:textStyle="bold" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white"
android:gravity="center_vertical"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="20dp"
android:layout_marginTop="16dp"
android:layout_marginBottom="16dp"
android:text="真实姓名"
android:textColor="@color/one_text"
android:textSize="15dp" />
<EditText
android:id="@+id/et_verify_name"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginStart="16dp"
android:layout_marginEnd="16dp"
android:background="@null"
android:hint="请输入本人真实姓名"
android:inputType="text"
android:textColor="@color/one_text"
android:textColorHint="@color/three_text"
android:textSize="15dp" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white"
android:gravity="center_vertical"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="20dp"
android:layout_marginTop="16dp"
android:layout_marginBottom="16dp"
android:text="身份证号"
android:textColor="@color/one_text"
android:textSize="15dp" />
<EditText
android:id="@+id/et_verify_number"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginStart="16dp"
android:layout_marginEnd="16dp"
android:background="@null"
android:digits="0123456789Xx"
android:hint="请输入本人真实身份证号"
android:textColor="@color/one_text"
android:textColorHint="@color/three_text"
android:textSize="15dp" />
</LinearLayout>
<TextView
android:id="@+id/tv_verify_sure"
android:layout_width="match_parent"
android:layout_height="44dp"
android:layout_marginStart="16dp"
android:layout_marginTop="22dp"
android:layout_marginEnd="16dp"
android:background="@drawable/shape_button_enable"
android:gravity="center"
android:text="提交"
android:textColor="@color/white"
android:textSize="16dp"
android:textStyle="bold" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="24dp"
android:layout_marginTop="18dp"
android:layout_marginEnd="24dp"
android:text="温馨提示:"
android:textColor="@color/three_text"
android:textSize="14dp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="24dp"
android:layout_marginTop="12dp"
android:layout_marginEnd="24dp"
android:lineSpacingExtra="6dp"
android:text="1.认证信息仅用于实名认证,平台会严格保密 \n2.请填写本人的真实实名信息,否则无法实名 \n3.一个身份证号只能实名一个账号,绑定后无法修改 \n4.使用中遇到问题,请及时联系在线客服"
android:textColor="@color/three_text"
android:textSize="12dp" />
</LinearLayout>