Home
last modified time | relevance | path

Searched refs:selectedPos (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/java/android/widget/
DListView.java2572 View selectedView, int selectedPos, int direction) { in nextSelectedPositionForDirection() argument
2578 nextSelected = selectedPos != INVALID_POSITION && selectedPos >= mFirstPosition ? in nextSelectedPositionForDirection()
2579 selectedPos + 1 : in nextSelectedPositionForDirection()
2588 nextSelected = selectedPos != INVALID_POSITION && selectedPos <= lastPos ? in nextSelectedPositionForDirection()
2589 selectedPos - 1 : in nextSelectedPositionForDirection()
2615 int selectedPos = mSelectedPosition; in arrowScrollImpl() local
2617 … int nextSelectedPosition = nextSelectedPositionForDirection(selectedView, selectedPos, direction); in arrowScrollImpl()
2633 selectedPos = nextSelectedPosition; in arrowScrollImpl()
2676 positionSelectorLikeFocus(selectedPos, selectedView); in arrowScrollImpl()
DAbsListView.java5341 int selectedPos; in resurrectSelection() local
5349 selectedPos = toPosition; in resurrectSelection()
5351 final View selected = getChildAt(selectedPos - mFirstPosition); in resurrectSelection()
5365 selectedPos = firstPosition; in resurrectSelection()
5382 selectedPos = firstPosition + i; in resurrectSelection()
5390 selectedPos = firstPosition + childCount - 1; in resurrectSelection()
5405 selectedPos = firstPosition + i; in resurrectSelection()
5421 selectedPos = lookForSelectablePosition(selectedPos, down); in resurrectSelection()
5422 if (selectedPos >= firstPosition && selectedPos <= getLastVisiblePosition()) { in resurrectSelection()
5425 setSelectionInt(selectedPos); in resurrectSelection()
[all …]
DExpandableListView.java929 final int selectedPos = getSelectedItemPosition(); in getSelectedPosition() local
932 return getExpandableListPosition(selectedPos); in getSelectedPosition()