我想获得与传递的字符串更相似的 5 个地址的列表,但有些东西不起作用。
例如,如果我写“avenida”,西班牙有数千条“avenida”街道,但 getFromLocationName 方法返回 0。
private void getAddressInfo(Context context, String locationName){
Geocoder geocoder = new Geocoder(context);
try {
List<Address> a = geocoder.getFromLocationName(locationName, 5);
for(int i=0;i<a.size();i++){
String city = a.get(0).getLocality();
String country = a.get(0).getCountryName();
String address = a.get(0).getAddressLine(0); // If any additional address line present than only, check with max available address lines by getMaxAddressLineIndex()
addressList.add(address+", "+city+", "+country);
}
} catch (IOException e) {
e.printStackTrace();
}
}
代码有问题吗?