Home
last modified time | relevance | path

Searched refs:listBottom (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/widget/listview/arrowscroll/
DListOfThinItemsTest.java52 final int listBottom = mListView.getHeight() - mListView.getListPaddingBottom(); in testScrollToBottom() local
56 final int bottomFadingEdge = listBottom - mListView.getVerticalFadingEdgeLength(); in testScrollToBottom()
62 bottomFadingEdge : listBottom; in testScrollToBottom()
72 lastChild.getBottom() >= listBottom); in testScrollToBottom()
88 final int listBottom = mListView.getHeight() - mListView.getListPaddingBottom(); in testScrollToTop() local
111 lastChild.getBottom() >= listBottom); in testScrollToTop()
DListWithOffScreenNextSelectableTest.java61 final int listBottom = mListView.getHeight() - mListView.getListPaddingBottom(); in testGoDownToOffScreenSelectable() local
66 listBottom - mListView.getVerticalFadingEdgeLength(), lastVisibleView.getBottom()); in testGoDownToOffScreenSelectable()
75 assertEquals(listBottom, mListView.getSelectedView().getBottom()); in testGoDownToOffScreenSelectable()
80 final int listBottom = mListView.getHeight() - mListView.getListPaddingBottom(); in testGoUpToOffScreenSelectable() local
87 assertEquals(listBottom, mListView.getSelectedView().getBottom()); in testGoUpToOffScreenSelectable()
/frameworks/base/core/tests/coretests/src/android/widget/listview/
DListItemRequestRectAboveThinFirstItemTest.java94 int listBottom = mListView.getHeight() - mListView.getPaddingBottom(); in testSecondToLastItemRequestRectBelowBottom() local
96 listBottom, in testSecondToLastItemRequestRectBelowBottom()
/frameworks/base/core/java/android/widget/
DListView.java567 final int listBottom = mScrollY + getHeight() - mListPadding.bottom; in showingBottomFadingEdge() local
570 || (bottomOfBottomChild < listBottom); in showingBottomFadingEdge()
2496 final int listBottom = getHeight() - mListPadding.bottom; in nextSelectedPositionForDirection() local
2497 if (selectedView != null && selectedView.getBottom() <= listBottom) { in nextSelectedPositionForDirection()
2749 final int listBottom = getHeight() - mListPadding.bottom; in amountToScroll() local
2767 int goalBottom = listBottom; in amountToScroll()
2787 final int max = getChildAt(numChildren - 1).getBottom() - listBottom; in amountToScroll()
2934 final int listBottom = getHeight() - mListPadding.bottom - in arrowScrollFocused()
2937 (selectedView != null && selectedView.getBottom() < listBottom) ? in arrowScrollFocused()
2939 listBottom; in arrowScrollFocused()
[all …]
DAbsListView.java2122 final int listBottom = getHeight() - getPaddingBottom(); in onMeasure() local
2124 final int lastBottom = lastChild != null ? lastChild.getBottom() : listBottom; in onMeasure()
2126 lastBottom <= listBottom; in onMeasure()
5350 final int listBottom = getHeight() - getPaddingBottom(); in handleDataChanged() local
5352 final int lastBottom = lastChild != null ? lastChild.getBottom() : listBottom; in handleDataChanged()
5354 lastBottom <= listBottom) { in handleDataChanged()