Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using Navigation Drawer in older android

Can I use Navigation Drawer in older android like GingerBread? And If Yes , How can I use it without ActionBar as ActionBar is not available for Gingerbread..

like image 881
Priyesh Avatar asked Jun 30 '13 08:06

Priyesh


People also ask

How do I open a navigation drawer?

Android Navigation Drawer is a sliding left menu that is used to display the important links in the application. Navigation drawer makes it easy to navigate to and fro between those links. It's not visible by default and it needs to opened either by sliding from left or clicking its icon in the ActionBar.

Where is the navigation drawer on my android phone?

The navigation drawer is a UI panel that shows your app's main navigation menu. The drawer appears when the user touches the drawer icon in the app bar or when the user swipes a finger from the left edge of the screen.

Where is the navigation menu on android?

The Navigation bar is the menu that appears on the bottom of your screen - it's the foundation of navigating your device.


3 Answers

You can use the Android Support Library for implementing newer API features, including Navigation Drawer, into apps targeted for API level 4 or greater

like image 130
Moog Avatar answered Nov 09 '22 14:11

Moog


Make sure you've upgraded to the newest support library.

Here's a tutorial: http://techbandhu.wordpress.com/2013/05/25/navigation-drawer-android/.

like image 36
Submersed Avatar answered Nov 09 '22 13:11

Submersed


There is a recent project that provide a perfect solution for it.

https://github.com/nicolasjafelle/SherlockNavigationDrawer

like image 41
Daniel De León Avatar answered Nov 09 '22 14:11

Daniel De León