|
|
@@ -46,8 +46,11 @@
|
|
|
android:layout_weight="3"
|
|
|
android:background="@null"
|
|
|
android:hint="@string/phone_identify_name_hint"
|
|
|
+ android:inputType="text"
|
|
|
android:lineSpacingExtra="5.5sp"
|
|
|
- android:textColor="#c5c5c5"
|
|
|
+ android:maxLength="30"
|
|
|
+ android:textColor="#000000"
|
|
|
+ android:textColorHint="#c5c5c5"
|
|
|
android:textSize="14sp"
|
|
|
/>
|
|
|
|
|
|
@@ -69,7 +72,8 @@
|
|
|
android:drawablePadding="5dp"
|
|
|
android:gravity="center"
|
|
|
android:padding="8dp"
|
|
|
- android:text="@string/phone_identify_local"/>
|
|
|
+ android:text="@string/phone_identify_local"
|
|
|
+ android:textColor="@color/radio_color_selector"/>
|
|
|
|
|
|
<RadioButton
|
|
|
android:id="@+id/radio_button_foreign"
|
|
|
@@ -81,7 +85,8 @@
|
|
|
android:drawablePadding="5dp"
|
|
|
android:gravity="center"
|
|
|
android:padding="8dp"
|
|
|
- android:text="@string/phone_identify_foreign"/>
|
|
|
+ android:text="@string/phone_identify_foreign"
|
|
|
+ android:textColor="@color/radio_color_selector"/>
|
|
|
</RadioGroup>
|
|
|
|
|
|
</LinearLayout>
|
|
|
@@ -134,8 +139,11 @@
|
|
|
android:layout_weight="2"
|
|
|
android:background="@null"
|
|
|
android:hint="@string/phone_identify_birth_hint"
|
|
|
+ android:inputType="number"
|
|
|
android:lineSpacingExtra="5.5sp"
|
|
|
- android:textColor="#c5c5c5"
|
|
|
+ android:maxLength="8"
|
|
|
+ android:textColor="#000000"
|
|
|
+ android:textColorHint="#c5c5c5"
|
|
|
android:textSize="14sp"
|
|
|
/>
|
|
|
|
|
|
@@ -158,7 +166,8 @@
|
|
|
android:drawablePadding="5dp"
|
|
|
android:gravity="center"
|
|
|
android:padding="8dp"
|
|
|
- android:text="@string/phone_identify_male"/>
|
|
|
+ android:text="@string/phone_identify_male"
|
|
|
+ android:textColor="@color/radio_color_selector"/>
|
|
|
|
|
|
<RadioButton
|
|
|
android:id="@+id/radio_button_female"
|
|
|
@@ -170,7 +179,8 @@
|
|
|
android:drawablePadding="5dp"
|
|
|
android:gravity="center"
|
|
|
android:padding="8dp"
|
|
|
- android:text="@string/phone_identify_female"/>
|
|
|
+ android:text="@string/phone_identify_female"
|
|
|
+ android:textColor="@color/radio_color_selector"/>
|
|
|
</RadioGroup>
|
|
|
</LinearLayout>
|
|
|
|
|
|
@@ -439,8 +449,11 @@
|
|
|
android:layout_weight="3"
|
|
|
android:background="@null"
|
|
|
android:hint="@string/phone_identify_phone_hint"
|
|
|
+ android:inputType="number"
|
|
|
android:lineSpacingExtra="5.5sp"
|
|
|
- android:textColor="#c5c5c5"
|
|
|
+ android:maxLength="8"
|
|
|
+ android:textColor="#000000"
|
|
|
+ android:textColorHint="#c5c5c5"
|
|
|
android:textSize="14sp"
|
|
|
/>
|
|
|
|
|
|
@@ -504,30 +517,35 @@
|
|
|
android:layout_height="wrap_content"
|
|
|
android:layout_weight="6"
|
|
|
android:background="@null"
|
|
|
+ android:hint="@string/phone_identify_six_characters"
|
|
|
+ android:inputType="number"
|
|
|
android:lineSpacingExtra="5.5sp"
|
|
|
- android:text="@string/phone_identify_six_characters"
|
|
|
- android:textColor="#c5c5c5"
|
|
|
+ android:maxLength="6"
|
|
|
+ android:textColor="#000000"
|
|
|
+ android:textColorHint="#c5c5c5"
|
|
|
android:textSize="14sp"/>
|
|
|
|
|
|
<LinearLayout
|
|
|
android:id="@+id/phone_identify_layout"
|
|
|
- android:orientation="horizontal"
|
|
|
android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content">
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:orientation="horizontal">
|
|
|
|
|
|
<ImageView
|
|
|
- android:layout_width="0dp"
|
|
|
- android:layout_height="15dp"
|
|
|
+ android:layout_width="13dp"
|
|
|
+ android:layout_height="13dp"
|
|
|
android:layout_gravity="center"
|
|
|
- android:layout_weight="1"
|
|
|
+ android:layout_marginLeft="8.8dp"
|
|
|
+ android:layout_marginRight="5.3dp"
|
|
|
android:src="@drawable/icon_input_clock"
|
|
|
/>
|
|
|
|
|
|
<TextView
|
|
|
android:id="@+id/text_view_phone_identify_time"
|
|
|
- android:layout_width="0dp"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_weight="1"
|
|
|
+ android:layout_marginRight="12dp"
|
|
|
android:lineSpacingExtra="5.5sp"
|
|
|
android:textColor="#999999"
|
|
|
android:textSize="14sp"
|
|
|
@@ -536,14 +554,13 @@
|
|
|
|
|
|
<TextView
|
|
|
android:id="@+id/button_phone_identify_time_expansion"
|
|
|
- android:layout_width="0dp"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_weight="2"
|
|
|
android:gravity="end"
|
|
|
android:lineSpacingExtra="3.5sp"
|
|
|
+ android:text="@string/phone_identify_time_delay"
|
|
|
android:textColor="@color/button_state_color"
|
|
|
android:textSize="12sp"
|
|
|
- android:text="@string/phone_identify_time_delay"
|
|
|
/>
|
|
|
</LinearLayout>
|
|
|
</LinearLayout>
|
|
|
@@ -561,16 +578,6 @@
|
|
|
android:layout_height="1dp"
|
|
|
android:background="#e5e5e5"/>
|
|
|
|
|
|
- </LinearLayout>
|
|
|
-
|
|
|
- <LinearLayout
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_marginBottom="67dp"
|
|
|
- android:layout_marginLeft="24.5dp"
|
|
|
- android:layout_marginRight="24.5dp"
|
|
|
- android:layout_marginTop="7dp">
|
|
|
-
|
|
|
<TextView
|
|
|
android:id="@+id/text_authorized_number_validation"
|
|
|
android:layout_width="wrap_content"
|