Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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>
share|improve this question

1 Answer

GreenDroid is a great library but if you are starting new project - choose ActionBarSherclock. Unfortunatelly GreenDroid isn't updated by its author anymore.

I'm using GreenDroid for one of my projects and I was looking for the same thing.

GreenDroid is an open source project. Maybe somebody will add this functionality to it in future. But probably this not simple thing to do.

I didn't check but I see that on GitHub there are now 228 forks of GreenDroid project. Maybe somebody actually add this functionality in one of them

https://github.com/cyrilmottier/GreenDroid/network

But like I said. If you are starting new project - ActionBarSherlock will be a better choice.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.