48 lines
1.7 KiB
XML
48 lines
1.7 KiB
XML
<?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"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
tools:context="com.jyn.vcview.simple.MainActivity">
|
|
|
|
<com.jyn.vcview.VerificationCodeView
|
|
android:id="@+id/verificationcodeview"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="30dp"
|
|
android:gravity="center"
|
|
android:orientation="horizontal"
|
|
app:vcv_et_bg="@drawable/et_login_code"
|
|
app:vcv_et_cursor="@drawable/et_cursor"
|
|
app:vcv_et_cursor_visible="false"
|
|
app:vcv_et_inputType="numberPassword"
|
|
app:vcv_et_number="4"
|
|
app:vcv_et_text_color="@android:color/black"
|
|
app:vcv_et_text_size="6sp" />
|
|
|
|
<EditText
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:inputType="numberPassword"
|
|
android:visibility="gone" />
|
|
|
|
<TextView
|
|
android:id="@+id/text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_marginTop="20dp"
|
|
android:text="验证码"
|
|
android:textSize="20sp" />
|
|
|
|
<Button
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_marginTop="20dp"
|
|
android:onClick="clear"
|
|
android:text="清空输入框" />
|
|
</LinearLayout>
|