blob: df16d419472eb9e5e31108d0ee466d785693c842 [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
Daniel Sandler325dc232013-06-05 22:57:57 -040017package com.android.launcher3;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080018
Joe Onorato4be866d2010-10-10 11:26:02 -070019import android.animation.Animator;
Michael Jurka629758f2012-06-14 16:18:21 -070020import android.animation.AnimatorListenerAdapter;
Brandon Keely50e6e562012-05-08 16:28:49 -070021import android.animation.AnimatorSet;
Chet Haase00397b12010-10-07 11:13:10 -070022import android.animation.TimeInterpolator;
Patrick Dubroyde7658b2010-09-27 11:15:43 -070023import android.animation.ValueAnimator;
24import android.animation.ValueAnimator.AnimatorUpdateListener;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080025import android.content.Context;
Joe Onorato79e56262009-09-21 15:23:04 -040026import android.content.res.Resources;
Winson Chungaafa03c2010-06-11 17:34:16 -070027import android.content.res.TypedArray;
Joe Onorato4be866d2010-10-10 11:26:02 -070028import android.graphics.Bitmap;
Winson Chungaafa03c2010-06-11 17:34:16 -070029import android.graphics.Canvas;
Andrew Flynn0dca1ec2012-02-29 13:33:22 -080030import android.graphics.Color;
Joe Onorato4be866d2010-10-10 11:26:02 -070031import android.graphics.Paint;
Patrick Dubroyde7658b2010-09-27 11:15:43 -070032import android.graphics.Point;
Adam Cohenb5ba0972011-09-07 18:02:31 -070033import android.graphics.PorterDuff;
34import android.graphics.PorterDuffXfermode;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080035import android.graphics.Rect;
Adam Cohen482ed822012-03-02 14:15:13 -080036import android.graphics.drawable.ColorDrawable;
Patrick Dubroy6569f2c2010-07-12 14:25:18 -070037import android.graphics.drawable.Drawable;
Adam Cohenb5ba0972011-09-07 18:02:31 -070038import android.graphics.drawable.NinePatchDrawable;
Adam Cohen1462de32012-07-24 22:34:36 -070039import android.os.Parcelable;
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;
Adam Cohen1462de32012-07-24 22:34:36 -070042import android.util.SparseArray;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080043import 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
Daniel Sandler325dc232013-06-05 22:57:57 -040051import com.android.launcher3.R;
52import com.android.launcher3.FolderIcon.FolderRingAnimator;
Patrick Dubroy8e58e912010-10-14 13:21:48 -070053
Adam Cohen69ce2e52011-07-03 19:25:21 -070054import java.util.ArrayList;
Adam Cohenc0dcf592011-06-01 15:30:43 -070055import java.util.Arrays;
Adam Cohenf3900c22012-11-16 18:28:11 -080056import java.util.Collections;
57import java.util.Comparator;
Adam Cohenbfbfd262011-06-13 16:55:12 -070058import java.util.HashMap;
Adam Cohend41fbf52012-02-16 23:53:59 -080059import java.util.Stack;
Adam Cohenc0dcf592011-06-01 15:30:43 -070060
Michael Jurkabdb5c532011-02-01 15:05:06 -080061public class CellLayout extends ViewGroup {
Winson Chungaafa03c2010-06-11 17:34:16 -070062 static final String TAG = "CellLayout";
63
Adam Cohen2acce882012-03-28 19:03:19 -070064 private Launcher mLauncher;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080065 private int mCellWidth;
66 private int mCellHeight;
Winson Chung11a1a532013-09-13 11:14:45 -070067 private int mFixedCellWidth;
68 private int mFixedCellHeight;
Winson Chungaafa03c2010-06-11 17:34:16 -070069
Adam Cohend22015c2010-07-26 22:02:18 -070070 private int mCountX;
71 private int mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080072
Adam Cohen234c4cd2011-07-17 21:03:04 -070073 private int mOriginalWidthGap;
74 private int mOriginalHeightGap;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080075 private int mWidthGap;
76 private int mHeightGap;
Winson Chung4b825dcd2011-06-19 12:41:22 -070077 private int mMaxGap;
Adam Cohenebea84d2011-11-09 17:20:41 -080078 private boolean mScrollingTransformsDirty = false;
Adam Cohen917e3882013-10-31 15:03:35 -070079 private boolean mDropPending = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080080
81 private final Rect mRect = new Rect();
82 private final CellInfo mCellInfo = new CellInfo();
Winson Chungaafa03c2010-06-11 17:34:16 -070083
Patrick Dubroyde7658b2010-09-27 11:15:43 -070084 // These are temporary variables to prevent having to allocate a new object just to
85 // return an (x, y) value from helper functions. Do NOT use them to maintain other state.
Winson Chung0be025d2011-05-23 17:45:09 -070086 private final int[] mTmpXY = new int[2];
Patrick Dubroyde7658b2010-09-27 11:15:43 -070087 private final int[] mTmpPoint = new int[2];
Adam Cohen69ce2e52011-07-03 19:25:21 -070088 int[] mTempLocation = new int[2];
Patrick Dubroy6569f2c2010-07-12 14:25:18 -070089
The Android Open Source Project31dd5032009-03-03 19:32:27 -080090 boolean[][] mOccupied;
Adam Cohen482ed822012-03-02 14:15:13 -080091 boolean[][] mTmpOccupied;
Michael Jurkad771c962011-08-09 15:00:48 -070092 private boolean mLastDownOnOccupiedCell = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080093
Michael Jurkadee05892010-07-27 10:01:56 -070094 private OnTouchListener mInterceptTouchListener;
95
Adam Cohen69ce2e52011-07-03 19:25:21 -070096 private ArrayList<FolderRingAnimator> mFolderOuterRings = new ArrayList<FolderRingAnimator>();
Adam Cohenc51934b2011-07-26 21:07:43 -070097 private int[] mFolderLeaveBehindCell = {-1, -1};
Adam Cohen69ce2e52011-07-03 19:25:21 -070098
Adam Cohen02dcfcc2013-10-01 12:37:33 -070099 private float FOREGROUND_ALPHA_DAMPER = 0.65f;
Adam Cohenb5ba0972011-09-07 18:02:31 -0700100 private int mForegroundAlpha = 0;
Michael Jurka5f1c5092010-09-03 14:15:02 -0700101 private float mBackgroundAlpha;
Adam Cohen1b0aaac2010-10-28 11:11:18 -0700102 private float mBackgroundAlphaMultiplier = 1.0f;
Adam Cohenf34bab52010-09-30 14:11:56 -0700103
Michael Jurka33945b22010-12-21 18:19:38 -0800104 private Drawable mNormalBackground;
Michael Jurka33945b22010-12-21 18:19:38 -0800105 private Drawable mActiveGlowBackground;
Adam Cohenb5ba0972011-09-07 18:02:31 -0700106 private Drawable mOverScrollForegroundDrawable;
107 private Drawable mOverScrollLeft;
108 private Drawable mOverScrollRight;
Michael Jurka18014792010-10-14 09:01:34 -0700109 private Rect mBackgroundRect;
Adam Cohenb5ba0972011-09-07 18:02:31 -0700110 private Rect mForegroundRect;
Adam Cohenb5ba0972011-09-07 18:02:31 -0700111 private int mForegroundPadding;
Patrick Dubroy1262e362010-10-06 15:49:50 -0700112
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700113 // These values allow a fixed measurement to be set on the CellLayout.
114 private int mFixedWidth = -1;
115 private int mFixedHeight = -1;
116
Michael Jurka33945b22010-12-21 18:19:38 -0800117 // If we're actively dragging something over this screen, mIsDragOverlapping is true
118 private boolean mIsDragOverlapping = false;
Adam Cohendedbd962013-07-11 14:21:49 -0700119 boolean mUseActiveGlowBackground = false;
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700120
Winson Chung150fbab2010-09-29 17:14:26 -0700121 // These arrays are used to implement the drag visualization on x-large screens.
Joe Onorato4be866d2010-10-10 11:26:02 -0700122 // They are used as circular arrays, indexed by mDragOutlineCurrent.
Adam Cohend41fbf52012-02-16 23:53:59 -0800123 private Rect[] mDragOutlines = new Rect[4];
Chet Haase472b2812010-10-14 07:02:04 -0700124 private float[] mDragOutlineAlphas = new float[mDragOutlines.length];
Joe Onorato4be866d2010-10-10 11:26:02 -0700125 private InterruptibleInOutAnimator[] mDragOutlineAnims =
126 new InterruptibleInOutAnimator[mDragOutlines.length];
Winson Chung150fbab2010-09-29 17:14:26 -0700127
128 // Used as an index into the above 3 arrays; indicates which is the most current value.
Joe Onorato4be866d2010-10-10 11:26:02 -0700129 private int mDragOutlineCurrent = 0;
Patrick Dubroy8e58e912010-10-14 13:21:48 -0700130 private final Paint mDragOutlinePaint = new Paint();
Winson Chung150fbab2010-09-29 17:14:26 -0700131
Patrick Dubroy96864c32011-03-10 17:17:23 -0800132 private BubbleTextView mPressedOrFocusedIcon;
133
Adam Cohen482ed822012-03-02 14:15:13 -0800134 private HashMap<CellLayout.LayoutParams, Animator> mReorderAnimators = new
135 HashMap<CellLayout.LayoutParams, Animator>();
Adam Cohen19f37922012-03-21 11:59:11 -0700136 private HashMap<View, ReorderHintAnimation>
137 mShakeAnimators = new HashMap<View, ReorderHintAnimation>();
138
139 private boolean mItemPlacementDirty = false;
Adam Cohenbfbfd262011-06-13 16:55:12 -0700140
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700141 // When a drag operation is in progress, holds the nearest cell to the touch point
142 private final int[] mDragCell = new int[2];
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800143
Joe Onorato4be866d2010-10-10 11:26:02 -0700144 private boolean mDragging = false;
145
Patrick Dubroyce34a972010-10-19 10:34:32 -0700146 private TimeInterpolator mEaseOutInterpolator;
Michael Jurkaa52570f2012-03-20 03:18:20 -0700147 private ShortcutAndWidgetContainer mShortcutsAndWidgets;
Patrick Dubroyce34a972010-10-19 10:34:32 -0700148
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800149 private boolean mIsHotseat = false;
Adam Cohen307fe232012-08-16 17:55:58 -0700150 private float mHotseatScale = 1f;
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800151
Adam Cohen482ed822012-03-02 14:15:13 -0800152 public static final int MODE_DRAG_OVER = 0;
153 public static final int MODE_ON_DROP = 1;
154 public static final int MODE_ON_DROP_EXTERNAL = 2;
155 public static final int MODE_ACCEPT_DROP = 3;
Adam Cohen19f37922012-03-21 11:59:11 -0700156 private static final boolean DESTRUCTIVE_REORDER = false;
Adam Cohen482ed822012-03-02 14:15:13 -0800157 private static final boolean DEBUG_VISUALIZE_OCCUPIED = false;
158
Adam Cohena897f392012-04-27 18:12:05 -0700159 static final int LANDSCAPE = 0;
160 static final int PORTRAIT = 1;
161
Adam Cohen7bdfc972012-05-22 16:50:35 -0700162 private static final float REORDER_HINT_MAGNITUDE = 0.12f;
Adam Cohen19f37922012-03-21 11:59:11 -0700163 private static final int REORDER_ANIMATION_DURATION = 150;
164 private float mReorderHintAnimationMagnitude;
165
Adam Cohen482ed822012-03-02 14:15:13 -0800166 private ArrayList<View> mIntersectingViews = new ArrayList<View>();
167 private Rect mOccupiedRect = new Rect();
168 private int[] mDirectionVector = new int[2];
Adam Cohen19f37922012-03-21 11:59:11 -0700169 int[] mPreviousReorderDirection = new int[2];
Adam Cohenb209e632012-03-27 17:09:36 -0700170 private static final int INVALID_DIRECTION = -100;
Adam Cohenc6cc61d2012-04-04 12:47:08 -0700171 private DropTarget.DragEnforcer mDragEnforcer;
Adam Cohen482ed822012-03-02 14:15:13 -0800172
Winson Chung3a6e7f32013-10-09 15:50:52 -0700173 private Rect mTempRect = new Rect();
174
Romain Guy8a0bff52012-05-06 13:14:33 -0700175 private final static PorterDuffXfermode sAddBlendMode =
176 new PorterDuffXfermode(PorterDuff.Mode.ADD);
Michael Jurkaca993832012-06-29 15:17:04 -0700177 private final static Paint sPaint = new Paint();
Romain Guy8a0bff52012-05-06 13:14:33 -0700178
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800179 public CellLayout(Context context) {
180 this(context, null);
181 }
182
183 public CellLayout(Context context, AttributeSet attrs) {
184 this(context, attrs, 0);
185 }
186
187 public CellLayout(Context context, AttributeSet attrs, int defStyle) {
188 super(context, attrs, defStyle);
Michael Jurka8b805b12012-04-18 14:23:14 -0700189 mDragEnforcer = new DropTarget.DragEnforcer(context);
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700190
191 // A ViewGroup usually does not draw, but CellLayout needs to draw a rectangle to show
192 // the user where a dragged item will land when dropped.
193 setWillNotDraw(false);
Romain Guyce3cbd12013-02-25 15:00:36 -0800194 setClipToPadding(false);
Adam Cohen2acce882012-03-28 19:03:19 -0700195 mLauncher = (Launcher) context;
Michael Jurkaa63c4522010-08-19 13:52:27 -0700196
Winson Chung892c74d2013-08-22 16:15:50 -0700197 LauncherAppState app = LauncherAppState.getInstance();
198 DeviceProfile grid = app.getDynamicGrid().getDeviceProfile();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800199 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.CellLayout, defStyle, 0);
200
Winson Chung11a1a532013-09-13 11:14:45 -0700201 mCellWidth = mCellHeight = -1;
202 mFixedCellHeight = mFixedCellHeight = -1;
Winson Chung5f8afe62013-08-12 16:19:28 -0700203 mWidthGap = mOriginalWidthGap = 0;
204 mHeightGap = mOriginalHeightGap = 0;
205 mMaxGap = Integer.MAX_VALUE;
Winson Chung892c74d2013-08-22 16:15:50 -0700206 mCountX = (int) grid.numColumns;
207 mCountY = (int) grid.numRows;
Michael Jurka0280c3b2010-09-17 15:00:07 -0700208 mOccupied = new boolean[mCountX][mCountY];
Adam Cohen482ed822012-03-02 14:15:13 -0800209 mTmpOccupied = new boolean[mCountX][mCountY];
Adam Cohen5b53f292012-03-29 14:30:35 -0700210 mPreviousReorderDirection[0] = INVALID_DIRECTION;
211 mPreviousReorderDirection[1] = INVALID_DIRECTION;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800212
213 a.recycle();
214
215 setAlwaysDrawnWithCacheEnabled(false);
216
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700217 final Resources res = getResources();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700218 mHotseatScale = (float) grid.hotseatIconSizePx / grid.iconSizePx;
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700219
Adam Cohen410f3cd2013-09-22 12:09:32 -0700220 mNormalBackground = res.getDrawable(R.drawable.screenpanel);
221 mActiveGlowBackground = res.getDrawable(R.drawable.screenpanel_hover);
Michael Jurka33945b22010-12-21 18:19:38 -0800222
Adam Cohenb5ba0972011-09-07 18:02:31 -0700223 mOverScrollLeft = res.getDrawable(R.drawable.overscroll_glow_left);
224 mOverScrollRight = res.getDrawable(R.drawable.overscroll_glow_right);
225 mForegroundPadding =
226 res.getDimensionPixelSize(R.dimen.workspace_overscroll_drawable_padding);
Michael Jurka33945b22010-12-21 18:19:38 -0800227
Adam Cohen19f37922012-03-21 11:59:11 -0700228 mReorderHintAnimationMagnitude = (REORDER_HINT_MAGNITUDE *
Winson Chung5f8afe62013-08-12 16:19:28 -0700229 grid.iconSizePx);
Adam Cohen19f37922012-03-21 11:59:11 -0700230
Winson Chungb26f3d62011-06-02 10:49:29 -0700231 mNormalBackground.setFilterBitmap(true);
Winson Chungb26f3d62011-06-02 10:49:29 -0700232 mActiveGlowBackground.setFilterBitmap(true);
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700233
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700234 // Initialize the data structures used for the drag visualization.
Patrick Dubroyce34a972010-10-19 10:34:32 -0700235 mEaseOutInterpolator = new DecelerateInterpolator(2.5f); // Quint ease out
Winson Chungb8c69f32011-10-19 21:36:08 -0700236 mDragCell[0] = mDragCell[1] = -1;
Joe Onorato4be866d2010-10-10 11:26:02 -0700237 for (int i = 0; i < mDragOutlines.length; i++) {
Adam Cohend41fbf52012-02-16 23:53:59 -0800238 mDragOutlines[i] = new Rect(-1, -1, -1, -1);
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700239 }
240
241 // When dragging things around the home screens, we show a green outline of
242 // where the item will land. The outlines gradually fade out, leaving a trail
243 // behind the drag path.
244 // Set up all the animations that are used to implement this fading.
245 final int duration = res.getInteger(R.integer.config_dragOutlineFadeTime);
Chet Haase472b2812010-10-14 07:02:04 -0700246 final float fromAlphaValue = 0;
247 final float toAlphaValue = (float)res.getInteger(R.integer.config_dragOutlineMaxAlpha);
Joe Onorato4be866d2010-10-10 11:26:02 -0700248
Patrick Dubroy8e58e912010-10-14 13:21:48 -0700249 Arrays.fill(mDragOutlineAlphas, fromAlphaValue);
Joe Onorato4be866d2010-10-10 11:26:02 -0700250
251 for (int i = 0; i < mDragOutlineAnims.length; i++) {
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700252 final InterruptibleInOutAnimator anim =
Michael Jurkaf1ad6082013-03-13 12:55:46 +0100253 new InterruptibleInOutAnimator(this, duration, fromAlphaValue, toAlphaValue);
Patrick Dubroyce34a972010-10-19 10:34:32 -0700254 anim.getAnimator().setInterpolator(mEaseOutInterpolator);
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700255 final int thisIndex = i;
Chet Haase472b2812010-10-14 07:02:04 -0700256 anim.getAnimator().addUpdateListener(new AnimatorUpdateListener() {
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700257 public void onAnimationUpdate(ValueAnimator animation) {
Joe Onorato4be866d2010-10-10 11:26:02 -0700258 final Bitmap outline = (Bitmap)anim.getTag();
259
260 // If an animation is started and then stopped very quickly, we can still
261 // get spurious updates we've cleared the tag. Guard against this.
262 if (outline == null) {
Michael Jurka3a9fced2012-04-13 14:44:29 -0700263 @SuppressWarnings("all") // suppress dead code warning
264 final boolean debug = false;
265 if (debug) {
Patrick Dubroyfe6bd872010-10-13 17:32:10 -0700266 Object val = animation.getAnimatedValue();
267 Log.d(TAG, "anim " + thisIndex + " update: " + val +
268 ", isStopped " + anim.isStopped());
269 }
Joe Onorato4be866d2010-10-10 11:26:02 -0700270 // Try to prevent it from continuing to run
271 animation.cancel();
272 } else {
Chet Haase472b2812010-10-14 07:02:04 -0700273 mDragOutlineAlphas[thisIndex] = (Float) animation.getAnimatedValue();
Adam Cohend41fbf52012-02-16 23:53:59 -0800274 CellLayout.this.invalidate(mDragOutlines[thisIndex]);
Joe Onorato4be866d2010-10-10 11:26:02 -0700275 }
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700276 }
277 });
Joe Onorato4be866d2010-10-10 11:26:02 -0700278 // The animation holds a reference to the drag outline bitmap as long is it's
279 // running. This way the bitmap can be GCed when the animations are complete.
Chet Haase472b2812010-10-14 07:02:04 -0700280 anim.getAnimator().addListener(new AnimatorListenerAdapter() {
Michael Jurka3c4c20f2010-10-28 15:36:06 -0700281 @Override
Joe Onorato4be866d2010-10-10 11:26:02 -0700282 public void onAnimationEnd(Animator animation) {
Chet Haase472b2812010-10-14 07:02:04 -0700283 if ((Float) ((ValueAnimator) animation).getAnimatedValue() == 0f) {
Joe Onorato4be866d2010-10-10 11:26:02 -0700284 anim.setTag(null);
285 }
286 }
287 });
288 mDragOutlineAnims[i] = anim;
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700289 }
Patrick Dubroyce34a972010-10-19 10:34:32 -0700290
Michael Jurka18014792010-10-14 09:01:34 -0700291 mBackgroundRect = new Rect();
Adam Cohenb5ba0972011-09-07 18:02:31 -0700292 mForegroundRect = new Rect();
Michael Jurkabea15192010-11-17 12:33:46 -0800293
Michael Jurkaa52570f2012-03-20 03:18:20 -0700294 mShortcutsAndWidgets = new ShortcutAndWidgetContainer(context);
Adam Cohen2374abf2013-04-16 14:56:57 -0700295 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap, mHeightGap,
Winson Chung5f8afe62013-08-12 16:19:28 -0700296 mCountX, mCountY);
Adam Cohen2374abf2013-04-16 14:56:57 -0700297
Michael Jurkaa52570f2012-03-20 03:18:20 -0700298 addView(mShortcutsAndWidgets);
Michael Jurka18014792010-10-14 09:01:34 -0700299 }
300
Chris Craik01f2d7f2013-10-01 14:41:56 -0700301 public void enableHardwareLayer(boolean hasLayer) {
302 mShortcutsAndWidgets.setLayerType(hasLayer ? LAYER_TYPE_HARDWARE : LAYER_TYPE_NONE, sPaint);
Michael Jurkad51f33a2012-06-28 15:35:26 -0700303 }
304
305 public void buildHardwareLayer() {
306 mShortcutsAndWidgets.buildLayer();
Adam Cohen2801caf2011-05-13 20:57:39 -0700307 }
308
Adam Cohen307fe232012-08-16 17:55:58 -0700309 public float getChildrenScale() {
310 return mIsHotseat ? mHotseatScale : 1.0f;
311 }
312
Winson Chung5f8afe62013-08-12 16:19:28 -0700313 public void setCellDimensions(int width, int height) {
Winson Chung11a1a532013-09-13 11:14:45 -0700314 mFixedCellWidth = mCellWidth = width;
315 mFixedCellHeight = mCellHeight = height;
Winson Chung5f8afe62013-08-12 16:19:28 -0700316 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap, mHeightGap,
317 mCountX, mCountY);
318 }
319
Adam Cohen2801caf2011-05-13 20:57:39 -0700320 public void setGridSize(int x, int y) {
321 mCountX = x;
322 mCountY = y;
323 mOccupied = new boolean[mCountX][mCountY];
Adam Cohen482ed822012-03-02 14:15:13 -0800324 mTmpOccupied = new boolean[mCountX][mCountY];
Adam Cohen7fbec102012-03-27 12:42:19 -0700325 mTempRectStack.clear();
Adam Cohen2374abf2013-04-16 14:56:57 -0700326 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap, mHeightGap,
Winson Chung5f8afe62013-08-12 16:19:28 -0700327 mCountX, mCountY);
Adam Cohen76fc0852011-06-17 13:26:23 -0700328 requestLayout();
Adam Cohen2801caf2011-05-13 20:57:39 -0700329 }
330
Adam Cohen2374abf2013-04-16 14:56:57 -0700331 // Set whether or not to invert the layout horizontally if the layout is in RTL mode.
332 public void setInvertIfRtl(boolean invert) {
333 mShortcutsAndWidgets.setInvertIfRtl(invert);
334 }
335
Adam Cohen917e3882013-10-31 15:03:35 -0700336 public void setDropPending(boolean pending) {
337 mDropPending = pending;
338 }
339
340 public boolean isDropPending() {
341 return mDropPending;
342 }
343
Patrick Dubroy96864c32011-03-10 17:17:23 -0800344 private void invalidateBubbleTextView(BubbleTextView icon) {
345 final int padding = icon.getPressedOrFocusedBackgroundPadding();
Winson Chung4b825dcd2011-06-19 12:41:22 -0700346 invalidate(icon.getLeft() + getPaddingLeft() - padding,
347 icon.getTop() + getPaddingTop() - padding,
348 icon.getRight() + getPaddingLeft() + padding,
349 icon.getBottom() + getPaddingTop() + padding);
Patrick Dubroy96864c32011-03-10 17:17:23 -0800350 }
351
Adam Cohenb5ba0972011-09-07 18:02:31 -0700352 void setOverScrollAmount(float r, boolean left) {
353 if (left && mOverScrollForegroundDrawable != mOverScrollLeft) {
354 mOverScrollForegroundDrawable = mOverScrollLeft;
355 } else if (!left && mOverScrollForegroundDrawable != mOverScrollRight) {
356 mOverScrollForegroundDrawable = mOverScrollRight;
357 }
358
Adam Cohen02dcfcc2013-10-01 12:37:33 -0700359 r *= FOREGROUND_ALPHA_DAMPER;
Adam Cohenb5ba0972011-09-07 18:02:31 -0700360 mForegroundAlpha = (int) Math.round((r * 255));
361 mOverScrollForegroundDrawable.setAlpha(mForegroundAlpha);
362 invalidate();
363 }
364
Patrick Dubroy96864c32011-03-10 17:17:23 -0800365 void setPressedOrFocusedIcon(BubbleTextView icon) {
366 // We draw the pressed or focused BubbleTextView's background in CellLayout because it
367 // requires an expanded clip rect (due to the glow's blur radius)
368 BubbleTextView oldIcon = mPressedOrFocusedIcon;
369 mPressedOrFocusedIcon = icon;
370 if (oldIcon != null) {
371 invalidateBubbleTextView(oldIcon);
372 }
373 if (mPressedOrFocusedIcon != null) {
374 invalidateBubbleTextView(mPressedOrFocusedIcon);
375 }
376 }
377
Michael Jurka33945b22010-12-21 18:19:38 -0800378 void setIsDragOverlapping(boolean isDragOverlapping) {
379 if (mIsDragOverlapping != isDragOverlapping) {
380 mIsDragOverlapping = isDragOverlapping;
Adam Cohendedbd962013-07-11 14:21:49 -0700381 setUseActiveGlowBackground(mIsDragOverlapping);
Michael Jurka33945b22010-12-21 18:19:38 -0800382 invalidate();
383 }
384 }
385
Adam Cohendedbd962013-07-11 14:21:49 -0700386 void setUseActiveGlowBackground(boolean use) {
387 mUseActiveGlowBackground = use;
388 }
389
Michael Jurka33945b22010-12-21 18:19:38 -0800390 boolean getIsDragOverlapping() {
391 return mIsDragOverlapping;
392 }
393
Adam Cohenebea84d2011-11-09 17:20:41 -0800394 protected void setOverscrollTransformsDirty(boolean dirty) {
395 mScrollingTransformsDirty = dirty;
396 }
397
398 protected void resetOverscrollTransforms() {
399 if (mScrollingTransformsDirty) {
400 setOverscrollTransformsDirty(false);
401 setTranslationX(0);
402 setRotationY(0);
403 // It doesn't matter if we pass true or false here, the important thing is that we
404 // pass 0, which results in the overscroll drawable not being drawn any more.
405 setOverScrollAmount(0, false);
406 setPivotX(getMeasuredWidth() / 2);
407 setPivotY(getMeasuredHeight() / 2);
408 }
409 }
410
Jeff Sharkey83f111d2009-04-20 21:03:13 -0700411 @Override
Patrick Dubroy1262e362010-10-06 15:49:50 -0700412 protected void onDraw(Canvas canvas) {
Michael Jurka3e7c7632010-10-02 16:01:03 -0700413 // When we're large, we are either drawn in a "hover" state (ie when dragging an item to
414 // a neighboring page) or with just a normal background (if backgroundAlpha > 0.0f)
415 // When we're small, we are either drawn normally or in the "accepts drops" state (during
416 // a drag). However, we also drag the mini hover background *over* one of those two
417 // backgrounds
Winson Chungb26f3d62011-06-02 10:49:29 -0700418 if (mBackgroundAlpha > 0.0f) {
Adam Cohenf34bab52010-09-30 14:11:56 -0700419 Drawable bg;
Michael Jurka33945b22010-12-21 18:19:38 -0800420
Adam Cohendedbd962013-07-11 14:21:49 -0700421 if (mUseActiveGlowBackground) {
Michael Jurka33945b22010-12-21 18:19:38 -0800422 // In the mini case, we draw the active_glow bg *over* the active background
Michael Jurkabdf78552011-10-31 14:34:25 -0700423 bg = mActiveGlowBackground;
Adam Cohenf34bab52010-09-30 14:11:56 -0700424 } else {
Michael Jurkabdf78552011-10-31 14:34:25 -0700425 bg = mNormalBackground;
Adam Cohenf34bab52010-09-30 14:11:56 -0700426 }
Michael Jurka33945b22010-12-21 18:19:38 -0800427
428 bg.setAlpha((int) (mBackgroundAlpha * mBackgroundAlphaMultiplier * 255));
429 bg.setBounds(mBackgroundRect);
430 bg.draw(canvas);
Michael Jurkaa63c4522010-08-19 13:52:27 -0700431 }
Romain Guya6abce82009-11-10 02:54:41 -0800432
Patrick Dubroy8e58e912010-10-14 13:21:48 -0700433 final Paint paint = mDragOutlinePaint;
Joe Onorato4be866d2010-10-10 11:26:02 -0700434 for (int i = 0; i < mDragOutlines.length; i++) {
Chet Haase472b2812010-10-14 07:02:04 -0700435 final float alpha = mDragOutlineAlphas[i];
Joe Onorato4be866d2010-10-10 11:26:02 -0700436 if (alpha > 0) {
Adam Cohend41fbf52012-02-16 23:53:59 -0800437 final Rect r = mDragOutlines[i];
Winson Chung3a6e7f32013-10-09 15:50:52 -0700438 mTempRect.set(r);
439 Utilities.scaleRectAboutCenter(mTempRect, getChildrenScale());
Joe Onorato4be866d2010-10-10 11:26:02 -0700440 final Bitmap b = (Bitmap) mDragOutlineAnims[i].getTag();
Chet Haase472b2812010-10-14 07:02:04 -0700441 paint.setAlpha((int)(alpha + .5f));
Winson Chung3a6e7f32013-10-09 15:50:52 -0700442 canvas.drawBitmap(b, null, mTempRect, paint);
Winson Chung150fbab2010-09-29 17:14:26 -0700443 }
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700444 }
Patrick Dubroy96864c32011-03-10 17:17:23 -0800445
446 // We draw the pressed or focused BubbleTextView's background in CellLayout because it
447 // requires an expanded clip rect (due to the glow's blur radius)
448 if (mPressedOrFocusedIcon != null) {
449 final int padding = mPressedOrFocusedIcon.getPressedOrFocusedBackgroundPadding();
450 final Bitmap b = mPressedOrFocusedIcon.getPressedOrFocusedBackground();
451 if (b != null) {
Winson Chung3a6e7f32013-10-09 15:50:52 -0700452 int offset = getMeasuredWidth() - getPaddingLeft() - getPaddingRight() -
453 (mCountX * mCellWidth);
454 int left = getPaddingLeft() + (int) Math.ceil(offset / 2f);
455 int top = getPaddingTop();
Patrick Dubroy96864c32011-03-10 17:17:23 -0800456 canvas.drawBitmap(b,
Winson Chung3a6e7f32013-10-09 15:50:52 -0700457 mPressedOrFocusedIcon.getLeft() + left - padding,
458 mPressedOrFocusedIcon.getTop() + top - padding,
Patrick Dubroy96864c32011-03-10 17:17:23 -0800459 null);
460 }
461 }
Adam Cohen69ce2e52011-07-03 19:25:21 -0700462
Adam Cohen482ed822012-03-02 14:15:13 -0800463 if (DEBUG_VISUALIZE_OCCUPIED) {
464 int[] pt = new int[2];
465 ColorDrawable cd = new ColorDrawable(Color.RED);
Adam Cohene7587d22012-05-24 18:50:02 -0700466 cd.setBounds(0, 0, mCellWidth, mCellHeight);
Adam Cohen482ed822012-03-02 14:15:13 -0800467 for (int i = 0; i < mCountX; i++) {
468 for (int j = 0; j < mCountY; j++) {
469 if (mOccupied[i][j]) {
470 cellToPoint(i, j, pt);
471 canvas.save();
472 canvas.translate(pt[0], pt[1]);
473 cd.draw(canvas);
474 canvas.restore();
475 }
476 }
477 }
478 }
479
Andrew Flynn850d2e72012-04-26 16:51:20 -0700480 int previewOffset = FolderRingAnimator.sPreviewSize;
481
Adam Cohen69ce2e52011-07-03 19:25:21 -0700482 // The folder outer / inner ring image(s)
Winson Chung5f8afe62013-08-12 16:19:28 -0700483 LauncherAppState app = LauncherAppState.getInstance();
484 DeviceProfile grid = app.getDynamicGrid().getDeviceProfile();
Adam Cohen69ce2e52011-07-03 19:25:21 -0700485 for (int i = 0; i < mFolderOuterRings.size(); i++) {
486 FolderRingAnimator fra = mFolderOuterRings.get(i);
487
Adam Cohen5108bc02013-09-20 17:04:51 -0700488 Drawable d;
489 int width, height;
Adam Cohen69ce2e52011-07-03 19:25:21 -0700490 cellToPoint(fra.mCellX, fra.mCellY, mTempLocation);
Winson Chung5f8afe62013-08-12 16:19:28 -0700491 View child = getChildAt(fra.mCellX, fra.mCellY);
Adam Cohen558f1c22013-10-09 15:15:24 -0700492
Winson Chung89f97052013-09-20 11:32:26 -0700493 if (child != null) {
Adam Cohen558f1c22013-10-09 15:15:24 -0700494 int centerX = mTempLocation[0] + mCellWidth / 2;
495 int centerY = mTempLocation[1] + previewOffset / 2 +
496 child.getPaddingTop() + grid.folderBackgroundOffset;
497
Adam Cohen5108bc02013-09-20 17:04:51 -0700498 // Draw outer ring, if it exists
499 if (FolderIcon.HAS_OUTER_RING) {
500 d = FolderRingAnimator.sSharedOuterRingDrawable;
501 width = (int) (fra.getOuterRingSize() * getChildrenScale());
502 height = width;
503 canvas.save();
504 canvas.translate(centerX - width / 2, centerY - height / 2);
505 d.setBounds(0, 0, width, height);
506 d.draw(canvas);
507 canvas.restore();
508 }
Adam Cohen69ce2e52011-07-03 19:25:21 -0700509
Winson Chung89f97052013-09-20 11:32:26 -0700510 // Draw inner ring
511 d = FolderRingAnimator.sSharedInnerRingDrawable;
512 width = (int) (fra.getInnerRingSize() * getChildrenScale());
513 height = width;
Winson Chung89f97052013-09-20 11:32:26 -0700514 canvas.save();
515 canvas.translate(centerX - width / 2, centerY - width / 2);
516 d.setBounds(0, 0, width, height);
517 d.draw(canvas);
518 canvas.restore();
519 }
Adam Cohen69ce2e52011-07-03 19:25:21 -0700520 }
Adam Cohenc51934b2011-07-26 21:07:43 -0700521
522 if (mFolderLeaveBehindCell[0] >= 0 && mFolderLeaveBehindCell[1] >= 0) {
523 Drawable d = FolderIcon.sSharedFolderLeaveBehind;
524 int width = d.getIntrinsicWidth();
525 int height = d.getIntrinsicHeight();
526
527 cellToPoint(mFolderLeaveBehindCell[0], mFolderLeaveBehindCell[1], mTempLocation);
Winson Chung5f8afe62013-08-12 16:19:28 -0700528 View child = getChildAt(mFolderLeaveBehindCell[0], mFolderLeaveBehindCell[1]);
Winson Chung89f97052013-09-20 11:32:26 -0700529 if (child != null) {
530 int centerX = mTempLocation[0] + mCellWidth / 2;
531 int centerY = mTempLocation[1] + previewOffset / 2 +
532 child.getPaddingTop() + grid.folderBackgroundOffset;
Adam Cohenc51934b2011-07-26 21:07:43 -0700533
Winson Chung89f97052013-09-20 11:32:26 -0700534 canvas.save();
535 canvas.translate(centerX - width / 2, centerY - width / 2);
536 d.setBounds(0, 0, width, height);
537 d.draw(canvas);
538 canvas.restore();
539 }
Adam Cohenc51934b2011-07-26 21:07:43 -0700540 }
Adam Cohen69ce2e52011-07-03 19:25:21 -0700541 }
542
Adam Cohenb5ba0972011-09-07 18:02:31 -0700543 @Override
544 protected void dispatchDraw(Canvas canvas) {
545 super.dispatchDraw(canvas);
546 if (mForegroundAlpha > 0) {
547 mOverScrollForegroundDrawable.setBounds(mForegroundRect);
Adam Cohenb5ba0972011-09-07 18:02:31 -0700548 mOverScrollForegroundDrawable.draw(canvas);
Adam Cohenb5ba0972011-09-07 18:02:31 -0700549 }
550 }
551
Adam Cohen69ce2e52011-07-03 19:25:21 -0700552 public void showFolderAccept(FolderRingAnimator fra) {
553 mFolderOuterRings.add(fra);
554 }
555
556 public void hideFolderAccept(FolderRingAnimator fra) {
557 if (mFolderOuterRings.contains(fra)) {
558 mFolderOuterRings.remove(fra);
559 }
560 invalidate();
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700561 }
562
Adam Cohenc51934b2011-07-26 21:07:43 -0700563 public void setFolderLeaveBehindCell(int x, int y) {
564 mFolderLeaveBehindCell[0] = x;
565 mFolderLeaveBehindCell[1] = y;
566 invalidate();
567 }
568
569 public void clearFolderLeaveBehind() {
570 mFolderLeaveBehindCell[0] = -1;
571 mFolderLeaveBehindCell[1] = -1;
572 invalidate();
573 }
574
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700575 @Override
Michael Jurkae6235dd2011-10-04 15:02:05 -0700576 public boolean shouldDelayChildPressedState() {
577 return false;
578 }
579
Adam Cohen1462de32012-07-24 22:34:36 -0700580 public void restoreInstanceState(SparseArray<Parcelable> states) {
581 dispatchRestoreInstanceState(states);
582 }
583
Michael Jurkae6235dd2011-10-04 15:02:05 -0700584 @Override
Jeff Sharkey83f111d2009-04-20 21:03:13 -0700585 public void cancelLongPress() {
586 super.cancelLongPress();
587
588 // Cancel long press for all children
589 final int count = getChildCount();
590 for (int i = 0; i < count; i++) {
591 final View child = getChildAt(i);
592 child.cancelLongPress();
593 }
594 }
595
Michael Jurkadee05892010-07-27 10:01:56 -0700596 public void setOnInterceptTouchListener(View.OnTouchListener listener) {
597 mInterceptTouchListener = listener;
598 }
599
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800600 int getCountX() {
Adam Cohend22015c2010-07-26 22:02:18 -0700601 return mCountX;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800602 }
603
604 int getCountY() {
Adam Cohend22015c2010-07-26 22:02:18 -0700605 return mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800606 }
607
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800608 public void setIsHotseat(boolean isHotseat) {
609 mIsHotseat = isHotseat;
Winson Chung5f8afe62013-08-12 16:19:28 -0700610 mShortcutsAndWidgets.setIsHotseat(isHotseat);
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800611 }
612
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800613 public boolean addViewToCellLayout(View child, int index, int childId, LayoutParams params,
Andrew Flynn850d2e72012-04-26 16:51:20 -0700614 boolean markCells) {
Winson Chungaafa03c2010-06-11 17:34:16 -0700615 final LayoutParams lp = params;
616
Andrew Flynnde38e422012-05-08 11:22:15 -0700617 // Hotseat icons - remove text
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800618 if (child instanceof BubbleTextView) {
619 BubbleTextView bubbleChild = (BubbleTextView) child;
Winson Chung5f8afe62013-08-12 16:19:28 -0700620 bubbleChild.setTextVisibility(!mIsHotseat);
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800621 }
622
Adam Cohen307fe232012-08-16 17:55:58 -0700623 child.setScaleX(getChildrenScale());
624 child.setScaleY(getChildrenScale());
625
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800626 // Generate an id for each view, this assumes we have at most 256x256 cells
627 // per workspace screen
Adam Cohend22015c2010-07-26 22:02:18 -0700628 if (lp.cellX >= 0 && lp.cellX <= mCountX - 1 && lp.cellY >= 0 && lp.cellY <= mCountY - 1) {
Winson Chungaafa03c2010-06-11 17:34:16 -0700629 // If the horizontal or vertical span is set to -1, it is taken to
630 // mean that it spans the extent of the CellLayout
Adam Cohend22015c2010-07-26 22:02:18 -0700631 if (lp.cellHSpan < 0) lp.cellHSpan = mCountX;
632 if (lp.cellVSpan < 0) lp.cellVSpan = mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800633
Winson Chungaafa03c2010-06-11 17:34:16 -0700634 child.setId(childId);
635
Michael Jurkaa52570f2012-03-20 03:18:20 -0700636 mShortcutsAndWidgets.addView(child, index, lp);
Michael Jurkadee05892010-07-27 10:01:56 -0700637
Michael Jurkaf3ca3ab2010-10-20 17:08:24 -0700638 if (markCells) markCellsAsOccupiedForView(child);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700639
Winson Chungaafa03c2010-06-11 17:34:16 -0700640 return true;
641 }
642 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800643 }
Michael Jurka3e7c7632010-10-02 16:01:03 -0700644
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800645 @Override
Michael Jurka0280c3b2010-09-17 15:00:07 -0700646 public void removeAllViews() {
647 clearOccupiedCells();
Michael Jurkaa52570f2012-03-20 03:18:20 -0700648 mShortcutsAndWidgets.removeAllViews();
Michael Jurka0280c3b2010-09-17 15:00:07 -0700649 }
650
651 @Override
652 public void removeAllViewsInLayout() {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700653 if (mShortcutsAndWidgets.getChildCount() > 0) {
Michael Jurka7cfc2822011-08-02 20:19:24 -0700654 clearOccupiedCells();
Michael Jurkaa52570f2012-03-20 03:18:20 -0700655 mShortcutsAndWidgets.removeAllViewsInLayout();
Michael Jurka7cfc2822011-08-02 20:19:24 -0700656 }
Michael Jurka0280c3b2010-09-17 15:00:07 -0700657 }
658
Michael Jurkaf3ca3ab2010-10-20 17:08:24 -0700659 public void removeViewWithoutMarkingCells(View view) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700660 mShortcutsAndWidgets.removeView(view);
Michael Jurkaf3ca3ab2010-10-20 17:08:24 -0700661 }
662
Michael Jurka0280c3b2010-09-17 15:00:07 -0700663 @Override
664 public void removeView(View view) {
665 markCellsAsUnoccupiedForView(view);
Michael Jurkaa52570f2012-03-20 03:18:20 -0700666 mShortcutsAndWidgets.removeView(view);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700667 }
668
669 @Override
670 public void removeViewAt(int index) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700671 markCellsAsUnoccupiedForView(mShortcutsAndWidgets.getChildAt(index));
672 mShortcutsAndWidgets.removeViewAt(index);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700673 }
674
675 @Override
676 public void removeViewInLayout(View view) {
677 markCellsAsUnoccupiedForView(view);
Michael Jurkaa52570f2012-03-20 03:18:20 -0700678 mShortcutsAndWidgets.removeViewInLayout(view);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700679 }
680
681 @Override
682 public void removeViews(int start, int count) {
683 for (int i = start; i < start + count; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700684 markCellsAsUnoccupiedForView(mShortcutsAndWidgets.getChildAt(i));
Michael Jurka0280c3b2010-09-17 15:00:07 -0700685 }
Michael Jurkaa52570f2012-03-20 03:18:20 -0700686 mShortcutsAndWidgets.removeViews(start, count);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700687 }
688
689 @Override
690 public void removeViewsInLayout(int start, int count) {
691 for (int i = start; i < start + count; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700692 markCellsAsUnoccupiedForView(mShortcutsAndWidgets.getChildAt(i));
Michael Jurka0280c3b2010-09-17 15:00:07 -0700693 }
Michael Jurkaa52570f2012-03-20 03:18:20 -0700694 mShortcutsAndWidgets.removeViewsInLayout(start, count);
Michael Jurkaabded662011-03-04 12:06:57 -0800695 }
696
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800697 @Override
698 protected void onAttachedToWindow() {
699 super.onAttachedToWindow();
Adam Cohendcd297f2013-06-18 13:13:40 -0700700 if (getParent() instanceof Workspace) {
701 Workspace workspace = (Workspace) getParent();
702 mCellInfo.screenId = workspace.getIdForScreen(this);
703 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800704 }
705
Michael Jurkaaf442092010-06-10 17:01:57 -0700706 public void setTagToCellInfoForPoint(int touchX, int touchY) {
707 final CellInfo cellInfo = mCellInfo;
Winson Chungeecf02d2012-03-02 17:14:58 -0800708 Rect frame = mRect;
Michael Jurka8b805b12012-04-18 14:23:14 -0700709 final int x = touchX + getScrollX();
710 final int y = touchY + getScrollY();
Michael Jurkaa52570f2012-03-20 03:18:20 -0700711 final int count = mShortcutsAndWidgets.getChildCount();
Michael Jurkaaf442092010-06-10 17:01:57 -0700712
713 boolean found = false;
714 for (int i = count - 1; i >= 0; i--) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700715 final View child = mShortcutsAndWidgets.getChildAt(i);
Adam Cohend4844c32011-02-18 19:25:06 -0800716 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
Michael Jurkaaf442092010-06-10 17:01:57 -0700717
Adam Cohen1b607ed2011-03-03 17:26:50 -0800718 if ((child.getVisibility() == VISIBLE || child.getAnimation() != null) &&
719 lp.isLockedToGrid) {
Michael Jurkaaf442092010-06-10 17:01:57 -0700720 child.getHitRect(frame);
Winson Chung0be025d2011-05-23 17:45:09 -0700721
Winson Chungeecf02d2012-03-02 17:14:58 -0800722 float scale = child.getScaleX();
723 frame = new Rect(child.getLeft(), child.getTop(), child.getRight(),
724 child.getBottom());
Winson Chung0be025d2011-05-23 17:45:09 -0700725 // The child hit rect is relative to the CellLayoutChildren parent, so we need to
726 // offset that by this CellLayout's padding to test an (x,y) point that is relative
727 // to this view.
Michael Jurka8b805b12012-04-18 14:23:14 -0700728 frame.offset(getPaddingLeft(), getPaddingTop());
Winson Chungeecf02d2012-03-02 17:14:58 -0800729 frame.inset((int) (frame.width() * (1f - scale) / 2),
730 (int) (frame.height() * (1f - scale) / 2));
Winson Chung0be025d2011-05-23 17:45:09 -0700731
Michael Jurkaaf442092010-06-10 17:01:57 -0700732 if (frame.contains(x, y)) {
Michael Jurkaaf442092010-06-10 17:01:57 -0700733 cellInfo.cell = child;
734 cellInfo.cellX = lp.cellX;
735 cellInfo.cellY = lp.cellY;
736 cellInfo.spanX = lp.cellHSpan;
737 cellInfo.spanY = lp.cellVSpan;
Michael Jurkaaf442092010-06-10 17:01:57 -0700738 found = true;
Michael Jurkaaf442092010-06-10 17:01:57 -0700739 break;
740 }
741 }
742 }
Winson Chungaafa03c2010-06-11 17:34:16 -0700743
Michael Jurkad771c962011-08-09 15:00:48 -0700744 mLastDownOnOccupiedCell = found;
745
Michael Jurkaaf442092010-06-10 17:01:57 -0700746 if (!found) {
Winson Chung0be025d2011-05-23 17:45:09 -0700747 final int cellXY[] = mTmpXY;
Michael Jurkaaf442092010-06-10 17:01:57 -0700748 pointToCellExact(x, y, cellXY);
749
Michael Jurkaaf442092010-06-10 17:01:57 -0700750 cellInfo.cell = null;
751 cellInfo.cellX = cellXY[0];
752 cellInfo.cellY = cellXY[1];
753 cellInfo.spanX = 1;
754 cellInfo.spanY = 1;
Michael Jurkaaf442092010-06-10 17:01:57 -0700755 }
756 setTag(cellInfo);
757 }
758
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800759 @Override
760 public boolean onInterceptTouchEvent(MotionEvent ev) {
Adam Cohenc1997fd2011-08-15 18:26:39 -0700761 // First we clear the tag to ensure that on every touch down we start with a fresh slate,
762 // even in the case where we return early. Not clearing here was causing bugs whereby on
763 // long-press we'd end up picking up an item from a previous drag operation.
764 final int action = ev.getAction();
765
766 if (action == MotionEvent.ACTION_DOWN) {
767 clearTagCellInfo();
768 }
769
Michael Jurkadee05892010-07-27 10:01:56 -0700770 if (mInterceptTouchListener != null && mInterceptTouchListener.onTouch(this, ev)) {
771 return true;
772 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800773
774 if (action == MotionEvent.ACTION_DOWN) {
Michael Jurkaaf442092010-06-10 17:01:57 -0700775 setTagToCellInfoForPoint((int) ev.getX(), (int) ev.getY());
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800776 }
Winson Chungeecf02d2012-03-02 17:14:58 -0800777
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800778 return false;
779 }
780
Adam Cohenc1997fd2011-08-15 18:26:39 -0700781 private void clearTagCellInfo() {
782 final CellInfo cellInfo = mCellInfo;
783 cellInfo.cell = null;
784 cellInfo.cellX = -1;
785 cellInfo.cellY = -1;
786 cellInfo.spanX = 0;
787 cellInfo.spanY = 0;
788 setTag(cellInfo);
789 }
790
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800791 public CellInfo getTag() {
Michael Jurka0280c3b2010-09-17 15:00:07 -0700792 return (CellInfo) super.getTag();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800793 }
794
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700795 /**
Winson Chungaafa03c2010-06-11 17:34:16 -0700796 * Given a point, return the cell that strictly encloses that point
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800797 * @param x X coordinate of the point
798 * @param y Y coordinate of the point
799 * @param result Array of 2 ints to hold the x and y coordinate of the cell
800 */
801 void pointToCellExact(int x, int y, int[] result) {
Winson Chung4b825dcd2011-06-19 12:41:22 -0700802 final int hStartPadding = getPaddingLeft();
803 final int vStartPadding = getPaddingTop();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800804
805 result[0] = (x - hStartPadding) / (mCellWidth + mWidthGap);
806 result[1] = (y - vStartPadding) / (mCellHeight + mHeightGap);
807
Adam Cohend22015c2010-07-26 22:02:18 -0700808 final int xAxis = mCountX;
809 final int yAxis = mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800810
811 if (result[0] < 0) result[0] = 0;
812 if (result[0] >= xAxis) result[0] = xAxis - 1;
813 if (result[1] < 0) result[1] = 0;
814 if (result[1] >= yAxis) result[1] = yAxis - 1;
815 }
Winson Chungaafa03c2010-06-11 17:34:16 -0700816
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800817 /**
818 * Given a point, return the cell that most closely encloses that point
819 * @param x X coordinate of the point
820 * @param y Y coordinate of the point
821 * @param result Array of 2 ints to hold the x and y coordinate of the cell
822 */
823 void pointToCellRounded(int x, int y, int[] result) {
824 pointToCellExact(x + (mCellWidth / 2), y + (mCellHeight / 2), result);
825 }
826
827 /**
828 * Given a cell coordinate, return the point that represents the upper left corner of that cell
Winson Chungaafa03c2010-06-11 17:34:16 -0700829 *
830 * @param cellX X coordinate of the cell
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800831 * @param cellY Y coordinate of the cell
Winson Chungaafa03c2010-06-11 17:34:16 -0700832 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800833 * @param result Array of 2 ints to hold the x and y coordinate of the point
834 */
835 void cellToPoint(int cellX, int cellY, int[] result) {
Winson Chung4b825dcd2011-06-19 12:41:22 -0700836 final int hStartPadding = getPaddingLeft();
837 final int vStartPadding = getPaddingTop();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800838
839 result[0] = hStartPadding + cellX * (mCellWidth + mWidthGap);
840 result[1] = vStartPadding + cellY * (mCellHeight + mHeightGap);
841 }
842
Adam Cohene3e27a82011-04-15 12:07:39 -0700843 /**
Adam Cohen482ed822012-03-02 14:15:13 -0800844 * Given a cell coordinate, return the point that represents the center of the cell
Adam Cohene3e27a82011-04-15 12:07:39 -0700845 *
846 * @param cellX X coordinate of the cell
847 * @param cellY Y coordinate of the cell
848 *
849 * @param result Array of 2 ints to hold the x and y coordinate of the point
850 */
851 void cellToCenterPoint(int cellX, int cellY, int[] result) {
Adam Cohen47a876d2012-03-19 13:21:41 -0700852 regionToCenterPoint(cellX, cellY, 1, 1, result);
853 }
854
855 /**
856 * Given a cell coordinate and span return the point that represents the center of the regio
857 *
858 * @param cellX X coordinate of the cell
859 * @param cellY Y coordinate of the cell
860 *
861 * @param result Array of 2 ints to hold the x and y coordinate of the point
862 */
863 void regionToCenterPoint(int cellX, int cellY, int spanX, int spanY, int[] result) {
Winson Chung4b825dcd2011-06-19 12:41:22 -0700864 final int hStartPadding = getPaddingLeft();
865 final int vStartPadding = getPaddingTop();
Adam Cohen47a876d2012-03-19 13:21:41 -0700866 result[0] = hStartPadding + cellX * (mCellWidth + mWidthGap) +
867 (spanX * mCellWidth + (spanX - 1) * mWidthGap) / 2;
868 result[1] = vStartPadding + cellY * (mCellHeight + mHeightGap) +
869 (spanY * mCellHeight + (spanY - 1) * mHeightGap) / 2;
Adam Cohene3e27a82011-04-15 12:07:39 -0700870 }
871
Adam Cohen19f37922012-03-21 11:59:11 -0700872 /**
873 * Given a cell coordinate and span fills out a corresponding pixel rect
874 *
875 * @param cellX X coordinate of the cell
876 * @param cellY Y coordinate of the cell
877 * @param result Rect in which to write the result
878 */
879 void regionToRect(int cellX, int cellY, int spanX, int spanY, Rect result) {
880 final int hStartPadding = getPaddingLeft();
881 final int vStartPadding = getPaddingTop();
882 final int left = hStartPadding + cellX * (mCellWidth + mWidthGap);
883 final int top = vStartPadding + cellY * (mCellHeight + mHeightGap);
884 result.set(left, top, left + (spanX * mCellWidth + (spanX - 1) * mWidthGap),
885 top + (spanY * mCellHeight + (spanY - 1) * mHeightGap));
886 }
887
Adam Cohen482ed822012-03-02 14:15:13 -0800888 public float getDistanceFromCell(float x, float y, int[] cell) {
889 cellToCenterPoint(cell[0], cell[1], mTmpPoint);
890 float distance = (float) Math.sqrt( Math.pow(x - mTmpPoint[0], 2) +
891 Math.pow(y - mTmpPoint[1], 2));
892 return distance;
893 }
894
Romain Guy84f296c2009-11-04 15:00:44 -0800895 int getCellWidth() {
896 return mCellWidth;
897 }
898
899 int getCellHeight() {
900 return mCellHeight;
901 }
902
Adam Cohend4844c32011-02-18 19:25:06 -0800903 int getWidthGap() {
904 return mWidthGap;
905 }
906
907 int getHeightGap() {
908 return mHeightGap;
909 }
910
Adam Cohen7f4eabe2011-04-21 16:19:16 -0700911 Rect getContentRect(Rect r) {
912 if (r == null) {
913 r = new Rect();
914 }
915 int left = getPaddingLeft();
916 int top = getPaddingTop();
Michael Jurka8b805b12012-04-18 14:23:14 -0700917 int right = left + getWidth() - getPaddingLeft() - getPaddingRight();
918 int bottom = top + getHeight() - getPaddingTop() - getPaddingBottom();
Adam Cohen7f4eabe2011-04-21 16:19:16 -0700919 r.set(left, top, right, bottom);
920 return r;
921 }
922
Winson Chungfe411c82013-09-26 16:07:17 -0700923 /** Return a rect that has the cellWidth/cellHeight (left, top), and
924 * widthGap/heightGap (right, bottom) */
Winson Chung66700732013-08-20 16:56:15 -0700925 static void getMetrics(Rect metrics, int paddedMeasureWidth,
926 int paddedMeasureHeight, int countX, int countY) {
Winson Chung5f8afe62013-08-12 16:19:28 -0700927 LauncherAppState app = LauncherAppState.getInstance();
928 DeviceProfile grid = app.getDynamicGrid().getDeviceProfile();
Winson Chung66700732013-08-20 16:56:15 -0700929 metrics.set(grid.calculateCellWidth(paddedMeasureWidth, countX),
930 grid.calculateCellHeight(paddedMeasureHeight, countY), 0, 0);
Adam Cohenf4bd5792012-04-27 11:35:29 -0700931 }
932
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700933 public void setFixedSize(int width, int height) {
934 mFixedWidth = width;
935 mFixedHeight = height;
936 }
937
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800938 @Override
939 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
Winson Chung5f8afe62013-08-12 16:19:28 -0700940 LauncherAppState app = LauncherAppState.getInstance();
941 DeviceProfile grid = app.getDynamicGrid().getDeviceProfile();
942
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800943 int widthSpecMode = MeasureSpec.getMode(widthMeasureSpec);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800944 int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec);
Winson Chung5f8afe62013-08-12 16:19:28 -0700945 int widthSize = MeasureSpec.getSize(widthMeasureSpec);
946 int heightSize = MeasureSpec.getSize(heightMeasureSpec);
Winson Chung2d75f122013-09-23 16:53:31 -0700947 int childWidthSize = widthSize - (getPaddingLeft() + getPaddingRight());
948 int childHeightSize = heightSize - (getPaddingTop() + getPaddingBottom());
Winson Chung11a1a532013-09-13 11:14:45 -0700949 if (mFixedCellWidth < 0 || mFixedCellHeight < 0) {
Winson Chung2d75f122013-09-23 16:53:31 -0700950 int cw = grid.calculateCellWidth(childWidthSize, mCountX);
951 int ch = grid.calculateCellHeight(childHeightSize, mCountY);
Winson Chung11a1a532013-09-13 11:14:45 -0700952 if (cw != mCellWidth || ch != mCellHeight) {
953 mCellWidth = cw;
954 mCellHeight = ch;
955 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap,
956 mHeightGap, mCountX, mCountY);
957 }
Winson Chung5f8afe62013-08-12 16:19:28 -0700958 }
Winson Chungaafa03c2010-06-11 17:34:16 -0700959
Winson Chung2d75f122013-09-23 16:53:31 -0700960 int newWidth = childWidthSize;
961 int newHeight = childHeightSize;
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700962 if (mFixedWidth > 0 && mFixedHeight > 0) {
963 newWidth = mFixedWidth;
964 newHeight = mFixedHeight;
965 } else if (widthSpecMode == MeasureSpec.UNSPECIFIED || heightSpecMode == MeasureSpec.UNSPECIFIED) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800966 throw new RuntimeException("CellLayout cannot have UNSPECIFIED dimensions");
967 }
968
Adam Cohend22015c2010-07-26 22:02:18 -0700969 int numWidthGaps = mCountX - 1;
970 int numHeightGaps = mCountY - 1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800971
Adam Cohen234c4cd2011-07-17 21:03:04 -0700972 if (mOriginalWidthGap < 0 || mOriginalHeightGap < 0) {
Winson Chung2d75f122013-09-23 16:53:31 -0700973 int hSpace = childWidthSize;
974 int vSpace = childHeightSize;
Adam Cohenf4bd5792012-04-27 11:35:29 -0700975 int hFreeSpace = hSpace - (mCountX * mCellWidth);
976 int vFreeSpace = vSpace - (mCountY * mCellHeight);
Winson Chung4b825dcd2011-06-19 12:41:22 -0700977 mWidthGap = Math.min(mMaxGap, numWidthGaps > 0 ? (hFreeSpace / numWidthGaps) : 0);
978 mHeightGap = Math.min(mMaxGap,numHeightGaps > 0 ? (vFreeSpace / numHeightGaps) : 0);
Winson Chung5f8afe62013-08-12 16:19:28 -0700979 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap,
980 mHeightGap, mCountX, mCountY);
Adam Cohen234c4cd2011-07-17 21:03:04 -0700981 } else {
982 mWidthGap = mOriginalWidthGap;
983 mHeightGap = mOriginalHeightGap;
Winson Chungece7f5b2010-10-22 14:54:12 -0700984 }
Michael Jurka8c920dd2011-01-20 14:16:56 -0800985 int count = getChildCount();
Winson Chung5f8afe62013-08-12 16:19:28 -0700986 int maxWidth = 0;
987 int maxHeight = 0;
Michael Jurka8c920dd2011-01-20 14:16:56 -0800988 for (int i = 0; i < count; i++) {
989 View child = getChildAt(i);
Winson Chung2d75f122013-09-23 16:53:31 -0700990 int childWidthMeasureSpec = MeasureSpec.makeMeasureSpec(newWidth,
991 MeasureSpec.EXACTLY);
992 int childheightMeasureSpec = MeasureSpec.makeMeasureSpec(newHeight,
993 MeasureSpec.EXACTLY);
Michael Jurka8c920dd2011-01-20 14:16:56 -0800994 child.measure(childWidthMeasureSpec, childheightMeasureSpec);
Winson Chung5f8afe62013-08-12 16:19:28 -0700995 maxWidth = Math.max(maxWidth, child.getMeasuredWidth());
996 maxHeight = Math.max(maxHeight, child.getMeasuredHeight());
Michael Jurka8c920dd2011-01-20 14:16:56 -0800997 }
Winson Chung2d75f122013-09-23 16:53:31 -0700998 if (mFixedWidth > 0 && mFixedHeight > 0) {
999 setMeasuredDimension(maxWidth, maxHeight);
1000 } else {
1001 setMeasuredDimension(widthSize, heightSize);
1002 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001003 }
1004
1005 @Override
Michael Jurka28750fb2010-09-24 17:43:49 -07001006 protected void onLayout(boolean changed, int l, int t, int r, int b) {
Winson Chung38848ca2013-10-08 12:03:44 -07001007 int offset = getMeasuredWidth() - getPaddingLeft() - getPaddingRight() -
1008 (mCountX * mCellWidth);
1009 int left = getPaddingLeft() + (int) Math.ceil(offset / 2f);
1010 int top = getPaddingTop();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001011 int count = getChildCount();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001012 for (int i = 0; i < count; i++) {
Michael Jurka8c920dd2011-01-20 14:16:56 -08001013 View child = getChildAt(i);
Winson Chung2d75f122013-09-23 16:53:31 -07001014 child.layout(left, top,
1015 left + r - l,
1016 top + b - t);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001017 }
1018 }
1019
1020 @Override
Michael Jurkadee05892010-07-27 10:01:56 -07001021 protected void onSizeChanged(int w, int h, int oldw, int oldh) {
1022 super.onSizeChanged(w, h, oldw, oldh);
Winson Chung82a9bd22013-10-08 16:02:34 -07001023
1024 // Expand the background drawing bounds by the padding baked into the background drawable
1025 Rect padding = new Rect();
1026 mNormalBackground.getPadding(padding);
1027 mBackgroundRect.set(-padding.left, -padding.top, w + padding.right, h + padding.bottom);
1028
Adam Cohenb5ba0972011-09-07 18:02:31 -07001029 mForegroundRect.set(mForegroundPadding, mForegroundPadding,
Adam Cohen215b4162012-08-30 13:14:08 -07001030 w - mForegroundPadding, h - mForegroundPadding);
Michael Jurkadee05892010-07-27 10:01:56 -07001031 }
1032
1033 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001034 protected void setChildrenDrawingCacheEnabled(boolean enabled) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07001035 mShortcutsAndWidgets.setChildrenDrawingCacheEnabled(enabled);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001036 }
1037
1038 @Override
1039 protected void setChildrenDrawnWithCacheEnabled(boolean enabled) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07001040 mShortcutsAndWidgets.setChildrenDrawnWithCacheEnabled(enabled);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001041 }
1042
Michael Jurka5f1c5092010-09-03 14:15:02 -07001043 public float getBackgroundAlpha() {
1044 return mBackgroundAlpha;
Michael Jurkadee05892010-07-27 10:01:56 -07001045 }
1046
Adam Cohen1b0aaac2010-10-28 11:11:18 -07001047 public void setBackgroundAlphaMultiplier(float multiplier) {
Michael Jurkaa3d30ad2012-05-08 13:43:43 -07001048 if (mBackgroundAlphaMultiplier != multiplier) {
1049 mBackgroundAlphaMultiplier = multiplier;
1050 invalidate();
1051 }
Adam Cohen1b0aaac2010-10-28 11:11:18 -07001052 }
1053
Adam Cohenddb82192010-11-10 16:32:54 -08001054 public float getBackgroundAlphaMultiplier() {
1055 return mBackgroundAlphaMultiplier;
1056 }
1057
Michael Jurka5f1c5092010-09-03 14:15:02 -07001058 public void setBackgroundAlpha(float alpha) {
Michael Jurkaafaa0502011-12-13 18:22:50 -08001059 if (mBackgroundAlpha != alpha) {
1060 mBackgroundAlpha = alpha;
1061 invalidate();
1062 }
Michael Jurkadee05892010-07-27 10:01:56 -07001063 }
1064
Michael Jurkaa52570f2012-03-20 03:18:20 -07001065 public void setShortcutAndWidgetAlpha(float alpha) {
Michael Jurka0142d492010-08-25 17:46:15 -07001066 final int childCount = getChildCount();
1067 for (int i = 0; i < childCount; i++) {
Michael Jurkadee05892010-07-27 10:01:56 -07001068 getChildAt(i).setAlpha(alpha);
1069 }
1070 }
1071
Michael Jurkaa52570f2012-03-20 03:18:20 -07001072 public ShortcutAndWidgetContainer getShortcutsAndWidgets() {
1073 if (getChildCount() > 0) {
1074 return (ShortcutAndWidgetContainer) getChildAt(0);
1075 }
1076 return null;
1077 }
1078
Patrick Dubroy440c3602010-07-13 17:50:32 -07001079 public View getChildAt(int x, int y) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07001080 return mShortcutsAndWidgets.getChildAt(x, y);
Patrick Dubroy440c3602010-07-13 17:50:32 -07001081 }
1082
Adam Cohen76fc0852011-06-17 13:26:23 -07001083 public boolean animateChildToPosition(final View child, int cellX, int cellY, int duration,
Adam Cohen482ed822012-03-02 14:15:13 -08001084 int delay, boolean permanent, boolean adjustOccupied) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07001085 ShortcutAndWidgetContainer clc = getShortcutsAndWidgets();
Adam Cohen482ed822012-03-02 14:15:13 -08001086 boolean[][] occupied = mOccupied;
1087 if (!permanent) {
1088 occupied = mTmpOccupied;
1089 }
1090
Adam Cohen19f37922012-03-21 11:59:11 -07001091 if (clc.indexOfChild(child) != -1) {
Adam Cohenbfbfd262011-06-13 16:55:12 -07001092 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
1093 final ItemInfo info = (ItemInfo) child.getTag();
1094
1095 // We cancel any existing animations
1096 if (mReorderAnimators.containsKey(lp)) {
1097 mReorderAnimators.get(lp).cancel();
1098 mReorderAnimators.remove(lp);
1099 }
1100
Adam Cohen482ed822012-03-02 14:15:13 -08001101 final int oldX = lp.x;
1102 final int oldY = lp.y;
1103 if (adjustOccupied) {
1104 occupied[lp.cellX][lp.cellY] = false;
1105 occupied[cellX][cellY] = true;
1106 }
Adam Cohenbfbfd262011-06-13 16:55:12 -07001107 lp.isLockedToGrid = true;
Adam Cohen482ed822012-03-02 14:15:13 -08001108 if (permanent) {
1109 lp.cellX = info.cellX = cellX;
1110 lp.cellY = info.cellY = cellY;
1111 } else {
1112 lp.tmpCellX = cellX;
1113 lp.tmpCellY = cellY;
1114 }
Adam Cohenbfbfd262011-06-13 16:55:12 -07001115 clc.setupLp(lp);
1116 lp.isLockedToGrid = false;
Adam Cohen482ed822012-03-02 14:15:13 -08001117 final int newX = lp.x;
1118 final int newY = lp.y;
Adam Cohenbfbfd262011-06-13 16:55:12 -07001119
Adam Cohen76fc0852011-06-17 13:26:23 -07001120 lp.x = oldX;
1121 lp.y = oldY;
Adam Cohen76fc0852011-06-17 13:26:23 -07001122
Adam Cohen482ed822012-03-02 14:15:13 -08001123 // Exit early if we're not actually moving the view
1124 if (oldX == newX && oldY == newY) {
1125 lp.isLockedToGrid = true;
1126 return true;
1127 }
1128
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001129 ValueAnimator va = LauncherAnimUtils.ofFloat(child, 0f, 1f);
Adam Cohen482ed822012-03-02 14:15:13 -08001130 va.setDuration(duration);
1131 mReorderAnimators.put(lp, va);
1132
1133 va.addUpdateListener(new AnimatorUpdateListener() {
1134 @Override
Adam Cohenbfbfd262011-06-13 16:55:12 -07001135 public void onAnimationUpdate(ValueAnimator animation) {
Adam Cohen482ed822012-03-02 14:15:13 -08001136 float r = ((Float) animation.getAnimatedValue()).floatValue();
Adam Cohen19f37922012-03-21 11:59:11 -07001137 lp.x = (int) ((1 - r) * oldX + r * newX);
1138 lp.y = (int) ((1 - r) * oldY + r * newY);
Adam Cohen6b8a02d2012-03-22 15:13:40 -07001139 child.requestLayout();
Adam Cohenbfbfd262011-06-13 16:55:12 -07001140 }
1141 });
Adam Cohen482ed822012-03-02 14:15:13 -08001142 va.addListener(new AnimatorListenerAdapter() {
Adam Cohenbfbfd262011-06-13 16:55:12 -07001143 boolean cancelled = false;
1144 public void onAnimationEnd(Animator animation) {
1145 // If the animation was cancelled, it means that another animation
1146 // has interrupted this one, and we don't want to lock the item into
1147 // place just yet.
1148 if (!cancelled) {
1149 lp.isLockedToGrid = true;
Adam Cohen482ed822012-03-02 14:15:13 -08001150 child.requestLayout();
Adam Cohenbfbfd262011-06-13 16:55:12 -07001151 }
1152 if (mReorderAnimators.containsKey(lp)) {
1153 mReorderAnimators.remove(lp);
1154 }
1155 }
1156 public void onAnimationCancel(Animator animation) {
1157 cancelled = true;
1158 }
1159 });
Adam Cohen482ed822012-03-02 14:15:13 -08001160 va.setStartDelay(delay);
1161 va.start();
Adam Cohenbfbfd262011-06-13 16:55:12 -07001162 return true;
1163 }
1164 return false;
1165 }
1166
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07001167 /**
1168 * Estimate where the top left cell of the dragged item will land if it is dropped.
1169 *
1170 * @param originX The X value of the top left corner of the item
1171 * @param originY The Y value of the top left corner of the item
1172 * @param spanX The number of horizontal cells that the item spans
1173 * @param spanY The number of vertical cells that the item spans
1174 * @param result The estimated drop cell X and Y.
1175 */
1176 void estimateDropCell(int originX, int originY, int spanX, int spanY, int[] result) {
Adam Cohend22015c2010-07-26 22:02:18 -07001177 final int countX = mCountX;
1178 final int countY = mCountY;
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07001179
Michael Jurkaa63c4522010-08-19 13:52:27 -07001180 // pointToCellRounded takes the top left of a cell but will pad that with
1181 // cellWidth/2 and cellHeight/2 when finding the matching cell
1182 pointToCellRounded(originX, originY, result);
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07001183
1184 // If the item isn't fully on this screen, snap to the edges
1185 int rightOverhang = result[0] + spanX - countX;
1186 if (rightOverhang > 0) {
1187 result[0] -= rightOverhang; // Snap to right
1188 }
1189 result[0] = Math.max(0, result[0]); // Snap to left
1190 int bottomOverhang = result[1] + spanY - countY;
1191 if (bottomOverhang > 0) {
1192 result[1] -= bottomOverhang; // Snap to bottom
1193 }
1194 result[1] = Math.max(0, result[1]); // Snap to top
1195 }
1196
Adam Cohen482ed822012-03-02 14:15:13 -08001197 void visualizeDropLocation(View v, Bitmap dragOutline, int originX, int originY, int cellX,
1198 int cellY, int spanX, int spanY, boolean resize, Point dragOffset, Rect dragRegion) {
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07001199 final int oldDragCellX = mDragCell[0];
1200 final int oldDragCellY = mDragCell[1];
Adam Cohen482ed822012-03-02 14:15:13 -08001201
Adam Cohen2801caf2011-05-13 20:57:39 -07001202 if (dragOutline == null && v == null) {
Adam Cohen2801caf2011-05-13 20:57:39 -07001203 return;
1204 }
1205
Adam Cohen482ed822012-03-02 14:15:13 -08001206 if (cellX != oldDragCellX || cellY != oldDragCellY) {
1207 mDragCell[0] = cellX;
1208 mDragCell[1] = cellY;
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07001209 // Find the top left corner of the rect the object will occupy
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001210 final int[] topLeft = mTmpPoint;
Adam Cohen482ed822012-03-02 14:15:13 -08001211 cellToPoint(cellX, cellY, topLeft);
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001212
Joe Onorato4be866d2010-10-10 11:26:02 -07001213 int left = topLeft[0];
1214 int top = topLeft[1];
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07001215
Winson Chungb8c69f32011-10-19 21:36:08 -07001216 if (v != null && dragOffset == null) {
Adam Cohen99e8b402011-03-25 19:23:43 -07001217 // When drawing the drag outline, it did not account for margin offsets
1218 // added by the view's parent.
1219 MarginLayoutParams lp = (MarginLayoutParams) v.getLayoutParams();
1220 left += lp.leftMargin;
1221 top += lp.topMargin;
Winson Chung150fbab2010-09-29 17:14:26 -07001222
Adam Cohen99e8b402011-03-25 19:23:43 -07001223 // Offsets due to the size difference between the View and the dragOutline.
1224 // There is a size difference to account for the outer blur, which may lie
1225 // outside the bounds of the view.
Winson Chunga9abd0e2010-10-27 17:18:37 -07001226 top += (v.getHeight() - dragOutline.getHeight()) / 2;
Adam Cohenae915ce2011-08-25 13:47:22 -07001227 // We center about the x axis
1228 left += ((mCellWidth * spanX) + ((spanX - 1) * mWidthGap)
1229 - dragOutline.getWidth()) / 2;
Adam Cohen66396872011-04-15 17:50:36 -07001230 } else {
Winson Chungb8c69f32011-10-19 21:36:08 -07001231 if (dragOffset != null && dragRegion != null) {
1232 // Center the drag region *horizontally* in the cell and apply a drag
1233 // outline offset
1234 left += dragOffset.x + ((mCellWidth * spanX) + ((spanX - 1) * mWidthGap)
1235 - dragRegion.width()) / 2;
Winson Chung69737c32013-10-08 17:00:19 -07001236 int cHeight = getShortcutsAndWidgets().getCellContentHeight();
1237 int cellPaddingY = (int) Math.max(0, ((mCellHeight - cHeight) / 2f));
1238 top += dragOffset.y + cellPaddingY;
Winson Chungb8c69f32011-10-19 21:36:08 -07001239 } else {
1240 // Center the drag outline in the cell
1241 left += ((mCellWidth * spanX) + ((spanX - 1) * mWidthGap)
1242 - dragOutline.getWidth()) / 2;
1243 top += ((mCellHeight * spanY) + ((spanY - 1) * mHeightGap)
1244 - dragOutline.getHeight()) / 2;
1245 }
Winson Chunga9abd0e2010-10-27 17:18:37 -07001246 }
Joe Onorato4be866d2010-10-10 11:26:02 -07001247 final int oldIndex = mDragOutlineCurrent;
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07001248 mDragOutlineAnims[oldIndex].animateOut();
1249 mDragOutlineCurrent = (oldIndex + 1) % mDragOutlines.length;
Adam Cohend41fbf52012-02-16 23:53:59 -08001250 Rect r = mDragOutlines[mDragOutlineCurrent];
1251 r.set(left, top, left + dragOutline.getWidth(), top + dragOutline.getHeight());
1252 if (resize) {
Adam Cohen482ed822012-03-02 14:15:13 -08001253 cellToRect(cellX, cellY, spanX, spanY, r);
Adam Cohend41fbf52012-02-16 23:53:59 -08001254 }
Winson Chung150fbab2010-09-29 17:14:26 -07001255
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07001256 mDragOutlineAnims[mDragOutlineCurrent].setTag(dragOutline);
1257 mDragOutlineAnims[mDragOutlineCurrent].animateIn();
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07001258 }
1259 }
1260
Adam Cohene0310962011-04-18 16:15:31 -07001261 public void clearDragOutlines() {
1262 final int oldIndex = mDragOutlineCurrent;
1263 mDragOutlineAnims[oldIndex].animateOut();
Adam Cohend41fbf52012-02-16 23:53:59 -08001264 mDragCell[0] = mDragCell[1] = -1;
Adam Cohene0310962011-04-18 16:15:31 -07001265 }
1266
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001267 /**
Jeff Sharkey70864282009-04-07 21:08:40 -07001268 * Find a vacant area that will fit the given bounds nearest the requested
1269 * cell location. Uses Euclidean distance to score multiple vacant areas.
Winson Chungaafa03c2010-06-11 17:34:16 -07001270 *
Romain Guy51afc022009-05-04 18:03:43 -07001271 * @param pixelX The X location at which you want to search for a vacant area.
1272 * @param pixelY The Y location at which you want to search for a vacant area.
Jeff Sharkey70864282009-04-07 21:08:40 -07001273 * @param spanX Horizontal span of the object.
1274 * @param spanY Vertical span of the object.
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001275 * @param result Array in which to place the result, or null (in which case a new array will
1276 * be allocated)
Jeff Sharkey70864282009-04-07 21:08:40 -07001277 * @return The X, Y cell of a vacant area that can contain this object,
1278 * nearest the requested location.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001279 */
Adam Cohend41fbf52012-02-16 23:53:59 -08001280 int[] findNearestVacantArea(int pixelX, int pixelY, int spanX, int spanY,
1281 int[] result) {
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001282 return findNearestVacantArea(pixelX, pixelY, spanX, spanY, null, result);
Michael Jurka6a1435d2010-09-27 17:35:12 -07001283 }
Winson Chungaafa03c2010-06-11 17:34:16 -07001284
Michael Jurka6a1435d2010-09-27 17:35:12 -07001285 /**
1286 * Find a vacant area that will fit the given bounds nearest the requested
1287 * cell location. Uses Euclidean distance to score multiple vacant areas.
1288 *
1289 * @param pixelX The X location at which you want to search for a vacant area.
1290 * @param pixelY The Y location at which you want to search for a vacant area.
Adam Cohend41fbf52012-02-16 23:53:59 -08001291 * @param minSpanX The minimum horizontal span required
1292 * @param minSpanY The minimum vertical span required
1293 * @param spanX Horizontal span of the object.
1294 * @param spanY Vertical span of the object.
1295 * @param result Array in which to place the result, or null (in which case a new array will
1296 * be allocated)
1297 * @return The X, Y cell of a vacant area that can contain this object,
1298 * nearest the requested location.
1299 */
1300 int[] findNearestVacantArea(int pixelX, int pixelY, int minSpanX, int minSpanY, int spanX,
1301 int spanY, int[] result, int[] resultSpan) {
1302 return findNearestVacantArea(pixelX, pixelY, minSpanX, minSpanY, spanX, spanY, null,
1303 result, resultSpan);
1304 }
1305
1306 /**
1307 * Find a vacant area that will fit the given bounds nearest the requested
1308 * cell location. Uses Euclidean distance to score multiple vacant areas.
1309 *
1310 * @param pixelX The X location at which you want to search for a vacant area.
1311 * @param pixelY The Y location at which you want to search for a vacant area.
Michael Jurka6a1435d2010-09-27 17:35:12 -07001312 * @param spanX Horizontal span of the object.
1313 * @param spanY Vertical span of the object.
Adam Cohendf035382011-04-11 17:22:04 -07001314 * @param ignoreOccupied If true, the result can be an occupied cell
1315 * @param result Array in which to place the result, or null (in which case a new array will
1316 * be allocated)
Michael Jurka6a1435d2010-09-27 17:35:12 -07001317 * @return The X, Y cell of a vacant area that can contain this object,
1318 * nearest the requested location.
1319 */
Adam Cohendf035382011-04-11 17:22:04 -07001320 int[] findNearestArea(int pixelX, int pixelY, int spanX, int spanY, View ignoreView,
1321 boolean ignoreOccupied, int[] result) {
Adam Cohend41fbf52012-02-16 23:53:59 -08001322 return findNearestArea(pixelX, pixelY, spanX, spanY,
Adam Cohen482ed822012-03-02 14:15:13 -08001323 spanX, spanY, ignoreView, ignoreOccupied, result, null, mOccupied);
Adam Cohend41fbf52012-02-16 23:53:59 -08001324 }
1325
1326 private final Stack<Rect> mTempRectStack = new Stack<Rect>();
1327 private void lazyInitTempRectStack() {
1328 if (mTempRectStack.isEmpty()) {
1329 for (int i = 0; i < mCountX * mCountY; i++) {
1330 mTempRectStack.push(new Rect());
1331 }
1332 }
1333 }
Adam Cohen482ed822012-03-02 14:15:13 -08001334
Adam Cohend41fbf52012-02-16 23:53:59 -08001335 private void recycleTempRects(Stack<Rect> used) {
1336 while (!used.isEmpty()) {
1337 mTempRectStack.push(used.pop());
1338 }
1339 }
1340
1341 /**
1342 * Find a vacant area that will fit the given bounds nearest the requested
1343 * cell location. Uses Euclidean distance to score multiple vacant areas.
1344 *
1345 * @param pixelX The X location at which you want to search for a vacant area.
1346 * @param pixelY The Y location at which you want to search for a vacant area.
1347 * @param minSpanX The minimum horizontal span required
1348 * @param minSpanY The minimum vertical span required
1349 * @param spanX Horizontal span of the object.
1350 * @param spanY Vertical span of the object.
1351 * @param ignoreOccupied If true, the result can be an occupied cell
1352 * @param result Array in which to place the result, or null (in which case a new array will
1353 * be allocated)
1354 * @return The X, Y cell of a vacant area that can contain this object,
1355 * nearest the requested location.
1356 */
1357 int[] findNearestArea(int pixelX, int pixelY, int minSpanX, int minSpanY, int spanX, int spanY,
Adam Cohen482ed822012-03-02 14:15:13 -08001358 View ignoreView, boolean ignoreOccupied, int[] result, int[] resultSpan,
1359 boolean[][] occupied) {
Adam Cohend41fbf52012-02-16 23:53:59 -08001360 lazyInitTempRectStack();
Michael Jurkac6ee42e2010-09-30 12:04:50 -07001361 // mark space take by ignoreView as available (method checks if ignoreView is null)
Adam Cohen482ed822012-03-02 14:15:13 -08001362 markCellsAsUnoccupiedForView(ignoreView, occupied);
Michael Jurkac6ee42e2010-09-30 12:04:50 -07001363
Adam Cohene3e27a82011-04-15 12:07:39 -07001364 // For items with a spanX / spanY > 1, the passed in point (pixelX, pixelY) corresponds
1365 // to the center of the item, but we are searching based on the top-left cell, so
1366 // we translate the point over to correspond to the top-left.
1367 pixelX -= (mCellWidth + mWidthGap) * (spanX - 1) / 2f;
1368 pixelY -= (mCellHeight + mHeightGap) * (spanY - 1) / 2f;
1369
Jeff Sharkey70864282009-04-07 21:08:40 -07001370 // Keep track of best-scoring drop area
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001371 final int[] bestXY = result != null ? result : new int[2];
Jeff Sharkey70864282009-04-07 21:08:40 -07001372 double bestDistance = Double.MAX_VALUE;
Adam Cohend41fbf52012-02-16 23:53:59 -08001373 final Rect bestRect = new Rect(-1, -1, -1, -1);
1374 final Stack<Rect> validRegions = new Stack<Rect>();
Winson Chungaafa03c2010-06-11 17:34:16 -07001375
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001376 final int countX = mCountX;
1377 final int countY = mCountY;
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001378
Adam Cohend41fbf52012-02-16 23:53:59 -08001379 if (minSpanX <= 0 || minSpanY <= 0 || spanX <= 0 || spanY <= 0 ||
1380 spanX < minSpanX || spanY < minSpanY) {
1381 return bestXY;
1382 }
1383
1384 for (int y = 0; y < countY - (minSpanY - 1); y++) {
Michael Jurkac28de512010-08-13 11:27:44 -07001385 inner:
Adam Cohend41fbf52012-02-16 23:53:59 -08001386 for (int x = 0; x < countX - (minSpanX - 1); x++) {
1387 int ySize = -1;
1388 int xSize = -1;
Adam Cohendf035382011-04-11 17:22:04 -07001389 if (ignoreOccupied) {
Adam Cohend41fbf52012-02-16 23:53:59 -08001390 // First, let's see if this thing fits anywhere
1391 for (int i = 0; i < minSpanX; i++) {
1392 for (int j = 0; j < minSpanY; j++) {
Adam Cohendf035382011-04-11 17:22:04 -07001393 if (occupied[x + i][y + j]) {
Adam Cohendf035382011-04-11 17:22:04 -07001394 continue inner;
1395 }
Michael Jurkac28de512010-08-13 11:27:44 -07001396 }
1397 }
Adam Cohend41fbf52012-02-16 23:53:59 -08001398 xSize = minSpanX;
1399 ySize = minSpanY;
1400
1401 // We know that the item will fit at _some_ acceptable size, now let's see
1402 // how big we can make it. We'll alternate between incrementing x and y spans
1403 // until we hit a limit.
1404 boolean incX = true;
1405 boolean hitMaxX = xSize >= spanX;
1406 boolean hitMaxY = ySize >= spanY;
1407 while (!(hitMaxX && hitMaxY)) {
1408 if (incX && !hitMaxX) {
1409 for (int j = 0; j < ySize; j++) {
1410 if (x + xSize > countX -1 || occupied[x + xSize][y + j]) {
1411 // We can't move out horizontally
1412 hitMaxX = true;
1413 }
1414 }
1415 if (!hitMaxX) {
1416 xSize++;
1417 }
1418 } else if (!hitMaxY) {
1419 for (int i = 0; i < xSize; i++) {
1420 if (y + ySize > countY - 1 || occupied[x + i][y + ySize]) {
1421 // We can't move out vertically
1422 hitMaxY = true;
1423 }
1424 }
1425 if (!hitMaxY) {
1426 ySize++;
1427 }
1428 }
1429 hitMaxX |= xSize >= spanX;
1430 hitMaxY |= ySize >= spanY;
1431 incX = !incX;
1432 }
1433 incX = true;
1434 hitMaxX = xSize >= spanX;
1435 hitMaxY = ySize >= spanY;
Michael Jurkac28de512010-08-13 11:27:44 -07001436 }
Winson Chung0be025d2011-05-23 17:45:09 -07001437 final int[] cellXY = mTmpXY;
Adam Cohene3e27a82011-04-15 12:07:39 -07001438 cellToCenterPoint(x, y, cellXY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001439
Adam Cohend41fbf52012-02-16 23:53:59 -08001440 // We verify that the current rect is not a sub-rect of any of our previous
1441 // candidates. In this case, the current rect is disqualified in favour of the
1442 // containing rect.
1443 Rect currentRect = mTempRectStack.pop();
1444 currentRect.set(x, y, x + xSize, y + ySize);
1445 boolean contained = false;
1446 for (Rect r : validRegions) {
1447 if (r.contains(currentRect)) {
1448 contained = true;
1449 break;
1450 }
1451 }
1452 validRegions.push(currentRect);
Michael Jurkac28de512010-08-13 11:27:44 -07001453 double distance = Math.sqrt(Math.pow(cellXY[0] - pixelX, 2)
1454 + Math.pow(cellXY[1] - pixelY, 2));
Adam Cohen482ed822012-03-02 14:15:13 -08001455
Adam Cohend41fbf52012-02-16 23:53:59 -08001456 if ((distance <= bestDistance && !contained) ||
1457 currentRect.contains(bestRect)) {
Michael Jurkac28de512010-08-13 11:27:44 -07001458 bestDistance = distance;
1459 bestXY[0] = x;
1460 bestXY[1] = y;
Adam Cohend41fbf52012-02-16 23:53:59 -08001461 if (resultSpan != null) {
1462 resultSpan[0] = xSize;
1463 resultSpan[1] = ySize;
1464 }
1465 bestRect.set(currentRect);
Michael Jurkac28de512010-08-13 11:27:44 -07001466 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001467 }
1468 }
Michael Jurkac6ee42e2010-09-30 12:04:50 -07001469 // re-mark space taken by ignoreView as occupied
Adam Cohen482ed822012-03-02 14:15:13 -08001470 markCellsAsOccupiedForView(ignoreView, occupied);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001471
Adam Cohenc0dcf592011-06-01 15:30:43 -07001472 // Return -1, -1 if no suitable location found
1473 if (bestDistance == Double.MAX_VALUE) {
1474 bestXY[0] = -1;
1475 bestXY[1] = -1;
Jeff Sharkey70864282009-04-07 21:08:40 -07001476 }
Adam Cohend41fbf52012-02-16 23:53:59 -08001477 recycleTempRects(validRegions);
Adam Cohenc0dcf592011-06-01 15:30:43 -07001478 return bestXY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001479 }
Winson Chungaafa03c2010-06-11 17:34:16 -07001480
Adam Cohen482ed822012-03-02 14:15:13 -08001481 /**
1482 * Find a vacant area that will fit the given bounds nearest the requested
1483 * cell location, and will also weigh in a suggested direction vector of the
1484 * desired location. This method computers distance based on unit grid distances,
1485 * not pixel distances.
1486 *
Adam Cohen47a876d2012-03-19 13:21:41 -07001487 * @param cellX The X cell nearest to which you want to search for a vacant area.
1488 * @param cellY The Y cell nearest which you want to search for a vacant area.
Adam Cohen482ed822012-03-02 14:15:13 -08001489 * @param spanX Horizontal span of the object.
1490 * @param spanY Vertical span of the object.
Adam Cohen47a876d2012-03-19 13:21:41 -07001491 * @param direction The favored direction in which the views should move from x, y
1492 * @param exactDirectionOnly If this parameter is true, then only solutions where the direction
1493 * matches exactly. Otherwise we find the best matching direction.
1494 * @param occoupied The array which represents which cells in the CellLayout are occupied
1495 * @param blockOccupied The array which represents which cells in the specified block (cellX,
Winson Chung5f8afe62013-08-12 16:19:28 -07001496 * cellY, spanX, spanY) are occupied. This is used when try to move a group of views.
Adam Cohen482ed822012-03-02 14:15:13 -08001497 * @param result Array in which to place the result, or null (in which case a new array will
1498 * be allocated)
1499 * @return The X, Y cell of a vacant area that can contain this object,
1500 * nearest the requested location.
1501 */
1502 private int[] findNearestArea(int cellX, int cellY, int spanX, int spanY, int[] direction,
Adam Cohen47a876d2012-03-19 13:21:41 -07001503 boolean[][] occupied, boolean blockOccupied[][], int[] result) {
Adam Cohen482ed822012-03-02 14:15:13 -08001504 // Keep track of best-scoring drop area
1505 final int[] bestXY = result != null ? result : new int[2];
1506 float bestDistance = Float.MAX_VALUE;
1507 int bestDirectionScore = Integer.MIN_VALUE;
1508
1509 final int countX = mCountX;
1510 final int countY = mCountY;
1511
1512 for (int y = 0; y < countY - (spanY - 1); y++) {
1513 inner:
1514 for (int x = 0; x < countX - (spanX - 1); x++) {
1515 // First, let's see if this thing fits anywhere
1516 for (int i = 0; i < spanX; i++) {
1517 for (int j = 0; j < spanY; j++) {
Adam Cohen47a876d2012-03-19 13:21:41 -07001518 if (occupied[x + i][y + j] && (blockOccupied == null || blockOccupied[i][j])) {
Adam Cohen482ed822012-03-02 14:15:13 -08001519 continue inner;
1520 }
1521 }
1522 }
1523
1524 float distance = (float)
1525 Math.sqrt((x - cellX) * (x - cellX) + (y - cellY) * (y - cellY));
1526 int[] curDirection = mTmpPoint;
Adam Cohen47a876d2012-03-19 13:21:41 -07001527 computeDirectionVector(x - cellX, y - cellY, curDirection);
1528 // The direction score is just the dot product of the two candidate direction
1529 // and that passed in.
Adam Cohen482ed822012-03-02 14:15:13 -08001530 int curDirectionScore = direction[0] * curDirection[0] +
1531 direction[1] * curDirection[1];
Adam Cohen47a876d2012-03-19 13:21:41 -07001532 boolean exactDirectionOnly = false;
1533 boolean directionMatches = direction[0] == curDirection[0] &&
1534 direction[0] == curDirection[0];
1535 if ((directionMatches || !exactDirectionOnly) &&
1536 Float.compare(distance, bestDistance) < 0 || (Float.compare(distance,
Adam Cohen482ed822012-03-02 14:15:13 -08001537 bestDistance) == 0 && curDirectionScore > bestDirectionScore)) {
1538 bestDistance = distance;
1539 bestDirectionScore = curDirectionScore;
1540 bestXY[0] = x;
1541 bestXY[1] = y;
1542 }
1543 }
1544 }
1545
1546 // Return -1, -1 if no suitable location found
1547 if (bestDistance == Float.MAX_VALUE) {
1548 bestXY[0] = -1;
1549 bestXY[1] = -1;
1550 }
1551 return bestXY;
1552 }
1553
1554 private boolean addViewToTempLocation(View v, Rect rectOccupiedByPotentialDrop,
Adam Cohen8baab352012-03-20 17:39:21 -07001555 int[] direction, ItemConfiguration currentState) {
1556 CellAndSpan c = currentState.map.get(v);
Adam Cohen482ed822012-03-02 14:15:13 -08001557 boolean success = false;
Adam Cohen8baab352012-03-20 17:39:21 -07001558 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, false);
Adam Cohen482ed822012-03-02 14:15:13 -08001559 markCellsForRect(rectOccupiedByPotentialDrop, mTmpOccupied, true);
1560
Adam Cohen8baab352012-03-20 17:39:21 -07001561 findNearestArea(c.x, c.y, c.spanX, c.spanY, direction, mTmpOccupied, null, mTempLocation);
Adam Cohen482ed822012-03-02 14:15:13 -08001562
1563 if (mTempLocation[0] >= 0 && mTempLocation[1] >= 0) {
Adam Cohen8baab352012-03-20 17:39:21 -07001564 c.x = mTempLocation[0];
1565 c.y = mTempLocation[1];
Adam Cohen482ed822012-03-02 14:15:13 -08001566 success = true;
Adam Cohen482ed822012-03-02 14:15:13 -08001567 }
Adam Cohen8baab352012-03-20 17:39:21 -07001568 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001569 return success;
1570 }
1571
Adam Cohenf3900c22012-11-16 18:28:11 -08001572 /**
1573 * This helper class defines a cluster of views. It helps with defining complex edges
1574 * of the cluster and determining how those edges interact with other views. The edges
1575 * essentially define a fine-grained boundary around the cluster of views -- like a more
1576 * precise version of a bounding box.
1577 */
1578 private class ViewCluster {
1579 final static int LEFT = 0;
1580 final static int TOP = 1;
1581 final static int RIGHT = 2;
1582 final static int BOTTOM = 3;
Adam Cohen47a876d2012-03-19 13:21:41 -07001583
Adam Cohenf3900c22012-11-16 18:28:11 -08001584 ArrayList<View> views;
1585 ItemConfiguration config;
1586 Rect boundingRect = new Rect();
Adam Cohen47a876d2012-03-19 13:21:41 -07001587
Adam Cohenf3900c22012-11-16 18:28:11 -08001588 int[] leftEdge = new int[mCountY];
1589 int[] rightEdge = new int[mCountY];
1590 int[] topEdge = new int[mCountX];
1591 int[] bottomEdge = new int[mCountX];
1592 boolean leftEdgeDirty, rightEdgeDirty, topEdgeDirty, bottomEdgeDirty, boundingRectDirty;
1593
1594 @SuppressWarnings("unchecked")
1595 public ViewCluster(ArrayList<View> views, ItemConfiguration config) {
1596 this.views = (ArrayList<View>) views.clone();
1597 this.config = config;
1598 resetEdges();
Adam Cohen47a876d2012-03-19 13:21:41 -07001599 }
1600
Adam Cohenf3900c22012-11-16 18:28:11 -08001601 void resetEdges() {
1602 for (int i = 0; i < mCountX; i++) {
1603 topEdge[i] = -1;
1604 bottomEdge[i] = -1;
1605 }
1606 for (int i = 0; i < mCountY; i++) {
1607 leftEdge[i] = -1;
1608 rightEdge[i] = -1;
1609 }
1610 leftEdgeDirty = true;
1611 rightEdgeDirty = true;
1612 bottomEdgeDirty = true;
1613 topEdgeDirty = true;
1614 boundingRectDirty = true;
1615 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001616
Adam Cohenf3900c22012-11-16 18:28:11 -08001617 void computeEdge(int which, int[] edge) {
1618 int count = views.size();
1619 for (int i = 0; i < count; i++) {
1620 CellAndSpan cs = config.map.get(views.get(i));
1621 switch (which) {
1622 case LEFT:
1623 int left = cs.x;
1624 for (int j = cs.y; j < cs.y + cs.spanY; j++) {
1625 if (left < edge[j] || edge[j] < 0) {
1626 edge[j] = left;
Adam Cohena56dc102012-07-13 13:41:42 -07001627 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001628 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001629 break;
1630 case RIGHT:
1631 int right = cs.x + cs.spanX;
1632 for (int j = cs.y; j < cs.y + cs.spanY; j++) {
1633 if (right > edge[j]) {
1634 edge[j] = right;
1635 }
1636 }
1637 break;
1638 case TOP:
1639 int top = cs.y;
1640 for (int j = cs.x; j < cs.x + cs.spanX; j++) {
1641 if (top < edge[j] || edge[j] < 0) {
1642 edge[j] = top;
1643 }
1644 }
1645 break;
1646 case BOTTOM:
1647 int bottom = cs.y + cs.spanY;
1648 for (int j = cs.x; j < cs.x + cs.spanX; j++) {
1649 if (bottom > edge[j]) {
1650 edge[j] = bottom;
1651 }
1652 }
1653 break;
Adam Cohen47a876d2012-03-19 13:21:41 -07001654 }
1655 }
1656 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001657
1658 boolean isViewTouchingEdge(View v, int whichEdge) {
1659 CellAndSpan cs = config.map.get(v);
1660
1661 int[] edge = getEdge(whichEdge);
1662
1663 switch (whichEdge) {
1664 case LEFT:
1665 for (int i = cs.y; i < cs.y + cs.spanY; i++) {
1666 if (edge[i] == cs.x + cs.spanX) {
1667 return true;
1668 }
1669 }
1670 break;
1671 case RIGHT:
1672 for (int i = cs.y; i < cs.y + cs.spanY; i++) {
1673 if (edge[i] == cs.x) {
1674 return true;
1675 }
1676 }
1677 break;
1678 case TOP:
1679 for (int i = cs.x; i < cs.x + cs.spanX; i++) {
1680 if (edge[i] == cs.y + cs.spanY) {
1681 return true;
1682 }
1683 }
1684 break;
1685 case BOTTOM:
1686 for (int i = cs.x; i < cs.x + cs.spanX; i++) {
1687 if (edge[i] == cs.y) {
1688 return true;
1689 }
1690 }
1691 break;
1692 }
1693 return false;
1694 }
1695
1696 void shift(int whichEdge, int delta) {
1697 for (View v: views) {
1698 CellAndSpan c = config.map.get(v);
1699 switch (whichEdge) {
1700 case LEFT:
1701 c.x -= delta;
1702 break;
1703 case RIGHT:
1704 c.x += delta;
1705 break;
1706 case TOP:
1707 c.y -= delta;
1708 break;
1709 case BOTTOM:
1710 default:
1711 c.y += delta;
1712 break;
1713 }
1714 }
1715 resetEdges();
1716 }
1717
1718 public void addView(View v) {
1719 views.add(v);
1720 resetEdges();
1721 }
1722
1723 public Rect getBoundingRect() {
1724 if (boundingRectDirty) {
1725 boolean first = true;
1726 for (View v: views) {
1727 CellAndSpan c = config.map.get(v);
1728 if (first) {
1729 boundingRect.set(c.x, c.y, c.x + c.spanX, c.y + c.spanY);
1730 first = false;
1731 } else {
1732 boundingRect.union(c.x, c.y, c.x + c.spanX, c.y + c.spanY);
1733 }
1734 }
1735 }
1736 return boundingRect;
1737 }
1738
1739 public int[] getEdge(int which) {
1740 switch (which) {
1741 case LEFT:
1742 return getLeftEdge();
1743 case RIGHT:
1744 return getRightEdge();
1745 case TOP:
1746 return getTopEdge();
1747 case BOTTOM:
1748 default:
1749 return getBottomEdge();
1750 }
1751 }
1752
1753 public int[] getLeftEdge() {
1754 if (leftEdgeDirty) {
1755 computeEdge(LEFT, leftEdge);
1756 }
1757 return leftEdge;
1758 }
1759
1760 public int[] getRightEdge() {
1761 if (rightEdgeDirty) {
1762 computeEdge(RIGHT, rightEdge);
1763 }
1764 return rightEdge;
1765 }
1766
1767 public int[] getTopEdge() {
1768 if (topEdgeDirty) {
1769 computeEdge(TOP, topEdge);
1770 }
1771 return topEdge;
1772 }
1773
1774 public int[] getBottomEdge() {
1775 if (bottomEdgeDirty) {
1776 computeEdge(BOTTOM, bottomEdge);
1777 }
1778 return bottomEdge;
1779 }
1780
1781 PositionComparator comparator = new PositionComparator();
1782 class PositionComparator implements Comparator<View> {
1783 int whichEdge = 0;
1784 public int compare(View left, View right) {
1785 CellAndSpan l = config.map.get(left);
1786 CellAndSpan r = config.map.get(right);
1787 switch (whichEdge) {
1788 case LEFT:
1789 return (r.x + r.spanX) - (l.x + l.spanX);
1790 case RIGHT:
1791 return l.x - r.x;
1792 case TOP:
1793 return (r.y + r.spanY) - (l.y + l.spanY);
1794 case BOTTOM:
1795 default:
1796 return l.y - r.y;
1797 }
1798 }
1799 }
1800
1801 public void sortConfigurationForEdgePush(int edge) {
1802 comparator.whichEdge = edge;
1803 Collections.sort(config.sortedViews, comparator);
1804 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001805 }
1806
Adam Cohenf3900c22012-11-16 18:28:11 -08001807 private boolean pushViewsToTempLocation(ArrayList<View> views, Rect rectOccupiedByPotentialDrop,
1808 int[] direction, View dragView, ItemConfiguration currentState) {
Adam Cohene0489502012-08-27 15:18:53 -07001809
Adam Cohenf3900c22012-11-16 18:28:11 -08001810 ViewCluster cluster = new ViewCluster(views, currentState);
1811 Rect clusterRect = cluster.getBoundingRect();
1812 int whichEdge;
1813 int pushDistance;
1814 boolean fail = false;
1815
1816 // Determine the edge of the cluster that will be leading the push and how far
1817 // the cluster must be shifted.
1818 if (direction[0] < 0) {
1819 whichEdge = ViewCluster.LEFT;
1820 pushDistance = clusterRect.right - rectOccupiedByPotentialDrop.left;
Adam Cohene0489502012-08-27 15:18:53 -07001821 } else if (direction[0] > 0) {
Adam Cohenf3900c22012-11-16 18:28:11 -08001822 whichEdge = ViewCluster.RIGHT;
1823 pushDistance = rectOccupiedByPotentialDrop.right - clusterRect.left;
1824 } else if (direction[1] < 0) {
1825 whichEdge = ViewCluster.TOP;
1826 pushDistance = clusterRect.bottom - rectOccupiedByPotentialDrop.top;
1827 } else {
1828 whichEdge = ViewCluster.BOTTOM;
1829 pushDistance = rectOccupiedByPotentialDrop.bottom - clusterRect.top;
Adam Cohene0489502012-08-27 15:18:53 -07001830 }
1831
Adam Cohenf3900c22012-11-16 18:28:11 -08001832 // Break early for invalid push distance.
1833 if (pushDistance <= 0) {
1834 return false;
Adam Cohene0489502012-08-27 15:18:53 -07001835 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001836
1837 // Mark the occupied state as false for the group of views we want to move.
1838 for (View v: views) {
1839 CellAndSpan c = currentState.map.get(v);
1840 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, false);
1841 }
1842
1843 // We save the current configuration -- if we fail to find a solution we will revert
1844 // to the initial state. The process of finding a solution modifies the configuration
1845 // in place, hence the need for revert in the failure case.
1846 currentState.save();
1847
1848 // The pushing algorithm is simplified by considering the views in the order in which
1849 // they would be pushed by the cluster. For example, if the cluster is leading with its
1850 // left edge, we consider sort the views by their right edge, from right to left.
1851 cluster.sortConfigurationForEdgePush(whichEdge);
1852
1853 while (pushDistance > 0 && !fail) {
1854 for (View v: currentState.sortedViews) {
1855 // For each view that isn't in the cluster, we see if the leading edge of the
1856 // cluster is contacting the edge of that view. If so, we add that view to the
1857 // cluster.
1858 if (!cluster.views.contains(v) && v != dragView) {
1859 if (cluster.isViewTouchingEdge(v, whichEdge)) {
1860 LayoutParams lp = (LayoutParams) v.getLayoutParams();
1861 if (!lp.canReorder) {
1862 // The push solution includes the all apps button, this is not viable.
1863 fail = true;
1864 break;
1865 }
1866 cluster.addView(v);
1867 CellAndSpan c = currentState.map.get(v);
1868
1869 // Adding view to cluster, mark it as not occupied.
1870 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, false);
1871 }
1872 }
1873 }
1874 pushDistance--;
1875
1876 // The cluster has been completed, now we move the whole thing over in the appropriate
1877 // direction.
1878 cluster.shift(whichEdge, 1);
1879 }
1880
1881 boolean foundSolution = false;
1882 clusterRect = cluster.getBoundingRect();
1883
1884 // Due to the nature of the algorithm, the only check required to verify a valid solution
1885 // is to ensure that completed shifted cluster lies completely within the cell layout.
1886 if (!fail && clusterRect.left >= 0 && clusterRect.right <= mCountX && clusterRect.top >= 0 &&
1887 clusterRect.bottom <= mCountY) {
1888 foundSolution = true;
1889 } else {
1890 currentState.restore();
1891 }
1892
1893 // In either case, we set the occupied array as marked for the location of the views
1894 for (View v: cluster.views) {
1895 CellAndSpan c = currentState.map.get(v);
1896 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, true);
1897 }
1898
1899 return foundSolution;
Adam Cohene0489502012-08-27 15:18:53 -07001900 }
1901
Adam Cohen482ed822012-03-02 14:15:13 -08001902 private boolean addViewsToTempLocation(ArrayList<View> views, Rect rectOccupiedByPotentialDrop,
Adam Cohenf3900c22012-11-16 18:28:11 -08001903 int[] direction, View dragView, ItemConfiguration currentState) {
Adam Cohen482ed822012-03-02 14:15:13 -08001904 if (views.size() == 0) return true;
Adam Cohen482ed822012-03-02 14:15:13 -08001905
Adam Cohen8baab352012-03-20 17:39:21 -07001906 boolean success = false;
Adam Cohen482ed822012-03-02 14:15:13 -08001907 Rect boundingRect = null;
Adam Cohen8baab352012-03-20 17:39:21 -07001908 // We construct a rect which represents the entire group of views passed in
Adam Cohen482ed822012-03-02 14:15:13 -08001909 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001910 CellAndSpan c = currentState.map.get(v);
Adam Cohen482ed822012-03-02 14:15:13 -08001911 if (boundingRect == null) {
Adam Cohen8baab352012-03-20 17:39:21 -07001912 boundingRect = new Rect(c.x, c.y, c.x + c.spanX, c.y + c.spanY);
Adam Cohen482ed822012-03-02 14:15:13 -08001913 } else {
Adam Cohen8baab352012-03-20 17:39:21 -07001914 boundingRect.union(c.x, c.y, c.x + c.spanX, c.y + c.spanY);
Adam Cohen482ed822012-03-02 14:15:13 -08001915 }
1916 }
Adam Cohen8baab352012-03-20 17:39:21 -07001917
Adam Cohen8baab352012-03-20 17:39:21 -07001918 // Mark the occupied state as false for the group of views we want to move.
Adam Cohenf3900c22012-11-16 18:28:11 -08001919 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001920 CellAndSpan c = currentState.map.get(v);
1921 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, false);
1922 }
1923
Adam Cohen47a876d2012-03-19 13:21:41 -07001924 boolean[][] blockOccupied = new boolean[boundingRect.width()][boundingRect.height()];
1925 int top = boundingRect.top;
1926 int left = boundingRect.left;
Adam Cohen8baab352012-03-20 17:39:21 -07001927 // We mark more precisely which parts of the bounding rect are truly occupied, allowing
Adam Cohena56dc102012-07-13 13:41:42 -07001928 // for interlocking.
Adam Cohenf3900c22012-11-16 18:28:11 -08001929 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001930 CellAndSpan c = currentState.map.get(v);
1931 markCellsForView(c.x - left, c.y - top, c.spanX, c.spanY, blockOccupied, true);
Adam Cohen47a876d2012-03-19 13:21:41 -07001932 }
1933
Adam Cohen482ed822012-03-02 14:15:13 -08001934 markCellsForRect(rectOccupiedByPotentialDrop, mTmpOccupied, true);
1935
Adam Cohenf3900c22012-11-16 18:28:11 -08001936 findNearestArea(boundingRect.left, boundingRect.top, boundingRect.width(),
1937 boundingRect.height(), direction, mTmpOccupied, blockOccupied, mTempLocation);
Adam Cohen482ed822012-03-02 14:15:13 -08001938
Adam Cohen8baab352012-03-20 17:39:21 -07001939 // If we successfuly found a location by pushing the block of views, we commit it
Adam Cohen482ed822012-03-02 14:15:13 -08001940 if (mTempLocation[0] >= 0 && mTempLocation[1] >= 0) {
Adam Cohen8baab352012-03-20 17:39:21 -07001941 int deltaX = mTempLocation[0] - boundingRect.left;
1942 int deltaY = mTempLocation[1] - boundingRect.top;
Adam Cohenf3900c22012-11-16 18:28:11 -08001943 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001944 CellAndSpan c = currentState.map.get(v);
1945 c.x += deltaX;
1946 c.y += deltaY;
Adam Cohen482ed822012-03-02 14:15:13 -08001947 }
1948 success = true;
1949 }
Adam Cohen8baab352012-03-20 17:39:21 -07001950
1951 // In either case, we set the occupied array as marked for the location of the views
Adam Cohenf3900c22012-11-16 18:28:11 -08001952 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001953 CellAndSpan c = currentState.map.get(v);
1954 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001955 }
1956 return success;
1957 }
1958
1959 private void markCellsForRect(Rect r, boolean[][] occupied, boolean value) {
1960 markCellsForView(r.left, r.top, r.width(), r.height(), occupied, value);
1961 }
1962
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001963 // This method tries to find a reordering solution which satisfies the push mechanic by trying
1964 // to push items in each of the cardinal directions, in an order based on the direction vector
1965 // passed.
1966 private boolean attemptPushInDirection(ArrayList<View> intersectingViews, Rect occupied,
1967 int[] direction, View ignoreView, ItemConfiguration solution) {
1968 if ((Math.abs(direction[0]) + Math.abs(direction[1])) > 1) {
Winson Chung5f8afe62013-08-12 16:19:28 -07001969 // If the direction vector has two non-zero components, we try pushing
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001970 // separately in each of the components.
1971 int temp = direction[1];
1972 direction[1] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08001973
1974 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001975 ignoreView, solution)) {
1976 return true;
1977 }
1978 direction[1] = temp;
1979 temp = direction[0];
1980 direction[0] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08001981
1982 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001983 ignoreView, solution)) {
1984 return true;
1985 }
1986 // Revert the direction
1987 direction[0] = temp;
1988
1989 // Now we try pushing in each component of the opposite direction
1990 direction[0] *= -1;
1991 direction[1] *= -1;
1992 temp = direction[1];
1993 direction[1] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08001994 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001995 ignoreView, solution)) {
1996 return true;
1997 }
1998
1999 direction[1] = temp;
2000 temp = direction[0];
2001 direction[0] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08002002 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07002003 ignoreView, solution)) {
2004 return true;
2005 }
2006 // revert the direction
2007 direction[0] = temp;
2008 direction[0] *= -1;
2009 direction[1] *= -1;
Winson Chung5f8afe62013-08-12 16:19:28 -07002010
Adam Cohen4abc5bd2012-05-29 21:06:03 -07002011 } else {
2012 // If the direction vector has a single non-zero component, we push first in the
2013 // direction of the vector
Adam Cohenf3900c22012-11-16 18:28:11 -08002014 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07002015 ignoreView, solution)) {
2016 return true;
2017 }
Adam Cohen4abc5bd2012-05-29 21:06:03 -07002018 // Then we try the opposite direction
2019 direction[0] *= -1;
2020 direction[1] *= -1;
Adam Cohenf3900c22012-11-16 18:28:11 -08002021 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07002022 ignoreView, solution)) {
2023 return true;
2024 }
2025 // Switch the direction back
2026 direction[0] *= -1;
2027 direction[1] *= -1;
Winson Chung5f8afe62013-08-12 16:19:28 -07002028
2029 // If we have failed to find a push solution with the above, then we try
Adam Cohen4abc5bd2012-05-29 21:06:03 -07002030 // to find a solution by pushing along the perpendicular axis.
2031
2032 // Swap the components
2033 int temp = direction[1];
2034 direction[1] = direction[0];
2035 direction[0] = temp;
Adam Cohenf3900c22012-11-16 18:28:11 -08002036 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07002037 ignoreView, solution)) {
2038 return true;
2039 }
2040
2041 // Then we try the opposite direction
2042 direction[0] *= -1;
2043 direction[1] *= -1;
Adam Cohenf3900c22012-11-16 18:28:11 -08002044 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07002045 ignoreView, solution)) {
2046 return true;
2047 }
2048 // Switch the direction back
2049 direction[0] *= -1;
2050 direction[1] *= -1;
2051
2052 // Swap the components back
2053 temp = direction[1];
2054 direction[1] = direction[0];
2055 direction[0] = temp;
2056 }
2057 return false;
2058 }
2059
Adam Cohen482ed822012-03-02 14:15:13 -08002060 private boolean rearrangementExists(int cellX, int cellY, int spanX, int spanY, int[] direction,
Adam Cohen8baab352012-03-20 17:39:21 -07002061 View ignoreView, ItemConfiguration solution) {
Winson Chunge3e03bc2012-05-01 15:10:11 -07002062 // Return early if get invalid cell positions
2063 if (cellX < 0 || cellY < 0) return false;
Adam Cohen482ed822012-03-02 14:15:13 -08002064
Adam Cohen8baab352012-03-20 17:39:21 -07002065 mIntersectingViews.clear();
Adam Cohen482ed822012-03-02 14:15:13 -08002066 mOccupiedRect.set(cellX, cellY, cellX + spanX, cellY + spanY);
Adam Cohen482ed822012-03-02 14:15:13 -08002067
Adam Cohen8baab352012-03-20 17:39:21 -07002068 // Mark the desired location of the view currently being dragged.
Adam Cohen482ed822012-03-02 14:15:13 -08002069 if (ignoreView != null) {
Adam Cohen8baab352012-03-20 17:39:21 -07002070 CellAndSpan c = solution.map.get(ignoreView);
Adam Cohen19f37922012-03-21 11:59:11 -07002071 if (c != null) {
2072 c.x = cellX;
2073 c.y = cellY;
2074 }
Adam Cohen482ed822012-03-02 14:15:13 -08002075 }
Adam Cohen482ed822012-03-02 14:15:13 -08002076 Rect r0 = new Rect(cellX, cellY, cellX + spanX, cellY + spanY);
2077 Rect r1 = new Rect();
Adam Cohen8baab352012-03-20 17:39:21 -07002078 for (View child: solution.map.keySet()) {
Adam Cohen482ed822012-03-02 14:15:13 -08002079 if (child == ignoreView) continue;
Adam Cohen8baab352012-03-20 17:39:21 -07002080 CellAndSpan c = solution.map.get(child);
Adam Cohen482ed822012-03-02 14:15:13 -08002081 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Adam Cohen8baab352012-03-20 17:39:21 -07002082 r1.set(c.x, c.y, c.x + c.spanX, c.y + c.spanY);
Adam Cohen482ed822012-03-02 14:15:13 -08002083 if (Rect.intersects(r0, r1)) {
2084 if (!lp.canReorder) {
2085 return false;
2086 }
2087 mIntersectingViews.add(child);
2088 }
2089 }
Adam Cohen47a876d2012-03-19 13:21:41 -07002090
Winson Chung5f8afe62013-08-12 16:19:28 -07002091 // First we try to find a solution which respects the push mechanic. That is,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07002092 // we try to find a solution such that no displaced item travels through another item
2093 // without also displacing that item.
2094 if (attemptPushInDirection(mIntersectingViews, mOccupiedRect, direction, ignoreView,
Adam Cohen19f37922012-03-21 11:59:11 -07002095 solution)) {
Adam Cohen47a876d2012-03-19 13:21:41 -07002096 return true;
2097 }
Adam Cohen47a876d2012-03-19 13:21:41 -07002098
Adam Cohen4abc5bd2012-05-29 21:06:03 -07002099 // Next we try moving the views as a block, but without requiring the push mechanic.
Adam Cohenf3900c22012-11-16 18:28:11 -08002100 if (addViewsToTempLocation(mIntersectingViews, mOccupiedRect, direction, ignoreView,
Adam Cohen19f37922012-03-21 11:59:11 -07002101 solution)) {
Adam Cohen482ed822012-03-02 14:15:13 -08002102 return true;
2103 }
Adam Cohen47a876d2012-03-19 13:21:41 -07002104
Adam Cohen482ed822012-03-02 14:15:13 -08002105 // Ok, they couldn't move as a block, let's move them individually
2106 for (View v : mIntersectingViews) {
Adam Cohen8baab352012-03-20 17:39:21 -07002107 if (!addViewToTempLocation(v, mOccupiedRect, direction, solution)) {
Adam Cohen482ed822012-03-02 14:15:13 -08002108 return false;
2109 }
2110 }
2111 return true;
2112 }
2113
2114 /*
2115 * Returns a pair (x, y), where x,y are in {-1, 0, 1} corresponding to vector between
2116 * the provided point and the provided cell
2117 */
Adam Cohen47a876d2012-03-19 13:21:41 -07002118 private void computeDirectionVector(float deltaX, float deltaY, int[] result) {
Adam Cohen482ed822012-03-02 14:15:13 -08002119 double angle = Math.atan(((float) deltaY) / deltaX);
2120
2121 result[0] = 0;
2122 result[1] = 0;
2123 if (Math.abs(Math.cos(angle)) > 0.5f) {
2124 result[0] = (int) Math.signum(deltaX);
2125 }
2126 if (Math.abs(Math.sin(angle)) > 0.5f) {
2127 result[1] = (int) Math.signum(deltaY);
2128 }
2129 }
2130
Adam Cohen8baab352012-03-20 17:39:21 -07002131 private void copyOccupiedArray(boolean[][] occupied) {
2132 for (int i = 0; i < mCountX; i++) {
2133 for (int j = 0; j < mCountY; j++) {
2134 occupied[i][j] = mOccupied[i][j];
2135 }
2136 }
2137 }
2138
Adam Cohen482ed822012-03-02 14:15:13 -08002139 ItemConfiguration simpleSwap(int pixelX, int pixelY, int minSpanX, int minSpanY, int spanX,
2140 int spanY, int[] direction, View dragView, boolean decX, ItemConfiguration solution) {
Adam Cohen8baab352012-03-20 17:39:21 -07002141 // Copy the current state into the solution. This solution will be manipulated as necessary.
2142 copyCurrentStateToSolution(solution, false);
2143 // Copy the current occupied array into the temporary occupied array. This array will be
2144 // manipulated as necessary to find a solution.
2145 copyOccupiedArray(mTmpOccupied);
Adam Cohen482ed822012-03-02 14:15:13 -08002146
2147 // We find the nearest cell into which we would place the dragged item, assuming there's
2148 // nothing in its way.
2149 int result[] = new int[2];
2150 result = findNearestArea(pixelX, pixelY, spanX, spanY, result);
2151
2152 boolean success = false;
2153 // First we try the exact nearest position of the item being dragged,
2154 // we will then want to try to move this around to other neighbouring positions
Adam Cohen8baab352012-03-20 17:39:21 -07002155 success = rearrangementExists(result[0], result[1], spanX, spanY, direction, dragView,
2156 solution);
Adam Cohen482ed822012-03-02 14:15:13 -08002157
2158 if (!success) {
2159 // We try shrinking the widget down to size in an alternating pattern, shrink 1 in
2160 // x, then 1 in y etc.
2161 if (spanX > minSpanX && (minSpanY == spanY || decX)) {
2162 return simpleSwap(pixelX, pixelY, minSpanX, minSpanY, spanX - 1, spanY, direction,
2163 dragView, false, solution);
2164 } else if (spanY > minSpanY) {
2165 return simpleSwap(pixelX, pixelY, minSpanX, minSpanY, spanX, spanY - 1, direction,
2166 dragView, true, solution);
2167 }
2168 solution.isSolution = false;
2169 } else {
2170 solution.isSolution = true;
2171 solution.dragViewX = result[0];
2172 solution.dragViewY = result[1];
2173 solution.dragViewSpanX = spanX;
2174 solution.dragViewSpanY = spanY;
Adam Cohen482ed822012-03-02 14:15:13 -08002175 }
2176 return solution;
2177 }
2178
2179 private void copyCurrentStateToSolution(ItemConfiguration solution, boolean temp) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002180 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08002181 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002182 View child = mShortcutsAndWidgets.getChildAt(i);
Adam Cohen482ed822012-03-02 14:15:13 -08002183 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Adam Cohen8baab352012-03-20 17:39:21 -07002184 CellAndSpan c;
Adam Cohen482ed822012-03-02 14:15:13 -08002185 if (temp) {
Adam Cohen8baab352012-03-20 17:39:21 -07002186 c = new CellAndSpan(lp.tmpCellX, lp.tmpCellY, lp.cellHSpan, lp.cellVSpan);
Adam Cohen482ed822012-03-02 14:15:13 -08002187 } else {
Adam Cohen8baab352012-03-20 17:39:21 -07002188 c = new CellAndSpan(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan);
Adam Cohen482ed822012-03-02 14:15:13 -08002189 }
Adam Cohenf3900c22012-11-16 18:28:11 -08002190 solution.add(child, c);
Adam Cohen482ed822012-03-02 14:15:13 -08002191 }
2192 }
2193
2194 private void copySolutionToTempState(ItemConfiguration solution, View dragView) {
2195 for (int i = 0; i < mCountX; i++) {
2196 for (int j = 0; j < mCountY; j++) {
2197 mTmpOccupied[i][j] = false;
2198 }
2199 }
2200
Michael Jurkaa52570f2012-03-20 03:18:20 -07002201 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08002202 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002203 View child = mShortcutsAndWidgets.getChildAt(i);
Adam Cohen482ed822012-03-02 14:15:13 -08002204 if (child == dragView) continue;
2205 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Adam Cohen8baab352012-03-20 17:39:21 -07002206 CellAndSpan c = solution.map.get(child);
2207 if (c != null) {
2208 lp.tmpCellX = c.x;
2209 lp.tmpCellY = c.y;
2210 lp.cellHSpan = c.spanX;
2211 lp.cellVSpan = c.spanY;
2212 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, true);
Adam Cohen482ed822012-03-02 14:15:13 -08002213 }
2214 }
2215 markCellsForView(solution.dragViewX, solution.dragViewY, solution.dragViewSpanX,
2216 solution.dragViewSpanY, mTmpOccupied, true);
2217 }
2218
2219 private void animateItemsToSolution(ItemConfiguration solution, View dragView, boolean
2220 commitDragView) {
2221
2222 boolean[][] occupied = DESTRUCTIVE_REORDER ? mOccupied : mTmpOccupied;
2223 for (int i = 0; i < mCountX; i++) {
2224 for (int j = 0; j < mCountY; j++) {
2225 occupied[i][j] = false;
2226 }
2227 }
2228
Michael Jurkaa52570f2012-03-20 03:18:20 -07002229 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08002230 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002231 View child = mShortcutsAndWidgets.getChildAt(i);
Adam Cohen482ed822012-03-02 14:15:13 -08002232 if (child == dragView) continue;
Adam Cohen8baab352012-03-20 17:39:21 -07002233 CellAndSpan c = solution.map.get(child);
2234 if (c != null) {
Adam Cohen19f37922012-03-21 11:59:11 -07002235 animateChildToPosition(child, c.x, c.y, REORDER_ANIMATION_DURATION, 0,
2236 DESTRUCTIVE_REORDER, false);
Adam Cohen8baab352012-03-20 17:39:21 -07002237 markCellsForView(c.x, c.y, c.spanX, c.spanY, occupied, true);
Adam Cohen482ed822012-03-02 14:15:13 -08002238 }
2239 }
2240 if (commitDragView) {
2241 markCellsForView(solution.dragViewX, solution.dragViewY, solution.dragViewSpanX,
2242 solution.dragViewSpanY, occupied, true);
2243 }
2244 }
2245
Adam Cohen19f37922012-03-21 11:59:11 -07002246 // This method starts or changes the reorder hint animations
2247 private void beginOrAdjustHintAnimations(ItemConfiguration solution, View dragView, int delay) {
2248 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen19f37922012-03-21 11:59:11 -07002249 for (int i = 0; i < childCount; i++) {
2250 View child = mShortcutsAndWidgets.getChildAt(i);
2251 if (child == dragView) continue;
2252 CellAndSpan c = solution.map.get(child);
2253 LayoutParams lp = (LayoutParams) child.getLayoutParams();
2254 if (c != null) {
2255 ReorderHintAnimation rha = new ReorderHintAnimation(child, lp.cellX, lp.cellY,
2256 c.x, c.y, c.spanX, c.spanY);
Adam Cohend024f982012-05-23 18:26:45 -07002257 rha.animate();
Adam Cohen19f37922012-03-21 11:59:11 -07002258 }
2259 }
2260 }
2261
2262 // Class which represents the reorder hint animations. These animations show that an item is
2263 // in a temporary state, and hint at where the item will return to.
2264 class ReorderHintAnimation {
2265 View child;
Adam Cohend024f982012-05-23 18:26:45 -07002266 float finalDeltaX;
2267 float finalDeltaY;
2268 float initDeltaX;
2269 float initDeltaY;
2270 float finalScale;
2271 float initScale;
Brandon Keely50e6e562012-05-08 16:28:49 -07002272 private static final int DURATION = 300;
Adam Cohene7587d22012-05-24 18:50:02 -07002273 Animator a;
Adam Cohen19f37922012-03-21 11:59:11 -07002274
2275 public ReorderHintAnimation(View child, int cellX0, int cellY0, int cellX1, int cellY1,
2276 int spanX, int spanY) {
2277 regionToCenterPoint(cellX0, cellY0, spanX, spanY, mTmpPoint);
2278 final int x0 = mTmpPoint[0];
2279 final int y0 = mTmpPoint[1];
2280 regionToCenterPoint(cellX1, cellY1, spanX, spanY, mTmpPoint);
2281 final int x1 = mTmpPoint[0];
2282 final int y1 = mTmpPoint[1];
2283 final int dX = x1 - x0;
2284 final int dY = y1 - y0;
Adam Cohend024f982012-05-23 18:26:45 -07002285 finalDeltaX = 0;
2286 finalDeltaY = 0;
Adam Cohen19f37922012-03-21 11:59:11 -07002287 if (dX == dY && dX == 0) {
2288 } else {
2289 if (dY == 0) {
Adam Cohend024f982012-05-23 18:26:45 -07002290 finalDeltaX = - Math.signum(dX) * mReorderHintAnimationMagnitude;
Adam Cohen19f37922012-03-21 11:59:11 -07002291 } else if (dX == 0) {
Adam Cohend024f982012-05-23 18:26:45 -07002292 finalDeltaY = - Math.signum(dY) * mReorderHintAnimationMagnitude;
Adam Cohen19f37922012-03-21 11:59:11 -07002293 } else {
2294 double angle = Math.atan( (float) (dY) / dX);
Adam Cohend024f982012-05-23 18:26:45 -07002295 finalDeltaX = (int) (- Math.signum(dX) *
Adam Cohenfe41ac62012-05-23 14:00:37 -07002296 Math.abs(Math.cos(angle) * mReorderHintAnimationMagnitude));
Adam Cohend024f982012-05-23 18:26:45 -07002297 finalDeltaY = (int) (- Math.signum(dY) *
Adam Cohenfe41ac62012-05-23 14:00:37 -07002298 Math.abs(Math.sin(angle) * mReorderHintAnimationMagnitude));
Adam Cohen19f37922012-03-21 11:59:11 -07002299 }
2300 }
Adam Cohend024f982012-05-23 18:26:45 -07002301 initDeltaX = child.getTranslationX();
2302 initDeltaY = child.getTranslationY();
Adam Cohen307fe232012-08-16 17:55:58 -07002303 finalScale = getChildrenScale() - 4.0f / child.getWidth();
Adam Cohend024f982012-05-23 18:26:45 -07002304 initScale = child.getScaleX();
Adam Cohen19f37922012-03-21 11:59:11 -07002305 this.child = child;
2306 }
2307
Adam Cohend024f982012-05-23 18:26:45 -07002308 void animate() {
Adam Cohen19f37922012-03-21 11:59:11 -07002309 if (mShakeAnimators.containsKey(child)) {
2310 ReorderHintAnimation oldAnimation = mShakeAnimators.get(child);
Adam Cohend024f982012-05-23 18:26:45 -07002311 oldAnimation.cancel();
Adam Cohen19f37922012-03-21 11:59:11 -07002312 mShakeAnimators.remove(child);
Adam Cohene7587d22012-05-24 18:50:02 -07002313 if (finalDeltaX == 0 && finalDeltaY == 0) {
2314 completeAnimationImmediately();
2315 return;
2316 }
Adam Cohen19f37922012-03-21 11:59:11 -07002317 }
Adam Cohend024f982012-05-23 18:26:45 -07002318 if (finalDeltaX == 0 && finalDeltaY == 0) {
Adam Cohen19f37922012-03-21 11:59:11 -07002319 return;
2320 }
Michael Jurkaf1ad6082013-03-13 12:55:46 +01002321 ValueAnimator va = LauncherAnimUtils.ofFloat(child, 0f, 1f);
Adam Cohene7587d22012-05-24 18:50:02 -07002322 a = va;
Adam Cohen19f37922012-03-21 11:59:11 -07002323 va.setRepeatMode(ValueAnimator.REVERSE);
2324 va.setRepeatCount(ValueAnimator.INFINITE);
Adam Cohen7bdfc972012-05-22 16:50:35 -07002325 va.setDuration(DURATION);
Adam Cohend024f982012-05-23 18:26:45 -07002326 va.setStartDelay((int) (Math.random() * 60));
Adam Cohen19f37922012-03-21 11:59:11 -07002327 va.addUpdateListener(new AnimatorUpdateListener() {
2328 @Override
2329 public void onAnimationUpdate(ValueAnimator animation) {
2330 float r = ((Float) animation.getAnimatedValue()).floatValue();
Adam Cohend024f982012-05-23 18:26:45 -07002331 float x = r * finalDeltaX + (1 - r) * initDeltaX;
2332 float y = r * finalDeltaY + (1 - r) * initDeltaY;
Adam Cohen19f37922012-03-21 11:59:11 -07002333 child.setTranslationX(x);
2334 child.setTranslationY(y);
Adam Cohend024f982012-05-23 18:26:45 -07002335 float s = r * finalScale + (1 - r) * initScale;
Brandon Keely50e6e562012-05-08 16:28:49 -07002336 child.setScaleX(s);
2337 child.setScaleY(s);
Adam Cohen19f37922012-03-21 11:59:11 -07002338 }
2339 });
2340 va.addListener(new AnimatorListenerAdapter() {
2341 public void onAnimationRepeat(Animator animation) {
Adam Cohen19f37922012-03-21 11:59:11 -07002342 // We make sure to end only after a full period
Adam Cohend024f982012-05-23 18:26:45 -07002343 initDeltaX = 0;
2344 initDeltaY = 0;
Adam Cohen307fe232012-08-16 17:55:58 -07002345 initScale = getChildrenScale();
Adam Cohen19f37922012-03-21 11:59:11 -07002346 }
2347 });
Adam Cohen19f37922012-03-21 11:59:11 -07002348 mShakeAnimators.put(child, this);
2349 va.start();
2350 }
2351
Adam Cohend024f982012-05-23 18:26:45 -07002352 private void cancel() {
Adam Cohene7587d22012-05-24 18:50:02 -07002353 if (a != null) {
2354 a.cancel();
2355 }
Adam Cohen19f37922012-03-21 11:59:11 -07002356 }
Adam Cohene7587d22012-05-24 18:50:02 -07002357
Brandon Keely50e6e562012-05-08 16:28:49 -07002358 private void completeAnimationImmediately() {
Adam Cohene7587d22012-05-24 18:50:02 -07002359 if (a != null) {
2360 a.cancel();
2361 }
Brandon Keely50e6e562012-05-08 16:28:49 -07002362
Michael Jurka2ecf9952012-06-18 12:52:28 -07002363 AnimatorSet s = LauncherAnimUtils.createAnimatorSet();
Adam Cohene7587d22012-05-24 18:50:02 -07002364 a = s;
Brandon Keely50e6e562012-05-08 16:28:49 -07002365 s.playTogether(
Adam Cohen307fe232012-08-16 17:55:58 -07002366 LauncherAnimUtils.ofFloat(child, "scaleX", getChildrenScale()),
2367 LauncherAnimUtils.ofFloat(child, "scaleY", getChildrenScale()),
Michael Jurka2ecf9952012-06-18 12:52:28 -07002368 LauncherAnimUtils.ofFloat(child, "translationX", 0f),
2369 LauncherAnimUtils.ofFloat(child, "translationY", 0f)
Brandon Keely50e6e562012-05-08 16:28:49 -07002370 );
2371 s.setDuration(REORDER_ANIMATION_DURATION);
2372 s.setInterpolator(new android.view.animation.DecelerateInterpolator(1.5f));
2373 s.start();
2374 }
Adam Cohen19f37922012-03-21 11:59:11 -07002375 }
2376
2377 private void completeAndClearReorderHintAnimations() {
2378 for (ReorderHintAnimation a: mShakeAnimators.values()) {
Brandon Keely50e6e562012-05-08 16:28:49 -07002379 a.completeAnimationImmediately();
Adam Cohen19f37922012-03-21 11:59:11 -07002380 }
2381 mShakeAnimators.clear();
2382 }
2383
Adam Cohen482ed822012-03-02 14:15:13 -08002384 private void commitTempPlacement() {
2385 for (int i = 0; i < mCountX; i++) {
2386 for (int j = 0; j < mCountY; j++) {
2387 mOccupied[i][j] = mTmpOccupied[i][j];
2388 }
2389 }
Michael Jurkaa52570f2012-03-20 03:18:20 -07002390 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08002391 for (int i = 0; i < childCount; i++) {
Adam Cohenea889a22012-03-27 16:45:39 -07002392 View child = mShortcutsAndWidgets.getChildAt(i);
2393 LayoutParams lp = (LayoutParams) child.getLayoutParams();
2394 ItemInfo info = (ItemInfo) child.getTag();
Adam Cohen2acce882012-03-28 19:03:19 -07002395 // We do a null check here because the item info can be null in the case of the
2396 // AllApps button in the hotseat.
2397 if (info != null) {
Adam Cohen487f7dd2012-06-28 18:12:10 -07002398 if (info.cellX != lp.tmpCellX || info.cellY != lp.tmpCellY ||
2399 info.spanX != lp.cellHSpan || info.spanY != lp.cellVSpan) {
2400 info.requiresDbUpdate = true;
2401 }
Adam Cohen2acce882012-03-28 19:03:19 -07002402 info.cellX = lp.cellX = lp.tmpCellX;
2403 info.cellY = lp.cellY = lp.tmpCellY;
Adam Cohenbebf0422012-04-11 18:06:28 -07002404 info.spanX = lp.cellHSpan;
2405 info.spanY = lp.cellVSpan;
Adam Cohen2acce882012-03-28 19:03:19 -07002406 }
Adam Cohen482ed822012-03-02 14:15:13 -08002407 }
Adam Cohen2acce882012-03-28 19:03:19 -07002408 mLauncher.getWorkspace().updateItemLocationsInDatabase(this);
Adam Cohen482ed822012-03-02 14:15:13 -08002409 }
2410
2411 public void setUseTempCoords(boolean useTempCoords) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002412 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08002413 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002414 LayoutParams lp = (LayoutParams) mShortcutsAndWidgets.getChildAt(i).getLayoutParams();
Adam Cohen482ed822012-03-02 14:15:13 -08002415 lp.useTmpCoords = useTempCoords;
2416 }
2417 }
2418
Adam Cohen482ed822012-03-02 14:15:13 -08002419 ItemConfiguration findConfigurationNoShuffle(int pixelX, int pixelY, int minSpanX, int minSpanY,
2420 int spanX, int spanY, View dragView, ItemConfiguration solution) {
2421 int[] result = new int[2];
2422 int[] resultSpan = new int[2];
2423 findNearestVacantArea(pixelX, pixelY, minSpanX, minSpanY, spanX, spanY, null, result,
2424 resultSpan);
2425 if (result[0] >= 0 && result[1] >= 0) {
2426 copyCurrentStateToSolution(solution, false);
2427 solution.dragViewX = result[0];
2428 solution.dragViewY = result[1];
2429 solution.dragViewSpanX = resultSpan[0];
2430 solution.dragViewSpanY = resultSpan[1];
2431 solution.isSolution = true;
2432 } else {
2433 solution.isSolution = false;
2434 }
2435 return solution;
2436 }
2437
2438 public void prepareChildForDrag(View child) {
2439 markCellsAsUnoccupiedForView(child);
Adam Cohen482ed822012-03-02 14:15:13 -08002440 }
2441
Adam Cohen19f37922012-03-21 11:59:11 -07002442 /* This seems like it should be obvious and straight-forward, but when the direction vector
2443 needs to match with the notion of the dragView pushing other views, we have to employ
2444 a slightly more subtle notion of the direction vector. The question is what two points is
2445 the vector between? The center of the dragView and its desired destination? Not quite, as
2446 this doesn't necessarily coincide with the interaction of the dragView and items occupying
2447 those cells. Instead we use some heuristics to often lock the vector to up, down, left
2448 or right, which helps make pushing feel right.
2449 */
2450 private void getDirectionVectorForDrop(int dragViewCenterX, int dragViewCenterY, int spanX,
2451 int spanY, View dragView, int[] resultDirection) {
2452 int[] targetDestination = new int[2];
2453
2454 findNearestArea(dragViewCenterX, dragViewCenterY, spanX, spanY, targetDestination);
2455 Rect dragRect = new Rect();
2456 regionToRect(targetDestination[0], targetDestination[1], spanX, spanY, dragRect);
2457 dragRect.offset(dragViewCenterX - dragRect.centerX(), dragViewCenterY - dragRect.centerY());
2458
2459 Rect dropRegionRect = new Rect();
2460 getViewsIntersectingRegion(targetDestination[0], targetDestination[1], spanX, spanY,
2461 dragView, dropRegionRect, mIntersectingViews);
2462
2463 int dropRegionSpanX = dropRegionRect.width();
2464 int dropRegionSpanY = dropRegionRect.height();
2465
2466 regionToRect(dropRegionRect.left, dropRegionRect.top, dropRegionRect.width(),
2467 dropRegionRect.height(), dropRegionRect);
2468
2469 int deltaX = (dropRegionRect.centerX() - dragViewCenterX) / spanX;
2470 int deltaY = (dropRegionRect.centerY() - dragViewCenterY) / spanY;
2471
2472 if (dropRegionSpanX == mCountX || spanX == mCountX) {
2473 deltaX = 0;
2474 }
2475 if (dropRegionSpanY == mCountY || spanY == mCountY) {
2476 deltaY = 0;
2477 }
2478
2479 if (deltaX == 0 && deltaY == 0) {
2480 // No idea what to do, give a random direction.
2481 resultDirection[0] = 1;
2482 resultDirection[1] = 0;
2483 } else {
2484 computeDirectionVector(deltaX, deltaY, resultDirection);
2485 }
2486 }
2487
2488 // For a given cell and span, fetch the set of views intersecting the region.
2489 private void getViewsIntersectingRegion(int cellX, int cellY, int spanX, int spanY,
2490 View dragView, Rect boundingRect, ArrayList<View> intersectingViews) {
2491 if (boundingRect != null) {
2492 boundingRect.set(cellX, cellY, cellX + spanX, cellY + spanY);
2493 }
2494 intersectingViews.clear();
2495 Rect r0 = new Rect(cellX, cellY, cellX + spanX, cellY + spanY);
2496 Rect r1 = new Rect();
2497 final int count = mShortcutsAndWidgets.getChildCount();
2498 for (int i = 0; i < count; i++) {
2499 View child = mShortcutsAndWidgets.getChildAt(i);
2500 if (child == dragView) continue;
2501 LayoutParams lp = (LayoutParams) child.getLayoutParams();
2502 r1.set(lp.cellX, lp.cellY, lp.cellX + lp.cellHSpan, lp.cellY + lp.cellVSpan);
2503 if (Rect.intersects(r0, r1)) {
2504 mIntersectingViews.add(child);
2505 if (boundingRect != null) {
2506 boundingRect.union(r1);
2507 }
2508 }
2509 }
2510 }
2511
2512 boolean isNearestDropLocationOccupied(int pixelX, int pixelY, int spanX, int spanY,
2513 View dragView, int[] result) {
2514 result = findNearestArea(pixelX, pixelY, spanX, spanY, result);
2515 getViewsIntersectingRegion(result[0], result[1], spanX, spanY, dragView, null,
2516 mIntersectingViews);
2517 return !mIntersectingViews.isEmpty();
2518 }
2519
2520 void revertTempState() {
2521 if (!isItemPlacementDirty() || DESTRUCTIVE_REORDER) return;
2522 final int count = mShortcutsAndWidgets.getChildCount();
2523 for (int i = 0; i < count; i++) {
2524 View child = mShortcutsAndWidgets.getChildAt(i);
2525 LayoutParams lp = (LayoutParams) child.getLayoutParams();
2526 if (lp.tmpCellX != lp.cellX || lp.tmpCellY != lp.cellY) {
2527 lp.tmpCellX = lp.cellX;
2528 lp.tmpCellY = lp.cellY;
2529 animateChildToPosition(child, lp.cellX, lp.cellY, REORDER_ANIMATION_DURATION,
2530 0, false, false);
2531 }
2532 }
2533 completeAndClearReorderHintAnimations();
2534 setItemPlacementDirty(false);
2535 }
2536
Adam Cohenbebf0422012-04-11 18:06:28 -07002537 boolean createAreaForResize(int cellX, int cellY, int spanX, int spanY,
2538 View dragView, int[] direction, boolean commit) {
2539 int[] pixelXY = new int[2];
2540 regionToCenterPoint(cellX, cellY, spanX, spanY, pixelXY);
2541
2542 // First we determine if things have moved enough to cause a different layout
2543 ItemConfiguration swapSolution = simpleSwap(pixelXY[0], pixelXY[1], spanX, spanY,
2544 spanX, spanY, direction, dragView, true, new ItemConfiguration());
2545
2546 setUseTempCoords(true);
2547 if (swapSolution != null && swapSolution.isSolution) {
2548 // If we're just testing for a possible location (MODE_ACCEPT_DROP), we don't bother
2549 // committing anything or animating anything as we just want to determine if a solution
2550 // exists
2551 copySolutionToTempState(swapSolution, dragView);
2552 setItemPlacementDirty(true);
2553 animateItemsToSolution(swapSolution, dragView, commit);
2554
2555 if (commit) {
2556 commitTempPlacement();
2557 completeAndClearReorderHintAnimations();
2558 setItemPlacementDirty(false);
2559 } else {
2560 beginOrAdjustHintAnimations(swapSolution, dragView,
2561 REORDER_ANIMATION_DURATION);
2562 }
2563 mShortcutsAndWidgets.requestLayout();
2564 }
2565 return swapSolution.isSolution;
2566 }
2567
Adam Cohen482ed822012-03-02 14:15:13 -08002568 int[] createArea(int pixelX, int pixelY, int minSpanX, int minSpanY, int spanX, int spanY,
2569 View dragView, int[] result, int resultSpan[], int mode) {
Adam Cohen482ed822012-03-02 14:15:13 -08002570 // First we determine if things have moved enough to cause a different layout
Adam Cohen47a876d2012-03-19 13:21:41 -07002571 result = findNearestArea(pixelX, pixelY, spanX, spanY, result);
Adam Cohen482ed822012-03-02 14:15:13 -08002572
2573 if (resultSpan == null) {
2574 resultSpan = new int[2];
2575 }
2576
Adam Cohen19f37922012-03-21 11:59:11 -07002577 // When we are checking drop validity or actually dropping, we don't recompute the
2578 // direction vector, since we want the solution to match the preview, and it's possible
2579 // that the exact position of the item has changed to result in a new reordering outcome.
Adam Cohenb209e632012-03-27 17:09:36 -07002580 if ((mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL || mode == MODE_ACCEPT_DROP)
2581 && mPreviousReorderDirection[0] != INVALID_DIRECTION) {
Adam Cohen19f37922012-03-21 11:59:11 -07002582 mDirectionVector[0] = mPreviousReorderDirection[0];
2583 mDirectionVector[1] = mPreviousReorderDirection[1];
2584 // We reset this vector after drop
Adam Cohenb209e632012-03-27 17:09:36 -07002585 if (mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL) {
2586 mPreviousReorderDirection[0] = INVALID_DIRECTION;
2587 mPreviousReorderDirection[1] = INVALID_DIRECTION;
Adam Cohen19f37922012-03-21 11:59:11 -07002588 }
2589 } else {
2590 getDirectionVectorForDrop(pixelX, pixelY, spanX, spanY, dragView, mDirectionVector);
2591 mPreviousReorderDirection[0] = mDirectionVector[0];
2592 mPreviousReorderDirection[1] = mDirectionVector[1];
2593 }
2594
Adam Cohen482ed822012-03-02 14:15:13 -08002595 ItemConfiguration swapSolution = simpleSwap(pixelX, pixelY, minSpanX, minSpanY,
2596 spanX, spanY, mDirectionVector, dragView, true, new ItemConfiguration());
2597
2598 // We attempt the approach which doesn't shuffle views at all
2599 ItemConfiguration noShuffleSolution = findConfigurationNoShuffle(pixelX, pixelY, minSpanX,
2600 minSpanY, spanX, spanY, dragView, new ItemConfiguration());
2601
2602 ItemConfiguration finalSolution = null;
2603 if (swapSolution.isSolution && swapSolution.area() >= noShuffleSolution.area()) {
2604 finalSolution = swapSolution;
2605 } else if (noShuffleSolution.isSolution) {
2606 finalSolution = noShuffleSolution;
2607 }
2608
2609 boolean foundSolution = true;
2610 if (!DESTRUCTIVE_REORDER) {
2611 setUseTempCoords(true);
2612 }
2613
2614 if (finalSolution != null) {
2615 result[0] = finalSolution.dragViewX;
2616 result[1] = finalSolution.dragViewY;
2617 resultSpan[0] = finalSolution.dragViewSpanX;
2618 resultSpan[1] = finalSolution.dragViewSpanY;
2619
2620 // If we're just testing for a possible location (MODE_ACCEPT_DROP), we don't bother
2621 // committing anything or animating anything as we just want to determine if a solution
2622 // exists
2623 if (mode == MODE_DRAG_OVER || mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL) {
2624 if (!DESTRUCTIVE_REORDER) {
2625 copySolutionToTempState(finalSolution, dragView);
2626 }
2627 setItemPlacementDirty(true);
2628 animateItemsToSolution(finalSolution, dragView, mode == MODE_ON_DROP);
2629
Adam Cohen19f37922012-03-21 11:59:11 -07002630 if (!DESTRUCTIVE_REORDER &&
2631 (mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL)) {
Adam Cohen482ed822012-03-02 14:15:13 -08002632 commitTempPlacement();
Adam Cohen19f37922012-03-21 11:59:11 -07002633 completeAndClearReorderHintAnimations();
2634 setItemPlacementDirty(false);
2635 } else {
2636 beginOrAdjustHintAnimations(finalSolution, dragView,
2637 REORDER_ANIMATION_DURATION);
Adam Cohen482ed822012-03-02 14:15:13 -08002638 }
2639 }
2640 } else {
2641 foundSolution = false;
2642 result[0] = result[1] = resultSpan[0] = resultSpan[1] = -1;
2643 }
2644
2645 if ((mode == MODE_ON_DROP || !foundSolution) && !DESTRUCTIVE_REORDER) {
2646 setUseTempCoords(false);
2647 }
Adam Cohen482ed822012-03-02 14:15:13 -08002648
Michael Jurkaa52570f2012-03-20 03:18:20 -07002649 mShortcutsAndWidgets.requestLayout();
Adam Cohen482ed822012-03-02 14:15:13 -08002650 return result;
2651 }
2652
Adam Cohen19f37922012-03-21 11:59:11 -07002653 void setItemPlacementDirty(boolean dirty) {
2654 mItemPlacementDirty = dirty;
Adam Cohen482ed822012-03-02 14:15:13 -08002655 }
Adam Cohen19f37922012-03-21 11:59:11 -07002656 boolean isItemPlacementDirty() {
2657 return mItemPlacementDirty;
Adam Cohen482ed822012-03-02 14:15:13 -08002658 }
2659
2660 private class ItemConfiguration {
Adam Cohen8baab352012-03-20 17:39:21 -07002661 HashMap<View, CellAndSpan> map = new HashMap<View, CellAndSpan>();
Adam Cohenf3900c22012-11-16 18:28:11 -08002662 private HashMap<View, CellAndSpan> savedMap = new HashMap<View, CellAndSpan>();
2663 ArrayList<View> sortedViews = new ArrayList<View>();
Adam Cohen482ed822012-03-02 14:15:13 -08002664 boolean isSolution = false;
2665 int dragViewX, dragViewY, dragViewSpanX, dragViewSpanY;
2666
Adam Cohenf3900c22012-11-16 18:28:11 -08002667 void save() {
2668 // Copy current state into savedMap
2669 for (View v: map.keySet()) {
2670 map.get(v).copy(savedMap.get(v));
2671 }
2672 }
2673
2674 void restore() {
2675 // Restore current state from savedMap
2676 for (View v: savedMap.keySet()) {
2677 savedMap.get(v).copy(map.get(v));
2678 }
2679 }
2680
2681 void add(View v, CellAndSpan cs) {
2682 map.put(v, cs);
2683 savedMap.put(v, new CellAndSpan());
2684 sortedViews.add(v);
2685 }
2686
Adam Cohen482ed822012-03-02 14:15:13 -08002687 int area() {
2688 return dragViewSpanX * dragViewSpanY;
2689 }
Adam Cohen8baab352012-03-20 17:39:21 -07002690 }
2691
2692 private class CellAndSpan {
2693 int x, y;
2694 int spanX, spanY;
2695
Adam Cohenf3900c22012-11-16 18:28:11 -08002696 public CellAndSpan() {
2697 }
2698
2699 public void copy(CellAndSpan copy) {
2700 copy.x = x;
2701 copy.y = y;
2702 copy.spanX = spanX;
2703 copy.spanY = spanY;
2704 }
2705
Adam Cohen8baab352012-03-20 17:39:21 -07002706 public CellAndSpan(int x, int y, int spanX, int spanY) {
2707 this.x = x;
2708 this.y = y;
2709 this.spanX = spanX;
2710 this.spanY = spanY;
Adam Cohen482ed822012-03-02 14:15:13 -08002711 }
Adam Cohenf3900c22012-11-16 18:28:11 -08002712
2713 public String toString() {
2714 return "(" + x + ", " + y + ": " + spanX + ", " + spanY + ")";
2715 }
2716
Adam Cohen482ed822012-03-02 14:15:13 -08002717 }
2718
Adam Cohendf035382011-04-11 17:22:04 -07002719 /**
2720 * Find a vacant area that will fit the given bounds nearest the requested
2721 * cell location. Uses Euclidean distance to score multiple vacant areas.
2722 *
2723 * @param pixelX The X location at which you want to search for a vacant area.
2724 * @param pixelY The Y location at which you want to search for a vacant area.
2725 * @param spanX Horizontal span of the object.
2726 * @param spanY Vertical span of the object.
2727 * @param ignoreView Considers space occupied by this view as unoccupied
2728 * @param result Previously returned value to possibly recycle.
2729 * @return The X, Y cell of a vacant area that can contain this object,
2730 * nearest the requested location.
2731 */
2732 int[] findNearestVacantArea(
2733 int pixelX, int pixelY, int spanX, int spanY, View ignoreView, int[] result) {
2734 return findNearestArea(pixelX, pixelY, spanX, spanY, ignoreView, true, result);
2735 }
2736
2737 /**
Adam Cohend41fbf52012-02-16 23:53:59 -08002738 * Find a vacant area that will fit the given bounds nearest the requested
2739 * cell location. Uses Euclidean distance to score multiple vacant areas.
2740 *
2741 * @param pixelX The X location at which you want to search for a vacant area.
2742 * @param pixelY The Y location at which you want to search for a vacant area.
2743 * @param minSpanX The minimum horizontal span required
2744 * @param minSpanY The minimum vertical span required
2745 * @param spanX Horizontal span of the object.
2746 * @param spanY Vertical span of the object.
2747 * @param ignoreView Considers space occupied by this view as unoccupied
2748 * @param result Previously returned value to possibly recycle.
2749 * @return The X, Y cell of a vacant area that can contain this object,
2750 * nearest the requested location.
2751 */
2752 int[] findNearestVacantArea(int pixelX, int pixelY, int minSpanX, int minSpanY,
2753 int spanX, int spanY, View ignoreView, int[] result, int[] resultSpan) {
Adam Cohen482ed822012-03-02 14:15:13 -08002754 return findNearestArea(pixelX, pixelY, minSpanX, minSpanY, spanX, spanY, ignoreView, true,
2755 result, resultSpan, mOccupied);
Adam Cohend41fbf52012-02-16 23:53:59 -08002756 }
2757
2758 /**
Adam Cohendf035382011-04-11 17:22:04 -07002759 * Find a starting cell position that will fit the given bounds nearest the requested
2760 * cell location. Uses Euclidean distance to score multiple vacant areas.
2761 *
2762 * @param pixelX The X location at which you want to search for a vacant area.
2763 * @param pixelY The Y location at which you want to search for a vacant area.
2764 * @param spanX Horizontal span of the object.
2765 * @param spanY Vertical span of the object.
2766 * @param ignoreView Considers space occupied by this view as unoccupied
2767 * @param result Previously returned value to possibly recycle.
2768 * @return The X, Y cell of a vacant area that can contain this object,
2769 * nearest the requested location.
2770 */
2771 int[] findNearestArea(
2772 int pixelX, int pixelY, int spanX, int spanY, int[] result) {
2773 return findNearestArea(pixelX, pixelY, spanX, spanY, null, false, result);
2774 }
2775
Michael Jurka0280c3b2010-09-17 15:00:07 -07002776 boolean existsEmptyCell() {
2777 return findCellForSpan(null, 1, 1);
2778 }
2779
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002780 /**
Michael Jurka0280c3b2010-09-17 15:00:07 -07002781 * Finds the upper-left coordinate of the first rectangle in the grid that can
2782 * hold a cell of the specified dimensions. If intersectX and intersectY are not -1,
2783 * then this method will only return coordinates for rectangles that contain the cell
2784 * (intersectX, intersectY)
2785 *
2786 * @param cellXY The array that will contain the position of a vacant cell if such a cell
2787 * can be found.
2788 * @param spanX The horizontal span of the cell we want to find.
2789 * @param spanY The vertical span of the cell we want to find.
2790 *
2791 * @return True if a vacant cell of the specified dimension was found, false otherwise.
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002792 */
Michael Jurka0280c3b2010-09-17 15:00:07 -07002793 boolean findCellForSpan(int[] cellXY, int spanX, int spanY) {
Adam Cohen482ed822012-03-02 14:15:13 -08002794 return findCellForSpanThatIntersectsIgnoring(cellXY, spanX, spanY, -1, -1, null, mOccupied);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002795 }
2796
2797 /**
2798 * Like above, but ignores any cells occupied by the item "ignoreView"
2799 *
2800 * @param cellXY The array that will contain the position of a vacant cell if such a cell
2801 * can be found.
2802 * @param spanX The horizontal span of the cell we want to find.
2803 * @param spanY The vertical span of the cell we want to find.
2804 * @param ignoreView The home screen item we should treat as not occupying any space
2805 * @return
2806 */
2807 boolean findCellForSpanIgnoring(int[] cellXY, int spanX, int spanY, View ignoreView) {
Adam Cohen482ed822012-03-02 14:15:13 -08002808 return findCellForSpanThatIntersectsIgnoring(cellXY, spanX, spanY, -1, -1,
2809 ignoreView, mOccupied);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002810 }
2811
2812 /**
2813 * Like above, but if intersectX and intersectY are not -1, then this method will try to
2814 * return coordinates for rectangles that contain the cell [intersectX, intersectY]
2815 *
2816 * @param spanX The horizontal span of the cell we want to find.
2817 * @param spanY The vertical span of the cell we want to find.
2818 * @param ignoreView The home screen item we should treat as not occupying any space
2819 * @param intersectX The X coordinate of the cell that we should try to overlap
2820 * @param intersectX The Y coordinate of the cell that we should try to overlap
2821 *
2822 * @return True if a vacant cell of the specified dimension was found, false otherwise.
2823 */
2824 boolean findCellForSpanThatIntersects(int[] cellXY, int spanX, int spanY,
2825 int intersectX, int intersectY) {
2826 return findCellForSpanThatIntersectsIgnoring(
Adam Cohen482ed822012-03-02 14:15:13 -08002827 cellXY, spanX, spanY, intersectX, intersectY, null, mOccupied);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002828 }
2829
2830 /**
2831 * The superset of the above two methods
2832 */
2833 boolean findCellForSpanThatIntersectsIgnoring(int[] cellXY, int spanX, int spanY,
Adam Cohen482ed822012-03-02 14:15:13 -08002834 int intersectX, int intersectY, View ignoreView, boolean occupied[][]) {
Michael Jurkac6ee42e2010-09-30 12:04:50 -07002835 // mark space take by ignoreView as available (method checks if ignoreView is null)
Adam Cohen482ed822012-03-02 14:15:13 -08002836 markCellsAsUnoccupiedForView(ignoreView, occupied);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002837
Michael Jurka28750fb2010-09-24 17:43:49 -07002838 boolean foundCell = false;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002839 while (true) {
2840 int startX = 0;
2841 if (intersectX >= 0) {
2842 startX = Math.max(startX, intersectX - (spanX - 1));
2843 }
2844 int endX = mCountX - (spanX - 1);
2845 if (intersectX >= 0) {
2846 endX = Math.min(endX, intersectX + (spanX - 1) + (spanX == 1 ? 1 : 0));
2847 }
2848 int startY = 0;
2849 if (intersectY >= 0) {
2850 startY = Math.max(startY, intersectY - (spanY - 1));
2851 }
2852 int endY = mCountY - (spanY - 1);
2853 if (intersectY >= 0) {
2854 endY = Math.min(endY, intersectY + (spanY - 1) + (spanY == 1 ? 1 : 0));
2855 }
2856
Winson Chungbbc60d82010-11-11 16:34:41 -08002857 for (int y = startY; y < endY && !foundCell; y++) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002858 inner:
Winson Chungbbc60d82010-11-11 16:34:41 -08002859 for (int x = startX; x < endX; x++) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002860 for (int i = 0; i < spanX; i++) {
2861 for (int j = 0; j < spanY; j++) {
Adam Cohen482ed822012-03-02 14:15:13 -08002862 if (occupied[x + i][y + j]) {
Winson Chungbbc60d82010-11-11 16:34:41 -08002863 // small optimization: we can skip to after the column we just found
Michael Jurka0280c3b2010-09-17 15:00:07 -07002864 // an occupied cell
Winson Chungbbc60d82010-11-11 16:34:41 -08002865 x += i;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002866 continue inner;
2867 }
2868 }
2869 }
2870 if (cellXY != null) {
2871 cellXY[0] = x;
2872 cellXY[1] = y;
2873 }
Michael Jurka28750fb2010-09-24 17:43:49 -07002874 foundCell = true;
2875 break;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002876 }
2877 }
2878 if (intersectX == -1 && intersectY == -1) {
2879 break;
2880 } else {
2881 // if we failed to find anything, try again but without any requirements of
2882 // intersecting
2883 intersectX = -1;
2884 intersectY = -1;
2885 continue;
2886 }
2887 }
2888
Michael Jurkac6ee42e2010-09-30 12:04:50 -07002889 // re-mark space taken by ignoreView as occupied
Adam Cohen482ed822012-03-02 14:15:13 -08002890 markCellsAsOccupiedForView(ignoreView, occupied);
Michael Jurka28750fb2010-09-24 17:43:49 -07002891 return foundCell;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002892 }
2893
2894 /**
Winson Chungc07918d2011-07-01 15:35:26 -07002895 * A drag event has begun over this layout.
2896 * It may have begun over this layout (in which case onDragChild is called first),
2897 * or it may have begun on another layout.
2898 */
2899 void onDragEnter() {
Adam Cohenc6cc61d2012-04-04 12:47:08 -07002900 mDragEnforcer.onDragEnter();
Winson Chungc07918d2011-07-01 15:35:26 -07002901 mDragging = true;
2902 }
2903
2904 /**
Michael Jurka0280c3b2010-09-17 15:00:07 -07002905 * Called when drag has left this CellLayout or has been completed (successfully or not)
2906 */
2907 void onDragExit() {
Adam Cohenc6cc61d2012-04-04 12:47:08 -07002908 mDragEnforcer.onDragExit();
Joe Onorato4be866d2010-10-10 11:26:02 -07002909 // This can actually be called when we aren't in a drag, e.g. when adding a new
2910 // item to this layout via the customize drawer.
2911 // Guard against that case.
2912 if (mDragging) {
2913 mDragging = false;
Patrick Dubroyde7658b2010-09-27 11:15:43 -07002914 }
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07002915
2916 // Invalidate the drag data
Adam Cohend41fbf52012-02-16 23:53:59 -08002917 mDragCell[0] = mDragCell[1] = -1;
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07002918 mDragOutlineAnims[mDragOutlineCurrent].animateOut();
2919 mDragOutlineCurrent = (mDragOutlineCurrent + 1) % mDragOutlineAnims.length;
Adam Cohen19f37922012-03-21 11:59:11 -07002920 revertTempState();
Michael Jurka33945b22010-12-21 18:19:38 -08002921 setIsDragOverlapping(false);
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002922 }
2923
2924 /**
Winson Chungaafa03c2010-06-11 17:34:16 -07002925 * Mark a child as having been dropped.
Patrick Dubroyde7658b2010-09-27 11:15:43 -07002926 * At the beginning of the drag operation, the child may have been on another
Patrick Dubroyce34a972010-10-19 10:34:32 -07002927 * screen, but it is re-parented before this method is called.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002928 *
2929 * @param child The child that is being dropped
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002930 */
Adam Cohen716b51e2011-06-30 12:09:54 -07002931 void onDropChild(View child) {
Romain Guyd94533d2009-08-17 10:01:15 -07002932 if (child != null) {
2933 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Romain Guy84f296c2009-11-04 15:00:44 -08002934 lp.dropped = true;
Romain Guyd94533d2009-08-17 10:01:15 -07002935 child.requestLayout();
Romain Guyd94533d2009-08-17 10:01:15 -07002936 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002937 }
2938
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002939 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002940 * Computes a bounding rectangle for a range of cells
Winson Chungaafa03c2010-06-11 17:34:16 -07002941 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002942 * @param cellX X coordinate of upper left corner expressed as a cell position
2943 * @param cellY Y coordinate of upper left corner expressed as a cell position
Winson Chungaafa03c2010-06-11 17:34:16 -07002944 * @param cellHSpan Width in cells
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002945 * @param cellVSpan Height in cells
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002946 * @param resultRect Rect into which to put the results
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002947 */
Adam Cohend41fbf52012-02-16 23:53:59 -08002948 public void cellToRect(int cellX, int cellY, int cellHSpan, int cellVSpan, Rect resultRect) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002949 final int cellWidth = mCellWidth;
2950 final int cellHeight = mCellHeight;
2951 final int widthGap = mWidthGap;
2952 final int heightGap = mHeightGap;
Winson Chungaafa03c2010-06-11 17:34:16 -07002953
Winson Chung4b825dcd2011-06-19 12:41:22 -07002954 final int hStartPadding = getPaddingLeft();
2955 final int vStartPadding = getPaddingTop();
Winson Chungaafa03c2010-06-11 17:34:16 -07002956
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002957 int width = cellHSpan * cellWidth + ((cellHSpan - 1) * widthGap);
2958 int height = cellVSpan * cellHeight + ((cellVSpan - 1) * heightGap);
2959
2960 int x = hStartPadding + cellX * (cellWidth + widthGap);
2961 int y = vStartPadding + cellY * (cellHeight + heightGap);
Winson Chungaafa03c2010-06-11 17:34:16 -07002962
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002963 resultRect.set(x, y, x + width, y + height);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002964 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002965
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002966 /**
Winson Chungaafa03c2010-06-11 17:34:16 -07002967 * Computes the required horizontal and vertical cell spans to always
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002968 * fit the given rectangle.
Winson Chungaafa03c2010-06-11 17:34:16 -07002969 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002970 * @param width Width in pixels
2971 * @param height Height in pixels
Patrick Dubroy8f86ddc2010-07-16 13:55:32 -07002972 * @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 -08002973 */
Winson Chung66700732013-08-20 16:56:15 -07002974 public static int[] rectToCell(int width, int height, int[] result) {
Winson Chung5f8afe62013-08-12 16:19:28 -07002975 LauncherAppState app = LauncherAppState.getInstance();
2976 DeviceProfile grid = app.getDynamicGrid().getDeviceProfile();
Winson Chung66700732013-08-20 16:56:15 -07002977 Rect padding = grid.getWorkspacePadding(grid.isLandscape ?
2978 CellLayout.LANDSCAPE : CellLayout.PORTRAIT);
Winson Chung5f8afe62013-08-12 16:19:28 -07002979
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002980 // Always assume we're working with the smallest span to make sure we
2981 // reserve enough space in both orientations.
Winson Chung66700732013-08-20 16:56:15 -07002982 int parentWidth = grid.calculateCellWidth(grid.widthPx
2983 - padding.left - padding.right, (int) grid.numColumns);
2984 int parentHeight = grid.calculateCellHeight(grid.heightPx
2985 - padding.top - padding.bottom, (int) grid.numRows);
2986 int smallerSize = Math.min(parentWidth, parentHeight);
Joe Onorato79e56262009-09-21 15:23:04 -04002987
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002988 // Always round up to next largest cell
Winson Chung54c725c2011-08-03 12:03:40 -07002989 int spanX = (int) Math.ceil(width / (float) smallerSize);
2990 int spanY = (int) Math.ceil(height / (float) smallerSize);
Joe Onorato79e56262009-09-21 15:23:04 -04002991
Patrick Dubroy8f86ddc2010-07-16 13:55:32 -07002992 if (result == null) {
2993 return new int[] { spanX, spanY };
2994 }
2995 result[0] = spanX;
2996 result[1] = spanY;
2997 return result;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002998 }
2999
Michael Jurkaf12c75c2011-01-25 22:41:40 -08003000 public int[] cellSpansToSize(int hSpans, int vSpans) {
3001 int[] size = new int[2];
3002 size[0] = hSpans * mCellWidth + (hSpans - 1) * mWidthGap;
3003 size[1] = vSpans * mCellHeight + (vSpans - 1) * mHeightGap;
3004 return size;
3005 }
3006
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003007 /**
Patrick Dubroy047379a2010-12-19 22:02:04 -08003008 * Calculate the grid spans needed to fit given item
3009 */
3010 public void calculateSpans(ItemInfo info) {
3011 final int minWidth;
3012 final int minHeight;
3013
3014 if (info instanceof LauncherAppWidgetInfo) {
3015 minWidth = ((LauncherAppWidgetInfo) info).minWidth;
3016 minHeight = ((LauncherAppWidgetInfo) info).minHeight;
3017 } else if (info instanceof PendingAddWidgetInfo) {
3018 minWidth = ((PendingAddWidgetInfo) info).minWidth;
3019 minHeight = ((PendingAddWidgetInfo) info).minHeight;
3020 } else {
3021 // It's not a widget, so it must be 1x1
3022 info.spanX = info.spanY = 1;
3023 return;
3024 }
3025 int[] spans = rectToCell(minWidth, minHeight, null);
3026 info.spanX = spans[0];
3027 info.spanY = spans[1];
3028 }
3029
3030 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003031 * Find the first vacant cell, if there is one.
3032 *
3033 * @param vacant Holds the x and y coordinate of the vacant cell
3034 * @param spanX Horizontal cell span.
3035 * @param spanY Vertical cell span.
Winson Chungaafa03c2010-06-11 17:34:16 -07003036 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003037 * @return True if a vacant cell was found
3038 */
3039 public boolean getVacantCell(int[] vacant, int spanX, int spanY) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003040
Michael Jurka0280c3b2010-09-17 15:00:07 -07003041 return findVacantCell(vacant, spanX, spanY, mCountX, mCountY, mOccupied);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003042 }
3043
3044 static boolean findVacantCell(int[] vacant, int spanX, int spanY,
3045 int xCount, int yCount, boolean[][] occupied) {
3046
Adam Cohen2801caf2011-05-13 20:57:39 -07003047 for (int y = 0; y < yCount; y++) {
3048 for (int x = 0; x < xCount; x++) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003049 boolean available = !occupied[x][y];
3050out: for (int i = x; i < x + spanX - 1 && x < xCount; i++) {
3051 for (int j = y; j < y + spanY - 1 && y < yCount; j++) {
3052 available = available && !occupied[i][j];
3053 if (!available) break out;
3054 }
3055 }
3056
3057 if (available) {
3058 vacant[0] = x;
3059 vacant[1] = y;
3060 return true;
3061 }
3062 }
3063 }
3064
3065 return false;
3066 }
3067
Michael Jurka0280c3b2010-09-17 15:00:07 -07003068 private void clearOccupiedCells() {
3069 for (int x = 0; x < mCountX; x++) {
3070 for (int y = 0; y < mCountY; y++) {
3071 mOccupied[x][y] = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003072 }
3073 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07003074 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003075
Adam Cohend41fbf52012-02-16 23:53:59 -08003076 public void onMove(View view, int newCellX, int newCellY, int newSpanX, int newSpanY) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07003077 markCellsAsUnoccupiedForView(view);
Adam Cohen482ed822012-03-02 14:15:13 -08003078 markCellsForView(newCellX, newCellY, newSpanX, newSpanY, mOccupied, true);
Michael Jurka0280c3b2010-09-17 15:00:07 -07003079 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003080
Adam Cohend4844c32011-02-18 19:25:06 -08003081 public void markCellsAsOccupiedForView(View view) {
Adam Cohen482ed822012-03-02 14:15:13 -08003082 markCellsAsOccupiedForView(view, mOccupied);
3083 }
3084 public void markCellsAsOccupiedForView(View view, boolean[][] occupied) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07003085 if (view == null || view.getParent() != mShortcutsAndWidgets) return;
Michael Jurka0280c3b2010-09-17 15:00:07 -07003086 LayoutParams lp = (LayoutParams) view.getLayoutParams();
Adam Cohen482ed822012-03-02 14:15:13 -08003087 markCellsForView(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan, occupied, true);
Michael Jurka0280c3b2010-09-17 15:00:07 -07003088 }
3089
Adam Cohend4844c32011-02-18 19:25:06 -08003090 public void markCellsAsUnoccupiedForView(View view) {
Adam Cohen482ed822012-03-02 14:15:13 -08003091 markCellsAsUnoccupiedForView(view, mOccupied);
3092 }
3093 public void markCellsAsUnoccupiedForView(View view, boolean occupied[][]) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07003094 if (view == null || view.getParent() != mShortcutsAndWidgets) return;
Michael Jurka0280c3b2010-09-17 15:00:07 -07003095 LayoutParams lp = (LayoutParams) view.getLayoutParams();
Adam Cohen482ed822012-03-02 14:15:13 -08003096 markCellsForView(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan, occupied, false);
Michael Jurka0280c3b2010-09-17 15:00:07 -07003097 }
3098
Adam Cohen482ed822012-03-02 14:15:13 -08003099 private void markCellsForView(int cellX, int cellY, int spanX, int spanY, boolean[][] occupied,
3100 boolean value) {
3101 if (cellX < 0 || cellY < 0) return;
Michael Jurka0280c3b2010-09-17 15:00:07 -07003102 for (int x = cellX; x < cellX + spanX && x < mCountX; x++) {
3103 for (int y = cellY; y < cellY + spanY && y < mCountY; y++) {
Adam Cohen482ed822012-03-02 14:15:13 -08003104 occupied[x][y] = value;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003105 }
3106 }
3107 }
3108
Adam Cohen2801caf2011-05-13 20:57:39 -07003109 public int getDesiredWidth() {
Michael Jurka8b805b12012-04-18 14:23:14 -07003110 return getPaddingLeft() + getPaddingRight() + (mCountX * mCellWidth) +
Adam Cohen2801caf2011-05-13 20:57:39 -07003111 (Math.max((mCountX - 1), 0) * mWidthGap);
3112 }
3113
3114 public int getDesiredHeight() {
Michael Jurka8b805b12012-04-18 14:23:14 -07003115 return getPaddingTop() + getPaddingBottom() + (mCountY * mCellHeight) +
Adam Cohen2801caf2011-05-13 20:57:39 -07003116 (Math.max((mCountY - 1), 0) * mHeightGap);
3117 }
3118
Michael Jurka66d72172011-04-12 16:29:25 -07003119 public boolean isOccupied(int x, int y) {
3120 if (x < mCountX && y < mCountY) {
3121 return mOccupied[x][y];
3122 } else {
3123 throw new RuntimeException("Position exceeds the bound of this CellLayout");
3124 }
3125 }
3126
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003127 @Override
3128 public ViewGroup.LayoutParams generateLayoutParams(AttributeSet attrs) {
3129 return new CellLayout.LayoutParams(getContext(), attrs);
3130 }
3131
3132 @Override
3133 protected boolean checkLayoutParams(ViewGroup.LayoutParams p) {
3134 return p instanceof CellLayout.LayoutParams;
3135 }
3136
3137 @Override
3138 protected ViewGroup.LayoutParams generateLayoutParams(ViewGroup.LayoutParams p) {
3139 return new CellLayout.LayoutParams(p);
3140 }
3141
Winson Chungaafa03c2010-06-11 17:34:16 -07003142 public static class CellLayoutAnimationController extends LayoutAnimationController {
3143 public CellLayoutAnimationController(Animation animation, float delay) {
3144 super(animation, delay);
3145 }
3146
3147 @Override
3148 protected long getDelayForView(View view) {
3149 return (int) (Math.random() * 150);
3150 }
3151 }
3152
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003153 public static class LayoutParams extends ViewGroup.MarginLayoutParams {
3154 /**
3155 * Horizontal location of the item in the grid.
3156 */
3157 @ViewDebug.ExportedProperty
3158 public int cellX;
3159
3160 /**
3161 * Vertical location of the item in the grid.
3162 */
3163 @ViewDebug.ExportedProperty
3164 public int cellY;
3165
3166 /**
Adam Cohen482ed822012-03-02 14:15:13 -08003167 * Temporary horizontal location of the item in the grid during reorder
3168 */
3169 public int tmpCellX;
3170
3171 /**
3172 * Temporary vertical location of the item in the grid during reorder
3173 */
3174 public int tmpCellY;
3175
3176 /**
3177 * Indicates that the temporary coordinates should be used to layout the items
3178 */
3179 public boolean useTmpCoords;
3180
3181 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003182 * Number of cells spanned horizontally by the item.
3183 */
3184 @ViewDebug.ExportedProperty
3185 public int cellHSpan;
3186
3187 /**
3188 * Number of cells spanned vertically by the item.
3189 */
3190 @ViewDebug.ExportedProperty
3191 public int cellVSpan;
Winson Chungaafa03c2010-06-11 17:34:16 -07003192
Adam Cohen1b607ed2011-03-03 17:26:50 -08003193 /**
3194 * Indicates whether the item will set its x, y, width and height parameters freely,
3195 * or whether these will be computed based on cellX, cellY, cellHSpan and cellVSpan.
3196 */
Adam Cohend4844c32011-02-18 19:25:06 -08003197 public boolean isLockedToGrid = true;
3198
Adam Cohen482ed822012-03-02 14:15:13 -08003199 /**
Adam Cohenec40b2b2013-07-23 15:52:40 -07003200 * Indicates that this item should use the full extents of its parent.
3201 */
3202 public boolean isFullscreen = false;
3203
3204 /**
Adam Cohen482ed822012-03-02 14:15:13 -08003205 * Indicates whether this item can be reordered. Always true except in the case of the
3206 * the AllApps button.
3207 */
3208 public boolean canReorder = true;
3209
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003210 // X coordinate of the view in the layout.
3211 @ViewDebug.ExportedProperty
3212 int x;
3213 // Y coordinate of the view in the layout.
3214 @ViewDebug.ExportedProperty
3215 int y;
3216
Romain Guy84f296c2009-11-04 15:00:44 -08003217 boolean dropped;
Romain Guyfcb9e712009-10-02 16:06:52 -07003218
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003219 public LayoutParams(Context c, AttributeSet attrs) {
3220 super(c, attrs);
3221 cellHSpan = 1;
3222 cellVSpan = 1;
3223 }
3224
3225 public LayoutParams(ViewGroup.LayoutParams source) {
3226 super(source);
3227 cellHSpan = 1;
3228 cellVSpan = 1;
3229 }
Winson Chungaafa03c2010-06-11 17:34:16 -07003230
3231 public LayoutParams(LayoutParams source) {
3232 super(source);
3233 this.cellX = source.cellX;
3234 this.cellY = source.cellY;
3235 this.cellHSpan = source.cellHSpan;
3236 this.cellVSpan = source.cellVSpan;
3237 }
3238
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003239 public LayoutParams(int cellX, int cellY, int cellHSpan, int cellVSpan) {
Romain Guy8f19cdd2010-01-08 15:07:00 -08003240 super(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003241 this.cellX = cellX;
3242 this.cellY = cellY;
3243 this.cellHSpan = cellHSpan;
3244 this.cellVSpan = cellVSpan;
3245 }
3246
Adam Cohen2374abf2013-04-16 14:56:57 -07003247 public void setup(int cellWidth, int cellHeight, int widthGap, int heightGap,
3248 boolean invertHorizontally, int colCount) {
Adam Cohend4844c32011-02-18 19:25:06 -08003249 if (isLockedToGrid) {
3250 final int myCellHSpan = cellHSpan;
3251 final int myCellVSpan = cellVSpan;
Adam Cohen2374abf2013-04-16 14:56:57 -07003252 int myCellX = useTmpCoords ? tmpCellX : cellX;
3253 int myCellY = useTmpCoords ? tmpCellY : cellY;
3254
3255 if (invertHorizontally) {
3256 myCellX = colCount - myCellX - cellHSpan;
3257 }
Adam Cohen1b607ed2011-03-03 17:26:50 -08003258
Adam Cohend4844c32011-02-18 19:25:06 -08003259 width = myCellHSpan * cellWidth + ((myCellHSpan - 1) * widthGap) -
3260 leftMargin - rightMargin;
3261 height = myCellVSpan * cellHeight + ((myCellVSpan - 1) * heightGap) -
3262 topMargin - bottomMargin;
Winson Chungeecf02d2012-03-02 17:14:58 -08003263 x = (int) (myCellX * (cellWidth + widthGap) + leftMargin);
3264 y = (int) (myCellY * (cellHeight + heightGap) + topMargin);
Adam Cohend4844c32011-02-18 19:25:06 -08003265 }
3266 }
Winson Chungaafa03c2010-06-11 17:34:16 -07003267
Winson Chungaafa03c2010-06-11 17:34:16 -07003268 public String toString() {
3269 return "(" + this.cellX + ", " + this.cellY + ")";
3270 }
Adam Cohen7f4eabe2011-04-21 16:19:16 -07003271
3272 public void setWidth(int width) {
3273 this.width = width;
3274 }
3275
3276 public int getWidth() {
3277 return width;
3278 }
3279
3280 public void setHeight(int height) {
3281 this.height = height;
3282 }
3283
3284 public int getHeight() {
3285 return height;
3286 }
3287
3288 public void setX(int x) {
3289 this.x = x;
3290 }
3291
3292 public int getX() {
3293 return x;
3294 }
3295
3296 public void setY(int y) {
3297 this.y = y;
3298 }
3299
3300 public int getY() {
3301 return y;
3302 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003303 }
3304
Michael Jurka0280c3b2010-09-17 15:00:07 -07003305 // This class stores info for two purposes:
3306 // 1. When dragging items (mDragInfo in Workspace), we store the View, its cellX & cellY,
3307 // its spanX, spanY, and the screen it is on
3308 // 2. When long clicking on an empty cell in a CellLayout, we save information about the
3309 // cellX and cellY coordinates and which page was clicked. We then set this as a tag on
3310 // the CellLayout that was long clicked
Michael Jurkae5fb0f22011-04-11 13:27:46 -07003311 static final class CellInfo {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003312 View cell;
Michael Jurkaa63c4522010-08-19 13:52:27 -07003313 int cellX = -1;
3314 int cellY = -1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003315 int spanX;
3316 int spanY;
Adam Cohendcd297f2013-06-18 13:13:40 -07003317 long screenId;
Winson Chung3d503fb2011-07-13 17:25:49 -07003318 long container;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003319
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003320 @Override
3321 public String toString() {
Winson Chungaafa03c2010-06-11 17:34:16 -07003322 return "Cell[view=" + (cell == null ? "null" : cell.getClass())
3323 + ", x=" + cellX + ", y=" + cellY + "]";
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003324 }
3325 }
Michael Jurkad771c962011-08-09 15:00:48 -07003326
3327 public boolean lastDownOnOccupiedCell() {
3328 return mLastDownOnOccupiedCell;
3329 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003330}