Searched refs:mMaxScrollY (Results 1 - 1 of 1) sorted by relevance

/packages/apps/Gallery/src/com/android/camera/
H A DGridViewSpecial.java124 private int mMaxScrollY; field in class:GridViewSpecial
224 mMaxScrollY = mSpec.mCellSpacing + (mRows * mBlockHeight)
227 // Put mScrollY in the valid range. This matters if mMaxScrollY is
229 mScrollY = Math.max(0, Math.min(mMaxScrollY, mScrollY));
250 return mMaxScrollY + getHeight();
337 mMaxScrollY);
555 scrollTo(0, Math.round(scrollPosition * mMaxScrollY));
560 y = Math.max(0, Math.min(mMaxScrollY, y));
562 mListener.onScroll((float) mScrollY / mMaxScrollY);

Completed in 28 milliseconds