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 62 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams();
82 final CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams();
102 public void setupLp(CellLayout.LayoutParams lp) {
109 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams();
124 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams();
Workspace.java 114 private CellLayout.CellInfo mDragInfo;
127 * The CellLayout that is currently being dragged over
129 private CellLayout mDragTargetLayout = null;
131 * The CellLayout that we will show as glowing
133 private CellLayout mDragOverlappingLayout = null;
136 * The CellLayout which will be dropped to
138 private CellLayout mDropToLayout = null;
183 // Camera and Matrix used to determine the final position of a neighboring CellLayout
313 while (CellLayout.widthInPortrait(res, cellCountX + 1) <= smallestScreenDim) {
318 while (actionBarHeight + CellLayout.heightInLandscape(res, cellCountY + 1
    [all...]
Hotseat.java 35 private CellLayout mContent;
67 CellLayout getLayout() {
91 mContent = (CellLayout) findViewById(R.id.layout);
133 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 115 final ViewGroup cellLayout = (ViewGroup) cellLayoutChildren.getParent();
116 final Workspace workspace = (Workspace) cellLayout.getParent();
163 private CellLayout mCellLayout;
268 public void setCellLayout(CellLayout layout) {
300 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) getLayoutParams();
301 CellLayout layout = (CellLayout) getParent().getParent();
352 // Set cellLayout and this to it's final state to compute final animation locations
353 workspace.setFinalTransitionTransform((CellLayout) getParent().getParent())
    [all...]
InstallWidgetReceiver.java 80 private CellLayout mTargetLayout;
85 List<WidgetMimeTypeHandlerData> list, CellLayout target,
Folder.java 74 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 412 CellLayout cellLayout) {
414 widget, cellLayout, this);
449 CellLayout parent = (CellLayout) (CellLayout) parentChildren.getParent();
450 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams();
752 CellLayout leftPage = (CellLayout) workspace.getChildAt(page - 1)
    [all...]
AppWidgetResizeFrame.java 20 private CellLayout mCellLayout;
74 LauncherAppWidgetHostView widgetView, CellLayout cellLayout, DragLayer dragLayer) {
78 mCellLayout = cellLayout;
171 * of the CellLayout, and such that the frame's borders can't cross.
251 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) mWidgetView.getLayoutParams();
324 Rect landMetrics = Workspace.getCellLayoutMetrics(launcher, CellLayout.LANDSCAPE);
325 Rect portMetrics = Workspace.getCellLayoutMetrics(launcher, CellLayout.PORTRAIT);
BubbleTextView.java 248 CellLayout layout = (CellLayout) parent.getParent();
Launcher.java 657 CellLayout cellLayout =
658 (CellLayout) mWorkspace.getChildAt(mPendingAddInfo.screen);
688 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
    [all...]
InstallShortcutReceiver.java 250 return CellLayout.findVacantCell(xy, 1, 1, xCount, yCount, occupied);
CellLayout.java 60 public class CellLayout extends ViewGroup {
61 static final String TAG = "CellLayout";
125 private HashMap<CellLayout.LayoutParams, Animator> mReorderAnimators = new
126 HashMap<CellLayout.LayoutParams, Animator>();
166 public CellLayout(Context context) {
170 public CellLayout(Context context, AttributeSet attrs) {
174 public CellLayout(Context context, AttributeSet attrs, int defStyle) {
178 // A ViewGroup usually does not draw, but CellLayout needs to draw a rectangle to show
183 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.CellLayout, defStyle, 0);
260 CellLayout.this.invalidate(mDragOutlines[thisIndex])
    [all...]
AppsCustomizePagedView.java     [all...]

Completed in 231 milliseconds