Android Chronometer:设定天文台的格式

时间:2013-03-18 13:06:42

标签: android android-widget

我有一个天文台格式( hh:mm:ss )。我喜欢格式( mm:ss )(仅限分钟)。

例如:01:30:00到90:00。请帮帮我

1 个答案:

答案 0 :(得分:-1)

考虑以下代码:

/**
 * Format of the time
 */
private final static String MINUTE_SECOND_FORMAT = "%02d:%02d";

///// code... 

final int minutes = (currentSeconds % 3600) / 60;
final int seconds = currentSeconds % 60;

String formatted = String.format(Locale.getDefault(), MINUTE_SECOND_FORMAT, minutes, seconds);

通过这个,您可以在几分钟内获得格式化的字符串:第二种格式。