计算持续时间
我有一个小的android问题,我需要一个计时器来计算从特定活动打开到单击该活动中的某个按钮的持续时间,即活动打开的时间。在谷歌搜索时,我发现了 TimerTask,但这似乎只在一定的时间间隔内运行一个线程,而且从我的 Android 经验来看,这似乎并不适合这项工作
。关于如何计算持续时间有什么想法吗?最好以非常简单的方式
非常欢迎任何帮助
问候, 米琳达D
I have a small android problem, I have a requirement to have a timer to calculate the duration from the time a specific activity was open till a certain button in that activity is clicked, simply how long the activity was open. While googling around I found TimerTask but this seems to run a thread for a certain interval only though and doesent seem ideal for the job from my little Android experience
Any idea on how to calculate the duration? Preferably in a very simple manner
Any help is very welcome
Regards,
MilindaD
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
只需使用
System.currentTimeMillis()
捕获活动开始和停止的时间。例如:Just use
System.currentTimeMillis()
to capture the time when the activity starts and stops. E.g.:从 Java 8 开始,有更方便的方法可以做到这一点。
这种方法的好处是 Duration 类提供更灵活的 API。
https://docs.oracle.com/javase/8 /docs/api/java/time/Duration.html
As of Java 8 there is more convenient way of doing this.
Benefit of this approach is more flexible API provided by the Duration class.
https://docs.oracle.com/javase/8/docs/api/java/time/Duration.html
如果您想了解活动开放多长时间。
您可以在
根据您的需要。
并使用以下代码
If you want to find out how long activity is open.
You can write respective code in
depending on your need.
and make use of following code
组:'org.apache.commons',名称:'commons-lang3'
group: 'org.apache.commons',name: 'commons-lang3'