溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Android中如何實(shí)現(xiàn)倒計(jì)時(shí)驗(yàn)證

發(fā)布時(shí)間:2021-07-15 11:16:28 來(lái)源:億速云 閱讀:105 作者:小新 欄目:移動(dòng)開發(fā)

這篇文章主要介紹了Android中如何實(shí)現(xiàn)倒計(jì)時(shí)驗(yàn)證,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

短信驗(yàn)證碼功能,這里總結(jié)了兩種常用的方式,可以直接拿來(lái)使用??磮D:

Android中如何實(shí)現(xiàn)倒計(jì)時(shí)驗(yàn)證

說明:這里的及時(shí)從10開始,是為了演示的時(shí)間不要等太長(zhǎng)而修改的。

1、第一種方式:Timer

/**
 * Description:自定義Timer
 * <p>
 * Created by Mjj on 2016/12/4.
 */

public class TimeCount extends CountDownTimer {

  private Button button;

  //參數(shù)依次為總時(shí)長(zhǎng),和計(jì)時(shí)的時(shí)間間隔
  public TimeCount(Button button, long millisInFuture, long countDownInterval) {
    super(millisInFuture, countDownInterval);
    this.button = button;
  }

  //計(jì)時(shí)過程顯示
  @Override
  public void onTick(long millisUntilFinished) {
    String time = "(" + millisUntilFinished / 1000 + ")秒";
    setButtonInfo(time, "#c1c1c1", false);
  }

  //計(jì)時(shí)完畢時(shí)觸發(fā)
  @Override
  public void onFinish() {
    setButtonInfo("重新獲取", "#f95353", true);
  }

  /**
   * 驗(yàn)證按鈕在點(diǎn)擊前后相關(guān)設(shè)置
   *
   * @param content 要顯示的內(nèi)容
   * @param color  顏色值
   * @param isClick 是否可點(diǎn)擊
   */
  private void setButtonInfo(String content, String color, boolean isClick) {
    button.setText(content);
    button.setBackgroundColor(Color.parseColor(color));
    button.setClickable(isClick);
  }
}

說明:根據(jù)自己的需求,在這里修改背景顏色和不同狀態(tài)顯示文字即可,在需要監(jiān)聽的按鈕下直接調(diào)用new TimerCount(xxx,xxx,xxx).start()即可。

2、第二種方式:Handler

/**
   * 第二種方式:使用Handler
   * <p>
   * 靜態(tài)內(nèi)部類:避免內(nèi)存泄漏
   */
  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;
        }
      }
    }
  }

  /**
   * 監(jiān)聽按鈕下直接調(diào)用即可
   */
  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實(shí)時(shí)接收消息來(lái)設(shè)置Button的狀態(tài),對(duì)于消息的發(fā)送用的是sendMessage方式,也可以使用post方式。

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“Android中如何實(shí)現(xiàn)倒計(jì)時(shí)驗(yàn)證”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來(lái)學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI