HomeSort by relevance Sort by last modified time
    Searched refs:cellLayout (Results 1 - 6 of 6) sorted by null

  /packages/apps/Launcher2/src/com/android/launcher2/
Workspace.java 112 private CellLayout.CellInfo mDragInfo;
125 * The CellLayout that is currently being dragged over
127 private CellLayout mDragTargetLayout = null;
129 * The CellLayout that we will show as glowing
131 private CellLayout mDragOverlappingLayout = null;
134 * The CellLayout which will be dropped to
136 private CellLayout mDropToLayout = null;
316 while (CellLayout.widthInPortrait(res, cellCountX + 1) <= minDims.x) {
321 while (actionBarHeight + CellLayout.heightInLandscape(res, cellCountY + 1)
361 CellLayout cl = (CellLayout) mLauncher.getWorkspace().getChildAt(0)
    [all...]
AppWidgetResizeFrame.java 20 private CellLayout mCellLayout;
77 LauncherAppWidgetHostView widgetView, CellLayout cellLayout, DragLayer dragLayer) {
81 mCellLayout = cellLayout;
174 * of the CellLayout, and such that the frame's borders can't cross.
254 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) mWidgetView.getLayoutParams();
351 Rect landMetrics = Workspace.getCellLayoutMetrics(launcher, CellLayout.LANDSCAPE);
352 Rect portMetrics = Workspace.getCellLayoutMetrics(launcher, CellLayout.PORTRAIT);
FolderIcon.java 118 final ViewGroup cellLayout = (ViewGroup) cellLayoutChildren.getParent();
119 final Workspace workspace = (Workspace) cellLayout.getParent();
166 private CellLayout mCellLayout;
271 public void setCellLayout(CellLayout layout) {
310 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) getLayoutParams();
311 CellLayout layout = (CellLayout) getParent().getParent();
375 // Set cellLayout and this to it's final state to compute final animation locations
376 workspace.setFinalTransitionTransform((CellLayout) getParent().getParent())
    [all...]
Folder.java 72 protected CellLayout mContent;
156 mContent = (CellLayout) findViewById(R.id.folder_content);
559 CellLayout.LayoutParams lp =
560 new CellLayout.LayoutParams(item.cellX, item.cellY, item.spanX, item.spanY);
820 CellLayout currentLayout = (CellLayout) mLauncher.getWorkspace().getChildAt(currentPage);
    [all...]
DragLayer.java 415 CellLayout cellLayout) {
417 widget, cellLayout, this);
452 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams();
756 CellLayout leftPage = (CellLayout) workspace.getChildAt(page - 1);
757 CellLayout rightPage = (CellLayout) workspace.getChildAt(page + 1);
Launcher.java 678 CellLayout cellLayout =
679 (CellLayout) mWorkspace.getChildAt(mPendingAddInfo.screen);
709 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
    [all...]

Completed in 143 milliseconds