Searched refs:scrollY (Results 1 - 12 of 12) 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 DPlayheadView.java80 public void onScrollBegin(View view, int scrollX, int scrollY, boolean appScroll) {
84 public void onScrollProgress(View view, int scrollX, int scrollY, boolean appScroll) {
90 public void onScrollEnd(View view, int scrollX, int scrollY, boolean appScroll) {
H A DTimelineHorizontalScrollView.java223 final int scrollY = getScrollY();
226 listener.onScrollProgress(this, scrollX, scrollY, mAppScroll);
232 listener.onScrollBegin(this, scrollX, scrollY, mAppScroll);
H A DTransitionView.java92 public void onScrollBegin(View view, int scrollX, int scrollY, boolean appScroll) {
97 public void onScrollProgress(View view, int scrollX, int scrollY, boolean appScroll) {
102 public void onScrollEnd(View view, int scrollX, int scrollY, boolean appScroll) {
H A DAudioTrackView.java111 public void onScrollBegin(View view, int scrollX, int scrollY, boolean appScroll) {
115 public void onScrollProgress(View view, int scrollX, int scrollY, boolean appScroll) {
119 public void onScrollEnd(View view, int scrollX, int scrollY, boolean appScroll) {
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/Launcher2/src/com/android/launcher2/
H A DBubbleTextView.java176 // The translate of scrollX and scrollY is necessary when drawing TextViews, because
177 // they set scrollX and scrollY to large values to achieve centered text
280 final int scrollY = getScrollY();
287 if ((scrollX | scrollY) == 0) {
290 canvas.translate(scrollX, scrollY);
292 canvas.translate(-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...]
/packages/apps/MusicFX/src/com/android/musicfx/seekbar/
H A DProgressBar.java908 final int scrollY = mScrollY + mPaddingTop;
910 invalidate(dirty.left + scrollX, dirty.top + scrollY,
911 dirty.right + scrollX, dirty.bottom + scrollY);
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DAlbumSetPage.java186 int scrollY = mSlotView.getScrollY();
188 center[1] = offset.top + (r.top + r.bottom) / 2 - scrollY;
/packages/apps/VideoEditor/src/com/android/videoeditor/
H A DVideoEditorActivity.java312 public void onScrollBegin(View view, int scrollX, int scrollY, boolean appScroll) {
322 public void onScrollProgress(View view, int scrollX, int scrollY, boolean appScroll) {
326 public void onScrollEnd(View view, int scrollX, int scrollY, boolean appScroll) {

Completed in 278 milliseconds