I'm using topup sub-menu item by group in menu item. I have created group item menu as given below menu xml code.
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:cycle="http://schemas.android.com/apk/res-auto" >
<group>
<item
android:id="@+id/bookAppt"
android:icon="@drawable/addsomething_gray"
android:orderInCategory="1"
android:title="Book Appointment"
cycle:showAsAction="never"/>
<item
android:id="@+id/refreshAppt"
android:icon="@drawable/refresh_icon_dark"
android:orderInCategory="2"
android:title="Refresh"
cycle:showAsAction="never"/>
</group>
Every thing going perfect but submenu item icon not showing. Can anyone guide me regarding this issue. Thanks