Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DGridView.java397 private View fillUp(int pos, int nextBottom) { in fillUp() argument
405 while (nextBottom > end && pos >= 0) { in fillUp()
407 View temp = makeRow(pos, nextBottom, false); in fillUp()
412 nextBottom = mReferenceView.getTop() - mVerticalSpacing; in fillUp()
445 private View fillFromBottom(int lastPosition, int nextBottom) { in fillFromBottom() argument
452 return fillUp(lastPosition, nextBottom); in fillFromBottom()
DListView.java727 private View fillUp(int pos, int nextBottom) { in fillUp() argument
735 while (nextBottom > end && pos >= 0) { in fillUp()
738 View child = makeAndAddView(pos, nextBottom, false, mListPadding.left, selected); in fillUp()
739 nextBottom = child.getTop() - mDividerHeight; in fillUp()