谁能告诉我反向地理编码器是如何工作的。我有使用 getFromlocation 和 getLastKnownLocation 来查找地址的代码。问题是我不知道如何在其上使用 OnLocationChanged 以及如何在不需要时禁用侦听器。在过去的两天里,我完全糊涂了。如果有人可以为我提供一些带有完整示例或链接的好资源,那就太好了..
Geocoder geocoder = new Geocoder(
TrackLogic.this.getApplicationContext(),
Locale.getDefault());
Location locationGPS = locationManager
.getLastKnownLocation(LocationManager.GPS_PROVIDER);
Location locationNetwork = locationManager
.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
Log.d(TAG, "geocoder works");