I want to have an actionBar at top and, tabs on the next row.
My activity extended TabActivity, and used getActionBar();
Now I'm trying to use getSupportedActionBar() of sherlock and having touble.
When creating an activity to use the action bar on all versions of Android, you must declare your activity to extend any of the activity classes that start with 'Sherlock' (e.g., SherlockActivity, SherlockFragmentActivity). Interaction with the action bar is handled by calling getSupportActionBar() (instead of getActionBar()).
How do I use sherlock and tabActivity at the same time?