diffrence between Appcompact activity and actionbar activity

N J picture N J · May 6, 2015 · Viewed 15.5k times · Source

In Android What is the main difference between extending a class from AppCompatActivity and ActionBarActivity? How do these classes differ?

Answer

Ben Pearson picture Ben Pearson · May 6, 2015

ActionBarActivity is now deprecated. As of version 22.1 of the support library you should use AppCompatActivity.

Chris Banes (one of the authors of the AppCompat library) covered the refactor in detail here.