Android Gps AsyncTask 和 ProgressDialog 不确定
我想做这样的事情:
public class Gps {
public void getLatitude(){}
public void getLongitude(){}
}
但是使用 AsyncTask
和 ProgressDialog
不确定来获取位置位置。
我有一个像我的示例一样的类,但是当我添加 GPS 侦听器时,我使用 LocationManager
中的 requestSingleUpdate
方法立即检索位置。我想使用 AsyncTask
来实现此操作,以立即获取 GPS 位置,并在检索位置时显示不确定的进度对话框。
I want to do something like this:
public class Gps {
public void getLatitude(){}
public void getLongitude(){}
}
But using AsyncTask
and ProgressDialog
indeterminate to get location position.
I have a class like my example, but when I add a GPS listener I use requestSingleUpdate
method from LocationManager
to retrieve a location at once. I want to implement this using AsyncTask
to get GPS position at once and show progress dialog indeterminate when retrieving location.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你在寻找这样的东西吗?
Do you look for something like this?!