删除我的 android 应用程序中的夜间模式 | android 工作室

Delete the night mode in my android application | android studio

我不想在我的应用程序中使用夜间模式,我尝试删除一个文件 themes.xml (night),但这没有用,我还尝试将 themes.xml 文件内容移动到 themes.xml (night) 而且也没用。

themes.xml file

<style name="AppTheme" parent="Theme.AppCompat.DayNight.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style> 

你能帮我吗谢谢!

尝试添加这个

<style name="Theme.MyApp" parent="Theme.MaterialComponents.Light.DarkActionBar">

然后这个布局

android:forceDarkAllowed="false"

请在样式文件中使用默认应用主题,而不是“Theme.AppCompat.DayNight.NoActionBar”。 除非我们在风格上使用 Day Night 主题,否则夜间模式将无法使用。您可以使用应用程序的默认主题来禁用暗模式。

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>