Home
last modified time | relevance | path

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

/aosp12/frameworks/base/core/java/android/widget/
H A DAbsListView.java7745 final int extraScroll = lastPos < mItemCount - 1 ? in run() local
7748 final int scrollBy = lastViewHeight - lastViewPixelsShowing + extraScroll; in run()
7778 final int extraScroll = Math.max(mListPadding.bottom, mExtraScroll); in run()
7780 smoothScrollBy(Math.max(0, nextViewHeight + nextViewTop - extraScroll), in run()
7787 if (nextViewTop > extraScroll) { in run()
7788 smoothScrollBy(nextViewTop - extraScroll, mScrollDuration, true, false); in run()
7808 final int extraScroll = firstPos > 0 ? in run()
7811 smoothScrollBy(firstViewTop - extraScroll, mScrollDuration, true, in run()
7839 final int extraScroll = Math.max(mListPadding.top, mExtraScroll); in run() local
7842 smoothScrollBy(-(lastViewPixelsShowing - extraScroll), mScrollDuration, true, in run()
[all …]