Android 中的线程
我刚刚开始 Android 开发,我想在我的应用程序中创建线程,每三十秒后获取当前位置。请给我一些您认为对这个问题有用的提示或任何教程链接。
I have just started Android Development, I want to make thread in my application which get the current location after every thirty seconds. Kindly give me some hints or any tutorial link which you think is useful for this problem.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
基本上,您需要创建处理程序并使用该处理程序每三十秒更新一次 GUI。有关如何更新 GUI 的更多信息,请点击此处。有关如何获取位置的更多信息,请阅读此 android 从可用的最佳提供商处获取位置< /a>
Basically you need to create handler and update the gui every thirty seconds using that handler. For more info how to update the gui click here. For more info how the get the location read this android get location from best provider available
这是一个很好的起点。请注意,如果您是 Android 开发新手,您会在 Android 网站。从这里开始,也许可以读一本关于 Java 线程的好书,这本书 是非常好的书。
This is a good place to start. Note that if you are new to Android development you will find a lot of good resources at the Android website. Start there and maybe grab a good book on threads in Java, this one is very good book for that.