Searched refs:mListPadding (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/core/java/android/widget/ |
D | ListView.java | 298 delta = child.getTop() - mListPadding.top; in adjustViewsUpOrDown() 311 delta = child.getBottom() - (getHeight() - mListPadding.bottom); in adjustViewsUpOrDown() 645 final int listTop = mScrollY + mListPadding.top; in showingTopFadingEdge() 657 final int listBottom = mScrollY + getHeight() - mListPadding.bottom; in showingBottomFadingEdge() 787 end -= mListPadding.bottom; in fillDown() 793 View child = makeAndAddView(pos, nextTop, true, mListPadding.left, selected); in fillDown() 822 end = mListPadding.top; in fillUp() 828 View child = makeAndAddView(pos, nextBottom, false, mListPadding.left, selected); in fillUp() 875 mListPadding.left, true); in fillFromMiddle() 936 sel = makeAndAddView(selectedPosition, selectedTop, true, mListPadding.left, true); in fillFromSelection() [all …]
|
D | GridView.java | 321 end -= mListPadding.bottom; in fillDown() 351 nextLeft = getWidth() - mListPadding.right - columnWidth - in makeRow() 354 nextLeft = mListPadding.left + in makeRow() 421 end = mListPadding.top; in fillUp() 642 final int end = (mBottom - mTop) - mListPadding.bottom; in correctTooHigh() 653 if (bottomOffset > 0 && (mFirstPosition > 0 || firstTop < mListPadding.top)) { in correctTooHigh() 656 bottomOffset = Math.min(bottomOffset, mListPadding.top - firstTop); in correctTooHigh() 682 final int start = mListPadding.top; in correctTooLow() 685 final int end = (mBottom - mTop) - mListPadding.bottom; in correctTooLow() 1069 widthSize = mColumnWidth + mListPadding.left + mListPadding.right; in onMeasure() [all …]
|
D | AbsListView.java | 369 Rect mListPadding = new Rect(); field in AbsListView 1287 return getChildAt(0).getTop() >= mListPadding.top && in contentFits() 1288 getChildAt(childCount - 1).getBottom() <= getHeight() - mListPadding.bottom; in contentFits() 1594 final int viewportHeight = getHeight() - mListPadding.top - mListPadding.bottom; in performAccessibilityActionInternal() 1602 final int viewportHeight = getHeight() - mListPadding.top - mListPadding.bottom; in performAccessibilityActionInternal() 2167 final Rect listPadding = mListPadding; in onMeasure() 2278 canScrollUp = child.getTop() < mListPadding.top; in canScrollUp() 2296 canScrollDown = child.getBottom() > mBottom - mListPadding.bottom; 2321 return mListPadding.top; in getListPaddingTop() 2333 return mListPadding.bottom; in getListPaddingBottom() [all …]
|
/frameworks/base/config/ |
D | hiddenapi-greylist-max-o.txt | 80240 Landroid/widget/AbsListView;->mListPadding:Landroid/graphics/Rect;
|