如何使用定位工具获取android中移动设备的当前纬度和经度?
使用LocationManager。
LocationManager
LocationManager lm = (LocationManager)getSystemService(Context.LOCATION_SERVICE); Location location = lm.getLastKnownLocation(LocationManager.GPS_PROVIDER); double longitude = location.getLongitude(); double latitude = location.getLatitude();
对的调用getLastKnownLocation()不会阻塞-这意味着null如果当前没有可用的位置,它将返回-因此,你可能希望查看将a传递LocationListener给该requestLocationUpdates()方法,这将为你提供位置的异步更新。
getLastKnownLocation()
a
LocationListener
requestLocationUpdates()
private final LocationListener locationListener = new LocationListener() { public void onLocationChanged(Location location) { longitude = location.getLongitude(); latitude = location.getLatitude(); } } lm.requestLocationUpdates(LocationManager.GPS_PROVIDER, 2000, 10, locationListener);
如果要使用GPS,则需要向你的应用程序ACCESS_FINE_LOCATION授予权限。
ACCESS_FINE_LOCATION
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
你可能还想添加GPS不可用时的ACCESS_COARSE_LOCATION权限,然后使用getBestProvider()方法选择位置提供商。
ACCESS_COARSE_LOCATION
getBestProvider()