当我单击夜间模式按钮时,它仅适用于设置活动,但其他活动不是夜间模式。
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(AppCompatDelegate.MODE_NIGHT_YES);
}
else
{
getDelegate().setLocalNightMode(AppCompatDelegate.MODE_NIGHT_NO);
}
});
而且当我关闭应用程序并再次打开时,夜间模式不会保存。怎么做?
四季花海
相关分类