简体   繁体   中英

MIUI 12.01 System Update had changed My App to Night Mode.How to disable Night Mode?

In Application class I have added:

 AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO);

Why is it not working ?

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>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM