HomeSort by relevance Sort by last modified time
    Searched refs:CellLayout (Results 1 - 25 of 32) sorted by null

1 2

  /packages/apps/Launcher2/src/com/android/launcher2/
SpringLoadedDragController.java 28 private CellLayout mScreen;
42 public void setAlarm(CellLayout cl) {
ShortcutAndWidgetContainer.java 64 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams();
84 final CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams();
104 public void setupLp(CellLayout.LayoutParams lp) {
117 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams();
140 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams();
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...]
Hotseat.java 36 private CellLayout mContent;
73 CellLayout getLayout() {
101 mContent = (CellLayout) findViewById(R.id.layout);
143 CellLayout.LayoutParams lp = new CellLayout.LayoutParams(x,y,1,1);
FocusHelper.java 534 final CellLayout layout = (CellLayout) workspace.getChildAt(pageIndex);
555 * Private helper method to get the CellLayoutChildren given a CellLayout index.
564 * Private helper method to sort all the CellLayout children in order of their (x,y) spatially
567 private static ArrayList<View> getCellLayoutChildrenSortedSpatially(CellLayout layout,
569 // First we order each the CellLayout children by their x,y coordinates
579 CellLayout.LayoutParams llp = (CellLayout.LayoutParams) lhs.getLayoutParams();
580 CellLayout.LayoutParams rlp = (CellLayout.LayoutParams) rhs.getLayoutParams()
    [all...]
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...]
InstallWidgetReceiver.java 80 private CellLayout mTargetLayout;
85 List<WidgetMimeTypeHandlerData> list, CellLayout target,
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...]
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);
BubbleTextView.java 256 CellLayout layout = (CellLayout) parent.getParent();
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 681 CellLayout cellLayout =
682 (CellLayout) mWorkspace.getChildAt(mPendingAddInfo.screen);
712 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
SpringLoadedDragController.java 28 private CellLayout mScreen;
42 public void setAlarm(CellLayout cl) {
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...]
ShortcutAndWidgetContainer.java 68 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams();
88 final CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams();
112 public void setupLp(CellLayout.LayoutParams lp) {
145 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams();
185 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams();
AppsCustomizeCellLayout.java 22 public class AppsCustomizeCellLayout extends CellLayout implements Page {
FocusHelper.java 122 if (page instanceof CellLayout) {
124 page = ((CellLayout) page).getShortcutsAndWidgets();
286 countX = ((CellLayout) parentLayout).getCountX();
287 countY = ((CellLayout) parentLayout).getCountY();
533 final CellLayout layout = (CellLayout) workspace.getChildAt(pageIndex);
554 * Private helper method to get the CellLayoutChildren given a CellLayout index.
563 * Private helper method to sort all the CellLayout children in order of their (x,y) spatially
566 private static ArrayList<View> getCellLayoutChildrenSortedSpatially(CellLayout layout,
568 // First we order each the CellLayout children by their x,y coordinate
    [all...]
Hotseat.java 38 private CellLayout mContent;
70 CellLayout getLayout() {
131 mContent = (CellLayout) findViewById(R.id.layout);
173 CellLayout.LayoutParams lp = new CellLayout.LayoutParams(x,y,1,1);
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...]
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);
DynamicGrid.java 201 CellLayout.LANDSCAPE : CellLayout.PORTRAIT);
237 CellLayout.LANDSCAPE : CellLayout.PORTRAIT);
303 if (orientation == CellLayout.LANDSCAPE &&
312 int width = (orientation == CellLayout.LANDSCAPE)
420 ? CellLayout.LANDSCAPE
421 : CellLayout.PORTRAIT);
DragLayer.java 469 CellLayout cellLayout) {
471 widget, cellLayout, this);
506 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams();
    [all...]
InstallWidgetReceiver.java 149 CellLayout.rectToCell(widgetInfo.minWidth, widgetInfo.minHeight, widgetSpan);
BubbleTextView.java 275 CellLayout layout = (CellLayout) parent.getParent();

Completed in 292 milliseconds

1 2