Searched defs:targetPos (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DAbsListView.java7180 * Scroll such that targetPos is in the visible padded region without scrolling
7181 * boundPos out of view. Assumes targetPos is onscreen.
7183 private void scrollToVisible(int targetPos, int boundPos, int duration) { argument
7190 if (targetPos < firstPos || targetPos > lastPos) {
7191 Log.w(TAG, "scrollToVisible called with targetPos " + targetPos +
7199 final View targetChild = getChildAt(targetPos - firstPos);

Completed in 66 milliseconds