Home
last modified time | relevance | path

Searched refs:viewToMakeVisible (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/core/java/android/widget/
DListView.java2952 final View viewToMakeVisible = getChildAt(indexToMakeVisible); in amountToScroll() local
2959 if (viewToMakeVisible.getBottom() <= goalBottom) { in amountToScroll()
2965 && (goalBottom - viewToMakeVisible.getTop()) >= getMaxScrollAmount()) { in amountToScroll()
2970 int amountToScroll = (viewToMakeVisible.getBottom() - goalBottom); in amountToScroll()
2991 final View viewToMakeVisible = getChildAt(indexToMakeVisible); in amountToScroll() local
2996 if (viewToMakeVisible.getTop() >= goalTop) { in amountToScroll()
3002 (viewToMakeVisible.getBottom() - goalTop) >= getMaxScrollAmount()) { in amountToScroll()
3007 int amountToScroll = (goalTop - viewToMakeVisible.getTop()); in amountToScroll()