Lines Matching refs:selectedView

694         View selectedView = null;
708 selectedView = child;
714 return selectedView;
728 View selectedView = null;
741 selectedView = child;
748 return selectedView;
2506 final View selectedView = getSelectedView();
2507 if (selectedView != null && selectedView.hasFocus() &&
2508 selectedView instanceof ViewGroup) {
2510 final View currentFocus = selectedView.findFocus();
2512 (ViewGroup) selectedView, currentFocus, direction);
2566 * @param selectedView Current selected view to move from
2572 View selectedView, int selectedPos, int direction) {
2577 if (selectedView != null && selectedView.getBottom() <= listBottom) {
2586 if (selectedView != null && selectedView.getTop() >= listTop) {
2614 View selectedView = getSelectedView();
2617 int nextSelectedPosition = nextSelectedPositionForDirection(selectedView, selectedPos, direction);
2629 handleNewSelectionChange(selectedView, direction, nextSelectedPosition, focusResult != null);
2632 selectedView = getSelectedView();
2654 && selectedView != null && selectedView.hasFocus()) {
2655 final View focused = selectedView.findFocus();
2664 if (nextSelectedPosition == INVALID_POSITION && selectedView != null
2665 && !isViewAncestorOf(selectedView, this)) {
2666 selectedView = null;
2675 if (selectedView != null) {
2676 positionSelectorLikeFocus(selectedPos, selectedView);
2677 mSelectedTop = selectedView.getTop();
2694 * @param selectedView The currently selected view (before changing selection).
2702 private void handleNewSelectionChange(View selectedView, int direction, int newSelectedPosition,
2722 bottomView = selectedView;
2727 topView = selectedView;
2996 final View selectedView = getSelectedView();
2998 if (selectedView != null && selectedView.hasFocus()) {
2999 View oldFocus = selectedView.findFocus();
3007 (selectedView != null && selectedView.getTop() > listTop) ?
3008 selectedView.getTop() :
3017 (selectedView != null && selectedView.getBottom() < listBottom) ?
3018 selectedView.getBottom() :