Android中获取纬度和经度的正确方法
我需要以编程方式在 Android 中获取纬度和经度的正确方法。我查看了不同的网站和论坛,但仍然找不到正确的网站和论坛。该程序应支持所有 Android 版本。我使用 wifi 将我的设备连接到网络。
I need the correct way of getting latitude and longitude in Android programmatically. I viewed different sites and forums but still I couldn't get the correct one. The program should support for all the Android versions. I use wifi to get my device connected to net.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
下面的实现创建了一个位置监听器,它将更新的值记录为字符串,以方便提取。通过使用 LocationManager,您可以抽象底层方法(GPS/辅助 GPS、wifi、手机信号塔)来检索位置。
首先初始化:
LocationListener:
Below implementation creates a locationlistener that records the updated values as strings for convenience which can be easily extracted. By using the LocationManager you abstract the underlying method (GPS/assissted-GPS, wifi, cell-tower) to retrieve the location.
Initialize first:
LocationListener:
别担心,在绞尽脑汁几天之后,我用几行代码来获取经度和纬度值......我认为这会帮助事情变得更好,感谢您的建议!!!!
Dont Worry, After scratching my head over few days, I got code working in over a few lines to get longitude and latitude values... I think this will help things go better, Thanks for your suggestions!!!!