日夜间模式切换

来源:互联网 发布:消防模拟软件 编辑:程序博客网 时间:2024/05/01 07:41
//日夜间模式切换                            int currentNightMode = getResources().getConfiguration().uiMode & Configuration.UI_MODE_NIGHT_MASK;                            if(currentNightMode==Configuration.UI_MODE_NIGHT_YES){                                Main3Activity.this.getDelegate().setLocalNightMode(AppCompatDelegate.MODE_NIGHT_NO);                            }else{                                Main3Activity.this.getDelegate().setLocalNightMode(AppCompatDelegate.MODE_NIGHT_YES);                            }

vlues-night

<?xml version="1.0" encoding="utf-8"?><resources>    <color name="colorPrimary">#3F51B5</color>    <color name="colorPrimaryDark">#303F9F</color>    <color name="colorAccent">#FF4081</color>    <color name="common_bg">#252525</color>    <color name="textcolor">#997F7F7F</color>    <color name="bg_kong">#1F1F1F</color>    <color name="xieyi">#fff</color>    <color name="shezhi">#373A43</color></resources>