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.java668 ExpandableNotificationRow slidingChild = mChildren.get(childIdx);
669 float childTop = slidingChild.getTranslationY();
670 float top = childTop + slidingChild.getClipTopAmount();
671 float bottom = childTop + slidingChild.getActualHeight();
673 return slidingChild;
DNotificationStackScrollLayout.java951 ExpandableView slidingChild = (ExpandableView) getChildAt(childIdx); in getClosestChildAtRawPosition() local
952 if (slidingChild.getVisibility() == GONE in getClosestChildAtRawPosition()
953 || slidingChild instanceof StackScrollerDecorView) { in getClosestChildAtRawPosition()
956 float childTop = slidingChild.getTranslationY(); in getClosestChildAtRawPosition()
957 float top = childTop + slidingChild.getClipTopAmount(); in getClosestChildAtRawPosition()
958 float bottom = childTop + slidingChild.getActualHeight(); in getClosestChildAtRawPosition()
962 closestChild = slidingChild; in getClosestChildAtRawPosition()
980 ExpandableView slidingChild = (ExpandableView) getChildAt(childIdx); in getChildAtPosition() local
981 if (slidingChild.getVisibility() == GONE in getChildAtPosition()
982 || slidingChild instanceof StackScrollerDecorView) { in getChildAtPosition()
[all …]