summaryrefslogtreecommitdiffstats
path: root/docs/html/training/implementing-navigation
diff options
context:
space:
mode:
authorScott Main <smain@google.com>2012-07-31 09:46:52 -0700
committerScott Main <smain@google.com>2012-07-31 14:19:33 -0700
commitf284d49293aead609de5b83d601260cfd86b7978 (patch)
tree7a94f865fe7deffa5bcb62283ec1412d51aae974 /docs/html/training/implementing-navigation
parenta39fdd11e80618acc046fff65b6549b5c8b5aa8d (diff)
downloadframeworks_base-f284d49293aead609de5b83d601260cfd86b7978.zip
frameworks_base-f284d49293aead609de5b83d601260cfd86b7978.tar.gz
frameworks_base-f284d49293aead609de5b83d601260cfd86b7978.tar.bz2
docs: fix broken links
Change-Id: I0523fb8eb8608b07cf7ca866d0c2ccfcbfc2e946
Diffstat (limited to 'docs/html/training/implementing-navigation')
-rw-r--r--docs/html/training/implementing-navigation/lateral.jd2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/html/training/implementing-navigation/lateral.jd b/docs/html/training/implementing-navigation/lateral.jd
index 76acf03..b59bab2 100644
--- a/docs/html/training/implementing-navigation/lateral.jd
+++ b/docs/html/training/implementing-navigation/lateral.jd
@@ -119,7 +119,7 @@ public void onCreate(Bundle savedInstanceState) {
<h2 id="horizontal-paging">Implement Horizontal Paging (Swipe Views)</h2>
-<p>Horizontal paging, or swipe views, allow users to <a href="{@docRoot}design/patterns/swipe-views">swipe</a> horizontally on the current screen to navigate to adjacent screens. This pattern can be implemented using the {@link android.support.v4.view.ViewPager} widget, currently available as part of the <a href="{@docRoot}tools/extras/support-library.html">Android Support Package</a>. For navigating between sibling screens representing a fixed number of sections, it's best to provide the {@link android.support.v4.view.ViewPager} with a {@link android.support.v4.app.FragmentPagerAdapter}. For horizontal paging across collections of objects, it's best to use a {@link android.support.v4.app.FragmentStatePagerAdapter}, which destroys fragments as the user navigates to other pages, minimizing memory usage.</p>
+<p>Horizontal paging, or swipe views, allow users to <a href="{@docRoot}design/patterns/swipe-views.html">swipe</a> horizontally on the current screen to navigate to adjacent screens. This pattern can be implemented using the {@link android.support.v4.view.ViewPager} widget, currently available as part of the <a href="{@docRoot}tools/extras/support-library.html">Android Support Package</a>. For navigating between sibling screens representing a fixed number of sections, it's best to provide the {@link android.support.v4.view.ViewPager} with a {@link android.support.v4.app.FragmentPagerAdapter}. For horizontal paging across collections of objects, it's best to use a {@link android.support.v4.app.FragmentStatePagerAdapter}, which destroys fragments as the user navigates to other pages, minimizing memory usage.</p>
<p>Below is an example of using a {@link android.support.v4.view.ViewPager} to swipe across a collection of objects.</p>