Searched refs:nextTop (Results 1 - 3 of 3) sorted by relevance

/frameworks/support/v4/java/android/support/v4/view/
H A DPagerTitleStrip.java384 int nextTop;
390 nextTop = paddingTop + nextTopOffset;
397 nextTop = centeredTop + nextTopOffset;
403 nextTop = bottomGravTop + nextTopOffset;
416 mNextText.layout(nextLeft, nextTop, nextLeft + nextWidth,
417 nextTop + mNextText.getMeasuredHeight());
/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 46 milliseconds