Reputation: 33318
I'm trying to port a Monotouch app to Monodroid. My app has to target Android 2.1 as a minimum, but the Action Bar only seems to be available for Android 3.0 and upwards.
The iOS app is making use of the title bar all the time, so I'm looking for some action bar replacement that can be re-used from action to action.
What are my options for solving this problem? I know there are native android libraries tackling this problem (i.e. https://github.com/johannilsson/android-actionbar), but communicating with them through JNI looks quite error-prone and tedious. Is there any better solution?
Thanks,
Adrian
Upvotes: 2
Views: 2043
Reputation: 2978
please look at my implementation of ActionBar here https://github.com/soundnRg/ActionBar. Hope it will help you.
Upvotes: 8