Home
last modified time | relevance | path

Searched refs:workspace (Results 1 – 17 of 17) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/
DFocusHelper.java282 final Workspace workspace = (Workspace) in handleHotseatButtonKeyEvent() local
283 v.getRootView().findViewById(R.id.workspace); in handleHotseatButtonKeyEvent()
284 if (workspace != null) { in handleHotseatButtonKeyEvent()
285 int pageIndex = workspace.getCurrentPage(); in handleHotseatButtonKeyEvent()
286 CellLayout topLayout = (CellLayout) workspace.getChildAt(pageIndex); in handleHotseatButtonKeyEvent()
294 workspace.requestFocus(); in handleHotseatButtonKeyEvent()
422 final Workspace workspace = (Workspace) layout.getParent(); in handleIconKeyEvent() local
423 final ViewGroup launcher = (ViewGroup) workspace.getParent(); in handleIconKeyEvent()
426 int pageIndex = workspace.indexOfChild(layout); in handleIconKeyEvent()
427 int pageCount = workspace.getChildCount(); in handleIconKeyEvent()
[all …]
DDragLayer.java913 Workspace workspace = mLauncher.getWorkspace(); in drawPageHints() local
916 getDescendantRectRelativeToSelf(workspace.getChildAt(workspace.getChildCount() - 1), in drawPageHints()
919 int page = workspace.getNextPage(); in drawPageHints()
921 CellLayout leftPage = (CellLayout) workspace.getChildAt(isRtl ? page + 1 : page - 1); in drawPageHints()
922 CellLayout rightPage = (CellLayout) workspace.getChildAt(isRtl ? page - 1 : page + 1); in drawPageHints()
DDeviceProfile.java726 PagedView workspace = (PagedView) launcher.findViewById(R.id.workspace); in layout() local
727 lp = (FrameLayout.LayoutParams) workspace.getLayoutParams(); in layout()
731 workspace.setLayoutParams(lp); in layout()
732 workspace.setPadding(padding.left, padding.top, padding.right, padding.bottom); in layout()
733 workspace.setPageSpacing(getWorkspacePageSpacing(orientation)); in layout()
DFolderIcon.java135 final Workspace workspace = (Workspace) cellLayout.getParent(); in isDropEnabled() local
136 return !workspace.workspaceInModalState(); in isDropEnabled()
433 Workspace workspace = mLauncher.getWorkspace(); in onDrop() local
435 workspace.setFinalTransitionTransform((CellLayout) getParent().getParent()); in onDrop()
444 workspace.resetTransitionTransform((CellLayout) getParent().getParent()); in onDrop()
DLauncher.java1358 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace); in setupViews()
3225 private void setWorkspaceBackground(boolean workspace) { in setWorkspaceBackground() argument
3226 mLauncherView.setBackground(workspace ? in setWorkspaceBackground()
4250 Workspace workspace = mWorkspace; in bindItems() local
4285workspace.addInScreenFromBind(shortcut, item.container, item.screenId, item.cellX, in bindItems()
4298 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()), in bindItems()
4300workspace.addInScreenFromBind(newFolder, item.container, item.screenId, item.cellX, in bindItems()
4336 workspace.requestLayout(); in bindItems()
4374 final Workspace workspace = mWorkspace; in bindAppWidget() local
4450 workspace.addInScreen(item.hostView, item.container, item.screenId, item.cellX, in bindAppWidget()
[all …]
DHotseat.java187 Launcher launcher, Workspace workspace) { in addAllAppsFolder() argument
203 workspace.addInScreen(folder, fi.container, fi.screenId, fi.cellX, fi.cellY, in addAllAppsFolder()
DAppsCustomizePagedView.java787 Workspace workspace = (Workspace) target; in onDropCompleted() local
788 CellLayout layout = (CellLayout) workspace.getChildAt(currentScreen); in onDropCompleted()
/packages/apps/Launcher2/src/com/android/launcher2/
DFocusHelper.java496 final Workspace workspace = (Workspace) launcher.findViewById(R.id.workspace); in handleHotseatButtonKeyEvent() local
499 final int pageIndex = workspace.getCurrentPage(); in handleHotseatButtonKeyEvent()
515 workspace.snapToPage(pageIndex - 1); in handleHotseatButtonKeyEvent()
526 workspace.snapToPage(pageIndex + 1); in handleHotseatButtonKeyEvent()
534 final CellLayout layout = (CellLayout) workspace.getChildAt(pageIndex); in handleHotseatButtonKeyEvent()
540 workspace.requestFocus(); in handleHotseatButtonKeyEvent()
667 final Workspace workspace = (Workspace) layout.getParent(); in handleIconKeyEvent() local
668 final ViewGroup launcher = (ViewGroup) workspace.getParent(); in handleIconKeyEvent()
671 int pageIndex = workspace.indexOfChild(layout); in handleIconKeyEvent()
672 int pageCount = workspace.getChildCount(); in handleIconKeyEvent()
[all …]
DDragLayer.java783 Workspace workspace = mLauncher.getWorkspace(); in dispatchDraw() local
784 int width = workspace.getWidth(); in dispatchDraw()
786 getDescendantRectRelativeToSelf(workspace.getChildAt(0), childRect); in dispatchDraw()
788 int page = workspace.getNextPage(); in dispatchDraw()
790 CellLayout leftPage = (CellLayout) workspace.getChildAt(isRtl ? page + 1 : page - 1); in dispatchDraw()
791 CellLayout rightPage = (CellLayout) workspace.getChildAt(isRtl ? page - 1 : page + 1); in dispatchDraw()
DLauncher.java997 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace); in setupViews()
2515 private void setWorkspaceBackground(boolean workspace) { in setWorkspaceBackground() argument
2516 mLauncherView.setBackground(workspace ? in setWorkspaceBackground()
3435 final Workspace workspace = mWorkspace; in startBinding() local
3439 int count = workspace.getChildCount(); in startBinding()
3442 final CellLayout layoutParent = (CellLayout) workspace.getChildAt(i); in startBinding()
3469 Workspace workspace = mWorkspace; in bindItems() local
3485 workspace.addInScreen(shortcut, item.container, item.screen, item.cellX, in bindItems()
3506 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()), in bindItems()
3508 workspace.addInScreen(newFolder, item.container, item.screen, item.cellX, in bindItems()
[all …]
DFolderIcon.java119 final Workspace workspace = (Workspace) cellLayout.getParent(); in isDropEnabled() local
120 return !workspace.isSmall(); in isDropEnabled()
374 Workspace workspace = mLauncher.getWorkspace(); in onDrop() local
376 workspace.setFinalTransitionTransform((CellLayout) getParent().getParent()); in onDrop()
385 workspace.resetTransitionTransform((CellLayout) getParent().getParent()); in onDrop()
DHandleView.java57 final Workspace workspace = mLauncher.getWorkspace(); in focusSearch() local
58 workspace.dispatchUnhandledMove(null, direction); in focusSearch()
60 this : workspace; in focusSearch()
DAppsCustomizePagedView.java879 Workspace workspace = (Workspace) target; in onDropCompleted() local
880 CellLayout layout = (CellLayout) workspace.getChildAt(currentScreen); in onDropCompleted()
DAppWidgetResizeFrame.java85 mWorkspace = (Workspace) dragLayer.findViewById(R.id.workspace); in AppWidgetResizeFrame()
/packages/inputmethods/LatinIME/dictionaries/
Den_US_wordlist.combined.gz1dictionary=main:en_us,locale=en_US,description=English (US),date ...
Den_GB_wordlist.combined.gz1dictionary=main:en_gb,locale=en_GB,description=English (UK),date ...
Den_wordlist.combined.gz1dictionary=main:en,locale=en,description=English,date=1402373178, ...