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.
-
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 Answers
Use Android V4 library to use "Navigation Drawer".
If you want to Action Bar in Android 2.2 onwards, you can use AppCompat Library.

- 3,442
- 5
- 25
- 34
Here is an example of Google+ sliding menu using Navigation Drawer
Android Sliding Menu using Navigation Drawer

- 565
- 1
- 7
- 23
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

- 35,417
- 104
- 256
- 447
I would suggest you to use DrawerLayout which is supported by Google and follows their design guidelines.

- 39
- 9