Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> android CountDownTimer

android CountDownTimer

編輯:關於Android編程

最近做項目用到了到計時功能,發現了一個很好用的內建類CountDownTimer。當然,這種效果可以用TimerTask + Timer來實現。只是我個人覺得CountDownTimer顯得更簡潔,易用。

下面來看一下developer文檔的解釋,以及示例代碼:

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

  onTick()與onFinish()都是抽象方法,所以你可以按需重寫他。

上面表示CountDownTimer的作用是從30s開始以秒為單位倒計時,其中mTextField上顯示剩余的時間,當時間為0時,調用onFinish方法,mTextField上done!
怎麼樣,是不是特別的簡單。好吧,在最後附上簡單的測試demo。額,高手勿噴,飄過即可。剛開始接觸的可以來看一下。

點擊打開鏈接

 好吧,就這樣!
  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved