Searched defs:sCropSize (Results 1 - 1 of 1) sorted by path

/frameworks/opt/photoviewer/src/com/android/ex/photo/views/
H A DPhotoView.java84 private static int sCropSize; field in class:PhotoView
122 /** Actual crop size; may differ from {@link #sCropSize} if the screen is smaller */
758 mCropSize = Math.min(sCropSize, Math.min(layoutWidth, layoutHeight));
868 final int vwidth = mAllowCrop ? sCropSize : getWidth();
869 final int vheight = mAllowCrop ? sCropSize : getHeight();
917 return mCropSize > 0 ? mCropSize : sCropSize;
1113 sCropSize = resources.getDimensionPixelSize(R.dimen.photo_crop_width);

Completed in 33 milliseconds