So, I'm trying to create the tabs of my Actionbar, which I implemented using the ActionBarSherlock library. This is my code:
<style name="Theme.AndroidDevelopers" parent="Theme.Sherlock.Light.ForceOverflow">
<item name="actionBarTabStyle">@style/CustomActionBarStyle</item>
<item name="android:actionBarTabStyle">@style/CustomActionBarStyle</item>
<style name="CustomActionBarStyle" parent="Widget.Sherlock.Light.ActionBar.TabBar">
<item name="android:background">@drawable/actionbar_tab_bg</item>
</style>
On the second and third lines, if I change actionBarTabStyle to actionBarStyle, my action bar changes to my desired style (not very good, of course), so the connections really work. However, trying to change the tabs on the action bar (below) is still not successful.
I hope someone can help me.
Yours faithfully,
Hidde source
share