Android开发之获取短信验证码后按钮背景变化并且出现倒计时
作者:mrr 时间:2022-12-21 10:09:40
目前越来越多的app在注册或是进行对应操作时,要求获取短信验证码,在点击了获取短信验证码的按钮后,就是出现倒计时,比如倒计时120S,在倒计时期间内,按钮背景变化并且出现倒计时,当倒计时结束后,如果你没有获取到验证码,可以再次点击。
代码如下所示:
VerCodeTimer mVerCodeTimer=(Button) findViewById(R.id.login_get_ver_code);
private class VerCodeTimer extends CountDownTimer {
private int seconds;
private int interval;
//millisInFuture为你设置的此次倒计时的总时长,比如60秒就设置为60000
//countDownInterval为你设置的时间间隔,比如一般为1秒,根据需要自定义。
public VerCodeTimer(long millisInFuture, long countDownInterval) {
super(millisInFuture, countDownInterval);
seconds = (int) (millisInFuture / 1000);
interval= (int) (countDownInterval/1000);
}
//每过你规定的时间间隔做的操作
@Override
public void onTick(long millisUntilFinished) {
getVerCodeButton.setText((seconds-interval) + "秒后重新获取");
}
//倒计时结束时做的操作↓↓
@Override
public void onFinish() {
getVerCodeButton.setTextSize(10);
getVerCodeButton.setText("重新获取验证码");
getVerCodeButton.setClickable(true);
getVerCodeButton.setBackgroundResource(R.drawable.login_get_ver_code_before_bg);
}
}
@Override
public void onBackPressed() {
if (mVerCodeTimer != null)
mVerCodeTimer.cancel();
super.onBackPressed();
}
使用的时候:
getVerCodeButton.setTextSize(11);
getVerCodeButton.setClickable(false);
getVerCodeButton.setBackgroundResource(R.drawable.login_get_ver_code_ago_bg);
mVerCodeTimer = new VerCodeTimer(60000, 1000);
mVerCodeTimer.start();
login_edit_normal_bg.xml:
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle"
android:useLevel="false">
<!-- 背景填充颜色值 -->
<solid android:color="#6c948b" />
<!-- radius值越大,越趋于圆形 -->
<corners android:radius="10dip" />
<!-- 圆角图像内部填充四周的大小 ,将会以此挤压内部布置的view -->
<padding
android:bottom="10dip"
android:left="10dip"
android:right="10dip"
android:top="10dip" />
</shape>
login_edit_passed_bg.xml:
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle"
android:useLevel="false">
<!-- 背景填充颜色值 -->
<solid android:color="#509989" />
<!-- radius值越大,越趋于圆形 -->
<corners android:radius="10dip" />
<!-- 圆角图像内部填充四周的大小 ,将会以此挤压内部布置的view -->
<padding
android:bottom="10dip"
android:left="10dip"
android:right="10dip"
android:top="10dip" />
</shape>
以上所述是小编给大家介绍了Android开发之获取短信验证码后按钮背景变化并且出现倒计时 的全部代码,希望本段代码能够帮助大家。同时感谢大家一直以来对脚本之家网站的支持。
标签:android,短信,验证码,倒计时
0
投稿
猜你喜欢
Android 开发音频组件(Vitamio FAQ)详细介绍
2021-06-24 01:09:15
C#实现获取程序路径方法小结
2022-05-09 19:40:48
详解Android中的MVP架构分解和实现
2022-11-30 08:06:29
C++ 让函数返回数组的方法
2022-12-04 06:49:33
浅析Java中Map与HashMap,Hashtable,HashSet的区别
2022-05-31 13:46:57
Java之System.getProperty()的作用及使用说明
2023-05-18 12:34:51
C# Winform实现波浪滚动效果
2023-05-05 04:36:54
C#实现DataTable映射成Model的方法(附源码)
2023-03-12 06:10:56
android耳机左右声道接反具体修正方法
2021-05-27 21:16:38
Springmvc完成ajax功能实例详解
2021-09-07 23:23:25
Android中实现淘宝购物车RecyclerView或LIstView的嵌套选择的逻辑
2023-03-07 08:08:24
springboot之端口设置和contextpath的配置方式
2023-10-05 14:16:20
Android极光推送处理message遇到的坑解决
2022-08-08 00:49:32
基于Java字符编码的使用详解
2023-02-26 23:13:01
java定义二维数组的几种写法(小结)
2021-07-05 11:52:09
Spring源码之请求路径匹配路由方式
2022-04-09 03:11:19
Android开发中TextView 实现右上角跟随文本动态追加圆形红点
2022-09-07 07:20:57
Android实现换肤的两种思路分析
2023-03-25 13:54:18
解决Mybatis-Plus操作分页后数据失效问题
2023-11-25 11:31:55
Spring Boot日志技术logback原理及配置解析
2022-09-14 10:51:57