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();
}
}
昨日は Address is ok を取得しましたが、今日は address (add=null) を取得できません。