Changes between Initial Version and Version 1 of codesample


Ignore:
Timestamp:
08/26/2014 04:36:43 PM (12 years ago)
Author:
liaojiaohe
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • codesample

    v1 v1  
     1倒计时功能可以是用[http://developer.android.com/reference/android/os/CountDownTimer.html CountDownTimer] 
     2 
     3{{{ 
     4 new CountDownTimer(30000, 1000) { 
     5 
     6     public void onTick(long millisUntilFinished) { 
     7         mTextField.setText("seconds remaining: " + millisUntilFinished / 1000); 
     8     } 
     9 
     10     public void onFinish() { 
     11         mTextField.setText("done!"); 
     12     } 
     13  }.start(); 
     14}}} 
     15 
     16----