Searched refs:childrenBottom (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/core/java/android/widget/ |
D | GridView.java | 416 private View fillSelection(int childrenTop, int childrenBottom) { in fillSelection() argument 443 pinToBottom(childrenBottom); in fillSelection() 447 final int bottomSelectionPixel = getBottomSelectionPixel(childrenBottom, in fillSelection() 470 private void pinToBottom(int childrenBottom) { in pinToBottom() argument 474 final int offset = childrenBottom - bottom; in pinToBottom() 668 private View fillFromSelection(int selectedTop, int childrenTop, int childrenBottom) { in fillFromSelection() argument 690 int bottomSelectionPixel = getBottomSelectionPixel(childrenBottom, fadingEdgeLength, in fillFromSelection() 724 private int getBottomSelectionPixel(int childrenBottom, int fadingEdgeLength, in getBottomSelectionPixel() argument 727 int bottomSelectionPixel = childrenBottom; in getBottomSelectionPixel() 840 private View moveSelection(int delta, int childrenTop, int childrenBottom) { in moveSelection() argument [all …]
|
D | ListView.java | 746 private View fillFromMiddle(int childrenTop, int childrenBottom) { in fillFromMiddle() argument 747 int height = childrenBottom - childrenTop; in fillFromMiddle() 802 private View fillFromSelection(int selectedTop, int childrenTop, int childrenBottom) { in fillFromSelection() argument 810 final int bottomSelectionPixel = getBottomSelectionPixel(childrenBottom, fadingEdgeLength, in fillFromSelection() 863 private int getBottomSelectionPixel(int childrenBottom, int fadingEdgeLength, in getBottomSelectionPixel() argument 865 int bottomSelectionPixel = childrenBottom; in getBottomSelectionPixel() 927 int childrenBottom) { in moveSelection() argument 979 int halfVerticalSpace = (childrenBottom - childrenTop) / 2; in moveSelection() 1040 int halfVerticalSpace = (childrenBottom - childrenTop) / 2; in moveSelection() 1480 int childrenBottom = mBottom - mTop - mListPadding.bottom; in layoutChildren() local [all …]
|
D | AbsListView.java | 4698 int childrenBottom = mBottom - mTop - mListPadding.bottom; in resurrectSelection() local 4713 } else if (selectedBottom > childrenBottom) { in resurrectSelection() 4714 selectedTop = childrenBottom - selected.getMeasuredHeight() in resurrectSelection() 4754 if (firstPosition + childCount < itemCount || bottom > childrenBottom) { in resurrectSelection() 4755 childrenBottom -= getVerticalFadingEdgeLength(); in resurrectSelection() 4759 if (bottom <= childrenBottom) { in resurrectSelection()
|