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

溫馨提示×

溫馨提示×

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

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

Android 中自定義一個驗證碼輸入框

發布時間:2021-06-11 15:12:58 來源:億速云 閱讀:241 作者:Leah 欄目:移動開發

這篇文章將為大家詳細講解有關Android 中自定義一個驗證碼輸入框,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

原理

大致是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

Android 中自定義一個驗證碼輸入框

VCInputType

 Android 中自定義一個驗證碼輸入框

 輸入框背景色支持類型

1、@drawable/xxx

2、@color/xxx

3、#xxxxxx

關于Android 中自定義一個驗證碼輸入框就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

湘潭市| 视频| 辽阳县| 娱乐| 德昌县| 县级市| 万山特区| 井冈山市| 布尔津县| 赤壁市| 洮南市| 蕉岭县| 洛浦县| 镇江市| 江门市| 喀什市| 紫云| 巴东县| 郎溪县| 易门县| 洱源县| 大洼县| 洪湖市| 景泰县| 南开区| 台南市| 沅江市| 新田县| 潞城市| 贵港市| 宣恩县| 井陉县| 麻城市| 军事| 保靖县| 通州区| 华容县| 塘沽区| 枣阳市| 昆明市| 迁西县|