|
@@ -0,0 +1,94 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ xmlns:app="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:orientation="vertical"
|
|
|
+ android:background="@color/white"
|
|
|
+ tools:context=".ui.me.RealNameAuthActivity">
|
|
|
+ <include
|
|
|
+ layout="@layout/a_view_actionbar"/>
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:padding="15dp"
|
|
|
+ android:layout_height="match_parent">
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:textColor="#333333"
|
|
|
+ android:textSize="25sp"
|
|
|
+ android:textStyle="bold"
|
|
|
+ android:layout_marginTop="20dp"
|
|
|
+ android:text="@string/real_name_auth"
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
+ <TextView
|
|
|
+ android:text="@string/real_name_auth_tips"
|
|
|
+ android:layout_marginTop="6dp"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:textStyle="bold"
|
|
|
+ android:textColor="#333333"
|
|
|
+ android:textSize="@dimen/sp_14_text_size"
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
+ <TextView
|
|
|
+ android:layout_marginTop="40dp"
|
|
|
+ android:textColor="#333333"
|
|
|
+ android:textSize="@dimen/sp_15_text_size"
|
|
|
+ android:textStyle="bold"
|
|
|
+ android:text="@string/real_name"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
+ <com.jixin.im.view.ClearEditText
|
|
|
+ android:id="@+id/edt_real_name"
|
|
|
+ android:layout_marginTop="26dp"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:background="@color/transparent"
|
|
|
+ android:hint="@string/real_name_input_tips"
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:background="#999999"
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
+ android:layout_height="1px"/>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_marginTop="40dp"
|
|
|
+ android:textColor="#333333"
|
|
|
+ android:textSize="@dimen/sp_15_text_size"
|
|
|
+ android:textStyle="bold"
|
|
|
+ android:text="@string/id_card_num"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
+ <com.jixin.im.view.ClearEditText
|
|
|
+ android:id="@+id/edt_input_id_num"
|
|
|
+ android:layout_marginTop="26dp"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:digits="1234567890*"
|
|
|
+ android:background="@color/transparent"
|
|
|
+ android:hint="@string/id_card_num_input_tips"
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:background="#999999"
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
+ android:layout_height="1px"/>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_face_recognition"
|
|
|
+ android:layout_marginTop="64dp"
|
|
|
+ android:gravity="center"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:text="@string/face_recognition"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:background="@drawable/selector_face_recognition"
|
|
|
+ android:layout_height="32dp"/>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+</LinearLayout>
|