Hello android developers, I know this question have been asked many of times, and I have also tried many solutions but they are not working for me. Firstly I am using action bar sherlock library to show action bar,and I want to show dividers between menu items with icons only. For that I create custom style for showing divider but they are not showing.
<style name="Theme.SherlockCustom" parent="@style/Theme.Sherlock.Light">
<item name="android:actionBarDivider">@drawable/actionbar_seprator</item>
<item name="android:showDividers">middle</item>
</style>
And also tried to update sherlock library ActionMenuItemView.java for ActionBar where needsDividerBefore() will always give true. But this patch also not worked for me. Please help where I am going wrong. Thanks.