本文介绍了安卓:倒计时,时间格式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在毫秒为单位的数据和倒计时I类将显示这种格式的时间:天:Houres:分:秒。
如果我做毫秒/ 1000我有第二个总
如果我做(毫秒/ 1000)/ 60我有总分钟数
等等
但我怎么能显示该格式的倒计时:2dayes:21houres 56分:00秒

I have a data in milliseconds and with CountDown class I would to display the time in this format : Days : Houres : Minutes : Seconds.If I do milliseconds / 1000 I have the total secondIf I do (milliseconds / 1000) / 60 I have the total minutesEtcbut how can I display a countdown in this format : 2dayes : 21houres : 56 minutes : 00seconds

感谢

推荐答案

你应该使用日期格式或SimpleDateFormat的,看的

you should use DateFormat or SimpleDateFormat, see http://developer.android.com/reference/java/text/DateFormat.html

首先,你应该你毫秒转换为日期。

First, you should convert your milliseconds to Date.

Date date = new Date();
date.setTime(millis);

然后就可以使用的DateFormat你的时间戳格式人类可读的字符串。

Then you could use DateFormat to format your timestamp to human-readable string.

这篇关于安卓:倒计时,时间格式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-23 15:39