标签:nbsp ret att turn str ota else tostring for
14. /**
* 把毫秒转换成:1:20:30这样的形式
*
* @param timeMs
* @return
*/
public String stringForTime(int timeMs) {
int totalSeconds = timeMs / 1000;
int seconds = totalSeconds % 60;
int minutes = (totalSeconds / 60) % 60;
int hours = totalSeconds / 3600;
mFormatBuilder.setLength(0);
if (hours > 0) {
return mFormatter.format("%d:%02d:%02d", hours, minutes, seconds)
.toString();
} else {
return mFormatter.format("%02d:%02d", minutes, seconds).toString();
}
}
标签:nbsp ret att turn str ota else tostring for
原文地址:http://www.cnblogs.com/chengxuxia/p/6661883.html