SlidingDrawer is an Android View Widget that hides content out of the screen and allows the user to drag a handle to bring the content on screen.
From official documentation of SlidingDrawer
class:
SlidingDrawer
hides content out of the screen and allows the user to drag a handle to bring the content on screen.SlidingDrawer
can be used vertically or horizontally. A special widget composed of two children views: the handle, that the users drags, and the content, attached to the handle and dragged with it.SlidingDrawer
should be used as an overlay inside layouts. This meansSlidingDrawer
should only be used inside of aFrameLayout
or aRelativeLayout
for instance. The size of theSlidingDrawer
defines how much space the content will occupy once slid out soSlidingDrawer
should usually usematch_parent
for both its dimensions.
Tag Usage:
android drawerlayout android-navigation-drawer navigation-drawer materialdrawer