반응형
현재 위치한 국가 이름 얻는 방법.
Geocoder geocoder = new Geocoder( context );
try{
List<Address> addresses = geocoder.getFromLocation( location.getLatitude(), location.getLongitude(), 1 );
String countryName = addresses.get( 0 ).getCountryName();
}
catch( Exception e ){
e.printStackTrace();
}
도움이 되셨다면 손가락 꾸욱~ ( 로그인 필요 x )
반응형
'프로그래밍 놀이터 > 안드로이드, Java' 카테고리의 다른 글
[android] 연락처 이름과 전화번호로 list 만들기 (1) | 2012.11.01 |
---|---|
[android] 전화걸기 & sms 보내기 intent example (0) | 2012.10.30 |
[android] layout 폴더는 sub folder 를 가질 수 있나요? (0) | 2012.10.29 |
[android] PorterDuff의 Sa, Sc, Da, Dc 란 무엇인가? (0) | 2012.10.29 |
[android] 기본 폴더 이름( path ) 얻어오기. ( 카메라, 다운로드, 음악 등 ) (0) | 2012.10.28 |
댓글