Searched refs:overscroll (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/ |
D | TaskStackViewScroller.java | 148 int overscroll) { in fling() argument 155 mScroller.fling(0, y, 0, velY, 0, 0, minY, maxY, 0, overscroll); in fling()
|
/frameworks/base/docs/html/training/gestures/ |
D | scroll.jd | 230 location of x and y. When the criteria for displaying an overscroll "glow" edge effect are met 231 (the display is zoomed in, x or y is out of bounds, and the app isn't already showing an overscroll… 232 the code sets up the overscroll glow effect and calls 236 <pre>// Edge effect / overscroll tracking objects. 268 * showing overscroll, then render the overscroll
|
/frameworks/base/docs/html/about/versions/ |
D | android-2.3.jd | 288 <li>Support for overscroll 290 <li>New support for overscroll in Views and Widgets. In Views, applications can 291 enable/disable overscroll for a given view, set the overscoll mode, control the 292 overscroll distance, and handle the results of overscrolling. </li> 293 <li>In Widgets, applications can control overscroll characteristics such as 294 animation, springback, and overscroll distance. For more information, see {@link 302 for controlling overscroll behavior.</li>
|
/frameworks/base/core/java/android/widget/ |
D | AbsListView.java | 3477 final boolean overscroll = mScrollY != 0; in startScrollIfNeeded() 3478 if ((overscroll || distance > mTouchSlop) && in startScrollIfNeeded() 3481 if (overscroll) { in startScrollIfNeeded() 3585 int overscroll = -incrementalDeltaY - in scrollIfNeeded() local 3587 if (dispatchNestedScroll(0, overscroll - incrementalDeltaY, 0, overscroll, in scrollIfNeeded() 3595 final boolean atOverscrollEdge = overScrollBy(0, overscroll, in scrollIfNeeded() 3612 mEdgeGlowTop.onPull((float) -overscroll / getHeight(), in scrollIfNeeded() 3619 mEdgeGlowBottom.onPull((float) overscroll / getHeight(), in scrollIfNeeded()
|
/frameworks/base/docs/html/topic/libraries/support-library/ |
D | revisions.jd | 2804 <li>Added support in <code>ViewCompat</code> to check for and set overscroll
|