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

  /packages/apps/Launcher2/src/com/android/launcher2/
Workspace.java 110 private CellLayout.CellInfo mDragInfo;
123 * The CellLayout that is currently being dragged over
125 private CellLayout mDragTargetLayout = null;
127 * The CellLayout that we will show as glowing
129 private CellLayout mDragOverlappingLayout = null;
132 * The CellLayout which will be dropped to
134 private CellLayout mDropToLayout = null;
314 while (CellLayout.widthInPortrait(res, cellCountX + 1) <= minDims.x) {
319 while (actionBarHeight + CellLayout.heightInLandscape(res, cellCountY + 1)
359 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;
155 mContent = (CellLayout) findViewById(R.id.folder_content);
543 CellLayout.LayoutParams lp =
544 new CellLayout.LayoutParams(item.cellX, item.cellY, item.spanX, item.spanY);
811 CellLayout currentLayout = (CellLayout) mLauncher.getWorkspace().getChildAt(currentPage);
    [all...]
DragLayer.java 441 CellLayout cellLayout) {
443 widget, cellLayout, this);
478 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams();
790 CellLayout leftPage = (CellLayout) workspace.getChildAt(isRtl ? page + 1 : page - 1);
791 CellLayout rightPage = (CellLayout) workspace.getChildAt(isRtl ? page - 1 : page + 1);
Launcher.java 695 CellLayout cellLayout =
696 (CellLayout) mWorkspace.getChildAt(mPendingAddInfo.screen);
727 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
Workspace.java 128 private HashMap<Long, CellLayout> mWorkspaceScreens = new HashMap<Long, CellLayout>();
134 private CellLayout.CellInfo mDragInfo;
152 * The CellLayout that is currently being dragged over
154 private CellLayout mDragTargetLayout = null;
156 * The CellLayout that we will show as glowing
158 private CellLayout mDragOverlappingLayout = null;
161 * The CellLayout which will be dropped to
163 private CellLayout mDropToLayout = null;
344 CellLayout cl = (CellLayout) getChildAt(numCustomPages())
    [all...]
AppWidgetResizeFrame.java 20 private CellLayout mCellLayout;
77 LauncherAppWidgetHostView widgetView, CellLayout cellLayout, DragLayer dragLayer) {
81 mCellLayout = cellLayout;
173 * of the CellLayout, and such that the frame's borders can't cross.
253 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) mWidgetView.getLayoutParams();
350 Rect landMetrics = Workspace.getCellLayoutMetrics(launcher, CellLayout.LANDSCAPE);
351 Rect portMetrics = Workspace.getCellLayoutMetrics(launcher, CellLayout.PORTRAIT);
FolderIcon.java 123 final ViewGroup cellLayout = (ViewGroup) cellLayoutChildren.getParent();
124 final Workspace workspace = (Workspace) cellLayout.getParent();
179 private CellLayout mCellLayout;
287 public void setCellLayout(CellLayout layout) {
326 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) getLayoutParams();
327 CellLayout layout = (CellLayout) getParent().getParent();
391 // Set cellLayout and this to it's final state to compute final animation locations
392 workspace.setFinalTransitionTransform((CellLayout) getParent().getParent())
    [all...]
Folder.java 78 protected CellLayout mContent;
172 mContent = (CellLayout) findViewById(R.id.folder_content);
556 CellLayout.LayoutParams lp =
557 new CellLayout.LayoutParams(item.cellX, item.cellY, item.spanX, item.spanY);
    [all...]
DragLayer.java 469 CellLayout cellLayout) {
471 widget, cellLayout, this);
506 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams();
    [all...]
Launcher.java 775 CellLayout cellLayout =
776 (CellLayout) mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
806 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
    [all...]

Completed in 2757 milliseconds