Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DListView.java2948 int indexToMakeVisible = numChildren - 1; in amountToScroll() local
2950 indexToMakeVisible = nextSelectedPosition - mFirstPosition; in amountToScroll()
2952 while (numChildren <= indexToMakeVisible) { in amountToScroll()
2957 final int positionToMakeVisible = mFirstPosition + indexToMakeVisible; in amountToScroll()
2958 final View viewToMakeVisible = getChildAt(indexToMakeVisible); in amountToScroll()
2986 int indexToMakeVisible = 0; in amountToScroll() local
2988 indexToMakeVisible = nextSelectedPosition - mFirstPosition; in amountToScroll()
2990 while (indexToMakeVisible < 0) { in amountToScroll()
2994 indexToMakeVisible = nextSelectedPosition - mFirstPosition; in amountToScroll()
2996 final int positionToMakeVisible = mFirstPosition + indexToMakeVisible; in amountToScroll()
[all …]