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

/frameworks/base/core/java/android/widget/
H A DGridView.java266 * @param nextTop The location where the top of the item associated with pos
272 private View fillDown(int pos, int nextTop) { argument
280 while (nextTop < end && pos < mItemCount) {
281 View temp = makeRow(pos, nextTop, true);
288 nextTop = mReferenceView.getBottom() + mVerticalSpacing;
391 * @param nextTop The location where the top of the first item should be
396 private View fillFromTop(int nextTop) { argument
403 return fillDown(mFirstPosition, nextTop);
H A DListView.java655 * @param nextTop The location where the top of the item associated with pos
661 private View fillDown(int pos, int nextTop) { argument
669 while (nextTop < end && pos < mItemCount) {
672 View child = makeAndAddView(pos, nextTop, true, mListPadding.left, selected);
674 nextTop = child.getBottom() + mDividerHeight;
721 * @param nextTop The location where the top of the first item should be
726 private View fillFromTop(int nextTop) { argument
732 return fillDown(mFirstPosition, nextTop);

Completed in 62 milliseconds