Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DListView.java2845 final View viewToMakeVisible = getChildAt(indexToMakeVisible); in amountToScroll() local
2852 if (viewToMakeVisible.getBottom() <= goalBottom) { in amountToScroll()
2858 && (goalBottom - viewToMakeVisible.getTop()) >= getMaxScrollAmount()) { in amountToScroll()
2863 int amountToScroll = (viewToMakeVisible.getBottom() - goalBottom); in amountToScroll()
2884 final View viewToMakeVisible = getChildAt(indexToMakeVisible); in amountToScroll() local
2889 if (viewToMakeVisible.getTop() >= goalTop) { in amountToScroll()
2895 (viewToMakeVisible.getBottom() - goalTop) >= getMaxScrollAmount()) { in amountToScroll()
2900 int amountToScroll = (goalTop - viewToMakeVisible.getTop()); in amountToScroll()