安卓时代用于在Android中显示特定于语言环境的时间的库安装。通过此存储库创建一个新的库项目并在您的项目中引用它。
用法:
相对时间:
String formattedTime;
formattedTime = RelativeTime.fromTimestamp(getResources(), 1394804793000L); // formattedTime could now be <45>
formattedTime = RelativeTime.fromMilliseconds(getResources(), -435000); // formattedTime is now <7>
formattedTime = RelativeTime.fromSeconds(getResources(), 15300); // forma
暂无评论