gpt4 book ai didi

android - 自定义主题背景颜色 : Theme. AppCompat.NoActionBar

转载 作者:行者123 更新时间:2023-12-02 13:03:35 25 4
gpt4 key购买 nike

我在我的应用程序中使用了内置主题Theme.AppCompat.NoActionBar。但它提供了完整的黑色背景。我想把这个黑色背景变成灰色。所以我尝试自定义我的主题如下:

这是我的 styles.xml

<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="MyTheme"> // Using Customized theme.
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>

//Customize the Theme.

<style name="MyTheme" parent="Theme.AppCompat.NoActionBar">
<item name="android:backgroundDimAmount">0.8</item>
</style>

这里我想减轻我的背景颜色,所以我使用 android:backgroundDimAmount 但它不起作用。

我还使用了以下内容:

<style name="MyTheme" parent="Theme.AppCompat.NoActionBar"> 
<item name="android:background">#707070</item>
</style>

这会改变背景颜色,但给我带来了奇怪的结果,如下屏幕截图:

enter image description here

我的实际 Activity 如以下屏幕截图所示:

enter image description here

所以我的问题是如何减轻或改变背景颜色?

最佳答案

你想要这个

<item name="android:background">@color/<mycolor></item>
<item name="android:windowBackground">@color/<mycolor></item>
<item name="android:colorBackground">@color/<mycolor></item>

记住在所有样式 xml 中更改它

关于android - 自定义主题背景颜色 : Theme. AppCompat.NoActionBar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39052011/

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