<?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="@color/background"
|
android:orientation="vertical" >
|
|
<RelativeLayout
|
android:id="@+id/title_layout"
|
android:layout_width="match_parent"
|
android:layout_height="45dp"
|
android:background="@color/white" >
|
|
<ImageView
|
android:id="@+id/mImageTitleBack"
|
android:layout_width="30dp"
|
android:layout_height="30dp"
|
android:layout_centerVertical="true"
|
android:layout_marginLeft="8dp"
|
android:padding="5dp"
|
android:src="@drawable/mg_ic_toolbar_back"
|
/>
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_centerHorizontal="true"
|
android:layout_centerVertical="true"
|
android:text="实名认证"
|
android:textColor="@color/text_4c"
|
android:textSize="17sp" />
|
</RelativeLayout>
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="0.6dp"
|
android:background="@color/mg_line" />
|
|
<FrameLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent" >
|
|
<ScrollView
|
android:id="@+id/mScrollView"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:scrollbars="none" >
|
|
<LinearLayout
|
android:id="@+id/fragment_icon_layout"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="5dp"
|
android:orientation="vertical"
|
android:padding="10dp" >
|
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:text="尊敬的用户:\n根据国家规定,游戏用户需要实名认证。"
|
android:textColor="@color/text_666" />
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="8dp"
|
android:background="@color/white"
|
android:orientation="vertical"
|
android:padding="8dp" >
|
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:text="• 信息仅限用于认证且绝对保密"
|
android:textColor="@color/text_666" />
|
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="4dp"
|
android:text="• 未成年人不允许在游戏内支付"
|
android:textColor="@color/text_666" />
|
</LinearLayout>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="12dp"
|
android:background="@drawable/shape_corner_stroke_white"
|
android:orientation="vertical"
|
android:paddingLeft="10dp"
|
android:paddingRight="10dp" >
|
|
<LinearLayout
|
android:id="@+id/fragment_account_change_pwd_layout"
|
android:layout_width="match_parent"
|
android:layout_height="44dp"
|
android:gravity="center_vertical"
|
android:orientation="horizontal"
|
android:paddingLeft="5dp"
|
android:paddingRight="5dp" >
|
|
<EditText
|
android:id="@+id/mEditRealName"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="@color/white"
|
android:hint="姓名"
|
android:textColorHint="@color/text_999"
|
android:textSize="14sp" />
|
</LinearLayout>
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="0.6dp"
|
android:background="@color/mg_line" />
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="44dp"
|
android:gravity="center_vertical"
|
android:orientation="horizontal"
|
android:paddingLeft="5dp"
|
android:paddingRight="5dp" >
|
|
<EditText
|
android:id="@+id/mEditCardNum"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="@color/white"
|
android:hint="身份号码"
|
android:inputType="text"
|
android:textColorHint="@color/text_999"
|
android:textSize="14sp" />
|
</LinearLayout>
|
</LinearLayout>
|
|
<LinearLayout
|
android:id="@+id/mLayoutConfirm"
|
android:layout_width="match_parent"
|
android:layout_height="45dp"
|
android:layout_marginTop="20dp"
|
android:background="@drawable/drawable_exit_account_button"
|
android:gravity="center"
|
android:orientation="horizontal"
|
android:paddingBottom="8dp"
|
android:paddingTop="8dp" >
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="确 定"
|
android:textColor="@color/white"
|
android:textSize="20sp" />
|
</LinearLayout>
|
</LinearLayout>
|
</ScrollView>
|
|
<TextView
|
android:id="@+id/mTextSuccess"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:gravity="center"
|
android:visibility="gone"
|
android:text="已经完成绑定" />
|
</FrameLayout>
|
|
</LinearLayout>
|