I'm making my app to have minimum Android version of 4.0 (ICS, API level 14).
First I guessed that I can get rid of using FragmentActivity
as the base class for the activities, but it seems that some support library classes like FragmentStatePagerAdapter
is not available on the system framework, and it needs the support Fragment
instead of the system Fragment
.
So I wonder if I should make my activities inherit from the system Activity
, or stay using FragmentActivity
(or ActionBarActivity
when using appcompat library)?