前言

记录一下,格式化时间显示代码片段。

正文

根据时间的范围,进行时间的格式化

100秒 : 01:40

400秒 : 01:06:40

记录一下,方便自己查阅

/**
 * 时间格式化
 *
 * @param value    value
 * @param bigValue value是否>=3600s
 */
@SuppressLint("DefaultLocale")
private String formatTime(int value, boolean bigValue) {
    if (bigValue) {
        return String.format("%02d:%02d:%02d", value / 60 / 60, value / 60 % 60, value % 60);
    } else {
        return String.format("%02d:%02d", value / 60 % 60, value % 60);
    }
}

参考文章

相关文章

暂无评论

none
暂无评论...