blob: 5f64a829be70682c16b949a541c48f8591d5ee85 [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;
Adam Cohenc9735cf2015-01-23 16:11:55 -080025import android.annotation.TargetApi;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080026import android.content.Context;
Joe Onorato79e56262009-09-21 15:23:04 -040027import android.content.res.Resources;
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;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080033import android.graphics.Rect;
Adam Cohen482ed822012-03-02 14:15:13 -080034import android.graphics.drawable.ColorDrawable;
Patrick Dubroy6569f2c2010-07-12 14:25:18 -070035import android.graphics.drawable.Drawable;
Sunny Goyal2805e632015-05-20 15:35:32 -070036import android.graphics.drawable.TransitionDrawable;
Adam Cohenc9735cf2015-01-23 16:11:55 -080037import android.os.Build;
Adam Cohen1462de32012-07-24 22:34:36 -070038import android.os.Parcelable;
Tony Wickham489fc562015-09-02 14:45:39 -070039import android.os.PowerManager;
Adam Cohenc9735cf2015-01-23 16:11:55 -080040import android.support.v4.view.ViewCompat;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080041import android.util.AttributeSet;
Joe Onorato4be866d2010-10-10 11:26:02 -070042import android.util.Log;
Adam Cohen1462de32012-07-24 22:34:36 -070043import android.util.SparseArray;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080044import android.view.MotionEvent;
45import android.view.View;
46import android.view.ViewDebug;
47import android.view.ViewGroup;
Adam Cohenc9735cf2015-01-23 16:11:55 -080048import android.view.accessibility.AccessibilityEvent;
Winson Chung150fbab2010-09-29 17:14:26 -070049import android.view.animation.DecelerateInterpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080050
Sunny Goyal4b6eb262015-05-14 19:24:40 -070051import com.android.launcher3.BubbleTextView.BubbleTextShadowHandler;
Daniel Sandler325dc232013-06-05 22:57:57 -040052import com.android.launcher3.FolderIcon.FolderRingAnimator;
Sunny Goyale9b651e2015-04-24 11:44:51 -070053import com.android.launcher3.accessibility.DragAndDropAccessibilityDelegate;
54import com.android.launcher3.accessibility.FolderAccessibilityHelper;
55import com.android.launcher3.accessibility.WorkspaceAccessibilityHelper;
Sunny Goyald1a0e8b2015-08-27 17:45:46 -070056import com.android.launcher3.util.ParcelableSparseArray;
Adam Cohen091440a2015-03-18 14:16:05 -070057import com.android.launcher3.util.Thunk;
Patrick Dubroy8e58e912010-10-14 13:21:48 -070058
Adam Cohen69ce2e52011-07-03 19:25:21 -070059import java.util.ArrayList;
Adam Cohenc0dcf592011-06-01 15:30:43 -070060import java.util.Arrays;
Adam Cohenf3900c22012-11-16 18:28:11 -080061import java.util.Collections;
62import java.util.Comparator;
Adam Cohenbfbfd262011-06-13 16:55:12 -070063import java.util.HashMap;
Adam Cohend41fbf52012-02-16 23:53:59 -080064import java.util.Stack;
Adam Cohenc0dcf592011-06-01 15:30:43 -070065
Sunny Goyal4b6eb262015-05-14 19:24:40 -070066public class CellLayout extends ViewGroup implements BubbleTextShadowHandler {
Sunny Goyale9b651e2015-04-24 11:44:51 -070067 public static final int WORKSPACE_ACCESSIBILITY_DRAG = 2;
68 public static final int FOLDER_ACCESSIBILITY_DRAG = 1;
69
Tony Wickhama0628cc2015-10-14 15:23:04 -070070 private static final String TAG = "CellLayout";
71 private static final boolean LOGD = false;
Winson Chungaafa03c2010-06-11 17:34:16 -070072
Adam Cohen2acce882012-03-28 19:03:19 -070073 private Launcher mLauncher;
Adam Cohen091440a2015-03-18 14:16:05 -070074 @Thunk int mCellWidth;
75 @Thunk int mCellHeight;
Winson Chung11a1a532013-09-13 11:14:45 -070076 private int mFixedCellWidth;
77 private int mFixedCellHeight;
Winson Chungaafa03c2010-06-11 17:34:16 -070078
Adam Cohen091440a2015-03-18 14:16:05 -070079 @Thunk int mCountX;
80 @Thunk int mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080081
Adam Cohen234c4cd2011-07-17 21:03:04 -070082 private int mOriginalWidthGap;
83 private int mOriginalHeightGap;
Adam Cohen091440a2015-03-18 14:16:05 -070084 @Thunk int mWidthGap;
85 @Thunk int mHeightGap;
Winson Chung4b825dcd2011-06-19 12:41:22 -070086 private int mMaxGap;
Adam Cohen917e3882013-10-31 15:03:35 -070087 private boolean mDropPending = false;
Adam Cohenc50438c2014-08-19 17:43:05 -070088 private boolean mIsDragTarget = true;
Sunny Goyald1a0e8b2015-08-27 17:45:46 -070089 private boolean mJailContent = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080090
Patrick Dubroyde7658b2010-09-27 11:15:43 -070091 // These are temporary variables to prevent having to allocate a new object just to
92 // return an (x, y) value from helper functions. Do NOT use them to maintain other state.
Adam Cohen091440a2015-03-18 14:16:05 -070093 @Thunk final int[] mTmpPoint = new int[2];
Sunny Goyal2805e632015-05-20 15:35:32 -070094 @Thunk final int[] mTempLocation = new int[2];
Patrick Dubroy6569f2c2010-07-12 14:25:18 -070095
The Android Open Source Project31dd5032009-03-03 19:32:27 -080096 boolean[][] mOccupied;
Adam Cohen482ed822012-03-02 14:15:13 -080097 boolean[][] mTmpOccupied;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080098
Michael Jurkadee05892010-07-27 10:01:56 -070099 private OnTouchListener mInterceptTouchListener;
Mady Melloref044dd2015-06-02 15:35:07 -0700100 private StylusEventHelper mStylusEventHelper;
Michael Jurkadee05892010-07-27 10:01:56 -0700101
Adam Cohen69ce2e52011-07-03 19:25:21 -0700102 private ArrayList<FolderRingAnimator> mFolderOuterRings = new ArrayList<FolderRingAnimator>();
Adam Cohenc51934b2011-07-26 21:07:43 -0700103 private int[] mFolderLeaveBehindCell = {-1, -1};
Adam Cohen69ce2e52011-07-03 19:25:21 -0700104
Michael Jurka5f1c5092010-09-03 14:15:02 -0700105 private float mBackgroundAlpha;
Adam Cohenf34bab52010-09-30 14:11:56 -0700106
Sunny Goyal2805e632015-05-20 15:35:32 -0700107 private static final int BACKGROUND_ACTIVATE_DURATION = 120;
108 private final TransitionDrawable mBackground;
109
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700110 // These values allow a fixed measurement to be set on the CellLayout.
111 private int mFixedWidth = -1;
112 private int mFixedHeight = -1;
113
Michael Jurka33945b22010-12-21 18:19:38 -0800114 // If we're actively dragging something over this screen, mIsDragOverlapping is true
115 private boolean mIsDragOverlapping = false;
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700116
Winson Chung150fbab2010-09-29 17:14:26 -0700117 // These arrays are used to implement the drag visualization on x-large screens.
Joe Onorato4be866d2010-10-10 11:26:02 -0700118 // They are used as circular arrays, indexed by mDragOutlineCurrent.
Adam Cohen091440a2015-03-18 14:16:05 -0700119 @Thunk Rect[] mDragOutlines = new Rect[4];
120 @Thunk float[] mDragOutlineAlphas = new float[mDragOutlines.length];
Joe Onorato4be866d2010-10-10 11:26:02 -0700121 private InterruptibleInOutAnimator[] mDragOutlineAnims =
122 new InterruptibleInOutAnimator[mDragOutlines.length];
Winson Chung150fbab2010-09-29 17:14:26 -0700123
124 // Used as an index into the above 3 arrays; indicates which is the most current value.
Joe Onorato4be866d2010-10-10 11:26:02 -0700125 private int mDragOutlineCurrent = 0;
Patrick Dubroy8e58e912010-10-14 13:21:48 -0700126 private final Paint mDragOutlinePaint = new Paint();
Winson Chung150fbab2010-09-29 17:14:26 -0700127
Sunny Goyal4fe5a372015-05-14 19:55:10 -0700128 private final ClickShadowView mTouchFeedbackView;
Patrick Dubroy96864c32011-03-10 17:17:23 -0800129
Sunny Goyal316490e2015-06-02 09:38:28 -0700130 @Thunk HashMap<CellLayout.LayoutParams, Animator> mReorderAnimators = new HashMap<>();
131 @Thunk HashMap<View, ReorderPreviewAnimation> mShakeAnimators = new HashMap<>();
Adam Cohen19f37922012-03-21 11:59:11 -0700132
133 private boolean mItemPlacementDirty = false;
Adam Cohenbfbfd262011-06-13 16:55:12 -0700134
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700135 // When a drag operation is in progress, holds the nearest cell to the touch point
136 private final int[] mDragCell = new int[2];
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800137
Joe Onorato4be866d2010-10-10 11:26:02 -0700138 private boolean mDragging = false;
139
Patrick Dubroyce34a972010-10-19 10:34:32 -0700140 private TimeInterpolator mEaseOutInterpolator;
Michael Jurkaa52570f2012-03-20 03:18:20 -0700141 private ShortcutAndWidgetContainer mShortcutsAndWidgets;
Patrick Dubroyce34a972010-10-19 10:34:32 -0700142
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800143 private boolean mIsHotseat = false;
Adam Cohen307fe232012-08-16 17:55:58 -0700144 private float mHotseatScale = 1f;
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800145
Adam Cohenfa3c58f2013-12-06 16:10:55 -0800146 public static final int MODE_SHOW_REORDER_HINT = 0;
147 public static final int MODE_DRAG_OVER = 1;
148 public static final int MODE_ON_DROP = 2;
149 public static final int MODE_ON_DROP_EXTERNAL = 3;
150 public static final int MODE_ACCEPT_DROP = 4;
Adam Cohen19f37922012-03-21 11:59:11 -0700151 private static final boolean DESTRUCTIVE_REORDER = false;
Adam Cohen482ed822012-03-02 14:15:13 -0800152 private static final boolean DEBUG_VISUALIZE_OCCUPIED = false;
153
Adam Cohena897f392012-04-27 18:12:05 -0700154 static final int LANDSCAPE = 0;
155 static final int PORTRAIT = 1;
156
Adam Cohenfa3c58f2013-12-06 16:10:55 -0800157 private static final float REORDER_PREVIEW_MAGNITUDE = 0.12f;
Adam Cohen19f37922012-03-21 11:59:11 -0700158 private static final int REORDER_ANIMATION_DURATION = 150;
Adam Cohen091440a2015-03-18 14:16:05 -0700159 @Thunk float mReorderPreviewAnimationMagnitude;
Adam Cohen19f37922012-03-21 11:59:11 -0700160
Adam Cohen482ed822012-03-02 14:15:13 -0800161 private ArrayList<View> mIntersectingViews = new ArrayList<View>();
162 private Rect mOccupiedRect = new Rect();
163 private int[] mDirectionVector = new int[2];
Adam Cohen19f37922012-03-21 11:59:11 -0700164 int[] mPreviousReorderDirection = new int[2];
Adam Cohenb209e632012-03-27 17:09:36 -0700165 private static final int INVALID_DIRECTION = -100;
Adam Cohen482ed822012-03-02 14:15:13 -0800166
Sunny Goyal2805e632015-05-20 15:35:32 -0700167 private final Rect mTempRect = new Rect();
Winson Chung3a6e7f32013-10-09 15:50:52 -0700168
Michael Jurkaca993832012-06-29 15:17:04 -0700169 private final static Paint sPaint = new Paint();
Romain Guy8a0bff52012-05-06 13:14:33 -0700170
Adam Cohenc9735cf2015-01-23 16:11:55 -0800171 // Related to accessible drag and drop
Sunny Goyale9b651e2015-04-24 11:44:51 -0700172 private DragAndDropAccessibilityDelegate mTouchHelper;
Adam Cohenc9735cf2015-01-23 16:11:55 -0800173 private boolean mUseTouchHelper = false;
Adam Cohenc9735cf2015-01-23 16:11:55 -0800174
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800175 public CellLayout(Context context) {
176 this(context, null);
177 }
178
179 public CellLayout(Context context, AttributeSet attrs) {
180 this(context, attrs, 0);
181 }
182
183 public CellLayout(Context context, AttributeSet attrs, int defStyle) {
184 super(context, attrs, defStyle);
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700185
186 // A ViewGroup usually does not draw, but CellLayout needs to draw a rectangle to show
187 // the user where a dragged item will land when dropped.
188 setWillNotDraw(false);
Romain Guyce3cbd12013-02-25 15:00:36 -0800189 setClipToPadding(false);
Adam Cohen2acce882012-03-28 19:03:19 -0700190 mLauncher = (Launcher) context;
Michael Jurkaa63c4522010-08-19 13:52:27 -0700191
Adam Cohen2e6da152015-05-06 11:42:25 -0700192 DeviceProfile grid = mLauncher.getDeviceProfile();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800193
Winson Chung11a1a532013-09-13 11:14:45 -0700194 mCellWidth = mCellHeight = -1;
Nilesh Agrawal5f7099a2014-01-02 15:54:57 -0800195 mFixedCellWidth = mFixedCellHeight = -1;
Winson Chung5f8afe62013-08-12 16:19:28 -0700196 mWidthGap = mOriginalWidthGap = 0;
197 mHeightGap = mOriginalHeightGap = 0;
198 mMaxGap = Integer.MAX_VALUE;
Adam Cohen2e6da152015-05-06 11:42:25 -0700199 mCountX = (int) grid.inv.numColumns;
200 mCountY = (int) grid.inv.numRows;
Michael Jurka0280c3b2010-09-17 15:00:07 -0700201 mOccupied = new boolean[mCountX][mCountY];
Adam Cohen482ed822012-03-02 14:15:13 -0800202 mTmpOccupied = new boolean[mCountX][mCountY];
Adam Cohen5b53f292012-03-29 14:30:35 -0700203 mPreviousReorderDirection[0] = INVALID_DIRECTION;
204 mPreviousReorderDirection[1] = INVALID_DIRECTION;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800205
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800206 setAlwaysDrawnWithCacheEnabled(false);
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700207 final Resources res = getResources();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700208 mHotseatScale = (float) grid.hotseatIconSizePx / grid.iconSizePx;
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700209
Sunny Goyal2805e632015-05-20 15:35:32 -0700210 mBackground = (TransitionDrawable) res.getDrawable(R.drawable.bg_screenpanel);
211 mBackground.setCallback(this);
Winson Chunge8f1d042015-07-31 12:39:57 -0700212 mBackground.setAlpha((int) (mBackgroundAlpha * 255));
Michael Jurka33945b22010-12-21 18:19:38 -0800213
Adam Cohenfa3c58f2013-12-06 16:10:55 -0800214 mReorderPreviewAnimationMagnitude = (REORDER_PREVIEW_MAGNITUDE *
Winson Chung5f8afe62013-08-12 16:19:28 -0700215 grid.iconSizePx);
Adam Cohen19f37922012-03-21 11:59:11 -0700216
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700217 // Initialize the data structures used for the drag visualization.
Patrick Dubroyce34a972010-10-19 10:34:32 -0700218 mEaseOutInterpolator = new DecelerateInterpolator(2.5f); // Quint ease out
Winson Chungb8c69f32011-10-19 21:36:08 -0700219 mDragCell[0] = mDragCell[1] = -1;
Joe Onorato4be866d2010-10-10 11:26:02 -0700220 for (int i = 0; i < mDragOutlines.length; i++) {
Adam Cohend41fbf52012-02-16 23:53:59 -0800221 mDragOutlines[i] = new Rect(-1, -1, -1, -1);
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700222 }
223
224 // When dragging things around the home screens, we show a green outline of
225 // where the item will land. The outlines gradually fade out, leaving a trail
226 // behind the drag path.
227 // Set up all the animations that are used to implement this fading.
228 final int duration = res.getInteger(R.integer.config_dragOutlineFadeTime);
Chet Haase472b2812010-10-14 07:02:04 -0700229 final float fromAlphaValue = 0;
230 final float toAlphaValue = (float)res.getInteger(R.integer.config_dragOutlineMaxAlpha);
Joe Onorato4be866d2010-10-10 11:26:02 -0700231
Patrick Dubroy8e58e912010-10-14 13:21:48 -0700232 Arrays.fill(mDragOutlineAlphas, fromAlphaValue);
Joe Onorato4be866d2010-10-10 11:26:02 -0700233
234 for (int i = 0; i < mDragOutlineAnims.length; i++) {
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700235 final InterruptibleInOutAnimator anim =
Michael Jurkaf1ad6082013-03-13 12:55:46 +0100236 new InterruptibleInOutAnimator(this, duration, fromAlphaValue, toAlphaValue);
Patrick Dubroyce34a972010-10-19 10:34:32 -0700237 anim.getAnimator().setInterpolator(mEaseOutInterpolator);
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700238 final int thisIndex = i;
Chet Haase472b2812010-10-14 07:02:04 -0700239 anim.getAnimator().addUpdateListener(new AnimatorUpdateListener() {
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700240 public void onAnimationUpdate(ValueAnimator animation) {
Joe Onorato4be866d2010-10-10 11:26:02 -0700241 final Bitmap outline = (Bitmap)anim.getTag();
242
243 // If an animation is started and then stopped very quickly, we can still
244 // get spurious updates we've cleared the tag. Guard against this.
245 if (outline == null) {
Tony Wickhama0628cc2015-10-14 15:23:04 -0700246 if (LOGD) {
Patrick Dubroyfe6bd872010-10-13 17:32:10 -0700247 Object val = animation.getAnimatedValue();
248 Log.d(TAG, "anim " + thisIndex + " update: " + val +
249 ", isStopped " + anim.isStopped());
250 }
Joe Onorato4be866d2010-10-10 11:26:02 -0700251 // Try to prevent it from continuing to run
252 animation.cancel();
253 } else {
Chet Haase472b2812010-10-14 07:02:04 -0700254 mDragOutlineAlphas[thisIndex] = (Float) animation.getAnimatedValue();
Adam Cohend41fbf52012-02-16 23:53:59 -0800255 CellLayout.this.invalidate(mDragOutlines[thisIndex]);
Joe Onorato4be866d2010-10-10 11:26:02 -0700256 }
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700257 }
258 });
Joe Onorato4be866d2010-10-10 11:26:02 -0700259 // The animation holds a reference to the drag outline bitmap as long is it's
260 // running. This way the bitmap can be GCed when the animations are complete.
Chet Haase472b2812010-10-14 07:02:04 -0700261 anim.getAnimator().addListener(new AnimatorListenerAdapter() {
Michael Jurka3c4c20f2010-10-28 15:36:06 -0700262 @Override
Joe Onorato4be866d2010-10-10 11:26:02 -0700263 public void onAnimationEnd(Animator animation) {
Chet Haase472b2812010-10-14 07:02:04 -0700264 if ((Float) ((ValueAnimator) animation).getAnimatedValue() == 0f) {
Joe Onorato4be866d2010-10-10 11:26:02 -0700265 anim.setTag(null);
266 }
267 }
268 });
269 mDragOutlineAnims[i] = anim;
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700270 }
Patrick Dubroyce34a972010-10-19 10:34:32 -0700271
Michael Jurkaa52570f2012-03-20 03:18:20 -0700272 mShortcutsAndWidgets = new ShortcutAndWidgetContainer(context);
Adam Cohen2374abf2013-04-16 14:56:57 -0700273 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap, mHeightGap,
Winson Chung5f8afe62013-08-12 16:19:28 -0700274 mCountX, mCountY);
Adam Cohen2374abf2013-04-16 14:56:57 -0700275
Mady Melloref044dd2015-06-02 15:35:07 -0700276 mStylusEventHelper = new StylusEventHelper(this);
277
Sunny Goyal4fe5a372015-05-14 19:55:10 -0700278 mTouchFeedbackView = new ClickShadowView(context);
279 addView(mTouchFeedbackView);
Michael Jurkaa52570f2012-03-20 03:18:20 -0700280 addView(mShortcutsAndWidgets);
Michael Jurka18014792010-10-14 09:01:34 -0700281 }
282
Adam Cohenc9735cf2015-01-23 16:11:55 -0800283 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Sunny Goyale9b651e2015-04-24 11:44:51 -0700284 public void enableAccessibleDrag(boolean enable, int dragType) {
Adam Cohenc9735cf2015-01-23 16:11:55 -0800285 mUseTouchHelper = enable;
286 if (!enable) {
287 ViewCompat.setAccessibilityDelegate(this, null);
288 setImportantForAccessibility(IMPORTANT_FOR_ACCESSIBILITY_NO);
289 getShortcutsAndWidgets().setImportantForAccessibility(IMPORTANT_FOR_ACCESSIBILITY_NO);
290 setOnClickListener(mLauncher);
291 } else {
Sunny Goyale9b651e2015-04-24 11:44:51 -0700292 if (dragType == WORKSPACE_ACCESSIBILITY_DRAG &&
293 !(mTouchHelper instanceof WorkspaceAccessibilityHelper)) {
294 mTouchHelper = new WorkspaceAccessibilityHelper(this);
295 } else if (dragType == FOLDER_ACCESSIBILITY_DRAG &&
296 !(mTouchHelper instanceof FolderAccessibilityHelper)) {
297 mTouchHelper = new FolderAccessibilityHelper(this);
298 }
Adam Cohenc9735cf2015-01-23 16:11:55 -0800299 ViewCompat.setAccessibilityDelegate(this, mTouchHelper);
300 setImportantForAccessibility(IMPORTANT_FOR_ACCESSIBILITY_YES);
301 getShortcutsAndWidgets().setImportantForAccessibility(IMPORTANT_FOR_ACCESSIBILITY_YES);
302 setOnClickListener(mTouchHelper);
303 }
304
305 // Invalidate the accessibility hierarchy
306 if (getParent() != null) {
307 getParent().notifySubtreeAccessibilityStateChanged(
308 this, this, AccessibilityEvent.CONTENT_CHANGE_TYPE_SUBTREE);
309 }
310 }
311
312 @Override
313 public boolean dispatchHoverEvent(MotionEvent event) {
314 // Always attempt to dispatch hover events to accessibility first.
315 if (mUseTouchHelper && mTouchHelper.dispatchHoverEvent(event)) {
316 return true;
317 }
318 return super.dispatchHoverEvent(event);
319 }
320
321 @Override
Adam Cohenc9735cf2015-01-23 16:11:55 -0800322 public boolean onInterceptTouchEvent(MotionEvent ev) {
323 if (mUseTouchHelper ||
324 (mInterceptTouchListener != null && mInterceptTouchListener.onTouch(this, ev))) {
325 return true;
326 }
327 return false;
328 }
329
Mady Melloref044dd2015-06-02 15:35:07 -0700330 @Override
331 public boolean onTouchEvent(MotionEvent ev) {
332 boolean handled = super.onTouchEvent(ev);
333 // Stylus button press on a home screen should not switch between overview mode and
334 // the home screen mode, however, once in overview mode stylus button press should be
335 // enabled to allow rearranging the different home screens. So check what mode
336 // the workspace is in, and only perform stylus button presses while in overview mode.
337 if (mLauncher.mWorkspace.isInOverviewMode()
338 && mStylusEventHelper.checkAndPerformStylusEvent(ev)) {
339 return true;
340 }
341 return handled;
342 }
343
Chris Craik01f2d7f2013-10-01 14:41:56 -0700344 public void enableHardwareLayer(boolean hasLayer) {
345 mShortcutsAndWidgets.setLayerType(hasLayer ? LAYER_TYPE_HARDWARE : LAYER_TYPE_NONE, sPaint);
Michael Jurkad51f33a2012-06-28 15:35:26 -0700346 }
347
348 public void buildHardwareLayer() {
349 mShortcutsAndWidgets.buildLayer();
Adam Cohen2801caf2011-05-13 20:57:39 -0700350 }
351
Adam Cohen307fe232012-08-16 17:55:58 -0700352 public float getChildrenScale() {
353 return mIsHotseat ? mHotseatScale : 1.0f;
354 }
355
Winson Chung5f8afe62013-08-12 16:19:28 -0700356 public void setCellDimensions(int width, int height) {
Winson Chung11a1a532013-09-13 11:14:45 -0700357 mFixedCellWidth = mCellWidth = width;
358 mFixedCellHeight = mCellHeight = height;
Winson Chung5f8afe62013-08-12 16:19:28 -0700359 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap, mHeightGap,
360 mCountX, mCountY);
361 }
362
Adam Cohen2801caf2011-05-13 20:57:39 -0700363 public void setGridSize(int x, int y) {
364 mCountX = x;
365 mCountY = y;
366 mOccupied = new boolean[mCountX][mCountY];
Adam Cohen482ed822012-03-02 14:15:13 -0800367 mTmpOccupied = new boolean[mCountX][mCountY];
Adam Cohen7fbec102012-03-27 12:42:19 -0700368 mTempRectStack.clear();
Adam Cohen2374abf2013-04-16 14:56:57 -0700369 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap, mHeightGap,
Winson Chung5f8afe62013-08-12 16:19:28 -0700370 mCountX, mCountY);
Adam Cohen76fc0852011-06-17 13:26:23 -0700371 requestLayout();
Adam Cohen2801caf2011-05-13 20:57:39 -0700372 }
373
Adam Cohen2374abf2013-04-16 14:56:57 -0700374 // Set whether or not to invert the layout horizontally if the layout is in RTL mode.
375 public void setInvertIfRtl(boolean invert) {
376 mShortcutsAndWidgets.setInvertIfRtl(invert);
377 }
378
Adam Cohen917e3882013-10-31 15:03:35 -0700379 public void setDropPending(boolean pending) {
380 mDropPending = pending;
381 }
382
383 public boolean isDropPending() {
384 return mDropPending;
385 }
386
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700387 @Override
388 public void setPressedIcon(BubbleTextView icon, Bitmap background) {
Sunny Goyal508da152014-08-14 10:53:27 -0700389 if (icon == null || background == null) {
390 mTouchFeedbackView.setBitmap(null);
391 mTouchFeedbackView.animate().cancel();
392 } else {
Sunny Goyal508da152014-08-14 10:53:27 -0700393 if (mTouchFeedbackView.setBitmap(background)) {
Sunny Goyal4fe5a372015-05-14 19:55:10 -0700394 mTouchFeedbackView.alignWithIconView(icon, mShortcutsAndWidgets);
395 mTouchFeedbackView.animateShadow();
Sunny Goyal508da152014-08-14 10:53:27 -0700396 }
Patrick Dubroy96864c32011-03-10 17:17:23 -0800397 }
398 }
399
Adam Cohenc50438c2014-08-19 17:43:05 -0700400 void disableDragTarget() {
401 mIsDragTarget = false;
402 }
403
404 boolean isDragTarget() {
405 return mIsDragTarget;
406 }
407
408 void setIsDragOverlapping(boolean isDragOverlapping) {
409 if (mIsDragOverlapping != isDragOverlapping) {
410 mIsDragOverlapping = isDragOverlapping;
Sunny Goyal2805e632015-05-20 15:35:32 -0700411 if (mIsDragOverlapping) {
412 mBackground.startTransition(BACKGROUND_ACTIVATE_DURATION);
413 } else {
Winson Chunge8f1d042015-07-31 12:39:57 -0700414 if (mBackgroundAlpha > 0f) {
415 mBackground.reverseTransition(BACKGROUND_ACTIVATE_DURATION);
416 } else {
417 mBackground.resetTransition();
418 }
Sunny Goyal2805e632015-05-20 15:35:32 -0700419 }
Adam Cohenc50438c2014-08-19 17:43:05 -0700420 invalidate();
421 }
422 }
423
Sunny Goyald1a0e8b2015-08-27 17:45:46 -0700424 public boolean getIsDragOverlapping() {
Michael Jurka33945b22010-12-21 18:19:38 -0800425 return mIsDragOverlapping;
426 }
427
Sunny Goyald1a0e8b2015-08-27 17:45:46 -0700428 public void disableJailContent() {
429 mJailContent = false;
430 }
431
432 @Override
433 protected void dispatchSaveInstanceState(SparseArray<Parcelable> container) {
434 if (mJailContent) {
435 ParcelableSparseArray jail = getJailedArray(container);
436 super.dispatchSaveInstanceState(jail);
437 container.put(R.id.cell_layout_jail_id, jail);
438 } else {
439 super.dispatchSaveInstanceState(container);
440 }
441 }
442
443 @Override
444 protected void dispatchRestoreInstanceState(SparseArray<Parcelable> container) {
445 super.dispatchRestoreInstanceState(mJailContent ? getJailedArray(container) : container);
446 }
447
448 private ParcelableSparseArray getJailedArray(SparseArray<Parcelable> container) {
449 final Parcelable parcelable = container.get(R.id.cell_layout_jail_id);
450 return parcelable instanceof ParcelableSparseArray ?
451 (ParcelableSparseArray) parcelable : new ParcelableSparseArray();
452 }
453
Jeff Sharkey83f111d2009-04-20 21:03:13 -0700454 @Override
Patrick Dubroy1262e362010-10-06 15:49:50 -0700455 protected void onDraw(Canvas canvas) {
Sunny Goyal05739772015-05-19 19:59:09 -0700456 if (!mIsDragTarget) {
457 return;
458 }
459
Michael Jurka3e7c7632010-10-02 16:01:03 -0700460 // When we're large, we are either drawn in a "hover" state (ie when dragging an item to
461 // a neighboring page) or with just a normal background (if backgroundAlpha > 0.0f)
462 // When we're small, we are either drawn normally or in the "accepts drops" state (during
463 // a drag). However, we also drag the mini hover background *over* one of those two
464 // backgrounds
Sunny Goyal05739772015-05-19 19:59:09 -0700465 if (mBackgroundAlpha > 0.0f) {
Sunny Goyal2805e632015-05-20 15:35:32 -0700466 mBackground.draw(canvas);
Michael Jurkaa63c4522010-08-19 13:52:27 -0700467 }
Romain Guya6abce82009-11-10 02:54:41 -0800468
Patrick Dubroy8e58e912010-10-14 13:21:48 -0700469 final Paint paint = mDragOutlinePaint;
Joe Onorato4be866d2010-10-10 11:26:02 -0700470 for (int i = 0; i < mDragOutlines.length; i++) {
Chet Haase472b2812010-10-14 07:02:04 -0700471 final float alpha = mDragOutlineAlphas[i];
Joe Onorato4be866d2010-10-10 11:26:02 -0700472 if (alpha > 0) {
Adam Cohend41fbf52012-02-16 23:53:59 -0800473 final Rect r = mDragOutlines[i];
Winson Chung3a6e7f32013-10-09 15:50:52 -0700474 mTempRect.set(r);
475 Utilities.scaleRectAboutCenter(mTempRect, getChildrenScale());
Joe Onorato4be866d2010-10-10 11:26:02 -0700476 final Bitmap b = (Bitmap) mDragOutlineAnims[i].getTag();
Chet Haase472b2812010-10-14 07:02:04 -0700477 paint.setAlpha((int)(alpha + .5f));
Winson Chung3a6e7f32013-10-09 15:50:52 -0700478 canvas.drawBitmap(b, null, mTempRect, paint);
Winson Chung150fbab2010-09-29 17:14:26 -0700479 }
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700480 }
Patrick Dubroy96864c32011-03-10 17:17:23 -0800481
Adam Cohen482ed822012-03-02 14:15:13 -0800482 if (DEBUG_VISUALIZE_OCCUPIED) {
483 int[] pt = new int[2];
484 ColorDrawable cd = new ColorDrawable(Color.RED);
Adam Cohene7587d22012-05-24 18:50:02 -0700485 cd.setBounds(0, 0, mCellWidth, mCellHeight);
Adam Cohen482ed822012-03-02 14:15:13 -0800486 for (int i = 0; i < mCountX; i++) {
487 for (int j = 0; j < mCountY; j++) {
488 if (mOccupied[i][j]) {
489 cellToPoint(i, j, pt);
490 canvas.save();
491 canvas.translate(pt[0], pt[1]);
492 cd.draw(canvas);
493 canvas.restore();
494 }
495 }
496 }
497 }
498
Andrew Flynn850d2e72012-04-26 16:51:20 -0700499 int previewOffset = FolderRingAnimator.sPreviewSize;
500
Adam Cohen69ce2e52011-07-03 19:25:21 -0700501 // The folder outer / inner ring image(s)
Adam Cohen2e6da152015-05-06 11:42:25 -0700502 DeviceProfile grid = mLauncher.getDeviceProfile();
Adam Cohen69ce2e52011-07-03 19:25:21 -0700503 for (int i = 0; i < mFolderOuterRings.size(); i++) {
504 FolderRingAnimator fra = mFolderOuterRings.get(i);
505
Adam Cohen5108bc02013-09-20 17:04:51 -0700506 Drawable d;
507 int width, height;
Adam Cohen69ce2e52011-07-03 19:25:21 -0700508 cellToPoint(fra.mCellX, fra.mCellY, mTempLocation);
Winson Chung5f8afe62013-08-12 16:19:28 -0700509 View child = getChildAt(fra.mCellX, fra.mCellY);
Adam Cohen558f1c22013-10-09 15:15:24 -0700510
Winson Chung89f97052013-09-20 11:32:26 -0700511 if (child != null) {
Adam Cohen558f1c22013-10-09 15:15:24 -0700512 int centerX = mTempLocation[0] + mCellWidth / 2;
513 int centerY = mTempLocation[1] + previewOffset / 2 +
514 child.getPaddingTop() + grid.folderBackgroundOffset;
515
Adam Cohen5108bc02013-09-20 17:04:51 -0700516 // Draw outer ring, if it exists
517 if (FolderIcon.HAS_OUTER_RING) {
518 d = FolderRingAnimator.sSharedOuterRingDrawable;
519 width = (int) (fra.getOuterRingSize() * getChildrenScale());
520 height = width;
521 canvas.save();
522 canvas.translate(centerX - width / 2, centerY - height / 2);
523 d.setBounds(0, 0, width, height);
524 d.draw(canvas);
525 canvas.restore();
526 }
Adam Cohen69ce2e52011-07-03 19:25:21 -0700527
Winson Chung89f97052013-09-20 11:32:26 -0700528 // Draw inner ring
529 d = FolderRingAnimator.sSharedInnerRingDrawable;
530 width = (int) (fra.getInnerRingSize() * getChildrenScale());
531 height = width;
Winson Chung89f97052013-09-20 11:32:26 -0700532 canvas.save();
533 canvas.translate(centerX - width / 2, centerY - width / 2);
534 d.setBounds(0, 0, width, height);
535 d.draw(canvas);
536 canvas.restore();
537 }
Adam Cohen69ce2e52011-07-03 19:25:21 -0700538 }
Adam Cohenc51934b2011-07-26 21:07:43 -0700539
540 if (mFolderLeaveBehindCell[0] >= 0 && mFolderLeaveBehindCell[1] >= 0) {
541 Drawable d = FolderIcon.sSharedFolderLeaveBehind;
542 int width = d.getIntrinsicWidth();
543 int height = d.getIntrinsicHeight();
544
545 cellToPoint(mFolderLeaveBehindCell[0], mFolderLeaveBehindCell[1], mTempLocation);
Winson Chung5f8afe62013-08-12 16:19:28 -0700546 View child = getChildAt(mFolderLeaveBehindCell[0], mFolderLeaveBehindCell[1]);
Winson Chung89f97052013-09-20 11:32:26 -0700547 if (child != null) {
548 int centerX = mTempLocation[0] + mCellWidth / 2;
549 int centerY = mTempLocation[1] + previewOffset / 2 +
550 child.getPaddingTop() + grid.folderBackgroundOffset;
Adam Cohenc51934b2011-07-26 21:07:43 -0700551
Winson Chung89f97052013-09-20 11:32:26 -0700552 canvas.save();
553 canvas.translate(centerX - width / 2, centerY - width / 2);
554 d.setBounds(0, 0, width, height);
555 d.draw(canvas);
556 canvas.restore();
557 }
Adam Cohenc51934b2011-07-26 21:07:43 -0700558 }
Adam Cohen69ce2e52011-07-03 19:25:21 -0700559 }
560
561 public void showFolderAccept(FolderRingAnimator fra) {
562 mFolderOuterRings.add(fra);
563 }
564
565 public void hideFolderAccept(FolderRingAnimator fra) {
566 if (mFolderOuterRings.contains(fra)) {
567 mFolderOuterRings.remove(fra);
568 }
569 invalidate();
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700570 }
571
Adam Cohenc51934b2011-07-26 21:07:43 -0700572 public void setFolderLeaveBehindCell(int x, int y) {
573 mFolderLeaveBehindCell[0] = x;
574 mFolderLeaveBehindCell[1] = y;
575 invalidate();
576 }
577
578 public void clearFolderLeaveBehind() {
579 mFolderLeaveBehindCell[0] = -1;
580 mFolderLeaveBehindCell[1] = -1;
581 invalidate();
582 }
583
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700584 @Override
Michael Jurkae6235dd2011-10-04 15:02:05 -0700585 public boolean shouldDelayChildPressedState() {
586 return false;
587 }
588
Adam Cohen1462de32012-07-24 22:34:36 -0700589 public void restoreInstanceState(SparseArray<Parcelable> states) {
Sunny Goyal33a152f2014-07-22 12:13:14 -0700590 try {
591 dispatchRestoreInstanceState(states);
592 } catch (IllegalArgumentException ex) {
593 if (LauncherAppState.isDogfoodBuild()) {
594 throw ex;
595 }
596 // Mismatched viewId / viewType preventing restore. Skip restore on production builds.
597 Log.e(TAG, "Ignoring an error while restoring a view instance state", ex);
598 }
Adam Cohen1462de32012-07-24 22:34:36 -0700599 }
600
Michael Jurkae6235dd2011-10-04 15:02:05 -0700601 @Override
Jeff Sharkey83f111d2009-04-20 21:03:13 -0700602 public void cancelLongPress() {
603 super.cancelLongPress();
604
605 // Cancel long press for all children
606 final int count = getChildCount();
607 for (int i = 0; i < count; i++) {
608 final View child = getChildAt(i);
609 child.cancelLongPress();
610 }
611 }
612
Michael Jurkadee05892010-07-27 10:01:56 -0700613 public void setOnInterceptTouchListener(View.OnTouchListener listener) {
614 mInterceptTouchListener = listener;
615 }
616
Hyunyoung Songee3e6a72015-02-20 14:25:27 -0800617 public int getCountX() {
Adam Cohend22015c2010-07-26 22:02:18 -0700618 return mCountX;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800619 }
620
Hyunyoung Songee3e6a72015-02-20 14:25:27 -0800621 public int getCountY() {
Adam Cohend22015c2010-07-26 22:02:18 -0700622 return mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800623 }
624
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800625 public void setIsHotseat(boolean isHotseat) {
626 mIsHotseat = isHotseat;
Winson Chung5f8afe62013-08-12 16:19:28 -0700627 mShortcutsAndWidgets.setIsHotseat(isHotseat);
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800628 }
629
Sunny Goyale9b651e2015-04-24 11:44:51 -0700630 public boolean isHotseat() {
631 return mIsHotseat;
632 }
633
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800634 public boolean addViewToCellLayout(View child, int index, int childId, LayoutParams params,
Sunny Goyalf7a29e82015-04-24 15:20:43 -0700635 boolean markCells) {
Winson Chungaafa03c2010-06-11 17:34:16 -0700636 final LayoutParams lp = params;
637
Andrew Flynnde38e422012-05-08 11:22:15 -0700638 // Hotseat icons - remove text
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800639 if (child instanceof BubbleTextView) {
640 BubbleTextView bubbleChild = (BubbleTextView) child;
Winson Chung5f8afe62013-08-12 16:19:28 -0700641 bubbleChild.setTextVisibility(!mIsHotseat);
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800642 }
643
Adam Cohen307fe232012-08-16 17:55:58 -0700644 child.setScaleX(getChildrenScale());
645 child.setScaleY(getChildrenScale());
646
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800647 // Generate an id for each view, this assumes we have at most 256x256 cells
648 // per workspace screen
Adam Cohend22015c2010-07-26 22:02:18 -0700649 if (lp.cellX >= 0 && lp.cellX <= mCountX - 1 && lp.cellY >= 0 && lp.cellY <= mCountY - 1) {
Winson Chungaafa03c2010-06-11 17:34:16 -0700650 // If the horizontal or vertical span is set to -1, it is taken to
651 // mean that it spans the extent of the CellLayout
Adam Cohend22015c2010-07-26 22:02:18 -0700652 if (lp.cellHSpan < 0) lp.cellHSpan = mCountX;
653 if (lp.cellVSpan < 0) lp.cellVSpan = mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800654
Winson Chungaafa03c2010-06-11 17:34:16 -0700655 child.setId(childId);
Tony Wickhama0628cc2015-10-14 15:23:04 -0700656 if (LOGD) {
657 Log.d(TAG, "Adding view to ShortcutsAndWidgetsContainer: " + child);
658 }
Sunny Goyalf7a29e82015-04-24 15:20:43 -0700659 mShortcutsAndWidgets.addView(child, index, lp);
Michael Jurkadee05892010-07-27 10:01:56 -0700660
Michael Jurkaf3ca3ab2010-10-20 17:08:24 -0700661 if (markCells) markCellsAsOccupiedForView(child);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700662
Winson Chungaafa03c2010-06-11 17:34:16 -0700663 return true;
664 }
665 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800666 }
Michael Jurka3e7c7632010-10-02 16:01:03 -0700667
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800668 @Override
Michael Jurka0280c3b2010-09-17 15:00:07 -0700669 public void removeAllViews() {
670 clearOccupiedCells();
Michael Jurkaa52570f2012-03-20 03:18:20 -0700671 mShortcutsAndWidgets.removeAllViews();
Michael Jurka0280c3b2010-09-17 15:00:07 -0700672 }
673
674 @Override
675 public void removeAllViewsInLayout() {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700676 if (mShortcutsAndWidgets.getChildCount() > 0) {
Michael Jurka7cfc2822011-08-02 20:19:24 -0700677 clearOccupiedCells();
Michael Jurkaa52570f2012-03-20 03:18:20 -0700678 mShortcutsAndWidgets.removeAllViewsInLayout();
Michael Jurka7cfc2822011-08-02 20:19:24 -0700679 }
Michael Jurka0280c3b2010-09-17 15:00:07 -0700680 }
681
682 @Override
683 public void removeView(View view) {
684 markCellsAsUnoccupiedForView(view);
Michael Jurkaa52570f2012-03-20 03:18:20 -0700685 mShortcutsAndWidgets.removeView(view);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700686 }
687
688 @Override
689 public void removeViewAt(int index) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700690 markCellsAsUnoccupiedForView(mShortcutsAndWidgets.getChildAt(index));
691 mShortcutsAndWidgets.removeViewAt(index);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700692 }
693
694 @Override
695 public void removeViewInLayout(View view) {
696 markCellsAsUnoccupiedForView(view);
Michael Jurkaa52570f2012-03-20 03:18:20 -0700697 mShortcutsAndWidgets.removeViewInLayout(view);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700698 }
699
700 @Override
701 public void removeViews(int start, int count) {
702 for (int i = start; i < start + count; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700703 markCellsAsUnoccupiedForView(mShortcutsAndWidgets.getChildAt(i));
Michael Jurka0280c3b2010-09-17 15:00:07 -0700704 }
Michael Jurkaa52570f2012-03-20 03:18:20 -0700705 mShortcutsAndWidgets.removeViews(start, count);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700706 }
707
708 @Override
709 public void removeViewsInLayout(int start, int count) {
710 for (int i = start; i < start + count; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700711 markCellsAsUnoccupiedForView(mShortcutsAndWidgets.getChildAt(i));
Michael Jurka0280c3b2010-09-17 15:00:07 -0700712 }
Michael Jurkaa52570f2012-03-20 03:18:20 -0700713 mShortcutsAndWidgets.removeViewsInLayout(start, count);
Michael Jurkaabded662011-03-04 12:06:57 -0800714 }
715
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700716 /**
Winson Chungaafa03c2010-06-11 17:34:16 -0700717 * Given a point, return the cell that strictly encloses that point
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800718 * @param x X coordinate of the point
719 * @param y Y coordinate of the point
720 * @param result Array of 2 ints to hold the x and y coordinate of the cell
721 */
Sunny Goyale9b651e2015-04-24 11:44:51 -0700722 public void pointToCellExact(int x, int y, int[] result) {
Winson Chung4b825dcd2011-06-19 12:41:22 -0700723 final int hStartPadding = getPaddingLeft();
724 final int vStartPadding = getPaddingTop();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800725
726 result[0] = (x - hStartPadding) / (mCellWidth + mWidthGap);
727 result[1] = (y - vStartPadding) / (mCellHeight + mHeightGap);
728
Adam Cohend22015c2010-07-26 22:02:18 -0700729 final int xAxis = mCountX;
730 final int yAxis = mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800731
732 if (result[0] < 0) result[0] = 0;
733 if (result[0] >= xAxis) result[0] = xAxis - 1;
734 if (result[1] < 0) result[1] = 0;
735 if (result[1] >= yAxis) result[1] = yAxis - 1;
736 }
Winson Chungaafa03c2010-06-11 17:34:16 -0700737
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800738 /**
739 * Given a point, return the cell that most closely encloses that point
740 * @param x X coordinate of the point
741 * @param y Y coordinate of the point
742 * @param result Array of 2 ints to hold the x and y coordinate of the cell
743 */
744 void pointToCellRounded(int x, int y, int[] result) {
745 pointToCellExact(x + (mCellWidth / 2), y + (mCellHeight / 2), result);
746 }
747
748 /**
749 * Given a cell coordinate, return the point that represents the upper left corner of that cell
Winson Chungaafa03c2010-06-11 17:34:16 -0700750 *
751 * @param cellX X coordinate of the cell
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800752 * @param cellY Y coordinate of the cell
Winson Chungaafa03c2010-06-11 17:34:16 -0700753 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800754 * @param result Array of 2 ints to hold the x and y coordinate of the point
755 */
756 void cellToPoint(int cellX, int cellY, int[] result) {
Winson Chung4b825dcd2011-06-19 12:41:22 -0700757 final int hStartPadding = getPaddingLeft();
758 final int vStartPadding = getPaddingTop();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800759
760 result[0] = hStartPadding + cellX * (mCellWidth + mWidthGap);
761 result[1] = vStartPadding + cellY * (mCellHeight + mHeightGap);
762 }
763
Adam Cohene3e27a82011-04-15 12:07:39 -0700764 /**
Adam Cohen482ed822012-03-02 14:15:13 -0800765 * Given a cell coordinate, return the point that represents the center of the cell
Adam Cohene3e27a82011-04-15 12:07:39 -0700766 *
767 * @param cellX X coordinate of the cell
768 * @param cellY Y coordinate of the cell
769 *
770 * @param result Array of 2 ints to hold the x and y coordinate of the point
771 */
772 void cellToCenterPoint(int cellX, int cellY, int[] result) {
Adam Cohen47a876d2012-03-19 13:21:41 -0700773 regionToCenterPoint(cellX, cellY, 1, 1, result);
774 }
775
776 /**
777 * Given a cell coordinate and span return the point that represents the center of the regio
778 *
779 * @param cellX X coordinate of the cell
780 * @param cellY Y coordinate of the cell
781 *
782 * @param result Array of 2 ints to hold the x and y coordinate of the point
783 */
784 void regionToCenterPoint(int cellX, int cellY, int spanX, int spanY, int[] result) {
Winson Chung4b825dcd2011-06-19 12:41:22 -0700785 final int hStartPadding = getPaddingLeft();
786 final int vStartPadding = getPaddingTop();
Adam Cohen47a876d2012-03-19 13:21:41 -0700787 result[0] = hStartPadding + cellX * (mCellWidth + mWidthGap) +
788 (spanX * mCellWidth + (spanX - 1) * mWidthGap) / 2;
789 result[1] = vStartPadding + cellY * (mCellHeight + mHeightGap) +
790 (spanY * mCellHeight + (spanY - 1) * mHeightGap) / 2;
Adam Cohene3e27a82011-04-15 12:07:39 -0700791 }
792
Adam Cohen19f37922012-03-21 11:59:11 -0700793 /**
794 * Given a cell coordinate and span fills out a corresponding pixel rect
795 *
796 * @param cellX X coordinate of the cell
797 * @param cellY Y coordinate of the cell
798 * @param result Rect in which to write the result
799 */
800 void regionToRect(int cellX, int cellY, int spanX, int spanY, Rect result) {
801 final int hStartPadding = getPaddingLeft();
802 final int vStartPadding = getPaddingTop();
803 final int left = hStartPadding + cellX * (mCellWidth + mWidthGap);
804 final int top = vStartPadding + cellY * (mCellHeight + mHeightGap);
805 result.set(left, top, left + (spanX * mCellWidth + (spanX - 1) * mWidthGap),
806 top + (spanY * mCellHeight + (spanY - 1) * mHeightGap));
807 }
808
Adam Cohen482ed822012-03-02 14:15:13 -0800809 public float getDistanceFromCell(float x, float y, int[] cell) {
810 cellToCenterPoint(cell[0], cell[1], mTmpPoint);
Sunny Goyalf7a29e82015-04-24 15:20:43 -0700811 return (float) Math.hypot(x - mTmpPoint[0], y - mTmpPoint[1]);
Adam Cohen482ed822012-03-02 14:15:13 -0800812 }
813
Romain Guy84f296c2009-11-04 15:00:44 -0800814 int getCellWidth() {
815 return mCellWidth;
816 }
817
818 int getCellHeight() {
819 return mCellHeight;
820 }
821
Adam Cohend4844c32011-02-18 19:25:06 -0800822 int getWidthGap() {
823 return mWidthGap;
824 }
825
826 int getHeightGap() {
827 return mHeightGap;
828 }
829
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700830 public void setFixedSize(int width, int height) {
831 mFixedWidth = width;
832 mFixedHeight = height;
833 }
834
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800835 @Override
836 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800837 int widthSpecMode = MeasureSpec.getMode(widthMeasureSpec);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800838 int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec);
Winson Chung5f8afe62013-08-12 16:19:28 -0700839 int widthSize = MeasureSpec.getSize(widthMeasureSpec);
840 int heightSize = MeasureSpec.getSize(heightMeasureSpec);
Winson Chung2d75f122013-09-23 16:53:31 -0700841 int childWidthSize = widthSize - (getPaddingLeft() + getPaddingRight());
842 int childHeightSize = heightSize - (getPaddingTop() + getPaddingBottom());
Winson Chung11a1a532013-09-13 11:14:45 -0700843 if (mFixedCellWidth < 0 || mFixedCellHeight < 0) {
Sunny Goyalc6205602015-05-21 20:46:33 -0700844 int cw = DeviceProfile.calculateCellWidth(childWidthSize, mCountX);
845 int ch = DeviceProfile.calculateCellHeight(childHeightSize, mCountY);
Winson Chung11a1a532013-09-13 11:14:45 -0700846 if (cw != mCellWidth || ch != mCellHeight) {
847 mCellWidth = cw;
848 mCellHeight = ch;
849 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap,
850 mHeightGap, mCountX, mCountY);
851 }
Winson Chung5f8afe62013-08-12 16:19:28 -0700852 }
Winson Chungaafa03c2010-06-11 17:34:16 -0700853
Winson Chung2d75f122013-09-23 16:53:31 -0700854 int newWidth = childWidthSize;
855 int newHeight = childHeightSize;
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700856 if (mFixedWidth > 0 && mFixedHeight > 0) {
857 newWidth = mFixedWidth;
858 newHeight = mFixedHeight;
859 } else if (widthSpecMode == MeasureSpec.UNSPECIFIED || heightSpecMode == MeasureSpec.UNSPECIFIED) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800860 throw new RuntimeException("CellLayout cannot have UNSPECIFIED dimensions");
861 }
862
Adam Cohend22015c2010-07-26 22:02:18 -0700863 int numWidthGaps = mCountX - 1;
864 int numHeightGaps = mCountY - 1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800865
Adam Cohen234c4cd2011-07-17 21:03:04 -0700866 if (mOriginalWidthGap < 0 || mOriginalHeightGap < 0) {
Winson Chung2d75f122013-09-23 16:53:31 -0700867 int hSpace = childWidthSize;
868 int vSpace = childHeightSize;
Adam Cohenf4bd5792012-04-27 11:35:29 -0700869 int hFreeSpace = hSpace - (mCountX * mCellWidth);
870 int vFreeSpace = vSpace - (mCountY * mCellHeight);
Winson Chung4b825dcd2011-06-19 12:41:22 -0700871 mWidthGap = Math.min(mMaxGap, numWidthGaps > 0 ? (hFreeSpace / numWidthGaps) : 0);
872 mHeightGap = Math.min(mMaxGap,numHeightGaps > 0 ? (vFreeSpace / numHeightGaps) : 0);
Winson Chung5f8afe62013-08-12 16:19:28 -0700873 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap,
874 mHeightGap, mCountX, mCountY);
Adam Cohen234c4cd2011-07-17 21:03:04 -0700875 } else {
876 mWidthGap = mOriginalWidthGap;
877 mHeightGap = mOriginalHeightGap;
Winson Chungece7f5b2010-10-22 14:54:12 -0700878 }
Sunny Goyal4fe5a372015-05-14 19:55:10 -0700879
880 // Make the feedback view large enough to hold the blur bitmap.
881 mTouchFeedbackView.measure(
882 MeasureSpec.makeMeasureSpec(mCellWidth + mTouchFeedbackView.getExtraSize(),
883 MeasureSpec.EXACTLY),
884 MeasureSpec.makeMeasureSpec(mCellHeight + mTouchFeedbackView.getExtraSize(),
885 MeasureSpec.EXACTLY));
886
887 mShortcutsAndWidgets.measure(
888 MeasureSpec.makeMeasureSpec(newWidth, MeasureSpec.EXACTLY),
889 MeasureSpec.makeMeasureSpec(newHeight, MeasureSpec.EXACTLY));
890
891 int maxWidth = mShortcutsAndWidgets.getMeasuredWidth();
892 int maxHeight = mShortcutsAndWidgets.getMeasuredHeight();
Winson Chung2d75f122013-09-23 16:53:31 -0700893 if (mFixedWidth > 0 && mFixedHeight > 0) {
894 setMeasuredDimension(maxWidth, maxHeight);
895 } else {
896 setMeasuredDimension(widthSize, heightSize);
897 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800898 }
899
900 @Override
Michael Jurka28750fb2010-09-24 17:43:49 -0700901 protected void onLayout(boolean changed, int l, int t, int r, int b) {
Tony Wickham26b01422015-11-10 14:44:32 -0800902 boolean isFullscreen = mShortcutsAndWidgets.getChildCount() > 0 &&
903 ((LayoutParams) mShortcutsAndWidgets.getChildAt(0).getLayoutParams()).isFullscreen;
904 int left = getPaddingLeft();
905 if (!isFullscreen) {
906 int offset = getMeasuredWidth() - getPaddingLeft() - getPaddingRight() -
907 (mCountX * mCellWidth);
908 left += (int) Math.ceil(offset / 2f);
909 }
Winson Chung38848ca2013-10-08 12:03:44 -0700910 int top = getPaddingTop();
Sunny Goyal4fe5a372015-05-14 19:55:10 -0700911
912 mTouchFeedbackView.layout(left, top,
913 left + mTouchFeedbackView.getMeasuredWidth(),
914 top + mTouchFeedbackView.getMeasuredHeight());
915 mShortcutsAndWidgets.layout(left, top,
916 left + r - l,
917 top + b - t);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800918 }
919
920 @Override
Michael Jurkadee05892010-07-27 10:01:56 -0700921 protected void onSizeChanged(int w, int h, int oldw, int oldh) {
922 super.onSizeChanged(w, h, oldw, oldh);
Winson Chung82a9bd22013-10-08 16:02:34 -0700923
924 // Expand the background drawing bounds by the padding baked into the background drawable
Sunny Goyal2805e632015-05-20 15:35:32 -0700925 mBackground.getPadding(mTempRect);
926 mBackground.setBounds(-mTempRect.left, -mTempRect.top,
927 w + mTempRect.right, h + mTempRect.bottom);
Michael Jurkadee05892010-07-27 10:01:56 -0700928 }
929
930 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800931 protected void setChildrenDrawingCacheEnabled(boolean enabled) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700932 mShortcutsAndWidgets.setChildrenDrawingCacheEnabled(enabled);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800933 }
934
935 @Override
936 protected void setChildrenDrawnWithCacheEnabled(boolean enabled) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700937 mShortcutsAndWidgets.setChildrenDrawnWithCacheEnabled(enabled);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800938 }
939
Michael Jurka5f1c5092010-09-03 14:15:02 -0700940 public float getBackgroundAlpha() {
941 return mBackgroundAlpha;
Michael Jurkadee05892010-07-27 10:01:56 -0700942 }
943
Michael Jurka5f1c5092010-09-03 14:15:02 -0700944 public void setBackgroundAlpha(float alpha) {
Michael Jurkaafaa0502011-12-13 18:22:50 -0800945 if (mBackgroundAlpha != alpha) {
946 mBackgroundAlpha = alpha;
Sunny Goyal2805e632015-05-20 15:35:32 -0700947 mBackground.setAlpha((int) (mBackgroundAlpha * 255));
Michael Jurkaafaa0502011-12-13 18:22:50 -0800948 }
Michael Jurkadee05892010-07-27 10:01:56 -0700949 }
950
Sunny Goyal2805e632015-05-20 15:35:32 -0700951 @Override
952 protected boolean verifyDrawable(Drawable who) {
953 return super.verifyDrawable(who) || (mIsDragTarget && who == mBackground);
954 }
955
Michael Jurkaa52570f2012-03-20 03:18:20 -0700956 public void setShortcutAndWidgetAlpha(float alpha) {
Sunny Goyal02b50812014-09-10 15:44:42 -0700957 mShortcutsAndWidgets.setAlpha(alpha);
Michael Jurkadee05892010-07-27 10:01:56 -0700958 }
959
Michael Jurkaa52570f2012-03-20 03:18:20 -0700960 public ShortcutAndWidgetContainer getShortcutsAndWidgets() {
Sunny Goyaldcbcc862014-08-12 15:58:36 -0700961 return mShortcutsAndWidgets;
Michael Jurkaa52570f2012-03-20 03:18:20 -0700962 }
963
Patrick Dubroy440c3602010-07-13 17:50:32 -0700964 public View getChildAt(int x, int y) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700965 return mShortcutsAndWidgets.getChildAt(x, y);
Patrick Dubroy440c3602010-07-13 17:50:32 -0700966 }
967
Adam Cohen76fc0852011-06-17 13:26:23 -0700968 public boolean animateChildToPosition(final View child, int cellX, int cellY, int duration,
Adam Cohen482ed822012-03-02 14:15:13 -0800969 int delay, boolean permanent, boolean adjustOccupied) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700970 ShortcutAndWidgetContainer clc = getShortcutsAndWidgets();
Adam Cohen482ed822012-03-02 14:15:13 -0800971 boolean[][] occupied = mOccupied;
972 if (!permanent) {
973 occupied = mTmpOccupied;
974 }
975
Adam Cohen19f37922012-03-21 11:59:11 -0700976 if (clc.indexOfChild(child) != -1) {
Adam Cohenbfbfd262011-06-13 16:55:12 -0700977 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
978 final ItemInfo info = (ItemInfo) child.getTag();
979
980 // We cancel any existing animations
981 if (mReorderAnimators.containsKey(lp)) {
982 mReorderAnimators.get(lp).cancel();
983 mReorderAnimators.remove(lp);
984 }
985
Adam Cohen482ed822012-03-02 14:15:13 -0800986 final int oldX = lp.x;
987 final int oldY = lp.y;
988 if (adjustOccupied) {
989 occupied[lp.cellX][lp.cellY] = false;
990 occupied[cellX][cellY] = true;
991 }
Adam Cohenbfbfd262011-06-13 16:55:12 -0700992 lp.isLockedToGrid = true;
Adam Cohen482ed822012-03-02 14:15:13 -0800993 if (permanent) {
994 lp.cellX = info.cellX = cellX;
995 lp.cellY = info.cellY = cellY;
996 } else {
997 lp.tmpCellX = cellX;
998 lp.tmpCellY = cellY;
999 }
Adam Cohenbfbfd262011-06-13 16:55:12 -07001000 clc.setupLp(lp);
1001 lp.isLockedToGrid = false;
Adam Cohen482ed822012-03-02 14:15:13 -08001002 final int newX = lp.x;
1003 final int newY = lp.y;
Adam Cohenbfbfd262011-06-13 16:55:12 -07001004
Adam Cohen76fc0852011-06-17 13:26:23 -07001005 lp.x = oldX;
1006 lp.y = oldY;
Adam Cohen76fc0852011-06-17 13:26:23 -07001007
Adam Cohen482ed822012-03-02 14:15:13 -08001008 // Exit early if we're not actually moving the view
1009 if (oldX == newX && oldY == newY) {
1010 lp.isLockedToGrid = true;
1011 return true;
1012 }
1013
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001014 ValueAnimator va = LauncherAnimUtils.ofFloat(child, 0f, 1f);
Adam Cohen482ed822012-03-02 14:15:13 -08001015 va.setDuration(duration);
1016 mReorderAnimators.put(lp, va);
1017
1018 va.addUpdateListener(new AnimatorUpdateListener() {
1019 @Override
Adam Cohenbfbfd262011-06-13 16:55:12 -07001020 public void onAnimationUpdate(ValueAnimator animation) {
Adam Cohen482ed822012-03-02 14:15:13 -08001021 float r = ((Float) animation.getAnimatedValue()).floatValue();
Adam Cohen19f37922012-03-21 11:59:11 -07001022 lp.x = (int) ((1 - r) * oldX + r * newX);
1023 lp.y = (int) ((1 - r) * oldY + r * newY);
Adam Cohen6b8a02d2012-03-22 15:13:40 -07001024 child.requestLayout();
Adam Cohenbfbfd262011-06-13 16:55:12 -07001025 }
1026 });
Adam Cohen482ed822012-03-02 14:15:13 -08001027 va.addListener(new AnimatorListenerAdapter() {
Adam Cohenbfbfd262011-06-13 16:55:12 -07001028 boolean cancelled = false;
1029 public void onAnimationEnd(Animator animation) {
1030 // If the animation was cancelled, it means that another animation
1031 // has interrupted this one, and we don't want to lock the item into
1032 // place just yet.
1033 if (!cancelled) {
1034 lp.isLockedToGrid = true;
Adam Cohen482ed822012-03-02 14:15:13 -08001035 child.requestLayout();
Adam Cohenbfbfd262011-06-13 16:55:12 -07001036 }
1037 if (mReorderAnimators.containsKey(lp)) {
1038 mReorderAnimators.remove(lp);
1039 }
1040 }
1041 public void onAnimationCancel(Animator animation) {
1042 cancelled = true;
1043 }
1044 });
Adam Cohen482ed822012-03-02 14:15:13 -08001045 va.setStartDelay(delay);
1046 va.start();
Adam Cohenbfbfd262011-06-13 16:55:12 -07001047 return true;
1048 }
1049 return false;
1050 }
1051
Adam Cohen482ed822012-03-02 14:15:13 -08001052 void visualizeDropLocation(View v, Bitmap dragOutline, int originX, int originY, int cellX,
Sunny Goyale78e3d72015-09-24 11:23:31 -07001053 int cellY, int spanX, int spanY, boolean resize, DropTarget.DragObject dragObject) {
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07001054 final int oldDragCellX = mDragCell[0];
1055 final int oldDragCellY = mDragCell[1];
Adam Cohen482ed822012-03-02 14:15:13 -08001056
Adam Cohen2801caf2011-05-13 20:57:39 -07001057 if (dragOutline == null && v == null) {
Adam Cohen2801caf2011-05-13 20:57:39 -07001058 return;
1059 }
1060
Adam Cohen482ed822012-03-02 14:15:13 -08001061 if (cellX != oldDragCellX || cellY != oldDragCellY) {
Sunny Goyale78e3d72015-09-24 11:23:31 -07001062 Point dragOffset = dragObject.dragView.getDragVisualizeOffset();
1063 Rect dragRegion = dragObject.dragView.getDragRegion();
1064
Adam Cohen482ed822012-03-02 14:15:13 -08001065 mDragCell[0] = cellX;
1066 mDragCell[1] = cellY;
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07001067 // Find the top left corner of the rect the object will occupy
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001068 final int[] topLeft = mTmpPoint;
Adam Cohen482ed822012-03-02 14:15:13 -08001069 cellToPoint(cellX, cellY, topLeft);
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001070
Joe Onorato4be866d2010-10-10 11:26:02 -07001071 int left = topLeft[0];
1072 int top = topLeft[1];
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07001073
Winson Chungb8c69f32011-10-19 21:36:08 -07001074 if (v != null && dragOffset == null) {
Adam Cohen99e8b402011-03-25 19:23:43 -07001075 // When drawing the drag outline, it did not account for margin offsets
1076 // added by the view's parent.
1077 MarginLayoutParams lp = (MarginLayoutParams) v.getLayoutParams();
1078 left += lp.leftMargin;
1079 top += lp.topMargin;
Winson Chung150fbab2010-09-29 17:14:26 -07001080
Adam Cohen99e8b402011-03-25 19:23:43 -07001081 // Offsets due to the size difference between the View and the dragOutline.
1082 // There is a size difference to account for the outer blur, which may lie
1083 // outside the bounds of the view.
Winson Chunga9abd0e2010-10-27 17:18:37 -07001084 top += (v.getHeight() - dragOutline.getHeight()) / 2;
Adam Cohenae915ce2011-08-25 13:47:22 -07001085 // We center about the x axis
1086 left += ((mCellWidth * spanX) + ((spanX - 1) * mWidthGap)
1087 - dragOutline.getWidth()) / 2;
Adam Cohen66396872011-04-15 17:50:36 -07001088 } else {
Winson Chungb8c69f32011-10-19 21:36:08 -07001089 if (dragOffset != null && dragRegion != null) {
1090 // Center the drag region *horizontally* in the cell and apply a drag
1091 // outline offset
1092 left += dragOffset.x + ((mCellWidth * spanX) + ((spanX - 1) * mWidthGap)
1093 - dragRegion.width()) / 2;
Winson Chung69737c32013-10-08 17:00:19 -07001094 int cHeight = getShortcutsAndWidgets().getCellContentHeight();
1095 int cellPaddingY = (int) Math.max(0, ((mCellHeight - cHeight) / 2f));
1096 top += dragOffset.y + cellPaddingY;
Winson Chungb8c69f32011-10-19 21:36:08 -07001097 } else {
1098 // Center the drag outline in the cell
1099 left += ((mCellWidth * spanX) + ((spanX - 1) * mWidthGap)
1100 - dragOutline.getWidth()) / 2;
1101 top += ((mCellHeight * spanY) + ((spanY - 1) * mHeightGap)
1102 - dragOutline.getHeight()) / 2;
1103 }
Winson Chunga9abd0e2010-10-27 17:18:37 -07001104 }
Joe Onorato4be866d2010-10-10 11:26:02 -07001105 final int oldIndex = mDragOutlineCurrent;
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07001106 mDragOutlineAnims[oldIndex].animateOut();
1107 mDragOutlineCurrent = (oldIndex + 1) % mDragOutlines.length;
Adam Cohend41fbf52012-02-16 23:53:59 -08001108 Rect r = mDragOutlines[mDragOutlineCurrent];
1109 r.set(left, top, left + dragOutline.getWidth(), top + dragOutline.getHeight());
1110 if (resize) {
Adam Cohen482ed822012-03-02 14:15:13 -08001111 cellToRect(cellX, cellY, spanX, spanY, r);
Adam Cohend41fbf52012-02-16 23:53:59 -08001112 }
Winson Chung150fbab2010-09-29 17:14:26 -07001113
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07001114 mDragOutlineAnims[mDragOutlineCurrent].setTag(dragOutline);
1115 mDragOutlineAnims[mDragOutlineCurrent].animateIn();
Sunny Goyale78e3d72015-09-24 11:23:31 -07001116
1117 if (dragObject.stateAnnouncer != null) {
1118 String msg;
1119 if (isHotseat()) {
1120 msg = getContext().getString(R.string.move_to_hotseat_position,
1121 Math.max(cellX, cellY) + 1);
1122 } else {
1123 msg = getContext().getString(R.string.move_to_empty_cell,
1124 cellY + 1, cellX + 1);
1125 }
1126 dragObject.stateAnnouncer.announce(msg);
1127 }
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07001128 }
1129 }
1130
Adam Cohene0310962011-04-18 16:15:31 -07001131 public void clearDragOutlines() {
1132 final int oldIndex = mDragOutlineCurrent;
1133 mDragOutlineAnims[oldIndex].animateOut();
Adam Cohend41fbf52012-02-16 23:53:59 -08001134 mDragCell[0] = mDragCell[1] = -1;
Adam Cohene0310962011-04-18 16:15:31 -07001135 }
1136
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001137 /**
Jeff Sharkey70864282009-04-07 21:08:40 -07001138 * Find a vacant area that will fit the given bounds nearest the requested
1139 * cell location. Uses Euclidean distance to score multiple vacant areas.
Winson Chungaafa03c2010-06-11 17:34:16 -07001140 *
Romain Guy51afc022009-05-04 18:03:43 -07001141 * @param pixelX The X location at which you want to search for a vacant area.
1142 * @param pixelY The Y location at which you want to search for a vacant area.
Jeff Sharkey70864282009-04-07 21:08:40 -07001143 * @param spanX Horizontal span of the object.
1144 * @param spanY Vertical span of the object.
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001145 * @param result Array in which to place the result, or null (in which case a new array will
1146 * be allocated)
Jeff Sharkey70864282009-04-07 21:08:40 -07001147 * @return The X, Y cell of a vacant area that can contain this object,
1148 * nearest the requested location.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001149 */
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001150 int[] findNearestVacantArea(int pixelX, int pixelY, int spanX, int spanY, int[] result) {
1151 return findNearestVacantArea(pixelX, pixelY, spanX, spanY, spanX, spanY, result, null);
Michael Jurka6a1435d2010-09-27 17:35:12 -07001152 }
Winson Chungaafa03c2010-06-11 17:34:16 -07001153
Michael Jurka6a1435d2010-09-27 17:35:12 -07001154 /**
1155 * Find a vacant area that will fit the given bounds nearest the requested
1156 * cell location. Uses Euclidean distance to score multiple vacant areas.
1157 *
1158 * @param pixelX The X location at which you want to search for a vacant area.
1159 * @param pixelY The Y location at which you want to search for a vacant area.
Adam Cohend41fbf52012-02-16 23:53:59 -08001160 * @param minSpanX The minimum horizontal span required
1161 * @param minSpanY The minimum vertical span required
1162 * @param spanX Horizontal span of the object.
1163 * @param spanY Vertical span of the object.
1164 * @param result Array in which to place the result, or null (in which case a new array will
1165 * be allocated)
1166 * @return The X, Y cell of a vacant area that can contain this object,
1167 * nearest the requested location.
1168 */
1169 int[] findNearestVacantArea(int pixelX, int pixelY, int minSpanX, int minSpanY, int spanX,
1170 int spanY, int[] result, int[] resultSpan) {
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001171 return findNearestArea(pixelX, pixelY, minSpanX, minSpanY, spanX, spanY, true,
Adam Cohend41fbf52012-02-16 23:53:59 -08001172 result, resultSpan);
1173 }
1174
Adam Cohend41fbf52012-02-16 23:53:59 -08001175 private final Stack<Rect> mTempRectStack = new Stack<Rect>();
1176 private void lazyInitTempRectStack() {
1177 if (mTempRectStack.isEmpty()) {
1178 for (int i = 0; i < mCountX * mCountY; i++) {
1179 mTempRectStack.push(new Rect());
1180 }
1181 }
1182 }
Adam Cohen482ed822012-03-02 14:15:13 -08001183
Adam Cohend41fbf52012-02-16 23:53:59 -08001184 private void recycleTempRects(Stack<Rect> used) {
1185 while (!used.isEmpty()) {
1186 mTempRectStack.push(used.pop());
1187 }
1188 }
1189
1190 /**
1191 * Find a vacant area that will fit the given bounds nearest the requested
1192 * cell location. Uses Euclidean distance to score multiple vacant areas.
1193 *
1194 * @param pixelX The X location at which you want to search for a vacant area.
1195 * @param pixelY The Y location at which you want to search for a vacant area.
1196 * @param minSpanX The minimum horizontal span required
1197 * @param minSpanY The minimum vertical span required
1198 * @param spanX Horizontal span of the object.
1199 * @param spanY Vertical span of the object.
1200 * @param ignoreOccupied If true, the result can be an occupied cell
1201 * @param result Array in which to place the result, or null (in which case a new array will
1202 * be allocated)
1203 * @return The X, Y cell of a vacant area that can contain this object,
1204 * nearest the requested location.
1205 */
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001206 private int[] findNearestArea(int pixelX, int pixelY, int minSpanX, int minSpanY, int spanX,
1207 int spanY, boolean ignoreOccupied, int[] result, int[] resultSpan) {
Adam Cohend41fbf52012-02-16 23:53:59 -08001208 lazyInitTempRectStack();
Michael Jurkac6ee42e2010-09-30 12:04:50 -07001209
Adam Cohene3e27a82011-04-15 12:07:39 -07001210 // For items with a spanX / spanY > 1, the passed in point (pixelX, pixelY) corresponds
1211 // to the center of the item, but we are searching based on the top-left cell, so
1212 // we translate the point over to correspond to the top-left.
1213 pixelX -= (mCellWidth + mWidthGap) * (spanX - 1) / 2f;
1214 pixelY -= (mCellHeight + mHeightGap) * (spanY - 1) / 2f;
1215
Jeff Sharkey70864282009-04-07 21:08:40 -07001216 // Keep track of best-scoring drop area
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001217 final int[] bestXY = result != null ? result : new int[2];
Jeff Sharkey70864282009-04-07 21:08:40 -07001218 double bestDistance = Double.MAX_VALUE;
Adam Cohend41fbf52012-02-16 23:53:59 -08001219 final Rect bestRect = new Rect(-1, -1, -1, -1);
1220 final Stack<Rect> validRegions = new Stack<Rect>();
Winson Chungaafa03c2010-06-11 17:34:16 -07001221
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001222 final int countX = mCountX;
1223 final int countY = mCountY;
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001224
Adam Cohend41fbf52012-02-16 23:53:59 -08001225 if (minSpanX <= 0 || minSpanY <= 0 || spanX <= 0 || spanY <= 0 ||
1226 spanX < minSpanX || spanY < minSpanY) {
1227 return bestXY;
1228 }
1229
1230 for (int y = 0; y < countY - (minSpanY - 1); y++) {
Michael Jurkac28de512010-08-13 11:27:44 -07001231 inner:
Adam Cohend41fbf52012-02-16 23:53:59 -08001232 for (int x = 0; x < countX - (minSpanX - 1); x++) {
1233 int ySize = -1;
1234 int xSize = -1;
Adam Cohendf035382011-04-11 17:22:04 -07001235 if (ignoreOccupied) {
Adam Cohend41fbf52012-02-16 23:53:59 -08001236 // First, let's see if this thing fits anywhere
1237 for (int i = 0; i < minSpanX; i++) {
1238 for (int j = 0; j < minSpanY; j++) {
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001239 if (mOccupied[x + i][y + j]) {
Adam Cohendf035382011-04-11 17:22:04 -07001240 continue inner;
1241 }
Michael Jurkac28de512010-08-13 11:27:44 -07001242 }
1243 }
Adam Cohend41fbf52012-02-16 23:53:59 -08001244 xSize = minSpanX;
1245 ySize = minSpanY;
1246
1247 // We know that the item will fit at _some_ acceptable size, now let's see
1248 // how big we can make it. We'll alternate between incrementing x and y spans
1249 // until we hit a limit.
1250 boolean incX = true;
1251 boolean hitMaxX = xSize >= spanX;
1252 boolean hitMaxY = ySize >= spanY;
1253 while (!(hitMaxX && hitMaxY)) {
1254 if (incX && !hitMaxX) {
1255 for (int j = 0; j < ySize; j++) {
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001256 if (x + xSize > countX -1 || mOccupied[x + xSize][y + j]) {
Adam Cohend41fbf52012-02-16 23:53:59 -08001257 // We can't move out horizontally
1258 hitMaxX = true;
1259 }
1260 }
1261 if (!hitMaxX) {
1262 xSize++;
1263 }
1264 } else if (!hitMaxY) {
1265 for (int i = 0; i < xSize; i++) {
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001266 if (y + ySize > countY - 1 || mOccupied[x + i][y + ySize]) {
Adam Cohend41fbf52012-02-16 23:53:59 -08001267 // We can't move out vertically
1268 hitMaxY = true;
1269 }
1270 }
1271 if (!hitMaxY) {
1272 ySize++;
1273 }
1274 }
1275 hitMaxX |= xSize >= spanX;
1276 hitMaxY |= ySize >= spanY;
1277 incX = !incX;
1278 }
1279 incX = true;
1280 hitMaxX = xSize >= spanX;
1281 hitMaxY = ySize >= spanY;
Michael Jurkac28de512010-08-13 11:27:44 -07001282 }
Sunny Goyal2805e632015-05-20 15:35:32 -07001283 final int[] cellXY = mTmpPoint;
Adam Cohene3e27a82011-04-15 12:07:39 -07001284 cellToCenterPoint(x, y, cellXY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001285
Adam Cohend41fbf52012-02-16 23:53:59 -08001286 // We verify that the current rect is not a sub-rect of any of our previous
1287 // candidates. In this case, the current rect is disqualified in favour of the
1288 // containing rect.
1289 Rect currentRect = mTempRectStack.pop();
1290 currentRect.set(x, y, x + xSize, y + ySize);
1291 boolean contained = false;
1292 for (Rect r : validRegions) {
1293 if (r.contains(currentRect)) {
1294 contained = true;
1295 break;
1296 }
1297 }
1298 validRegions.push(currentRect);
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001299 double distance = Math.hypot(cellXY[0] - pixelX, cellXY[1] - pixelY);
Adam Cohen482ed822012-03-02 14:15:13 -08001300
Adam Cohend41fbf52012-02-16 23:53:59 -08001301 if ((distance <= bestDistance && !contained) ||
1302 currentRect.contains(bestRect)) {
Michael Jurkac28de512010-08-13 11:27:44 -07001303 bestDistance = distance;
1304 bestXY[0] = x;
1305 bestXY[1] = y;
Adam Cohend41fbf52012-02-16 23:53:59 -08001306 if (resultSpan != null) {
1307 resultSpan[0] = xSize;
1308 resultSpan[1] = ySize;
1309 }
1310 bestRect.set(currentRect);
Michael Jurkac28de512010-08-13 11:27:44 -07001311 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001312 }
1313 }
1314
Adam Cohenc0dcf592011-06-01 15:30:43 -07001315 // Return -1, -1 if no suitable location found
1316 if (bestDistance == Double.MAX_VALUE) {
1317 bestXY[0] = -1;
1318 bestXY[1] = -1;
Jeff Sharkey70864282009-04-07 21:08:40 -07001319 }
Adam Cohend41fbf52012-02-16 23:53:59 -08001320 recycleTempRects(validRegions);
Adam Cohenc0dcf592011-06-01 15:30:43 -07001321 return bestXY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001322 }
Winson Chungaafa03c2010-06-11 17:34:16 -07001323
Adam Cohen482ed822012-03-02 14:15:13 -08001324 /**
1325 * Find a vacant area that will fit the given bounds nearest the requested
1326 * cell location, and will also weigh in a suggested direction vector of the
1327 * desired location. This method computers distance based on unit grid distances,
1328 * not pixel distances.
1329 *
Adam Cohen47a876d2012-03-19 13:21:41 -07001330 * @param cellX The X cell nearest to which you want to search for a vacant area.
1331 * @param cellY The Y cell nearest which you want to search for a vacant area.
Adam Cohen482ed822012-03-02 14:15:13 -08001332 * @param spanX Horizontal span of the object.
1333 * @param spanY Vertical span of the object.
Adam Cohen47a876d2012-03-19 13:21:41 -07001334 * @param direction The favored direction in which the views should move from x, y
1335 * @param exactDirectionOnly If this parameter is true, then only solutions where the direction
1336 * matches exactly. Otherwise we find the best matching direction.
1337 * @param occoupied The array which represents which cells in the CellLayout are occupied
1338 * @param blockOccupied The array which represents which cells in the specified block (cellX,
Winson Chung5f8afe62013-08-12 16:19:28 -07001339 * cellY, spanX, spanY) are occupied. This is used when try to move a group of views.
Adam Cohen482ed822012-03-02 14:15:13 -08001340 * @param result Array in which to place the result, or null (in which case a new array will
1341 * be allocated)
1342 * @return The X, Y cell of a vacant area that can contain this object,
1343 * nearest the requested location.
1344 */
1345 private int[] findNearestArea(int cellX, int cellY, int spanX, int spanY, int[] direction,
Adam Cohen47a876d2012-03-19 13:21:41 -07001346 boolean[][] occupied, boolean blockOccupied[][], int[] result) {
Adam Cohen482ed822012-03-02 14:15:13 -08001347 // Keep track of best-scoring drop area
1348 final int[] bestXY = result != null ? result : new int[2];
1349 float bestDistance = Float.MAX_VALUE;
1350 int bestDirectionScore = Integer.MIN_VALUE;
1351
1352 final int countX = mCountX;
1353 final int countY = mCountY;
1354
1355 for (int y = 0; y < countY - (spanY - 1); y++) {
1356 inner:
1357 for (int x = 0; x < countX - (spanX - 1); x++) {
1358 // First, let's see if this thing fits anywhere
1359 for (int i = 0; i < spanX; i++) {
1360 for (int j = 0; j < spanY; j++) {
Adam Cohen47a876d2012-03-19 13:21:41 -07001361 if (occupied[x + i][y + j] && (blockOccupied == null || blockOccupied[i][j])) {
Adam Cohen482ed822012-03-02 14:15:13 -08001362 continue inner;
1363 }
1364 }
1365 }
1366
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001367 float distance = (float) Math.hypot(x - cellX, y - cellY);
Adam Cohen482ed822012-03-02 14:15:13 -08001368 int[] curDirection = mTmpPoint;
Adam Cohen47a876d2012-03-19 13:21:41 -07001369 computeDirectionVector(x - cellX, y - cellY, curDirection);
1370 // The direction score is just the dot product of the two candidate direction
1371 // and that passed in.
Adam Cohen482ed822012-03-02 14:15:13 -08001372 int curDirectionScore = direction[0] * curDirection[0] +
1373 direction[1] * curDirection[1];
Adam Cohen47a876d2012-03-19 13:21:41 -07001374 boolean exactDirectionOnly = false;
1375 boolean directionMatches = direction[0] == curDirection[0] &&
1376 direction[0] == curDirection[0];
1377 if ((directionMatches || !exactDirectionOnly) &&
1378 Float.compare(distance, bestDistance) < 0 || (Float.compare(distance,
Adam Cohen482ed822012-03-02 14:15:13 -08001379 bestDistance) == 0 && curDirectionScore > bestDirectionScore)) {
1380 bestDistance = distance;
1381 bestDirectionScore = curDirectionScore;
1382 bestXY[0] = x;
1383 bestXY[1] = y;
1384 }
1385 }
1386 }
1387
1388 // Return -1, -1 if no suitable location found
1389 if (bestDistance == Float.MAX_VALUE) {
1390 bestXY[0] = -1;
1391 bestXY[1] = -1;
1392 }
1393 return bestXY;
1394 }
1395
1396 private boolean addViewToTempLocation(View v, Rect rectOccupiedByPotentialDrop,
Adam Cohen8baab352012-03-20 17:39:21 -07001397 int[] direction, ItemConfiguration currentState) {
1398 CellAndSpan c = currentState.map.get(v);
Adam Cohen482ed822012-03-02 14:15:13 -08001399 boolean success = false;
Adam Cohen8baab352012-03-20 17:39:21 -07001400 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, false);
Adam Cohen482ed822012-03-02 14:15:13 -08001401 markCellsForRect(rectOccupiedByPotentialDrop, mTmpOccupied, true);
1402
Adam Cohen8baab352012-03-20 17:39:21 -07001403 findNearestArea(c.x, c.y, c.spanX, c.spanY, direction, mTmpOccupied, null, mTempLocation);
Adam Cohen482ed822012-03-02 14:15:13 -08001404
1405 if (mTempLocation[0] >= 0 && mTempLocation[1] >= 0) {
Adam Cohen8baab352012-03-20 17:39:21 -07001406 c.x = mTempLocation[0];
1407 c.y = mTempLocation[1];
Adam Cohen482ed822012-03-02 14:15:13 -08001408 success = true;
Adam Cohen482ed822012-03-02 14:15:13 -08001409 }
Adam Cohen8baab352012-03-20 17:39:21 -07001410 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001411 return success;
1412 }
1413
Adam Cohenf3900c22012-11-16 18:28:11 -08001414 /**
1415 * This helper class defines a cluster of views. It helps with defining complex edges
1416 * of the cluster and determining how those edges interact with other views. The edges
1417 * essentially define a fine-grained boundary around the cluster of views -- like a more
1418 * precise version of a bounding box.
1419 */
1420 private class ViewCluster {
1421 final static int LEFT = 0;
1422 final static int TOP = 1;
1423 final static int RIGHT = 2;
1424 final static int BOTTOM = 3;
Adam Cohen47a876d2012-03-19 13:21:41 -07001425
Adam Cohenf3900c22012-11-16 18:28:11 -08001426 ArrayList<View> views;
1427 ItemConfiguration config;
1428 Rect boundingRect = new Rect();
Adam Cohen47a876d2012-03-19 13:21:41 -07001429
Adam Cohenf3900c22012-11-16 18:28:11 -08001430 int[] leftEdge = new int[mCountY];
1431 int[] rightEdge = new int[mCountY];
1432 int[] topEdge = new int[mCountX];
1433 int[] bottomEdge = new int[mCountX];
1434 boolean leftEdgeDirty, rightEdgeDirty, topEdgeDirty, bottomEdgeDirty, boundingRectDirty;
1435
1436 @SuppressWarnings("unchecked")
1437 public ViewCluster(ArrayList<View> views, ItemConfiguration config) {
1438 this.views = (ArrayList<View>) views.clone();
1439 this.config = config;
1440 resetEdges();
Adam Cohen47a876d2012-03-19 13:21:41 -07001441 }
1442
Adam Cohenf3900c22012-11-16 18:28:11 -08001443 void resetEdges() {
1444 for (int i = 0; i < mCountX; i++) {
1445 topEdge[i] = -1;
1446 bottomEdge[i] = -1;
1447 }
1448 for (int i = 0; i < mCountY; i++) {
1449 leftEdge[i] = -1;
1450 rightEdge[i] = -1;
1451 }
1452 leftEdgeDirty = true;
1453 rightEdgeDirty = true;
1454 bottomEdgeDirty = true;
1455 topEdgeDirty = true;
1456 boundingRectDirty = true;
1457 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001458
Adam Cohenf3900c22012-11-16 18:28:11 -08001459 void computeEdge(int which, int[] edge) {
1460 int count = views.size();
1461 for (int i = 0; i < count; i++) {
1462 CellAndSpan cs = config.map.get(views.get(i));
1463 switch (which) {
1464 case LEFT:
1465 int left = cs.x;
1466 for (int j = cs.y; j < cs.y + cs.spanY; j++) {
1467 if (left < edge[j] || edge[j] < 0) {
1468 edge[j] = left;
Adam Cohena56dc102012-07-13 13:41:42 -07001469 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001470 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001471 break;
1472 case RIGHT:
1473 int right = cs.x + cs.spanX;
1474 for (int j = cs.y; j < cs.y + cs.spanY; j++) {
1475 if (right > edge[j]) {
1476 edge[j] = right;
1477 }
1478 }
1479 break;
1480 case TOP:
1481 int top = cs.y;
1482 for (int j = cs.x; j < cs.x + cs.spanX; j++) {
1483 if (top < edge[j] || edge[j] < 0) {
1484 edge[j] = top;
1485 }
1486 }
1487 break;
1488 case BOTTOM:
1489 int bottom = cs.y + cs.spanY;
1490 for (int j = cs.x; j < cs.x + cs.spanX; j++) {
1491 if (bottom > edge[j]) {
1492 edge[j] = bottom;
1493 }
1494 }
1495 break;
Adam Cohen47a876d2012-03-19 13:21:41 -07001496 }
1497 }
1498 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001499
1500 boolean isViewTouchingEdge(View v, int whichEdge) {
1501 CellAndSpan cs = config.map.get(v);
1502
1503 int[] edge = getEdge(whichEdge);
1504
1505 switch (whichEdge) {
1506 case LEFT:
1507 for (int i = cs.y; i < cs.y + cs.spanY; i++) {
1508 if (edge[i] == cs.x + cs.spanX) {
1509 return true;
1510 }
1511 }
1512 break;
1513 case RIGHT:
1514 for (int i = cs.y; i < cs.y + cs.spanY; i++) {
1515 if (edge[i] == cs.x) {
1516 return true;
1517 }
1518 }
1519 break;
1520 case TOP:
1521 for (int i = cs.x; i < cs.x + cs.spanX; i++) {
1522 if (edge[i] == cs.y + cs.spanY) {
1523 return true;
1524 }
1525 }
1526 break;
1527 case BOTTOM:
1528 for (int i = cs.x; i < cs.x + cs.spanX; i++) {
1529 if (edge[i] == cs.y) {
1530 return true;
1531 }
1532 }
1533 break;
1534 }
1535 return false;
1536 }
1537
1538 void shift(int whichEdge, int delta) {
1539 for (View v: views) {
1540 CellAndSpan c = config.map.get(v);
1541 switch (whichEdge) {
1542 case LEFT:
1543 c.x -= delta;
1544 break;
1545 case RIGHT:
1546 c.x += delta;
1547 break;
1548 case TOP:
1549 c.y -= delta;
1550 break;
1551 case BOTTOM:
1552 default:
1553 c.y += delta;
1554 break;
1555 }
1556 }
1557 resetEdges();
1558 }
1559
1560 public void addView(View v) {
1561 views.add(v);
1562 resetEdges();
1563 }
1564
1565 public Rect getBoundingRect() {
1566 if (boundingRectDirty) {
1567 boolean first = true;
1568 for (View v: views) {
1569 CellAndSpan c = config.map.get(v);
1570 if (first) {
1571 boundingRect.set(c.x, c.y, c.x + c.spanX, c.y + c.spanY);
1572 first = false;
1573 } else {
1574 boundingRect.union(c.x, c.y, c.x + c.spanX, c.y + c.spanY);
1575 }
1576 }
1577 }
1578 return boundingRect;
1579 }
1580
1581 public int[] getEdge(int which) {
1582 switch (which) {
1583 case LEFT:
1584 return getLeftEdge();
1585 case RIGHT:
1586 return getRightEdge();
1587 case TOP:
1588 return getTopEdge();
1589 case BOTTOM:
1590 default:
1591 return getBottomEdge();
1592 }
1593 }
1594
1595 public int[] getLeftEdge() {
1596 if (leftEdgeDirty) {
1597 computeEdge(LEFT, leftEdge);
1598 }
1599 return leftEdge;
1600 }
1601
1602 public int[] getRightEdge() {
1603 if (rightEdgeDirty) {
1604 computeEdge(RIGHT, rightEdge);
1605 }
1606 return rightEdge;
1607 }
1608
1609 public int[] getTopEdge() {
1610 if (topEdgeDirty) {
1611 computeEdge(TOP, topEdge);
1612 }
1613 return topEdge;
1614 }
1615
1616 public int[] getBottomEdge() {
1617 if (bottomEdgeDirty) {
1618 computeEdge(BOTTOM, bottomEdge);
1619 }
1620 return bottomEdge;
1621 }
1622
1623 PositionComparator comparator = new PositionComparator();
1624 class PositionComparator implements Comparator<View> {
1625 int whichEdge = 0;
1626 public int compare(View left, View right) {
1627 CellAndSpan l = config.map.get(left);
1628 CellAndSpan r = config.map.get(right);
1629 switch (whichEdge) {
1630 case LEFT:
1631 return (r.x + r.spanX) - (l.x + l.spanX);
1632 case RIGHT:
1633 return l.x - r.x;
1634 case TOP:
1635 return (r.y + r.spanY) - (l.y + l.spanY);
1636 case BOTTOM:
1637 default:
1638 return l.y - r.y;
1639 }
1640 }
1641 }
1642
1643 public void sortConfigurationForEdgePush(int edge) {
1644 comparator.whichEdge = edge;
1645 Collections.sort(config.sortedViews, comparator);
1646 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001647 }
1648
Adam Cohenf3900c22012-11-16 18:28:11 -08001649 private boolean pushViewsToTempLocation(ArrayList<View> views, Rect rectOccupiedByPotentialDrop,
1650 int[] direction, View dragView, ItemConfiguration currentState) {
Adam Cohene0489502012-08-27 15:18:53 -07001651
Adam Cohenf3900c22012-11-16 18:28:11 -08001652 ViewCluster cluster = new ViewCluster(views, currentState);
1653 Rect clusterRect = cluster.getBoundingRect();
1654 int whichEdge;
1655 int pushDistance;
1656 boolean fail = false;
1657
1658 // Determine the edge of the cluster that will be leading the push and how far
1659 // the cluster must be shifted.
1660 if (direction[0] < 0) {
1661 whichEdge = ViewCluster.LEFT;
1662 pushDistance = clusterRect.right - rectOccupiedByPotentialDrop.left;
Adam Cohene0489502012-08-27 15:18:53 -07001663 } else if (direction[0] > 0) {
Adam Cohenf3900c22012-11-16 18:28:11 -08001664 whichEdge = ViewCluster.RIGHT;
1665 pushDistance = rectOccupiedByPotentialDrop.right - clusterRect.left;
1666 } else if (direction[1] < 0) {
1667 whichEdge = ViewCluster.TOP;
1668 pushDistance = clusterRect.bottom - rectOccupiedByPotentialDrop.top;
1669 } else {
1670 whichEdge = ViewCluster.BOTTOM;
1671 pushDistance = rectOccupiedByPotentialDrop.bottom - clusterRect.top;
Adam Cohene0489502012-08-27 15:18:53 -07001672 }
1673
Adam Cohenf3900c22012-11-16 18:28:11 -08001674 // Break early for invalid push distance.
1675 if (pushDistance <= 0) {
1676 return false;
Adam Cohene0489502012-08-27 15:18:53 -07001677 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001678
1679 // Mark the occupied state as false for the group of views we want to move.
1680 for (View v: views) {
1681 CellAndSpan c = currentState.map.get(v);
1682 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, false);
1683 }
1684
1685 // We save the current configuration -- if we fail to find a solution we will revert
1686 // to the initial state. The process of finding a solution modifies the configuration
1687 // in place, hence the need for revert in the failure case.
1688 currentState.save();
1689
1690 // The pushing algorithm is simplified by considering the views in the order in which
1691 // they would be pushed by the cluster. For example, if the cluster is leading with its
1692 // left edge, we consider sort the views by their right edge, from right to left.
1693 cluster.sortConfigurationForEdgePush(whichEdge);
1694
1695 while (pushDistance > 0 && !fail) {
1696 for (View v: currentState.sortedViews) {
1697 // For each view that isn't in the cluster, we see if the leading edge of the
1698 // cluster is contacting the edge of that view. If so, we add that view to the
1699 // cluster.
1700 if (!cluster.views.contains(v) && v != dragView) {
1701 if (cluster.isViewTouchingEdge(v, whichEdge)) {
1702 LayoutParams lp = (LayoutParams) v.getLayoutParams();
1703 if (!lp.canReorder) {
1704 // The push solution includes the all apps button, this is not viable.
1705 fail = true;
1706 break;
1707 }
1708 cluster.addView(v);
1709 CellAndSpan c = currentState.map.get(v);
1710
1711 // Adding view to cluster, mark it as not occupied.
1712 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, false);
1713 }
1714 }
1715 }
1716 pushDistance--;
1717
1718 // The cluster has been completed, now we move the whole thing over in the appropriate
1719 // direction.
1720 cluster.shift(whichEdge, 1);
1721 }
1722
1723 boolean foundSolution = false;
1724 clusterRect = cluster.getBoundingRect();
1725
1726 // Due to the nature of the algorithm, the only check required to verify a valid solution
1727 // is to ensure that completed shifted cluster lies completely within the cell layout.
1728 if (!fail && clusterRect.left >= 0 && clusterRect.right <= mCountX && clusterRect.top >= 0 &&
1729 clusterRect.bottom <= mCountY) {
1730 foundSolution = true;
1731 } else {
1732 currentState.restore();
1733 }
1734
1735 // In either case, we set the occupied array as marked for the location of the views
1736 for (View v: cluster.views) {
1737 CellAndSpan c = currentState.map.get(v);
1738 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, true);
1739 }
1740
1741 return foundSolution;
Adam Cohene0489502012-08-27 15:18:53 -07001742 }
1743
Adam Cohen482ed822012-03-02 14:15:13 -08001744 private boolean addViewsToTempLocation(ArrayList<View> views, Rect rectOccupiedByPotentialDrop,
Adam Cohenf3900c22012-11-16 18:28:11 -08001745 int[] direction, View dragView, ItemConfiguration currentState) {
Adam Cohen482ed822012-03-02 14:15:13 -08001746 if (views.size() == 0) return true;
Adam Cohen482ed822012-03-02 14:15:13 -08001747
Adam Cohen8baab352012-03-20 17:39:21 -07001748 boolean success = false;
Adam Cohen482ed822012-03-02 14:15:13 -08001749 Rect boundingRect = null;
Adam Cohen8baab352012-03-20 17:39:21 -07001750 // We construct a rect which represents the entire group of views passed in
Adam Cohen482ed822012-03-02 14:15:13 -08001751 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001752 CellAndSpan c = currentState.map.get(v);
Adam Cohen482ed822012-03-02 14:15:13 -08001753 if (boundingRect == null) {
Adam Cohen8baab352012-03-20 17:39:21 -07001754 boundingRect = new Rect(c.x, c.y, c.x + c.spanX, c.y + c.spanY);
Adam Cohen482ed822012-03-02 14:15:13 -08001755 } else {
Adam Cohen8baab352012-03-20 17:39:21 -07001756 boundingRect.union(c.x, c.y, c.x + c.spanX, c.y + c.spanY);
Adam Cohen482ed822012-03-02 14:15:13 -08001757 }
1758 }
Adam Cohen8baab352012-03-20 17:39:21 -07001759
Adam Cohen8baab352012-03-20 17:39:21 -07001760 // Mark the occupied state as false for the group of views we want to move.
Adam Cohenf3900c22012-11-16 18:28:11 -08001761 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001762 CellAndSpan c = currentState.map.get(v);
1763 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, false);
1764 }
1765
Adam Cohen47a876d2012-03-19 13:21:41 -07001766 boolean[][] blockOccupied = new boolean[boundingRect.width()][boundingRect.height()];
1767 int top = boundingRect.top;
1768 int left = boundingRect.left;
Adam Cohen8baab352012-03-20 17:39:21 -07001769 // We mark more precisely which parts of the bounding rect are truly occupied, allowing
Adam Cohena56dc102012-07-13 13:41:42 -07001770 // for interlocking.
Adam Cohenf3900c22012-11-16 18:28:11 -08001771 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001772 CellAndSpan c = currentState.map.get(v);
1773 markCellsForView(c.x - left, c.y - top, c.spanX, c.spanY, blockOccupied, true);
Adam Cohen47a876d2012-03-19 13:21:41 -07001774 }
1775
Adam Cohen482ed822012-03-02 14:15:13 -08001776 markCellsForRect(rectOccupiedByPotentialDrop, mTmpOccupied, true);
1777
Adam Cohenf3900c22012-11-16 18:28:11 -08001778 findNearestArea(boundingRect.left, boundingRect.top, boundingRect.width(),
1779 boundingRect.height(), direction, mTmpOccupied, blockOccupied, mTempLocation);
Adam Cohen482ed822012-03-02 14:15:13 -08001780
Adam Cohen8baab352012-03-20 17:39:21 -07001781 // If we successfuly found a location by pushing the block of views, we commit it
Adam Cohen482ed822012-03-02 14:15:13 -08001782 if (mTempLocation[0] >= 0 && mTempLocation[1] >= 0) {
Adam Cohen8baab352012-03-20 17:39:21 -07001783 int deltaX = mTempLocation[0] - boundingRect.left;
1784 int deltaY = mTempLocation[1] - boundingRect.top;
Adam Cohenf3900c22012-11-16 18:28:11 -08001785 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001786 CellAndSpan c = currentState.map.get(v);
1787 c.x += deltaX;
1788 c.y += deltaY;
Adam Cohen482ed822012-03-02 14:15:13 -08001789 }
1790 success = true;
1791 }
Adam Cohen8baab352012-03-20 17:39:21 -07001792
1793 // In either case, we set the occupied array as marked for the location of the views
Adam Cohenf3900c22012-11-16 18:28:11 -08001794 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001795 CellAndSpan c = currentState.map.get(v);
1796 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001797 }
1798 return success;
1799 }
1800
1801 private void markCellsForRect(Rect r, boolean[][] occupied, boolean value) {
1802 markCellsForView(r.left, r.top, r.width(), r.height(), occupied, value);
1803 }
1804
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001805 // This method tries to find a reordering solution which satisfies the push mechanic by trying
1806 // to push items in each of the cardinal directions, in an order based on the direction vector
1807 // passed.
1808 private boolean attemptPushInDirection(ArrayList<View> intersectingViews, Rect occupied,
1809 int[] direction, View ignoreView, ItemConfiguration solution) {
1810 if ((Math.abs(direction[0]) + Math.abs(direction[1])) > 1) {
Winson Chung5f8afe62013-08-12 16:19:28 -07001811 // If the direction vector has two non-zero components, we try pushing
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001812 // separately in each of the components.
1813 int temp = direction[1];
1814 direction[1] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08001815
1816 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001817 ignoreView, solution)) {
1818 return true;
1819 }
1820 direction[1] = temp;
1821 temp = direction[0];
1822 direction[0] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08001823
1824 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001825 ignoreView, solution)) {
1826 return true;
1827 }
1828 // Revert the direction
1829 direction[0] = temp;
1830
1831 // Now we try pushing in each component of the opposite direction
1832 direction[0] *= -1;
1833 direction[1] *= -1;
1834 temp = direction[1];
1835 direction[1] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08001836 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001837 ignoreView, solution)) {
1838 return true;
1839 }
1840
1841 direction[1] = temp;
1842 temp = direction[0];
1843 direction[0] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08001844 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001845 ignoreView, solution)) {
1846 return true;
1847 }
1848 // revert the direction
1849 direction[0] = temp;
1850 direction[0] *= -1;
1851 direction[1] *= -1;
Winson Chung5f8afe62013-08-12 16:19:28 -07001852
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001853 } else {
1854 // If the direction vector has a single non-zero component, we push first in the
1855 // direction of the vector
Adam Cohenf3900c22012-11-16 18:28:11 -08001856 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001857 ignoreView, solution)) {
1858 return true;
1859 }
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001860 // Then we try the opposite direction
1861 direction[0] *= -1;
1862 direction[1] *= -1;
Adam Cohenf3900c22012-11-16 18:28:11 -08001863 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001864 ignoreView, solution)) {
1865 return true;
1866 }
1867 // Switch the direction back
1868 direction[0] *= -1;
1869 direction[1] *= -1;
Winson Chung5f8afe62013-08-12 16:19:28 -07001870
1871 // If we have failed to find a push solution with the above, then we try
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001872 // to find a solution by pushing along the perpendicular axis.
1873
1874 // Swap the components
1875 int temp = direction[1];
1876 direction[1] = direction[0];
1877 direction[0] = temp;
Adam Cohenf3900c22012-11-16 18:28:11 -08001878 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001879 ignoreView, solution)) {
1880 return true;
1881 }
1882
1883 // Then we try the opposite direction
1884 direction[0] *= -1;
1885 direction[1] *= -1;
Adam Cohenf3900c22012-11-16 18:28:11 -08001886 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001887 ignoreView, solution)) {
1888 return true;
1889 }
1890 // Switch the direction back
1891 direction[0] *= -1;
1892 direction[1] *= -1;
1893
1894 // Swap the components back
1895 temp = direction[1];
1896 direction[1] = direction[0];
1897 direction[0] = temp;
1898 }
1899 return false;
1900 }
1901
Adam Cohen482ed822012-03-02 14:15:13 -08001902 private boolean rearrangementExists(int cellX, int cellY, int spanX, int spanY, int[] direction,
Adam Cohen8baab352012-03-20 17:39:21 -07001903 View ignoreView, ItemConfiguration solution) {
Winson Chunge3e03bc2012-05-01 15:10:11 -07001904 // Return early if get invalid cell positions
1905 if (cellX < 0 || cellY < 0) return false;
Adam Cohen482ed822012-03-02 14:15:13 -08001906
Adam Cohen8baab352012-03-20 17:39:21 -07001907 mIntersectingViews.clear();
Adam Cohen482ed822012-03-02 14:15:13 -08001908 mOccupiedRect.set(cellX, cellY, cellX + spanX, cellY + spanY);
Adam Cohen482ed822012-03-02 14:15:13 -08001909
Adam Cohen8baab352012-03-20 17:39:21 -07001910 // Mark the desired location of the view currently being dragged.
Adam Cohen482ed822012-03-02 14:15:13 -08001911 if (ignoreView != null) {
Adam Cohen8baab352012-03-20 17:39:21 -07001912 CellAndSpan c = solution.map.get(ignoreView);
Adam Cohen19f37922012-03-21 11:59:11 -07001913 if (c != null) {
1914 c.x = cellX;
1915 c.y = cellY;
1916 }
Adam Cohen482ed822012-03-02 14:15:13 -08001917 }
Adam Cohen482ed822012-03-02 14:15:13 -08001918 Rect r0 = new Rect(cellX, cellY, cellX + spanX, cellY + spanY);
1919 Rect r1 = new Rect();
Adam Cohen8baab352012-03-20 17:39:21 -07001920 for (View child: solution.map.keySet()) {
Adam Cohen482ed822012-03-02 14:15:13 -08001921 if (child == ignoreView) continue;
Adam Cohen8baab352012-03-20 17:39:21 -07001922 CellAndSpan c = solution.map.get(child);
Adam Cohen482ed822012-03-02 14:15:13 -08001923 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Adam Cohen8baab352012-03-20 17:39:21 -07001924 r1.set(c.x, c.y, c.x + c.spanX, c.y + c.spanY);
Adam Cohen482ed822012-03-02 14:15:13 -08001925 if (Rect.intersects(r0, r1)) {
1926 if (!lp.canReorder) {
1927 return false;
1928 }
1929 mIntersectingViews.add(child);
1930 }
1931 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001932
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001933 solution.intersectingViews = new ArrayList<View>(mIntersectingViews);
1934
Winson Chung5f8afe62013-08-12 16:19:28 -07001935 // First we try to find a solution which respects the push mechanic. That is,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001936 // we try to find a solution such that no displaced item travels through another item
1937 // without also displacing that item.
1938 if (attemptPushInDirection(mIntersectingViews, mOccupiedRect, direction, ignoreView,
Adam Cohen19f37922012-03-21 11:59:11 -07001939 solution)) {
Adam Cohen47a876d2012-03-19 13:21:41 -07001940 return true;
1941 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001942
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001943 // Next we try moving the views as a block, but without requiring the push mechanic.
Adam Cohenf3900c22012-11-16 18:28:11 -08001944 if (addViewsToTempLocation(mIntersectingViews, mOccupiedRect, direction, ignoreView,
Adam Cohen19f37922012-03-21 11:59:11 -07001945 solution)) {
Adam Cohen482ed822012-03-02 14:15:13 -08001946 return true;
1947 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001948
Adam Cohen482ed822012-03-02 14:15:13 -08001949 // Ok, they couldn't move as a block, let's move them individually
1950 for (View v : mIntersectingViews) {
Adam Cohen8baab352012-03-20 17:39:21 -07001951 if (!addViewToTempLocation(v, mOccupiedRect, direction, solution)) {
Adam Cohen482ed822012-03-02 14:15:13 -08001952 return false;
1953 }
1954 }
1955 return true;
1956 }
1957
1958 /*
1959 * Returns a pair (x, y), where x,y are in {-1, 0, 1} corresponding to vector between
1960 * the provided point and the provided cell
1961 */
Adam Cohen47a876d2012-03-19 13:21:41 -07001962 private void computeDirectionVector(float deltaX, float deltaY, int[] result) {
Adam Cohen482ed822012-03-02 14:15:13 -08001963 double angle = Math.atan(((float) deltaY) / deltaX);
1964
1965 result[0] = 0;
1966 result[1] = 0;
1967 if (Math.abs(Math.cos(angle)) > 0.5f) {
1968 result[0] = (int) Math.signum(deltaX);
1969 }
1970 if (Math.abs(Math.sin(angle)) > 0.5f) {
1971 result[1] = (int) Math.signum(deltaY);
1972 }
1973 }
1974
Adam Cohen8baab352012-03-20 17:39:21 -07001975 private void copyOccupiedArray(boolean[][] occupied) {
1976 for (int i = 0; i < mCountX; i++) {
1977 for (int j = 0; j < mCountY; j++) {
1978 occupied[i][j] = mOccupied[i][j];
1979 }
1980 }
1981 }
1982
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001983 private ItemConfiguration findReorderSolution(int pixelX, int pixelY, int minSpanX, int minSpanY,
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001984 int spanX, int spanY, int[] direction, View dragView, boolean decX,
1985 ItemConfiguration solution) {
Adam Cohen8baab352012-03-20 17:39:21 -07001986 // Copy the current state into the solution. This solution will be manipulated as necessary.
1987 copyCurrentStateToSolution(solution, false);
1988 // Copy the current occupied array into the temporary occupied array. This array will be
1989 // manipulated as necessary to find a solution.
1990 copyOccupiedArray(mTmpOccupied);
Adam Cohen482ed822012-03-02 14:15:13 -08001991
1992 // We find the nearest cell into which we would place the dragged item, assuming there's
1993 // nothing in its way.
1994 int result[] = new int[2];
1995 result = findNearestArea(pixelX, pixelY, spanX, spanY, result);
1996
1997 boolean success = false;
1998 // First we try the exact nearest position of the item being dragged,
1999 // we will then want to try to move this around to other neighbouring positions
Adam Cohen8baab352012-03-20 17:39:21 -07002000 success = rearrangementExists(result[0], result[1], spanX, spanY, direction, dragView,
2001 solution);
Adam Cohen482ed822012-03-02 14:15:13 -08002002
2003 if (!success) {
2004 // We try shrinking the widget down to size in an alternating pattern, shrink 1 in
2005 // x, then 1 in y etc.
2006 if (spanX > minSpanX && (minSpanY == spanY || decX)) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002007 return findReorderSolution(pixelX, pixelY, minSpanX, minSpanY, spanX - 1, spanY,
2008 direction, dragView, false, solution);
Adam Cohen482ed822012-03-02 14:15:13 -08002009 } else if (spanY > minSpanY) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002010 return findReorderSolution(pixelX, pixelY, minSpanX, minSpanY, spanX, spanY - 1,
2011 direction, dragView, true, solution);
Adam Cohen482ed822012-03-02 14:15:13 -08002012 }
2013 solution.isSolution = false;
2014 } else {
2015 solution.isSolution = true;
2016 solution.dragViewX = result[0];
2017 solution.dragViewY = result[1];
2018 solution.dragViewSpanX = spanX;
2019 solution.dragViewSpanY = spanY;
Adam Cohen482ed822012-03-02 14:15:13 -08002020 }
2021 return solution;
2022 }
2023
2024 private void copyCurrentStateToSolution(ItemConfiguration solution, boolean temp) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002025 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08002026 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002027 View child = mShortcutsAndWidgets.getChildAt(i);
Adam Cohen482ed822012-03-02 14:15:13 -08002028 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Adam Cohen8baab352012-03-20 17:39:21 -07002029 CellAndSpan c;
Adam Cohen482ed822012-03-02 14:15:13 -08002030 if (temp) {
Adam Cohen8baab352012-03-20 17:39:21 -07002031 c = new CellAndSpan(lp.tmpCellX, lp.tmpCellY, lp.cellHSpan, lp.cellVSpan);
Adam Cohen482ed822012-03-02 14:15:13 -08002032 } else {
Adam Cohen8baab352012-03-20 17:39:21 -07002033 c = new CellAndSpan(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan);
Adam Cohen482ed822012-03-02 14:15:13 -08002034 }
Adam Cohenf3900c22012-11-16 18:28:11 -08002035 solution.add(child, c);
Adam Cohen482ed822012-03-02 14:15:13 -08002036 }
2037 }
2038
2039 private void copySolutionToTempState(ItemConfiguration solution, View dragView) {
2040 for (int i = 0; i < mCountX; i++) {
2041 for (int j = 0; j < mCountY; j++) {
2042 mTmpOccupied[i][j] = false;
2043 }
2044 }
2045
Michael Jurkaa52570f2012-03-20 03:18:20 -07002046 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08002047 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002048 View child = mShortcutsAndWidgets.getChildAt(i);
Adam Cohen482ed822012-03-02 14:15:13 -08002049 if (child == dragView) continue;
2050 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Adam Cohen8baab352012-03-20 17:39:21 -07002051 CellAndSpan c = solution.map.get(child);
2052 if (c != null) {
2053 lp.tmpCellX = c.x;
2054 lp.tmpCellY = c.y;
2055 lp.cellHSpan = c.spanX;
2056 lp.cellVSpan = c.spanY;
2057 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, true);
Adam Cohen482ed822012-03-02 14:15:13 -08002058 }
2059 }
2060 markCellsForView(solution.dragViewX, solution.dragViewY, solution.dragViewSpanX,
2061 solution.dragViewSpanY, mTmpOccupied, true);
2062 }
2063
2064 private void animateItemsToSolution(ItemConfiguration solution, View dragView, boolean
2065 commitDragView) {
2066
2067 boolean[][] occupied = DESTRUCTIVE_REORDER ? mOccupied : mTmpOccupied;
2068 for (int i = 0; i < mCountX; i++) {
2069 for (int j = 0; j < mCountY; j++) {
2070 occupied[i][j] = false;
2071 }
2072 }
2073
Michael Jurkaa52570f2012-03-20 03:18:20 -07002074 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08002075 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002076 View child = mShortcutsAndWidgets.getChildAt(i);
Adam Cohen482ed822012-03-02 14:15:13 -08002077 if (child == dragView) continue;
Adam Cohen8baab352012-03-20 17:39:21 -07002078 CellAndSpan c = solution.map.get(child);
2079 if (c != null) {
Adam Cohen19f37922012-03-21 11:59:11 -07002080 animateChildToPosition(child, c.x, c.y, REORDER_ANIMATION_DURATION, 0,
2081 DESTRUCTIVE_REORDER, false);
Adam Cohen8baab352012-03-20 17:39:21 -07002082 markCellsForView(c.x, c.y, c.spanX, c.spanY, occupied, true);
Adam Cohen482ed822012-03-02 14:15:13 -08002083 }
2084 }
2085 if (commitDragView) {
2086 markCellsForView(solution.dragViewX, solution.dragViewY, solution.dragViewSpanX,
2087 solution.dragViewSpanY, occupied, true);
2088 }
2089 }
2090
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002091
2092 // This method starts or changes the reorder preview animations
2093 private void beginOrAdjustReorderPreviewAnimations(ItemConfiguration solution,
2094 View dragView, int delay, int mode) {
Adam Cohen19f37922012-03-21 11:59:11 -07002095 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen19f37922012-03-21 11:59:11 -07002096 for (int i = 0; i < childCount; i++) {
2097 View child = mShortcutsAndWidgets.getChildAt(i);
2098 if (child == dragView) continue;
2099 CellAndSpan c = solution.map.get(child);
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002100 boolean skip = mode == ReorderPreviewAnimation.MODE_HINT && solution.intersectingViews
2101 != null && !solution.intersectingViews.contains(child);
2102
Adam Cohen19f37922012-03-21 11:59:11 -07002103 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002104 if (c != null && !skip) {
2105 ReorderPreviewAnimation rha = new ReorderPreviewAnimation(child, mode, lp.cellX,
2106 lp.cellY, c.x, c.y, c.spanX, c.spanY);
Adam Cohend024f982012-05-23 18:26:45 -07002107 rha.animate();
Adam Cohen19f37922012-03-21 11:59:11 -07002108 }
2109 }
2110 }
2111
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002112 // Class which represents the reorder preview animations. These animations show that an item is
Adam Cohen19f37922012-03-21 11:59:11 -07002113 // in a temporary state, and hint at where the item will return to.
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002114 class ReorderPreviewAnimation {
Adam Cohen19f37922012-03-21 11:59:11 -07002115 View child;
Adam Cohend024f982012-05-23 18:26:45 -07002116 float finalDeltaX;
2117 float finalDeltaY;
2118 float initDeltaX;
2119 float initDeltaY;
2120 float finalScale;
2121 float initScale;
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002122 int mode;
2123 boolean repeating = false;
2124 private static final int PREVIEW_DURATION = 300;
2125 private static final int HINT_DURATION = Workspace.REORDER_TIMEOUT;
2126
2127 public static final int MODE_HINT = 0;
2128 public static final int MODE_PREVIEW = 1;
2129
Adam Cohene7587d22012-05-24 18:50:02 -07002130 Animator a;
Adam Cohen19f37922012-03-21 11:59:11 -07002131
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002132 public ReorderPreviewAnimation(View child, int mode, int cellX0, int cellY0, int cellX1,
2133 int cellY1, int spanX, int spanY) {
Adam Cohen19f37922012-03-21 11:59:11 -07002134 regionToCenterPoint(cellX0, cellY0, spanX, spanY, mTmpPoint);
2135 final int x0 = mTmpPoint[0];
2136 final int y0 = mTmpPoint[1];
2137 regionToCenterPoint(cellX1, cellY1, spanX, spanY, mTmpPoint);
2138 final int x1 = mTmpPoint[0];
2139 final int y1 = mTmpPoint[1];
2140 final int dX = x1 - x0;
2141 final int dY = y1 - y0;
Adam Cohend024f982012-05-23 18:26:45 -07002142 finalDeltaX = 0;
2143 finalDeltaY = 0;
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002144 int dir = mode == MODE_HINT ? -1 : 1;
Adam Cohen19f37922012-03-21 11:59:11 -07002145 if (dX == dY && dX == 0) {
2146 } else {
2147 if (dY == 0) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002148 finalDeltaX = - dir * Math.signum(dX) * mReorderPreviewAnimationMagnitude;
Adam Cohen19f37922012-03-21 11:59:11 -07002149 } else if (dX == 0) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002150 finalDeltaY = - dir * Math.signum(dY) * mReorderPreviewAnimationMagnitude;
Adam Cohen19f37922012-03-21 11:59:11 -07002151 } else {
2152 double angle = Math.atan( (float) (dY) / dX);
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002153 finalDeltaX = (int) (- dir * Math.signum(dX) *
2154 Math.abs(Math.cos(angle) * mReorderPreviewAnimationMagnitude));
2155 finalDeltaY = (int) (- dir * Math.signum(dY) *
2156 Math.abs(Math.sin(angle) * mReorderPreviewAnimationMagnitude));
Adam Cohen19f37922012-03-21 11:59:11 -07002157 }
2158 }
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002159 this.mode = mode;
Adam Cohend024f982012-05-23 18:26:45 -07002160 initDeltaX = child.getTranslationX();
2161 initDeltaY = child.getTranslationY();
Adam Cohen307fe232012-08-16 17:55:58 -07002162 finalScale = getChildrenScale() - 4.0f / child.getWidth();
Adam Cohend024f982012-05-23 18:26:45 -07002163 initScale = child.getScaleX();
Adam Cohen19f37922012-03-21 11:59:11 -07002164 this.child = child;
2165 }
2166
Adam Cohend024f982012-05-23 18:26:45 -07002167 void animate() {
Adam Cohen19f37922012-03-21 11:59:11 -07002168 if (mShakeAnimators.containsKey(child)) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002169 ReorderPreviewAnimation oldAnimation = mShakeAnimators.get(child);
Adam Cohend024f982012-05-23 18:26:45 -07002170 oldAnimation.cancel();
Adam Cohen19f37922012-03-21 11:59:11 -07002171 mShakeAnimators.remove(child);
Adam Cohene7587d22012-05-24 18:50:02 -07002172 if (finalDeltaX == 0 && finalDeltaY == 0) {
2173 completeAnimationImmediately();
2174 return;
2175 }
Adam Cohen19f37922012-03-21 11:59:11 -07002176 }
Adam Cohend024f982012-05-23 18:26:45 -07002177 if (finalDeltaX == 0 && finalDeltaY == 0) {
Adam Cohen19f37922012-03-21 11:59:11 -07002178 return;
2179 }
Michael Jurkaf1ad6082013-03-13 12:55:46 +01002180 ValueAnimator va = LauncherAnimUtils.ofFloat(child, 0f, 1f);
Adam Cohene7587d22012-05-24 18:50:02 -07002181 a = va;
Tony Wickham489fc562015-09-02 14:45:39 -07002182
2183 // Animations are disabled in power save mode, causing the repeated animation to jump
2184 // spastically between beginning and end states. Since this looks bad, we don't repeat
2185 // the animation in power save mode.
2186 PowerManager powerManager = (PowerManager) getContext()
2187 .getSystemService(Context.POWER_SERVICE);
2188 boolean powerSaverOn = Utilities.ATLEAST_LOLLIPOP && powerManager.isPowerSaveMode();
2189 if (!powerSaverOn) {
2190 va.setRepeatMode(ValueAnimator.REVERSE);
2191 va.setRepeatCount(ValueAnimator.INFINITE);
2192 }
2193
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002194 va.setDuration(mode == MODE_HINT ? HINT_DURATION : PREVIEW_DURATION);
Adam Cohend024f982012-05-23 18:26:45 -07002195 va.setStartDelay((int) (Math.random() * 60));
Adam Cohen19f37922012-03-21 11:59:11 -07002196 va.addUpdateListener(new AnimatorUpdateListener() {
2197 @Override
2198 public void onAnimationUpdate(ValueAnimator animation) {
2199 float r = ((Float) animation.getAnimatedValue()).floatValue();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002200 float r1 = (mode == MODE_HINT && repeating) ? 1.0f : r;
2201 float x = r1 * finalDeltaX + (1 - r1) * initDeltaX;
2202 float y = r1 * finalDeltaY + (1 - r1) * initDeltaY;
Adam Cohen19f37922012-03-21 11:59:11 -07002203 child.setTranslationX(x);
2204 child.setTranslationY(y);
Adam Cohend024f982012-05-23 18:26:45 -07002205 float s = r * finalScale + (1 - r) * initScale;
Brandon Keely50e6e562012-05-08 16:28:49 -07002206 child.setScaleX(s);
2207 child.setScaleY(s);
Adam Cohen19f37922012-03-21 11:59:11 -07002208 }
2209 });
2210 va.addListener(new AnimatorListenerAdapter() {
2211 public void onAnimationRepeat(Animator animation) {
Adam Cohen19f37922012-03-21 11:59:11 -07002212 // We make sure to end only after a full period
Adam Cohend024f982012-05-23 18:26:45 -07002213 initDeltaX = 0;
2214 initDeltaY = 0;
Adam Cohen307fe232012-08-16 17:55:58 -07002215 initScale = getChildrenScale();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002216 repeating = true;
Adam Cohen19f37922012-03-21 11:59:11 -07002217 }
2218 });
Adam Cohen19f37922012-03-21 11:59:11 -07002219 mShakeAnimators.put(child, this);
2220 va.start();
2221 }
2222
Adam Cohend024f982012-05-23 18:26:45 -07002223 private void cancel() {
Adam Cohene7587d22012-05-24 18:50:02 -07002224 if (a != null) {
2225 a.cancel();
2226 }
Adam Cohen19f37922012-03-21 11:59:11 -07002227 }
Adam Cohene7587d22012-05-24 18:50:02 -07002228
Adam Cohen091440a2015-03-18 14:16:05 -07002229 @Thunk void completeAnimationImmediately() {
Adam Cohene7587d22012-05-24 18:50:02 -07002230 if (a != null) {
2231 a.cancel();
2232 }
Brandon Keely50e6e562012-05-08 16:28:49 -07002233
Michael Jurka2ecf9952012-06-18 12:52:28 -07002234 AnimatorSet s = LauncherAnimUtils.createAnimatorSet();
Adam Cohene7587d22012-05-24 18:50:02 -07002235 a = s;
Brandon Keely50e6e562012-05-08 16:28:49 -07002236 s.playTogether(
Adam Cohen307fe232012-08-16 17:55:58 -07002237 LauncherAnimUtils.ofFloat(child, "scaleX", getChildrenScale()),
2238 LauncherAnimUtils.ofFloat(child, "scaleY", getChildrenScale()),
Michael Jurka2ecf9952012-06-18 12:52:28 -07002239 LauncherAnimUtils.ofFloat(child, "translationX", 0f),
2240 LauncherAnimUtils.ofFloat(child, "translationY", 0f)
Brandon Keely50e6e562012-05-08 16:28:49 -07002241 );
2242 s.setDuration(REORDER_ANIMATION_DURATION);
2243 s.setInterpolator(new android.view.animation.DecelerateInterpolator(1.5f));
2244 s.start();
2245 }
Adam Cohen19f37922012-03-21 11:59:11 -07002246 }
2247
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002248 private void completeAndClearReorderPreviewAnimations() {
2249 for (ReorderPreviewAnimation a: mShakeAnimators.values()) {
Brandon Keely50e6e562012-05-08 16:28:49 -07002250 a.completeAnimationImmediately();
Adam Cohen19f37922012-03-21 11:59:11 -07002251 }
2252 mShakeAnimators.clear();
2253 }
2254
Adam Cohen482ed822012-03-02 14:15:13 -08002255 private void commitTempPlacement() {
2256 for (int i = 0; i < mCountX; i++) {
2257 for (int j = 0; j < mCountY; j++) {
2258 mOccupied[i][j] = mTmpOccupied[i][j];
2259 }
2260 }
Michael Jurkaa52570f2012-03-20 03:18:20 -07002261 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08002262 for (int i = 0; i < childCount; i++) {
Adam Cohenea889a22012-03-27 16:45:39 -07002263 View child = mShortcutsAndWidgets.getChildAt(i);
2264 LayoutParams lp = (LayoutParams) child.getLayoutParams();
2265 ItemInfo info = (ItemInfo) child.getTag();
Adam Cohen2acce882012-03-28 19:03:19 -07002266 // We do a null check here because the item info can be null in the case of the
2267 // AllApps button in the hotseat.
2268 if (info != null) {
Adam Cohen487f7dd2012-06-28 18:12:10 -07002269 if (info.cellX != lp.tmpCellX || info.cellY != lp.tmpCellY ||
2270 info.spanX != lp.cellHSpan || info.spanY != lp.cellVSpan) {
2271 info.requiresDbUpdate = true;
2272 }
Adam Cohen2acce882012-03-28 19:03:19 -07002273 info.cellX = lp.cellX = lp.tmpCellX;
2274 info.cellY = lp.cellY = lp.tmpCellY;
Adam Cohenbebf0422012-04-11 18:06:28 -07002275 info.spanX = lp.cellHSpan;
2276 info.spanY = lp.cellVSpan;
Adam Cohen2acce882012-03-28 19:03:19 -07002277 }
Adam Cohen482ed822012-03-02 14:15:13 -08002278 }
Adam Cohen2acce882012-03-28 19:03:19 -07002279 mLauncher.getWorkspace().updateItemLocationsInDatabase(this);
Adam Cohen482ed822012-03-02 14:15:13 -08002280 }
2281
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002282 private void setUseTempCoords(boolean useTempCoords) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002283 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08002284 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002285 LayoutParams lp = (LayoutParams) mShortcutsAndWidgets.getChildAt(i).getLayoutParams();
Adam Cohen482ed822012-03-02 14:15:13 -08002286 lp.useTmpCoords = useTempCoords;
2287 }
2288 }
2289
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002290 private ItemConfiguration findConfigurationNoShuffle(int pixelX, int pixelY, int minSpanX, int minSpanY,
Adam Cohen482ed822012-03-02 14:15:13 -08002291 int spanX, int spanY, View dragView, ItemConfiguration solution) {
2292 int[] result = new int[2];
2293 int[] resultSpan = new int[2];
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002294 findNearestVacantArea(pixelX, pixelY, minSpanX, minSpanY, spanX, spanY, result,
Adam Cohen482ed822012-03-02 14:15:13 -08002295 resultSpan);
2296 if (result[0] >= 0 && result[1] >= 0) {
2297 copyCurrentStateToSolution(solution, false);
2298 solution.dragViewX = result[0];
2299 solution.dragViewY = result[1];
2300 solution.dragViewSpanX = resultSpan[0];
2301 solution.dragViewSpanY = resultSpan[1];
2302 solution.isSolution = true;
2303 } else {
2304 solution.isSolution = false;
2305 }
2306 return solution;
2307 }
2308
2309 public void prepareChildForDrag(View child) {
2310 markCellsAsUnoccupiedForView(child);
Adam Cohen482ed822012-03-02 14:15:13 -08002311 }
2312
Adam Cohen19f37922012-03-21 11:59:11 -07002313 /* This seems like it should be obvious and straight-forward, but when the direction vector
2314 needs to match with the notion of the dragView pushing other views, we have to employ
2315 a slightly more subtle notion of the direction vector. The question is what two points is
2316 the vector between? The center of the dragView and its desired destination? Not quite, as
2317 this doesn't necessarily coincide with the interaction of the dragView and items occupying
2318 those cells. Instead we use some heuristics to often lock the vector to up, down, left
2319 or right, which helps make pushing feel right.
2320 */
2321 private void getDirectionVectorForDrop(int dragViewCenterX, int dragViewCenterY, int spanX,
2322 int spanY, View dragView, int[] resultDirection) {
2323 int[] targetDestination = new int[2];
2324
2325 findNearestArea(dragViewCenterX, dragViewCenterY, spanX, spanY, targetDestination);
2326 Rect dragRect = new Rect();
2327 regionToRect(targetDestination[0], targetDestination[1], spanX, spanY, dragRect);
2328 dragRect.offset(dragViewCenterX - dragRect.centerX(), dragViewCenterY - dragRect.centerY());
2329
2330 Rect dropRegionRect = new Rect();
2331 getViewsIntersectingRegion(targetDestination[0], targetDestination[1], spanX, spanY,
2332 dragView, dropRegionRect, mIntersectingViews);
2333
2334 int dropRegionSpanX = dropRegionRect.width();
2335 int dropRegionSpanY = dropRegionRect.height();
2336
2337 regionToRect(dropRegionRect.left, dropRegionRect.top, dropRegionRect.width(),
2338 dropRegionRect.height(), dropRegionRect);
2339
2340 int deltaX = (dropRegionRect.centerX() - dragViewCenterX) / spanX;
2341 int deltaY = (dropRegionRect.centerY() - dragViewCenterY) / spanY;
2342
2343 if (dropRegionSpanX == mCountX || spanX == mCountX) {
2344 deltaX = 0;
2345 }
2346 if (dropRegionSpanY == mCountY || spanY == mCountY) {
2347 deltaY = 0;
2348 }
2349
2350 if (deltaX == 0 && deltaY == 0) {
2351 // No idea what to do, give a random direction.
2352 resultDirection[0] = 1;
2353 resultDirection[1] = 0;
2354 } else {
2355 computeDirectionVector(deltaX, deltaY, resultDirection);
2356 }
2357 }
2358
2359 // For a given cell and span, fetch the set of views intersecting the region.
2360 private void getViewsIntersectingRegion(int cellX, int cellY, int spanX, int spanY,
2361 View dragView, Rect boundingRect, ArrayList<View> intersectingViews) {
2362 if (boundingRect != null) {
2363 boundingRect.set(cellX, cellY, cellX + spanX, cellY + spanY);
2364 }
2365 intersectingViews.clear();
2366 Rect r0 = new Rect(cellX, cellY, cellX + spanX, cellY + spanY);
2367 Rect r1 = new Rect();
2368 final int count = mShortcutsAndWidgets.getChildCount();
2369 for (int i = 0; i < count; i++) {
2370 View child = mShortcutsAndWidgets.getChildAt(i);
2371 if (child == dragView) continue;
2372 LayoutParams lp = (LayoutParams) child.getLayoutParams();
2373 r1.set(lp.cellX, lp.cellY, lp.cellX + lp.cellHSpan, lp.cellY + lp.cellVSpan);
2374 if (Rect.intersects(r0, r1)) {
2375 mIntersectingViews.add(child);
2376 if (boundingRect != null) {
2377 boundingRect.union(r1);
2378 }
2379 }
2380 }
2381 }
2382
2383 boolean isNearestDropLocationOccupied(int pixelX, int pixelY, int spanX, int spanY,
2384 View dragView, int[] result) {
2385 result = findNearestArea(pixelX, pixelY, spanX, spanY, result);
2386 getViewsIntersectingRegion(result[0], result[1], spanX, spanY, dragView, null,
2387 mIntersectingViews);
2388 return !mIntersectingViews.isEmpty();
2389 }
2390
2391 void revertTempState() {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002392 completeAndClearReorderPreviewAnimations();
2393 if (isItemPlacementDirty() && !DESTRUCTIVE_REORDER) {
2394 final int count = mShortcutsAndWidgets.getChildCount();
2395 for (int i = 0; i < count; i++) {
2396 View child = mShortcutsAndWidgets.getChildAt(i);
2397 LayoutParams lp = (LayoutParams) child.getLayoutParams();
2398 if (lp.tmpCellX != lp.cellX || lp.tmpCellY != lp.cellY) {
2399 lp.tmpCellX = lp.cellX;
2400 lp.tmpCellY = lp.cellY;
2401 animateChildToPosition(child, lp.cellX, lp.cellY, REORDER_ANIMATION_DURATION,
2402 0, false, false);
2403 }
Adam Cohen19f37922012-03-21 11:59:11 -07002404 }
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002405 setItemPlacementDirty(false);
Adam Cohen19f37922012-03-21 11:59:11 -07002406 }
Adam Cohen19f37922012-03-21 11:59:11 -07002407 }
2408
Adam Cohenbebf0422012-04-11 18:06:28 -07002409 boolean createAreaForResize(int cellX, int cellY, int spanX, int spanY,
2410 View dragView, int[] direction, boolean commit) {
2411 int[] pixelXY = new int[2];
2412 regionToCenterPoint(cellX, cellY, spanX, spanY, pixelXY);
2413
2414 // First we determine if things have moved enough to cause a different layout
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002415 ItemConfiguration swapSolution = findReorderSolution(pixelXY[0], pixelXY[1], spanX, spanY,
Adam Cohenbebf0422012-04-11 18:06:28 -07002416 spanX, spanY, direction, dragView, true, new ItemConfiguration());
2417
2418 setUseTempCoords(true);
2419 if (swapSolution != null && swapSolution.isSolution) {
2420 // If we're just testing for a possible location (MODE_ACCEPT_DROP), we don't bother
2421 // committing anything or animating anything as we just want to determine if a solution
2422 // exists
2423 copySolutionToTempState(swapSolution, dragView);
2424 setItemPlacementDirty(true);
2425 animateItemsToSolution(swapSolution, dragView, commit);
2426
2427 if (commit) {
2428 commitTempPlacement();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002429 completeAndClearReorderPreviewAnimations();
Adam Cohenbebf0422012-04-11 18:06:28 -07002430 setItemPlacementDirty(false);
2431 } else {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002432 beginOrAdjustReorderPreviewAnimations(swapSolution, dragView,
2433 REORDER_ANIMATION_DURATION, ReorderPreviewAnimation.MODE_PREVIEW);
Adam Cohenbebf0422012-04-11 18:06:28 -07002434 }
2435 mShortcutsAndWidgets.requestLayout();
2436 }
2437 return swapSolution.isSolution;
2438 }
2439
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002440 int[] performReorder(int pixelX, int pixelY, int minSpanX, int minSpanY, int spanX, int spanY,
Adam Cohen482ed822012-03-02 14:15:13 -08002441 View dragView, int[] result, int resultSpan[], int mode) {
Adam Cohen482ed822012-03-02 14:15:13 -08002442 // First we determine if things have moved enough to cause a different layout
Adam Cohen47a876d2012-03-19 13:21:41 -07002443 result = findNearestArea(pixelX, pixelY, spanX, spanY, result);
Adam Cohen482ed822012-03-02 14:15:13 -08002444
2445 if (resultSpan == null) {
2446 resultSpan = new int[2];
2447 }
2448
Adam Cohen19f37922012-03-21 11:59:11 -07002449 // When we are checking drop validity or actually dropping, we don't recompute the
2450 // direction vector, since we want the solution to match the preview, and it's possible
2451 // that the exact position of the item has changed to result in a new reordering outcome.
Adam Cohenb209e632012-03-27 17:09:36 -07002452 if ((mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL || mode == MODE_ACCEPT_DROP)
2453 && mPreviousReorderDirection[0] != INVALID_DIRECTION) {
Adam Cohen19f37922012-03-21 11:59:11 -07002454 mDirectionVector[0] = mPreviousReorderDirection[0];
2455 mDirectionVector[1] = mPreviousReorderDirection[1];
2456 // We reset this vector after drop
Adam Cohenb209e632012-03-27 17:09:36 -07002457 if (mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL) {
2458 mPreviousReorderDirection[0] = INVALID_DIRECTION;
2459 mPreviousReorderDirection[1] = INVALID_DIRECTION;
Adam Cohen19f37922012-03-21 11:59:11 -07002460 }
2461 } else {
2462 getDirectionVectorForDrop(pixelX, pixelY, spanX, spanY, dragView, mDirectionVector);
2463 mPreviousReorderDirection[0] = mDirectionVector[0];
2464 mPreviousReorderDirection[1] = mDirectionVector[1];
2465 }
2466
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002467 // Find a solution involving pushing / displacing any items in the way
2468 ItemConfiguration swapSolution = findReorderSolution(pixelX, pixelY, minSpanX, minSpanY,
Adam Cohen482ed822012-03-02 14:15:13 -08002469 spanX, spanY, mDirectionVector, dragView, true, new ItemConfiguration());
2470
2471 // We attempt the approach which doesn't shuffle views at all
2472 ItemConfiguration noShuffleSolution = findConfigurationNoShuffle(pixelX, pixelY, minSpanX,
2473 minSpanY, spanX, spanY, dragView, new ItemConfiguration());
2474
2475 ItemConfiguration finalSolution = null;
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002476
2477 // If the reorder solution requires resizing (shrinking) the item being dropped, we instead
2478 // favor a solution in which the item is not resized, but
Adam Cohen482ed822012-03-02 14:15:13 -08002479 if (swapSolution.isSolution && swapSolution.area() >= noShuffleSolution.area()) {
2480 finalSolution = swapSolution;
2481 } else if (noShuffleSolution.isSolution) {
2482 finalSolution = noShuffleSolution;
2483 }
2484
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002485 if (mode == MODE_SHOW_REORDER_HINT) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002486 if (finalSolution != null) {
Adam Cohenfe692872013-12-11 14:47:23 -08002487 beginOrAdjustReorderPreviewAnimations(finalSolution, dragView, 0,
2488 ReorderPreviewAnimation.MODE_HINT);
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002489 result[0] = finalSolution.dragViewX;
2490 result[1] = finalSolution.dragViewY;
2491 resultSpan[0] = finalSolution.dragViewSpanX;
2492 resultSpan[1] = finalSolution.dragViewSpanY;
2493 } else {
2494 result[0] = result[1] = resultSpan[0] = resultSpan[1] = -1;
2495 }
2496 return result;
2497 }
2498
Adam Cohen482ed822012-03-02 14:15:13 -08002499 boolean foundSolution = true;
2500 if (!DESTRUCTIVE_REORDER) {
2501 setUseTempCoords(true);
2502 }
2503
2504 if (finalSolution != null) {
2505 result[0] = finalSolution.dragViewX;
2506 result[1] = finalSolution.dragViewY;
2507 resultSpan[0] = finalSolution.dragViewSpanX;
2508 resultSpan[1] = finalSolution.dragViewSpanY;
2509
2510 // If we're just testing for a possible location (MODE_ACCEPT_DROP), we don't bother
2511 // committing anything or animating anything as we just want to determine if a solution
2512 // exists
2513 if (mode == MODE_DRAG_OVER || mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL) {
2514 if (!DESTRUCTIVE_REORDER) {
2515 copySolutionToTempState(finalSolution, dragView);
2516 }
2517 setItemPlacementDirty(true);
2518 animateItemsToSolution(finalSolution, dragView, mode == MODE_ON_DROP);
2519
Adam Cohen19f37922012-03-21 11:59:11 -07002520 if (!DESTRUCTIVE_REORDER &&
2521 (mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL)) {
Adam Cohen482ed822012-03-02 14:15:13 -08002522 commitTempPlacement();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002523 completeAndClearReorderPreviewAnimations();
Adam Cohen19f37922012-03-21 11:59:11 -07002524 setItemPlacementDirty(false);
2525 } else {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002526 beginOrAdjustReorderPreviewAnimations(finalSolution, dragView,
2527 REORDER_ANIMATION_DURATION, ReorderPreviewAnimation.MODE_PREVIEW);
Adam Cohen482ed822012-03-02 14:15:13 -08002528 }
2529 }
2530 } else {
2531 foundSolution = false;
2532 result[0] = result[1] = resultSpan[0] = resultSpan[1] = -1;
2533 }
2534
2535 if ((mode == MODE_ON_DROP || !foundSolution) && !DESTRUCTIVE_REORDER) {
2536 setUseTempCoords(false);
2537 }
Adam Cohen482ed822012-03-02 14:15:13 -08002538
Michael Jurkaa52570f2012-03-20 03:18:20 -07002539 mShortcutsAndWidgets.requestLayout();
Adam Cohen482ed822012-03-02 14:15:13 -08002540 return result;
2541 }
2542
Adam Cohen19f37922012-03-21 11:59:11 -07002543 void setItemPlacementDirty(boolean dirty) {
2544 mItemPlacementDirty = dirty;
Adam Cohen482ed822012-03-02 14:15:13 -08002545 }
Adam Cohen19f37922012-03-21 11:59:11 -07002546 boolean isItemPlacementDirty() {
2547 return mItemPlacementDirty;
Adam Cohen482ed822012-03-02 14:15:13 -08002548 }
2549
Adam Cohen091440a2015-03-18 14:16:05 -07002550 @Thunk class ItemConfiguration {
Adam Cohen8baab352012-03-20 17:39:21 -07002551 HashMap<View, CellAndSpan> map = new HashMap<View, CellAndSpan>();
Adam Cohenf3900c22012-11-16 18:28:11 -08002552 private HashMap<View, CellAndSpan> savedMap = new HashMap<View, CellAndSpan>();
2553 ArrayList<View> sortedViews = new ArrayList<View>();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002554 ArrayList<View> intersectingViews;
Adam Cohen482ed822012-03-02 14:15:13 -08002555 boolean isSolution = false;
2556 int dragViewX, dragViewY, dragViewSpanX, dragViewSpanY;
2557
Adam Cohenf3900c22012-11-16 18:28:11 -08002558 void save() {
2559 // Copy current state into savedMap
2560 for (View v: map.keySet()) {
2561 map.get(v).copy(savedMap.get(v));
2562 }
2563 }
2564
2565 void restore() {
2566 // Restore current state from savedMap
2567 for (View v: savedMap.keySet()) {
2568 savedMap.get(v).copy(map.get(v));
2569 }
2570 }
2571
2572 void add(View v, CellAndSpan cs) {
2573 map.put(v, cs);
2574 savedMap.put(v, new CellAndSpan());
2575 sortedViews.add(v);
2576 }
2577
Adam Cohen482ed822012-03-02 14:15:13 -08002578 int area() {
2579 return dragViewSpanX * dragViewSpanY;
2580 }
Adam Cohen8baab352012-03-20 17:39:21 -07002581 }
2582
2583 private class CellAndSpan {
2584 int x, y;
2585 int spanX, spanY;
2586
Adam Cohenf3900c22012-11-16 18:28:11 -08002587 public CellAndSpan() {
2588 }
2589
2590 public void copy(CellAndSpan copy) {
2591 copy.x = x;
2592 copy.y = y;
2593 copy.spanX = spanX;
2594 copy.spanY = spanY;
2595 }
2596
Adam Cohen8baab352012-03-20 17:39:21 -07002597 public CellAndSpan(int x, int y, int spanX, int spanY) {
2598 this.x = x;
2599 this.y = y;
2600 this.spanX = spanX;
2601 this.spanY = spanY;
Adam Cohen482ed822012-03-02 14:15:13 -08002602 }
Adam Cohenf3900c22012-11-16 18:28:11 -08002603
2604 public String toString() {
2605 return "(" + x + ", " + y + ": " + spanX + ", " + spanY + ")";
2606 }
2607
Adam Cohen482ed822012-03-02 14:15:13 -08002608 }
2609
Adam Cohendf035382011-04-11 17:22:04 -07002610 /**
Adam Cohendf035382011-04-11 17:22:04 -07002611 * Find a starting cell position that will fit the given bounds nearest the requested
2612 * cell location. Uses Euclidean distance to score multiple vacant areas.
2613 *
2614 * @param pixelX The X location at which you want to search for a vacant area.
2615 * @param pixelY The Y location at which you want to search for a vacant area.
2616 * @param spanX Horizontal span of the object.
2617 * @param spanY Vertical span of the object.
2618 * @param ignoreView Considers space occupied by this view as unoccupied
2619 * @param result Previously returned value to possibly recycle.
2620 * @return The X, Y cell of a vacant area that can contain this object,
2621 * nearest the requested location.
2622 */
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002623 int[] findNearestArea(int pixelX, int pixelY, int spanX, int spanY, int[] result) {
2624 return findNearestArea(pixelX, pixelY, spanX, spanY, spanX, spanY, false, result, null);
Adam Cohendf035382011-04-11 17:22:04 -07002625 }
2626
Michael Jurka0280c3b2010-09-17 15:00:07 -07002627 boolean existsEmptyCell() {
2628 return findCellForSpan(null, 1, 1);
2629 }
2630
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002631 /**
Michael Jurka0280c3b2010-09-17 15:00:07 -07002632 * Finds the upper-left coordinate of the first rectangle in the grid that can
2633 * hold a cell of the specified dimensions. If intersectX and intersectY are not -1,
2634 * then this method will only return coordinates for rectangles that contain the cell
2635 * (intersectX, intersectY)
2636 *
2637 * @param cellXY The array that will contain the position of a vacant cell if such a cell
2638 * can be found.
2639 * @param spanX The horizontal span of the cell we want to find.
2640 * @param spanY The vertical span of the cell we want to find.
2641 *
2642 * @return True if a vacant cell of the specified dimension was found, false otherwise.
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002643 */
Hyunyoung Song3f471442015-04-08 19:01:34 -07002644 public boolean findCellForSpan(int[] cellXY, int spanX, int spanY) {
Michael Jurka28750fb2010-09-24 17:43:49 -07002645 boolean foundCell = false;
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002646 final int endX = mCountX - (spanX - 1);
2647 final int endY = mCountY - (spanY - 1);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002648
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002649 for (int y = 0; y < endY && !foundCell; y++) {
2650 inner:
2651 for (int x = 0; x < endX; x++) {
2652 for (int i = 0; i < spanX; i++) {
2653 for (int j = 0; j < spanY; j++) {
2654 if (mOccupied[x + i][y + j]) {
2655 // small optimization: we can skip to after the column we just found
2656 // an occupied cell
2657 x += i;
2658 continue inner;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002659 }
2660 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002661 }
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002662 if (cellXY != null) {
2663 cellXY[0] = x;
2664 cellXY[1] = y;
2665 }
2666 foundCell = true;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002667 break;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002668 }
2669 }
2670
Michael Jurka28750fb2010-09-24 17:43:49 -07002671 return foundCell;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002672 }
2673
2674 /**
Winson Chungc07918d2011-07-01 15:35:26 -07002675 * A drag event has begun over this layout.
2676 * It may have begun over this layout (in which case onDragChild is called first),
2677 * or it may have begun on another layout.
2678 */
2679 void onDragEnter() {
Winson Chungc07918d2011-07-01 15:35:26 -07002680 mDragging = true;
2681 }
2682
2683 /**
Michael Jurka0280c3b2010-09-17 15:00:07 -07002684 * Called when drag has left this CellLayout or has been completed (successfully or not)
2685 */
2686 void onDragExit() {
Joe Onorato4be866d2010-10-10 11:26:02 -07002687 // This can actually be called when we aren't in a drag, e.g. when adding a new
2688 // item to this layout via the customize drawer.
2689 // Guard against that case.
2690 if (mDragging) {
2691 mDragging = false;
Patrick Dubroyde7658b2010-09-27 11:15:43 -07002692 }
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07002693
2694 // Invalidate the drag data
Adam Cohend41fbf52012-02-16 23:53:59 -08002695 mDragCell[0] = mDragCell[1] = -1;
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07002696 mDragOutlineAnims[mDragOutlineCurrent].animateOut();
2697 mDragOutlineCurrent = (mDragOutlineCurrent + 1) % mDragOutlineAnims.length;
Adam Cohen19f37922012-03-21 11:59:11 -07002698 revertTempState();
Michael Jurka33945b22010-12-21 18:19:38 -08002699 setIsDragOverlapping(false);
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002700 }
2701
2702 /**
Winson Chungaafa03c2010-06-11 17:34:16 -07002703 * Mark a child as having been dropped.
Patrick Dubroyde7658b2010-09-27 11:15:43 -07002704 * At the beginning of the drag operation, the child may have been on another
Patrick Dubroyce34a972010-10-19 10:34:32 -07002705 * screen, but it is re-parented before this method is called.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002706 *
2707 * @param child The child that is being dropped
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002708 */
Adam Cohen716b51e2011-06-30 12:09:54 -07002709 void onDropChild(View child) {
Romain Guyd94533d2009-08-17 10:01:15 -07002710 if (child != null) {
2711 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Romain Guy84f296c2009-11-04 15:00:44 -08002712 lp.dropped = true;
Romain Guyd94533d2009-08-17 10:01:15 -07002713 child.requestLayout();
Tony Wickham1cdb6d02015-09-17 11:08:27 -07002714 markCellsAsOccupiedForView(child);
Romain Guyd94533d2009-08-17 10:01:15 -07002715 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002716 }
2717
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002718 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002719 * Computes a bounding rectangle for a range of cells
Winson Chungaafa03c2010-06-11 17:34:16 -07002720 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002721 * @param cellX X coordinate of upper left corner expressed as a cell position
2722 * @param cellY Y coordinate of upper left corner expressed as a cell position
Winson Chungaafa03c2010-06-11 17:34:16 -07002723 * @param cellHSpan Width in cells
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002724 * @param cellVSpan Height in cells
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002725 * @param resultRect Rect into which to put the results
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002726 */
Adam Cohend41fbf52012-02-16 23:53:59 -08002727 public void cellToRect(int cellX, int cellY, int cellHSpan, int cellVSpan, Rect resultRect) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002728 final int cellWidth = mCellWidth;
2729 final int cellHeight = mCellHeight;
2730 final int widthGap = mWidthGap;
2731 final int heightGap = mHeightGap;
Winson Chungaafa03c2010-06-11 17:34:16 -07002732
Winson Chung4b825dcd2011-06-19 12:41:22 -07002733 final int hStartPadding = getPaddingLeft();
2734 final int vStartPadding = getPaddingTop();
Winson Chungaafa03c2010-06-11 17:34:16 -07002735
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002736 int width = cellHSpan * cellWidth + ((cellHSpan - 1) * widthGap);
2737 int height = cellVSpan * cellHeight + ((cellVSpan - 1) * heightGap);
2738
2739 int x = hStartPadding + cellX * (cellWidth + widthGap);
2740 int y = vStartPadding + cellY * (cellHeight + heightGap);
Winson Chungaafa03c2010-06-11 17:34:16 -07002741
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002742 resultRect.set(x, y, x + width, y + height);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002743 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002744
Michael Jurka0280c3b2010-09-17 15:00:07 -07002745 private void clearOccupiedCells() {
2746 for (int x = 0; x < mCountX; x++) {
2747 for (int y = 0; y < mCountY; y++) {
2748 mOccupied[x][y] = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002749 }
2750 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002751 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002752
Adam Cohend4844c32011-02-18 19:25:06 -08002753 public void markCellsAsOccupiedForView(View view) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002754 if (view == null || view.getParent() != mShortcutsAndWidgets) return;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002755 LayoutParams lp = (LayoutParams) view.getLayoutParams();
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002756 markCellsForView(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan, mOccupied, true);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002757 }
2758
Adam Cohend4844c32011-02-18 19:25:06 -08002759 public void markCellsAsUnoccupiedForView(View view) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002760 if (view == null || view.getParent() != mShortcutsAndWidgets) return;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002761 LayoutParams lp = (LayoutParams) view.getLayoutParams();
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002762 markCellsForView(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan, mOccupied, false);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002763 }
2764
Adam Cohen482ed822012-03-02 14:15:13 -08002765 private void markCellsForView(int cellX, int cellY, int spanX, int spanY, boolean[][] occupied,
2766 boolean value) {
2767 if (cellX < 0 || cellY < 0) return;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002768 for (int x = cellX; x < cellX + spanX && x < mCountX; x++) {
2769 for (int y = cellY; y < cellY + spanY && y < mCountY; y++) {
Adam Cohen482ed822012-03-02 14:15:13 -08002770 occupied[x][y] = value;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002771 }
2772 }
2773 }
2774
Adam Cohen2801caf2011-05-13 20:57:39 -07002775 public int getDesiredWidth() {
Michael Jurka8b805b12012-04-18 14:23:14 -07002776 return getPaddingLeft() + getPaddingRight() + (mCountX * mCellWidth) +
Adam Cohen2801caf2011-05-13 20:57:39 -07002777 (Math.max((mCountX - 1), 0) * mWidthGap);
2778 }
2779
2780 public int getDesiredHeight() {
Michael Jurka8b805b12012-04-18 14:23:14 -07002781 return getPaddingTop() + getPaddingBottom() + (mCountY * mCellHeight) +
Adam Cohen2801caf2011-05-13 20:57:39 -07002782 (Math.max((mCountY - 1), 0) * mHeightGap);
2783 }
2784
Michael Jurka66d72172011-04-12 16:29:25 -07002785 public boolean isOccupied(int x, int y) {
2786 if (x < mCountX && y < mCountY) {
2787 return mOccupied[x][y];
2788 } else {
2789 throw new RuntimeException("Position exceeds the bound of this CellLayout");
2790 }
2791 }
2792
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002793 @Override
2794 public ViewGroup.LayoutParams generateLayoutParams(AttributeSet attrs) {
2795 return new CellLayout.LayoutParams(getContext(), attrs);
2796 }
2797
2798 @Override
2799 protected boolean checkLayoutParams(ViewGroup.LayoutParams p) {
2800 return p instanceof CellLayout.LayoutParams;
2801 }
2802
2803 @Override
2804 protected ViewGroup.LayoutParams generateLayoutParams(ViewGroup.LayoutParams p) {
2805 return new CellLayout.LayoutParams(p);
2806 }
2807
2808 public static class LayoutParams extends ViewGroup.MarginLayoutParams {
2809 /**
2810 * Horizontal location of the item in the grid.
2811 */
2812 @ViewDebug.ExportedProperty
2813 public int cellX;
2814
2815 /**
2816 * Vertical location of the item in the grid.
2817 */
2818 @ViewDebug.ExportedProperty
2819 public int cellY;
2820
2821 /**
Adam Cohen482ed822012-03-02 14:15:13 -08002822 * Temporary horizontal location of the item in the grid during reorder
2823 */
2824 public int tmpCellX;
2825
2826 /**
2827 * Temporary vertical location of the item in the grid during reorder
2828 */
2829 public int tmpCellY;
2830
2831 /**
2832 * Indicates that the temporary coordinates should be used to layout the items
2833 */
2834 public boolean useTmpCoords;
2835
2836 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002837 * Number of cells spanned horizontally by the item.
2838 */
2839 @ViewDebug.ExportedProperty
2840 public int cellHSpan;
2841
2842 /**
2843 * Number of cells spanned vertically by the item.
2844 */
2845 @ViewDebug.ExportedProperty
2846 public int cellVSpan;
Winson Chungaafa03c2010-06-11 17:34:16 -07002847
Adam Cohen1b607ed2011-03-03 17:26:50 -08002848 /**
2849 * Indicates whether the item will set its x, y, width and height parameters freely,
2850 * or whether these will be computed based on cellX, cellY, cellHSpan and cellVSpan.
2851 */
Adam Cohend4844c32011-02-18 19:25:06 -08002852 public boolean isLockedToGrid = true;
2853
Adam Cohen482ed822012-03-02 14:15:13 -08002854 /**
Adam Cohenec40b2b2013-07-23 15:52:40 -07002855 * Indicates that this item should use the full extents of its parent.
2856 */
2857 public boolean isFullscreen = false;
2858
2859 /**
Adam Cohen482ed822012-03-02 14:15:13 -08002860 * Indicates whether this item can be reordered. Always true except in the case of the
2861 * the AllApps button.
2862 */
2863 public boolean canReorder = true;
2864
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002865 // X coordinate of the view in the layout.
2866 @ViewDebug.ExportedProperty
2867 int x;
2868 // Y coordinate of the view in the layout.
2869 @ViewDebug.ExportedProperty
2870 int y;
2871
Romain Guy84f296c2009-11-04 15:00:44 -08002872 boolean dropped;
Romain Guyfcb9e712009-10-02 16:06:52 -07002873
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002874 public LayoutParams(Context c, AttributeSet attrs) {
2875 super(c, attrs);
2876 cellHSpan = 1;
2877 cellVSpan = 1;
2878 }
2879
2880 public LayoutParams(ViewGroup.LayoutParams source) {
2881 super(source);
2882 cellHSpan = 1;
2883 cellVSpan = 1;
2884 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002885
2886 public LayoutParams(LayoutParams source) {
2887 super(source);
2888 this.cellX = source.cellX;
2889 this.cellY = source.cellY;
2890 this.cellHSpan = source.cellHSpan;
2891 this.cellVSpan = source.cellVSpan;
2892 }
2893
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002894 public LayoutParams(int cellX, int cellY, int cellHSpan, int cellVSpan) {
Romain Guy8f19cdd2010-01-08 15:07:00 -08002895 super(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002896 this.cellX = cellX;
2897 this.cellY = cellY;
2898 this.cellHSpan = cellHSpan;
2899 this.cellVSpan = cellVSpan;
2900 }
2901
Adam Cohen2374abf2013-04-16 14:56:57 -07002902 public void setup(int cellWidth, int cellHeight, int widthGap, int heightGap,
2903 boolean invertHorizontally, int colCount) {
Adam Cohend4844c32011-02-18 19:25:06 -08002904 if (isLockedToGrid) {
2905 final int myCellHSpan = cellHSpan;
2906 final int myCellVSpan = cellVSpan;
Adam Cohen2374abf2013-04-16 14:56:57 -07002907 int myCellX = useTmpCoords ? tmpCellX : cellX;
2908 int myCellY = useTmpCoords ? tmpCellY : cellY;
2909
2910 if (invertHorizontally) {
2911 myCellX = colCount - myCellX - cellHSpan;
2912 }
Adam Cohen1b607ed2011-03-03 17:26:50 -08002913
Adam Cohend4844c32011-02-18 19:25:06 -08002914 width = myCellHSpan * cellWidth + ((myCellHSpan - 1) * widthGap) -
2915 leftMargin - rightMargin;
2916 height = myCellVSpan * cellHeight + ((myCellVSpan - 1) * heightGap) -
2917 topMargin - bottomMargin;
Winson Chungeecf02d2012-03-02 17:14:58 -08002918 x = (int) (myCellX * (cellWidth + widthGap) + leftMargin);
2919 y = (int) (myCellY * (cellHeight + heightGap) + topMargin);
Adam Cohend4844c32011-02-18 19:25:06 -08002920 }
2921 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002922
Winson Chungaafa03c2010-06-11 17:34:16 -07002923 public String toString() {
2924 return "(" + this.cellX + ", " + this.cellY + ")";
2925 }
Adam Cohen7f4eabe2011-04-21 16:19:16 -07002926
2927 public void setWidth(int width) {
2928 this.width = width;
2929 }
2930
2931 public int getWidth() {
2932 return width;
2933 }
2934
2935 public void setHeight(int height) {
2936 this.height = height;
2937 }
2938
2939 public int getHeight() {
2940 return height;
2941 }
2942
2943 public void setX(int x) {
2944 this.x = x;
2945 }
2946
2947 public int getX() {
2948 return x;
2949 }
2950
2951 public void setY(int y) {
2952 this.y = y;
2953 }
2954
2955 public int getY() {
2956 return y;
2957 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002958 }
2959
Michael Jurka0280c3b2010-09-17 15:00:07 -07002960 // This class stores info for two purposes:
2961 // 1. When dragging items (mDragInfo in Workspace), we store the View, its cellX & cellY,
2962 // its spanX, spanY, and the screen it is on
2963 // 2. When long clicking on an empty cell in a CellLayout, we save information about the
2964 // cellX and cellY coordinates and which page was clicked. We then set this as a tag on
2965 // the CellLayout that was long clicked
Sunny Goyal83a8f042015-05-19 12:52:12 -07002966 public static final class CellInfo {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002967 View cell;
Michael Jurkaa63c4522010-08-19 13:52:27 -07002968 int cellX = -1;
2969 int cellY = -1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002970 int spanX;
2971 int spanY;
Adam Cohendcd297f2013-06-18 13:13:40 -07002972 long screenId;
Winson Chung3d503fb2011-07-13 17:25:49 -07002973 long container;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002974
Sunny Goyal83a8f042015-05-19 12:52:12 -07002975 public CellInfo(View v, ItemInfo info) {
Adam Cohene0aaa0d2014-05-12 12:44:22 -07002976 cell = v;
2977 cellX = info.cellX;
2978 cellY = info.cellY;
2979 spanX = info.spanX;
2980 spanY = info.spanY;
2981 screenId = info.screenId;
2982 container = info.container;
2983 }
2984
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002985 @Override
2986 public String toString() {
Winson Chungaafa03c2010-06-11 17:34:16 -07002987 return "Cell[view=" + (cell == null ? "null" : cell.getClass())
2988 + ", x=" + cellX + ", y=" + cellY + "]";
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002989 }
2990 }
Michael Jurkad771c962011-08-09 15:00:48 -07002991
Sunny Goyala9116722015-04-29 13:55:58 -07002992 public boolean findVacantCell(int spanX, int spanY, int[] outXY) {
2993 return Utilities.findVacantCell(outXY, spanX, spanY, mCountX, mCountY, mOccupied);
2994 }
Sunny Goyal9ca9c132015-04-29 14:57:22 -07002995
2996 public boolean isRegionVacant(int x, int y, int spanX, int spanY) {
2997 int x2 = x + spanX - 1;
2998 int y2 = y + spanY - 1;
2999 if (x < 0 || y < 0 || x2 >= mCountX || y2 >= mCountY) {
3000 return false;
3001 }
3002 for (int i = x; i <= x2; i++) {
3003 for (int j = y; j <= y2; j++) {
3004 if (mOccupied[i][j]) {
3005 return false;
3006 }
3007 }
3008 }
3009
3010 return true;
3011 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003012}