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)
}
[언어 변경]
https://yunaaaas.tistory.com/19
[Android/Kotlin] 언어설정 (Eng / Kor) 변경하기
2020 스마트 관광 앱 개발 공모전에 K-Pop 명소 추천 플랫폼인 'Kravel'을 개발하였는데요. 외국인을 타겟으로 한 앱이다 보니 영어/중국어,등 설정언어를 변경할 수 있도록 해주는 기능 이 필요했습
yunaaaas.tistory.com
'Develop > Android | iOS' 카테고리의 다른 글
[Android/Kotlin] 서버 BASE_URL 동적으로 바꾸기 (0) | 2022.08.08 |
---|---|
[Android/Java] 스켈레톤 UI 자료 조사 (0) | 2022.08.02 |
[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 |