Searched refs:measuredHeight (Results 1 – 7 of 7) sorted by relevance
130 int measuredWidth, measuredHeight; in onMeasure() local139 measuredHeight = desiredHeight; in onMeasure()141 measuredHeight = Math.min(desiredHeight, MeasureSpec.getSize(heightSpec)); in onMeasure()143 measuredHeight = MeasureSpec.getSize(heightSpec); in onMeasure()145 setMeasuredDimension(measuredWidth, measuredHeight); in onMeasure()
33 final int measuredHeight = getMeasuredHeight(); in onMeasure() local38 "measuredHeight: " + measuredHeight + " getMeasuredHeight(): " + in onMeasure()42 if (measuredHeight != getMeasuredHeight() && getContext() instanceof ImeUtil.ImeStateHost) { in onMeasure()
309 final int measuredHeight = getMeasuredHeight(); in onMeasure() local310 if (measuredWidth >= getMinimumWidth() || measuredHeight >= getMinimumHeight()) { in onMeasure()332 int height = measuredHeight; in onMeasure()338 final float aspectRatio = measuredWidth / (float) measuredHeight; in onMeasure()
49 int measuredHeight = getMeasuredHeight(); in onMeasure() local51 if (measuredHeight > mMaximumHeight) { in onMeasure()
52 final int measuredHeight = getMeasuredHeight(); in onMeasure() local54 final int shortSide = Math.min(measuredHeight, measuredWidth); in onMeasure()
396 int measuredHeight = mImageViewHeight; in doInBackground() local403 (float) bitmapHeight / measuredHeight); in doInBackground()410 int verticalGutterPx = Math.max(0, (scaledBitmap.getHeight() - measuredHeight) / 2); in doInBackground()
69 val frameHeight = mCircleView!!.measuredHeight in remeasureViews()