Searched defs:nextBottom (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DGridView.java392 * @param nextBottom The location where the bottom of the item associated
397 private View fillUp(int pos, int nextBottom) { argument
405 while (nextBottom > end && pos >= 0) {
407 View temp = makeRow(pos, nextBottom, false);
412 nextBottom = mReferenceView.getTop() - mVerticalSpacing;
445 private View fillFromBottom(int lastPosition, int nextBottom) { argument
452 return fillUp(lastPosition, nextBottom);
H A DListView.java720 * @param nextBottom The location where the bottom of the item associated
725 private View fillUp(int pos, int nextBottom) { argument
733 while (nextBottom > end && pos >= 0) {
736 View child = makeAndAddView(pos, nextBottom, false, mListPadding.left, selected);
737 nextBottom = child.getTop() - mDividerHeight;

Completed in 38 milliseconds