Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DAbsListView.java7460 final int extraScroll = lastPos < mItemCount - 1 ? in run() local
7463 final int scrollBy = lastViewHeight - lastViewPixelsShowing + extraScroll; in run()
7492 final int extraScroll = Math.max(mListPadding.bottom, mExtraScroll); in run()
7494 smoothScrollBy(Math.max(0, nextViewHeight + nextViewTop - extraScroll), in run()
7501 if (nextViewTop > extraScroll) { in run()
7502 smoothScrollBy(nextViewTop - extraScroll, mScrollDuration, true); in run()
7520 final int extraScroll = firstPos > 0 ? in run()
7523 smoothScrollBy(firstViewTop - extraScroll, mScrollDuration, true); in run()
7550 final int extraScroll = Math.max(mListPadding.top, mExtraScroll); in run() local
7553 smoothScrollBy(-(lastViewPixelsShowing - extraScroll), mScrollDuration, true); in run()
[all …]