Home
last modified time | relevance | path

Searched refs:drawer (Results 1 – 25 of 37) sorted by relevance

12

/frameworks/base/docs/html/wear/preview/features/
Dui-nav-actions.jd13 <li><a href="#create a drawer">Create a Drawer Layout</a></li>
22 <li><a href="http://www.google.com/design/spec-wear/components/navigation-drawer.html">
25 <a href="http://www.google.com/design/spec-wear/components/action-drawer.html">
41 The navigation drawer appears at the top of the screen and lets users jump to
43 the app, similar to the navigation drawer on a phone. The action drawer appears
66 <h2 id="create a drawer">Create a Drawer Layout</h2>
67 To add an action or a navigation drawer, declare your user interface with a
70 for the screen (your primary layout when the drawer is hidden) and additional
71 child views that contain the contents of the drawer.</h2>
74 navigation drawer, and an action drawer.</p>
[all …]
/frameworks/base/docs/html/training/implementing-navigation/
Dnav-drawer.jd39 <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
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
61 the main content for the screen (your primary layout when the drawer is hidden) and another view
62 that contains the contents of the navigation drawer.</p>
67 runtime), and a {@link android.widget.ListView} for the navigation drawer.</p>
80 &lt;!-- The navigation drawer -->
97 and the drawer must be on top of the content.</li>
[all …]
Dindex.jd45 implement navigation patterns with tabs, swipe views, and a navigation drawer. You should also
62 <dt><strong><a href="nav-drawer.html">Creating a Navigation Drawer</a></strong></dt>
63 <dd>Learn how to build an interface with a hidden navigation drawer on the side
Dtemporal.jd51 href="{@docRoot}training/implementing-navigation/nav-drawer.html">navigation drawer</a>.</li>
/frameworks/support/v7/appcompat/tests/src/android/support/v7/testutils/
DDrawerLayoutActions.java64 public void onDrawerClosed(View drawer) { in onDrawerClosed() argument
73 public void onDrawerOpened(View drawer) { in onDrawerOpened() argument
82 public void onDrawerSlide(View drawer, float slideOffset) { in onDrawerSlide() argument
117 final DrawerLayout drawer = (DrawerLayout) view; in wrap() local
120 drawer.addDrawerListener(customListener); in wrap()
138 drawer.removeDrawerListener(customListener); in wrap()
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
DDrawerController.java85 View drawer = activity.findViewById(R.id.drawer_roots); in create() local
88 drawer.getLayoutParams().width = calculateDrawerWidth(activity); in create()
97 return new RuntimeDrawerController(layout, drawer, toggle, toolbar); in create()
131 DrawerLayout layout, View drawer, ActionBarDrawerToggle toggle, in RuntimeDrawerController() argument
137 mDrawer = drawer; in RuntimeDrawerController()
DNavigationView.java56 DrawerController drawer, in NavigationView() argument
64 mDrawer = drawer; in NavigationView()
/frameworks/base/docs/html/design/handhelds/
Dindex.jd94 interrupting the user. Open the notifications drawer by swiping down on the status bar. Touching a
111 <p>Swiping a notification right or left removes it from the notification drawer.</p>
128 <p>A typical Android app uses action bars, and many apps will include a navigation drawer.</p>
138 <p>If your app's structure is more complex, the navigation drawer can display the main navigation
139 options. The navigation drawer expands from the left edge of the screen, overlaying the content
141 <p><a href="{@docRoot}design/patterns/navigation-drawer.html">More on the Navigation Drawer</a></p>
/frameworks/base/docs/html/wear/preview/
Dsupport.jd401 <li>The automatic drawer peeking behavior is
402 inverted. Now the bottom drawer peeks when the user scrolls down the view
403 and top drawer peeks when the user scrolls to the top of the view
410 peek view in your XML layout (previously, custom drawer contents were
414 <li>The Navigation drawer now displays page indicator dots.
424 <li>There is improved drawer handling (size and margins) for devices with chins:
426 <li>Size: The bottom drawer is slightly smaller when there is a
430 size equal to the size of the chin, so that the bottom drawer is
434 <li>The navigation drawer contents are now updated when
476 <li>The user interface for the action drawer can sometimes have a
[all …]
Dapi-overview.jd91 Wear 2.0 introduces two new widgets, navigation drawer and action drawer.
93 navigation drawer appears at the top of the screen and allows users to
94 navigate between app views. The action drawer appears at the bottom of
/frameworks/support/core-ui/java/android/support/v4/widget/
DDrawerLayout.java1733 public boolean isDrawerOpen(View drawer) { in isDrawerOpen() argument
1734 if (!isDrawerView(drawer)) { in isDrawerOpen()
1735 throw new IllegalArgumentException("View " + drawer + " is not a drawer"); in isDrawerOpen()
1737 LayoutParams drawerLp = (LayoutParams) drawer.getLayoutParams(); in isDrawerOpen()
1766 public boolean isDrawerVisible(View drawer) { in isDrawerVisible() argument
1767 if (!isDrawerView(drawer)) { in isDrawerVisible()
1768 throw new IllegalArgumentException("View " + drawer + " is not a drawer"); in isDrawerVisible()
1770 return ((LayoutParams) drawer.getLayoutParams()).onScreen > 0; in isDrawerVisible()
2175 final View drawer = findDrawerWithGravity(mAbsGravity); in onEdgeLock() local
2176 if (drawer != null && !isDrawerOpen(drawer)) { in onEdgeLock()
[all …]
/frameworks/base/docs/html/design/auto/
Dindex.jd128 <p>For browse actions, the display shows the drawer transition. After the
129 transition from the primary app UI to the list UI, the drawer appears in the
140   <strong>Figure 6.</strong> Example of the drawer layout template with generic list items.
150   <strong>Figure 7.</strong> Example of the the drawer layout in the Google Play Music app.
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/drawer/
DProfileSelectDialog.java16 package com.android.settingslib.drawer;
DDashboardCategory.java17 package com.android.settingslib.drawer;
DTile.java17 package com.android.settingslib.drawer;
DSettingsDrawerAdapter.java16 package com.android.settingslib.drawer;
DUserAdapter.java17 package com.android.settingslib.drawer;
DTileUtils.java16 package com.android.settingslib.drawer;
/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
DTunerActivity.java26 import com.android.settingslib.drawer.SettingsDrawerActivity;
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/
DSuggestionParser.java34 import com.android.settingslib.drawer.Tile;
35 import com.android.settingslib.drawer.TileUtils;
/frameworks/base/docs/html/distribute/essentials/quality/
Dauto.jd93 such as the navigation drawer, card backgrounds, fonts and icon colors, are set and rendered by
149 display icons in the content navigation drawer.
372 …(<a href="//google.com/design/spec-auto/system-overview/drawer.html#drawer-drawer-content-patterns…
/frameworks/base/docs/html/training/notify-user/
Dexpanded.jd40 <p>Notifications in the notification drawer appear in two main visual styles,
43 the drawer, or the user clicks the notification. </p>
/frameworks/base/docs/html/design/patterns/
Dapp-structure.jd160 <p>A <em>navigation drawer</em> is a slide-out menu that allows users to switch between views of yo…
175 Navigation drawer from the Keep app.
181 …top-level switching, don't add a drawer, even if your navigation branches are deep. In this case, …
Dnotifications_k.jd332 accessed by opening the notification drawer.</p>
333 <p>Inside the drawer, notifications are chronologically sorted with the
336 removes it from the drawer.</p>
350 manually removed from the notification drawer.</p></p>
/frameworks/base/docs/html/training/cloudsave/
Dconflict-res.jd438 dictionary represents a &quot;drawer&quot; that contains coins, and the total
441 drawer, and only the device itself can put coins into that drawer.</p>
444 <em>a</em> is the total number of coins in the drawer A, <em>b</em> is
445 the total number of coins in drawer B, and so on.</p>
447 <p>The new conflict resolution algorithm for the "drawer" solution is as follows:</p>

12