我需要知道
android开发中是否有类似时间的东西?
在C#中有类似的东西,我喜欢以两种方式使用它:
>生成一个时间跨度然后添加例如分钟然后显示整个范围
>生成两个DateTime之间的时间跨度(android中DateTime的等价物是什么?)
解决方法
public long addSeconds(long dt,int sec) //method to add seconds in time { Date Dt = new Date(dt); Calendar cal = new GregorianCalendar(); SimpleDateFormat sdf = new SimpleDateFormat("MM-dd-yyyy HH:mm:ss"); sdf.setCalendar(cal); cal.setTimeInMillis(Dt.getTime()); cal.add(Calendar.SECOND,sec); return cal.getTime().getTime(); }
以秒为单位传递日期和时间,它将返回修改时间…