Home
last modified time | relevance | path

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

/packages/apps/WallpaperPicker2/src/com/android/wallpaper/widget/
DConstraintViewPager.java46 int maxChildHeight = 0; in onMeasure() local
52 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()
/packages/wallpapers/LivePicker/src/com/android/wallpaper/livepicker/widget/
DConstraintViewPager.java55 int maxChildHeight = 0; in onMeasure() local
70 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