본문 바로가기
프로그래밍 놀이터/안드로이드, Java

[Android/안드로이드] 코드로 resource language mapping 변경하기.

by 돼지왕 왕돼지 2012. 6. 7.
반응형




System Language 가 변해도 destroy 되지 않는 component 들은 system 의 resource mapping 을 강재로 다시 수행해줘야 할 때가 있다. 그렇지 않으면, destroy 되기 전에 언어가 그대로 적용되어 나타난다.

Resources res = mContext.getResources();

DisplayMetrics dm = res.getDisplayMetrics();

Configuration conf = res.getConfiguration();

conf.locale = Locale.getDefault();

res.updateConfiguration(conf, dm);

 

도움이 되셨다면 손가락 꾸욱~



 
반응형

댓글