Home
last modified time | relevance | path

Searched refs:dialogContentWithBackground (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/util/
DDialog.kt100 val dialogContentWithBackground = LaunchableFrameLayout(context) in maybeForceFullscreen() constant
101 dialogContentWithBackground.background = decorView.background in maybeForceFullscreen()
111 dialogContentWithBackground.isClickable = true in maybeForceFullscreen()
116 dialogContentWithBackground.importantForAccessibility = View.IMPORTANT_FOR_ACCESSIBILITY_NO in maybeForceFullscreen()
119 dialogContentWithBackground, in maybeForceFullscreen()
131 dialogContentWithBackground.addView(view) in maybeForceFullscreen()
152 val layoutParams = dialogContentWithBackground.layoutParams in maybeForceFullscreen()
155 dialogContentWithBackground.layoutParams = layoutParams in maybeForceFullscreen()
161 return dialogContentWithBackground to decorViewLayoutListener in maybeForceFullscreen()
/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/
DDialogTransitionAnimator.kt264 animatedParent?.dialogContentWithBackground?.let { in <lambda>()
311 openedDialogs.firstOrNull { it.dialog == animateFrom }?.dialogContentWithBackground in <lambda>()
394 val dialogContentWithBackground = animatedDialog.dialogContentWithBackground ?: return null in <lambda>() constant
396 ActivityTransitionAnimator.Controller.fromView(dialogContentWithBackground, cujType) in <lambda>()
549 var dialogContentWithBackground: ViewGroup? = null variable
606 val dialogContentWithBackground = in start() constant
633 val (dialogContentWithBackground, decorViewLayoutListener) = in start() constant
636 dialogContentWithBackground in start()
639 this.dialogContentWithBackground = dialogContentWithBackground in start()
640 dialogContentWithBackground.setTag(R.id.tag_dialog_background, true) in start()
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/animation/
DDialogTransitionAnimatorTest.kt91 val dialogContentWithBackground = transparentBackground.getChildAt(0) as ViewGroup in testShowDialogFromView() constant
92 assertEquals(TestDialog.DIALOG_WIDTH, dialogContentWithBackground.layoutParams.width) in testShowDialogFromView()
93 assertEquals(TestDialog.DIALOG_HEIGHT, dialogContentWithBackground.layoutParams.height) in testShowDialogFromView()
94 assertEquals(dialog.windowBackground, dialogContentWithBackground.background) in testShowDialogFromView()
98 dialogContentWithBackground.findViewByPredicate { it === dialog.contentView } in testShowDialogFromView()