Blackberry - 无法从事件线程调用 getLocation() 方法
我想获取设备的经度和纬度。我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只需创建另一个线程并从该线程调用 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.