Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DListView.java2835 int indexToMakeVisible = numChildren - 1; in amountToScroll() local
2837 indexToMakeVisible = nextSelectedPosition - mFirstPosition; in amountToScroll()
2839 while (numChildren <= indexToMakeVisible) { in amountToScroll()
2844 final int positionToMakeVisible = mFirstPosition + indexToMakeVisible; in amountToScroll()
2845 final View viewToMakeVisible = getChildAt(indexToMakeVisible); in amountToScroll()
2873 int indexToMakeVisible = 0; in amountToScroll() local
2875 indexToMakeVisible = nextSelectedPosition - mFirstPosition; in amountToScroll()
2877 while (indexToMakeVisible < 0) { in amountToScroll()
2881 indexToMakeVisible = nextSelectedPosition - mFirstPosition; in amountToScroll()
2883 final int positionToMakeVisible = mFirstPosition + indexToMakeVisible; in amountToScroll()
[all …]