我想更改标签的背景。在过去的两天里,我尝试了一切,所以我决定在这里发布我的代码。ActionBar 的背景设置正确,但 TABS 保持黑色。
<style name="CustomActivityTheme" parent="Theme.Sherlock">
<item name="android:actionBarStyle">@style/MyActionBar</item>
<item name="android:actionBarTabStyle">@style/MyActionBarTabStyle</item>
<!-- other activity and action bar styles here -->
</style>
<!-- style for the action bar backgrounds -->
<style name="MyActionBar" parent="Widget.Sherlock.ActionBar">
<item name="android:background">@drawable/backgroundactionbar</item>
</style>
<style name="MyActionBarTabStyle" parent="Widget.Sherlock.ActionBar.TabView">
<item name="android:background">@drawable/backgroundactionbar</item>
</style>
在清单上:
<activity android:name=".FragmentActivityDashboard"
android:label="@string/app_name"
android:configChanges="keyboardHidden|orientation|screenLayout"
android:theme="@style/CustomActivityTheme"
>
</activity>