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

/frameworks/base/core/java/android/widget/
H A DListView.java209 delta = child.getTop() - mListPadding.top;
222 delta = child.getBottom() - (getHeight() - mListPadding.bottom);
527 final int listTop = mScrollY + mListPadding.top;
539 final int listBottom = mScrollY + getHeight() - mListPadding.bottom;
668 end -= mListPadding.bottom;
674 View child = makeAndAddView(pos, nextTop, true, mListPadding.left, selected);
702 end = mListPadding.top;
708 View child = makeAndAddView(pos, nextBottom, false, mListPadding.left, selected);
755 mListPadding.left, true);
816 sel = makeAndAddView(selectedPosition, selectedTop, true, mListPadding
[all...]
H A DGridView.java279 end -= mListPadding.bottom;
309 nextLeft = getWidth() - mListPadding.right - columnWidth -
312 nextLeft = mListPadding.left +
377 end = mListPadding.top;
598 final int end = (mBottom - mTop) - mListPadding.bottom;
609 if (bottomOffset > 0 && (mFirstPosition > 0 || firstTop < mListPadding.top)) {
612 bottomOffset = Math.min(bottomOffset, mListPadding.top - firstTop);
638 final int start = mListPadding.top;
641 final int end = (mBottom - mTop) - mListPadding.bottom;
1014 // Sets up mListPadding
[all...]
H A DAbsListView.java333 Rect mListPadding = new Rect(); field in class:AbsListView
1191 return getChildAt(0).getTop() >= mListPadding.top &&
1192 getChildAt(childCount - 1).getBottom() <= getHeight() - mListPadding.bottom;
1392 final int viewportHeight = getHeight() - mListPadding.top - mListPadding.bottom;
1399 final int viewportHeight = getHeight() - mListPadding.top - mListPadding.bottom;
1957 final Rect listPadding = mListPadding;
2036 canScrollUp = child.getTop() < mListPadding.top;
2053 canScrollDown = child.getBottom() > mBottom - mListPadding
[all...]

Completed in 166 milliseconds