How to make dark mode in every activity
问题 When I click night mode button it only apply in settings activity but other activities are not night mode. This is xml <Switch android:id="@+id/switch_button" android:layout_marginStart="10dp" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/night"/> This is SettingsActivity Switch aSwitch = findViewById(R.id.switch_button); aSwitch.setOnCheckedChangeListener((compoundButton, isChecked) -> { if (isChecked) { getDelegate().setLocalNightMode