Questions tagged [drawerlayout]

Android's DrawerLayout acts as a top-level container for window content that allows for interactive "drawer" views to be pulled out from the edge of the window.

Android's DrawerLayout acts as a top-level container for window content that allows for interactive "drawer" views to be pulled out from the edge of the window. It is commonly known as Android Navigation Drawer.

As per the Android Design guide, any drawers positioned to the left/start should always contain content for navigating around the application, whereas any drawers positioned to the right/end should always contain actions to take on the current content. This preserves the same navigation left, actions right structure present in the Action Bar and elsewhere.

The DrawerLayout class is available in the Android Support Library (android.support.v4.widget.DrawerLayout).

Some Useful links - Official API Reference and Navigation Drawer Example

Tag Usage:

843 questions
-3
votes
2 answers

How to change Appbar color with onTap in flutter?

I tried changing the background color of Appbar using onTap in ListTile ListTile( title: const Text('Black'), leading: const Icon(Icons.label), onTap: () { setState(() { …
-3
votes
1 answer

How to move content to right side in a DrawerLayout?

When I click the toggle button, there will be a menu in right side
-5
votes
1 answer

How to make this effect using drawerlayout,

i want something like this image ActionBar in the back of the drawer. this pic come from Material Design Now I have resolved ,I Reference the question: How do I use DrawerLayout to display over the ActionBar/Toolbar and under the status bar?
mio4kon
  • 1,503
  • 1
  • 10
  • 15
1 2 3
56
57