Searched refs:boundPos (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DAbsListView.java4362 * boundPos out of view. Assumes targetPos is onscreen.
4364 void scrollToVisible(int targetPos, int boundPos, int duration) { argument
4375 if (boundPos < firstPos || boundPos > lastPos) {
4376 // boundPos doesn't matter, it's already offscreen.
4377 boundPos = INVALID_POSITION;
4396 if (boundPos >= 0) {
4397 final View boundChild = getChildAt(boundPos - firstPos);

Completed in 63 milliseconds