blob: 636b0417c16df58e679f48530ffac28b852aa1fb [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
Adam Cohene3e27a82011-04-15 12:07:39 -0700739 /**
740 * Given a cell coordinate, return the point that represents the upper left corner of that cell
741 *
742 * @param cellX X coordinate of the cell
743 * @param cellY Y coordinate of the cell
744 *
745 * @param result Array of 2 ints to hold the x and y coordinate of the point
746 */
747 void cellToCenterPoint(int cellX, int cellY, int[] result) {
748 final int hStartPadding = getLeftPadding();
749 final int vStartPadding = getTopPadding();
750
751 result[0] = hStartPadding + cellX * (mCellWidth + mWidthGap) + mCellWidth / 2;
752 result[1] = vStartPadding + cellY * (mCellHeight + mHeightGap) + mCellHeight / 2;
753 }
754
Romain Guy84f296c2009-11-04 15:00:44 -0800755 int getCellWidth() {
756 return mCellWidth;
757 }
758
759 int getCellHeight() {
760 return mCellHeight;
761 }
762
Adam Cohend4844c32011-02-18 19:25:06 -0800763 int getWidthGap() {
764 return mWidthGap;
765 }
766
767 int getHeightGap() {
768 return mHeightGap;
769 }
770
Romain Guy1a304a12009-11-10 00:02:32 -0800771 int getLeftPadding() {
Winson Chungaafa03c2010-06-11 17:34:16 -0700772 return mLeftPadding;
Romain Guy1a304a12009-11-10 00:02:32 -0800773 }
774
775 int getTopPadding() {
Winson Chungaafa03c2010-06-11 17:34:16 -0700776 return mTopPadding;
Romain Guy1a304a12009-11-10 00:02:32 -0800777 }
778
779 int getRightPadding() {
Winson Chungaafa03c2010-06-11 17:34:16 -0700780 return mRightPadding;
Romain Guy1a304a12009-11-10 00:02:32 -0800781 }
782
783 int getBottomPadding() {
Winson Chungaafa03c2010-06-11 17:34:16 -0700784 return mBottomPadding;
Romain Guy1a304a12009-11-10 00:02:32 -0800785 }
786
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800787 @Override
788 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
789 // TODO: currently ignoring padding
Winson Chungaafa03c2010-06-11 17:34:16 -0700790
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800791 int widthSpecMode = MeasureSpec.getMode(widthMeasureSpec);
Winson Chungaafa03c2010-06-11 17:34:16 -0700792 int widthSpecSize = MeasureSpec.getSize(widthMeasureSpec);
793
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800794 int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec);
795 int heightSpecSize = MeasureSpec.getSize(heightMeasureSpec);
Winson Chungaafa03c2010-06-11 17:34:16 -0700796
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800797 if (widthSpecMode == MeasureSpec.UNSPECIFIED || heightSpecMode == MeasureSpec.UNSPECIFIED) {
798 throw new RuntimeException("CellLayout cannot have UNSPECIFIED dimensions");
799 }
800
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800801 final int cellWidth = mCellWidth;
802 final int cellHeight = mCellHeight;
803
Adam Cohend22015c2010-07-26 22:02:18 -0700804 int numWidthGaps = mCountX - 1;
805 int numHeightGaps = mCountY - 1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800806
Winson Chungece7f5b2010-10-22 14:54:12 -0700807 if (mWidthGap < 0 || mHeightGap < 0) {
808 int vSpaceLeft = heightSpecSize - mTopPadding - mBottomPadding - (cellHeight * mCountY);
809 mHeightGap = vSpaceLeft / numHeightGaps;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800810
Winson Chungece7f5b2010-10-22 14:54:12 -0700811 int hSpaceLeft = widthSpecSize - mLeftPadding - mRightPadding - (cellWidth * mCountX);
812 mWidthGap = hSpaceLeft / numWidthGaps;
Winson Chungaafa03c2010-06-11 17:34:16 -0700813
Winson Chungece7f5b2010-10-22 14:54:12 -0700814 // center it around the min gaps
815 int minGap = Math.min(mWidthGap, mHeightGap);
816 mWidthGap = mHeightGap = minGap;
817 }
Michael Jurka5f1c5092010-09-03 14:15:02 -0700818
Michael Jurka8c920dd2011-01-20 14:16:56 -0800819 // Initial values correspond to widthSpecMode == MeasureSpec.EXACTLY
820 int newWidth = widthSpecSize;
821 int newHeight = heightSpecSize;
Michael Jurka5f1c5092010-09-03 14:15:02 -0700822 if (widthSpecMode == MeasureSpec.AT_MOST) {
Michael Jurka8c920dd2011-01-20 14:16:56 -0800823 newWidth = mLeftPadding + mRightPadding + (mCountX * cellWidth) +
Winson Chungece7f5b2010-10-22 14:54:12 -0700824 ((mCountX - 1) * mWidthGap);
Michael Jurka8c920dd2011-01-20 14:16:56 -0800825 newHeight = mTopPadding + mBottomPadding + (mCountY * cellHeight) +
Winson Chungece7f5b2010-10-22 14:54:12 -0700826 ((mCountY - 1) * mHeightGap);
Michael Jurka5f1c5092010-09-03 14:15:02 -0700827 setMeasuredDimension(newWidth, newHeight);
Michael Jurka5f1c5092010-09-03 14:15:02 -0700828 }
Michael Jurka8c920dd2011-01-20 14:16:56 -0800829
830 int count = getChildCount();
831 for (int i = 0; i < count; i++) {
832 View child = getChildAt(i);
833 int childWidthMeasureSpec = MeasureSpec.makeMeasureSpec(newWidth, MeasureSpec.EXACTLY);
834 int childheightMeasureSpec = MeasureSpec.makeMeasureSpec(newHeight,
835 MeasureSpec.EXACTLY);
836 child.measure(childWidthMeasureSpec, childheightMeasureSpec);
837 }
838 setMeasuredDimension(newWidth, newHeight);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800839 }
840
841 @Override
Michael Jurka28750fb2010-09-24 17:43:49 -0700842 protected void onLayout(boolean changed, int l, int t, int r, int b) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800843 int count = getChildCount();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800844 for (int i = 0; i < count; i++) {
Michael Jurka8c920dd2011-01-20 14:16:56 -0800845 View child = getChildAt(i);
846 child.layout(0, 0, r - l, b - t);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800847 }
848 }
849
850 @Override
Michael Jurkadee05892010-07-27 10:01:56 -0700851 protected void onSizeChanged(int w, int h, int oldw, int oldh) {
852 super.onSizeChanged(w, h, oldw, oldh);
Michael Jurka18014792010-10-14 09:01:34 -0700853 mBackgroundRect.set(0, 0, w, h);
Michael Jurka33945b22010-12-21 18:19:38 -0800854 updateGlowRect();
Michael Jurkadee05892010-07-27 10:01:56 -0700855 }
856
857 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800858 protected void setChildrenDrawingCacheEnabled(boolean enabled) {
Michael Jurka8c920dd2011-01-20 14:16:56 -0800859 mChildren.setChildrenDrawingCacheEnabled(enabled);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800860 }
861
862 @Override
863 protected void setChildrenDrawnWithCacheEnabled(boolean enabled) {
Michael Jurka8c920dd2011-01-20 14:16:56 -0800864 mChildren.setChildrenDrawnWithCacheEnabled(enabled);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800865 }
866
Michael Jurka5f1c5092010-09-03 14:15:02 -0700867 public float getBackgroundAlpha() {
868 return mBackgroundAlpha;
Michael Jurkadee05892010-07-27 10:01:56 -0700869 }
870
Michael Jurka742574b2011-02-02 23:51:01 -0800871 public void setFastBackgroundAlpha(float alpha) {
872 mBackgroundAlpha = alpha;
873 }
874
Adam Cohen1b0aaac2010-10-28 11:11:18 -0700875 public void setBackgroundAlphaMultiplier(float multiplier) {
876 mBackgroundAlphaMultiplier = multiplier;
877 }
878
Adam Cohenddb82192010-11-10 16:32:54 -0800879 public float getBackgroundAlphaMultiplier() {
880 return mBackgroundAlphaMultiplier;
881 }
882
Michael Jurka5f1c5092010-09-03 14:15:02 -0700883 public void setBackgroundAlpha(float alpha) {
884 mBackgroundAlpha = alpha;
Michael Jurka0142d492010-08-25 17:46:15 -0700885 invalidate();
Michael Jurkadee05892010-07-27 10:01:56 -0700886 }
887
Michael Jurka5f1c5092010-09-03 14:15:02 -0700888 // Need to return true to let the view system know we know how to handle alpha-- this is
889 // because when our children have an alpha of 0.0f, they are still rendering their "dimmed"
890 // versions
891 @Override
892 protected boolean onSetAlpha(int alpha) {
893 return true;
894 }
895
896 public void setAlpha(float alpha) {
897 setChildrenAlpha(alpha);
898 super.setAlpha(alpha);
899 }
900
Michael Jurka742574b2011-02-02 23:51:01 -0800901 public void setFastAlpha(float alpha) {
902 setFastChildrenAlpha(alpha);
903 super.setFastAlpha(alpha);
904 }
905
Michael Jurkadee05892010-07-27 10:01:56 -0700906 private void setChildrenAlpha(float alpha) {
Michael Jurka0142d492010-08-25 17:46:15 -0700907 final int childCount = getChildCount();
908 for (int i = 0; i < childCount; i++) {
Michael Jurkadee05892010-07-27 10:01:56 -0700909 getChildAt(i).setAlpha(alpha);
910 }
911 }
912
Michael Jurka742574b2011-02-02 23:51:01 -0800913 private void setFastChildrenAlpha(float alpha) {
914 final int childCount = getChildCount();
915 for (int i = 0; i < childCount; i++) {
916 getChildAt(i).setFastAlpha(alpha);
917 }
918 }
919
Patrick Dubroy440c3602010-07-13 17:50:32 -0700920 public View getChildAt(int x, int y) {
Michael Jurka8c920dd2011-01-20 14:16:56 -0800921 return mChildren.getChildAt(x, y);
Patrick Dubroy440c3602010-07-13 17:50:32 -0700922 }
923
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700924 /**
925 * Estimate where the top left cell of the dragged item will land if it is dropped.
926 *
927 * @param originX The X value of the top left corner of the item
928 * @param originY The Y value of the top left corner of the item
929 * @param spanX The number of horizontal cells that the item spans
930 * @param spanY The number of vertical cells that the item spans
931 * @param result The estimated drop cell X and Y.
932 */
933 void estimateDropCell(int originX, int originY, int spanX, int spanY, int[] result) {
Adam Cohend22015c2010-07-26 22:02:18 -0700934 final int countX = mCountX;
935 final int countY = mCountY;
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700936
Michael Jurkaa63c4522010-08-19 13:52:27 -0700937 // pointToCellRounded takes the top left of a cell but will pad that with
938 // cellWidth/2 and cellHeight/2 when finding the matching cell
939 pointToCellRounded(originX, originY, result);
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700940
941 // If the item isn't fully on this screen, snap to the edges
942 int rightOverhang = result[0] + spanX - countX;
943 if (rightOverhang > 0) {
944 result[0] -= rightOverhang; // Snap to right
945 }
946 result[0] = Math.max(0, result[0]); // Snap to left
947 int bottomOverhang = result[1] + spanY - countY;
948 if (bottomOverhang > 0) {
949 result[1] -= bottomOverhang; // Snap to bottom
950 }
951 result[1] = Math.max(0, result[1]); // Snap to top
952 }
953
Joe Onorato4be866d2010-10-10 11:26:02 -0700954 void visualizeDropLocation(
955 View v, Bitmap dragOutline, int originX, int originY, int spanX, int spanY) {
956
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -0700957 final int oldDragCellX = mDragCell[0];
958 final int oldDragCellY = mDragCell[1];
Joe Onorato4be866d2010-10-10 11:26:02 -0700959 final int[] nearest = findNearestVacantArea(originX, originY, spanX, spanY, v, mDragCell);
Winson Chunga9abd0e2010-10-27 17:18:37 -0700960 if (v != null) {
961 mDragCenter.set(originX + (v.getWidth() / 2), originY + (v.getHeight() / 2));
962 } else {
963 mDragCenter.set(originX, originY);
964 }
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700965
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -0700966 if (nearest != null && (nearest[0] != oldDragCellX || nearest[1] != oldDragCellY)) {
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700967 // Find the top left corner of the rect the object will occupy
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700968 final int[] topLeft = mTmpPoint;
969 cellToPoint(nearest[0], nearest[1], topLeft);
970
Joe Onorato4be866d2010-10-10 11:26:02 -0700971 int left = topLeft[0];
972 int top = topLeft[1];
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700973
Winson Chunga9abd0e2010-10-27 17:18:37 -0700974 if (v != null) {
Adam Cohen99e8b402011-03-25 19:23:43 -0700975 // When drawing the drag outline, it did not account for margin offsets
976 // added by the view's parent.
977 MarginLayoutParams lp = (MarginLayoutParams) v.getLayoutParams();
978 left += lp.leftMargin;
979 top += lp.topMargin;
Winson Chung150fbab2010-09-29 17:14:26 -0700980
Adam Cohen99e8b402011-03-25 19:23:43 -0700981 // Offsets due to the size difference between the View and the dragOutline.
982 // There is a size difference to account for the outer blur, which may lie
983 // outside the bounds of the view.
Winson Chunga9abd0e2010-10-27 17:18:37 -0700984 left += (v.getWidth() - dragOutline.getWidth()) / 2;
985 top += (v.getHeight() - dragOutline.getHeight()) / 2;
986 }
Winson Chung150fbab2010-09-29 17:14:26 -0700987
Joe Onorato4be866d2010-10-10 11:26:02 -0700988 final int oldIndex = mDragOutlineCurrent;
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -0700989 mDragOutlineAnims[oldIndex].animateOut();
990 mDragOutlineCurrent = (oldIndex + 1) % mDragOutlines.length;
Winson Chung150fbab2010-09-29 17:14:26 -0700991
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -0700992 mDragOutlines[mDragOutlineCurrent].set(left, top);
993 mDragOutlineAnims[mDragOutlineCurrent].setTag(dragOutline);
994 mDragOutlineAnims[mDragOutlineCurrent].animateIn();
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700995 }
Patrick Dubroy49250ad2010-10-08 15:33:52 -0700996
997 // If we are drawing crosshairs, the entire CellLayout needs to be invalidated
998 if (mCrosshairsDrawable != null) {
999 invalidate();
1000 }
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07001001 }
1002
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001003 /**
Jeff Sharkey70864282009-04-07 21:08:40 -07001004 * Find a vacant area that will fit the given bounds nearest the requested
1005 * cell location. Uses Euclidean distance to score multiple vacant areas.
Winson Chungaafa03c2010-06-11 17:34:16 -07001006 *
Romain Guy51afc022009-05-04 18:03:43 -07001007 * @param pixelX The X location at which you want to search for a vacant area.
1008 * @param pixelY The Y location at which you want to search for a vacant area.
Jeff Sharkey70864282009-04-07 21:08:40 -07001009 * @param spanX Horizontal span of the object.
1010 * @param spanY Vertical span of the object.
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001011 * @param result Array in which to place the result, or null (in which case a new array will
1012 * be allocated)
Jeff Sharkey70864282009-04-07 21:08:40 -07001013 * @return The X, Y cell of a vacant area that can contain this object,
1014 * nearest the requested location.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001015 */
Michael Jurka6a1435d2010-09-27 17:35:12 -07001016 int[] findNearestVacantArea(
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001017 int pixelX, int pixelY, int spanX, int spanY, int[] result) {
1018 return findNearestVacantArea(pixelX, pixelY, spanX, spanY, null, result);
Michael Jurka6a1435d2010-09-27 17:35:12 -07001019 }
Winson Chungaafa03c2010-06-11 17:34:16 -07001020
Michael Jurka6a1435d2010-09-27 17:35:12 -07001021 /**
1022 * Find a vacant area that will fit the given bounds nearest the requested
1023 * cell location. Uses Euclidean distance to score multiple vacant areas.
1024 *
1025 * @param pixelX The X location at which you want to search for a vacant area.
1026 * @param pixelY The Y location at which you want to search for a vacant area.
1027 * @param spanX Horizontal span of the object.
1028 * @param spanY Vertical span of the object.
Adam Cohendf035382011-04-11 17:22:04 -07001029 * @param ignoreOccupied If true, the result can be an occupied cell
1030 * @param result Array in which to place the result, or null (in which case a new array will
1031 * be allocated)
Michael Jurka6a1435d2010-09-27 17:35:12 -07001032 * @return The X, Y cell of a vacant area that can contain this object,
1033 * nearest the requested location.
1034 */
Adam Cohendf035382011-04-11 17:22:04 -07001035 int[] findNearestArea(int pixelX, int pixelY, int spanX, int spanY, View ignoreView,
1036 boolean ignoreOccupied, int[] result) {
Michael Jurkac6ee42e2010-09-30 12:04:50 -07001037 // mark space take by ignoreView as available (method checks if ignoreView is null)
1038 markCellsAsUnoccupiedForView(ignoreView);
1039
Adam Cohene3e27a82011-04-15 12:07:39 -07001040 // For items with a spanX / spanY > 1, the passed in point (pixelX, pixelY) corresponds
1041 // to the center of the item, but we are searching based on the top-left cell, so
1042 // we translate the point over to correspond to the top-left.
1043 pixelX -= (mCellWidth + mWidthGap) * (spanX - 1) / 2f;
1044 pixelY -= (mCellHeight + mHeightGap) * (spanY - 1) / 2f;
1045
Jeff Sharkey70864282009-04-07 21:08:40 -07001046 // Keep track of best-scoring drop area
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001047 final int[] bestXY = result != null ? result : new int[2];
Jeff Sharkey70864282009-04-07 21:08:40 -07001048 double bestDistance = Double.MAX_VALUE;
Winson Chungaafa03c2010-06-11 17:34:16 -07001049
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001050 final int countX = mCountX;
1051 final int countY = mCountY;
1052 final boolean[][] occupied = mOccupied;
1053
Winson Chungbbc60d82010-11-11 16:34:41 -08001054 for (int y = 0; y < countY - (spanY - 1); y++) {
Michael Jurkac28de512010-08-13 11:27:44 -07001055 inner:
Winson Chungbbc60d82010-11-11 16:34:41 -08001056 for (int x = 0; x < countX - (spanX - 1); x++) {
Adam Cohendf035382011-04-11 17:22:04 -07001057 if (ignoreOccupied) {
1058 for (int i = 0; i < spanX; i++) {
1059 for (int j = 0; j < spanY; j++) {
1060 if (occupied[x + i][y + j]) {
1061 // small optimization: we can skip to after the column we
1062 // just found an occupied cell
1063 x += i;
1064 continue inner;
1065 }
Michael Jurkac28de512010-08-13 11:27:44 -07001066 }
1067 }
1068 }
1069 final int[] cellXY = mTmpCellXY;
Adam Cohene3e27a82011-04-15 12:07:39 -07001070 cellToCenterPoint(x, y, cellXY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001071
Michael Jurkac28de512010-08-13 11:27:44 -07001072 double distance = Math.sqrt(Math.pow(cellXY[0] - pixelX, 2)
1073 + Math.pow(cellXY[1] - pixelY, 2));
1074 if (distance <= bestDistance) {
1075 bestDistance = distance;
1076 bestXY[0] = x;
1077 bestXY[1] = y;
1078 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001079 }
1080 }
Michael Jurkac6ee42e2010-09-30 12:04:50 -07001081 // re-mark space taken by ignoreView as occupied
1082 markCellsAsOccupiedForView(ignoreView);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001083
Winson Chungaafa03c2010-06-11 17:34:16 -07001084 // Return null if no suitable location found
Jeff Sharkey70864282009-04-07 21:08:40 -07001085 if (bestDistance < Double.MAX_VALUE) {
1086 return bestXY;
1087 } else {
1088 return null;
1089 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001090 }
Winson Chungaafa03c2010-06-11 17:34:16 -07001091
Adam Cohendf035382011-04-11 17:22:04 -07001092 /**
1093 * Find a vacant area that will fit the given bounds nearest the requested
1094 * cell location. Uses Euclidean distance to score multiple vacant areas.
1095 *
1096 * @param pixelX The X location at which you want to search for a vacant area.
1097 * @param pixelY The Y location at which you want to search for a vacant area.
1098 * @param spanX Horizontal span of the object.
1099 * @param spanY Vertical span of the object.
1100 * @param ignoreView Considers space occupied by this view as unoccupied
1101 * @param result Previously returned value to possibly recycle.
1102 * @return The X, Y cell of a vacant area that can contain this object,
1103 * nearest the requested location.
1104 */
1105 int[] findNearestVacantArea(
1106 int pixelX, int pixelY, int spanX, int spanY, View ignoreView, int[] result) {
1107 return findNearestArea(pixelX, pixelY, spanX, spanY, ignoreView, true, result);
1108 }
1109
1110 /**
1111 * Find a starting cell position that will fit the given bounds nearest the requested
1112 * cell location. Uses Euclidean distance to score multiple vacant areas.
1113 *
1114 * @param pixelX The X location at which you want to search for a vacant area.
1115 * @param pixelY The Y location at which you want to search for a vacant area.
1116 * @param spanX Horizontal span of the object.
1117 * @param spanY Vertical span of the object.
1118 * @param ignoreView Considers space occupied by this view as unoccupied
1119 * @param result Previously returned value to possibly recycle.
1120 * @return The X, Y cell of a vacant area that can contain this object,
1121 * nearest the requested location.
1122 */
1123 int[] findNearestArea(
1124 int pixelX, int pixelY, int spanX, int spanY, int[] result) {
1125 return findNearestArea(pixelX, pixelY, spanX, spanY, null, false, result);
1126 }
1127
Michael Jurka0280c3b2010-09-17 15:00:07 -07001128 boolean existsEmptyCell() {
1129 return findCellForSpan(null, 1, 1);
1130 }
1131
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001132 /**
Michael Jurka0280c3b2010-09-17 15:00:07 -07001133 * Finds the upper-left coordinate of the first rectangle in the grid that can
1134 * hold a cell of the specified dimensions. If intersectX and intersectY are not -1,
1135 * then this method will only return coordinates for rectangles that contain the cell
1136 * (intersectX, intersectY)
1137 *
1138 * @param cellXY The array that will contain the position of a vacant cell if such a cell
1139 * can be found.
1140 * @param spanX The horizontal span of the cell we want to find.
1141 * @param spanY The vertical span of the cell we want to find.
1142 *
1143 * @return True if a vacant cell of the specified dimension was found, false otherwise.
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07001144 */
Michael Jurka0280c3b2010-09-17 15:00:07 -07001145 boolean findCellForSpan(int[] cellXY, int spanX, int spanY) {
1146 return findCellForSpanThatIntersectsIgnoring(cellXY, spanX, spanY, -1, -1, null);
1147 }
1148
1149 /**
1150 * Like above, but ignores any cells occupied by the item "ignoreView"
1151 *
1152 * @param cellXY The array that will contain the position of a vacant cell if such a cell
1153 * can be found.
1154 * @param spanX The horizontal span of the cell we want to find.
1155 * @param spanY The vertical span of the cell we want to find.
1156 * @param ignoreView The home screen item we should treat as not occupying any space
1157 * @return
1158 */
1159 boolean findCellForSpanIgnoring(int[] cellXY, int spanX, int spanY, View ignoreView) {
1160 return findCellForSpanThatIntersectsIgnoring(cellXY, spanX, spanY, -1, -1, ignoreView);
1161 }
1162
1163 /**
1164 * Like above, but if intersectX and intersectY are not -1, then this method will try to
1165 * return coordinates for rectangles that contain the cell [intersectX, intersectY]
1166 *
1167 * @param spanX The horizontal span of the cell we want to find.
1168 * @param spanY The vertical span of the cell we want to find.
1169 * @param ignoreView The home screen item we should treat as not occupying any space
1170 * @param intersectX The X coordinate of the cell that we should try to overlap
1171 * @param intersectX The Y coordinate of the cell that we should try to overlap
1172 *
1173 * @return True if a vacant cell of the specified dimension was found, false otherwise.
1174 */
1175 boolean findCellForSpanThatIntersects(int[] cellXY, int spanX, int spanY,
1176 int intersectX, int intersectY) {
1177 return findCellForSpanThatIntersectsIgnoring(
1178 cellXY, spanX, spanY, intersectX, intersectY, null);
1179 }
1180
1181 /**
1182 * The superset of the above two methods
1183 */
1184 boolean findCellForSpanThatIntersectsIgnoring(int[] cellXY, int spanX, int spanY,
1185 int intersectX, int intersectY, View ignoreView) {
Michael Jurkac6ee42e2010-09-30 12:04:50 -07001186 // mark space take by ignoreView as available (method checks if ignoreView is null)
1187 markCellsAsUnoccupiedForView(ignoreView);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001188
Michael Jurka28750fb2010-09-24 17:43:49 -07001189 boolean foundCell = false;
Michael Jurka0280c3b2010-09-17 15:00:07 -07001190 while (true) {
1191 int startX = 0;
1192 if (intersectX >= 0) {
1193 startX = Math.max(startX, intersectX - (spanX - 1));
1194 }
1195 int endX = mCountX - (spanX - 1);
1196 if (intersectX >= 0) {
1197 endX = Math.min(endX, intersectX + (spanX - 1) + (spanX == 1 ? 1 : 0));
1198 }
1199 int startY = 0;
1200 if (intersectY >= 0) {
1201 startY = Math.max(startY, intersectY - (spanY - 1));
1202 }
1203 int endY = mCountY - (spanY - 1);
1204 if (intersectY >= 0) {
1205 endY = Math.min(endY, intersectY + (spanY - 1) + (spanY == 1 ? 1 : 0));
1206 }
1207
Winson Chungbbc60d82010-11-11 16:34:41 -08001208 for (int y = startY; y < endY && !foundCell; y++) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001209 inner:
Winson Chungbbc60d82010-11-11 16:34:41 -08001210 for (int x = startX; x < endX; x++) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001211 for (int i = 0; i < spanX; i++) {
1212 for (int j = 0; j < spanY; j++) {
1213 if (mOccupied[x + i][y + j]) {
Winson Chungbbc60d82010-11-11 16:34:41 -08001214 // small optimization: we can skip to after the column we just found
Michael Jurka0280c3b2010-09-17 15:00:07 -07001215 // an occupied cell
Winson Chungbbc60d82010-11-11 16:34:41 -08001216 x += i;
Michael Jurka0280c3b2010-09-17 15:00:07 -07001217 continue inner;
1218 }
1219 }
1220 }
1221 if (cellXY != null) {
1222 cellXY[0] = x;
1223 cellXY[1] = y;
1224 }
Michael Jurka28750fb2010-09-24 17:43:49 -07001225 foundCell = true;
1226 break;
Michael Jurka0280c3b2010-09-17 15:00:07 -07001227 }
1228 }
1229 if (intersectX == -1 && intersectY == -1) {
1230 break;
1231 } else {
1232 // if we failed to find anything, try again but without any requirements of
1233 // intersecting
1234 intersectX = -1;
1235 intersectY = -1;
1236 continue;
1237 }
1238 }
1239
Michael Jurkac6ee42e2010-09-30 12:04:50 -07001240 // re-mark space taken by ignoreView as occupied
1241 markCellsAsOccupiedForView(ignoreView);
Michael Jurka28750fb2010-09-24 17:43:49 -07001242 return foundCell;
Michael Jurka0280c3b2010-09-17 15:00:07 -07001243 }
1244
1245 /**
1246 * Called when drag has left this CellLayout or has been completed (successfully or not)
1247 */
1248 void onDragExit() {
Joe Onorato4be866d2010-10-10 11:26:02 -07001249 // This can actually be called when we aren't in a drag, e.g. when adding a new
1250 // item to this layout via the customize drawer.
1251 // Guard against that case.
1252 if (mDragging) {
1253 mDragging = false;
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07001254
Joe Onorato4be866d2010-10-10 11:26:02 -07001255 // Fade out the drag indicators
1256 if (mCrosshairsAnimator != null) {
1257 mCrosshairsAnimator.animateOut();
1258 }
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001259 }
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07001260
1261 // Invalidate the drag data
1262 mDragCell[0] = -1;
1263 mDragCell[1] = -1;
1264 mDragOutlineAnims[mDragOutlineCurrent].animateOut();
1265 mDragOutlineCurrent = (mDragOutlineCurrent + 1) % mDragOutlineAnims.length;
1266
Michael Jurka33945b22010-12-21 18:19:38 -08001267 setIsDragOverlapping(false);
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07001268 }
1269
1270 /**
Winson Chungaafa03c2010-06-11 17:34:16 -07001271 * Mark a child as having been dropped.
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001272 * At the beginning of the drag operation, the child may have been on another
Patrick Dubroyce34a972010-10-19 10:34:32 -07001273 * screen, but it is re-parented before this method is called.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001274 *
1275 * @param child The child that is being dropped
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001276 */
Michael Jurkad3ef3062010-11-23 16:23:58 -08001277 void onDropChild(View child, boolean animate) {
Romain Guyd94533d2009-08-17 10:01:15 -07001278 if (child != null) {
1279 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Romain Guyd94533d2009-08-17 10:01:15 -07001280 lp.isDragging = false;
Romain Guy84f296c2009-11-04 15:00:44 -08001281 lp.dropped = true;
Michael Jurkad3ef3062010-11-23 16:23:58 -08001282 lp.animateDrop = animate;
Patrick Dubroye3887cc2011-01-20 10:43:40 -08001283 child.setVisibility(animate ? View.INVISIBLE : View.VISIBLE);
Romain Guyd94533d2009-08-17 10:01:15 -07001284 child.requestLayout();
Romain Guyd94533d2009-08-17 10:01:15 -07001285 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001286 }
1287
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001288 /**
1289 * Start dragging the specified child
Winson Chungaafa03c2010-06-11 17:34:16 -07001290 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001291 * @param child The child that is being dragged
1292 */
1293 void onDragChild(View child) {
1294 LayoutParams lp = (LayoutParams) child.getLayoutParams();
1295 lp.isDragging = true;
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001296 }
1297
1298 /**
1299 * A drag event has begun over this layout.
1300 * It may have begun over this layout (in which case onDragChild is called first),
1301 * or it may have begun on another layout.
1302 */
Winson Chunga9abd0e2010-10-27 17:18:37 -07001303 void onDragEnter() {
Patrick Dubroyfe6bd872010-10-13 17:32:10 -07001304 if (!mDragging) {
Patrick Dubroyfe6bd872010-10-13 17:32:10 -07001305 // Fade in the drag indicators
1306 if (mCrosshairsAnimator != null) {
1307 mCrosshairsAnimator.animateIn();
1308 }
Joe Onorato4be866d2010-10-10 11:26:02 -07001309 }
1310 mDragging = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001311 }
Winson Chungaafa03c2010-06-11 17:34:16 -07001312
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001313 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001314 * Computes a bounding rectangle for a range of cells
Winson Chungaafa03c2010-06-11 17:34:16 -07001315 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001316 * @param cellX X coordinate of upper left corner expressed as a cell position
1317 * @param cellY Y coordinate of upper left corner expressed as a cell position
Winson Chungaafa03c2010-06-11 17:34:16 -07001318 * @param cellHSpan Width in cells
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001319 * @param cellVSpan Height in cells
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07001320 * @param resultRect Rect into which to put the results
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001321 */
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07001322 public void cellToRect(int cellX, int cellY, int cellHSpan, int cellVSpan, RectF resultRect) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001323 final int cellWidth = mCellWidth;
1324 final int cellHeight = mCellHeight;
1325 final int widthGap = mWidthGap;
1326 final int heightGap = mHeightGap;
Winson Chungaafa03c2010-06-11 17:34:16 -07001327
1328 final int hStartPadding = getLeftPadding();
1329 final int vStartPadding = getTopPadding();
1330
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001331 int width = cellHSpan * cellWidth + ((cellHSpan - 1) * widthGap);
1332 int height = cellVSpan * cellHeight + ((cellVSpan - 1) * heightGap);
1333
1334 int x = hStartPadding + cellX * (cellWidth + widthGap);
1335 int y = vStartPadding + cellY * (cellHeight + heightGap);
Winson Chungaafa03c2010-06-11 17:34:16 -07001336
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07001337 resultRect.set(x, y, x + width, y + height);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001338 }
Winson Chungaafa03c2010-06-11 17:34:16 -07001339
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001340 /**
Winson Chungaafa03c2010-06-11 17:34:16 -07001341 * Computes the required horizontal and vertical cell spans to always
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001342 * fit the given rectangle.
Winson Chungaafa03c2010-06-11 17:34:16 -07001343 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001344 * @param width Width in pixels
1345 * @param height Height in pixels
Patrick Dubroy8f86ddc2010-07-16 13:55:32 -07001346 * @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 -08001347 */
Patrick Dubroy8f86ddc2010-07-16 13:55:32 -07001348 public int[] rectToCell(int width, int height, int[] result) {
Michael Jurka9987a5c2010-10-08 16:58:12 -07001349 return rectToCell(getResources(), width, height, result);
1350 }
1351
1352 public static int[] rectToCell(Resources resources, int width, int height, int[] result) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001353 // Always assume we're working with the smallest span to make sure we
1354 // reserve enough space in both orientations.
Joe Onorato79e56262009-09-21 15:23:04 -04001355 int actualWidth = resources.getDimensionPixelSize(R.dimen.workspace_cell_width);
1356 int actualHeight = resources.getDimensionPixelSize(R.dimen.workspace_cell_height);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001357 int smallerSize = Math.min(actualWidth, actualHeight);
Joe Onorato79e56262009-09-21 15:23:04 -04001358
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001359 // Always round up to next largest cell
1360 int spanX = (width + smallerSize) / smallerSize;
1361 int spanY = (height + smallerSize) / smallerSize;
Joe Onorato79e56262009-09-21 15:23:04 -04001362
Patrick Dubroy8f86ddc2010-07-16 13:55:32 -07001363 if (result == null) {
1364 return new int[] { spanX, spanY };
1365 }
1366 result[0] = spanX;
1367 result[1] = spanY;
1368 return result;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001369 }
1370
Michael Jurkaf12c75c2011-01-25 22:41:40 -08001371 public int[] cellSpansToSize(int hSpans, int vSpans) {
1372 int[] size = new int[2];
1373 size[0] = hSpans * mCellWidth + (hSpans - 1) * mWidthGap;
1374 size[1] = vSpans * mCellHeight + (vSpans - 1) * mHeightGap;
1375 return size;
1376 }
1377
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001378 /**
Patrick Dubroy047379a2010-12-19 22:02:04 -08001379 * Calculate the grid spans needed to fit given item
1380 */
1381 public void calculateSpans(ItemInfo info) {
1382 final int minWidth;
1383 final int minHeight;
1384
1385 if (info instanceof LauncherAppWidgetInfo) {
1386 minWidth = ((LauncherAppWidgetInfo) info).minWidth;
1387 minHeight = ((LauncherAppWidgetInfo) info).minHeight;
1388 } else if (info instanceof PendingAddWidgetInfo) {
1389 minWidth = ((PendingAddWidgetInfo) info).minWidth;
1390 minHeight = ((PendingAddWidgetInfo) info).minHeight;
1391 } else {
1392 // It's not a widget, so it must be 1x1
1393 info.spanX = info.spanY = 1;
1394 return;
1395 }
1396 int[] spans = rectToCell(minWidth, minHeight, null);
1397 info.spanX = spans[0];
1398 info.spanY = spans[1];
1399 }
1400
1401 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001402 * Find the first vacant cell, if there is one.
1403 *
1404 * @param vacant Holds the x and y coordinate of the vacant cell
1405 * @param spanX Horizontal cell span.
1406 * @param spanY Vertical cell span.
Winson Chungaafa03c2010-06-11 17:34:16 -07001407 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001408 * @return True if a vacant cell was found
1409 */
1410 public boolean getVacantCell(int[] vacant, int spanX, int spanY) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001411
Michael Jurka0280c3b2010-09-17 15:00:07 -07001412 return findVacantCell(vacant, spanX, spanY, mCountX, mCountY, mOccupied);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001413 }
1414
1415 static boolean findVacantCell(int[] vacant, int spanX, int spanY,
1416 int xCount, int yCount, boolean[][] occupied) {
1417
1418 for (int x = 0; x < xCount; x++) {
1419 for (int y = 0; y < yCount; y++) {
1420 boolean available = !occupied[x][y];
1421out: for (int i = x; i < x + spanX - 1 && x < xCount; i++) {
1422 for (int j = y; j < y + spanY - 1 && y < yCount; j++) {
1423 available = available && !occupied[i][j];
1424 if (!available) break out;
1425 }
1426 }
1427
1428 if (available) {
1429 vacant[0] = x;
1430 vacant[1] = y;
1431 return true;
1432 }
1433 }
1434 }
1435
1436 return false;
1437 }
1438
Michael Jurka0280c3b2010-09-17 15:00:07 -07001439 private void clearOccupiedCells() {
1440 for (int x = 0; x < mCountX; x++) {
1441 for (int y = 0; y < mCountY; y++) {
1442 mOccupied[x][y] = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001443 }
1444 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001445 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001446
Adam Cohen1b607ed2011-03-03 17:26:50 -08001447 /**
1448 * Given a view, determines how much that view can be expanded in all directions, in terms of
1449 * whether or not there are other items occupying adjacent cells. Used by the
1450 * AppWidgetResizeFrame to determine how the widget can be resized.
1451 */
Adam Cohend4844c32011-02-18 19:25:06 -08001452 public void getExpandabilityArrayForView(View view, int[] expandability) {
Adam Cohen1b607ed2011-03-03 17:26:50 -08001453 final LayoutParams lp = (LayoutParams) view.getLayoutParams();
Adam Cohend4844c32011-02-18 19:25:06 -08001454 boolean flag;
1455
Adam Cohen1b607ed2011-03-03 17:26:50 -08001456 expandability[AppWidgetResizeFrame.LEFT] = 0;
Adam Cohend4844c32011-02-18 19:25:06 -08001457 for (int x = lp.cellX - 1; x >= 0; x--) {
1458 flag = false;
1459 for (int y = lp.cellY; y < lp.cellY + lp.cellVSpan; y++) {
1460 if (mOccupied[x][y]) flag = true;
1461 }
1462 if (flag) break;
Adam Cohen1b607ed2011-03-03 17:26:50 -08001463 expandability[AppWidgetResizeFrame.LEFT]++;
Adam Cohend4844c32011-02-18 19:25:06 -08001464 }
1465
Adam Cohen1b607ed2011-03-03 17:26:50 -08001466 expandability[AppWidgetResizeFrame.TOP] = 0;
Adam Cohend4844c32011-02-18 19:25:06 -08001467 for (int y = lp.cellY - 1; y >= 0; y--) {
1468 flag = false;
1469 for (int x = lp.cellX; x < lp.cellX + lp.cellHSpan; x++) {
1470 if (mOccupied[x][y]) flag = true;
1471 }
1472 if (flag) break;
Adam Cohen1b607ed2011-03-03 17:26:50 -08001473 expandability[AppWidgetResizeFrame.TOP]++;
1474 }
Adam Cohend4844c32011-02-18 19:25:06 -08001475
Adam Cohen1b607ed2011-03-03 17:26:50 -08001476 expandability[AppWidgetResizeFrame.RIGHT] = 0;
Adam Cohend4844c32011-02-18 19:25:06 -08001477 for (int x = lp.cellX + lp.cellHSpan; x < mCountX; x++) {
1478 flag = false;
1479 for (int y = lp.cellY; y < lp.cellY + lp.cellVSpan; y++) {
1480 if (mOccupied[x][y]) flag = true;
1481 }
1482 if (flag) break;
Adam Cohen1b607ed2011-03-03 17:26:50 -08001483 expandability[AppWidgetResizeFrame.RIGHT]++;
1484 }
Adam Cohend4844c32011-02-18 19:25:06 -08001485
Adam Cohen1b607ed2011-03-03 17:26:50 -08001486 expandability[AppWidgetResizeFrame.BOTTOM] = 0;
Adam Cohend4844c32011-02-18 19:25:06 -08001487 for (int y = lp.cellY + lp.cellVSpan; y < mCountY; y++) {
1488 flag = false;
1489 for (int x = lp.cellX; x < lp.cellX + lp.cellHSpan; x++) {
1490 if (mOccupied[x][y]) flag = true;
1491 }
1492 if (flag) break;
Adam Cohen1b607ed2011-03-03 17:26:50 -08001493 expandability[AppWidgetResizeFrame.BOTTOM]++;
1494 }
Adam Cohend4844c32011-02-18 19:25:06 -08001495 }
1496
Michael Jurka0280c3b2010-09-17 15:00:07 -07001497 public void onMove(View view, int newCellX, int newCellY) {
1498 LayoutParams lp = (LayoutParams) view.getLayoutParams();
1499 markCellsAsUnoccupiedForView(view);
1500 markCellsForView(newCellX, newCellY, lp.cellHSpan, lp.cellVSpan, true);
1501 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001502
Adam Cohend4844c32011-02-18 19:25:06 -08001503 public void markCellsAsOccupiedForView(View view) {
Michael Jurka8c920dd2011-01-20 14:16:56 -08001504 if (view == null || view.getParent() != mChildren) return;
Michael Jurka0280c3b2010-09-17 15:00:07 -07001505 LayoutParams lp = (LayoutParams) view.getLayoutParams();
1506 markCellsForView(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan, true);
1507 }
1508
Adam Cohend4844c32011-02-18 19:25:06 -08001509 public void markCellsAsUnoccupiedForView(View view) {
Michael Jurka8c920dd2011-01-20 14:16:56 -08001510 if (view == null || view.getParent() != mChildren) return;
Michael Jurka0280c3b2010-09-17 15:00:07 -07001511 LayoutParams lp = (LayoutParams) view.getLayoutParams();
1512 markCellsForView(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan, false);
1513 }
1514
1515 private void markCellsForView(int cellX, int cellY, int spanX, int spanY, boolean value) {
1516 for (int x = cellX; x < cellX + spanX && x < mCountX; x++) {
1517 for (int y = cellY; y < cellY + spanY && y < mCountY; y++) {
1518 mOccupied[x][y] = value;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001519 }
1520 }
1521 }
1522
Michael Jurka66d72172011-04-12 16:29:25 -07001523 public boolean isOccupied(int x, int y) {
1524 if (x < mCountX && y < mCountY) {
1525 return mOccupied[x][y];
1526 } else {
1527 throw new RuntimeException("Position exceeds the bound of this CellLayout");
1528 }
1529 }
1530
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001531 @Override
1532 public ViewGroup.LayoutParams generateLayoutParams(AttributeSet attrs) {
1533 return new CellLayout.LayoutParams(getContext(), attrs);
1534 }
1535
1536 @Override
1537 protected boolean checkLayoutParams(ViewGroup.LayoutParams p) {
1538 return p instanceof CellLayout.LayoutParams;
1539 }
1540
1541 @Override
1542 protected ViewGroup.LayoutParams generateLayoutParams(ViewGroup.LayoutParams p) {
1543 return new CellLayout.LayoutParams(p);
1544 }
1545
Winson Chungaafa03c2010-06-11 17:34:16 -07001546 public static class CellLayoutAnimationController extends LayoutAnimationController {
1547 public CellLayoutAnimationController(Animation animation, float delay) {
1548 super(animation, delay);
1549 }
1550
1551 @Override
1552 protected long getDelayForView(View view) {
1553 return (int) (Math.random() * 150);
1554 }
1555 }
1556
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001557 public static class LayoutParams extends ViewGroup.MarginLayoutParams {
1558 /**
1559 * Horizontal location of the item in the grid.
1560 */
1561 @ViewDebug.ExportedProperty
1562 public int cellX;
1563
1564 /**
1565 * Vertical location of the item in the grid.
1566 */
1567 @ViewDebug.ExportedProperty
1568 public int cellY;
1569
1570 /**
1571 * Number of cells spanned horizontally by the item.
1572 */
1573 @ViewDebug.ExportedProperty
1574 public int cellHSpan;
1575
1576 /**
1577 * Number of cells spanned vertically by the item.
1578 */
1579 @ViewDebug.ExportedProperty
1580 public int cellVSpan;
Winson Chungaafa03c2010-06-11 17:34:16 -07001581
Adam Cohen1b607ed2011-03-03 17:26:50 -08001582 /**
1583 * Indicates whether the item will set its x, y, width and height parameters freely,
1584 * or whether these will be computed based on cellX, cellY, cellHSpan and cellVSpan.
1585 */
Adam Cohend4844c32011-02-18 19:25:06 -08001586 public boolean isLockedToGrid = true;
1587
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001588 /**
1589 * Is this item currently being dragged
1590 */
1591 public boolean isDragging;
1592
1593 // X coordinate of the view in the layout.
1594 @ViewDebug.ExportedProperty
1595 int x;
1596 // Y coordinate of the view in the layout.
1597 @ViewDebug.ExportedProperty
1598 int y;
1599
Patrick Dubroyce34a972010-10-19 10:34:32 -07001600 /**
1601 * The old X coordinate of this item, relative to its current parent.
1602 * Used to animate the item into its new position.
1603 */
1604 int oldX;
1605
1606 /**
1607 * The old Y coordinate of this item, relative to its current parent.
1608 * Used to animate the item into its new position.
1609 */
1610 int oldY;
1611
Romain Guy84f296c2009-11-04 15:00:44 -08001612 boolean dropped;
Romain Guyfcb9e712009-10-02 16:06:52 -07001613
Michael Jurkad3ef3062010-11-23 16:23:58 -08001614 boolean animateDrop;
1615
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001616 public LayoutParams(Context c, AttributeSet attrs) {
1617 super(c, attrs);
1618 cellHSpan = 1;
1619 cellVSpan = 1;
1620 }
1621
1622 public LayoutParams(ViewGroup.LayoutParams source) {
1623 super(source);
1624 cellHSpan = 1;
1625 cellVSpan = 1;
1626 }
Winson Chungaafa03c2010-06-11 17:34:16 -07001627
1628 public LayoutParams(LayoutParams source) {
1629 super(source);
1630 this.cellX = source.cellX;
1631 this.cellY = source.cellY;
1632 this.cellHSpan = source.cellHSpan;
1633 this.cellVSpan = source.cellVSpan;
1634 }
1635
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001636 public LayoutParams(int cellX, int cellY, int cellHSpan, int cellVSpan) {
Romain Guy8f19cdd2010-01-08 15:07:00 -08001637 super(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001638 this.cellX = cellX;
1639 this.cellY = cellY;
1640 this.cellHSpan = cellHSpan;
1641 this.cellVSpan = cellVSpan;
1642 }
1643
1644 public void setup(int cellWidth, int cellHeight, int widthGap, int heightGap,
1645 int hStartPadding, int vStartPadding) {
Adam Cohend4844c32011-02-18 19:25:06 -08001646 if (isLockedToGrid) {
1647 final int myCellHSpan = cellHSpan;
1648 final int myCellVSpan = cellVSpan;
1649 final int myCellX = cellX;
1650 final int myCellY = cellY;
Adam Cohen1b607ed2011-03-03 17:26:50 -08001651
Adam Cohend4844c32011-02-18 19:25:06 -08001652 width = myCellHSpan * cellWidth + ((myCellHSpan - 1) * widthGap) -
1653 leftMargin - rightMargin;
1654 height = myCellVSpan * cellHeight + ((myCellVSpan - 1) * heightGap) -
1655 topMargin - bottomMargin;
Adam Cohend4844c32011-02-18 19:25:06 -08001656 x = hStartPadding + myCellX * (cellWidth + widthGap) + leftMargin;
1657 y = vStartPadding + myCellY * (cellHeight + heightGap) + topMargin;
1658 }
1659 }
Winson Chungaafa03c2010-06-11 17:34:16 -07001660
Winson Chungaafa03c2010-06-11 17:34:16 -07001661 public String toString() {
1662 return "(" + this.cellX + ", " + this.cellY + ")";
1663 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001664 }
1665
Michael Jurka0280c3b2010-09-17 15:00:07 -07001666 // This class stores info for two purposes:
1667 // 1. When dragging items (mDragInfo in Workspace), we store the View, its cellX & cellY,
1668 // its spanX, spanY, and the screen it is on
1669 // 2. When long clicking on an empty cell in a CellLayout, we save information about the
1670 // cellX and cellY coordinates and which page was clicked. We then set this as a tag on
1671 // the CellLayout that was long clicked
Michael Jurkae5fb0f22011-04-11 13:27:46 -07001672 static final class CellInfo {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001673 View cell;
Michael Jurkaa63c4522010-08-19 13:52:27 -07001674 int cellX = -1;
1675 int cellY = -1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001676 int spanX;
1677 int spanY;
1678 int screen;
1679 boolean valid;
1680
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001681 @Override
1682 public String toString() {
Winson Chungaafa03c2010-06-11 17:34:16 -07001683 return "Cell[view=" + (cell == null ? "null" : cell.getClass())
1684 + ", x=" + cellX + ", y=" + cellY + "]";
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001685 }
1686 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001687}