Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Side navigation menu like Facebook app

I'm looking for something similar to what the new Facebook app has implemented for the Android/ios mobile applications. I am referring to a side navigation menu which opens with a finger movement. Something like this

Is there any library or example where I can check?

Thank you very much.

like image 432
Jatago Avatar asked Dec 07 '11 22:12

Jatago


People also ask

Where is the Facebook app menu?

Note: clicking “Menus” when logged on to your Facebook account, you will go to the configuration screen. You can view your menus by clicking “View menupod” on top right. You can also access the configuration page by clicking the “settings” link at the bottom of the menupod.

Is the navigation of Facebook easy to use?

Facebook has a simple design and user-friendly navigation that makes it a site for people of all ages. The instant notifications make it easy for you to quickly view what has been changed on your profile. This way, you hypothetically see the changes and not spend too much time on the computer.


1 Answers

Use SideNavigationView for side menu like facebook. But you will need a library for this which you can download from here "https://github.com/johnkil/SideNavigation".

Code for using it is:

SideNavigationView  sideNavigationView; sideNavigationView = (SideNavigationView)findViewById(R.id.side_navigation_view); sideNavigationView.setMenuItems(R.menu.sliding); sideNavigationView.toggleMenu(); 

Now, make menu you want to show in Slide menu.

All the best....

like image 131
pioneerBhawna Avatar answered Sep 19 '22 14:09

pioneerBhawna