Searched refs:mListPadding (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/core/java/android/widget/ |
D | ListView.java | 223 delta = child.getTop() - mListPadding.top; in adjustViewsUpOrDown() 236 delta = child.getBottom() - (getHeight() - mListPadding.bottom); in adjustViewsUpOrDown() 557 final int listTop = mScrollY + mListPadding.top; in showingTopFadingEdge() 569 final int listBottom = mScrollY + getHeight() - mListPadding.bottom; in showingBottomFadingEdge() 698 end -= mListPadding.bottom; in fillDown() 704 View child = makeAndAddView(pos, nextTop, true, mListPadding.left, selected); in fillDown() 732 end = mListPadding.top; in fillUp() 738 View child = makeAndAddView(pos, nextBottom, false, mListPadding.left, selected); in fillUp() 785 mListPadding.left, true); in fillFromMiddle() 846 sel = makeAndAddView(selectedPosition, selectedTop, true, mListPadding.left, true); in fillFromSelection() [all …]
|
D | GridView.java | 303 end -= mListPadding.bottom; in fillDown() 333 nextLeft = getWidth() - mListPadding.right - columnWidth - in makeRow() 336 nextLeft = mListPadding.left + in makeRow() 402 end = mListPadding.top; in fillUp() 623 final int end = (mBottom - mTop) - mListPadding.bottom; in correctTooHigh() 634 if (bottomOffset > 0 && (mFirstPosition > 0 || firstTop < mListPadding.top)) { in correctTooHigh() 637 bottomOffset = Math.min(bottomOffset, mListPadding.top - firstTop); in correctTooHigh() 663 final int start = mListPadding.top; in correctTooLow() 666 final int end = (mBottom - mTop) - mListPadding.bottom; in correctTooLow() 1049 widthSize = mColumnWidth + mListPadding.left + mListPadding.right; in onMeasure() [all …]
|
D | AbsListView.java | 351 Rect mListPadding = new Rect(); field in AbsListView 1246 return getChildAt(0).getTop() >= mListPadding.top && in contentFits() 1247 getChildAt(childCount - 1).getBottom() <= getHeight() - mListPadding.bottom; in contentFits() 1549 final int viewportHeight = getHeight() - mListPadding.top - mListPadding.bottom; in performAccessibilityActionInternal() 1557 final int viewportHeight = getHeight() - mListPadding.top - mListPadding.bottom; in performAccessibilityActionInternal() 2126 final Rect listPadding = mListPadding; in onMeasure() 2236 canScrollUp = child.getTop() < mListPadding.top; in canScrollUp() 2253 canScrollDown = child.getBottom() > mBottom - mListPadding.bottom; 2278 return mListPadding.top; in getListPaddingTop() 2290 return mListPadding.bottom; in getListPaddingBottom() [all …]
|