如何让android Activity并行运行
我有两个类,一个是可以处理 Chronometer 的活动,另一个是处理 LocationListener。我想将它们一起运行以使用秒表并获取更改的位置。
有人有任何样品或建议吗?谢谢
补充: 很抱歉提出了令人困惑的问题。我只需要知道如何让计时器运行,同时保持位置更改。
I have two class, one is an activity that can handle Chronometer, another is handle LocationListener.I want to run them together to use stopwatch and to get changed location.
Anyone have any samples or suggestions ? Thanks
Addition:
Sorry for the confuse question. I just need to know how to make chronometer run while keeping location that changed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
那么,您可以使用
LocationListener
在每次更改位置时将位置添加到数组中以跟踪位置。示例:
然后您可以使用 System.getTimeMillis() (或类似的东西) 当你想要获取开始时间时,和当你想要获取结束时间时相同的方法。只需将两者相减即可得到时间差以及所用的时间。
Well, you could use the
LocationListener
to add Location to an array every time it is changed to keep track of location.Example:
Then you could use System.getTimeMillis() (or something akin) when you want to get the start time, and the same method when you want to get the end time. Just subtract the two to get the time difference and how long it took.