Home
last modified time | relevance | path

Searched refs:overscroll (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/docs/html/sdk/
Dandroid-2.3.jd367 <li>Support for overscroll
369 <li>New support for overscroll in Views and Widgets. In Views, applications can
370 enable/disable overscroll for a given view, set the overscoll mode, control the
371 overscroll distance, and handle the results of overscrolling. </li>
372 <li>In Widgets, applications can control overscroll characteristics such as
373 animation, springback, and overscroll distance. For more information, see {@link
381 for controlling overscroll behavior.</li>
496 overscroll background. </li>
Dcompatibility-library.jd98 <li>Added support in <code>ViewCompat</code> to check for and set overscroll
/frameworks/base/core/java/android/widget/
DAbsListView.java2768 final boolean overscroll = mScrollY != 0; in startScrollIfNeeded()
2769 if (overscroll || distance > mTouchSlop) { in startScrollIfNeeded()
2771 if (overscroll) { in startScrollIfNeeded()
2864 int overscroll = -incrementalDeltaY - in scrollIfNeeded() local
2866 overScrollBy(0, overscroll, 0, mScrollY, 0, 0, in scrollIfNeeded()
2882 mEdgeGlowTop.onPull((float) overscroll / getHeight()); in scrollIfNeeded()
2887 mEdgeGlowBottom.onPull((float) overscroll / getHeight()); in scrollIfNeeded()