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/ |
D | MediaCarousel.kt | 58 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/ |
D | Illustration.java | 152 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/ |
D | CustomizedAppBar.kt | 529 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/ |
D | VolumeSliderContent.kt | 132 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/ |
D | SettingsAlterDialogContent.kt | 253 val layoutHeight = crossAxisLayoutSize in measurables() constant 255 layout(layoutWidth, layoutHeight) { in measurables()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | AmbientState.java | 425 public void setLayoutHeight(int layoutHeight) { in setLayoutHeight() argument 426 mLayoutHeight = layoutHeight; in setLayoutHeight()
|
/frameworks/opt/photoviewer/src/com/android/ex/photo/views/ |
D | PhotoView.java | 726 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()
|