Android Studio在黑暗模式下将白色变成黑色

时间:2020-09-17 14:31:01

标签: android android-studio

从昨天开始,当我处于黑暗模式时,我的应用程序会自动将颜色从白色更改为黑色。 如何关闭它?

我的其他应用程序照常工作。

我的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>

what it looks like on device

what it should look like

1 个答案:

答案 0 :(得分:0)

我遇到了同样的问题并通过以下方式解决了:

  1. 在 values 目录之外创建 values-night 目录
  2. 将 themes.xml 从 values 目录复制到 values-night 目录