1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <?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="33dp">
- <TextView
- style="@style/tv_area_code"
- android:text="+86"/>
- <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
- style="@style/ll_input_field_common"
- android:layout_marginTop="19dp">
- <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="?android:attr/borderlessButtonStyle"
- android:layout_width="67dp"
- android:layout_height="match_parent"
- android:layout_margin="1dp"
- android:background="#ff7200"
- android:gravity="center"
- android:text="@string/get_verification_code"
- android:textColor="@color/white"
- android:textSize="10sp"/>
- </LinearLayout>
- <Button
- android:id="@id/finish_btn"
- style="@style/btn_common"
- android:layout_marginTop="21dp"
- android:background="@drawable/selector_btn_deep_green"
- android:text="@string/finish"/>
- <TextView
- android:id="@id/customer_service_phone_tv"
- style="@style/tv_customer_service_phone"
- android:layout_marginTop="10dp"
- android:visibility="gone"/>
- </LinearLayout>
|