Searched refs:childrenBottom (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/core/java/android/widget/ |
D | GridView.java | 455 private View fillSelection(int childrenTop, int childrenBottom) { in fillSelection() argument 482 pinToBottom(childrenBottom); in fillSelection() 486 final int bottomSelectionPixel = getBottomSelectionPixel(childrenBottom, in fillSelection() 509 private void pinToBottom(int childrenBottom) { in pinToBottom() argument 513 final int offset = childrenBottom - bottom; in pinToBottom() 707 private View fillFromSelection(int selectedTop, int childrenTop, int childrenBottom) { in fillFromSelection() argument 729 int bottomSelectionPixel = getBottomSelectionPixel(childrenBottom, fadingEdgeLength, in fillFromSelection() 763 private int getBottomSelectionPixel(int childrenBottom, int fadingEdgeLength, in getBottomSelectionPixel() argument 766 int bottomSelectionPixel = childrenBottom; in getBottomSelectionPixel() 879 private View moveSelection(int delta, int childrenTop, int childrenBottom) { in moveSelection() argument [all …]
|
D | ListView.java | 779 private View fillFromMiddle(int childrenTop, int childrenBottom) { in fillFromMiddle() argument 780 int height = childrenBottom - childrenTop; in fillFromMiddle() 835 private View fillFromSelection(int selectedTop, int childrenTop, int childrenBottom) { in fillFromSelection() argument 843 final int bottomSelectionPixel = getBottomSelectionPixel(childrenBottom, fadingEdgeLength, in fillFromSelection() 896 private int getBottomSelectionPixel(int childrenBottom, int fadingEdgeLength, in getBottomSelectionPixel() argument 898 int bottomSelectionPixel = childrenBottom; in getBottomSelectionPixel() 960 int childrenBottom) { in moveSelection() argument 1012 int halfVerticalSpace = (childrenBottom - childrenTop) / 2; in moveSelection() 1073 int halfVerticalSpace = (childrenBottom - childrenTop) / 2; in moveSelection() 1562 final int childrenBottom = mBottom - mTop - mListPadding.bottom; in layoutChildren() local [all …]
|
D | AbsListView.java | 5343 int childrenBottom = mBottom - mTop - mListPadding.bottom; in resurrectSelection() local 5358 } else if (selectedBottom > childrenBottom) { in resurrectSelection() 5359 selectedTop = childrenBottom - selected.getMeasuredHeight() in resurrectSelection() 5399 if (firstPosition + childCount < itemCount || bottom > childrenBottom) { in resurrectSelection() 5400 childrenBottom -= getVerticalFadingEdgeLength(); in resurrectSelection() 5404 if (bottom <= childrenBottom) { in resurrectSelection()
|