如何让android Activity并行运行

发布于 2024-11-19 01:54:29 字数 158 浏览 3 评论 0原文

我有两个类,一个是可以处理 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酒中人 2024-11-26 01:54:29

那么,您可以使用 LocationListener 在每次更改位置时将位置添加到数组中以跟踪位置。

示例:

public class MyClass implements LocationListener{
    private static List<Location> locationList = new ArrayList<Location>();
    @Override
    onLocationChanged(Location location){
        locationList.add(location);
    }
}

然后您可以使用 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:

public class MyClass implements LocationListener{
    private static List<Location> locationList = new ArrayList<Location>();
    @Override
    onLocationChanged(Location location){
        locationList.add(location);
    }
}

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文