Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DListView.java2735 int indexToMakeVisible = numChildren - 1; in amountToScroll() local
2737 indexToMakeVisible = nextSelectedPosition - mFirstPosition; in amountToScroll()
2739 while (numChildren <= indexToMakeVisible) { in amountToScroll()
2744 final int positionToMakeVisible = mFirstPosition + indexToMakeVisible; in amountToScroll()
2745 final View viewToMakeVisible = getChildAt(indexToMakeVisible); in amountToScroll()
2773 int indexToMakeVisible = 0; in amountToScroll() local
2775 indexToMakeVisible = nextSelectedPosition - mFirstPosition; in amountToScroll()
2777 while (indexToMakeVisible < 0) { in amountToScroll()
2781 indexToMakeVisible = nextSelectedPosition - mFirstPosition; in amountToScroll()
2783 final int positionToMakeVisible = mFirstPosition + indexToMakeVisible; in amountToScroll()
[all …]