欢迎来到代码驿站!

Android代码

当前位置:首页 > 移动开发 > Android代码

Android 使用fast-verification实现验证码填写功能的实例代码

时间:2020-10-03 10:16:09|栏目:Android代码|点击:

fast-verification

验证码的验证环节现在是移动APP中不可缺少的一部分,直接使用EditText组件虽然方便但缺少了一些美感,使用fast-verification,让实现验证码变得更简单。

在这里插入图片描述

依赖到项目项目根gradle中添加

maven { url 'https://www.jitpack.io' }

示例:

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

在需要使用的module层级的gradle中添加

implementation 'com.github.sariki-L:fast-verification:1.1'

示例:

dependencies {
 ...
 implementation 'com.github.sariki-L:fast-verification:1.1'
}

正式使用xml中添加VerificationLayout

<com.sariki.fastverification.VerificationLayout
 android:background="@android:color/transparent"
 android:id="@+id/verification"
 android:layout_width="match_parent"
 android:layout_height="match_parent"/>

初始化

 verification = findViewById(R.id.verification);
 verification.init(this, VerificationType.LENGTH_LONG);

变量名 对应验证码长度
VerificationType.LENGTH_LONG 6位
VerificationType.LENGTH_SHORT 4位

验证码输入完成时的回调

verification.setEndListener(new VerificationTypeListener() {
  @Override
  public void onFinish(String result) {
  if (!result.equals(**需校对内容**)){
   verification.setErrType();
  }else{
   ...
  }
  }
 });

在setEndListener中设置监听,重写onFinish方法处理输入完成后的状态。
setErrType为调用默认错误处理。

设置参数

如果对默认验证码框背景不满意,可以在代码中对部分参数进行更改

需写在init调用前

设置验证码框背景

verification.setDrawBackground();

设置验证码文字大小

verification.setDrawSize();

设置验证码文字颜色

verification.setDrawColor();

项目地址:github

总结

上一篇:手把手教你用Android自定义饼状图

栏    目:Android代码

下一篇:Android开发之DialogFragment用法实例总结

本文标题:Android 使用fast-verification实现验证码填写功能的实例代码

本文地址:http://www.codeinn.net/misctech/6459.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有