ActionBarSherlock主题颜色

时间:2013-04-04 15:01:47

标签: android colors themes android-actionbar actionbarsherlock

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

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

如果我想更改绿色高亮区域的颜色,我该怎么办?整个酒吧,不仅仅是标题。

enter image description here

1 个答案:

答案 0 :(得分: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>