Home | History | Annotate | Download | only in widget

Lines Matching refs:nextTop

658      * @param nextTop The location where the top of the item associated with pos
664 private View fillDown(int pos, int nextTop) {
672 while (nextTop < end && pos < mItemCount) {
675 View child = makeAndAddView(pos, nextTop, true, mListPadding.left, selected);
677 nextTop = child.getBottom() + mDividerHeight;
725 * @param nextTop The location where the top of the first item should be
730 private View fillFromTop(int nextTop) {
736 return fillDown(mFirstPosition, nextTop);