Here you can find the source of convertOffsetToMinutesSeconds(int offset)
static public String convertOffsetToMinutesSeconds(int offset)
//package com.java2s; //License from project: Apache License public class Main { /**/* w w w . jav a 2 s . c o m*/ * Convert a given millisecond offset into mm:ss string format */ static public String convertOffsetToMinutesSeconds(int offset) { int seconds = (int) (offset / 1000); int minutes = seconds / 60; String strSeconds = new String(); seconds = seconds - (minutes * 60); if (seconds < 10) { strSeconds = "0" + seconds; } else { strSeconds = "" + seconds; } String strMinutes = "" + minutes; return (strMinutes + ":" + strSeconds); } }