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

  /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 111 private CellLayout.CellInfo mDragInfo;
124 * The CellLayout that is currently being dragged over
126 private CellLayout mDragTargetLayout = null;
128 * The CellLayout that we will show as glowing
130 private CellLayout mDragOverlappingLayout = null;
133 * The CellLayout which will be dropped to
135 private CellLayout mDropToLayout = null;
315 while (CellLayout.widthInPortrait(res, cellCountX + 1) <= minDims.x) {
320 while (actionBarHeight + CellLayout.heightInLandscape(res, cellCountY + 1)
360 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;
156 mContent = (CellLayout) findViewById(R.id.folder_content);
547 CellLayout.LayoutParams lp =
548 new CellLayout.LayoutParams(item.cellX, item.cellY, item.spanX, item.spanY);
816 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...]
CellLayout.java 61 public class CellLayout extends ViewGroup {
62 static final String TAG = "CellLayout";
126 private HashMap<CellLayout.LayoutParams, Animator> mReorderAnimators = new
127 HashMap<CellLayout.LayoutParams, Animator>();
169 public CellLayout(Context context) {
173 public CellLayout(Context context, AttributeSet attrs) {
177 public CellLayout(Context context, AttributeSet attrs, int defStyle) {
181 // A ViewGroup usually does not draw, but CellLayout needs to draw a rectangle to show
187 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.CellLayout, defStyle, 0);
265 CellLayout.this.invalidate(mDragOutlines[thisIndex])
    [all...]
InstallShortcutReceiver.java 361 return CellLayout.findVacantCell(xy, 1, 1, xCount, yCount, occupied);
AppsCustomizePagedView.java     [all...]

Completed in 452 milliseconds