Lines Matching full:navigation
1 page.title=Creating a Navigation Drawer
2 page.tags="DrawerLayout", "navigation"
15 <li><a href="#ListItemClicks">Handle Navigation Click Events</a></li>
39 <p>The navigation drawer is a panel that displays the app?s main navigation options
44 <p>This lesson describes how to implement a navigation drawer using the
49 <p><strong>Navigation Drawer Design</strong></p>
50 <p>Before you decide to use a navigation drawer in your app, you should understand the use
52 <a href="{@docRoot}design/patterns/navigation-drawer.html">Navigation Drawer</a> design guide.</p>
58 <p>To add a navigation drawer, declare your user interface with a
62 that contains the contents of the navigation drawer.</p>
67 runtime), and a {@link android.widget.ListView} for the navigation drawer.</p>
80 <!-- The navigation drawer -->
100 navigation drawer is hidden.</li>
116 the navigation drawer's list of items. How you do so depends on the content of your app, but
117 a navigation drawer often consists of a {@link android.widget.ListView}, so the list
121 <p>For example, here's how you can initialize the navigation list with a
152 setOnItemClickListener()} to receive click events in the navigation drawer's list.
158 <h2 id="ListItemClicks">Handle Navigation Click Events</h2>
229 interaction behavior between the action bar icon and the navigation drawer (discussed further in
232 <p>As discussed in the <a href="{@docRoot}design/patterns/navigation-drawer.html">Navigation
294 <p>Users can open and close the navigation drawer with a swipe gesture from or towards the left
298 the navigation drawer with a special icon. You can implement all this behavior by using the
307 <p>The standard navigation drawer icon is available in the <a href="http://developer.android.com/downloads/design/Android_Design_Icons_20130926.zip"
383 <p>For a complete example of a navigation drawer, download the sample available at the