溫馨提示×

溫馨提示×

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

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

如何在Android中實(shí)現(xiàn)倒計(jì)時(shí)功能

發(fā)布時(shí)間:2021-05-27 17:49:27 來源:億速云 閱讀:120 作者:Leah 欄目:移動(dòng)開發(fā)

如何在Android中實(shí)現(xiàn)倒計(jì)時(shí)功能?很多新手對此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。

CountDownTimer 實(shí)現(xiàn)倒計(jì)時(shí)功能的機(jī)制也是用Handler 消息控制,只是它幫我們已經(jīng)封裝好了,先看一下它的介紹。

Schedule a countdown until a time in the future, with regular notifications on intervals along the way. Example of showing a 30 second countdown in a text field:
new CountDownTimer(30000, 1000) {
public void onTick(long millisUntilFinished) {
mTextField.setText("seconds remaining: " + millisUntilFinished / 1000);
}
public void onFinish() {
mTextField.setText(“done!”);
}
}.start();

大致意思是,設(shè)置一個(gè)倒計(jì)時(shí),直到完成這個(gè)時(shí)間段的計(jì)時(shí),并會(huì)實(shí)時(shí)更新時(shí)間的變化,最后舉了一個(gè)30秒倒計(jì)時(shí)的例子,如下:

 new CountDownTimer(30000, 1000) {
   public void onTick(long millisUntilFinished) {
     mTextField.setText("seconds remaining: " + millisUntilFinished / 1000);
   }
   public void onFinish() {
     mTextField.setText("done!");
   }
 }.start();

詳解

可以看到,上面示例中構(gòu)造方法需要傳入兩個(gè)參數(shù),如下:

 /**
 * @param millisInFuture The number of millis in the future from the call to start()
 *           until the countdown is done and onFinish() is called.
 * @param countDownInterval The interval along the way to receive onTick(long) callbacks.
 */
 public CountDownTimer(long millisInFuture, long countDownInterval) {
   mMillisInFuture = millisInFuture;
   mCountdownInterval = countDownInterval;
 }

第一個(gè)參數(shù)是倒計(jì)時(shí)的總時(shí)間,第二個(gè)參數(shù)是倒計(jì)時(shí)的時(shí)間間隔(每隔多久執(zhí)行一次),注意這里傳入的兩個(gè)時(shí)間參數(shù)的單位都是毫秒。

它提供的幾個(gè)方法也很簡單,如下:

如何在Android中實(shí)現(xiàn)倒計(jì)時(shí)功能

  • start():開始倒計(jì)時(shí)。

  • cancel():取消倒計(jì)時(shí)。

  • onFinish():倒計(jì)時(shí)完成后回調(diào)。

  • onTick(long millisUnitilFinished):當(dāng)前任務(wù)每完成一次倒計(jì)時(shí)間隔時(shí)間時(shí)回調(diào)。

驗(yàn)證碼示例

短信驗(yàn)證碼倒計(jì)時(shí)原理很簡單,也就是點(diǎn)擊獲取驗(yàn)證碼開啟倒計(jì)時(shí),在倒計(jì)時(shí)內(nèi)不可點(diǎn)擊,倒計(jì)時(shí)結(jié)束后方可重新獲取,如下所示:

new CountDownTimer(millisUntilFinished, 1000) {
  /**
   * 當(dāng)前任務(wù)每完成一次倒計(jì)時(shí)間隔時(shí)間時(shí)回調(diào)
   * @param millisUntilFinished
   */
  public void onTick(long millisUntilFinished) {
    if (btn_Code != null) {
      //按鈕不可用
      btn_Code.setClickable(false);
      btn_Code.setEnabled(false);
      btn_Code.setText(millisUntilFinished / 1000 + "s");
    }
  }

  /**
   * 倒計(jì)時(shí)完成后回調(diào)
   */
  public void onFinish() {
    if (btn_Code != null) {
      //按鈕可用
      btn_Code.setText("重新獲取");
      btn_Code.setClickable(true);
      btn_Code.setEnabled(true);
    }
    //取消倒計(jì)時(shí)
    cancel();
  }
}.start();

看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進(jìn)一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。

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

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

AI