Home
last modified time | relevance | path

Searched refs:cellLayout (Results 1 – 12 of 12) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/testing/
DTestInformationHandler.java186 final CellLayout cellLayout = workspace.getScreenWithId(screenId); in call()
187 return new int[]{cellLayout.getCountX(), cellLayout.getCountY()}; in call()
196 CellLayout cellLayout = (CellLayout) workspace.getPageAt( in call()
199 cellLayout, request.cellX, request.cellY, request.spanX, request.spanY); in call()
253 CellLayout cellLayout, int cellX, int cellY, int spanX, int spanY) {
257 cellLayout.cellToRect(cellX, cellY, spanX, spanY, target);
260 dragLayer.getDescendantCoordRelativeToSelf(cellLayout, leftTop);
261 dragLayer.getDescendantCoordRelativeToSelf(cellLayout, rightBottom);
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/util/
DUnfoldMoveFromCenterWorkspaceAnimator.java47 final CellLayout cellLayout = (CellLayout) page; in onPrepareViewsForAnimation()
48 ShortcutAndWidgetContainer itemsContainer = cellLayout in onPrepareViewsForAnimation()
50 setClipChildren(cellLayout, false); in onPrepareViewsForAnimation()
51 setClipToPadding(cellLayout, false); in onPrepareViewsForAnimation()
/packages/apps/Launcher3/src/com/android/launcher3/
DAppWidgetResizeFrame.java184 public static void showForWidget(LauncherAppWidgetHostView widget, CellLayout cellLayout) { in showForWidget() argument
185 Launcher launcher = Launcher.getLauncher(cellLayout.getContext()); in showForWidget()
200 frame.setupForWidget(widget, cellLayout, dl); in showForWidget()
208 private void setupForWidget(LauncherAppWidgetHostView widgetView, CellLayout cellLayout, in setupForWidget() argument
210 mCellLayout = cellLayout; in setupForWidget()
225 InvariantDeviceProfile idp = LauncherAppState.getIDP(cellLayout.getContext()); in setupForWidget()
682 private void updateInvalidResizeEffect(CellLayout cellLayout, CellLayout pairedCellLayout,
684 updateInvalidResizeEffect(cellLayout, pairedCellLayout, alpha,
688 private void updateInvalidResizeEffect(CellLayout cellLayout, CellLayout pairedCellLayout,
703 ObjectAnimator.ofFloat(cellLayout, SPRING_LOADED_PROGRESS,
[all …]
DWorkspace.java979 public CellLayout getScreenPair(CellLayout cellLayout) { in getScreenPair() argument
983 int screenId = getIdForScreen(cellLayout); in getScreenPair()
2090 final CellLayout cellLayout = getParentCellLayoutForView(cell); in onDrop() local
2091 boolean pageIsVisible = isVisible(cellLayout); in onDrop()
2095 (LauncherAppWidgetHostView) cell, cellLayout); in onDrop()
2151 LauncherAppWidgetHostView hostView, CellLayout cellLayout) { in getWidgetResizeFrameRunnable() argument
2157 AppWidgetResizeFrame.showForWidget(hostView, cellLayout); in getWidgetResizeFrameRunnable()
2690 private void onDropExternal(final int[] touchXY, final CellLayout cellLayout, DragObject d) {
2707 final int container = mLauncher.isHotseatLayout(cellLayout)
2710 final int screenId = getIdForScreen(cellLayout);
[all …]
DWorkspaceStateTransitionAnimation.java252 private void applyPageTranslation(CellLayout cellLayout, int childIndex, in applyPageTranslation() argument
258 propertySetter.setFloat(cellLayout, VIEW_TRANSLATE_X, pageTranslation, in applyPageTranslation()
DLauncher.java1022 CellLayout cellLayout = mWorkspace.getScreenWithId(
1045 mWorkspace.animateWidgetDrop(requestArgs, cellLayout,
1527 CellLayout cellLayout = getCellLayout(launcherInfo.container, presenterPos.screenId);
1529 AppWidgetResizeFrame.showForWidget(launcherHostView, cellLayout);
1535 AppWidgetResizeFrame.showForWidget(launcherHostView, cellLayout);
/packages/apps/Launcher3/tests/src/com/android/launcher3/celllayout/
DCellLayoutTestUtils.java31 for (CellLayout cellLayout : launcher.getWorkspace().mWorkspaceScreens) { in workspaceToBoards()
33 int count = cellLayout.getShortcutsAndWidgets().getChildCount(); in workspaceToBoards()
35 View callView = cellLayout.getShortcutsAndWidgets().getChildAt(i); in workspaceToBoards()
/packages/apps/Launcher3/src/com/android/launcher3/folder/
DFolderAnimationManager.java269 CellLayout cellLayout = mContent.getCurrentCellLayout(); in getAnimator() local
274 boolean cellLayoutClipChildren = cellLayout.getClipChildren(); in getAnimator()
275 boolean cellLayoutClipPadding = cellLayout.getClipToPadding(); in getAnimator()
281 cellLayout.setClipChildren(false); in getAnimator()
282 cellLayout.setClipToPadding(false); in getAnimator()
302 cellLayout.setClipChildren(cellLayoutClipChildren); in getAnimator()
303 cellLayout.setClipToPadding(cellLayoutClipPadding); in getAnimator()
DLauncherDelegate.java95 CellLayout cellLayout = mLauncher.getCellLayout(info.container, in replaceFolderWithFinalItem()
98 newIcon = mLauncher.createShortcut(cellLayout, finalItem); in replaceFolderWithFinalItem()
/packages/apps/Launcher3/src/com/android/launcher3/celllayout/
DMulticellReorderAlgorithm.java34 public MulticellReorderAlgorithm(CellLayout cellLayout) { in MulticellReorderAlgorithm() argument
35 super(cellLayout); in MulticellReorderAlgorithm()
36 mSeam = new View(cellLayout.getContext()); in MulticellReorderAlgorithm()
DReorderAlgorithm.java32 public ReorderAlgorithm(CellLayout cellLayout) { in ReorderAlgorithm() argument
33 mCellLayout = cellLayout; in ReorderAlgorithm()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/hybridhotseat/
DHotseatEduController.java158 CellLayout cellLayout = mLauncher.getWorkspace().getScreenWithId(Workspace.FIRST_SCREEN_ID); in showEdu() local
165 boolean canMigrateToFirstPage = cellLayout.makeSpaceForHotseatMigration(false); in showEdu()