Searched refs:childrenBottom (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DGridView.java450 private View fillSelection(int childrenTop, int childrenBottom) { argument
477 pinToBottom(childrenBottom);
481 final int bottomSelectionPixel = getBottomSelectionPixel(childrenBottom,
504 private void pinToBottom(int childrenBottom) { argument
508 final int offset = childrenBottom - bottom;
699 * @param childrenBottom Last pixel where children can be drawn
702 private View fillFromSelection(int selectedTop, int childrenTop, int childrenBottom) { argument
724 int bottomSelectionPixel = getBottomSelectionPixel(childrenBottom, fadingEdgeLength,
752 * @param childrenBottom Bottom pixel were children can be drawn
758 private int getBottomSelectionPixel(int childrenBottom, in argument
874 moveSelection(int delta, int childrenTop, int childrenBottom) argument
[all...]
H A DListView.java769 * @param childrenBottom Bottom of the area in which children can be drawn,
773 private View fillFromMiddle(int childrenTop, int childrenBottom) { argument
774 int height = childrenBottom - childrenTop;
826 * @param childrenBottom Last pixel where children can be drawn
829 private View fillFromSelection(int selectedTop, int childrenTop, int childrenBottom) { argument
837 final int bottomSelectionPixel = getBottomSelectionPixel(childrenBottom, fadingEdgeLength,
885 * @param childrenBottom Bottom pixel were children can be drawn
890 private int getBottomSelectionPixel(int childrenBottom, int fadingEdgeLength, argument
892 int bottomSelectionPixel = childrenBottom;
950 * @param childrenBottom Las
953 moveSelection(View oldSel, View newSel, int delta, int childrenTop, int childrenBottom) argument
[all...]
H A DAbsListView.java5119 int childrenBottom = mBottom - mTop - mListPadding.bottom;
5134 } else if (selectedBottom > childrenBottom) {
5135 selectedTop = childrenBottom - selected.getMeasuredHeight()
5175 if (firstPosition + childCount < itemCount || bottom > childrenBottom) {
5176 childrenBottom -= getVerticalFadingEdgeLength();
5180 if (bottom <= childrenBottom) {

Completed in 213 milliseconds