0

我希望将红色替换为 ActionBarSherlock 的默认颜色,我搜索但不知道在 style.xml 中插入什么,下面是我的代码:

<style name="Theme.Red" parent="Theme.Sherlock.Light">
    <!-- what should i insert here? -->
</style>

如果我想改变绿色高亮区域的颜色,我应该怎么做?整个栏,不仅仅是标题。

在此处输入图像描述

4

1 回答 1

0

那么,你想要一个红色的操作栏吗?

<style name="Theme.Red" parent="Theme.Sherlock">
    <item name="android:actionBarStyle">@style/RedActionBar</item>
    <item name="actionBarStyle">@style/RedActionBar</item>
</style>

<style name="RedActionBar" parent="Widget.Sherlock.ActionBar">
    <item name="android:background">#f00</item>
</style>
于 2013-04-04T20:01:28.733 回答