Added functions to convert milliseconds into a more readable String

This commit is contained in:
daniel 2012-06-05 22:25:07 +02:00
parent baca017e2a
commit f2a54f8505
2 changed files with 28 additions and 3 deletions

View File

@ -117,7 +117,7 @@ public class MediaplayerActivity extends SherlockActivity {
protected void onProgressUpdate(Long... values) {
super.onProgressUpdate(values);
txtvPosition.setText(
Integer.toString(playbackService.getPlayer().getCurrentPosition()));
Converter.getDurationStringLong(playbackService.getPlayer().getCurrentPosition()));
}
};
@ -136,8 +136,8 @@ public class MediaplayerActivity extends SherlockActivity {
imgvCover.setImageBitmap(
media.getItem().getFeed().getImage().getImageBitmap());
txtvPosition.setText(Integer.toString(player.getCurrentPosition()));
txtvLength.setText(Integer.toString(player.getDuration()));
txtvPosition.setText(Converter.getDurationStringLong((player.getCurrentPosition())));
txtvLength.setText(Converter.getDurationStringLong(player.getDuration()));
}
}

View File

@ -22,6 +22,11 @@ public final class Converter {
private static final int GB_RANGE = 3;
/** Determines the length of the number for best readability.*/
private static final int NUM_LENGTH = 1000;
private static final int HOURS_MIL = 3600000;
private static final int MINUTES_MIL = 60000;
private static final int SECONDS_MIL = 1000;
/** Takes a byte-value and converts it into a more readable
* String.
@ -53,4 +58,24 @@ public final class Converter {
return "ERROR";
}
}
/** Converts milliseconds to a string containing hours, minutes and seconds */
public static String getDurationStringLong(int duration) {
int h = duration / HOURS_MIL;
int rest = duration - h * HOURS_MIL;
int m = rest / MINUTES_MIL;
rest -= m * MINUTES_MIL;
int s = rest / SECONDS_MIL;
return String.format("%02d:%02d:%02d", h, m, s);
}
/** Converts milliseconds to a string containing hours and minutes */
public static String getDurationStringShort(int duration) {
int h = duration / HOURS_MIL;
int rest = duration - h * HOURS_MIL;
int m = rest / MINUTES_MIL;
return String.format("%02d:%02d", h, m);
}
}