Searched refs:extraScroll (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/core/java/android/widget/ |
D | AbsListView.java | 7755 final int extraScroll = lastPos < mItemCount - 1 ? in run() local 7758 final int scrollBy = lastViewHeight - lastViewPixelsShowing + extraScroll; in run() 7788 final int extraScroll = Math.max(mListPadding.bottom, mExtraScroll); in run() 7790 smoothScrollBy(Math.max(0, nextViewHeight + nextViewTop - extraScroll), in run() 7797 if (nextViewTop > extraScroll) { in run() 7798 smoothScrollBy(nextViewTop - extraScroll, mScrollDuration, true, false); in run() 7818 final int extraScroll = firstPos > 0 ? in run() 7821 smoothScrollBy(firstViewTop - extraScroll, mScrollDuration, true, in run() 7849 final int extraScroll = Math.max(mListPadding.top, mExtraScroll); in run() local 7852 smoothScrollBy(-(lastViewPixelsShowing - extraScroll), mScrollDuration, true, in run() [all …]
|