Android 中倒计时验证两种常用方式实例详解
作者:lqh 时间:2022-08-29 04:44:41
Android 中倒计时验证两种常用方式实例详解
短信验证码功能,这里总结了两种常用的方式,可以直接拿来使用。看图:
说明:这里的及时从10开始,是为了演示的时间不要等太长而修改的。
1、第一种方式:Timer
/**
* Description:自定义Timer
* <p>
* Created by Mjj on 2016/12/4.
*/
public class TimeCount extends CountDownTimer {
private Button button;
//参数依次为总时长,和计时的时间间隔
public TimeCount(Button button, long millisInFuture, long countDownInterval) {
super(millisInFuture, countDownInterval);
this.button = button;
}
//计时过程显示
@Override
public void onTick(long millisUntilFinished) {
String time = "(" + millisUntilFinished / 1000 + ")秒";
setButtonInfo(time, "#c1c1c1", false);
}
//计时完毕时触发
@Override
public void onFinish() {
setButtonInfo("重新获取", "#f95353", true);
}
/**
* 验证按钮在点击前后相关设置
*
* @param content 要显示的内容
* @param color 颜色值
* @param isClick 是否可点击
*/
private void setButtonInfo(String content, String color, boolean isClick) {
button.setText(content);
button.setBackgroundColor(Color.parseColor(color));
button.setClickable(isClick);
}
}
说明:根据自己的需求,在这里修改背景颜色和不同状态显示文字即可,在需要监听的按钮下直接调用new TimerCount(xxx,xxx,xxx).start()即可。
2、第二种方式:Handler
/**
* 第二种方式:使用Handler
* <p>
* 静态内部类:避免内存泄漏
*/
private static class MyHandler extends Handler {
private final WeakReference<MainActivity> weakReference;
public MyHandler(MainActivity activity) {
weakReference = new WeakReference<MainActivity>(activity);
}
@Override
public void handleMessage(Message msg) {
super.handleMessage(msg);
MainActivity activity = weakReference.get();
if (activity != null) {
switch (msg.what) {
case 0:
if (msg.arg1 == 0) {
btn2.setText("重新获取");
btn2.setBackgroundColor(Color.parseColor("#f95353"));
btn2.setClickable(true);
} else {
btn2.setText("(" + msg.arg1 + ")秒");
btn2.setBackgroundColor(Color.parseColor("#c1c1c1"));
btn2.setClickable(false);
}
break;
}
}
}
}
/**
* 监听按钮下直接调用即可
*/
private void sendMessageClick() {
new Thread(new Runnable() {
@Override
public void run() {
for (int i = 59; i >= 0; i--) {
Message msg = myHandler.obtainMessage();
msg.arg1 = i;
myHandler.sendMessage(msg);
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}).start();
}
说明:此种方式采用的handler实时接收消息来设置Button的状态,对于消息的发送用的是sendMessage方式,也可以使用post方式。
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
来源:http://blog.csdn.net/wufeng55/article/details/53457966
标签:Android,倒计时,验证
0
投稿
猜你喜欢
WPF+SkiaSharp实现自绘拖曳小球
2023-03-25 01:31:14
深入理解SpringMVC中央调度器DispatcherServlet
2023-03-11 08:54:48
Java面试题之基本语法(图解)
2023-11-24 09:37:34
springboot通过注解、接口创建定时任务详解
2021-06-05 06:00:29
Freemarker中的3种循环模式
2021-11-05 09:47:53
C# zxing二维码写入的实例代码
2021-09-01 12:23:26
关于通过java调用datax,返回任务执行的方法
2023-11-28 21:26:45
android高仿小米时钟(使用Camera和Matrix实现3D效果)
2022-05-15 01:46:18
HashMap原理及put方法与get方法的调用过程
2023-10-06 03:53:02
Android Studio 通过登录功能介绍SQLite数据库的使用流程
2023-09-22 00:37:29
c#获取两个特定字符之间的内容并输出的方法
2021-12-02 19:47:11
Java NIO深入分析
2022-12-29 03:50:27
Java Apache common-pool对象池介绍
2022-08-24 22:53:06
详解Java中方法重写与重载的区别(面试高频问点)
2022-07-19 10:36:48
JavaWeb项目部署到服务器详细步骤详解
2023-11-29 11:15:20
AndroidManifest.xml <uses-feature>和<uses-permisstion>分析及比较
2023-11-05 12:17:12
使用Flutter实现一个走马灯布局的示例代码
2023-06-19 03:50:03
java实现的各种排序算法代码示例
2023-01-29 03:48:27
android 实现APP中改变头像图片的实例代码
2021-11-02 20:39:58
Eclipse添加xml文件提示及Hibernate配置学习
2023-08-17 05:01:47