-1
我有一個定時器:CountDownTimer不斷重複循環
new CountDownTimer(10000, 1000) {
public void onTick(long millisUntilFinished)
{label.setText("Seconds Remaining: " + millisUntilFinished/1000);}
public void onFinish() {doSomething();}
}.start();
它從10遞減計數,並且如果它達到0法 'doSomething的()' 運行。但它不斷重演。我需要'doSomething()'只運行10次。請記住,如果定時器未達到0,另一種方法也需要運行。
謝謝,任何幫助
您如何知道計時器是否未達到0? – Keppil 2013-02-27 13:56:34
@Keppil當激活doSomething()和按下該按鈕的同一個按鈕時 – user2111061 2013-02-27 13:57:44
後doSomething – Blackbelt 2013-02-27 14:14:40