我正在尝试在所有活动中动态切换背景主题。但是目前,我只能让它打开开关所在的当前活动。我尝试了以下方法:
使用setTheme于其他活动集的主题,但导致的错误:cannot find symbol method setTheme(int):
ConstraintLayout homeActivity = (ConstraintLayout) findViewById(R.id.homeLayout);
homeActivity.setTheme(R.style.darktheme);
也试过了getTheme,但是报错non-static method getTheme() cannot be referenced from a static context::
Resources.Theme theme = super.getTheme();
theme.applyStyle(R.style.darktheme,true);
请提供有关如何修复这些错误或替代方法的指导。
更新,首选项管理器遇到的新问题:这是当前实现的,当切换黑暗主题时应该跨活动显示,但应用程序完全变黑而没有错误:
myswitch.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton compoundButton, boolean isChecked) {
if (isChecked){
PreferenceManager
.getDefaultSharedPreferences(DisplaySettingActivity.this)
.edit()
.putInt("ActivityTheme", R.style.darktheme)
.commit();
DisplaySettingActivity.this.recreate();
}
饮歌长啸
鸿蒙传说
相关分类