英文:
MIUI 12.01 System Update had changed My App to Night Mode.How to disable Night Mode?
问题
在 Application 类中,我已经添加了:
AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO);
为什么它不起作用?
英文:
In Application class I have added:
AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO);
Why is it not working ?
答案1
得分: 6
我已通过添加以下内容解决了这个问题:
在App主题中添加了:
<item name="android:forceDarkAllowed">false</item>
在App主题中:
<style name="AppThemeLight" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:forceDarkAllowed">false</item>
</style>
英文:
I have fixed this issue by adding
<item name="android:forceDarkAllowed">false</item>
in Apptheme
<style name="AppThemeLight" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:forceDarkAllowed">false</item>
</style>
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论