在Application类中,我添加了:
AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO);
为什么不起作用?
答案 0 :(得分:1)
我通过添加
解决了此问题<item name="android:forceDarkAllowed">false</item>
在应用中
<style name="AppThemeLight" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:forceDarkAllowed">false</item>
</style>