我有两个主题。一个是:
<style name="ThemeDay" parent="Theme.AppCompat.Light.NoActionBar">
另一个是:
<style name="ThemeNight" parent="Theme.AppCompat.DayNight.NoActionBar">
我以前在每一项活动中都应用了主题
super.onCreate()
if(GenelUtil.getNightMode()){
setTheme(R.style.ThemeNight);
}else{
setTheme(R.style.ThemeDay);
}
主题已应用。但该系统的行为与选定的主题不同。
例如,当系统处于亮模式,应用程序处于暗模式时,导航栏仍为白色,对话框仍为白色等。。
但当我打开instagram并切换到黑暗模式时,系统的行为也像在黑暗模式下一样。
我在这里做错了什么?我该怎么解决这个问题?