我在我的 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
.
那么,该怎么做。请帮我。
提前致谢。