MultipleTheme icon indicating copy to clipboard operation
MultipleTheme copied to clipboard

请问之前的页面如何改变theme呢?

Open wshx21 opened this issue 8 years ago • 2 comments

wshx21 avatar May 25 '17 06:05 wshx21

已经解决,利用生命周期动态改变一下

wshx21 avatar May 25 '17 06:05 wshx21

/**
 * 历史Activity换肤(夜间模式切换)
 */
public void changeHistoryActivityMode() {
    if(null != activityStack) {
        for (Activity activity : activityStack) {
            if (activity != null) {
                if (SharedPreferencesMgr.getInt("theme", 0) == 1) {
                    activity.setTheme(R.style.theme_2);
                } else {
                    activity.setTheme(R.style.theme_1);
                };
                activity.recreate();
            }
        }
    }
}

feng612266 avatar May 15 '18 03:05 feng612266