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.java54 final int listBottom = mListView.getHeight() - mListView.getListPaddingBottom(); in testScrollToBottom() local
58 final int bottomFadingEdge = listBottom - mListView.getVerticalFadingEdgeLength(); in testScrollToBottom()
64 bottomFadingEdge : listBottom; in testScrollToBottom()
74 lastChild.getBottom() >= listBottom); in testScrollToBottom()
90 final int listBottom = mListView.getHeight() - mListView.getListPaddingBottom(); in testScrollToTop() local
113 lastChild.getBottom() >= listBottom); in testScrollToTop()
DListWithOffScreenNextSelectableTest.java63 final int listBottom = mListView.getHeight() - mListView.getListPaddingBottom(); in testGoDownToOffScreenSelectable() local
68 listBottom - mListView.getVerticalFadingEdgeLength(), lastVisibleView.getBottom()); in testGoDownToOffScreenSelectable()
77 assertEquals(listBottom, mListView.getSelectedView().getBottom()); in testGoDownToOffScreenSelectable()
82 final int listBottom = mListView.getHeight() - mListView.getListPaddingBottom(); in testGoUpToOffScreenSelectable() local
89 assertEquals(listBottom, mListView.getSelectedView().getBottom()); in testGoUpToOffScreenSelectable()
/frameworks/base/core/tests/coretests/src/android/widget/listview/
DListItemRequestRectAboveThinFirstItemTest.java96 int listBottom = mListView.getHeight() - mListView.getPaddingBottom(); in testSecondToLastItemRequestRectBelowBottom() local
98 listBottom, in testSecondToLastItemRequestRectBelowBottom()
/frameworks/base/core/java/android/widget/
DListView.java651 final int listBottom = mScrollY + getHeight() - mListPadding.bottom; in showingBottomFadingEdge() local
654 || (bottomOfBottomChild < listBottom); in showingBottomFadingEdge()
2667 final int listBottom = getHeight() - mListPadding.bottom; in nextSelectedPositionForDirection() local
2668 if (selectedView != null && selectedView.getBottom() <= listBottom) { in nextSelectedPositionForDirection()
2920 final int listBottom = getHeight() - mListPadding.bottom; in amountToScroll() local
2938 int goalBottom = listBottom; in amountToScroll()
2958 final int max = getChildAt(numChildren - 1).getBottom() - listBottom; in amountToScroll()
3105 final int listBottom = getHeight() - mListPadding.bottom - in arrowScrollFocused()
3108 (selectedView != null && selectedView.getBottom() < listBottom) ? in arrowScrollFocused()
3110 listBottom; in arrowScrollFocused()
[all …]
DAbsListView.java2138 final int listBottom = getHeight() - getPaddingBottom(); in onMeasure() local
2140 final int lastBottom = lastChild != null ? lastChild.getBottom() : listBottom; in onMeasure()
2142 lastBottom <= listBottom; in onMeasure()
5547 final int listBottom = getHeight() - getPaddingBottom(); in handleDataChanged() local
5549 final int lastBottom = lastChild != null ? lastChild.getBottom() : listBottom; in handleDataChanged()
5551 lastBottom <= listBottom) { in handleDataChanged()