Home | History | Annotate | Download | only in com.example.android.camera2raw

Lines Matching refs:height

49      * @param height Relative vertical size
51 public void setAspectRatio(int width, int height) {
52 if (width < 0 || height < 0) {
55 if (mRatioWidth == width && mRatioHeight == height) {
59 mRatioHeight = height;
67 int height = MeasureSpec.getSize(heightMeasureSpec);
69 setMeasuredDimension(width, height);
71 if (width < height * mRatioWidth / mRatioHeight) {
74 setMeasuredDimension(height * mRatioWidth / mRatioHeight, height);