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

/frameworks/base/core/java/android/widget/
H A DHorizontalScrollView.java195 public int getMaxScrollAmount() { method in class:HorizontalScrollView
1063 final int maxJump = getMaxScrollAmount();
H A DScrollView.java216 public int getMaxScrollAmount() { method in class:ScrollView
1048 final int maxJump = getMaxScrollAmount();
H A DListView.java193 public int getMaxScrollAmount() { method in class:ListView
2684 * capped at {@link #getMaxScrollAmount()} .
2723 && (goalBottom - viewToMakeVisible.getTop()) >= getMaxScrollAmount()) {
2736 return Math.min(amountToScroll, getMaxScrollAmount());
2760 (viewToMakeVisible.getBottom() - goalTop) >= getMaxScrollAmount()) {
2771 return Math.min(amountToScroll, getMaxScrollAmount());
2906 final int maxScrollAmount = getMaxScrollAmount();

Completed in 91 milliseconds