Blackberry - 无法从事件线程调用 getLocation() 方法

发布于 2024-08-12 04:54:04 字数 165 浏览 6 评论 0原文

我想获取设备的经度和纬度。我使用 location api 来获取经度和纬度,现在我面临的问题是我无法在按钮单击事件中调用 getLocation() 方法。它抛出一个错误,因为无法从事件线程调用 getLocation() 方法。有人能告诉我如何解决这个问题吗?

I want to get the longitude and latitude of device. I used location api to get the longtitude and latitude the problem now I am facing is that I could not call the getLocation() method inside button click event. It throws an error as getLocation() method cannot be called from event thread.Can any one tell me how to solve this problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

稀香 2024-08-19 04:54:04

您只需创建另一个线程并从该线程调用 getLocation() 即可。请参阅 API 文档中 java.lang.Thread 的文档。

You simply create another thread and call getLocation() from that thread. See the documentation for java.lang.Thread in the API documentation.

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