Searched refs:childrenBottom (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/core/java/android/widget/ |
D | GridView.java | 475 private View fillSelection(int childrenTop, int childrenBottom) { in fillSelection() argument 502 pinToBottom(childrenBottom); in fillSelection() 506 final int bottomSelectionPixel = getBottomSelectionPixel(childrenBottom, in fillSelection() 529 private void pinToBottom(int childrenBottom) { in pinToBottom() argument 533 final int offset = childrenBottom - bottom; in pinToBottom() 727 private View fillFromSelection(int selectedTop, int childrenTop, int childrenBottom) { in fillFromSelection() argument 749 int bottomSelectionPixel = getBottomSelectionPixel(childrenBottom, fadingEdgeLength, in fillFromSelection() 783 private int getBottomSelectionPixel(int childrenBottom, int fadingEdgeLength, in getBottomSelectionPixel() argument 786 int bottomSelectionPixel = childrenBottom; in getBottomSelectionPixel() 899 private View moveSelection(int delta, int childrenTop, int childrenBottom) { in moveSelection() argument [all …]
|
D | ListView.java | 867 private View fillFromMiddle(int childrenTop, int childrenBottom) { in fillFromMiddle() argument 868 int height = childrenBottom - childrenTop; in fillFromMiddle() 923 private View fillFromSelection(int selectedTop, int childrenTop, int childrenBottom) { in fillFromSelection() argument 931 final int bottomSelectionPixel = getBottomSelectionPixel(childrenBottom, fadingEdgeLength, in fillFromSelection() 984 private int getBottomSelectionPixel(int childrenBottom, int fadingEdgeLength, in getBottomSelectionPixel() argument 986 int bottomSelectionPixel = childrenBottom; in getBottomSelectionPixel() 1048 int childrenBottom) { in moveSelection() argument 1100 int halfVerticalSpace = (childrenBottom - childrenTop) / 2; in moveSelection() 1161 int halfVerticalSpace = (childrenBottom - childrenTop) / 2; in moveSelection() 1654 final int childrenBottom = mBottom - mTop - mListPadding.bottom; in layoutChildren() local [all …]
|
D | AbsListView.java | 5764 int childrenBottom = mBottom - mTop - mListPadding.bottom; in resurrectSelection() local 5779 } else if (selectedBottom > childrenBottom) { in resurrectSelection() 5780 selectedTop = childrenBottom - selected.getMeasuredHeight() in resurrectSelection() 5820 if (firstPosition + childCount < itemCount || bottom > childrenBottom) { in resurrectSelection() 5821 childrenBottom -= getVerticalFadingEdgeLength(); in resurrectSelection() 5825 if (bottom <= childrenBottom) { in resurrectSelection()
|