Searched refs:extraScroll (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/core/java/android/widget/ |
D | AbsListView.java | 7262 final int extraScroll = lastPos < mItemCount - 1 ? in run() local 7265 final int scrollBy = lastViewHeight - lastViewPixelsShowing + extraScroll; in run() 7294 final int extraScroll = Math.max(mListPadding.bottom, mExtraScroll); in run() 7296 smoothScrollBy(Math.max(0, nextViewHeight + nextViewTop - extraScroll), in run() 7303 if (nextViewTop > extraScroll) { in run() 7304 smoothScrollBy(nextViewTop - extraScroll, mScrollDuration, true); in run() 7322 final int extraScroll = firstPos > 0 ? in run() 7325 smoothScrollBy(firstViewTop - extraScroll, mScrollDuration, true); in run() 7352 final int extraScroll = Math.max(mListPadding.top, mExtraScroll); in run() local 7355 smoothScrollBy(-(lastViewPixelsShowing - extraScroll), mScrollDuration, true); in run() [all …]
|