Home
last modified time | relevance | path

Searched refs:hostView (Results 1 – 11 of 11) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/media/
DMediaHost.kt20 lateinit var hostView: UniqueObjectHostView in <lambda>() variable
32 hostView.getLocationOnScreen(tmpLocationOnScreen) in <lambda>()
33 var left = tmpLocationOnScreen[0] + hostView.paddingLeft in <lambda>()
34 var top = tmpLocationOnScreen[1] + hostView.paddingTop in <lambda>()
35 var right = tmpLocationOnScreen[0] + hostView.width - hostView.paddingRight in <lambda>()
36 var bottom = tmpLocationOnScreen[1] + hostView.height - hostView.paddingBottom in <lambda>()
75 hostView = mediaHierarchyManager.register(this) in <lambda>()
76 hostView.addOnAttachStateChangeListener(object : OnAttachStateChangeListener { in <lambda>()
92 hostView.measurementManager = object : UniqueObjectHostView.MeasurementManager { in <lambda>()
121 if (newVisibility != hostView.visibility) { in <lambda>()
[all …]
DKeyguardMediaController.kt66 mediaView.setContentView(mediaHost.hostView) in attach()
DMediaHierarchyManager.kt278 mediaObject.hostView = viewHost in register()
355 !previousHost.hostView.isAttachedToWindow) { in performTransitionToNewLocation()
549 val targetHost = getHost(desiredLocation)!!.hostView in updateHostAttachment()
/frameworks/base/core/java/android/view/
DViewOverlay.java50 ViewOverlay(Context context, View hostView) { in ViewOverlay() argument
51 mOverlayViewGroup = new OverlayViewGroup(context, hostView); in ViewOverlay()
138 OverlayViewGroup(Context context, View hostView) { in OverlayViewGroup() argument
140 mHostView = hostView; in OverlayViewGroup()
143 mRight = hostView.getWidth(); in OverlayViewGroup()
144 mBottom = hostView.getHeight(); in OverlayViewGroup()
DViewGroupOverlay.java36 ViewGroupOverlay(Context context, View hostView) { in ViewGroupOverlay() argument
37 super(context, hostView); in ViewGroupOverlay()
DView.java6251 public DeclaredOnClickListener(@NonNull View hostView, @NonNull String methodName) {
6252 mHostView = hostView;
/frameworks/base/core/java/com/android/internal/widget/
DMessagingMessageState.java34 MessagingMessageState(View hostView) { in MessagingMessageState() argument
35 mHostView = hostView; in MessagingMessageState()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
DQSFragment.java460 View hostView = mediaHost.getHostView(); in pinToBottom() local
462 float targetPosition = absoluteBottomPosition - getTotalBottomMargin(hostView) in pinToBottom()
463 - hostView.getHeight(); in pinToBottom()
465 - hostView.getTranslationY(); in pinToBottom()
474 hostView.setTranslationY(translationY); in pinToBottom()
476 hostView.setTranslationY(0); in pinToBottom()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/media/
DMediaHierarchyManagerTest.kt107 `when`(host.hostView).thenReturn(UniqueObjectHostView(context)) in setupHost()
114 verify(lockHost).hostView = eq(host) in testHostViewSetOnRegister()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DStackScrollAlgorithm.java66 ViewGroup hostView) { in StackScrollAlgorithm() argument
67 mHostView = hostView; in StackScrollAlgorithm()
223 private void initAlgorithmState(ViewGroup hostView, StackScrollAlgorithmState state, in initAlgorithmState() argument
239 int childCount = hostView.getChildCount(); in initAlgorithmState()
259 ExpandableView v = (ExpandableView) hostView.getChildAt(i); in initAlgorithmState()
/frameworks/base/core/java/android/transition/
DTransitionUtils.java117 public static Bitmap createDrawableBitmap(Drawable drawable, View hostView) { in createDrawableBitmap() argument