Searched refs:excludedView (Results 1 – 2 of 2) sorted by relevance
124 final View excludedView = getView(); in update() local125 if (excludedView == null || !excludedView.isAttachedToWindow() in update()126 || !excludedView.isAggregatedVisible()) return GONE; in update()127 final List<Rect> localRects = excludedView.getSystemGestureExclusionRects(); in update()131 ViewParent p = excludedView.getParent(); in update()132 if (p != null && p.getChildVisibleRect(excludedView, mappedRect, null)) { in update()
44 fun fadeOutAllChildrenExcept(root: ViewGroup, excludedView: View, duration: Long,48 val viewsToFadeOut = gatherViews(root, excludedView, visibilityIncluder)87 private fun gatherViews(root: ViewGroup, excludedView: View,90 var parent = excludedView.parent as ViewGroup?91 var viewContainingExcludedView = excludedView;