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

Lines Matching full:swipe

1 page.title=Creating Swipe Views with Tabs
2 page.tags="viewpager","horizontal","paging","swipe view","tabs"
13 <li><a href="#horizontal-paging">Implement Swipe Views</a></li>
15 <li><a href="#swipe-tabs">Change Tabs with Swipe Views</a></li>
24 <li><a href="{@docRoot}design/patterns/swipe-views.html">Android Design: Swipe Views</a></li>
39 <p>Swipe views provide lateral navigation between sibling screens such as tabs with
41 you how to create a tab layout with swipe views for switching between tabs, or how to show
45 <p><strong>Swipe View Design</strong></p>
48 Effective Navigation</a> and the <a href="{@docRoot}design/patterns/swipe-views.html">Swipe
56 <h2 id="horizontal-paging">Implement Swipe Views</h2>
58 <p>You can create swipe views in your app using the {@link android.support.v4.view.ViewPager}
65 {@code &lt;ViewPager>} element to your XML layout. For example, if each page in the swipe view
92 to swipe across a collection of {@link android.app.Fragment} objects:</p>
163 <p>This example shows only the code necessary to create the swipe views. The following
221 <h2 id="swipe-tabs">Change Tabs with Swipe Views</h2>
276 your swipe views.</p>