在values下的color中设置一个颜色<color name="bg_select">#fff</color>//为日间模式时的颜色新建一个values-night文件夹将values中的color复制到此文件夹下<color name="bg_select">#000</color>//改变夜间模式时需要的颜色//将夜间模式需要改变颜色的地方背景颜色设置为bg_select
//日夜间模式的状态 int currentNightMode = getResources().getConfiguration().uiMode & Configuration.UI_MODE_NIGHT_MASK; if(currentNightMode==Configuration.UI_MODE_NIGHT_YES){
//日间模式转换为夜间
getDelegate().setLocalNightMode(AppCompatDelegate.MODE_NIGHT_NO); }else{
//夜间模式转换为日间
getDelegate().setLocalNightMode(AppCompatDelegate.MODE_NIGHT_YES); }
简单实现日夜间模式切换
最新推荐文章于 2024-04-06 16:29:51 发布