下面是我的代码。对于某些地址,以下代码适用于 Android Device API level-8。但是对于某些地址,地址的值返回为 []。但是从 iphone 调用同一服务器时,我没有遇到这样的问题。
Geocoder geocoder = new Geocoder(getApplicationContext(), Locale.getDefault());
List<Address> address = geocoder.getFromLocationName(MAPADDRESS, 1);
如何在 android 设备中解决此问题。