Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DListView.java2581 View selectedView, int selectedPos, int direction) { in nextSelectedPositionForDirection() argument
2587 nextSelected = selectedPos != INVALID_POSITION && selectedPos >= mFirstPosition ? in nextSelectedPositionForDirection()
2588 selectedPos + 1 : in nextSelectedPositionForDirection()
2597 nextSelected = selectedPos != INVALID_POSITION && selectedPos <= lastPos ? in nextSelectedPositionForDirection()
2598 selectedPos - 1 : in nextSelectedPositionForDirection()
2624 int selectedPos = mSelectedPosition; in arrowScrollImpl() local
2626 … int nextSelectedPosition = nextSelectedPositionForDirection(selectedView, selectedPos, direction); in arrowScrollImpl()
2642 selectedPos = nextSelectedPosition; in arrowScrollImpl()
2685 positionSelectorLikeFocus(selectedPos, selectedView); in arrowScrollImpl()
DAbsListView.java5336 int selectedPos; in resurrectSelection() local
5344 selectedPos = toPosition; in resurrectSelection()
5346 final View selected = getChildAt(selectedPos - mFirstPosition); in resurrectSelection()
5360 selectedPos = firstPosition; in resurrectSelection()
5377 selectedPos = firstPosition + i; in resurrectSelection()
5385 selectedPos = firstPosition + childCount - 1; in resurrectSelection()
5400 selectedPos = firstPosition + i; in resurrectSelection()
5416 selectedPos = lookForSelectablePosition(selectedPos, down); in resurrectSelection()
5417 if (selectedPos >= firstPosition && selectedPos <= getLastVisiblePosition()) { in resurrectSelection()
5420 setSelectionInt(selectedPos); in resurrectSelection()
[all …]
DExpandableListView.java929 final int selectedPos = getSelectedItemPosition(); in getSelectedPosition() local
932 return getExpandableListPosition(selectedPos); in getSelectedPosition()