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/
DNotificationStackScrollLayout.java1043 ExpandableView slidingChild = (ExpandableView) getChildAt(childIdx); in getClosestChildAtRawPosition() local
1044 if (slidingChild.getVisibility() == GONE in getClosestChildAtRawPosition()
1045 || slidingChild instanceof StackScrollerDecorView) { in getClosestChildAtRawPosition()
1048 float childTop = slidingChild.getTranslationY(); in getClosestChildAtRawPosition()
1049 float top = childTop + slidingChild.getClipTopAmount(); in getClosestChildAtRawPosition()
1050 float bottom = childTop + slidingChild.getActualHeight() in getClosestChildAtRawPosition()
1051 - slidingChild.getClipBottomAmount(); in getClosestChildAtRawPosition()
1055 closestChild = slidingChild; in getClosestChildAtRawPosition()
1073 ExpandableView slidingChild = (ExpandableView) getChildAt(childIdx); in getChildAtPosition() local
1074 if (slidingChild.getVisibility() == GONE in getChildAtPosition()
[all …]
DNotificationChildrenContainer.java795 ExpandableNotificationRow slidingChild = mChildren.get(childIdx);
796 float childTop = slidingChild.getTranslationY();
797 float top = childTop + slidingChild.getClipTopAmount();
798 float bottom = childTop + slidingChild.getActualHeight();
800 return slidingChild;