该问题可以通过对AppCompatDelegate设置localNightMode属性,并与系统主题同步解决。代码示例如下:
//判断系统是否开启暗黑模式
int currentNightMode = getResources().getConfiguration().uiMode & Configuration.UI_MODE_NIGHT_MASK;
//设置AppCompatDelegate,实现夜间模式跟随系统主题
AppCompatDelegate.setDefaultNightMode(currentNightMode);