Searched refs:amountToScroll (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DListView.java2618 int amountToScroll = amountToScroll(direction, nextSelectedPosition);
2624 amountToScroll = focusResult.getAmountToScroll();
2646 if (amountToScroll > 0) {
2647 scrollListItemsBy((direction == View.FOCUS_UP) ? amountToScroll : -amountToScroll);
2828 private int amountToScroll(int direction, int nextSelectedPosition) { method in class:ListView
2863 int amountToScroll = (viewToMakeVisible.getBottom() - goalBottom);
2868 amountToScroll = Math.min(amountToScroll, ma
2920 populate(int selectedPosition, int amountToScroll) argument
[all...]
H A DNumberPicker.java830 int amountToScroll = scroller.getFinalY() - scroller.getCurrY();
831 int futureScrollOffset = (mCurrentScrollOffset + amountToScroll) % mSelectorElementHeight;
841 amountToScroll += overshootAdjustment;
842 scrollBy(0, amountToScroll);

Completed in 56 milliseconds