Home
last modified time | relevance | path

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

/aosp12/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
H A DViewLayoutUtils.java58 public static void updateLayoutHeightOf(final Window window, final int layoutHeight) { in updateLayoutHeightOf() argument
60 if (params != null && params.height != layoutHeight) { in updateLayoutHeightOf()
61 params.height = layoutHeight; in updateLayoutHeightOf()
66 public static void updateLayoutHeightOf(final View view, final int layoutHeight) { in updateLayoutHeightOf() argument
68 if (params != null && params.height != layoutHeight) { in updateLayoutHeightOf()
69 params.height = layoutHeight; in updateLayoutHeightOf()
/aosp12/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/view/
H A DIllustration.java152 final int layoutHeight = bottom - top; in onLayout() local
157 viewBounds.set(0, 0, layoutWidth, layoutHeight); in onLayout()
178 (int) Math.ceil((layoutHeight - illustrationBounds.height()) / scale)); in onLayout()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DAmbientState.java326 public void setLayoutHeight(int layoutHeight) { in setLayoutHeight() argument
327 mLayoutHeight = layoutHeight; in setLayoutHeight()
/aosp12/frameworks/opt/photoviewer/src/com/android/ex/photo/views/
H A 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()
/aosp12/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DLatinIME.java1341 final int layoutHeight = isFullscreenMode() in updateSoftInputWindowLayoutParameters() local
1344 ViewLayoutUtils.updateLayoutHeightOf(inputArea, layoutHeight); in updateSoftInputWindowLayoutParameters()
1346 ViewLayoutUtils.updateLayoutHeightOf(mInputView, layoutHeight); in updateSoftInputWindowLayoutParameters()