Home
last modified time | relevance | path

Searched refs:layoutHeight (Results 1 – 4 of 4) sorted by relevance

/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/view/
DIllustration.java153 final int layoutHeight = bottom - top; in onLayout() local
158 mViewBounds.set(0, 0, layoutWidth, layoutHeight); in onLayout()
172 (int) Math.ceil((layoutHeight - mIllustrationBounds.height()) / mScale)); in onLayout()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
DAmbientState.java144 public void setLayoutHeight(int layoutHeight) { in setLayoutHeight() argument
145 mLayoutHeight = layoutHeight; in setLayoutHeight()
/frameworks/support/v4/java/android/support/v4/widget/
DSlidingPaneLayout.java482 int layoutHeight = 0; in onMeasure() local
486 layoutHeight = maxLayoutHeight = heightSize - getPaddingTop() - getPaddingBottom(); in onMeasure()
550 if (heightMode == MeasureSpec.AT_MOST && childHeight > layoutHeight) { in onMeasure()
551 layoutHeight = Math.min(childHeight, maxLayoutHeight); in onMeasure()
647 final int measuredHeight = layoutHeight + getPaddingTop() + getPaddingBottom(); in onMeasure()
/frameworks/opt/photoviewer/src/com/android/ex/photo/views/
DPhotoView.java726 final int layoutHeight = getHeight(); in onLayout() local
729 mCropSize = Math.min(sCropSize, Math.min(layoutWidth, layoutHeight)); in onLayout()
731 final int cropTop = (layoutHeight - mCropSize) / 2; in onLayout()