Home | History | Annotate | Download | only in widget

Lines Matching defs:scrollDelta

827             int scrollDelta = computeScrollDeltaToGetChildRectOnScreen(mTempRect);
828 doScrollY(scrollDelta);
832 int scrollDelta = maxJump;
834 if (direction == View.FOCUS_UP && getScrollY() < scrollDelta) {
835 scrollDelta = getScrollY();
843 scrollDelta = daBottom - screenBottom;
847 if (scrollDelta == 0) {
850 doScrollY(direction == View.FOCUS_DOWN ? scrollDelta : -scrollDelta);
1044 int scrollDelta = computeScrollDeltaToGetChildRectOnScreen(mTempRect);
1046 if (scrollDelta != 0) {
1047 scrollBy(0, scrollDelta);
1231 int scrollDelta = computeScrollDeltaToGetChildRectOnScreen(mTempRect);
1232 doScrollY(scrollDelta);