Searched refs:maxChildHeight (Results 1 – 2 of 2) sorted by relevance
46 int maxChildHeight = 0; in onMeasure() local52 if (childHeight > maxChildHeight) { in onMeasure()53 maxChildHeight = childHeight; in onMeasure()57 if (maxChildHeight != 0) { in onMeasure()58 heightMeasureSpec = MeasureSpec.makeMeasureSpec(maxChildHeight, MeasureSpec.EXACTLY); in onMeasure()
55 int maxChildHeight = 0; in onMeasure() local70 if (childHeight > maxChildHeight) { in onMeasure()71 maxChildHeight = childHeight; in onMeasure()79 if (maxChildHeight > (infoChildHeight - infoTopPadding + mExtraSpacerHeight * 2)) { in onMeasure()86 setMeasuredDimension(MeasureSpec.getSize(widthMeasureSpec), maxChildHeight); in onMeasure() local