Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/
H A DDialogLaunchAnimator.kt255 animatedParent?.dialogContentWithBackground?.let {
385 val dialogContentWithBackground = animatedDialog.dialogContentWithBackground ?: return null regex
540 var dialogContentWithBackground: ViewGroup? = null
597 val dialogContentWithBackground = regex
627 dialogContentWithBackground
630 this.dialogContentWithBackground = dialogContentWithBackground
633 val background = dialogContentWithBackground.background
645 dialogContentWithBackground.setShouldBlockVisibilityChanges(true)
683 dialogContentWithBackground.addOnLayoutChangeListener(
869 val dialogContentWithBackground = this.dialogContentWithBackground!! regex
[all …]
/aosp14/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/util/
H A DDialog.kt100 val dialogContentWithBackground = LaunchableFrameLayout(context) regex
101 dialogContentWithBackground.background = decorView.background
111 dialogContentWithBackground.isClickable = true
116 dialogContentWithBackground.importantForAccessibility = View.IMPORTANT_FOR_ACCESSIBILITY_NO
119 dialogContentWithBackground,
131 dialogContentWithBackground.addView(view)
152 val layoutParams = dialogContentWithBackground.layoutParams
155 dialogContentWithBackground.layoutParams = layoutParams
161 return dialogContentWithBackground to decorViewLayoutListener
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/animation/
H A DDialogLaunchAnimatorTest.kt90 val dialogContentWithBackground = transparentBackground.getChildAt(0) as ViewGroup regex
91 assertEquals(TestDialog.DIALOG_WIDTH, dialogContentWithBackground.layoutParams.width)
92 assertEquals(TestDialog.DIALOG_HEIGHT, dialogContentWithBackground.layoutParams.height)
93 assertEquals(dialog.windowBackground, dialogContentWithBackground.background)
97 dialogContentWithBackground.findViewByPredicate { it === dialog.contentView }