Disadvantages of using Android Compatibility Library on Honeycomb?

If you plan to have one binary for both tablets and handsets, your fragments should all extend from the ACL -- otherwise you'll be building two apps. The benefit of the ACL is that you can build your app once (by extending its compatibility classes) and then run those fragments on all API levels >= 4.

Up vote 3 down vote favorite 2 share g+ share fb share tw.

I would like to know your opinion on disadvantages of using ACL on Honeycomb devices. I think of using the Library for my application exclusively - even when it runs on Honeycomb itself - otherwise I would have to create 2 versions of mostly identical classes. Primarily I am interested in functionality (bugs) of Compatibility Library, its performance and memory usage vs native Honeycomb SDK.

So if you have experience with creating separate classes both for ACL and for Honeycomb, let me know if results were worth the efforts - should I create duplicate classes or go with ACL-only. As always, thanks for your support :) android library compatibility honeycomb disadvantages link|improve this question edited Oct 12 '11 at 12:59Durga14719 asked Oct 12 '11 at 11:51myself1036 83% accept rate.

As usual, I may have asked the question not as clearly as I could. What I wish to know is whether it is a good idea to create specific class (e.g. Some Fragment) in two versions - one that will extend base fragment class from ACL and another that will extend base fragment class from native Honeycomb SDK. Or should I have one fragment that will only use ACL instead?

– myself Oct 12 '11 at 22:06.

If you plan to have one binary for both tablets and handsets, your fragments should all extend from the ACL -- otherwise you'll be building two apps. The benefit of the ACL is that you can build your app once (by extending its compatibility classes) and then run those fragments on all API levels >= 4. The biggest drawback we encountered were ACL bugs related to animations and the back button on Honeycomb -- but these were mostly fixed with the support package r4.

I don't recall any other issues (if there were any they were small enough that I don't remember them now).

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions