Lines Matching defs:selectedView

692         View selectedView = null;
706 selectedView = child;
712 return selectedView;
726 View selectedView = null;
739 selectedView = child;
746 return selectedView;
2426 final View selectedView = getSelectedView();
2427 if (selectedView != null && selectedView.hasFocus() &&
2428 selectedView instanceof ViewGroup) {
2430 final View currentFocus = selectedView.findFocus();
2432 (ViewGroup) selectedView, currentFocus, direction);
2486 * @param selectedView Current selected view to move from
2492 View selectedView, int selectedPos, int direction) {
2497 if (selectedView != null && selectedView.getBottom() <= listBottom) {
2506 if (selectedView != null && selectedView.getTop() >= listTop) {
2534 View selectedView = getSelectedView();
2537 int nextSelectedPosition = nextSelectedPositionForDirection(selectedView, selectedPos, direction);
2549 handleNewSelectionChange(selectedView, direction, nextSelectedPosition, focusResult != null);
2552 selectedView = getSelectedView();
2574 && selectedView != null && selectedView.hasFocus()) {
2575 final View focused = selectedView.findFocus();
2584 if (nextSelectedPosition == INVALID_POSITION && selectedView != null
2585 && !isViewAncestorOf(selectedView, this)) {
2586 selectedView = null;
2595 if (selectedView != null) {
2596 positionSelectorLikeFocus(selectedPos, selectedView);
2597 mSelectedTop = selectedView.getTop();
2614 * @param selectedView The currently selected view (before changing selection).
2622 private void handleNewSelectionChange(View selectedView, int direction, int newSelectedPosition,
2642 bottomView = selectedView;
2647 topView = selectedView;
2916 final View selectedView = getSelectedView();
2918 if (selectedView != null && selectedView.hasFocus()) {
2919 View oldFocus = selectedView.findFocus();
2927 (selectedView != null && selectedView.getTop() > listTop) ?
2928 selectedView.getTop() :
2937 (selectedView != null && selectedView.getBottom() < listBottom) ?
2938 selectedView.getBottom() :