Home
last modified time | relevance | path

Searched refs:nextBottom (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/java/android/widget/
DGridView.java417 private View fillUp(int pos, int nextBottom) { in fillUp() argument
425 while (nextBottom > end && pos >= 0) { in fillUp()
427 View temp = makeRow(pos, nextBottom, false); in fillUp()
432 nextBottom = mReferenceView.getTop() - mVerticalSpacing; in fillUp()
465 private View fillFromBottom(int lastPosition, int nextBottom) { in fillFromBottom() argument
472 return fillUp(lastPosition, nextBottom); in fillFromBottom()
DListView.java815 private View fillUp(int pos, int nextBottom) { in fillUp() argument
823 while (nextBottom > end && pos >= 0) { in fillUp()
826 View child = makeAndAddView(pos, nextBottom, false, mListPadding.left, selected); in fillUp()
827 nextBottom = child.getTop() - mDividerHeight; in fillUp()