fun fromTenthsToSeconds()

in TwoWaySample/app/src/main/java/com/example/android/databinding/twowaysample/util/Converter.kt [21:29]


fun fromTenthsToSeconds(tenths: Int) : String {
    return if (tenths < 600) {
        String.format("%.1f", tenths / 10.0)
    } else {
        val minutes = (tenths / 10) / 60
        val seconds = (tenths / 10) % 60
        String.format("%d:%02d", minutes, seconds)
    }
}