Searched refs:extraScroll (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/core/java/android/widget/ |
D | AbsListView.java | 7683 final int extraScroll = lastPos < mItemCount - 1 ? in run() local 7686 final int scrollBy = lastViewHeight - lastViewPixelsShowing + extraScroll; in run() 7716 final int extraScroll = Math.max(mListPadding.bottom, mExtraScroll); in run() 7718 smoothScrollBy(Math.max(0, nextViewHeight + nextViewTop - extraScroll), in run() 7725 if (nextViewTop > extraScroll) { in run() 7726 smoothScrollBy(nextViewTop - extraScroll, mScrollDuration, true, false); in run() 7746 final int extraScroll = firstPos > 0 ? in run() 7749 smoothScrollBy(firstViewTop - extraScroll, mScrollDuration, true, in run() 7777 final int extraScroll = Math.max(mListPadding.top, mExtraScroll); in run() local 7780 smoothScrollBy(-(lastViewPixelsShowing - extraScroll), mScrollDuration, true, in run() [all …]
|