4

I am want to create navigation drawer from both left and right sides of home screen using single activity is it possible. On left side I want to open menu and on right side notification drawer. I searched a lot many sources but I only found navigation drawer either from left or right code in single activity. Any suggestions please to create navigation drawer from both sides using single activity...

Any source where I can be able to continue.

Poonam Dalvi
  • 59
  • 1
  • 6

1 Answers1

2

You may want to think about using SlidingMenuLibrary with fragments. It's quite easy to use, and you can have your custom fragments on the left and right side of the screen, and all of this in a single activity (I know it's not a drawer, but you can make it work and look excatly the same).

The source: https://github.com/jfeinstein10/SlidingMenu

Google Play Demo: https://play.google.com/store/apps/details?id=com.slidingmenu.example

Jesus Christ
  • 457
  • 1
  • 5
  • 10
  • I have already created navigation drawer from left side, but creating the same from right side is being issue from same single activity. – Poonam Dalvi Jan 05 '14 at 08:36