Searched refs:mListPadding (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/core/java/android/widget/ |
D | ListView.java | 296 delta = child.getTop() - mListPadding.top; in adjustViewsUpOrDown() 309 delta = child.getBottom() - (getHeight() - mListPadding.bottom); in adjustViewsUpOrDown() 643 final int listTop = mScrollY + mListPadding.top; in showingTopFadingEdge() 655 final int listBottom = mScrollY + getHeight() - mListPadding.bottom; in showingBottomFadingEdge() 785 end -= mListPadding.bottom; in fillDown() 791 View child = makeAndAddView(pos, nextTop, true, mListPadding.left, selected); in fillDown() 820 end = mListPadding.top; in fillUp() 826 View child = makeAndAddView(pos, nextBottom, false, mListPadding.left, selected); in fillUp() 873 mListPadding.left, true); in fillFromMiddle() 934 sel = makeAndAddView(selectedPosition, selectedTop, true, mListPadding.left, true); in fillFromSelection() [all …]
|
D | GridView.java | 322 end -= mListPadding.bottom; in fillDown() 352 nextLeft = getWidth() - mListPadding.right - columnWidth - in makeRow() 355 nextLeft = mListPadding.left + in makeRow() 422 end = mListPadding.top; in fillUp() 643 final int end = (mBottom - mTop) - mListPadding.bottom; in correctTooHigh() 654 if (bottomOffset > 0 && (mFirstPosition > 0 || firstTop < mListPadding.top)) { in correctTooHigh() 657 bottomOffset = Math.min(bottomOffset, mListPadding.top - firstTop); in correctTooHigh() 683 final int start = mListPadding.top; in correctTooLow() 686 final int end = (mBottom - mTop) - mListPadding.bottom; in correctTooLow() 1070 widthSize = mColumnWidth + mListPadding.left + mListPadding.right; in onMeasure() [all …]
|
D | AbsListView.java | 389 Rect mListPadding = new Rect(); field in AbsListView 1370 return getChildAt(0).getTop() >= mListPadding.top && in contentFits() 1371 getChildAt(childCount - 1).getBottom() <= getHeight() - mListPadding.bottom; in contentFits() 1663 final int viewportHeight = getHeight() - mListPadding.top - mListPadding.bottom; in performAccessibilityActionInternal() 1671 final int viewportHeight = getHeight() - mListPadding.top - mListPadding.bottom; in performAccessibilityActionInternal() 2236 final Rect listPadding = mListPadding; in onMeasure() 2347 canScrollUp = child.getTop() < mListPadding.top; in canScrollUp() 2365 canScrollDown = child.getBottom() > mBottom - mListPadding.bottom; 2390 return mListPadding.top; in getListPaddingTop() 2402 return mListPadding.bottom; in getListPaddingBottom() [all …]
|
/frameworks/base/boot/hiddenapi/ |
D | hiddenapi-max-target-o.txt | 65168 Landroid/widget/AbsListView;->mListPadding:Landroid/graphics/Rect;
|