如何在android studio中的mytalking tom中实现类似于计时器的计时器

时间:2016-03-14 14:04:52

标签: android android-studio timer

我想知道如何在我说话的汤姆连接游戏中实现类似于计时器的计时器。如果你可以帮助我,那将是很棒的。我是这个领域的新手。

enter image description here

1 个答案:

答案 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();