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.java59 final int listBottom = mListView.getHeight() - mListView.getListPaddingBottom(); in testScrollToBottom() local
63 final int bottomFadingEdge = listBottom - mListView.getVerticalFadingEdgeLength(); in testScrollToBottom()
69 bottomFadingEdge : listBottom; in testScrollToBottom()
79 lastChild.getBottom() >= listBottom); in testScrollToBottom()
99 final int listBottom = mListView.getHeight() - mListView.getListPaddingBottom(); in testScrollToTop() local
122 lastChild.getBottom() >= listBottom); in testScrollToTop()
DListWithOffScreenNextSelectableTest.java64 final int listBottom = mListView.getHeight() - mListView.getListPaddingBottom(); in testGoDownToOffScreenSelectable() local
69 listBottom - mListView.getVerticalFadingEdgeLength(), lastVisibleView.getBottom()); in testGoDownToOffScreenSelectable()
78 assertEquals(listBottom, mListView.getSelectedView().getBottom()); in testGoDownToOffScreenSelectable()
83 final int listBottom = mListView.getHeight() - mListView.getListPaddingBottom(); in testGoUpToOffScreenSelectable() local
90 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.java661 final int listBottom = mScrollY + getHeight() - mListPadding.bottom; in showingBottomFadingEdge() local
664 || (bottomOfBottomChild < listBottom); in showingBottomFadingEdge()
2689 final int listBottom = getHeight() - mListPadding.bottom; in nextSelectedPositionForDirection() local
2690 if (selectedView != null && selectedView.getBottom() <= listBottom) { in nextSelectedPositionForDirection()
2942 final int listBottom = getHeight() - mListPadding.bottom; in amountToScroll() local
2960 int goalBottom = listBottom; in amountToScroll()
2980 final int max = getChildAt(numChildren - 1).getBottom() - listBottom; in amountToScroll()
3127 final int listBottom = getHeight() - mListPadding.bottom - in arrowScrollFocused()
3130 (selectedView != null && selectedView.getBottom() < listBottom) ? in arrowScrollFocused()
3132 listBottom; in arrowScrollFocused()
[all …]
DAbsListView.java2176 final int listBottom = getHeight() - getPaddingBottom(); in onMeasure() local
2178 final int lastBottom = lastChild != null ? lastChild.getBottom() : listBottom; in onMeasure()
2180 lastBottom <= listBottom; in onMeasure()
5639 final int listBottom = getHeight() - getPaddingBottom(); in handleDataChanged() local
5641 final int lastBottom = lastChild != null ? lastChild.getBottom() : listBottom; in handleDataChanged()
5643 lastBottom <= listBottom) { in handleDataChanged()