Can't Greendroid use menus defined in xml for displaying them in the actionbar? For example the following menu is loaded in onCreateOptionsMenu(), but it doesnt appear in the actionbar. I think ActionbarSherlock is able to do this, isn't greendroid capable too?
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:id="@+id/new_client"
android:icon="@drawable/plus"
android:showAsAction="always"
android:title="new client"/>
</menu>