小弟想要用Geocoder把经纬度转成地址
可是使用geocoder.getFromLocation时每次都会跑出ERROR
请问是哪里写错了吗?
还是有什么除了Internet以外的Permission
public String getAddress(){
Geocoder gc = new Geocoder(this, Locale.ENGLISH);
String place=null;
try {
List<Address> lstAddress = gc.getFromLocation(longitude, latitude,1);
place = lstAddress.get(0).getLocality();
} catch (IOException e) {
}
return place;
}
感谢~