Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DListView.java2944 int indexToMakeVisible = numChildren - 1; in amountToScroll() local
2946 indexToMakeVisible = nextSelectedPosition - mFirstPosition; in amountToScroll()
2948 while (numChildren <= indexToMakeVisible) { in amountToScroll()
2953 final int positionToMakeVisible = mFirstPosition + indexToMakeVisible; in amountToScroll()
2954 final View viewToMakeVisible = getChildAt(indexToMakeVisible); in amountToScroll()
2982 int indexToMakeVisible = 0; in amountToScroll() local
2984 indexToMakeVisible = nextSelectedPosition - mFirstPosition; in amountToScroll()
2986 while (indexToMakeVisible < 0) { in amountToScroll()
2990 indexToMakeVisible = nextSelectedPosition - mFirstPosition; in amountToScroll()
2992 final int positionToMakeVisible = mFirstPosition + indexToMakeVisible; in amountToScroll()
[all …]