gpt4 book ai didi

android - 深色主题安卓应用

转载 作者:太空狗 更新时间:2023-10-29 16:14:04 32 4
gpt4 key购买 nike

我正在尝试创建一个类似于 OnePlus 设备上 OxygenOS 中的深色主题。

enter image description here

我将窗口背景更改为黑色,但问题是操作栏没有变成纯黑​​色。

<style name="DarkTheme" parent="Theme.AppCompact">
<item name="android:colorPrimary">@color/black</item>
<item name="android:colorPrimaryDark">@color/black</item>
<item name="android:textColorPrimary">@color/white</item>
<item name="android:colorAccent">@color/white</item>
<item name="android:color">@color/white</item>
<item name="android:windowBackground">@color/black</item>
<item name="android:navigationBarColor">@color/black</item>
<item name="android:actionBarStyle">@color/black</item>
</style>

最佳答案

最简单的解决方案

您可以通过以下方式启用/禁用深色主题:

  1. 启用深色主题:

    AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_YES)
  2. 强制禁用深色主题:

    AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO)
  3. 根据暗模式的移动设置设置应用主题,即如果启用暗模式,则主题将设置为暗主题,否则默认主题,但这仅适用于 version >= Android version Q

    AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_FOLLOW_SYSTEM)

注意事项:

  1. 您的应用程序/Activity 的基本主题应该是

"Theme.AppCompat.DayNight"

喜欢

<style name="DarkTheme" parent="Theme.AppCompat.DayNight">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
  1. 您的 res 文件夹的名称将以 -night 结尾,这样您就可以为日夜主题设置不同的颜色和图像,例如

drawable & drawable-night,
值(value)观与值(value)观之夜

关于android - 深色主题安卓应用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34957735/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com