123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="@dimen/fragment_common_width"
- android:layout_height="@dimen/fragment_common_height"
- android:layout_gravity="center"
- android:background="#ffffff"
- android:gravity="center_horizontal"
- android:orientation="vertical">
- <include
- layout="@layout/include_top"/>
- <LinearLayout
- android:id="@id/enter_phone_num_ll"
- style="@style/ll_input_field_common"
- android:layout_marginTop="25dp">
- <TextView
- style="@style/tv_area_code"
- android:text="@string/area_code"/>
- <View
- android:layout_width="1dp"
- android:layout_height="match_parent"
- android:background="@color/line_bg"/>
- <com.kingcheergame.jqgamesdk.view.ClearableEditText
- android:id="@id/phone_num_et"
- style="@style/et_input_field_common"
- android:hint="@string/please_enter_the_phone_number"
- android:inputType="number"
- android:paddingRight="@dimen/cet_right_padding"/>
- </LinearLayout>
- <LinearLayout
- android:id="@id/enter_verification_code_ll"
- style="@style/ll_input_field_common"
- android:layout_marginTop="16dp">
- <ImageView
- style="@style/iv_input_field_common"
- android:src="@drawable/iv_get_notification_code"/>
- <View
- android:layout_width="1dp"
- android:layout_height="match_parent"
- android:background="@color/line_bg"/>
- <com.kingcheergame.jqgamesdk.view.ClearableEditText
- android:id="@id/verification_code_et"
- style="@style/et_input_field_common"
- android:hint="@string/please_enter_verification_code"
- android:inputType="number"/>
- <View
- android:id="@id/split_line_view"
- android:layout_width="1px"
- android:layout_height="match_parent"
- android:layout_gravity="center_vertical"
- android:layout_marginBottom="4dp"
- android:layout_marginLeft="4dp"
- android:layout_marginTop="4dp"
- android:background="#777879"
- android:visibility="gone"/>
- <Button
- android:id="@id/get_verification_code_btn"
- style="@style/btn_get_notification_code"
- android:layout_margin="1dp"
- android:text="@string/get_verification_code"/>
- </LinearLayout>
- <LinearLayout
- android:id="@id/enter_pwd_ll"
- style="@style/ll_input_field_common"
- android:layout_marginTop="15dp"
- android:visibility="gone">
- <ImageView
- style="@style/iv_input_field_common"
- android:src="@drawable/iv_enter_pwd"/>
- <View
- android:layout_width="1dp"
- android:layout_height="match_parent"
- android:background="@color/line_bg"/>
- <com.kingcheergame.jqgamesdk.view.ClearableEditText
- android:id="@id/new_pwd_et"
- style="@style/et_input_field_common"
- android:hint="@string/please_enter_new_pwd"
- android:inputType="textPassword"
- android:paddingRight="@dimen/cet_right_padding"/>
- </LinearLayout>
- <Button
- android:id="@id/next_step_btn"
- style="@style/btn_common"
- android:layout_marginTop="16dp"
- android:background="@drawable/selector_btn_deep_green"
- android:text="@string/next_step"/>
- <LinearLayout
- android:id="@id/customer_service_ll"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="8dp"
- android:gravity="center">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:gravity="center"
- android:text="@string/contact_qq_customer_service"
- android:textColor="#444444"
- android:textSize="12sp"/>
- <TextView
- android:id="@id/qq_number_tv"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:gravity="center"
- android:textColor="#0D6FB8"
- android:textSize="12sp"/>
- </LinearLayout>
- <Button
- android:id="@id/finish_btn"
- style="@style/btn_common"
- android:layout_marginBottom="20dp"
- android:layout_marginTop="20dp"
- android:background="@drawable/selector_btn_deep_green"
- android:text="@string/finish"
- android:visibility="gone"/>
- <TextView
- android:id="@id/customer_service_phone_tv"
- style="@style/tv_customer_service_phone"
- android:layout_marginTop="10dp"
- android:visibility="gone"/>
- </LinearLayout>
|