You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.5 KiB
41 lines
1.5 KiB
9 months ago
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<include layout="@layout/toolbar" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/tvAccountDesc"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginHorizontal="@dimen/sw_22dp"
|
||
|
android:layout_marginTop="@dimen/sw_55dp"
|
||
|
android:text="@string/please_input_code"
|
||
|
android:textColor="@color/text_color_1"
|
||
|
android:textSize="@dimen/sw_20sp"
|
||
|
android:textStyle="bold" />
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginHorizontal="@dimen/sw_22dp"
|
||
|
android:layout_marginTop="@dimen/sw_6dp"
|
||
|
android:text="@string/the_verification_code_was_sent_to_phone"
|
||
|
android:textColor="@color/c_727778"
|
||
|
android:textSize="@dimen/sw_14sp" />
|
||
|
|
||
|
<com.project.survey.widget.edittext.verificationcode.SerialnumberLayout
|
||
|
android:id="@+id/etInputCode"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginHorizontal="@dimen/sw_22dp"
|
||
|
android:layout_marginTop="@dimen/sw_24dp"
|
||
|
app:code_number="6"
|
||
|
app:line_color_default="@color/c_dfdfdf"
|
||
|
app:line_color_focus="@color/colorPrimary" />
|
||
|
|
||
|
|
||
|
</LinearLayout>
|