niegus
niegus

Reputation: 1838

Action Bar Fragment Activity

I'm triying to migrate my app from actionbarsherlock to Google's actionbarcompat, but ActionBarFragmentActivity does not exist. Do I have to use ActionBarActivity or there is another way?

Thanks in advance, Diego.

Upvotes: 21

Views: 23409

Answers (1)

josh527
josh527

Reputation: 6999

Look here. This should help you out.

http://android-developers.blogspot.in/2013/08/actionbarcompat-and-io-2013-app-source.html

An Excerpt:

Extend Activity classes from ActionBarCompat: ActionBarCompat contains one Activity class which all of your Activity classes should extend: ActionBarActivity. This class itself extends from FragmentActivity so you can continue to use Fragments in your application. There is not a ActionBarCompat Fragment class that you need to extend, so you should continue using android.support.v4.Fragment as the base class for your Fragments.

Upvotes: 34

Related Questions