我想在android中寫一個從3開始計數到0的倒數計時器。先出現3個然後消失和2個出現等等。我搜查了很多,但我找不到任何好的樣本。你能幫我嗎?我該怎麼辦?Android倒數計時器
10
A
回答
18
使用CountDownTimer
例如:
import android.os.CountDownTimer;
MyCount timerCount;
public class TestCountdown extends Activity {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
timerCount = new MyCount(3 * 1000, 1000);
timerCount.start();
}
public class MyCount extends CountDownTimer {
public MyCount(long millisInFuture, long countDownInterval) {
super(millisInFuture, countDownInterval);
}
@Override
public void onFinish() {
//some script here
}
@Override
public void onTick(long millisUntilFinished) {
//some script here
}
}
}
6
Android中的好人想到了你。
你有一個類 - CountDownTimer
。
0
我不會寫這個代碼,但這應該不難。只需使用一個線程來顯示值3(使用說TextView)然後睡覺說(假設你希望它改變100毫秒後1秒),然後減少並重復。
一個例子是
for i=0 to 3
print the number
thread.sleep(100)
相關問題
- 1. Android Studio倒數計時器
- 2. 倒計時計時器android
- 3. 倒計時 - iPhone倒數計時器
- 4. 修復倒計時倒數計時器
- 5. 頂部小時倒數計時器Android
- 6. 倒數計時器
- 7. 倒數計時器?
- 8. 倒數計時器
- 9. 倒數計時器
- 10. 在Android應用程序中繪製「倒數計時器」倒數計時器
- 11. 倒計時器爲Android
- 12. 自動倒計時器和動態倒計時器android
- 13. 倒計時計時器問題android
- 14. Android ProgressBar計時器倒計時
- 15. 在Android的倒計時計時器
- 16. 倒計時計時器問題Android
- 17. 倒計時計時器爲android
- 18. Android倒數計時器至今
- 19. Android倒數計時器應用程序
- 20. Android遊戲倒數計時器
- 21. 服務中的Android倒數計時器
- 22. Android中的倒數計時器錯誤
- 23. Android遊戲連續倒數計時器
- 24. 倒數計時器需要在Android
- 25. android倒計時
- 26. JQuery倒計時器不倒計時
- 27. 倒計時器
- 28. PHP倒數計時器
- 29. 如何倒數計時器
- 30. 遞歸倒數計時器
使用的AsyncTask :) – pgsandstrom 2012-04-04 12:04:30
檢查這一點 - https://stackoverflow.com/a/47695735/ 6244429 – 2017-12-07 13:42:47