Searched refs:extraScroll (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/core/java/android/widget/ |
D | AbsListView.java | 8067 final int extraScroll = lastPos < mItemCount - 1 ? in run() local 8070 final int scrollBy = lastViewHeight - lastViewPixelsShowing + extraScroll; in run() 8100 final int extraScroll = Math.max(mListPadding.bottom, mExtraScroll); in run() 8102 smoothScrollBy(Math.max(0, nextViewHeight + nextViewTop - extraScroll), in run() 8109 if (nextViewTop > extraScroll) { in run() 8110 smoothScrollBy(nextViewTop - extraScroll, mScrollDuration, true, false); in run() 8130 final int extraScroll = firstPos > 0 ? in run() 8133 smoothScrollBy(firstViewTop - extraScroll, mScrollDuration, true, in run() 8161 final int extraScroll = Math.max(mListPadding.top, mExtraScroll); in run() local 8164 smoothScrollBy(-(lastViewPixelsShowing - extraScroll), mScrollDuration, true, in run() [all …]
|