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

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

Completed in 23 milliseconds