MIUI 12.01系统更新已将我的应用程序更改为夜间模式。如何禁用夜间模式?

时间:2020-10-14 07:16:34

标签: java android kotlin

在Application类中,我添加了:

 AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO);

为什么不起作用?

1 个答案:

答案 0 :(得分:1)

我通过添加

解决了此问题
<item name="android:forceDarkAllowed">false</item>

在应用中

 <style name="AppThemeLight" parent="Theme.AppCompat.Light.NoActionBar">
    <item name="android:forceDarkAllowed">false</item>
</style>