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

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

Completed in 89 milliseconds