0
我想在Countdowntimer中創建一個if命令。當倒數到達具體數字時會說「Yeee Congrats Blalbalba」。我怎樣才能做到這一點 ?倒數計時器和If命令
我看了那麼多頁面,但沒有看到任何關於它的內容。
我想在Countdowntimer中創建一個if命令。當倒數到達具體數字時會說「Yeee Congrats Blalbalba」。我怎樣才能做到這一點 ?倒數計時器和If命令
我看了那麼多頁面,但沒有看到任何關於它的內容。
使用倒計時器這樣的:
countDownTimer = new CountDownTimer(15000, 1000) {
public void onTick(long millisUntilFinished) {
// Do stuff every 1000 millisecs (1 sec)
}
public void onFinish() {
// Do stuff when the countdown is over (after 15000 millisec)
}
}.start();
我已經使用that.For如果CountDownTimer等於5爲例應用程序會給我通知 – Thorin