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!
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!
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.
ifRoom?