Home | History | Annotate | Download | only in widget

Lines Matching full:scrollx

386             final int scrollX = mScrollX;
390 || x < child.getLeft() - scrollX
391 || x >= child.getRight() - scrollX);
731 protected void onOverScrolled(int scrollX, int scrollY,
735 mScrollX = scrollX;
742 super.scrollTo(scrollX, scrollY);
1150 final int scrollX = mScrollX;
1151 dx = Math.max(0, Math.min(scrollX + dx, maxX)) - scrollX;
1153 mScroller.startScroll(scrollX, mScrollY, dx, 0);
1187 final int scrollX = mScrollX;
1189 if (scrollX < 0) {
1190 scrollRange -= scrollX;
1191 } else if (scrollX > overscrollRight) {
1192 scrollRange += scrollX - overscrollRight;
1564 final int scrollX = mScrollX;
1570 canvas.translate(-height + mPaddingTop, Math.min(0, scrollX));
1584 -(Math.max(getScrollRange(), scrollX) + width));