Searched defs:getMaxScrollAmount (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DHorizontalScrollView.java192 public int getMaxScrollAmount() { method in class:HorizontalScrollView
984 final int maxJump = getMaxScrollAmount();
H A DScrollView.java202 public int getMaxScrollAmount() { method in class:ScrollView
985 final int maxJump = getMaxScrollAmount();
H A DListView.java188 public int getMaxScrollAmount() { method in class:ListView
2566 * capped at {@link #getMaxScrollAmount()} .
2601 && (goalBottom - viewToMakeVisible.getTop()) >= getMaxScrollAmount()) {
2614 return Math.min(amountToScroll, getMaxScrollAmount());
2632 (viewToMakeVisible.getBottom() - goalTop) >= getMaxScrollAmount()) {
2643 return Math.min(amountToScroll, getMaxScrollAmount());
2778 final int maxScrollAmount = getMaxScrollAmount();

Completed in 56 milliseconds