Home | History | Annotate | Download | only in widget

Lines Matching refs:scrollY

413             final int scrollY = mScrollY;
415 return !(y < child.getTop() - scrollY
416 || y >= child.getBottom() - scrollY
758 protected void onOverScrolled(int scrollX, int scrollY,
765 mScrollY = scrollY;
772 super.scrollTo(scrollX, scrollY);
1143 final int scrollY = mScrollY;
1144 dy = Math.max(0, Math.min(scrollY + dy, maxY)) - scrollY;
1146 mScroller.startScroll(mScrollX, scrollY, 0, dy);
1184 final int scrollY = mScrollY;
1186 if (scrollY < 0) {
1187 scrollRange -= scrollY;
1188 } else if (scrollY > overscrollBottom) {
1189 scrollRange += scrollY - overscrollBottom;
1605 final int scrollY = mScrollY;
1610 canvas.translate(mPaddingLeft, Math.min(0, scrollY));
1623 Math.max(getScrollRange(), scrollY) + height);