我已經成功實現秒錶,但我沒有得到適當的毫秒數,如下所示的兩位數mm:ss。 SS 02:54。 ,我的代碼是Android秒錶:兩位數毫秒
private Runnable updateTimerThread = new Runnable() {
public void run() {
timeMill=timeMill+100;
updateTime(timeMill);
stopWatchHandler.postDelayed(this, 100);
}
};
private void updateTime(long updatedTime) {
//I want to convert this updateTime to Milliseonds like two digit 23
}
我也試試這個final int mill = (int) (updatedTime % 1000);
但這始終讓10,20,30 ...等,但我想10,11,12,13..so上,如果你有任何想法,請幫我。
感謝您的回覆,但我沒有得到適當的毫秒爲使用此我變得像這樣30:00.70,30:00.80,但我想像30:00.71,30:00.72這個 –
你的增量是100ms。使用10ms代替 –
我的秒錶將很慢 –