I am aware of the answer posted here:
icon in menu not showing in android
However, the question then remains: how then does Google want me to indicate that a MenuItem has 'More' when showing a popupmenu with a submenu like this:
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:title="Genres" android:icon="@android:drawable/ic_menu_more">
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@+id/genredrama" android:title="Drama" />
<item android:id="@+id/genrefamily" android:title="Family" />
<item android:id="@+id/genrehorror" android:title="Horror" />
</menu>
</item>
<item android:title="All" />
<item android:title="Top Picks" />
<item android:title="Best" />
</menu>
How can I make the icon:
ic_menu_more
appear in the Genres MenuItem? I know this is a design decision by google, but what is proper way now to indicate the menutItem has a submenu?