Searched refs:amountToScroll (Results 1 – 3 of 3) sorted by relevance
2731 int amountToScroll = amountToScroll(direction, nextSelectedPosition); in arrowScrollImpl() local2737 amountToScroll = focusResult.getAmountToScroll(); in arrowScrollImpl()2759 if (amountToScroll > 0) { in arrowScrollImpl()2760 scrollListItemsBy((direction == View.FOCUS_UP) ? amountToScroll : -amountToScroll); in arrowScrollImpl()2941 private int amountToScroll(int direction, int nextSelectedPosition) { in amountToScroll() method in ListView2976 int amountToScroll = (viewToMakeVisible.getBottom() - goalBottom); in amountToScroll() local2981 amountToScroll = Math.min(amountToScroll, max); in amountToScroll()2984 return Math.min(amountToScroll, getMaxScrollAmount()); in amountToScroll()3013 int amountToScroll = (goalTop - viewToMakeVisible.getTop()); in amountToScroll() local3017 amountToScroll = Math.min(amountToScroll, max); in amountToScroll()[all …]
876 int amountToScroll = scroller.getFinalY() - scroller.getCurrY(); in moveToFinalScrollerPosition() local877 int futureScrollOffset = (mCurrentScrollOffset + amountToScroll) % mSelectorElementHeight; in moveToFinalScrollerPosition()887 amountToScroll += overshootAdjustment; in moveToFinalScrollerPosition()888 scrollBy(0, amountToScroll); in moveToFinalScrollerPosition()
88489 Landroid/widget/ListView;->amountToScroll(II)I