I am new to android development and I was wondering how can I can create three evenly spaced buttons on the action bar and make sure that they fill up the whole action bar.
The code I have written so far
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:id="@+id/action_groups"
android:showAsAction="always"
android:title="@string/action_groups" />
<item
android:id="@+id/action_list_of_contacts"
android:showAsAction="always"
android:title="@string/action_listOfContacts"/>
<item
android:id="@+id/action_favourites"
android:showAsAction="always"
android:title="@string/action_favourites" />
</menu>