We are working on an Android application for industrial uses. We have increased the size of the action bar, text, etc to help improve visibility and touch target size. Everything works well, however I have been unable to increase the height of the action bar overflow menu's list items:
Digging around I have been able to change the background colour of the popup menu using
<style name="MyTheme" parent="@android:style/Theme.Holo">
<item name="android:popupMenuStyle">@style/MyPopupMenu</item>
</style>
<style name="MyPopupMenu" parent="android:style/Widget.Holo.ListPopupWindow">
<item name="android:popupBackground">#800</item>
</style>
However there seems to be no way I can find to change the height of the menu items themselves. There are a lot of posts on stack overflow talking about customising spinners in the action bar, but very little about the action overflow menu.