从昨天开始,当我处于黑暗模式时,我的应用程序会自动将颜色从白色更改为黑色。 如何关闭它?
我的其他应用程序照常工作。
我的style.xml与其他应用程序中的相同:
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/black</item>
<item name="colorPrimaryDark">@color/black</item>
<item name="colorAccent">@color/black</item>
</style>
我的布局如下:
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
android:background="@android:color/white">
</FrameLayout>
答案 0 :(得分:0)
我遇到了同样的问题并通过以下方式解决了: