Android时间间隔百分比
我有三个日期对象 - startDate、endDate、currentDate。它们代表时间间隔的开始/结束以及当前日期。我想知道如果 currentDate 位于 startDate 和 endDate 之间,currentDate 代表 (x) 的百分比。
谢谢!
I have three date objects - startDate, endDate, currentDate. They represent the start/end of a time interval, and the curent date. I would like to know what percentage does the currentDate represents (x), if currentDate is bewtween the startDate and endDate.
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过在每个日期使用
.getTime()
来计算百分比:编辑:添加
* 100f
因为它是百分比,而不是小数...You can calculate the percentage by using
.getTime()
on each date:EDIT: added
* 100f
due to it being a percentage, not decimal...