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

/frameworks/base/core/java/android/widget/
H A DGridView.java292 * @param nextTop The location where the top of the item associated with pos
298 private View fillDown(int pos, int nextTop) { argument
306 while (nextTop < end && pos < mItemCount) {
307 View temp = makeRow(pos, nextTop, true);
314 nextTop = mReferenceView.getBottom() + mVerticalSpacing;
430 * @param nextTop The location where the top of the first item should be
435 private View fillFromTop(int nextTop) { argument
442 return fillDown(mFirstPosition, nextTop);
H A DListView.java685 * @param nextTop The location where the top of the item associated with pos
691 private View fillDown(int pos, int nextTop) { argument
699 while (nextTop < end && pos < mItemCount) {
702 View child = makeAndAddView(pos, nextTop, true, mListPadding.left, selected);
704 nextTop = child.getBottom() + mDividerHeight;
752 * @param nextTop The location where the top of the first item should be
757 private View fillFromTop(int nextTop) { argument
763 return fillDown(mFirstPosition, nextTop);

Completed in 74 milliseconds