if (isOnline()) {
Geocoder geocoder = new Geocoder(con, Locale.getDefault());
p = new GeoPoint((int) (location.getLatitude() * 1E6),
(int) (location.getLongitude() * 1E6));
List<Address> add = null;
try {
add = geocoder.getFromLocation(p.getLatitudeE6() / 1E6,
p.getLongitudeE6() / 1E6, 1);
} catch (IOException e) {
// TODO Auto-generated catch block
// e.printStackTrace();
}
}
昨天,我得到的地址还可以,但今天,我无法获得地址(add = null)。