1

I would like to implement a drawer in my app, like in the hangouts app, just on the left side, but thats not the most importent, its good on the right too. I already implemented a menu drawer, how can i make it semi closed like the picture on the link?

Or is this a new kind of drawer? Then whats its name? So i can search for some samples.

https://i.stack.imgur.com/MxdbO.png

I used support.v4 library, and the actionbarsherlock. So this project is api >=10.

Thank you for your help.

executioner
  • 117
  • 2
  • 4
  • 16
  • hey... check out these awesome [answers..](http://stackoverflow.com/q/8657894/2219600)They may help . – amalBit May 30 '13 at 07:19

2 Answers2

6

It's called SlidingPaneLayout. In this week's episode of Android Design in Action, Roman Nurik also mentioned that it is used by the Hangouts app.

Watch this part of the Google I/O Session Android Design for UI Developers to see how to implement this pattern.

Matthias Robbers
  • 15,689
  • 6
  • 63
  • 73
0

Not quite sure what you mean about SlidingDrawer to the left, but I'll guess that you refer to the SlidingMenu, am I correct? In that case, I've used this library successfully:

https://github.com/jfeinstein10/SlidingMenu

This library is also compatible with the ActionbarSherlock.

Tobias Moe Thorstensen
  • 8,861
  • 16
  • 75
  • 143