summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorKatie McCormick <kmccormick@google.com>2013-02-07 14:23:14 -0800
committerKatie McCormick <kmccormick@google.com>2013-02-07 14:23:14 -0800
commit89fafaeae73cc265f13775944ccb2841bbc6766c (patch)
tree5637e6cf4ae7ca486be2b4e795cd5aa473a48ae9 /docs
parent00f490844d89b146e5490204a5a483834950c489 (diff)
downloadframeworks_base-89fafaeae73cc265f13775944ccb2841bbc6766c.zip
frameworks_base-89fafaeae73cc265f13775944ccb2841bbc6766c.tar.gz
frameworks_base-89fafaeae73cc265f13775944ccb2841bbc6766c.tar.bz2
Doc update: clean up
Change-Id: Idd11b36d54e01671d45764dd6ed327621a3fa682
Diffstat (limited to 'docs')
-rw-r--r--docs/html/training/gestures/scroll.jd11
1 files changed, 2 insertions, 9 deletions
diff --git a/docs/html/training/gestures/scroll.jd b/docs/html/training/gestures/scroll.jd
index 955495a..8576948 100644
--- a/docs/html/training/gestures/scroll.jd
+++ b/docs/html/training/gestures/scroll.jd
@@ -45,13 +45,7 @@ a scrolling effect in response to touch gestures using <em>scrollers</em>.
<p>You can use scrollers ({@link android.widget.Scroller} or {@link
android.widget.OverScroller}) to collect the data you need to produce a
-scrolling animation in response to a touch event. {@link
-android.widget.Scroller} and {@link android.widget.OverScroller} are largely
-interchangeable&mdash;the difference is that {@link android.widget.OverScroller}
-allows temporarily scrolling beyond the minimum/maximum boundaries and springing
-back to the bounds. This is normally rendered using a "glow" effect, provided by
-the {@link android.widget.EdgeEffect} or {@link
-android.support.v4.widget.EdgeEffectCompat} classes. </p>
+scrolling animation in response to a touch event.</p>
<p>A scroller is used to animate scrolling over time, using platform-standard
scrolling physics (friction, velocity, etc.). The scroller itself doesn't
@@ -157,5 +151,4 @@ public void computeScroll() {
}</pre>
<p>For another example of scroller usage, see the <a href="http://github.com/android/platform_frameworks_support/blob/master/v4/java/android/support/v4/view/ViewPager.java">source code</a> for the
-{@link android.support.v4.view.ViewPager} class. It scrolls in response to flings,
-and uses scrolling to implement the "snapping to page" animation.</p>
+{@link android.support.v4.view.ViewPager} class.</p>