Changes between Initial Version and Version 1 of codesample
- Timestamp:
- 08/26/2014 04:36:43 PM (12 years ago)
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 ----
![(please configure the [header_logo] section in trac.ini)](http://www1.pconline.com.cn/hr/2009/global/images/logo.gif)