Geocoder _Geocoder = new Geocoder(this);
String _Result = "";
try {
Iterator<Address> _Addresses = _Geocoder.getFromLocation(37.602264,
126.965561, 1).iterator();
if (_Addresses != null) {
while (_Addresses.hasNext()) {
Address namedLoc = _Addresses.next();
String placeName = namedLoc.getLocality();
String featureName = namedLoc.getFeatureName();
String country = namedLoc.getCountryName();
String road = namedLoc.getThoroughfare();
_Result += String.format("\n[%s][%s][%s][%s]", placeName,
featureName, road, country);
int addIdx = namedLoc.getMaxAddressLineIndex();
for (int idx = 0; idx <= addIdx; idx++) {
String addLine = namedLoc.getAddressLine(idx);
_Result += String.format("\nLine %d: %s", idx, addLine);
}
}
}
} catch (IOException e) {
}
'Developer > Android' 카테고리의 다른 글
[Android] [C2DM] Web java source (2) | 2011.10.12 |
---|---|
[Android]위치정보 설정확인하기, 장소및보안에서 무선 네트워크 사용 확인하기, 장소및보안으로 넘어가기 (0) | 2011.02.07 |
[Android]Resource를 Bitmap으로 만들기. (2) | 2010.12.16 |
[Android] ImageView Round처리하기. (3) | 2010.12.16 |
[Android] 안드로이드 가로, 세로 모드 막기 (0) | 2010.12.16 |