1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <?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="#ffffff"
- android:orientation="vertical">
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="48dp"
- android:background="#ff1f2228">
- <ImageView
- android:id="@+id/tysdkn_real_name_back"
- android:layout_width="48dp"
- android:layout_height="48dp"
- android:padding="15dp"
- android:layout_centerVertical="true"
- android:src="@drawable/tysdkn_recahrge_back_left" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:text="实名认证"
- android:textColor="#ffffff"
- android:textSize="16sp" />
- </RelativeLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_marginTop="23dp"
- android:orientation="vertical">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:lineSpacingExtra="6dp"
- android:text="实名认证资料是您身份的重要资料,可保证您账号的安全性,我们会对您的信息做加密处理,认证成功后不可更改。"
- android:textColor="#FF333333"
- android:textSize="13sp" />
- <EditText
- android:id="@+id/tysdkn_et_real_name"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="25dp"
- android:background="@null"
- android:hint="输入真实姓名"
- android:imeOptions="actionDone"
- android:inputType="text"
- android:maxLines="1"
- android:textSize="13sp" />
- <View
- android:layout_width="match_parent"
- android:layout_height="0.5dp"
- android:layout_marginTop="10dp"
- android:background="#FFDCDCDC" />
- <EditText
- android:id="@+id/tysdkn_et_id_card"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="25dp"
- android:background="@null"
- android:hint="输入身份证号码"
- android:imeOptions="actionDone"
- android:inputType="text"
- android:maxLines="1"
- android:textSize="13sp" />
- <View
- android:layout_width="match_parent"
- android:layout_height="0.5dp"
- android:layout_marginTop="10dp"
- android:background="#FFDCDCDC" />
- <Button
- android:id="@+id/tysdkn_btn_bind_real_name"
- android:layout_width="match_parent"
- android:layout_height="38dp"
- android:layout_gravity="center_horizontal"
- android:layout_marginTop="25dp"
- android:background="@drawable/tysdkn_btn_blue_selector"
- android:text="立即认证"
- android:textColor="#ffffff"
- android:textSize="16sp" />
- </LinearLayout>
- </LinearLayout>
|