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

/frameworks/base/core/java/android/widget/
H A DGridView.java387 * @param nextBottom The location where the bottom of the item associated
392 private View fillUp(int pos, int nextBottom) { argument
400 while (nextBottom > end && pos >= 0) {
402 View temp = makeRow(pos, nextBottom, false);
407 nextBottom = mReferenceView.getTop() - mVerticalSpacing;
440 private View fillFromBottom(int lastPosition, int nextBottom) { argument
447 return fillUp(lastPosition, nextBottom);
H A DListView.java716 * @param nextBottom The location where the bottom of the item associated
721 private View fillUp(int pos, int nextBottom) { argument
729 while (nextBottom > end && pos >= 0) {
732 View child = makeAndAddView(pos, nextBottom, false, mListPadding.left, selected);
733 nextBottom = child.getTop() - mDividerHeight;

Completed in 73 milliseconds