2016. 5. 24. 10:28
Programming/Android
원글 작성날짜 : 2012-07-05 수정 날짜 : 2016-06-28 |
출처 : 안드로이드펍 - 원조안드로이드
현재 설정된 언어 가져오기
Locale locale = getResources().getConfiguration().locale; String displayCountry = locale.getDisplayCountry(); String country = locale.getCountry(); String language = locale.getLanguage(); |
Locale en = Locale.US; Configuration config = new Configuration();config.locale = en; getResources().updateConfiguration(config, getResources().getDisplayMetrics()); |
위에 처럼 하시면 기존의 각 언어별 values 폴더의 strings.xml을 사용하시는 효과는 볼 수 있습니다.
'Programming > Android' 카테고리의 다른 글
[Android] ScrollView scrollbar 없애기 (0) | 2016.06.02 |
---|---|
[Android] Open Weather Map 사용하기 (0) | 2016.05.25 |
[Android] 언어 설정 하기 (0) | 2016.05.24 |
[Android] Custom Progress Dialog 만들기 예제 (0) | 2016.04.27 |
[Android] EditText에 image 넣기 (0) | 2016.02.05 |