Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DFastScroller.java949 int targetSection = exactSection; in scrollTo() local
950 int targetIndex = mSectionIndexer.getPositionForSection(targetSection); in scrollTo()
951 sectionIndex = targetSection; in scrollTo()
961 int prevSection = targetSection; in scrollTo()
962 int nextSection = targetSection + 1; in scrollTo()
965 if (targetSection < sectionCount - 1) { in scrollTo()
966 nextIndex = mSectionIndexer.getPositionForSection(targetSection + 1); in scrollTo()
972 while (targetSection > 0) { in scrollTo()
973 targetSection--; in scrollTo()
974 prevIndex = mSectionIndexer.getPositionForSection(targetSection); in scrollTo()
[all …]