android - Activity如何动态改变主题不闪动
ringa_lee
ringa_lee 2017-04-17 17:40:30
0
2
526

我现在在给Activity动态换主题时先把Theme id保存在SharedPreferences中,然后用RxBUs发送事件总线让Activity改变Theme,然而这样只有再次打开该Activity主题才会改变;我想通过Activity.recreate()方法立即改变其主题但是有明显闪动,请问有什么好的方法让其不闪动?

ringa_lee
ringa_lee

ringa_lee

全部回覆(2)
迷茫

如果是在Activity中切換,可以考慮按照切換後的主題方案分別設定當前介面所有可見元素的屬性;如果是在Fragment中切換,fragment也可以設定theme,像這樣:

@Override
    public View onCreateView(LayoutInflater inflater,
            @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {

        final Context contextThemeWrapper = new ContextThemeWrapper(
                getActivity(), isDay ? R.style.day : R.style.night);
        LayoutInflater localInflater = inflater
                .cloneInContext(contextThemeWrapper);
        View v = localInflater.inflate(R.layout.fragment_layout, container,
                false);
        return v;
    }
PHPzhong

github上嗶哩嗶哩開源了一個方案,你可以去看一下

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!