Searched defs:scrollY (Results 1 - 4 of 4) sorted by relevance

/packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
H A DScrollViewListener.java30 * @param scrollY The current vertical position
34 public void onScrollBegin(View view, int scrollX, int scrollY, boolean appScroll); argument
41 * @param scrollY The current vertical position
45 public void onScrollProgress(View view, int scrollX, int scrollY, boolean appScroll); argument
52 * @param scrollY The current vertical position
56 public void onScrollEnd(View view, int scrollX, int scrollY, boolean appScroll); argument
H A DMediaItemView.java192 public void onScrollBegin(View view, int scrollX, int scrollY, boolean appScroll) { argument
197 public void onScrollProgress(View view, int scrollX, int scrollY, boolean appScroll) { argument
203 public void onScrollEnd(View view, int scrollX, int scrollY, boolean appScroll) { argument
H A DHorizontalScrollView.java716 protected void onOverScrolled(int scrollX, int scrollY, argument
721 mScrollY = scrollY;
727 super.scrollTo(scrollX, scrollY);
/packages/apps/Browser/src/com/android/browser/view/
H A DScrollerView.java454 final int scrollY = mScrollY;
456 return !(y < child.getTop() - scrollY
457 || y >= child.getBottom() - scrollY
866 protected void onOverScrolled(int scrollX, int scrollY, argument
871 mScrollY = scrollY;
879 super.scrollTo(scrollX, scrollY);
1288 final int scrollY = mScrollY;
1289 dy = Math.max(0, Math.min(scrollY + dy, maxY)) - scrollY;
1290 mScroller.startScroll(mScrollX, scrollY,
[all...]

Completed in 69 milliseconds