如何获取android活动开始的时间?
我需要获取活动开始时的时间戳,以及活动运行时的当前时间。 提前致谢
I need to get the time stamp when activity is started.and also the the current time when an activity is running.
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不将当前时间写入
onCreate
方法中的日期字段?您可以通过 System.currentTimeMillis() 获取当前时间。Why not writing the current time to a Date field in the
onCreate
method? You get the current time viaSystem.currentTimeMillis()
.