2

I'm looking for a sliding menu like the one in facebook app, that is on click of left menu button the main screen slides to the right and then on click of "See all" on the slide view screen a new view slides from right to left.

Lucifer
  • 29,392
  • 25
  • 90
  • 143
Gayathri
  • 171
  • 2
  • 3
  • 8
  • Checkout below links... hope you will find what you want. http://stackoverflow.com/questions/8657894/android-facebook-style-slide http://stackoverflow.com/questions/11465774/android-how-to-make-slide-menu-like-facebook-spotify-and-google – Priyank Patel Jun 07 '13 at 12:19

4 Answers4

4

Use Android V4 library to use "Navigation Drawer".

Navigation Drawer

Creating Navigation Drawer

If you want to Action Bar in Android 2.2 onwards, you can use AppCompat Library.

Nishant Shah
  • 3,442
  • 5
  • 25
  • 34
3

Here is an example of Google+ sliding menu using Navigation Drawer

Android Sliding Menu using Navigation Drawer

enter image description here

Minion
  • 565
  • 1
  • 7
  • 23
2

Facebook don't use the standard android APIs to creare the library. It is recommended you use the Android Navigation Drawer which provides the same sort of functionality but follows the Android guidelines.

Help on the navigation drawer can be found at http://developer.android.com/design/patterns/navigation-drawer.html

Also, if I may plug my own free open source library, I have a projecton GitHub which allows you to use the navigation drawer with multiple GUI components for easy use. The project can be found at https://github.com/BoardiesITSolutions/NavigationDrawerManager

Hope this helps

Boardy
  • 35,417
  • 104
  • 256
  • 447
1

I would suggest you to use DrawerLayout which is supported by Google and follows their design guidelines.