Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DListView.java2926 int indexToMakeVisible = numChildren - 1; in amountToScroll() local
2928 indexToMakeVisible = nextSelectedPosition - mFirstPosition; in amountToScroll()
2930 while (numChildren <= indexToMakeVisible) { in amountToScroll()
2935 final int positionToMakeVisible = mFirstPosition + indexToMakeVisible; in amountToScroll()
2936 final View viewToMakeVisible = getChildAt(indexToMakeVisible); in amountToScroll()
2964 int indexToMakeVisible = 0; in amountToScroll() local
2966 indexToMakeVisible = nextSelectedPosition - mFirstPosition; in amountToScroll()
2968 while (indexToMakeVisible < 0) { in amountToScroll()
2972 indexToMakeVisible = nextSelectedPosition - mFirstPosition; in amountToScroll()
2974 final int positionToMakeVisible = mFirstPosition + indexToMakeVisible; in amountToScroll()
[all …]