I am trying to create kind of list view with custom rows in menu in action bar. something like this:
I have searched a lot on web but could not find anything useful. How can I achieve this thing? I know you can bind custom views with items in menu but how? I want to bind list view with this item:
<item
android:id="@+id/action_settings"
android:orderInCategory="100"
android:showAsAction="never"
android:title="@string/action_settings"/>
I had figured out after a while. If you want to list items with just icon and title in over flow menu, you need to do nesting of items within items or group them using
menu
tag.