Recent Posts
밍쯔와 안작고 안귀여운 에러들🖤
[Android/Kotlin] 언어 변경 본문
로그인 시 language(int)값을 바탕으로 set 해주고, 세팅에서 한영 버튼 클릭시 변경 가능하게 !
fun changeLocale(localeLang : String) {
lateinit var locale : Locale
when (localeLang) {
"ko" -> locale = Locale("ko")
"en" -> locale = Locale("en")
}
var config : Configuration = context.resources.configuration
if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.R)
config.setLocale(locale)
else
config.locale = locale
context.resources.updateConfiguration(config, context.resources.displayMetrics)
}
[언어 변경]
'Develop > Android | iOS' 카테고리의 다른 글
[Android/Java] 스켈레톤 UI 자료 조사 (0) | 2022.08.02 |
---|---|
[Android/Kotlin] 구글 로그인 - Result_canceled #re-write (0) | 2022.07.25 |
[Android] fragment의 button에 backgroundColor 및 textSize 등 적용안되는 오류 (0) | 2022.07.15 |
OnErrorNotImplementedException: The exception was not handled due to missing onError handler in the subscribe() method call,,,였던것,,,, (0) | 2022.07.14 |
[Android] 전화번호부 목록 가져오기 (0) | 2022.07.14 |