Lines Matching full:navigation
1 page.title=Navigation with Back and Up
2 page.tags="navigation","activity","task","up navigation","back navigation"
5 <a class="notice-developers" href="{@docRoot}training/implementing-navigation/index.html">
8 <p>Implementing Effective Navigation</p>
12 <p>Consistent navigation is an essential component of the overall user experience. Few things frustrate
13 users more than basic navigation that behaves in inconsistent and unexpected ways. Android 3.0
14 introduced significant changes to the global navigation behavior. Thoughtfully following the
15 guidelines for Back and Up will make your app's navigation predictable and reliable for your users.</p>
16 <p>Android 2.3 and earlier relied upon the system <em>Back</em> button for supporting navigation within an
17 app. With the introduction of action bars in Android 3.0, a second navigation mechanism appeared:
42 <p>The Back button also supports a few behaviors not directly tied to screen-to-screen navigation:
49 <h2 id="within-app">Navigation Within Your App</h2>
58 in the same place within the app's hierarchy, and no new navigation history is created.</p>
68 <p>When your app supports navigation from a list of items to a detail view of one of those items, it's
69 often desirable to support direction navigation from that item to another one which precedes or
72 navigation does not change the behavior of Up or Back.</p>
91 <h2 id="into-your-app">Navigation into Your App via Home Screen Widgets and Notifications</h2>
105 <p>In the case of the Back button, you should make navigation more predictable by inserting into the
106 task's back stack the complete upward navigation path to the app's topmost screen. This allows users
145 <p>In terms of navigation behavior, pop-up notifications closely follow the behavior of an indirect
152 <h2 id="between-apps">Navigation Between Apps</h2>
161 <p>To understand app-to-app navigation, it's important to understand the Android framework behavior
211 refer to <a href="#into-your-app">Navigation into Your App via Home Screen Widgets and
212 Notifications</a> for guidance on how to specify Up navigation.</p>