Home
last modified time | relevance | path

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

/packages/apps/Launcher3/src/com/android/launcher3/
DFocusHelper.java201 Workspace workspace = (Workspace) v.getRootView().findViewById(R.id.workspace); in handleHotseatButtonKeyEvent() local
202 int pageIndex = workspace.getNextPage(); in handleHotseatButtonKeyEvent()
203 int pageCount = workspace.getChildCount(); in handleHotseatButtonKeyEvent()
210 final CellLayout iconLayout = (CellLayout) workspace.getChildAt(pageIndex); in handleHotseatButtonKeyEvent()
258 parent = getCellLayoutChildrenForIndex(workspace, pageIndex + 1); in handleHotseatButtonKeyEvent()
262 workspace.snapToPage(pageIndex + 1); in handleHotseatButtonKeyEvent()
299 final Workspace workspace = (Workspace) iconLayout.getParent(); in handleIconKeyEvent() local
300 final ViewGroup dragLayer = (ViewGroup) workspace.getParent(); in handleIconKeyEvent()
305 final int pageIndex = workspace.indexOfChild(iconLayout); in handleIconKeyEvent()
306 final int pageCount = workspace.getChildCount(); in handleIconKeyEvent()
[all …]
DDeviceProfile.java412 PagedView workspace = (PagedView) launcher.findViewById(R.id.workspace); in layout() local
413 lp = (FrameLayout.LayoutParams) workspace.getLayoutParams(); in layout()
416 workspace.setLayoutParams(lp); in layout()
417 workspace.setPadding(padding.left, padding.top, padding.right, padding.bottom); in layout()
418 workspace.setPageSpacing(getWorkspacePageSpacing(isLayoutRtl)); in layout()
DDragLayer.java889 Workspace workspace = mLauncher.getWorkspace(); in showPageHints() local
890 getDescendantRectRelativeToSelf(workspace.getChildAt(workspace.numCustomPages()), in showPageHints()
913 Workspace workspace = mLauncher.getWorkspace(); in drawPageHints() local
915 int page = workspace.getNextPage(); in drawPageHints()
916 CellLayout leftPage = (CellLayout) workspace.getChildAt(mIsRtl ? page + 1 : page - 1); in drawPageHints()
917 CellLayout rightPage = (CellLayout) workspace.getChildAt(mIsRtl ? page - 1 : page + 1); in drawPageHints()
DFolderIcon.java139 final Workspace workspace = (Workspace) cellLayout.getParent(); in isDropEnabled() local
140 return !workspace.workspaceInModalState(); in isDropEnabled()
436 Workspace workspace = mLauncher.getWorkspace(); in onDrop() local
438 workspace.setFinalTransitionTransform((CellLayout) getParent().getParent()); in onDrop()
447 workspace.resetTransitionTransform((CellLayout) getParent().getParent()); in onDrop()
DLauncher.java1354 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace); in setupViews()
3756 Workspace workspace = mWorkspace; in bindItems() local
3794 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()), in bindItems()
3801 workspace.addInScreenFromBind(view, item.container, item.screenId, item.cellX, in bindItems()
3841 workspace.requestLayout(); in bindItems()
3878 final Workspace workspace = mWorkspace; in bindAppWidget() local
3966 workspace.addInScreen(item.hostView, item.container, item.screenId, item.cellX, in bindAppWidget()
3972 workspace.requestLayout(); in bindAppWidget()
DWorkspaceStateTransitionAnimation.java203 public WorkspaceStateTransitionAnimation(Launcher launcher, Workspace workspace) { in WorkspaceStateTransitionAnimation() argument
205 mWorkspace = workspace; in WorkspaceStateTransitionAnimation()
/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()
DHandleView.java57 final Workspace workspace = mLauncher.getWorkspace(); in focusSearch() local
58 workspace.dispatchUnhandledMove(null, direction); in focusSearch()
60 this : workspace; in focusSearch()
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()
DLauncher.java1023 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace); in setupViews()
2541 private void setWorkspaceBackground(boolean workspace) { in setWorkspaceBackground() argument
2542 mLauncherView.setBackground(workspace ? in setWorkspaceBackground()
3461 final Workspace workspace = mWorkspace; in startBinding() local
3465 int count = workspace.getChildCount(); in startBinding()
3468 final CellLayout layoutParent = (CellLayout) workspace.getChildAt(i); in startBinding()
3495 Workspace workspace = mWorkspace; in bindItems() local
3511 workspace.addInScreen(shortcut, item.container, item.screen, item.cellX, in bindItems()
3532 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()), in bindItems()
3534 workspace.addInScreen(newFolder, item.container, item.screen, item.cellX, in bindItems()
[all …]
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/apps/Launcher3/src/com/android/launcher3/accessibility/
DLauncherAccessibilityDelegate.java167 Workspace workspace = mLauncher.getWorkspace(); in performAction()
168 workspace.snapToPage(workspace.getPageIndexForScreenId(screenId)); in performAction()
355 Workspace workspace = mLauncher.getWorkspace(); in beginAccessibleDrag() local
357 Folder folder = workspace.getOpenFolder(); in beginAccessibleDrag()
366 mDragSource = workspace; in beginAccessibleDrag()
402 Workspace workspace = mLauncher.getWorkspace(); in findSpaceOnWorkspace() local
403 ArrayList<Long> workspaceScreens = workspace.getScreenOrder(); in findSpaceOnWorkspace()
407 int screenIndex = workspace.getCurrentPage(); in findSpaceOnWorkspace()
409 CellLayout layout = (CellLayout) workspace.getPageAt(screenIndex); in findSpaceOnWorkspace()
412 screenIndex = workspace.hasCustomContent() ? 1 : 0; in findSpaceOnWorkspace()
[all …]
DOverviewScreenAccessibilityDelegate.java41 public OverviewScreenAccessibilityDelegate(Workspace workspace) { in OverviewScreenAccessibilityDelegate() argument
42 mWorkspace = workspace; in OverviewScreenAccessibilityDelegate()
/packages/apps/Launcher3/src/com/android/launcher3/widget/
DWidgetsContainerView.java318 Workspace workspace = (Workspace) target; in onDropCompleted() local
319 CellLayout layout = (CellLayout) workspace.getChildAt(currentScreen); in onDropCompleted()
/packages/apps/Launcher3/src/com/android/launcher3/allapps/
DAllAppsContainerView.java524 Workspace workspace = (Workspace) target; in onDropCompleted() local
525 CellLayout layout = (CellLayout) workspace.getChildAt(currentScreen); in onDropCompleted()
/packages/inputmethods/LatinIME/dictionaries/
Den_US_wordlist.combined.gz
Den_GB_wordlist.combined.gz
Den_wordlist.combined.gz1dictionary=main:en,locale=en,description=English,date=1414726273, ...