91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android如何自定義驗證碼輸入框

發布時間:2021-09-27 13:56:06 來源:億速云 閱讀:122 作者:小新 欄目:編程語言

這篇文章主要為大家展示了“Android如何自定義驗證碼輸入框”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“Android如何自定義驗證碼輸入框”這篇文章吧。

需求

1、能自定義輸入框個數和樣式

2、支持長按粘貼或剪切板內容自動填充(粘貼連續性)

其中第2點是最為重要的,正是其他人沒有這點,逼得自己弄一個

原理

大致是Edittext + n* TextView,然后設置edittext字體跟背景顏色都為透明,隱藏光標

Edittext:監聽edittext每次輸入一個字符就賦值到對應的TextView上,然后在清空自己

下劃線:在TextView下面添加View

光標:這里的每個TextView的焦點光標其實對View設置了ValueAnimator

粘貼:粘貼彈窗是自定義的PopupWindow

源碼有詳細注釋,這里就不一一說明

Github

https://github.com/WShaobin/VerificationCodeInputView

Gradle

Step 1. Add it in your root build.gradle at the end of repositories:

allprojects { repositories { ... maven { url 'https://jitpack.io' } }}

Step 2. Add the dependency:

dependencies {  implementation 'com.github.WShaobin:VerificationCodeInputView:1.0.2'}

How to use

In layout

<com.wynsbin.vciv.VerificationCodeInputView  android:id="@+id/vciv_code"  android:layout_width="match_parent"  android:layout_height="wrap_content"  android:layout_marginTop="48dp"  android:gravity="center"  android:orientation="horizontal"  app:vciv_et_background="@android:color/white"  app:vciv_et_foucs_background="@android:color/holo_orange_dark"  app:vciv_et_cursor_color="@color/colorPrimary"  app:vciv_et_height="58dp"  app:vciv_et_inputType="number"  app:vciv_et_number="6"  app:vciv_et_text_color="@android:color/black"  app:vciv_et_text_size="18sp"  app:vciv_et_underline_default_color="@android:color/holo_green_dark"  app:vciv_et_underline_focus_color="@android:color/holo_blue_bright"  app:vciv_et_underline_height="2dp"  app:vciv_et_underline_show="true"  app:vciv_et_width="58dp" />

In Java Code

VerificationCodeInputView view = findViewById(R.id.vciv_code);view.setOnInputListener(new VerificationCodeInputView.OnInputListener() {  @Override  public void onComplete(String code) {    Toast.makeText(MainActivity.this, code, Toast.LENGTH_SHORT).show();  }  @Override  public void onInput() {  }});//清除驗證碼view.clearCode();

Attributes

VCInputType

輸入框背景色支持類型

1、@drawable/xxx

2、@color/xxx

3、#xxxxxx

以上是“Android如何自定義驗證碼輸入框”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

长寿区| 华亭县| 吴旗县| 虹口区| 桐乡市| 美姑县| 仁化县| 朔州市| 吴旗县| 运城市| 威远县| 汪清县| 佛山市| 敦煌市| 内丘县| 永吉县| 恩施市| 桑植县| 民勤县| 边坝县| 治多县| 镇巴县| 纳雍县| 永平县| 罗定市| 南丹县| 调兵山市| 绍兴县| 辽宁省| 平泉县| 宁南县| 桑植县| 南皮县| 罗甸县| 英山县| 沧源| 会同县| 藁城市| 罗山县| 景宁| 调兵山市|