将 UNIXTIMESTAMP 与 ummalqura-calendar 库一起使用

Use UNIXTIMESTAMP with ummalqura-calendar Library

我正在使用 ummalqura-calendar 在我的 Android 应用程序中显示回历日期

我从后端服务获取日期作为 UNIXTIMESTAMP,我如何将这种格式与库一起使用

如果你有一个 unix 时间戳(seconds since epoch),你应该能够将时间戳乘以 1000 得到毫秒并使用 setTime;

Calendar uCal = new UmmalquraCalendar();
uCal.setTime(new Date(myTimestamp * 1000));

如果您已经有了以毫秒为单位的时间戳,只需省略乘法即可。