1
任何人都可以告訴我地址解析器的工作原理。我有代碼使用getFromlocation和getLastKnownLocation找出地址。事情是我不知道如何使用它onLocationChanged和如何禁用偵聽器,當我不需要它。過去2天我完全困惑。如果有任何一個能提供我一些好的資源,完整的例子或鏈接這將是偉大的..Geocoder類別說明
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");
如果我與geocoder.getFromLocation一起使用locationManager.getLastKnownLocation發生什麼呢? – user2511882
我不知道。我只使用getFromLocation()。我認爲getFromLocation()的結果會覆蓋getLastKnownLocation()。你使用這個API什麼? –
我試圖在點擊一個按鈕時檢索用戶位置。但我不斷收到怪異的迴應。有時它返回null和東西。 – user2511882