Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DListView.java207 delta = child.getTop() - mListPadding.top; in adjustViewsUpOrDown()
220 delta = child.getBottom() - (getHeight() - mListPadding.bottom); in adjustViewsUpOrDown()
525 final int listTop = mScrollY + mListPadding.top; in showingTopFadingEdge()
537 final int listBottom = mScrollY + getHeight() - mListPadding.bottom; in showingBottomFadingEdge()
666 end -= mListPadding.bottom; in fillDown()
672 View child = makeAndAddView(pos, nextTop, true, mListPadding.left, selected); in fillDown()
699 end = mListPadding.top; in fillUp()
705 View child = makeAndAddView(pos, nextBottom, false, mListPadding.left, selected); in fillUp()
752 mListPadding.left, true); in fillFromMiddle()
813 sel = makeAndAddView(selectedPosition, selectedTop, true, mListPadding.left, true); in fillFromSelection()
[all …]
DGridView.java277 end -= mListPadding.bottom; in fillDown()
301 int nextLeft = mListPadding.left + in makeRow()
364 end = mListPadding.top; in fillUp()
584 final int end = (mBottom - mTop) - mListPadding.bottom; in correctTooHigh()
595 if (bottomOffset > 0 && (mFirstPosition > 0 || firstTop < mListPadding.top)) { in correctTooHigh()
598 bottomOffset = Math.min(bottomOffset, mListPadding.top - firstTop); in correctTooHigh()
624 final int start = mListPadding.top; in correctTooLow()
627 final int end = (mBottom - mTop) - mListPadding.bottom; in correctTooLow()
1010 widthSize = mColumnWidth + mListPadding.left + mListPadding.right; in onMeasure()
1012 widthSize = mListPadding.left + mListPadding.right; in onMeasure()
[all …]
DAbsListView.java320 Rect mListPadding = new Rect(); field in AbsListView
1127 return getChildAt(0).getTop() >= mListPadding.top && in contentFits()
1128 getChildAt(childCount - 1).getBottom() <= getHeight() - mListPadding.bottom; in contentFits()
1826 final Rect listPadding = mListPadding; in onMeasure()
1905 canScrollUp = child.getTop() < mListPadding.top; in updateScrollIndicators()
1922 canScrollDown = child.getBottom() > mBottom - mListPadding.bottom; in updateScrollIndicators()
1948 return mListPadding.top; in getListPaddingTop()
1960 return mListPadding.bottom; in getListPaddingBottom()
1972 return mListPadding.left; in getListPaddingLeft()
1984 return mListPadding.right; in getListPaddingRight()
[all …]