Home | History | Annotate | Download | only in implementing-navigation

Lines Matching full:drawerlayout

2 page.tags=DrawerLayout,navigation
13 <li><a href="#DrawerLayout">Create a Drawer Layout</a></li>
45 {@link android.support.v4.widget.DrawerLayout} APIs available in the
56 <h2 id="DrawerLayout">Create a Drawer Layout</h2>
59 {@link android.support.v4.widget.DrawerLayout} object as the root view of your layout.
60 Inside the {@link android.support.v4.widget.DrawerLayout}, add one view that contains
65 android.support.v4.widget.DrawerLayout} with two child views: a {@link android.widget.FrameLayout}
70 &lt;android.support.v4.widget.DrawerLayout
89 &lt;/android.support.v4.widget.DrawerLayout>
96 android.support.v4.widget.DrawerLayout} because the XML order implies z-ordering
127 private DrawerLayout mDrawerLayout;
137 mDrawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout);
215 android.support.v4.widget.DrawerLayout#setDrawerListener setDrawerListener()} on your
216 {@link android.support.v4.widget.DrawerLayout} and pass it an implementation of
217 {@link android.support.v4.widget.DrawerLayout.DrawerListener}. This interface provides callbacks
219 android.support.v4.widget.DrawerLayout.DrawerListener#onDrawerOpened onDrawerOpened()} and {@link
220 android.support.v4.widget.DrawerLayout.DrawerListener#onDrawerClosed onDrawerClosed()}.</p>
223 android.support.v4.widget.DrawerLayout.DrawerListener}, if your activity includes the
227 {@link android.support.v4.widget.DrawerLayout.DrawerListener} so you can still override those
236 android.support.v4.widget.DrawerLayout.DrawerListener} callback methods with an instance
241 private DrawerLayout mDrawerLayout;
254 mDrawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout);
307 <li>The {@link android.support.v4.widget.DrawerLayout}.
322 private DrawerLayout mDrawerLayout;
329 mDrawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout);
332 mDrawerLayout, /* DrawerLayout object */