我正在使用标题名称,搜索和操作溢出菜单项的操作栏,尽管我正在使用ActionBarSherlock库。我想在操作栏中删除搜索和操作溢出菜单项的填充。
答案 0 :(得分:11)
检查此链接:
ActionBarSherlock - How to set the padding of each actionbar's icon?
我们的想法是创建一个新主题,其主题为 Theme.Sherlock
并降低 actionButtonStyle minWidth
属性
<style name="MyTheme" parent="Theme.Sherlock">
<item name="actionButtonStyle">@style/MyActionButtonStyle</item>
</style>
<style name="MyActionButtonStyle" parent="Widget.Sherlock.ActionButton">
<item name="android:minWidth">28dip</item>
</style>
并将此主题应用于清单中的活动。