2016-03-14 67 views

回答

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(); 
+0

如何實現在XML文件:/ – g11

+0

倒數計時器不是UI方面,它是在後臺運行,並倒計數的線程。用戶界面方面完全取決於您的設計選擇。例如,您可以使用代表imageView中加載欄不同階段的100個圖像,並根據countDownTimer進度更改imageView的背景(儘管這是做不好的方法)。 – gedo