我希望将红色替换为ActionBarSherlock的默认颜色,我搜索但不知道插入style.xml的内容,下面是我的代码:
<style name="Theme.Red" parent="Theme.Sherlock.Light">
<!-- what should i insert here? -->
</style>
如果我想更改绿色高亮区域的颜色,我该怎么办?整个酒吧,不仅仅是标题。
答案 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>