Home | History | Annotate | Download | only in launcher2

Lines Matching refs:Workspace

35  * A keyboard listener we set on all the workspace icons.
44 * A keyboard listener we set on all the workspace icons.
501 * Handles key events in the workspace hotseat (bottom of the screen).
506 final Workspace workspace = (Workspace) launcher.findViewById(R.id.workspace);
509 final int pageIndex = workspace.getCurrentPage();
525 workspace.snapToPage(pageIndex - 1);
536 workspace.snapToPage(pageIndex + 1);
543 // Select the first bubble text view in the current page of the workspace
544 final CellLayout layout = (CellLayout) workspace.getChildAt(pageIndex);
550 workspace.requestFocus();
672 * Handles key events in a Workspace containing.
677 final Workspace workspace = (Workspace) layout.getParent();
678 final ViewGroup launcher = (ViewGroup) workspace.getParent();
681 int pageIndex = workspace.indexOfChild(layout);
682 int pageCount = workspace.getChildCount();
696 parent = getCellLayoutChildrenForIndex(workspace, pageIndex - 1);
703 workspace.snapToPage(pageIndex - 1);
718 parent = getCellLayoutChildrenForIndex(workspace, pageIndex + 1);
724 workspace.snapToPage(pageIndex + 1);
760 parent = getCellLayoutChildrenForIndex(workspace, pageIndex - 1);
766 workspace.snapToPage(pageIndex - 1);
782 parent = getCellLayoutChildrenForIndex(workspace, pageIndex + 1);
788 workspace.snapToPage(pageIndex + 1);