I want to remove the short separator before the ActionBar MenuItem, which has the "withText" option.
I tried many different theme settings, but could not.
Is there any solution to remove it?
This is my xml theme.
<style name="my_actionbar" parent="@style/Widget.Sherlock.Light.ActionBar.Solid">
<item name="android:background">@drawable/actionbar_bg</item>
<item name="background">@drawable/actionbar_bg</item>
<item name="android:actionBarDivider">@null</item>
<item name="actionBarDivider">@null</item>
<item name="android:showDividers">none</item>
<item name="android:dividerVertical">@null</item>
<item name="android:dividerPadding">0dp</item>
<item name="android:divider">@null</item>
</style>
source
share