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

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

Completed in 725 milliseconds