Reputation: 39671
The YouTube app for android has a sliding drawer. Is this a widget provided by the SDK? There seem to be a bunch of opensource ones, but they all behave in different ways. Is there an 'official' one provided by google?
There is a SlidingDrawer widget class, but it's deprecated (and I didn't understand the deprecation message): http://developer.android.com/reference/android/widget/SlidingDrawer.html
Thanks
Upvotes: 0
Views: 618
Reputation: 10364
Google does offer a DrawerView via a widget that is fairly easy to implement in an app. Here is the Google library for it. This is how I implemented the DrawerView in this Sample Code. The CheeseSquare example by Google also implements the DrawerView nicely.
Upvotes: 1
Reputation: 363647
Not official. Google doesn't release it.
Here you can find a good library.
https://github.com/jfeinstein10/SlidingMenu
Upvotes: 0