Lines Matching full:scroller
155 {@link android.widget.Scroller} class is the basis for handling flywheel-style <em>fling</em>
158 <p>To start a fling, call {@link android.widget.Scroller#fling fling()} with the starting velocity
178 <p>The call to {@link android.widget.Scroller#fling fling()} sets up the physics model for the fling
180 Afterwards, you need to update the {@link android.widget.Scroller Scroller} by calling {@link
181 android.widget.Scroller#computeScrollOffset Scroller.computeScrollOffset()} at regular
183 android.widget.Scroller#computeScrollOffset computeScrollOffset()} updates the {@link
184 android.widget.Scroller
185 Scroller} object's internal state by reading the current time and using the physics model to calculate
187 at that time. Call {@link android.widget.Scroller#getCurrX} and {@link
188 android.widget.Scroller#getCurrY} to
191 <p>Most views pass the {@link android.widget.Scroller Scroller} object's x and y position directly to
204 <p>The {@link android.widget.Scroller Scroller} class computes scroll positions for you, but it does
212 {@link android.widget.Scroller#fling(int, int, int, int, int, int, int, int) fling()},
238 mScroller = new Scroller(getContext(), null, true);