我在 android 派发布之前就创建了我的应用程序,在每个布局中我都把 android: background = "white"
放在每个设备上,它都能正常工作,但是当我哥哥安装了这个应用程序并启用了 night mode
时,我的应用程序一动就变成了一场灾难,一切都变成了黑白电影。
<style name="AppTheme" parent="Theme.AppCompat.DayNight.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/COLOR_PRIMARY</item>
<item name="colorPrimaryDark">@color/COLOR_PRIMARY</item>
<item name="colorAccent">@color/COLOR_PRIMARY</item>
<item name="cardViewStyle">@style/CardView</item>
<item name="android:fontFamily">@font/helvetica</item>
</style>
我的原色是红色。