Reputation: 231
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
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