1

我在我的 android 应用程序中使用计时器。

这就是我正在使用的,

Timer t = new Timer();
 //Set the schedule function and rate
 t.scheduleAtFixedRate(new TimerTask() {

      public void run() 
     {
         //Called each time when 1000 milliseconds (1 second) (the period parameter)
         runOnUiThread(new Runnable() {

                public void run() 
                {
                    TextView tv = (TextView) findViewById(R.id.timer);
                    tv.setText(String.valueOf(time));
                    time += 1;

                }

            });
     }

 },
 //Set how long before to start calling the TimerTask (in milliseconds)
 0,
 //Set the amount of time between each execution (in milliseconds)
 1000); 

在我的代码中,只有seconds你可以看到,但我想要它在 Minutes 和 seconds 中,例如00:01.

那么,该怎么做。请帮我。

提前致谢。

4

1 回答 1

1

一种获得String您正在寻找的方法,看起来像.-

int seconds = time % 60;
int minutes = time / 60;
String stringTime = String.format("%02d:%02d", minutes, seconds);
tv.setText(stringTime);

如果您只需要在 second 中显示结果Activity,我建议将时间值传递到 args 包中,并String从将显示它的活动中生成。

于 2013-09-28T13:34:33.203 回答