What is the different between ActionBarSherlock and Action Bar Compatibility

Fews days ago Google just release the Action Bar Compatibility that make me so confuse. Is that the Action Bar Compatibility works same as the ActionBarSherlock and does the coding same?

Example : Does app icon to navigate "up" or ActionBar.Tab supported in Action Bar Compatibility ?

link|improve this question

feedback

4 Answers

up vote 6 down vote accepted

ActionBarSherlock gives your application an action bar regardless* of what version of the android API your app is being run on. Action Bar Compatibility gives you the action bar only if the device that you're running on is API level 3.0 or above.

*Note that if the device you're running on isn't 3.0 or above, ActionBarSherlock is going to use it's own custom implementation of the action bar, not a native one.

--EDIT--

It appears things have changed and there is actually no difference between ActionBarSherlock and the Action Bar Compatibility anymore. Please read the comments below for details.

--EDIT--

After having used both now, I can say that I actually prefer ActionBarSherlock to Action Bar Compatibility. ActionBarSherlock is really easy and nice to use.

link|improve this answer
I just tested on 2.3.5 device , the Action Bar Compatibility also works on pre-API 11 devices. Does the Action Bar Compatibility just modify the activity title bar to make it have a actionbar design look ? – xDragonZ Oct 21 '11 at 3:21
No, it's not modifiying the title bar. According to the website it "will automatically wrap a custom implementation around your layouts". – Kurtis Nusbaum Oct 21 '11 at 3:24
Ok, so the ActionBar.Tab , setDisplayHomeAsUpEnabled , getActionBar() and others function that related to actionbar will not work on "Action Bar Compatibility" because it just wrap a custom implementation around the layouts ? – xDragonZ Oct 21 '11 at 3:28
No, they'll work as long as the device it's being run on api 3 or up. – Kurtis Nusbaum Oct 21 '11 at 3:31
Ok, thanks I think I understand now. So if I want to use ActionBar.Tab and related function on pre-API 11 devices I have to use ActionBarSherlock right? – xDragonZ Oct 21 '11 at 3:34
show 9 more comments
feedback

Well @Jake implementation goes way further than what the Actionbar compat, to be more precise Actionbar Compat is just a basic example on how can you support all aplication with a pseudo-actionbar for releases prior from Honeycomb (API 13). Although their target is the same cross compatible actionbar, they have diferent approach.

ActionbarCompat Aproach

This implementation make no use of the Compatibility Android support library instead it create a base class called ActionBarActivity create a single instance of a Helper this helper act as factory itself that returns diferent implementation for the three segment of APIS, it returns

The most interesting part is in the ActionbarBaseHelper, because it has the most important code, I suggest you understand this class and you will get the whole example.

Action Bar Sherlock

Well this is tricky firstable because, I'm not the author maybe Jake can explained further this, but I'll give it a try.

Just as the compat Sherlock make diferent implementation but one is for "Compat" and the other is Native. It force you to extends either from SherlockActivity or from SherlockFragmentActivity, because this two base classes have the method for dispatching the ActionBar.

This is a large and complex project, that cannot be explained in a single post. Suggest you dig around Sherlock Github repo grab a look and as Jeff Atwood says

enter image description here

link|improve this answer
feedback

Actionbar Sherlock is far more advanced and far more ambitious than the simple Actionbar compatibility project.

The Action bar compatibility can be considered a "sample" or a good starting point if you only want to smack an Action Bar on top of your app.

ActionBarSherlock builds on the compatibility library, and gives you (like the action bar compatibility sample) an Action Bar on pre-3.0 devices. In addition it has extra features not present in the ActionBar Compat code. This includes features like, but not limited to

  • setNavigationMode (for Tabs and spinners in the action bar)
  • Dialog Fragments
  • Contextual Action Bar (CAB) a menu that takes over the action bar, used for example for multi select (http://developer.android.com/design/patterns/new-4-0.html) This is a ICS feature (!) For this, an implementation of the ActionMode class (introduced in API level 11) had to be introduced into the ActionbarSherlock library
  • Fragment and FragmentActivity implementations - because fragments can implement the onCreateOptions menu, we need to make sure that the SupportMenuInflater is used.
  • Two themes not very unlike Holo.Dark and Holo.Light (Theme.Sherlock, Theme.Sherlock.Light)
  • The ICS feature "split action bar"

The only downside I see in using ActionbarSherlock is that you lock yourself in to that library. If for some reason it will die out in the near future, you'll have to maintain it youself (for example if no Jellybean implementation comes along). This is a hassle (not a huge problem) since all your fragments extends SherlockFragemnt and all your Activities. SherlockActivity.

link|improve this answer
feedback

http://developer.android.com/resources/samples/ActionBarCompat/index.html

difference they are made by Google Android Developers and you will be free from all the hassle outside the project. That you can fully understand what are the things happening.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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