温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

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