|
|
@@ -0,0 +1,97 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<RelativeLayout
|
|
|
+ xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_alignParentBottom="true"
|
|
|
+ android:layout_gravity="bottom"
|
|
|
+ android:background="#000000"
|
|
|
+ android:orientation="vertical"
|
|
|
+ >
|
|
|
+ <TextView
|
|
|
+ android:layout_marginTop="17.5dp"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:textSize="12sp"
|
|
|
+ android:textColor="#ffffff"
|
|
|
+ android:lineSpacingExtra="3.5sp"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:text="@string/sign_up_id_confirm_completed"
|
|
|
+ />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="10.5dp"
|
|
|
+ android:layout_marginBottom="8dp"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="1dp"
|
|
|
+ android:background="#333333"/>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:gravity="center"
|
|
|
+ android:orientation="vertical"
|
|
|
+ >
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/text_view_authorization_result_name"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:textSize="12sp"
|
|
|
+ android:textColor="#666666"
|
|
|
+ android:lineSpacingExtra="7.5sp"
|
|
|
+ android:gravity="end"
|
|
|
+ android:layout_marginBottom="5dp"
|
|
|
+ android:text="@string/sign_up_completed_name"
|
|
|
+ />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/text_view_authorization_result_gender"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:textSize="12sp"
|
|
|
+ android:textColor="#666666"
|
|
|
+ android:lineSpacingExtra="7.5sp"
|
|
|
+ android:gravity="end"
|
|
|
+ android:layout_marginBottom="5dp"
|
|
|
+ android:text="@string/sign_up_completed_gender"
|
|
|
+ />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/text_view_authorization_result_birth_date"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:textSize="12sp"
|
|
|
+ android:textColor="#666666"
|
|
|
+ android:lineSpacingExtra="7.5sp"
|
|
|
+ android:gravity="end"
|
|
|
+ android:layout_marginBottom="5dp"
|
|
|
+ android:text="@string/sign_up_completed_birth_date"
|
|
|
+ />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/text_view_authorization_result_phone_number"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:textSize="12sp"
|
|
|
+ android:textColor="#666666"
|
|
|
+ android:lineSpacingExtra="7.5sp"
|
|
|
+ android:gravity="end"
|
|
|
+ android:layout_marginBottom="17.5dp"
|
|
|
+ android:text="@string/sign_up_completed_phone_number"
|
|
|
+ />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+</RelativeLayout>
|