Is there any tutorial available on the net about using support library? I am little confused because in my activity I imported all the widgets from a support library and I still get markers that say I need api 11. Do I have to extend FragmentActivity instead of Activity to use it?
EDIT:
My problem was that I extended Activity instead of FragmentActivity. This problem is mentioned here: getLoaderManager().initLoader() doesn't accept 'this' as argument though the class (ListFragment) implements LoaderManager.LoaderCallbacks<Cursor>
Here is a good explanation on how to use the support library.
Regarding
FragmentActivity, you have to use it if you are trying to use aFragmentin anActivity.Also be careful to import the proper classes. An example for a Fragment:
instead of