Sim
Sim

Reputation: 231

Android - Action Bar Overflow

I'm really new to android development - I've been creating an action bar and its functioning, however it is going straight into my overflow although there is space for it to display?

Any help would be much appreciated!

Upvotes: 0

Views: 48

Answers (1)

Shobhit Puri
Shobhit Puri

Reputation: 26007

For API 11 and above you can use android:showAsAction tag for each item. See http://developer.android.com/guide/topics/resources/menu-resource.html

Use android:showAsAction="always" or android:showAsAction="ifRoom" etc for each item as per your need.

Upvotes: 1

Related Questions