Skip to content Skip to sidebar Skip to footer

Should I Use AppCompat V7 If Minsdk Is 14

should I still use app compat v7 if my app has minSdk = 14? Is there any advantage with ActionBar in Android L ? Should I use android.support.v4.app.FragmentActivity from support v

Solution 1:

If you want to use Material Design style for SDK 14+, you should also use AppCompat v7:21.0.+

You app can use Material as its main theme, and functional from API 7.

More info you can check this link


Solution 2:

AppCompat is used for api level below 11. Since 11 you have action bar natively. So there is no need to use AppCompat on api levle 11 and above.

Extend Activtiy and use Fragment ( not android.support.v4.app.Fragment)


Post a Comment for "Should I Use AppCompat V7 If Minsdk Is 14"