안드로이드 테마설정: 두 판 사이의 차이

redbird's home
둘러보기로 이동 검색으로 이동
편집 요약 없음
태그: 수동 되돌리기
편집 요약 없음
1번째 줄: 1번째 줄:
<pre>
<pre>

setAppNightMode(MODE_NIGHT_YES, applicationContext)


fun setAppNightMode(mode: Int, context: Context) {
fun setAppNightMode(mode: Int, context: Context) {

2025년 12월 24일 (수) 09:02 판


setAppNightMode(MODE_NIGHT_YES, applicationContext)

fun setAppNightMode(mode: Int, context: Context) {
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) {
        val uiModeManager = context.getSystemService(Context.UI_MODE_SERVICE) as UiModeManager
        uiModeManager.setApplicationNightMode(mode)
    } else {
        // Fallback for devices below Android 12 (S)
        // Use AppCompatDelegate.setDefaultNightMode() instead
        AppCompatDelegate.setDefaultNightMode(mode)
    }
}