我想使用从android API获得的长值,将日期作为长整数返回,表示自Epoch以来的毫秒数。
我需要使用像isBefore()plusDays()isAfter()
这样的方法Cursor managedCursor = getContentResolver().query(CallLog.Calls.CONTENT_URI,
new String[]{"number", "type", "date", "duration", "name"},
null, null, strOrder);
在java中,我可以使用LocalDate和LocalTime类来处理这个问题,不幸的是这些类在android上不存在,所以android上可用的类类似于localdate和localtime?
答案 0 :(得分:2)
https://github.com/dlew/joda-time-android
这是Android中最常用的库。大小有点沉重,但如果这不是问题,那么它比使用Android更好的方式给你