Android 다크모드 적용
1. style - theme의 parent를 Theme.AppCompat.DayNight 로 수정 2. theme의 parent를 DayNight 로 설정하지 못하는 경우에는 android:forceDarkAllowed 속성 추가 3.Kotlin 코드 강제 다크모드 class MainActivity : AppCompatActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_main) findViewById(R.id.change_mode_btn).setOnClickListener {toggleNightMode() } ren..
2020.05.18