Home
last modified time | relevance | path

Searched refs:slidingChild (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
DNotificationChildrenContainer.java392 ExpandableNotificationRow slidingChild = mChildren.get(childIdx);
393 float childTop = slidingChild.getTranslationY();
394 float top = childTop + slidingChild.getClipTopAmount();
395 float bottom = childTop + slidingChild.getActualHeight();
397 return slidingChild;
DNotificationStackScrollLayout.java673 ExpandableView slidingChild = (ExpandableView) getChildAt(childIdx); in getClosestChildAtRawPosition() local
674 if (slidingChild.getVisibility() == GONE in getClosestChildAtRawPosition()
675 || slidingChild instanceof StackScrollerDecorView in getClosestChildAtRawPosition()
676 || slidingChild == mSpeedBumpView) { in getClosestChildAtRawPosition()
679 float childTop = slidingChild.getTranslationY(); in getClosestChildAtRawPosition()
680 float top = childTop + slidingChild.getClipTopAmount(); in getClosestChildAtRawPosition()
681 float bottom = childTop + slidingChild.getActualHeight(); in getClosestChildAtRawPosition()
685 closestChild = slidingChild; in getClosestChildAtRawPosition()
701 ExpandableView slidingChild = (ExpandableView) getChildAt(childIdx); in getChildAtPosition() local
702 if (slidingChild.getVisibility() == GONE in getChildAtPosition()
[all …]