How to get the current latitude and longitude in Android Application?
本问题已经有最佳答案,请猛点这里访问。
我想找到我在android应用程序中当前位置的纬度和经度。它不是在位置上更改。我获得了纬度和经度值而位置Changed.but我需要当前的纬度和经度位置。如何做到这一点?
阅读Android文档以获取用户位置
1 2 3 | Location location=manager.getLastKnownLocation(LocationManager.GPS_PROVIDER);// location.getLatitude(); location.getLongitude(); |