Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DListView.java2745 final View viewToMakeVisible = getChildAt(indexToMakeVisible); in amountToScroll() local
2752 if (viewToMakeVisible.getBottom() <= goalBottom) { in amountToScroll()
2758 && (goalBottom - viewToMakeVisible.getTop()) >= getMaxScrollAmount()) { in amountToScroll()
2763 int amountToScroll = (viewToMakeVisible.getBottom() - goalBottom); in amountToScroll()
2784 final View viewToMakeVisible = getChildAt(indexToMakeVisible); in amountToScroll() local
2789 if (viewToMakeVisible.getTop() >= goalTop) { in amountToScroll()
2795 (viewToMakeVisible.getBottom() - goalTop) >= getMaxScrollAmount()) { in amountToScroll()
2800 int amountToScroll = (goalTop - viewToMakeVisible.getTop()); in amountToScroll()