Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/compose/features/src/com/android/systemui/media/controls/ui/composable/
DMediaCarousel.kt58 val layoutHeight = with(density) { mediaHeight.toPx() }.toInt() in SceneScope() constant
61 mediaHost.measurementInput = MeasurementInput(layoutWidth, layoutHeight) in SceneScope()
62 carouselController.setSceneContainerSize(layoutWidth, layoutHeight) in SceneScope()
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/view/
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()
/frameworks/base/packages/SettingsLib/Spa/spa/src/com/android/settingslib/spa/widget/scaffold/
DCustomizedAppBar.kt529 val layoutHeight = if (heightPx > 0) heightPx.roundToInt() else 0 in TopAppBarLayout() constant
531 layout(constraints.maxWidth, layoutHeight) { in TopAppBarLayout()
535 y = (layoutHeight - navigationIconPlaceable.height) / 2 in TopAppBarLayout()
542 Arrangement.Center -> (layoutHeight - titlePlaceable.height) / 2 in TopAppBarLayout()
546 if (titleBottomPadding == 0) layoutHeight - titlePlaceable.height in TopAppBarLayout()
547 else layoutHeight - titlePlaceable.height - max( in TopAppBarLayout()
559 y = (layoutHeight - actionIconsPlaceable.height) / 2 in TopAppBarLayout()
/frameworks/base/packages/SystemUI/compose/features/src/com/android/systemui/volume/panel/component/volume/ui/composable/
DVolumeSliderContent.kt132 val layoutHeight = labelPlaceable.height + (disabledMessagePlaceable?.height ?: 0) in measure() constant
133 return layout(layoutWidth, layoutHeight) { in measure()
/frameworks/base/packages/SettingsLib/Spa/spa/src/com/android/settingslib/spa/widget/dialog/
DSettingsAlterDialogContent.kt253 val layoutHeight = crossAxisLayoutSize in measurables() constant
255 layout(layoutWidth, layoutHeight) { in measurables()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DAmbientState.java425 public void setLayoutHeight(int layoutHeight) { in setLayoutHeight() argument
426 mLayoutHeight = layoutHeight; in setLayoutHeight()
/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()