真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

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

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

創(chuàng)新互聯(lián)建站主營(yíng)婁煩網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營(yíng)網(wǎng)站建設(shè)方案,app開(kāi)發(fā)定制,婁煩h5微信小程序開(kāi)發(fā)搭建,婁煩網(wǎng)站營(yíng)銷(xiāo)推廣歡迎婁煩等地區(qū)企業(yè)咨詢(xún)

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è)方法也很簡(jiǎn)單,如下:

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

  • start():開(kāi)始倒計(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í)原理很簡(jiǎn)單,也就是點(diǎn)擊獲取驗(yàn)證碼開(kāi)啟倒計(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)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對(duì)創(chuàng)新互聯(lián)的支持。


分享標(biāo)題:如何在A(yíng)ndroid中實(shí)現(xiàn)倒計(jì)時(shí)功能
標(biāo)題網(wǎng)址:http://weahome.cn/article/pdcejp.html

其他資訊

在線(xiàn)咨詢(xún)

微信咨詢(xún)

電話(huà)咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部