How to resize the height of overflow menu list? Currently it extends till the bottom of the activity. I tried adding a style as follows,
<style name="CustomMenu" parent="android:style/Widget.Holo.ListPopupWindow">
<item name="android:maxHeight">150dp</item>
</style>
and added this theme to app theme
<style name="AppTheme">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:popupMenuStyle">@style/CustomMenu</item>
</style>
This doesn't work.