Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android, what is equivalent class of DrawerLayout when not using support library?

Tags:

Since my minimum SDK version is 14, I don't want to add support library to my application. Based on what Android says on DrawerLayout page, this view group is defined in support library (android.support.v4.widget).

Is there any equivalent class of DrawerLayout if I don't add support library? Thanks.

like image 379
Hesam Avatar asked Nov 27 '13 10:11

Hesam


1 Answers

No, there is no alternative from within the AOSP code. If you're using the ViewPager you'll need the support library anyways.

like image 150
keyboardsurfer Avatar answered Oct 12 '22 00:10

keyboardsurfer