Android

안드로이드 앱내에서 언어변경

Machine_웅 2020. 4. 7. 09:54
728x90
반응형

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());



출처: https://kanais2.tistory.com/284 [飛上]

728x90
반응형