栏目分类:
子分类:
返回
文库吧用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
文库吧 > IT > 软件开发 > 移动开发 > Android

Android​短信验证码倒计时验证的2种常用方式

Android 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Android​短信验证码倒计时验证的2种常用方式

前言

​本文主要介绍的是短信验证码功能,这里总结了两种常用的方式,可以直接拿来使用。

看图


计时器

说明:这里的及时从10开始,是为了演示的时间不要等太长而修改的。

方法如下

1、第一种方式:Timer



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);
  }

  
  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


  private static class MyHandler extends Handler {

    private final WeakReference weakReference;

    public MyHandler(MainActivity activity) {
      weakReference = new WeakReference(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方式。

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定帮助,如果有疑问大家可以留言交流。

转载请注明:文章转载自 www.wk8.com.cn
本文地址:https://www.wk8.com.cn/it/160428.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 wk8.com.cn

ICP备案号:晋ICP备2021003244-6号