Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DListView.java2936 final View viewToMakeVisible = getChildAt(indexToMakeVisible); in amountToScroll() local
2943 if (viewToMakeVisible.getBottom() <= goalBottom) { in amountToScroll()
2949 && (goalBottom - viewToMakeVisible.getTop()) >= getMaxScrollAmount()) { in amountToScroll()
2954 int amountToScroll = (viewToMakeVisible.getBottom() - goalBottom); in amountToScroll()
2975 final View viewToMakeVisible = getChildAt(indexToMakeVisible); in amountToScroll() local
2980 if (viewToMakeVisible.getTop() >= goalTop) { in amountToScroll()
2986 (viewToMakeVisible.getBottom() - goalTop) >= getMaxScrollAmount()) { in amountToScroll()
2991 int amountToScroll = (goalTop - viewToMakeVisible.getTop()); in amountToScroll()