Lines Matching full:views
20 <li>Apps such as Gmail or the Play Store that combine a broad set of data views with deep navigation</li>
25 <p>A typical Android app consists of top level and detail/edit views. If the navigation hierarchy is
26 deep and complex, category views connect top level and detail views.</p>
36 <h4>Top level views</h4>
37 <p>The top level of the app typically consists of the different views that your app supports. The views
42 <h4>Category views</h4>
43 <p>Category views allow you to drill deeper into your data.</p>
91 <li>If your top level consists of multiple views, make sure that it's easy for the user to navigate between them by adding view controls to your action bar.</li>
104 well. Navigation supports switching views of day, week, month, and agenda views.
111 <p>The top level communicates your app?s capabilities by introducing the user to the major functional areas. In many cases the top level will consist of multiple views, and you need to make sure that the user can navigate between them efficiently. Android supports a number of view controls for this task. Use the control that best matches your app's navigation needs:</p>
116 <p><em>Fixed tabs</em> display top-level views concurrently and make it easy to explore and switch between them. They are always visible on the screen, and can't be moved out of the way like scrollable tabs. <em>Fixed tabs</em> should always allow the user to navigate between the views by swiping left or right on the content area.</p>
119 <li>You expect your app's users to switch views frequently.</li>
120 <li>You have a limited number of up to three top-level views.</li>
121 <li>You want the user to be highly aware of the alternate views.</li>
139 <p>A <em>spinner</em> is a drop-down menu that allows users to switch between views of your app. </p>
143 <li>The user is switching between views of the same data set (for example: calendar events viewed by day, week, or month) or data sets of the same type (such as content for two different accounts).</li>
160 <p>A <em>navigation drawer</em> is a slide-out menu that allows users to switch between views of your app. It can hold a large number of items and is accessible from anywhere in your app. Navigation drawers show your app's top-level views, but can also provide navigation to lower-level screens. This makes them particularly suitable for complex apps.</p>
165 <li>You have a large number of top-level views.</li>
167 <li>You want to provide quick navigation to views which don't have direct relationships between each other.</li>
188 <p>Even though the number of vertical navigation steps from the top level down to the detail views is
233 invocation of actions for a data item from within list or grid views, display prominent actions
244 <p>Even though category views mostly serve to guide people to content detail, keep in mind that there
281 <h4>Make navigation between detail views efficient</h4>
283 between items from within the detail view. Use swipe views or other techniques, such as thumbnail view controls,
288 Gmail using swipe views to navigate from detail view to detail view.
297 <p>For more discussion, see the <a href="{@docRoot}design/patterns/swipe-views.html">Swipe Views</a>
317 <p>Allow for quick navigation between detail items with swipe views.</p>