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

/frameworks/base/core/java/android/widget/
H A DGridView.java367 * @param nextBottom The location where the bottom of the item associated
372 private View fillUp(int pos, int nextBottom) { argument
380 while (nextBottom > end && pos >= 0) {
382 View temp = makeRow(pos, nextBottom, false);
387 nextBottom = mReferenceView.getTop() - mVerticalSpacing;
420 private View fillFromBottom(int lastPosition, int nextBottom) { argument
427 return fillUp(lastPosition, nextBottom);
H A DListView.java692 * @param nextBottom The location where the bottom of the item associated
697 private View fillUp(int pos, int nextBottom) { argument
705 while (nextBottom > end && pos >= 0) {
708 View child = makeAndAddView(pos, nextBottom, false, mListPadding.left, selected);
709 nextBottom = child.getTop() - mDividerHeight;

Completed in 51 milliseconds