Mick
Mick

Reputation: 1219

Difference between ActionBarActivity and Fragment Activity

I am noob in Android. I just started to use ActionBarActivity over FragmentActivity. Is there any difference between them ??

Upvotes: 7

Views: 11699

Answers (2)

Raghunandan
Raghunandan

Reputation: 133560

FragmentActivity is the base class for support based fragments. So you will be using Fragment from support library below api level 11 in which case your Activity needs to extend FragmentActivity.

 ↳  android.support.v4.app.FragmentActivity
                       ↳    android.support.v7.app.ActionBarActivity

You will use ActionBarActivity when you need actionbar below API level 11 by using AppCompat library. In this case your Activity extends ActionBarActivity.

As you see ActionBarActivity extends FragmentActivity

Upvotes: 19

CommonsWare
CommonsWare

Reputation: 1006614

ActionBarActivity extends FragmentActivity and adds support for the appcompat action bar backport.

Upvotes: 13

Related Questions