Home | History | Annotate | Download | only in widget

Lines Matching defs:scrollDelta

903             int scrollDelta = computeScrollDeltaToGetChildRectOnScreen(mTempRect);
904 doScrollY(scrollDelta);
908 int scrollDelta = maxJump;
910 if (direction == View.FOCUS_UP && getScrollY() < scrollDelta) {
911 scrollDelta = getScrollY();
919 scrollDelta = daBottom - screenBottom;
923 if (scrollDelta == 0) {
926 doScrollY(direction == View.FOCUS_DOWN ? scrollDelta : -scrollDelta);
1135 int scrollDelta = computeScrollDeltaToGetChildRectOnScreen(mTempRect);
1137 if (scrollDelta != 0) {
1138 scrollBy(0, scrollDelta);
1322 int scrollDelta = computeScrollDeltaToGetChildRectOnScreen(mTempRect);
1323 doScrollY(scrollDelta);