user1302569
user1302569

Reputation: 7191

Drop down menu in android

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

Answers (2)

abbas.aniefa
abbas.aniefa

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

Jpm
Jpm

Reputation: 166

Study these links link1

link2 Hope this will solve your problem

Upvotes: 1

Related Questions