12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?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="wrap_content"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="@dimen/dp_20"
- android:layout_marginRight="@dimen/dp_20"
- android:orientation="vertical">
- <TextView
- android:id="@+id/ej_phone_verify_code_msg_tv"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/dp_10"
- android:gravity="center"
- android:text="@string/ej_phone_verify_code_msg"
- android:textColor="@color/ej_font_black"
- android:textSize="@dimen/sp_20" />
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/dp_10">
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:orientation="horizontal">
- <TextView
- android:id="@+id/ej_phone_verify_code_send_phone_num_tv"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/ej_phone_verify_code_send_phone_num"
- android:textColor="@color/ej_font_gray"
- android:textSize="@dimen/sp_14" />
- <com.ejyx.widget.RemainingTimeTextView
- android:id="@+id/ej_phone_verify_code_remaining_time_tv"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="@dimen/dp_5"
- android:text="@string/ej_remaining_time"
- android:textColor="@color/ej_font_gray"
- android:textSize="@dimen/sp_12"
- android:background="@drawable/ej_shape_phone_verify_code_remaining_time_background"/>
- </LinearLayout>
- </RelativeLayout>
- <com.ejyx.widget.VerifyCodeView
- android:id="@+id/ej_phone_verify_code_vcv"
- android:layout_width="@dimen/dp_240"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:layout_marginTop="@dimen/dp_20" />
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="@string/ej_phone_verify_code_notice"
- android:textSize="@dimen/sp_10"
- android:textColor="@color/ej_font_red"
- android:gravity="center"
- android:layout_marginTop="@dimen/dp_25"
- android:layout_marginBottom="@dimen/dp_30"/>
- </LinearLayout>
- </LinearLayout>
|