In portrait mode when the PopupMenu item is pressed a list of 4 items appear. In landscape mode not all the items are visible and scrolling is automatically enabled. Even though there are only 4 items, and there is definitely enough room on the screen. How do i remove the scroll option?
This is the menu.xml:
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools" >
<item
android:id="@+id/menu_userGame_uninstall"
android:title="@string/userGames_gameMenu_uninstall"/>
<item
android:id="@+id/menu_userGame_similarGames"
android:title="@string/userGames_gameMenu_similarGames"/>
<item
android:id="@+id/menu_userGame_share"
android:title="@string/userGames_gameMenu_share"/>
<item
android:id="@+id/menu_userGame_rate"
android:title="@string/userGames_gameMenu_rate"/>
</menu>