答案 0 :(得分:0)
您可以尝试使用CountDownTimers。 您将如何使用它如下:
new CountDownTimer(TotalTime, intervalJump) {
public void onTick(long millisUntilFinished) {
//update your UI here to reflect the time left (represented
//in millis until finished
}
public void onFinish() {
//the countdown is finished
}
}.start();