<?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="@android:color/transparent"
|
android:gravity="center">
|
<LinearLayout
|
android:id="@+id/linearLayout"
|
android:layout_width="300dp"
|
android:layout_height="240dp"
|
android:orientation="vertical"
|
android:background="@drawable/mr_real_name_dialog_shape">
|
|
<RelativeLayout
|
android:layout_width="match_parent"
|
android:layout_height="50dp">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_centerInParent="true"
|
android:text="@string/mr_real_name_authentication"
|
android:textColor="@color/black"
|
android:textSize="@dimen/user_center_title"/>
|
|
<ImageView
|
android:id="@+id/mr_real_name_close_iv"
|
android:layout_width="30dp"
|
android:layout_height="30dp"
|
android:layout_alignParentRight="true"
|
android:layout_centerVertical="true"
|
android:layout_marginRight="10dp"
|
android:background="@drawable/mr_real_name_close" />
|
|
<Button
|
android:layout_width="match_parent"
|
android:layout_height="@dimen/user_center_item_height"
|
android:layout_alignParentTop="true"
|
android:layout_centerHorizontal="true"
|
android:layout_marginTop="124dp"
|
android:background="@color/user_center_password_confirm"
|
android:text="@string/mr_user_center_confirm"
|
android:textColor="@color/white" />
|
</RelativeLayout>
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1px"
|
android:background="@color/user_center_divide_line"/>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="40dp"
|
android:gravity="center_vertical"
|
android:orientation="horizontal">
|
|
<ImageView
|
android:layout_width="30dp"
|
android:layout_height="30dp"
|
android:layout_marginLeft="25dp"
|
android:layout_marginRight="15dp"
|
android:src="@drawable/mr_real_name" />
|
|
<EditText
|
android:id="@+id/mr_real_name_et"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_marginRight="10dp"
|
android:layout_weight="1"
|
android:background="@null"
|
android:hint="@string/mr_input_real_name" />
|
|
</LinearLayout>
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1px"
|
android:layout_marginLeft="10dp"
|
android:layout_marginRight="10dp"
|
android:background="@color/user_center_divide_line"/>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="40dp"
|
android:gravity="center_vertical"
|
android:orientation="horizontal">
|
|
<ImageView
|
android:layout_width="30dp"
|
android:layout_height="30dp"
|
android:layout_marginLeft="25dp"
|
android:layout_marginRight="15dp"
|
android:src="@drawable/mr_id_card_num" />
|
|
<EditText
|
android:id="@+id/mr_identity_card_num_et"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_marginRight="10dp"
|
android:layout_weight="1"
|
android:background="@null"
|
android:hint="@string/mr_input_identity_card_num" />
|
|
</LinearLayout>
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1px"
|
android:layout_marginLeft="10dp"
|
android:layout_marginRight="10dp"
|
android:background="@color/user_center_divide_line"/>
|
|
<TextView
|
android:id="@+id/mr_authentication_error_tv"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="10dp"
|
android:layout_marginTop="2dp"
|
android:text="@string/mr_input_identity_card_error"
|
android:textColor="@color/mr_real_name_authentication_error"
|
android:textSize="@dimen/user_center_set_phoneNum_textsize01"
|
android:visibility="invisible" />
|
|
<Button
|
android:id="@+id/mr_real_name_ok_btn"
|
android:layout_width="match_parent"
|
android:layout_height="@dimen/user_center_item_height"
|
android:layout_marginLeft="10dp"
|
android:layout_marginRight="10dp"
|
android:layout_marginTop="10dp"
|
android:background="@drawable/mr_corner_circle"
|
android:text="@string/mr_user_center_confirm"
|
android:textColor="@color/white" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="10dp"
|
android:layout_marginTop="5dp"
|
android:text="@string/mr_real_name_authentication_mark"
|
android:textSize="@dimen/user_center_set_phoneNum_textsize01"
|
android:textColor="@color/mr_real_name_authentication_mark_tc"/>
|
|
</LinearLayout>
|
</LinearLayout>
|