我正在尝试修改我的应用程序的主题。我已经能够成功设置我的应用程序的背景颜色,以及我的操作栏的背景颜色。
不幸的是,操作栏中的项目背景颜色采用应用程序的背景颜色,而不是操作栏的bg颜色。
这是来自styles.xml的代码
<!--
Base application theme for API 11+. This theme completely replaces
AppBaseTheme from res/values/styles.xml on API 11+ devices.
-->
<style name="AppBaseTheme" parent="android:Theme.Holo.Light">
</style>
<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<item name="android:actionBarStyle">@style/MyActionBar</item>
<item name="android:background">#ff0000</item>
</style>
<style name="MyActionBar" parent="@android:style/Widget.Holo.Light.ActionBar">
<item name="android:background">#fefefe</item>
</style>
这里是正在发生的事情的屏幕截图。
希望我在这里错过了一些愚蠢的东西......
谢谢!
答案 0 :(得分:1)
我非常确定您的主题背景正在应用于所有内容。相反,您只希望活动的背景为该颜色。因此,不应在主题中设置背景颜色,而应将其设置为活动。如果您有许多活动将使用此背景颜色,则为您的活动创建一个样式并将其应用于每个活动。
答案 1 :(得分:0)
尝试使用:
<item name="android:windowBackground">@color/your_color</item>
<item name="android:colorBackground">@color/your_color</item>
为我工作。