123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/tysdkn_dialog_real_name_root"
- android:layout_width="330dp"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:orientation="vertical"
- android:background="@drawable/tysdkn_edit_two_bg"
- android:focusable="true"
- android:focusableInTouchMode="true">
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="11dp"
- android:orientation="horizontal">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:layout_marginLeft="12dp"
- android:text="实名认证"
- android:textStyle="bold"
- android:textColor="#30B8FF"
- android:textSize="16sp" />
- <ImageView
- android:id="@+id/tysdkn_real_name_close_iv"
- android:layout_width="20dp"
- android:layout_height="20dp"
- android:layout_alignParentRight="true"
- android:layout_marginRight="10dp"
- android:layout_centerVertical="true"
- android:background="@drawable/tysdkn_real_name_close"
- />
- </RelativeLayout>
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textColor="#454444"
- android:textSize="12sp"
- android:layout_marginLeft="16dp"
- android:layout_marginTop="10dp"
- android:text="根据国家规定,游戏用户需要进行实名认证。"
- />
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="90dp"
- android:layout_marginLeft="16dp"
- android:layout_marginTop="10dp"
- android:layout_marginRight="16dp">
- <LinearLayout
- android:id="@+id/tysdkn_input_account_root"
- android:layout_width="310dp"
- android:layout_height="40dp"
- android:layout_centerHorizontal="true"
- android:background="@drawable/tysdkn_edit_input_bg"
- android:orientation="horizontal">
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_gravity="center"
- android:src="@drawable/tysdkn_real_name_userid" />
- <EditText
- android:id="@+id/tysdkn_real_name_username_et"
- android:layout_width="0dp"
- android:layout_height="40dp"
- android:layout_weight="1"
- android:background="@null"
- android:hint="输入真实姓名"
- android:layout_gravity="center"
- android:paddingLeft="5dp"
- android:paddingRight="30dp"
- android:selectAllOnFocus="true"
- android:singleLine="true"
- android:textColor="#000000"
- android:textColorHint="#c8c8c8"
- android:textSize="14sp" />
- </LinearLayout>
- <LinearLayout
- android:layout_width="310dp"
- android:layout_height="40dp"
- android:layout_centerHorizontal="true"
- android:layout_marginTop="50dp"
- android:background="@drawable/tysdkn_edit_input_bg"
- android:orientation="horizontal">
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_marginLeft="10dp"
- android:src="@drawable/tysdkn_real_name_id" />
- <EditText
- android:id="@+id/tysdkn_real_name_number_et"
- android:layout_width="0dp"
- android:layout_height="40dp"
- android:layout_weight="1"
- android:background="@null"
- android:hint="输入证件号码"
- android:inputType="text"
- android:layout_gravity="center"
- android:maxLines="1"
- android:paddingLeft="5dp"
- android:selectAllOnFocus="true"
- android:textColor="#818181"
- android:textColorHint="#c8c8c8"
- android:textSize="14sp" />
- </LinearLayout>
- </RelativeLayout>
- <TextView
- android:id="@+id/tysdkn_real_name_commit_tv"
- android:layout_width="match_parent"
- android:layout_height="40dp"
- android:layout_marginTop="8dp"
- android:layout_marginLeft="16dp"
- android:layout_marginRight="16dp"
- android:layout_gravity="center"
- android:background="@drawable/tysdkn_login_in_bt"
- android:gravity="center"
- android:text="确认提交"
- android:layout_marginBottom="12dp"
- android:textColor="#ffffff"
- android:textSize="14sp" />
- <RelativeLayout
- android:id="@+id/tysdkn_certificates_type_rl"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:visibility="gone"
- >
- <TextView
- android:id="@+id/tysdkn_other_type_id_tv"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:textSize="13sp"
- android:layout_marginRight="25dp"
- android:layout_marginBottom="12dp"
- android:textColor="#999999"
- android:text="其它证件类型"
- />
- </RelativeLayout>
- </LinearLayout>
-
|