blob: ac9d54d65bd156d15b6cd68623b957ccd59530e0 [file] [log] [blame]
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Joe Onoratoa5902522009-07-30 13:37:37 -070017package com.android.launcher2;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080018
Michael Jurka3c4c20f2010-10-28 15:36:06 -070019import com.android.launcher.R;
Winson Chungaafa03c2010-06-11 17:34:16 -070020
Joe Onorato4be866d2010-10-10 11:26:02 -070021import android.animation.Animator;
22import android.animation.AnimatorListenerAdapter;
Michael Jurka18014792010-10-14 09:01:34 -070023import android.animation.AnimatorSet;
24import android.animation.ObjectAnimator;
Chet Haase00397b12010-10-07 11:13:10 -070025import android.animation.TimeInterpolator;
Patrick Dubroyde7658b2010-09-27 11:15:43 -070026import android.animation.ValueAnimator;
27import android.animation.ValueAnimator.AnimatorUpdateListener;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080028import android.content.Context;
Joe Onorato79e56262009-09-21 15:23:04 -040029import android.content.res.Resources;
Winson Chungaafa03c2010-06-11 17:34:16 -070030import android.content.res.TypedArray;
Joe Onorato4be866d2010-10-10 11:26:02 -070031import android.graphics.Bitmap;
Winson Chungaafa03c2010-06-11 17:34:16 -070032import android.graphics.Canvas;
Joe Onorato4be866d2010-10-10 11:26:02 -070033import android.graphics.Paint;
Patrick Dubroyde7658b2010-09-27 11:15:43 -070034import android.graphics.Point;
35import android.graphics.PointF;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080036import android.graphics.Rect;
37import android.graphics.RectF;
Michael Jurka18014792010-10-14 09:01:34 -070038import android.graphics.Region;
Patrick Dubroy6569f2c2010-07-12 14:25:18 -070039import android.graphics.drawable.Drawable;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080040import android.util.AttributeSet;
Joe Onorato4be866d2010-10-10 11:26:02 -070041import android.util.Log;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080042import android.view.ContextMenu;
43import android.view.MotionEvent;
44import android.view.View;
45import android.view.ViewDebug;
46import android.view.ViewGroup;
Winson Chungaafa03c2010-06-11 17:34:16 -070047import android.view.animation.Animation;
Winson Chung150fbab2010-09-29 17:14:26 -070048import android.view.animation.DecelerateInterpolator;
Winson Chungaafa03c2010-06-11 17:34:16 -070049import android.view.animation.LayoutAnimationController;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080050
Michael Jurka3c4c20f2010-10-28 15:36:06 -070051import java.util.Arrays;
Patrick Dubroy8e58e912010-10-14 13:21:48 -070052
Michael Jurkabdb5c532011-02-01 15:05:06 -080053public class CellLayout extends ViewGroup {
Winson Chungaafa03c2010-06-11 17:34:16 -070054 static final String TAG = "CellLayout";
55
The Android Open Source Project31dd5032009-03-03 19:32:27 -080056 private int mCellWidth;
57 private int mCellHeight;
Winson Chungaafa03c2010-06-11 17:34:16 -070058
Winson Chungaafa03c2010-06-11 17:34:16 -070059 private int mLeftPadding;
60 private int mRightPadding;
61 private int mTopPadding;
62 private int mBottomPadding;
63
Adam Cohend22015c2010-07-26 22:02:18 -070064 private int mCountX;
65 private int mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080066
67 private int mWidthGap;
68 private int mHeightGap;
69
70 private final Rect mRect = new Rect();
71 private final CellInfo mCellInfo = new CellInfo();
Winson Chungaafa03c2010-06-11 17:34:16 -070072
Patrick Dubroyde7658b2010-09-27 11:15:43 -070073 // These are temporary variables to prevent having to allocate a new object just to
74 // return an (x, y) value from helper functions. Do NOT use them to maintain other state.
Patrick Dubroy6569f2c2010-07-12 14:25:18 -070075 private final int[] mTmpCellXY = new int[2];
Patrick Dubroyde7658b2010-09-27 11:15:43 -070076 private final int[] mTmpPoint = new int[2];
77 private final PointF mTmpPointF = new PointF();
Patrick Dubroy6569f2c2010-07-12 14:25:18 -070078
The Android Open Source Project31dd5032009-03-03 19:32:27 -080079 boolean[][] mOccupied;
80
Michael Jurkadee05892010-07-27 10:01:56 -070081 private OnTouchListener mInterceptTouchListener;
82
Michael Jurka5f1c5092010-09-03 14:15:02 -070083 private float mBackgroundAlpha;
Adam Cohen1b0aaac2010-10-28 11:11:18 -070084 private float mBackgroundAlphaMultiplier = 1.0f;
Adam Cohenf34bab52010-09-30 14:11:56 -070085
Michael Jurka33945b22010-12-21 18:19:38 -080086 private Drawable mNormalBackground;
Michael Jurka33945b22010-12-21 18:19:38 -080087 private Drawable mActiveBackground;
88 private Drawable mActiveGlowBackground;
89 private Drawable mNormalBackgroundMini;
90 private Drawable mNormalGlowBackgroundMini;
91 private Drawable mActiveBackgroundMini;
92 private Drawable mActiveGlowBackgroundMini;
Michael Jurka18014792010-10-14 09:01:34 -070093 private Rect mBackgroundRect;
Michael Jurka33945b22010-12-21 18:19:38 -080094 private Rect mGlowBackgroundRect;
95 private float mGlowBackgroundScale;
96 private float mGlowBackgroundAlpha;
Patrick Dubroy1262e362010-10-06 15:49:50 -070097
Adam Cohendf035382011-04-11 17:22:04 -070098 private boolean mAcceptsDrops = true;
Michael Jurka33945b22010-12-21 18:19:38 -080099 // If we're actively dragging something over this screen, mIsDragOverlapping is true
100 private boolean mIsDragOverlapping = false;
101 private boolean mIsDragOccuring = false;
102 private boolean mIsDefaultDropTarget = false;
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700103 private final Point mDragCenter = new Point();
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700104
Winson Chung150fbab2010-09-29 17:14:26 -0700105 // These arrays are used to implement the drag visualization on x-large screens.
Joe Onorato4be866d2010-10-10 11:26:02 -0700106 // They are used as circular arrays, indexed by mDragOutlineCurrent.
107 private Point[] mDragOutlines = new Point[8];
Chet Haase472b2812010-10-14 07:02:04 -0700108 private float[] mDragOutlineAlphas = new float[mDragOutlines.length];
Joe Onorato4be866d2010-10-10 11:26:02 -0700109 private InterruptibleInOutAnimator[] mDragOutlineAnims =
110 new InterruptibleInOutAnimator[mDragOutlines.length];
Winson Chung150fbab2010-09-29 17:14:26 -0700111
112 // Used as an index into the above 3 arrays; indicates which is the most current value.
Joe Onorato4be866d2010-10-10 11:26:02 -0700113 private int mDragOutlineCurrent = 0;
Patrick Dubroy8e58e912010-10-14 13:21:48 -0700114 private final Paint mDragOutlinePaint = new Paint();
Winson Chung150fbab2010-09-29 17:14:26 -0700115
Patrick Dubroy96864c32011-03-10 17:17:23 -0800116 private BubbleTextView mPressedOrFocusedIcon;
117
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700118 private Drawable mCrosshairsDrawable = null;
Patrick Dubroy49250ad2010-10-08 15:33:52 -0700119 private InterruptibleInOutAnimator mCrosshairsAnimator = null;
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700120 private float mCrosshairsVisibility = 0.0f;
121
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700122 // When a drag operation is in progress, holds the nearest cell to the touch point
123 private final int[] mDragCell = new int[2];
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800124
Joe Onorato4be866d2010-10-10 11:26:02 -0700125 private boolean mDragging = false;
126
Patrick Dubroyce34a972010-10-19 10:34:32 -0700127 private TimeInterpolator mEaseOutInterpolator;
Michael Jurka8c920dd2011-01-20 14:16:56 -0800128 private CellLayoutChildren mChildren;
Patrick Dubroyce34a972010-10-19 10:34:32 -0700129
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800130 public CellLayout(Context context) {
131 this(context, null);
132 }
133
134 public CellLayout(Context context, AttributeSet attrs) {
135 this(context, attrs, 0);
136 }
137
138 public CellLayout(Context context, AttributeSet attrs, int defStyle) {
139 super(context, attrs, defStyle);
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700140
141 // A ViewGroup usually does not draw, but CellLayout needs to draw a rectangle to show
142 // the user where a dragged item will land when dropped.
143 setWillNotDraw(false);
Michael Jurkaa63c4522010-08-19 13:52:27 -0700144
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800145 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.CellLayout, defStyle, 0);
146
147 mCellWidth = a.getDimensionPixelSize(R.styleable.CellLayout_cellWidth, 10);
148 mCellHeight = a.getDimensionPixelSize(R.styleable.CellLayout_cellHeight, 10);
Winson Chungece7f5b2010-10-22 14:54:12 -0700149 mWidthGap = a.getDimensionPixelSize(R.styleable.CellLayout_widthGap, -1);
150 mHeightGap = a.getDimensionPixelSize(R.styleable.CellLayout_heightGap, -1);
Winson Chungaafa03c2010-06-11 17:34:16 -0700151
Adam Cohend22015c2010-07-26 22:02:18 -0700152 mLeftPadding =
153 a.getDimensionPixelSize(R.styleable.CellLayout_xAxisStartPadding, 10);
154 mRightPadding =
155 a.getDimensionPixelSize(R.styleable.CellLayout_xAxisEndPadding, 10);
156 mTopPadding =
157 a.getDimensionPixelSize(R.styleable.CellLayout_yAxisStartPadding, 10);
158 mBottomPadding =
159 a.getDimensionPixelSize(R.styleable.CellLayout_yAxisEndPadding, 10);
Winson Chungaafa03c2010-06-11 17:34:16 -0700160
Adam Cohend22015c2010-07-26 22:02:18 -0700161 mCountX = LauncherModel.getCellCountX();
162 mCountY = LauncherModel.getCellCountY();
Michael Jurka0280c3b2010-09-17 15:00:07 -0700163 mOccupied = new boolean[mCountX][mCountY];
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800164
165 a.recycle();
166
167 setAlwaysDrawnWithCacheEnabled(false);
168
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700169 final Resources res = getResources();
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700170
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700171 if (LauncherApplication.isScreenXLarge()) {
Michael Jurka33945b22010-12-21 18:19:38 -0800172 mNormalBackground = res.getDrawable(R.drawable.homescreen_large_blue);
Michael Jurka33945b22010-12-21 18:19:38 -0800173 mActiveBackground = res.getDrawable(R.drawable.homescreen_large_green);
174 mActiveGlowBackground = res.getDrawable(R.drawable.homescreen_large_green_strong);
175
176 mNormalBackgroundMini = res.getDrawable(R.drawable.homescreen_small_blue);
177 mNormalGlowBackgroundMini = res.getDrawable(R.drawable.homescreen_small_blue_strong);
178 mActiveBackgroundMini = res.getDrawable(R.drawable.homescreen_small_green);
179 mActiveGlowBackgroundMini = res.getDrawable(R.drawable.homescreen_small_green_strong);
180
181 mNormalBackground.setFilterBitmap(true);
Michael Jurka33945b22010-12-21 18:19:38 -0800182 mActiveBackground.setFilterBitmap(true);
183 mActiveGlowBackground.setFilterBitmap(true);
184 mNormalBackgroundMini.setFilterBitmap(true);
185 mNormalGlowBackgroundMini.setFilterBitmap(true);
186 mActiveBackgroundMini.setFilterBitmap(true);
187 mActiveGlowBackgroundMini.setFilterBitmap(true);
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700188 }
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700189
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700190 // Initialize the data structures used for the drag visualization.
Winson Chung150fbab2010-09-29 17:14:26 -0700191
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700192 mCrosshairsDrawable = res.getDrawable(R.drawable.gardening_crosshairs);
Patrick Dubroyce34a972010-10-19 10:34:32 -0700193 mEaseOutInterpolator = new DecelerateInterpolator(2.5f); // Quint ease out
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700194
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700195 // Set up the animation for fading the crosshairs in and out
196 int animDuration = res.getInteger(R.integer.config_crosshairsFadeInTime);
Patrick Dubroy49250ad2010-10-08 15:33:52 -0700197 mCrosshairsAnimator = new InterruptibleInOutAnimator(animDuration, 0.0f, 1.0f);
Chet Haase472b2812010-10-14 07:02:04 -0700198 mCrosshairsAnimator.getAnimator().addUpdateListener(new AnimatorUpdateListener() {
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700199 public void onAnimationUpdate(ValueAnimator animation) {
200 mCrosshairsVisibility = ((Float) animation.getAnimatedValue()).floatValue();
Patrick Dubroy8e58e912010-10-14 13:21:48 -0700201 invalidate();
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700202 }
203 });
Patrick Dubroyce34a972010-10-19 10:34:32 -0700204 mCrosshairsAnimator.getAnimator().setInterpolator(mEaseOutInterpolator);
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700205
Joe Onorato4be866d2010-10-10 11:26:02 -0700206 for (int i = 0; i < mDragOutlines.length; i++) {
207 mDragOutlines[i] = new Point(-1, -1);
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700208 }
209
210 // When dragging things around the home screens, we show a green outline of
211 // where the item will land. The outlines gradually fade out, leaving a trail
212 // behind the drag path.
213 // Set up all the animations that are used to implement this fading.
214 final int duration = res.getInteger(R.integer.config_dragOutlineFadeTime);
Chet Haase472b2812010-10-14 07:02:04 -0700215 final float fromAlphaValue = 0;
216 final float toAlphaValue = (float)res.getInteger(R.integer.config_dragOutlineMaxAlpha);
Joe Onorato4be866d2010-10-10 11:26:02 -0700217
Patrick Dubroy8e58e912010-10-14 13:21:48 -0700218 Arrays.fill(mDragOutlineAlphas, fromAlphaValue);
Joe Onorato4be866d2010-10-10 11:26:02 -0700219
220 for (int i = 0; i < mDragOutlineAnims.length; i++) {
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700221 final InterruptibleInOutAnimator anim =
222 new InterruptibleInOutAnimator(duration, fromAlphaValue, toAlphaValue);
Patrick Dubroyce34a972010-10-19 10:34:32 -0700223 anim.getAnimator().setInterpolator(mEaseOutInterpolator);
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700224 final int thisIndex = i;
Chet Haase472b2812010-10-14 07:02:04 -0700225 anim.getAnimator().addUpdateListener(new AnimatorUpdateListener() {
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700226 public void onAnimationUpdate(ValueAnimator animation) {
Joe Onorato4be866d2010-10-10 11:26:02 -0700227 final Bitmap outline = (Bitmap)anim.getTag();
228
229 // If an animation is started and then stopped very quickly, we can still
230 // get spurious updates we've cleared the tag. Guard against this.
231 if (outline == null) {
Patrick Dubroyfe6bd872010-10-13 17:32:10 -0700232 if (false) {
233 Object val = animation.getAnimatedValue();
234 Log.d(TAG, "anim " + thisIndex + " update: " + val +
235 ", isStopped " + anim.isStopped());
236 }
Joe Onorato4be866d2010-10-10 11:26:02 -0700237 // Try to prevent it from continuing to run
238 animation.cancel();
239 } else {
Chet Haase472b2812010-10-14 07:02:04 -0700240 mDragOutlineAlphas[thisIndex] = (Float) animation.getAnimatedValue();
Joe Onorato4be866d2010-10-10 11:26:02 -0700241 final int left = mDragOutlines[thisIndex].x;
242 final int top = mDragOutlines[thisIndex].y;
243 CellLayout.this.invalidate(left, top,
244 left + outline.getWidth(), top + outline.getHeight());
245 }
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700246 }
247 });
Joe Onorato4be866d2010-10-10 11:26:02 -0700248 // The animation holds a reference to the drag outline bitmap as long is it's
249 // running. This way the bitmap can be GCed when the animations are complete.
Chet Haase472b2812010-10-14 07:02:04 -0700250 anim.getAnimator().addListener(new AnimatorListenerAdapter() {
Michael Jurka3c4c20f2010-10-28 15:36:06 -0700251 @Override
Joe Onorato4be866d2010-10-10 11:26:02 -0700252 public void onAnimationEnd(Animator animation) {
Chet Haase472b2812010-10-14 07:02:04 -0700253 if ((Float) ((ValueAnimator) animation).getAnimatedValue() == 0f) {
Joe Onorato4be866d2010-10-10 11:26:02 -0700254 anim.setTag(null);
255 }
256 }
257 });
258 mDragOutlineAnims[i] = anim;
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700259 }
Patrick Dubroyce34a972010-10-19 10:34:32 -0700260
Michael Jurka18014792010-10-14 09:01:34 -0700261 mBackgroundRect = new Rect();
Michael Jurka33945b22010-12-21 18:19:38 -0800262 mGlowBackgroundRect = new Rect();
Michael Jurka18014792010-10-14 09:01:34 -0700263 setHoverScale(1.0f);
264 setHoverAlpha(1.0f);
Michael Jurkabea15192010-11-17 12:33:46 -0800265
Michael Jurka8c920dd2011-01-20 14:16:56 -0800266 mChildren = new CellLayoutChildren(context);
267 mChildren.setCellDimensions(
268 mCellWidth, mCellHeight, mLeftPadding, mTopPadding, mWidthGap, mHeightGap);
269 addView(mChildren);
Michael Jurka18014792010-10-14 09:01:34 -0700270 }
271
Patrick Dubroy96864c32011-03-10 17:17:23 -0800272 private void invalidateBubbleTextView(BubbleTextView icon) {
273 final int padding = icon.getPressedOrFocusedBackgroundPadding();
274 invalidate(icon.getLeft() - padding,
275 icon.getTop() - padding,
276 icon.getRight() + padding,
277 icon.getBottom() + padding);
278 }
279
280 void setPressedOrFocusedIcon(BubbleTextView icon) {
281 // We draw the pressed or focused BubbleTextView's background in CellLayout because it
282 // requires an expanded clip rect (due to the glow's blur radius)
283 BubbleTextView oldIcon = mPressedOrFocusedIcon;
284 mPressedOrFocusedIcon = icon;
285 if (oldIcon != null) {
286 invalidateBubbleTextView(oldIcon);
287 }
288 if (mPressedOrFocusedIcon != null) {
289 invalidateBubbleTextView(mPressedOrFocusedIcon);
290 }
291 }
292
Winson Chung6e314082011-01-27 16:46:51 -0800293 public CellLayoutChildren getChildrenLayout() {
294 if (getChildCount() > 0) {
295 return (CellLayoutChildren) getChildAt(0);
296 }
297 return null;
298 }
299
Michael Jurka33945b22010-12-21 18:19:38 -0800300 public void setIsDefaultDropTarget(boolean isDefaultDropTarget) {
301 if (mIsDefaultDropTarget != isDefaultDropTarget) {
302 mIsDefaultDropTarget = isDefaultDropTarget;
303 invalidate();
304 }
305 }
306
Michael Jurka33945b22010-12-21 18:19:38 -0800307 void setIsDragOccuring(boolean isDragOccuring) {
308 if (mIsDragOccuring != isDragOccuring) {
309 mIsDragOccuring = isDragOccuring;
310 invalidate();
311 }
312 }
313
314 void setIsDragOverlapping(boolean isDragOverlapping) {
315 if (mIsDragOverlapping != isDragOverlapping) {
316 mIsDragOverlapping = isDragOverlapping;
317 invalidate();
318 }
319 }
320
321 boolean getIsDragOverlapping() {
322 return mIsDragOverlapping;
323 }
324
325 private void updateGlowRect() {
326 float marginFraction = (mGlowBackgroundScale - 1.0f) / 2.0f;
Michael Jurka18014792010-10-14 09:01:34 -0700327 int marginX = (int) (marginFraction * (mBackgroundRect.right - mBackgroundRect.left));
328 int marginY = (int) (marginFraction * (mBackgroundRect.bottom - mBackgroundRect.top));
Michael Jurka33945b22010-12-21 18:19:38 -0800329 mGlowBackgroundRect.set(mBackgroundRect.left - marginX, mBackgroundRect.top - marginY,
Michael Jurka18014792010-10-14 09:01:34 -0700330 mBackgroundRect.right + marginX, mBackgroundRect.bottom + marginY);
331 invalidate();
332 }
333
334 public void setHoverScale(float scaleFactor) {
Michael Jurka33945b22010-12-21 18:19:38 -0800335 if (scaleFactor != mGlowBackgroundScale) {
336 mGlowBackgroundScale = scaleFactor;
337 updateGlowRect();
Michael Jurka8deb1e62011-01-25 16:27:43 -0800338 if (getParent() != null) {
339 ((View) getParent()).invalidate();
340 }
Michael Jurka18014792010-10-14 09:01:34 -0700341 }
342 }
343
344 public float getHoverScale() {
Michael Jurka33945b22010-12-21 18:19:38 -0800345 return mGlowBackgroundScale;
Michael Jurka18014792010-10-14 09:01:34 -0700346 }
347
348 public float getHoverAlpha() {
Michael Jurka33945b22010-12-21 18:19:38 -0800349 return mGlowBackgroundAlpha;
Michael Jurka18014792010-10-14 09:01:34 -0700350 }
351
352 public void setHoverAlpha(float alpha) {
Michael Jurka33945b22010-12-21 18:19:38 -0800353 mGlowBackgroundAlpha = alpha;
Michael Jurka18014792010-10-14 09:01:34 -0700354 invalidate();
355 }
356
357 void animateDrop() {
358 if (LauncherApplication.isScreenXLarge()) {
359 Resources res = getResources();
360 float onDropScale = res.getInteger(R.integer.config_screenOnDropScalePercent) / 100.0f;
361 ObjectAnimator scaleUp = ObjectAnimator.ofFloat(this, "hoverScale", onDropScale);
362 scaleUp.setDuration(res.getInteger(R.integer.config_screenOnDropScaleUpDuration));
363 ObjectAnimator scaleDown = ObjectAnimator.ofFloat(this, "hoverScale", 1.0f);
364 scaleDown.setDuration(res.getInteger(R.integer.config_screenOnDropScaleDownDuration));
365 ObjectAnimator alphaFadeOut = ObjectAnimator.ofFloat(this, "hoverAlpha", 0.0f);
366
367 alphaFadeOut.setStartDelay(res.getInteger(R.integer.config_screenOnDropAlphaFadeDelay));
368 alphaFadeOut.setDuration(res.getInteger(R.integer.config_screenOnDropAlphaFadeDelay));
369
370 AnimatorSet bouncer = new AnimatorSet();
371 bouncer.play(scaleUp).before(scaleDown);
372 bouncer.play(scaleUp).with(alphaFadeOut);
Michael Jurka8edd75c2010-12-17 20:15:06 -0800373 bouncer.addListener(new AnimatorListenerAdapter() {
Michael Jurka3c4c20f2010-10-28 15:36:06 -0700374 @Override
Michael Jurka18014792010-10-14 09:01:34 -0700375 public void onAnimationStart(Animator animation) {
Michael Jurka33945b22010-12-21 18:19:38 -0800376 setIsDragOverlapping(true);
Michael Jurka18014792010-10-14 09:01:34 -0700377 }
Michael Jurka3c4c20f2010-10-28 15:36:06 -0700378 @Override
Michael Jurka8edd75c2010-12-17 20:15:06 -0800379 public void onAnimationEnd(Animator animation) {
Michael Jurka33945b22010-12-21 18:19:38 -0800380 setIsDragOverlapping(false);
Michael Jurka18014792010-10-14 09:01:34 -0700381 setHoverScale(1.0f);
382 setHoverAlpha(1.0f);
383 }
384 });
385 bouncer.start();
386 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800387 }
388
Jeff Sharkey83f111d2009-04-20 21:03:13 -0700389 @Override
Patrick Dubroy1262e362010-10-06 15:49:50 -0700390 protected void onDraw(Canvas canvas) {
Michael Jurka3e7c7632010-10-02 16:01:03 -0700391 // When we're large, we are either drawn in a "hover" state (ie when dragging an item to
392 // a neighboring page) or with just a normal background (if backgroundAlpha > 0.0f)
393 // When we're small, we are either drawn normally or in the "accepts drops" state (during
394 // a drag). However, we also drag the mini hover background *over* one of those two
395 // backgrounds
Winson Chung26cbf3a2011-01-06 16:25:55 -0800396 if (LauncherApplication.isScreenXLarge() && mBackgroundAlpha > 0.0f) {
Adam Cohenf34bab52010-09-30 14:11:56 -0700397 Drawable bg;
Michael Jurka33945b22010-12-21 18:19:38 -0800398 boolean mini = getScaleX() < 0.5f;
399
400 if (mIsDragOverlapping) {
401 // In the mini case, we draw the active_glow bg *over* the active background
402 bg = mini ? mActiveBackgroundMini : mActiveGlowBackground;
403 } else if (mIsDragOccuring && mAcceptsDrops) {
404 bg = mini ? mActiveBackgroundMini : mActiveBackground;
Adam Cohen3af863b2011-01-25 12:16:51 -0800405 } else if (mIsDefaultDropTarget && mini) {
406 bg = mNormalGlowBackgroundMini;
Adam Cohenf34bab52010-09-30 14:11:56 -0700407 } else {
Michael Jurka33945b22010-12-21 18:19:38 -0800408 bg = mini ? mNormalBackgroundMini : mNormalBackground;
Adam Cohenf34bab52010-09-30 14:11:56 -0700409 }
Michael Jurka33945b22010-12-21 18:19:38 -0800410
411 bg.setAlpha((int) (mBackgroundAlpha * mBackgroundAlphaMultiplier * 255));
412 bg.setBounds(mBackgroundRect);
413 bg.draw(canvas);
414
415 if (mini && mIsDragOverlapping) {
Michael Jurka18014792010-10-14 09:01:34 -0700416 boolean modifiedClipRect = false;
Michael Jurka33945b22010-12-21 18:19:38 -0800417 if (mGlowBackgroundScale > 1.0f) {
Michael Jurka18014792010-10-14 09:01:34 -0700418 // If the hover background's scale is greater than 1, we'll be drawing outside
419 // the bounds of this CellLayout. Get around that by temporarily increasing the
420 // size of the clip rect
Michael Jurka33945b22010-12-21 18:19:38 -0800421 float marginFraction = (mGlowBackgroundScale - 1.0f) / 2.0f;
Michael Jurka18014792010-10-14 09:01:34 -0700422 Rect clipRect = canvas.getClipBounds();
423 int marginX = (int) (marginFraction * (clipRect.right - clipRect.left));
424 int marginY = (int) (marginFraction * (clipRect.bottom - clipRect.top));
425 canvas.save(Canvas.CLIP_SAVE_FLAG);
426 canvas.clipRect(-marginX, -marginY,
427 getWidth() + marginX, getHeight() + marginY, Region.Op.REPLACE);
428 modifiedClipRect = true;
429 }
430
Michael Jurka33945b22010-12-21 18:19:38 -0800431 mActiveGlowBackgroundMini.setAlpha(
432 (int) (mBackgroundAlpha * mGlowBackgroundAlpha * 255));
433 mActiveGlowBackgroundMini.setBounds(mGlowBackgroundRect);
434 mActiveGlowBackgroundMini.draw(canvas);
Michael Jurka18014792010-10-14 09:01:34 -0700435 if (modifiedClipRect) {
436 canvas.restore();
437 }
Michael Jurka3e7c7632010-10-02 16:01:03 -0700438 }
Michael Jurkaa63c4522010-08-19 13:52:27 -0700439 }
Romain Guya6abce82009-11-10 02:54:41 -0800440
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700441 if (mCrosshairsVisibility > 0.0f) {
442 final int countX = mCountX;
443 final int countY = mCountY;
444
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700445 final float MAX_ALPHA = 0.4f;
446 final int MAX_VISIBLE_DISTANCE = 600;
447 final float DISTANCE_MULTIPLIER = 0.002f;
448
449 final Drawable d = mCrosshairsDrawable;
450 final int width = d.getIntrinsicWidth();
451 final int height = d.getIntrinsicHeight();
452
453 int x = getLeftPadding() - (mWidthGap / 2) - (width / 2);
454 for (int col = 0; col <= countX; col++) {
455 int y = getTopPadding() - (mHeightGap / 2) - (height / 2);
456 for (int row = 0; row <= countY; row++) {
457 mTmpPointF.set(x - mDragCenter.x, y - mDragCenter.y);
458 float dist = mTmpPointF.length();
459 // Crosshairs further from the drag point are more faint
460 float alpha = Math.min(MAX_ALPHA,
461 DISTANCE_MULTIPLIER * (MAX_VISIBLE_DISTANCE - dist));
462 if (alpha > 0.0f) {
463 d.setBounds(x, y, x + width, y + height);
464 d.setAlpha((int) (alpha * 255 * mCrosshairsVisibility));
465 d.draw(canvas);
466 }
467 y += mCellHeight + mHeightGap;
468 }
469 x += mCellWidth + mWidthGap;
470 }
Joe Onorato4be866d2010-10-10 11:26:02 -0700471 }
Winson Chung150fbab2010-09-29 17:14:26 -0700472
Patrick Dubroy8e58e912010-10-14 13:21:48 -0700473 final Paint paint = mDragOutlinePaint;
Joe Onorato4be866d2010-10-10 11:26:02 -0700474 for (int i = 0; i < mDragOutlines.length; i++) {
Chet Haase472b2812010-10-14 07:02:04 -0700475 final float alpha = mDragOutlineAlphas[i];
Joe Onorato4be866d2010-10-10 11:26:02 -0700476 if (alpha > 0) {
477 final Point p = mDragOutlines[i];
478 final Bitmap b = (Bitmap) mDragOutlineAnims[i].getTag();
Chet Haase472b2812010-10-14 07:02:04 -0700479 paint.setAlpha((int)(alpha + .5f));
Joe Onorato4be866d2010-10-10 11:26:02 -0700480 canvas.drawBitmap(b, p.x, p.y, paint);
Winson Chung150fbab2010-09-29 17:14:26 -0700481 }
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700482 }
Patrick Dubroy96864c32011-03-10 17:17:23 -0800483
484 // We draw the pressed or focused BubbleTextView's background in CellLayout because it
485 // requires an expanded clip rect (due to the glow's blur radius)
486 if (mPressedOrFocusedIcon != null) {
487 final int padding = mPressedOrFocusedIcon.getPressedOrFocusedBackgroundPadding();
488 final Bitmap b = mPressedOrFocusedIcon.getPressedOrFocusedBackground();
489 if (b != null) {
490 canvas.drawBitmap(b,
491 mPressedOrFocusedIcon.getLeft() - padding,
492 mPressedOrFocusedIcon.getTop() - padding,
493 null);
494 }
495 }
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700496 }
497
498 @Override
Jeff Sharkey83f111d2009-04-20 21:03:13 -0700499 public void cancelLongPress() {
500 super.cancelLongPress();
501
502 // Cancel long press for all children
503 final int count = getChildCount();
504 for (int i = 0; i < count; i++) {
505 final View child = getChildAt(i);
506 child.cancelLongPress();
507 }
508 }
509
Michael Jurkadee05892010-07-27 10:01:56 -0700510 public void setOnInterceptTouchListener(View.OnTouchListener listener) {
511 mInterceptTouchListener = listener;
512 }
513
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800514 int getCountX() {
Adam Cohend22015c2010-07-26 22:02:18 -0700515 return mCountX;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800516 }
517
518 int getCountY() {
Adam Cohend22015c2010-07-26 22:02:18 -0700519 return mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800520 }
521
Michael Jurkaf3ca3ab2010-10-20 17:08:24 -0700522 public boolean addViewToCellLayout(
523 View child, int index, int childId, LayoutParams params, boolean markCells) {
Winson Chungaafa03c2010-06-11 17:34:16 -0700524 final LayoutParams lp = params;
525
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800526 // Generate an id for each view, this assumes we have at most 256x256 cells
527 // per workspace screen
Adam Cohend22015c2010-07-26 22:02:18 -0700528 if (lp.cellX >= 0 && lp.cellX <= mCountX - 1 && lp.cellY >= 0 && lp.cellY <= mCountY - 1) {
Winson Chungaafa03c2010-06-11 17:34:16 -0700529 // If the horizontal or vertical span is set to -1, it is taken to
530 // mean that it spans the extent of the CellLayout
Adam Cohend22015c2010-07-26 22:02:18 -0700531 if (lp.cellHSpan < 0) lp.cellHSpan = mCountX;
532 if (lp.cellVSpan < 0) lp.cellVSpan = mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800533
Winson Chungaafa03c2010-06-11 17:34:16 -0700534 child.setId(childId);
535
Michael Jurka8c920dd2011-01-20 14:16:56 -0800536 mChildren.addView(child, index, lp);
Michael Jurkadee05892010-07-27 10:01:56 -0700537
Michael Jurkaf3ca3ab2010-10-20 17:08:24 -0700538 if (markCells) markCellsAsOccupiedForView(child);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700539
Winson Chungaafa03c2010-06-11 17:34:16 -0700540 return true;
541 }
542 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800543 }
Michael Jurka3e7c7632010-10-02 16:01:03 -0700544
Michael Jurkabea15192010-11-17 12:33:46 -0800545 public void setAcceptsDrops(boolean acceptsDrops) {
546 if (mAcceptsDrops != acceptsDrops) {
547 mAcceptsDrops = acceptsDrops;
548 invalidate();
549 }
550 }
551
Michael Jurka3e7c7632010-10-02 16:01:03 -0700552 public boolean getAcceptsDrops() {
553 return mAcceptsDrops;
554 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800555
556 @Override
Michael Jurka0280c3b2010-09-17 15:00:07 -0700557 public void removeAllViews() {
558 clearOccupiedCells();
Michael Jurka8c920dd2011-01-20 14:16:56 -0800559 mChildren.removeAllViews();
Michael Jurka0280c3b2010-09-17 15:00:07 -0700560 }
561
562 @Override
563 public void removeAllViewsInLayout() {
564 clearOccupiedCells();
Michael Jurka8c920dd2011-01-20 14:16:56 -0800565 mChildren.removeAllViewsInLayout();
Michael Jurka0280c3b2010-09-17 15:00:07 -0700566 }
567
Michael Jurkaf3ca3ab2010-10-20 17:08:24 -0700568 public void removeViewWithoutMarkingCells(View view) {
Michael Jurkacf6125c2011-01-28 15:20:01 -0800569 mChildren.removeView(view);
Michael Jurkaf3ca3ab2010-10-20 17:08:24 -0700570 }
571
Michael Jurka0280c3b2010-09-17 15:00:07 -0700572 @Override
573 public void removeView(View view) {
574 markCellsAsUnoccupiedForView(view);
Michael Jurka8c920dd2011-01-20 14:16:56 -0800575 mChildren.removeView(view);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700576 }
577
578 @Override
579 public void removeViewAt(int index) {
Michael Jurka8c920dd2011-01-20 14:16:56 -0800580 markCellsAsUnoccupiedForView(mChildren.getChildAt(index));
581 mChildren.removeViewAt(index);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700582 }
583
584 @Override
585 public void removeViewInLayout(View view) {
586 markCellsAsUnoccupiedForView(view);
Michael Jurka8c920dd2011-01-20 14:16:56 -0800587 mChildren.removeViewInLayout(view);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700588 }
589
590 @Override
591 public void removeViews(int start, int count) {
592 for (int i = start; i < start + count; i++) {
Michael Jurka8c920dd2011-01-20 14:16:56 -0800593 markCellsAsUnoccupiedForView(mChildren.getChildAt(i));
Michael Jurka0280c3b2010-09-17 15:00:07 -0700594 }
Michael Jurka8c920dd2011-01-20 14:16:56 -0800595 mChildren.removeViews(start, count);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700596 }
597
598 @Override
599 public void removeViewsInLayout(int start, int count) {
600 for (int i = start; i < start + count; i++) {
Michael Jurka8c920dd2011-01-20 14:16:56 -0800601 markCellsAsUnoccupiedForView(mChildren.getChildAt(i));
Michael Jurka0280c3b2010-09-17 15:00:07 -0700602 }
Michael Jurka8c920dd2011-01-20 14:16:56 -0800603 mChildren.removeViewsInLayout(start, count);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700604 }
605
Michael Jurka8c920dd2011-01-20 14:16:56 -0800606 public void drawChildren(Canvas canvas) {
607 mChildren.draw(canvas);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800608 }
609
Michael Jurkaabded662011-03-04 12:06:57 -0800610 void buildChildrenLayer() {
611 mChildren.buildLayer();
612 }
613
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800614 @Override
615 protected void onAttachedToWindow() {
616 super.onAttachedToWindow();
617 mCellInfo.screen = ((ViewGroup) getParent()).indexOfChild(this);
618 }
619
Michael Jurkaaf442092010-06-10 17:01:57 -0700620 public void setTagToCellInfoForPoint(int touchX, int touchY) {
621 final CellInfo cellInfo = mCellInfo;
622 final Rect frame = mRect;
623 final int x = touchX + mScrollX;
624 final int y = touchY + mScrollY;
Michael Jurka8c920dd2011-01-20 14:16:56 -0800625 final int count = mChildren.getChildCount();
Michael Jurkaaf442092010-06-10 17:01:57 -0700626
627 boolean found = false;
628 for (int i = count - 1; i >= 0; i--) {
Michael Jurka8c920dd2011-01-20 14:16:56 -0800629 final View child = mChildren.getChildAt(i);
Adam Cohend4844c32011-02-18 19:25:06 -0800630 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
Michael Jurkaaf442092010-06-10 17:01:57 -0700631
Adam Cohen1b607ed2011-03-03 17:26:50 -0800632 if ((child.getVisibility() == VISIBLE || child.getAnimation() != null) &&
633 lp.isLockedToGrid) {
Michael Jurkaaf442092010-06-10 17:01:57 -0700634 child.getHitRect(frame);
635 if (frame.contains(x, y)) {
Michael Jurkaaf442092010-06-10 17:01:57 -0700636 cellInfo.cell = child;
637 cellInfo.cellX = lp.cellX;
638 cellInfo.cellY = lp.cellY;
639 cellInfo.spanX = lp.cellHSpan;
640 cellInfo.spanY = lp.cellVSpan;
641 cellInfo.valid = true;
642 found = true;
Michael Jurkaaf442092010-06-10 17:01:57 -0700643 break;
644 }
645 }
646 }
Winson Chungaafa03c2010-06-11 17:34:16 -0700647
Michael Jurkaaf442092010-06-10 17:01:57 -0700648 if (!found) {
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700649 final int cellXY[] = mTmpCellXY;
Michael Jurkaaf442092010-06-10 17:01:57 -0700650 pointToCellExact(x, y, cellXY);
651
Michael Jurkaaf442092010-06-10 17:01:57 -0700652 cellInfo.cell = null;
653 cellInfo.cellX = cellXY[0];
654 cellInfo.cellY = cellXY[1];
655 cellInfo.spanX = 1;
656 cellInfo.spanY = 1;
Michael Jurka0280c3b2010-09-17 15:00:07 -0700657 cellInfo.valid = cellXY[0] >= 0 && cellXY[1] >= 0 && cellXY[0] < mCountX &&
658 cellXY[1] < mCountY && !mOccupied[cellXY[0]][cellXY[1]];
Michael Jurkaaf442092010-06-10 17:01:57 -0700659 }
660 setTag(cellInfo);
661 }
662
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800663 @Override
664 public boolean onInterceptTouchEvent(MotionEvent ev) {
Michael Jurkadee05892010-07-27 10:01:56 -0700665 if (mInterceptTouchListener != null && mInterceptTouchListener.onTouch(this, ev)) {
666 return true;
667 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800668 final int action = ev.getAction();
669 final CellInfo cellInfo = mCellInfo;
670
671 if (action == MotionEvent.ACTION_DOWN) {
Michael Jurkaaf442092010-06-10 17:01:57 -0700672 setTagToCellInfoForPoint((int) ev.getX(), (int) ev.getY());
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800673 } else if (action == MotionEvent.ACTION_UP) {
674 cellInfo.cell = null;
675 cellInfo.cellX = -1;
676 cellInfo.cellY = -1;
677 cellInfo.spanX = 0;
678 cellInfo.spanY = 0;
679 cellInfo.valid = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800680 setTag(cellInfo);
681 }
682
683 return false;
684 }
685
686 @Override
687 public CellInfo getTag() {
Michael Jurka0280c3b2010-09-17 15:00:07 -0700688 return (CellInfo) super.getTag();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800689 }
690
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700691 /**
Winson Chungaafa03c2010-06-11 17:34:16 -0700692 * Given a point, return the cell that strictly encloses that point
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800693 * @param x X coordinate of the point
694 * @param y Y coordinate of the point
695 * @param result Array of 2 ints to hold the x and y coordinate of the cell
696 */
697 void pointToCellExact(int x, int y, int[] result) {
Winson Chungaafa03c2010-06-11 17:34:16 -0700698 final int hStartPadding = getLeftPadding();
699 final int vStartPadding = getTopPadding();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800700
701 result[0] = (x - hStartPadding) / (mCellWidth + mWidthGap);
702 result[1] = (y - vStartPadding) / (mCellHeight + mHeightGap);
703
Adam Cohend22015c2010-07-26 22:02:18 -0700704 final int xAxis = mCountX;
705 final int yAxis = mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800706
707 if (result[0] < 0) result[0] = 0;
708 if (result[0] >= xAxis) result[0] = xAxis - 1;
709 if (result[1] < 0) result[1] = 0;
710 if (result[1] >= yAxis) result[1] = yAxis - 1;
711 }
Winson Chungaafa03c2010-06-11 17:34:16 -0700712
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800713 /**
714 * Given a point, return the cell that most closely encloses that point
715 * @param x X coordinate of the point
716 * @param y Y coordinate of the point
717 * @param result Array of 2 ints to hold the x and y coordinate of the cell
718 */
719 void pointToCellRounded(int x, int y, int[] result) {
720 pointToCellExact(x + (mCellWidth / 2), y + (mCellHeight / 2), result);
721 }
722
723 /**
724 * Given a cell coordinate, return the point that represents the upper left corner of that cell
Winson Chungaafa03c2010-06-11 17:34:16 -0700725 *
726 * @param cellX X coordinate of the cell
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800727 * @param cellY Y coordinate of the cell
Winson Chungaafa03c2010-06-11 17:34:16 -0700728 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800729 * @param result Array of 2 ints to hold the x and y coordinate of the point
730 */
731 void cellToPoint(int cellX, int cellY, int[] result) {
Winson Chungaafa03c2010-06-11 17:34:16 -0700732 final int hStartPadding = getLeftPadding();
733 final int vStartPadding = getTopPadding();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800734
735 result[0] = hStartPadding + cellX * (mCellWidth + mWidthGap);
736 result[1] = vStartPadding + cellY * (mCellHeight + mHeightGap);
737 }
738
Romain Guy84f296c2009-11-04 15:00:44 -0800739 int getCellWidth() {
740 return mCellWidth;
741 }
742
743 int getCellHeight() {
744 return mCellHeight;
745 }
746
Adam Cohend4844c32011-02-18 19:25:06 -0800747 int getWidthGap() {
748 return mWidthGap;
749 }
750
751 int getHeightGap() {
752 return mHeightGap;
753 }
754
Romain Guy1a304a12009-11-10 00:02:32 -0800755 int getLeftPadding() {
Winson Chungaafa03c2010-06-11 17:34:16 -0700756 return mLeftPadding;
Romain Guy1a304a12009-11-10 00:02:32 -0800757 }
758
759 int getTopPadding() {
Winson Chungaafa03c2010-06-11 17:34:16 -0700760 return mTopPadding;
Romain Guy1a304a12009-11-10 00:02:32 -0800761 }
762
763 int getRightPadding() {
Winson Chungaafa03c2010-06-11 17:34:16 -0700764 return mRightPadding;
Romain Guy1a304a12009-11-10 00:02:32 -0800765 }
766
767 int getBottomPadding() {
Winson Chungaafa03c2010-06-11 17:34:16 -0700768 return mBottomPadding;
Romain Guy1a304a12009-11-10 00:02:32 -0800769 }
770
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800771 @Override
772 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
773 // TODO: currently ignoring padding
Winson Chungaafa03c2010-06-11 17:34:16 -0700774
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800775 int widthSpecMode = MeasureSpec.getMode(widthMeasureSpec);
Winson Chungaafa03c2010-06-11 17:34:16 -0700776 int widthSpecSize = MeasureSpec.getSize(widthMeasureSpec);
777
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800778 int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec);
779 int heightSpecSize = MeasureSpec.getSize(heightMeasureSpec);
Winson Chungaafa03c2010-06-11 17:34:16 -0700780
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800781 if (widthSpecMode == MeasureSpec.UNSPECIFIED || heightSpecMode == MeasureSpec.UNSPECIFIED) {
782 throw new RuntimeException("CellLayout cannot have UNSPECIFIED dimensions");
783 }
784
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800785 final int cellWidth = mCellWidth;
786 final int cellHeight = mCellHeight;
787
Adam Cohend22015c2010-07-26 22:02:18 -0700788 int numWidthGaps = mCountX - 1;
789 int numHeightGaps = mCountY - 1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800790
Winson Chungece7f5b2010-10-22 14:54:12 -0700791 if (mWidthGap < 0 || mHeightGap < 0) {
792 int vSpaceLeft = heightSpecSize - mTopPadding - mBottomPadding - (cellHeight * mCountY);
793 mHeightGap = vSpaceLeft / numHeightGaps;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800794
Winson Chungece7f5b2010-10-22 14:54:12 -0700795 int hSpaceLeft = widthSpecSize - mLeftPadding - mRightPadding - (cellWidth * mCountX);
796 mWidthGap = hSpaceLeft / numWidthGaps;
Winson Chungaafa03c2010-06-11 17:34:16 -0700797
Winson Chungece7f5b2010-10-22 14:54:12 -0700798 // center it around the min gaps
799 int minGap = Math.min(mWidthGap, mHeightGap);
800 mWidthGap = mHeightGap = minGap;
801 }
Michael Jurka5f1c5092010-09-03 14:15:02 -0700802
Michael Jurka8c920dd2011-01-20 14:16:56 -0800803 // Initial values correspond to widthSpecMode == MeasureSpec.EXACTLY
804 int newWidth = widthSpecSize;
805 int newHeight = heightSpecSize;
Michael Jurka5f1c5092010-09-03 14:15:02 -0700806 if (widthSpecMode == MeasureSpec.AT_MOST) {
Michael Jurka8c920dd2011-01-20 14:16:56 -0800807 newWidth = mLeftPadding + mRightPadding + (mCountX * cellWidth) +
Winson Chungece7f5b2010-10-22 14:54:12 -0700808 ((mCountX - 1) * mWidthGap);
Michael Jurka8c920dd2011-01-20 14:16:56 -0800809 newHeight = mTopPadding + mBottomPadding + (mCountY * cellHeight) +
Winson Chungece7f5b2010-10-22 14:54:12 -0700810 ((mCountY - 1) * mHeightGap);
Michael Jurka5f1c5092010-09-03 14:15:02 -0700811 setMeasuredDimension(newWidth, newHeight);
Michael Jurka5f1c5092010-09-03 14:15:02 -0700812 }
Michael Jurka8c920dd2011-01-20 14:16:56 -0800813
814 int count = getChildCount();
815 for (int i = 0; i < count; i++) {
816 View child = getChildAt(i);
817 int childWidthMeasureSpec = MeasureSpec.makeMeasureSpec(newWidth, MeasureSpec.EXACTLY);
818 int childheightMeasureSpec = MeasureSpec.makeMeasureSpec(newHeight,
819 MeasureSpec.EXACTLY);
820 child.measure(childWidthMeasureSpec, childheightMeasureSpec);
821 }
822 setMeasuredDimension(newWidth, newHeight);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800823 }
824
825 @Override
Michael Jurka28750fb2010-09-24 17:43:49 -0700826 protected void onLayout(boolean changed, int l, int t, int r, int b) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800827 int count = getChildCount();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800828 for (int i = 0; i < count; i++) {
Michael Jurka8c920dd2011-01-20 14:16:56 -0800829 View child = getChildAt(i);
830 child.layout(0, 0, r - l, b - t);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800831 }
832 }
833
834 @Override
Michael Jurkadee05892010-07-27 10:01:56 -0700835 protected void onSizeChanged(int w, int h, int oldw, int oldh) {
836 super.onSizeChanged(w, h, oldw, oldh);
Michael Jurka18014792010-10-14 09:01:34 -0700837 mBackgroundRect.set(0, 0, w, h);
Michael Jurka33945b22010-12-21 18:19:38 -0800838 updateGlowRect();
Michael Jurkadee05892010-07-27 10:01:56 -0700839 }
840
841 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800842 protected void setChildrenDrawingCacheEnabled(boolean enabled) {
Michael Jurka8c920dd2011-01-20 14:16:56 -0800843 mChildren.setChildrenDrawingCacheEnabled(enabled);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800844 }
845
846 @Override
847 protected void setChildrenDrawnWithCacheEnabled(boolean enabled) {
Michael Jurka8c920dd2011-01-20 14:16:56 -0800848 mChildren.setChildrenDrawnWithCacheEnabled(enabled);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800849 }
850
Michael Jurka5f1c5092010-09-03 14:15:02 -0700851 public float getBackgroundAlpha() {
852 return mBackgroundAlpha;
Michael Jurkadee05892010-07-27 10:01:56 -0700853 }
854
Michael Jurka742574b2011-02-02 23:51:01 -0800855 public void setFastBackgroundAlpha(float alpha) {
856 mBackgroundAlpha = alpha;
857 }
858
Adam Cohen1b0aaac2010-10-28 11:11:18 -0700859 public void setBackgroundAlphaMultiplier(float multiplier) {
860 mBackgroundAlphaMultiplier = multiplier;
861 }
862
Adam Cohenddb82192010-11-10 16:32:54 -0800863 public float getBackgroundAlphaMultiplier() {
864 return mBackgroundAlphaMultiplier;
865 }
866
Michael Jurka5f1c5092010-09-03 14:15:02 -0700867 public void setBackgroundAlpha(float alpha) {
868 mBackgroundAlpha = alpha;
Michael Jurka0142d492010-08-25 17:46:15 -0700869 invalidate();
Michael Jurkadee05892010-07-27 10:01:56 -0700870 }
871
Michael Jurka5f1c5092010-09-03 14:15:02 -0700872 // Need to return true to let the view system know we know how to handle alpha-- this is
873 // because when our children have an alpha of 0.0f, they are still rendering their "dimmed"
874 // versions
875 @Override
876 protected boolean onSetAlpha(int alpha) {
877 return true;
878 }
879
880 public void setAlpha(float alpha) {
881 setChildrenAlpha(alpha);
882 super.setAlpha(alpha);
883 }
884
Michael Jurka742574b2011-02-02 23:51:01 -0800885 public void setFastAlpha(float alpha) {
886 setFastChildrenAlpha(alpha);
887 super.setFastAlpha(alpha);
888 }
889
Michael Jurkadee05892010-07-27 10:01:56 -0700890 private void setChildrenAlpha(float alpha) {
Michael Jurka0142d492010-08-25 17:46:15 -0700891 final int childCount = getChildCount();
892 for (int i = 0; i < childCount; i++) {
Michael Jurkadee05892010-07-27 10:01:56 -0700893 getChildAt(i).setAlpha(alpha);
894 }
895 }
896
Michael Jurka742574b2011-02-02 23:51:01 -0800897 private void setFastChildrenAlpha(float alpha) {
898 final int childCount = getChildCount();
899 for (int i = 0; i < childCount; i++) {
900 getChildAt(i).setFastAlpha(alpha);
901 }
902 }
903
Patrick Dubroy440c3602010-07-13 17:50:32 -0700904 public View getChildAt(int x, int y) {
Michael Jurka8c920dd2011-01-20 14:16:56 -0800905 return mChildren.getChildAt(x, y);
Patrick Dubroy440c3602010-07-13 17:50:32 -0700906 }
907
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700908 /**
909 * Estimate where the top left cell of the dragged item will land if it is dropped.
910 *
911 * @param originX The X value of the top left corner of the item
912 * @param originY The Y value of the top left corner of the item
913 * @param spanX The number of horizontal cells that the item spans
914 * @param spanY The number of vertical cells that the item spans
915 * @param result The estimated drop cell X and Y.
916 */
917 void estimateDropCell(int originX, int originY, int spanX, int spanY, int[] result) {
Adam Cohend22015c2010-07-26 22:02:18 -0700918 final int countX = mCountX;
919 final int countY = mCountY;
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700920
Michael Jurkaa63c4522010-08-19 13:52:27 -0700921 // pointToCellRounded takes the top left of a cell but will pad that with
922 // cellWidth/2 and cellHeight/2 when finding the matching cell
923 pointToCellRounded(originX, originY, result);
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700924
925 // If the item isn't fully on this screen, snap to the edges
926 int rightOverhang = result[0] + spanX - countX;
927 if (rightOverhang > 0) {
928 result[0] -= rightOverhang; // Snap to right
929 }
930 result[0] = Math.max(0, result[0]); // Snap to left
931 int bottomOverhang = result[1] + spanY - countY;
932 if (bottomOverhang > 0) {
933 result[1] -= bottomOverhang; // Snap to bottom
934 }
935 result[1] = Math.max(0, result[1]); // Snap to top
936 }
937
Joe Onorato4be866d2010-10-10 11:26:02 -0700938 void visualizeDropLocation(
939 View v, Bitmap dragOutline, int originX, int originY, int spanX, int spanY) {
940
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -0700941 final int oldDragCellX = mDragCell[0];
942 final int oldDragCellY = mDragCell[1];
Joe Onorato4be866d2010-10-10 11:26:02 -0700943 final int[] nearest = findNearestVacantArea(originX, originY, spanX, spanY, v, mDragCell);
Winson Chunga9abd0e2010-10-27 17:18:37 -0700944 if (v != null) {
945 mDragCenter.set(originX + (v.getWidth() / 2), originY + (v.getHeight() / 2));
946 } else {
947 mDragCenter.set(originX, originY);
948 }
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700949
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -0700950 if (nearest != null && (nearest[0] != oldDragCellX || nearest[1] != oldDragCellY)) {
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700951 // Find the top left corner of the rect the object will occupy
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700952 final int[] topLeft = mTmpPoint;
953 cellToPoint(nearest[0], nearest[1], topLeft);
954
Joe Onorato4be866d2010-10-10 11:26:02 -0700955 int left = topLeft[0];
956 int top = topLeft[1];
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700957
Winson Chunga9abd0e2010-10-27 17:18:37 -0700958 if (v != null) {
Adam Cohen99e8b402011-03-25 19:23:43 -0700959 // When drawing the drag outline, it did not account for margin offsets
960 // added by the view's parent.
961 MarginLayoutParams lp = (MarginLayoutParams) v.getLayoutParams();
962 left += lp.leftMargin;
963 top += lp.topMargin;
Winson Chung150fbab2010-09-29 17:14:26 -0700964
Adam Cohen99e8b402011-03-25 19:23:43 -0700965 // Offsets due to the size difference between the View and the dragOutline.
966 // There is a size difference to account for the outer blur, which may lie
967 // outside the bounds of the view.
Winson Chunga9abd0e2010-10-27 17:18:37 -0700968 left += (v.getWidth() - dragOutline.getWidth()) / 2;
969 top += (v.getHeight() - dragOutline.getHeight()) / 2;
970 }
Winson Chung150fbab2010-09-29 17:14:26 -0700971
Joe Onorato4be866d2010-10-10 11:26:02 -0700972 final int oldIndex = mDragOutlineCurrent;
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -0700973 mDragOutlineAnims[oldIndex].animateOut();
974 mDragOutlineCurrent = (oldIndex + 1) % mDragOutlines.length;
Winson Chung150fbab2010-09-29 17:14:26 -0700975
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -0700976 mDragOutlines[mDragOutlineCurrent].set(left, top);
977 mDragOutlineAnims[mDragOutlineCurrent].setTag(dragOutline);
978 mDragOutlineAnims[mDragOutlineCurrent].animateIn();
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700979 }
Patrick Dubroy49250ad2010-10-08 15:33:52 -0700980
981 // If we are drawing crosshairs, the entire CellLayout needs to be invalidated
982 if (mCrosshairsDrawable != null) {
983 invalidate();
984 }
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700985 }
986
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800987 /**
Jeff Sharkey70864282009-04-07 21:08:40 -0700988 * Find a vacant area that will fit the given bounds nearest the requested
989 * cell location. Uses Euclidean distance to score multiple vacant areas.
Winson Chungaafa03c2010-06-11 17:34:16 -0700990 *
Romain Guy51afc022009-05-04 18:03:43 -0700991 * @param pixelX The X location at which you want to search for a vacant area.
992 * @param pixelY The Y location at which you want to search for a vacant area.
Jeff Sharkey70864282009-04-07 21:08:40 -0700993 * @param spanX Horizontal span of the object.
994 * @param spanY Vertical span of the object.
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700995 * @param result Array in which to place the result, or null (in which case a new array will
996 * be allocated)
Jeff Sharkey70864282009-04-07 21:08:40 -0700997 * @return The X, Y cell of a vacant area that can contain this object,
998 * nearest the requested location.
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800999 */
Michael Jurka6a1435d2010-09-27 17:35:12 -07001000 int[] findNearestVacantArea(
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001001 int pixelX, int pixelY, int spanX, int spanY, int[] result) {
1002 return findNearestVacantArea(pixelX, pixelY, spanX, spanY, null, result);
Michael Jurka6a1435d2010-09-27 17:35:12 -07001003 }
Winson Chungaafa03c2010-06-11 17:34:16 -07001004
Michael Jurka6a1435d2010-09-27 17:35:12 -07001005 /**
1006 * Find a vacant area that will fit the given bounds nearest the requested
1007 * cell location. Uses Euclidean distance to score multiple vacant areas.
1008 *
1009 * @param pixelX The X location at which you want to search for a vacant area.
1010 * @param pixelY The Y location at which you want to search for a vacant area.
1011 * @param spanX Horizontal span of the object.
1012 * @param spanY Vertical span of the object.
Adam Cohendf035382011-04-11 17:22:04 -07001013 * @param ignoreOccupied If true, the result can be an occupied cell
1014 * @param result Array in which to place the result, or null (in which case a new array will
1015 * be allocated)
Michael Jurka6a1435d2010-09-27 17:35:12 -07001016 * @return The X, Y cell of a vacant area that can contain this object,
1017 * nearest the requested location.
1018 */
Adam Cohendf035382011-04-11 17:22:04 -07001019 int[] findNearestArea(int pixelX, int pixelY, int spanX, int spanY, View ignoreView,
1020 boolean ignoreOccupied, int[] result) {
Michael Jurkac6ee42e2010-09-30 12:04:50 -07001021 // mark space take by ignoreView as available (method checks if ignoreView is null)
1022 markCellsAsUnoccupiedForView(ignoreView);
1023
Jeff Sharkey70864282009-04-07 21:08:40 -07001024 // Keep track of best-scoring drop area
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001025 final int[] bestXY = result != null ? result : new int[2];
Jeff Sharkey70864282009-04-07 21:08:40 -07001026 double bestDistance = Double.MAX_VALUE;
Winson Chungaafa03c2010-06-11 17:34:16 -07001027
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001028 final int countX = mCountX;
1029 final int countY = mCountY;
1030 final boolean[][] occupied = mOccupied;
1031
Winson Chungbbc60d82010-11-11 16:34:41 -08001032 for (int y = 0; y < countY - (spanY - 1); y++) {
Michael Jurkac28de512010-08-13 11:27:44 -07001033 inner:
Winson Chungbbc60d82010-11-11 16:34:41 -08001034 for (int x = 0; x < countX - (spanX - 1); x++) {
Adam Cohendf035382011-04-11 17:22:04 -07001035 if (ignoreOccupied) {
1036 for (int i = 0; i < spanX; i++) {
1037 for (int j = 0; j < spanY; j++) {
1038 if (occupied[x + i][y + j]) {
1039 // small optimization: we can skip to after the column we
1040 // just found an occupied cell
1041 x += i;
1042 continue inner;
1043 }
Michael Jurkac28de512010-08-13 11:27:44 -07001044 }
1045 }
1046 }
1047 final int[] cellXY = mTmpCellXY;
1048 cellToPoint(x, y, cellXY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001049
Michael Jurkac28de512010-08-13 11:27:44 -07001050 double distance = Math.sqrt(Math.pow(cellXY[0] - pixelX, 2)
1051 + Math.pow(cellXY[1] - pixelY, 2));
1052 if (distance <= bestDistance) {
1053 bestDistance = distance;
1054 bestXY[0] = x;
1055 bestXY[1] = y;
1056 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001057 }
1058 }
Michael Jurkac6ee42e2010-09-30 12:04:50 -07001059 // re-mark space taken by ignoreView as occupied
1060 markCellsAsOccupiedForView(ignoreView);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001061
Winson Chungaafa03c2010-06-11 17:34:16 -07001062 // Return null if no suitable location found
Jeff Sharkey70864282009-04-07 21:08:40 -07001063 if (bestDistance < Double.MAX_VALUE) {
1064 return bestXY;
1065 } else {
1066 return null;
1067 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001068 }
Winson Chungaafa03c2010-06-11 17:34:16 -07001069
Adam Cohendf035382011-04-11 17:22:04 -07001070 /**
1071 * Find a vacant area that will fit the given bounds nearest the requested
1072 * cell location. Uses Euclidean distance to score multiple vacant areas.
1073 *
1074 * @param pixelX The X location at which you want to search for a vacant area.
1075 * @param pixelY The Y location at which you want to search for a vacant area.
1076 * @param spanX Horizontal span of the object.
1077 * @param spanY Vertical span of the object.
1078 * @param ignoreView Considers space occupied by this view as unoccupied
1079 * @param result Previously returned value to possibly recycle.
1080 * @return The X, Y cell of a vacant area that can contain this object,
1081 * nearest the requested location.
1082 */
1083 int[] findNearestVacantArea(
1084 int pixelX, int pixelY, int spanX, int spanY, View ignoreView, int[] result) {
1085 return findNearestArea(pixelX, pixelY, spanX, spanY, ignoreView, true, result);
1086 }
1087
1088 /**
1089 * Find a starting cell position that will fit the given bounds nearest the requested
1090 * cell location. Uses Euclidean distance to score multiple vacant areas.
1091 *
1092 * @param pixelX The X location at which you want to search for a vacant area.
1093 * @param pixelY The Y location at which you want to search for a vacant area.
1094 * @param spanX Horizontal span of the object.
1095 * @param spanY Vertical span of the object.
1096 * @param ignoreView Considers space occupied by this view as unoccupied
1097 * @param result Previously returned value to possibly recycle.
1098 * @return The X, Y cell of a vacant area that can contain this object,
1099 * nearest the requested location.
1100 */
1101 int[] findNearestArea(
1102 int pixelX, int pixelY, int spanX, int spanY, int[] result) {
1103 return findNearestArea(pixelX, pixelY, spanX, spanY, null, false, result);
1104 }
1105
Michael Jurka0280c3b2010-09-17 15:00:07 -07001106 boolean existsEmptyCell() {
1107 return findCellForSpan(null, 1, 1);
1108 }
1109
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001110 /**
Michael Jurka0280c3b2010-09-17 15:00:07 -07001111 * Finds the upper-left coordinate of the first rectangle in the grid that can
1112 * hold a cell of the specified dimensions. If intersectX and intersectY are not -1,
1113 * then this method will only return coordinates for rectangles that contain the cell
1114 * (intersectX, intersectY)
1115 *
1116 * @param cellXY The array that will contain the position of a vacant cell if such a cell
1117 * can be found.
1118 * @param spanX The horizontal span of the cell we want to find.
1119 * @param spanY The vertical span of the cell we want to find.
1120 *
1121 * @return True if a vacant cell of the specified dimension was found, false otherwise.
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07001122 */
Michael Jurka0280c3b2010-09-17 15:00:07 -07001123 boolean findCellForSpan(int[] cellXY, int spanX, int spanY) {
1124 return findCellForSpanThatIntersectsIgnoring(cellXY, spanX, spanY, -1, -1, null);
1125 }
1126
1127 /**
1128 * Like above, but ignores any cells occupied by the item "ignoreView"
1129 *
1130 * @param cellXY The array that will contain the position of a vacant cell if such a cell
1131 * can be found.
1132 * @param spanX The horizontal span of the cell we want to find.
1133 * @param spanY The vertical span of the cell we want to find.
1134 * @param ignoreView The home screen item we should treat as not occupying any space
1135 * @return
1136 */
1137 boolean findCellForSpanIgnoring(int[] cellXY, int spanX, int spanY, View ignoreView) {
1138 return findCellForSpanThatIntersectsIgnoring(cellXY, spanX, spanY, -1, -1, ignoreView);
1139 }
1140
1141 /**
1142 * Like above, but if intersectX and intersectY are not -1, then this method will try to
1143 * return coordinates for rectangles that contain the cell [intersectX, intersectY]
1144 *
1145 * @param spanX The horizontal span of the cell we want to find.
1146 * @param spanY The vertical span of the cell we want to find.
1147 * @param ignoreView The home screen item we should treat as not occupying any space
1148 * @param intersectX The X coordinate of the cell that we should try to overlap
1149 * @param intersectX The Y coordinate of the cell that we should try to overlap
1150 *
1151 * @return True if a vacant cell of the specified dimension was found, false otherwise.
1152 */
1153 boolean findCellForSpanThatIntersects(int[] cellXY, int spanX, int spanY,
1154 int intersectX, int intersectY) {
1155 return findCellForSpanThatIntersectsIgnoring(
1156 cellXY, spanX, spanY, intersectX, intersectY, null);
1157 }
1158
1159 /**
1160 * The superset of the above two methods
1161 */
1162 boolean findCellForSpanThatIntersectsIgnoring(int[] cellXY, int spanX, int spanY,
1163 int intersectX, int intersectY, View ignoreView) {
Michael Jurkac6ee42e2010-09-30 12:04:50 -07001164 // mark space take by ignoreView as available (method checks if ignoreView is null)
1165 markCellsAsUnoccupiedForView(ignoreView);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001166
Michael Jurka28750fb2010-09-24 17:43:49 -07001167 boolean foundCell = false;
Michael Jurka0280c3b2010-09-17 15:00:07 -07001168 while (true) {
1169 int startX = 0;
1170 if (intersectX >= 0) {
1171 startX = Math.max(startX, intersectX - (spanX - 1));
1172 }
1173 int endX = mCountX - (spanX - 1);
1174 if (intersectX >= 0) {
1175 endX = Math.min(endX, intersectX + (spanX - 1) + (spanX == 1 ? 1 : 0));
1176 }
1177 int startY = 0;
1178 if (intersectY >= 0) {
1179 startY = Math.max(startY, intersectY - (spanY - 1));
1180 }
1181 int endY = mCountY - (spanY - 1);
1182 if (intersectY >= 0) {
1183 endY = Math.min(endY, intersectY + (spanY - 1) + (spanY == 1 ? 1 : 0));
1184 }
1185
Winson Chungbbc60d82010-11-11 16:34:41 -08001186 for (int y = startY; y < endY && !foundCell; y++) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001187 inner:
Winson Chungbbc60d82010-11-11 16:34:41 -08001188 for (int x = startX; x < endX; x++) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001189 for (int i = 0; i < spanX; i++) {
1190 for (int j = 0; j < spanY; j++) {
1191 if (mOccupied[x + i][y + j]) {
Winson Chungbbc60d82010-11-11 16:34:41 -08001192 // small optimization: we can skip to after the column we just found
Michael Jurka0280c3b2010-09-17 15:00:07 -07001193 // an occupied cell
Winson Chungbbc60d82010-11-11 16:34:41 -08001194 x += i;
Michael Jurka0280c3b2010-09-17 15:00:07 -07001195 continue inner;
1196 }
1197 }
1198 }
1199 if (cellXY != null) {
1200 cellXY[0] = x;
1201 cellXY[1] = y;
1202 }
Michael Jurka28750fb2010-09-24 17:43:49 -07001203 foundCell = true;
1204 break;
Michael Jurka0280c3b2010-09-17 15:00:07 -07001205 }
1206 }
1207 if (intersectX == -1 && intersectY == -1) {
1208 break;
1209 } else {
1210 // if we failed to find anything, try again but without any requirements of
1211 // intersecting
1212 intersectX = -1;
1213 intersectY = -1;
1214 continue;
1215 }
1216 }
1217
Michael Jurkac6ee42e2010-09-30 12:04:50 -07001218 // re-mark space taken by ignoreView as occupied
1219 markCellsAsOccupiedForView(ignoreView);
Michael Jurka28750fb2010-09-24 17:43:49 -07001220 return foundCell;
Michael Jurka0280c3b2010-09-17 15:00:07 -07001221 }
1222
1223 /**
1224 * Called when drag has left this CellLayout or has been completed (successfully or not)
1225 */
1226 void onDragExit() {
Joe Onorato4be866d2010-10-10 11:26:02 -07001227 // This can actually be called when we aren't in a drag, e.g. when adding a new
1228 // item to this layout via the customize drawer.
1229 // Guard against that case.
1230 if (mDragging) {
1231 mDragging = false;
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07001232
Joe Onorato4be866d2010-10-10 11:26:02 -07001233 // Fade out the drag indicators
1234 if (mCrosshairsAnimator != null) {
1235 mCrosshairsAnimator.animateOut();
1236 }
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001237 }
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07001238
1239 // Invalidate the drag data
1240 mDragCell[0] = -1;
1241 mDragCell[1] = -1;
1242 mDragOutlineAnims[mDragOutlineCurrent].animateOut();
1243 mDragOutlineCurrent = (mDragOutlineCurrent + 1) % mDragOutlineAnims.length;
1244
Michael Jurka33945b22010-12-21 18:19:38 -08001245 setIsDragOverlapping(false);
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07001246 }
1247
1248 /**
Winson Chungaafa03c2010-06-11 17:34:16 -07001249 * Mark a child as having been dropped.
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001250 * At the beginning of the drag operation, the child may have been on another
Patrick Dubroyce34a972010-10-19 10:34:32 -07001251 * screen, but it is re-parented before this method is called.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001252 *
1253 * @param child The child that is being dropped
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001254 */
Michael Jurkad3ef3062010-11-23 16:23:58 -08001255 void onDropChild(View child, boolean animate) {
Romain Guyd94533d2009-08-17 10:01:15 -07001256 if (child != null) {
1257 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Romain Guyd94533d2009-08-17 10:01:15 -07001258 lp.isDragging = false;
Romain Guy84f296c2009-11-04 15:00:44 -08001259 lp.dropped = true;
Michael Jurkad3ef3062010-11-23 16:23:58 -08001260 lp.animateDrop = animate;
Patrick Dubroye3887cc2011-01-20 10:43:40 -08001261 child.setVisibility(animate ? View.INVISIBLE : View.VISIBLE);
Romain Guyd94533d2009-08-17 10:01:15 -07001262 child.requestLayout();
Romain Guyd94533d2009-08-17 10:01:15 -07001263 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001264 }
1265
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001266 /**
1267 * Start dragging the specified child
Winson Chungaafa03c2010-06-11 17:34:16 -07001268 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001269 * @param child The child that is being dragged
1270 */
1271 void onDragChild(View child) {
1272 LayoutParams lp = (LayoutParams) child.getLayoutParams();
1273 lp.isDragging = true;
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001274 }
1275
1276 /**
1277 * A drag event has begun over this layout.
1278 * It may have begun over this layout (in which case onDragChild is called first),
1279 * or it may have begun on another layout.
1280 */
Winson Chunga9abd0e2010-10-27 17:18:37 -07001281 void onDragEnter() {
Patrick Dubroyfe6bd872010-10-13 17:32:10 -07001282 if (!mDragging) {
Patrick Dubroyfe6bd872010-10-13 17:32:10 -07001283 // Fade in the drag indicators
1284 if (mCrosshairsAnimator != null) {
1285 mCrosshairsAnimator.animateIn();
1286 }
Joe Onorato4be866d2010-10-10 11:26:02 -07001287 }
1288 mDragging = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001289 }
Winson Chungaafa03c2010-06-11 17:34:16 -07001290
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001291 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001292 * Computes a bounding rectangle for a range of cells
Winson Chungaafa03c2010-06-11 17:34:16 -07001293 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001294 * @param cellX X coordinate of upper left corner expressed as a cell position
1295 * @param cellY Y coordinate of upper left corner expressed as a cell position
Winson Chungaafa03c2010-06-11 17:34:16 -07001296 * @param cellHSpan Width in cells
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001297 * @param cellVSpan Height in cells
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07001298 * @param resultRect Rect into which to put the results
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001299 */
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07001300 public void cellToRect(int cellX, int cellY, int cellHSpan, int cellVSpan, RectF resultRect) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001301 final int cellWidth = mCellWidth;
1302 final int cellHeight = mCellHeight;
1303 final int widthGap = mWidthGap;
1304 final int heightGap = mHeightGap;
Winson Chungaafa03c2010-06-11 17:34:16 -07001305
1306 final int hStartPadding = getLeftPadding();
1307 final int vStartPadding = getTopPadding();
1308
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001309 int width = cellHSpan * cellWidth + ((cellHSpan - 1) * widthGap);
1310 int height = cellVSpan * cellHeight + ((cellVSpan - 1) * heightGap);
1311
1312 int x = hStartPadding + cellX * (cellWidth + widthGap);
1313 int y = vStartPadding + cellY * (cellHeight + heightGap);
Winson Chungaafa03c2010-06-11 17:34:16 -07001314
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07001315 resultRect.set(x, y, x + width, y + height);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001316 }
Winson Chungaafa03c2010-06-11 17:34:16 -07001317
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001318 /**
Winson Chungaafa03c2010-06-11 17:34:16 -07001319 * Computes the required horizontal and vertical cell spans to always
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001320 * fit the given rectangle.
Winson Chungaafa03c2010-06-11 17:34:16 -07001321 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001322 * @param width Width in pixels
1323 * @param height Height in pixels
Patrick Dubroy8f86ddc2010-07-16 13:55:32 -07001324 * @param result An array of length 2 in which to store the result (may be null).
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001325 */
Patrick Dubroy8f86ddc2010-07-16 13:55:32 -07001326 public int[] rectToCell(int width, int height, int[] result) {
Michael Jurka9987a5c2010-10-08 16:58:12 -07001327 return rectToCell(getResources(), width, height, result);
1328 }
1329
1330 public static int[] rectToCell(Resources resources, int width, int height, int[] result) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001331 // Always assume we're working with the smallest span to make sure we
1332 // reserve enough space in both orientations.
Joe Onorato79e56262009-09-21 15:23:04 -04001333 int actualWidth = resources.getDimensionPixelSize(R.dimen.workspace_cell_width);
1334 int actualHeight = resources.getDimensionPixelSize(R.dimen.workspace_cell_height);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001335 int smallerSize = Math.min(actualWidth, actualHeight);
Joe Onorato79e56262009-09-21 15:23:04 -04001336
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001337 // Always round up to next largest cell
1338 int spanX = (width + smallerSize) / smallerSize;
1339 int spanY = (height + smallerSize) / smallerSize;
Joe Onorato79e56262009-09-21 15:23:04 -04001340
Patrick Dubroy8f86ddc2010-07-16 13:55:32 -07001341 if (result == null) {
1342 return new int[] { spanX, spanY };
1343 }
1344 result[0] = spanX;
1345 result[1] = spanY;
1346 return result;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001347 }
1348
Michael Jurkaf12c75c2011-01-25 22:41:40 -08001349 public int[] cellSpansToSize(int hSpans, int vSpans) {
1350 int[] size = new int[2];
1351 size[0] = hSpans * mCellWidth + (hSpans - 1) * mWidthGap;
1352 size[1] = vSpans * mCellHeight + (vSpans - 1) * mHeightGap;
1353 return size;
1354 }
1355
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001356 /**
Patrick Dubroy047379a2010-12-19 22:02:04 -08001357 * Calculate the grid spans needed to fit given item
1358 */
1359 public void calculateSpans(ItemInfo info) {
1360 final int minWidth;
1361 final int minHeight;
1362
1363 if (info instanceof LauncherAppWidgetInfo) {
1364 minWidth = ((LauncherAppWidgetInfo) info).minWidth;
1365 minHeight = ((LauncherAppWidgetInfo) info).minHeight;
1366 } else if (info instanceof PendingAddWidgetInfo) {
1367 minWidth = ((PendingAddWidgetInfo) info).minWidth;
1368 minHeight = ((PendingAddWidgetInfo) info).minHeight;
1369 } else {
1370 // It's not a widget, so it must be 1x1
1371 info.spanX = info.spanY = 1;
1372 return;
1373 }
1374 int[] spans = rectToCell(minWidth, minHeight, null);
1375 info.spanX = spans[0];
1376 info.spanY = spans[1];
1377 }
1378
1379 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001380 * Find the first vacant cell, if there is one.
1381 *
1382 * @param vacant Holds the x and y coordinate of the vacant cell
1383 * @param spanX Horizontal cell span.
1384 * @param spanY Vertical cell span.
Winson Chungaafa03c2010-06-11 17:34:16 -07001385 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001386 * @return True if a vacant cell was found
1387 */
1388 public boolean getVacantCell(int[] vacant, int spanX, int spanY) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001389
Michael Jurka0280c3b2010-09-17 15:00:07 -07001390 return findVacantCell(vacant, spanX, spanY, mCountX, mCountY, mOccupied);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001391 }
1392
1393 static boolean findVacantCell(int[] vacant, int spanX, int spanY,
1394 int xCount, int yCount, boolean[][] occupied) {
1395
1396 for (int x = 0; x < xCount; x++) {
1397 for (int y = 0; y < yCount; y++) {
1398 boolean available = !occupied[x][y];
1399out: for (int i = x; i < x + spanX - 1 && x < xCount; i++) {
1400 for (int j = y; j < y + spanY - 1 && y < yCount; j++) {
1401 available = available && !occupied[i][j];
1402 if (!available) break out;
1403 }
1404 }
1405
1406 if (available) {
1407 vacant[0] = x;
1408 vacant[1] = y;
1409 return true;
1410 }
1411 }
1412 }
1413
1414 return false;
1415 }
1416
Michael Jurka0280c3b2010-09-17 15:00:07 -07001417 private void clearOccupiedCells() {
1418 for (int x = 0; x < mCountX; x++) {
1419 for (int y = 0; y < mCountY; y++) {
1420 mOccupied[x][y] = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001421 }
1422 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001423 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001424
Adam Cohen1b607ed2011-03-03 17:26:50 -08001425 /**
1426 * Given a view, determines how much that view can be expanded in all directions, in terms of
1427 * whether or not there are other items occupying adjacent cells. Used by the
1428 * AppWidgetResizeFrame to determine how the widget can be resized.
1429 */
Adam Cohend4844c32011-02-18 19:25:06 -08001430 public void getExpandabilityArrayForView(View view, int[] expandability) {
Adam Cohen1b607ed2011-03-03 17:26:50 -08001431 final LayoutParams lp = (LayoutParams) view.getLayoutParams();
Adam Cohend4844c32011-02-18 19:25:06 -08001432 boolean flag;
1433
Adam Cohen1b607ed2011-03-03 17:26:50 -08001434 expandability[AppWidgetResizeFrame.LEFT] = 0;
Adam Cohend4844c32011-02-18 19:25:06 -08001435 for (int x = lp.cellX - 1; x >= 0; x--) {
1436 flag = false;
1437 for (int y = lp.cellY; y < lp.cellY + lp.cellVSpan; y++) {
1438 if (mOccupied[x][y]) flag = true;
1439 }
1440 if (flag) break;
Adam Cohen1b607ed2011-03-03 17:26:50 -08001441 expandability[AppWidgetResizeFrame.LEFT]++;
Adam Cohend4844c32011-02-18 19:25:06 -08001442 }
1443
Adam Cohen1b607ed2011-03-03 17:26:50 -08001444 expandability[AppWidgetResizeFrame.TOP] = 0;
Adam Cohend4844c32011-02-18 19:25:06 -08001445 for (int y = lp.cellY - 1; y >= 0; y--) {
1446 flag = false;
1447 for (int x = lp.cellX; x < lp.cellX + lp.cellHSpan; x++) {
1448 if (mOccupied[x][y]) flag = true;
1449 }
1450 if (flag) break;
Adam Cohen1b607ed2011-03-03 17:26:50 -08001451 expandability[AppWidgetResizeFrame.TOP]++;
1452 }
Adam Cohend4844c32011-02-18 19:25:06 -08001453
Adam Cohen1b607ed2011-03-03 17:26:50 -08001454 expandability[AppWidgetResizeFrame.RIGHT] = 0;
Adam Cohend4844c32011-02-18 19:25:06 -08001455 for (int x = lp.cellX + lp.cellHSpan; x < mCountX; x++) {
1456 flag = false;
1457 for (int y = lp.cellY; y < lp.cellY + lp.cellVSpan; y++) {
1458 if (mOccupied[x][y]) flag = true;
1459 }
1460 if (flag) break;
Adam Cohen1b607ed2011-03-03 17:26:50 -08001461 expandability[AppWidgetResizeFrame.RIGHT]++;
1462 }
Adam Cohend4844c32011-02-18 19:25:06 -08001463
Adam Cohen1b607ed2011-03-03 17:26:50 -08001464 expandability[AppWidgetResizeFrame.BOTTOM] = 0;
Adam Cohend4844c32011-02-18 19:25:06 -08001465 for (int y = lp.cellY + lp.cellVSpan; y < mCountY; y++) {
1466 flag = false;
1467 for (int x = lp.cellX; x < lp.cellX + lp.cellHSpan; x++) {
1468 if (mOccupied[x][y]) flag = true;
1469 }
1470 if (flag) break;
Adam Cohen1b607ed2011-03-03 17:26:50 -08001471 expandability[AppWidgetResizeFrame.BOTTOM]++;
1472 }
Adam Cohend4844c32011-02-18 19:25:06 -08001473 }
1474
Michael Jurka0280c3b2010-09-17 15:00:07 -07001475 public void onMove(View view, int newCellX, int newCellY) {
1476 LayoutParams lp = (LayoutParams) view.getLayoutParams();
1477 markCellsAsUnoccupiedForView(view);
1478 markCellsForView(newCellX, newCellY, lp.cellHSpan, lp.cellVSpan, true);
1479 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001480
Adam Cohend4844c32011-02-18 19:25:06 -08001481 public void markCellsAsOccupiedForView(View view) {
Michael Jurka8c920dd2011-01-20 14:16:56 -08001482 if (view == null || view.getParent() != mChildren) return;
Michael Jurka0280c3b2010-09-17 15:00:07 -07001483 LayoutParams lp = (LayoutParams) view.getLayoutParams();
1484 markCellsForView(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan, true);
1485 }
1486
Adam Cohend4844c32011-02-18 19:25:06 -08001487 public void markCellsAsUnoccupiedForView(View view) {
Michael Jurka8c920dd2011-01-20 14:16:56 -08001488 if (view == null || view.getParent() != mChildren) return;
Michael Jurka0280c3b2010-09-17 15:00:07 -07001489 LayoutParams lp = (LayoutParams) view.getLayoutParams();
1490 markCellsForView(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan, false);
1491 }
1492
1493 private void markCellsForView(int cellX, int cellY, int spanX, int spanY, boolean value) {
1494 for (int x = cellX; x < cellX + spanX && x < mCountX; x++) {
1495 for (int y = cellY; y < cellY + spanY && y < mCountY; y++) {
1496 mOccupied[x][y] = value;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001497 }
1498 }
1499 }
1500
1501 @Override
1502 public ViewGroup.LayoutParams generateLayoutParams(AttributeSet attrs) {
1503 return new CellLayout.LayoutParams(getContext(), attrs);
1504 }
1505
1506 @Override
1507 protected boolean checkLayoutParams(ViewGroup.LayoutParams p) {
1508 return p instanceof CellLayout.LayoutParams;
1509 }
1510
1511 @Override
1512 protected ViewGroup.LayoutParams generateLayoutParams(ViewGroup.LayoutParams p) {
1513 return new CellLayout.LayoutParams(p);
1514 }
1515
Winson Chungaafa03c2010-06-11 17:34:16 -07001516 public static class CellLayoutAnimationController extends LayoutAnimationController {
1517 public CellLayoutAnimationController(Animation animation, float delay) {
1518 super(animation, delay);
1519 }
1520
1521 @Override
1522 protected long getDelayForView(View view) {
1523 return (int) (Math.random() * 150);
1524 }
1525 }
1526
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001527 public static class LayoutParams extends ViewGroup.MarginLayoutParams {
1528 /**
1529 * Horizontal location of the item in the grid.
1530 */
1531 @ViewDebug.ExportedProperty
1532 public int cellX;
1533
1534 /**
1535 * Vertical location of the item in the grid.
1536 */
1537 @ViewDebug.ExportedProperty
1538 public int cellY;
1539
1540 /**
1541 * Number of cells spanned horizontally by the item.
1542 */
1543 @ViewDebug.ExportedProperty
1544 public int cellHSpan;
1545
1546 /**
1547 * Number of cells spanned vertically by the item.
1548 */
1549 @ViewDebug.ExportedProperty
1550 public int cellVSpan;
Winson Chungaafa03c2010-06-11 17:34:16 -07001551
Adam Cohen1b607ed2011-03-03 17:26:50 -08001552 /**
1553 * Indicates whether the item will set its x, y, width and height parameters freely,
1554 * or whether these will be computed based on cellX, cellY, cellHSpan and cellVSpan.
1555 */
Adam Cohend4844c32011-02-18 19:25:06 -08001556 public boolean isLockedToGrid = true;
1557
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001558 /**
1559 * Is this item currently being dragged
1560 */
1561 public boolean isDragging;
1562
1563 // X coordinate of the view in the layout.
1564 @ViewDebug.ExportedProperty
1565 int x;
1566 // Y coordinate of the view in the layout.
1567 @ViewDebug.ExportedProperty
1568 int y;
1569
Patrick Dubroyce34a972010-10-19 10:34:32 -07001570 /**
1571 * The old X coordinate of this item, relative to its current parent.
1572 * Used to animate the item into its new position.
1573 */
1574 int oldX;
1575
1576 /**
1577 * The old Y coordinate of this item, relative to its current parent.
1578 * Used to animate the item into its new position.
1579 */
1580 int oldY;
1581
Romain Guy84f296c2009-11-04 15:00:44 -08001582 boolean dropped;
Romain Guyfcb9e712009-10-02 16:06:52 -07001583
Michael Jurkad3ef3062010-11-23 16:23:58 -08001584 boolean animateDrop;
1585
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001586 public LayoutParams(Context c, AttributeSet attrs) {
1587 super(c, attrs);
1588 cellHSpan = 1;
1589 cellVSpan = 1;
1590 }
1591
1592 public LayoutParams(ViewGroup.LayoutParams source) {
1593 super(source);
1594 cellHSpan = 1;
1595 cellVSpan = 1;
1596 }
Winson Chungaafa03c2010-06-11 17:34:16 -07001597
1598 public LayoutParams(LayoutParams source) {
1599 super(source);
1600 this.cellX = source.cellX;
1601 this.cellY = source.cellY;
1602 this.cellHSpan = source.cellHSpan;
1603 this.cellVSpan = source.cellVSpan;
1604 }
1605
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001606 public LayoutParams(int cellX, int cellY, int cellHSpan, int cellVSpan) {
Romain Guy8f19cdd2010-01-08 15:07:00 -08001607 super(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001608 this.cellX = cellX;
1609 this.cellY = cellY;
1610 this.cellHSpan = cellHSpan;
1611 this.cellVSpan = cellVSpan;
1612 }
1613
1614 public void setup(int cellWidth, int cellHeight, int widthGap, int heightGap,
1615 int hStartPadding, int vStartPadding) {
Adam Cohend4844c32011-02-18 19:25:06 -08001616 if (isLockedToGrid) {
1617 final int myCellHSpan = cellHSpan;
1618 final int myCellVSpan = cellVSpan;
1619 final int myCellX = cellX;
1620 final int myCellY = cellY;
Adam Cohen1b607ed2011-03-03 17:26:50 -08001621
Adam Cohend4844c32011-02-18 19:25:06 -08001622 width = myCellHSpan * cellWidth + ((myCellHSpan - 1) * widthGap) -
1623 leftMargin - rightMargin;
1624 height = myCellVSpan * cellHeight + ((myCellVSpan - 1) * heightGap) -
1625 topMargin - bottomMargin;
Adam Cohend4844c32011-02-18 19:25:06 -08001626 x = hStartPadding + myCellX * (cellWidth + widthGap) + leftMargin;
1627 y = vStartPadding + myCellY * (cellHeight + heightGap) + topMargin;
1628 }
1629 }
Winson Chungaafa03c2010-06-11 17:34:16 -07001630
Winson Chungaafa03c2010-06-11 17:34:16 -07001631 public String toString() {
1632 return "(" + this.cellX + ", " + this.cellY + ")";
1633 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001634 }
1635
Michael Jurka0280c3b2010-09-17 15:00:07 -07001636 // This class stores info for two purposes:
1637 // 1. When dragging items (mDragInfo in Workspace), we store the View, its cellX & cellY,
1638 // its spanX, spanY, and the screen it is on
1639 // 2. When long clicking on an empty cell in a CellLayout, we save information about the
1640 // cellX and cellY coordinates and which page was clicked. We then set this as a tag on
1641 // the CellLayout that was long clicked
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001642 static final class CellInfo implements ContextMenu.ContextMenuInfo {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001643 View cell;
Michael Jurkaa63c4522010-08-19 13:52:27 -07001644 int cellX = -1;
1645 int cellY = -1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001646 int spanX;
1647 int spanY;
1648 int screen;
1649 boolean valid;
1650
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001651 @Override
1652 public String toString() {
Winson Chungaafa03c2010-06-11 17:34:16 -07001653 return "Cell[view=" + (cell == null ? "null" : cell.getClass())
1654 + ", x=" + cellX + ", y=" + cellY + "]";
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001655 }
1656 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001657}