Reputation: 7191
I have a problem with action bar and menu. I want to create drop down menu in action bar.I have icon which when I click on it I get drop down list with items where item have icon and title. Is there any standard icon in action bar or I need create something else?
Upvotes: 0
Views: 4500
Reputation: 2905
Add Menus items to your ActionBar
and set android:showAsAction="never"
, ActionBar will create a dropdown menu and display all your Menu items if there is no room on the standard action bar.
You can also change the style using android:actionDropDownStyle
.
Read this
Upvotes: 0