Home
last modified time | relevance | path

Searched refs:mCropSize (Results 1 – 1 of 1) sorted by relevance

/frameworks/opt/photoviewer/src/com/android/ex/photo/views/
DPhotoView.java123 private int mCropSize; field in PhotoView
758 mCropSize = Math.min(sCropSize, Math.min(layoutWidth, layoutHeight)); in onLayout()
759 final int cropLeft = (layoutWidth - mCropSize) / 2; in onLayout()
760 final int cropTop = (layoutHeight - mCropSize) / 2; in onLayout()
761 final int cropRight = cropLeft + mCropSize; in onLayout()
762 final int cropBottom = cropTop + mCropSize; in onLayout()
917 return mCropSize > 0 ? mCropSize : sCropSize; in getCropSize()