I think we can βcrackβ it by making the delimiter transparent:
<style name="YourTheme" parent="@android:style/Theme.Holo.Light"> <item name="android:actionBarTabBarStyle">@style/Divider</item> </style> <style name="Divider" parent="@android:style/Widget.Holo.ActionBar.TabBar"> <item name="android:divider">@android:color/transparent</item> //or use your transparent drawable image <item name="android:showDividers">middle</item> <item name="android:dividerPadding">0dp</item> </style>
Please let me know if this works or not. I have never tested this code, but its working when I want to change my separator with my own image.
source share