Indeed, I ran into the same problem, and the only work I found was to disable tab separators. There seems to be an error in the native action bar that does not care about the size of the delimiters when measuring the tab bar container.
<style name="actionBarTabBarStyle" parent="@style/Widget.Sherlock.Light.ActionBar.TabBar"> <item name="android:showDividers">none</item> </style>
(Here I use actionbarsherlock, but this is not the source of the problem, you can extend your style from the parent = "@android: style / Widget.Holo.ActionBar.TabBar")
And apply it in your subject:
<item name="android:actionBarTabBarStyle">@style/actionBarTabBarStyle</item>
If you absolutely need an actionBar separator, one simple solution would be to add it directly to the background of the tab (left or right).
source share