Home
last modified time | relevance | path

Searched refs:bubbleBarExpandedView (Results 1 – 10 of 10) sorted by relevance

/frameworks/base/libs/WindowManager/Shell/multivalentTests/src/com/android/wm/shell/bubbles/bar/
DBubbleBarAnimationHelperTest.kt139 assertThat(fromBubble.bubbleBarExpandedView?.visibility).isEqualTo(View.INVISIBLE) in <lambda>()
140 assertThat(fromBubble.bubbleBarExpandedView?.alpha).isEqualTo(0f) in <lambda>()
141 assertThat(fromBubble.bubbleBarExpandedView?.isSurfaceZOrderedOnTop).isFalse() in <lambda>()
143 assertThat(toBubble.bubbleBarExpandedView?.visibility).isEqualTo(View.VISIBLE) in <lambda>()
144 assertThat(toBubble.bubbleBarExpandedView?.alpha).isEqualTo(1f) in <lambda>()
145 assertThat(toBubble.bubbleBarExpandedView?.isSurfaceZOrderedOnTop).isFalse() in <lambda>()
151 fromBubble.bubbleBarExpandedView!! in <lambda>()
162 assertThat(toBubble.bubbleBarExpandedView!!.handleView.handleColor) in <lambda>()
163 .isEqualTo(fromBubble.bubbleBarExpandedView!!.handleView.handleColor) in <lambda>()
203 assertThat(fromBubble.bubbleBarExpandedView?.visibility).isEqualTo(View.INVISIBLE) in <lambda>()
[all …]
DBubbleBarLayerViewTest.kt247 assertThat(bubbleBarLayerView.getChildAt(2)).isEqualTo(bubble.bubbleBarExpandedView) in <lambda>()
260 assertThat(firstBubble.bubbleBarExpandedView).isNull() in <lambda>()
266 assertThat(bubbleBarLayerView.children.last()).isEqualTo(secondBubble.bubbleBarExpandedView) in <lambda>()
281 assertThat(bubbleBarLayerView.children.last()).isEqualTo(secondBubble.bubbleBarExpandedView) in <lambda>()
306 bubble.bubbleBarExpandedView!!.onContentVisibilityChanged(true /* visible */) in <lambda>()
332 bubble.bubbleBarExpandedView!!.onContentVisibilityChanged(true /* visible */) in <lambda>()
358 bubble.bubbleBarExpandedView!!.onContentVisibilityChanged(true /* visible */) in <lambda>()
393 bubble.bubbleBarExpandedView!!.onContentVisibilityChanged(true /* visible */) in <lambda>()
430 val previousX = bubble.bubbleBarExpandedView!!.x in <lambda>()
437 assertThat(bubble.bubbleBarExpandedView!!.x).isNotEqualTo(previousX) in <lambda>()
[all …]
/frameworks/base/libs/WindowManager/Shell/multivalentTests/src/com/android/wm/shell/bubbles/
DFakeBubbleFactory.kt43 val bubbleBarExpandedView = in createExpandedView() constant
59 return bubbleBarExpandedView in createExpandedView()
63 return BubbleViewInfo().apply { bubbleBarExpandedView = bubbleExpandedView } in createViewInfo()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DBubbleOverflow.kt48 private var bubbleBarExpandedView: BubbleBarExpandedView? = null variable in com.android.wm.shell.bubbles.BubbleOverflow
92 bubbleBarExpandedView?.cleanUpExpandedState() in cleanUpExpandedState()
93 bubbleBarExpandedView = null in cleanUpExpandedState()
200 bubbleBarExpandedView = view in createBubbleBarExpandedView()
204 override fun getBubbleBarExpandedView(): BubbleBarExpandedView? = bubbleBarExpandedView in getBubbleBarExpandedView()
DBubbleViewInfoTask.java220 } else if (viewInfo.bubbleBarExpandedView != null) { in updateViewInfo()
223 viewInfo.bubbleBarExpandedView.initialize(mExpandedViewManager.get(), in updateViewInfo()
268 @Nullable BubbleBarExpandedView bubbleBarExpandedView; field in BubbleViewInfoTask.BubbleViewInfo
292 info.bubbleBarExpandedView = (BubbleBarExpandedView) inflater.inflate( in populateForBubbleBar()
DBubbleViewInfoTaskLegacy.java174 @Nullable BubbleBarExpandedView bubbleBarExpandedView; field in BubbleViewInfoTaskLegacy.BubbleViewInfo
201 info.bubbleBarExpandedView = (BubbleBarExpandedView) inflater.inflate( in populateForBubbleBar()
203 info.bubbleBarExpandedView.initialize(expandedViewManager, positioner, in populateForBubbleBar()
DBubble.java796 mBubbleBarExpandedView = info.bubbleBarExpandedView; in setViewInfo()
832 mBubbleBarExpandedView = info.bubbleBarExpandedView; in setViewInfoLegacy()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/bar/
DBubbleBarAnimationHelper.java718 private ObjectAnimator createAlphaAnimator(BubbleBarExpandedView bubbleBarExpandedView, in createAlphaAnimator() argument
720 ObjectAnimator animator = ObjectAnimator.ofFloat(bubbleBarExpandedView, TASK_VIEW_ALPHA, in createAlphaAnimator()
726 bubbleBarExpandedView.setSurfaceZOrderedOnTop(true); in createAlphaAnimator()
731 bubbleBarExpandedView.setContentVisibility(visible); in createAlphaAnimator()
734 bubbleBarExpandedView.setVisibility(INVISIBLE); in createAlphaAnimator()
736 bubbleBarExpandedView.setSurfaceZOrderedOnTop(false); in createAlphaAnimator()
/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/bubbles/
DBubbleViewInfoTest.kt180 assertThat(info.bubbleBarExpandedView).isNull() in <lambda>()
206 assertThat(info.bubbleBarExpandedView).isNotNull() in <lambda>()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/dagger/
DWMComponent.java126 void inject(BubbleBarExpandedView bubbleBarExpandedView); in inject() argument