blob: 5832b9f0d9421beaa807bd4ebcdfda05ca52c928 [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;
Chet Haase00397b12010-10-07 11:13:10 -070021import android.animation.TimeInterpolator;
Patrick Dubroyde7658b2010-09-27 11:15:43 -070022import android.animation.ValueAnimator;
23import android.animation.ValueAnimator.AnimatorUpdateListener;
Adam Cohenc9735cf2015-01-23 16:11:55 -080024import android.annotation.TargetApi;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080025import android.content.Context;
Joe Onorato79e56262009-09-21 15:23:04 -040026import android.content.res.Resources;
Joe Onorato4be866d2010-10-10 11:26:02 -070027import android.graphics.Bitmap;
Winson Chungaafa03c2010-06-11 17:34:16 -070028import android.graphics.Canvas;
Andrew Flynn0dca1ec2012-02-29 13:33:22 -080029import android.graphics.Color;
Joe Onorato4be866d2010-10-10 11:26:02 -070030import android.graphics.Paint;
Patrick Dubroyde7658b2010-09-27 11:15:43 -070031import android.graphics.Point;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080032import android.graphics.Rect;
Adam Cohen482ed822012-03-02 14:15:13 -080033import android.graphics.drawable.ColorDrawable;
Patrick Dubroy6569f2c2010-07-12 14:25:18 -070034import android.graphics.drawable.Drawable;
Tony Wickhame0c33232016-02-08 11:37:04 -080035import android.graphics.drawable.GradientDrawable;
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;
Adam Cohenc9735cf2015-01-23 16:11:55 -080039import android.support.v4.view.ViewCompat;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080040import android.util.AttributeSet;
Joe Onorato4be866d2010-10-10 11:26:02 -070041import android.util.Log;
Adam Cohen1462de32012-07-24 22:34:36 -070042import android.util.SparseArray;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080043import android.view.MotionEvent;
44import android.view.View;
45import android.view.ViewDebug;
46import android.view.ViewGroup;
Adam Cohenc9735cf2015-01-23 16:11:55 -080047import android.view.accessibility.AccessibilityEvent;
Winson Chung150fbab2010-09-29 17:14:26 -070048import android.view.animation.DecelerateInterpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080049
Sunny Goyal4b6eb262015-05-14 19:24:40 -070050import com.android.launcher3.BubbleTextView.BubbleTextShadowHandler;
Sunny Goyalaa8ef112015-06-12 20:04:41 -070051import com.android.launcher3.LauncherSettings.Favorites;
Sunny Goyale9b651e2015-04-24 11:44:51 -070052import com.android.launcher3.accessibility.DragAndDropAccessibilityDelegate;
53import com.android.launcher3.accessibility.FolderAccessibilityHelper;
54import com.android.launcher3.accessibility.WorkspaceAccessibilityHelper;
Tony Wickhame0c33232016-02-08 11:37:04 -080055import com.android.launcher3.config.FeatureFlags;
Sunny Goyal6c56c682015-07-16 14:09:05 -070056import com.android.launcher3.config.ProviderConfig;
Adam Cohenf9c184a2016-01-15 16:47:43 -080057import com.android.launcher3.folder.FolderIcon;
58import com.android.launcher3.folder.FolderIcon.FolderRingAnimator;
Sunny Goyale2fd14b2015-08-27 17:45:46 -070059import com.android.launcher3.util.ParcelableSparseArray;
Adam Cohen091440a2015-03-18 14:16:05 -070060import com.android.launcher3.util.Thunk;
Patrick Dubroy8e58e912010-10-14 13:21:48 -070061
Adam Cohen69ce2e52011-07-03 19:25:21 -070062import java.util.ArrayList;
Adam Cohenc0dcf592011-06-01 15:30:43 -070063import java.util.Arrays;
Adam Cohenf3900c22012-11-16 18:28:11 -080064import java.util.Collections;
65import java.util.Comparator;
Adam Cohenbfbfd262011-06-13 16:55:12 -070066import java.util.HashMap;
Adam Cohend41fbf52012-02-16 23:53:59 -080067import java.util.Stack;
Adam Cohenc0dcf592011-06-01 15:30:43 -070068
Sunny Goyal4b6eb262015-05-14 19:24:40 -070069public class CellLayout extends ViewGroup implements BubbleTextShadowHandler {
Sunny Goyale9b651e2015-04-24 11:44:51 -070070 public static final int WORKSPACE_ACCESSIBILITY_DRAG = 2;
71 public static final int FOLDER_ACCESSIBILITY_DRAG = 1;
72
Tony Wickhama0628cc2015-10-14 15:23:04 -070073 private static final String TAG = "CellLayout";
74 private static final boolean LOGD = false;
Winson Chungaafa03c2010-06-11 17:34:16 -070075
Adam Cohen2acce882012-03-28 19:03:19 -070076 private Launcher mLauncher;
Sunny Goyal4ffec482016-02-09 11:28:52 -080077 @ViewDebug.ExportedProperty(category = "launcher")
Adam Cohen091440a2015-03-18 14:16:05 -070078 @Thunk int mCellWidth;
Sunny Goyal4ffec482016-02-09 11:28:52 -080079 @ViewDebug.ExportedProperty(category = "launcher")
Adam Cohen091440a2015-03-18 14:16:05 -070080 @Thunk int mCellHeight;
Winson Chung11a1a532013-09-13 11:14:45 -070081 private int mFixedCellWidth;
82 private int mFixedCellHeight;
Winson Chungaafa03c2010-06-11 17:34:16 -070083
Sunny Goyal4ffec482016-02-09 11:28:52 -080084 @ViewDebug.ExportedProperty(category = "launcher")
Adam Cohen091440a2015-03-18 14:16:05 -070085 @Thunk int mCountX;
Sunny Goyal4ffec482016-02-09 11:28:52 -080086 @ViewDebug.ExportedProperty(category = "launcher")
Adam Cohen091440a2015-03-18 14:16:05 -070087 @Thunk int mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080088
Adam Cohen234c4cd2011-07-17 21:03:04 -070089 private int mOriginalWidthGap;
90 private int mOriginalHeightGap;
Sunny Goyal4ffec482016-02-09 11:28:52 -080091 @ViewDebug.ExportedProperty(category = "launcher")
Adam Cohen091440a2015-03-18 14:16:05 -070092 @Thunk int mWidthGap;
Sunny Goyal4ffec482016-02-09 11:28:52 -080093 @ViewDebug.ExportedProperty(category = "launcher")
Adam Cohen091440a2015-03-18 14:16:05 -070094 @Thunk int mHeightGap;
Winson Chung4b825dcd2011-06-19 12:41:22 -070095 private int mMaxGap;
Adam Cohen917e3882013-10-31 15:03:35 -070096 private boolean mDropPending = false;
Adam Cohenc50438c2014-08-19 17:43:05 -070097 private boolean mIsDragTarget = true;
Sunny Goyale2fd14b2015-08-27 17:45:46 -070098 private boolean mJailContent = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080099
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700100 // These are temporary variables to prevent having to allocate a new object just to
101 // return an (x, y) value from helper functions. Do NOT use them to maintain other state.
Adam Cohen091440a2015-03-18 14:16:05 -0700102 @Thunk final int[] mTmpPoint = new int[2];
Sunny Goyal2805e632015-05-20 15:35:32 -0700103 @Thunk final int[] mTempLocation = new int[2];
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700104
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800105 boolean[][] mOccupied;
Adam Cohen482ed822012-03-02 14:15:13 -0800106 boolean[][] mTmpOccupied;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800107
Michael Jurkadee05892010-07-27 10:01:56 -0700108 private OnTouchListener mInterceptTouchListener;
Mady Melloref044dd2015-06-02 15:35:07 -0700109 private StylusEventHelper mStylusEventHelper;
Michael Jurkadee05892010-07-27 10:01:56 -0700110
Adam Cohen69ce2e52011-07-03 19:25:21 -0700111 private ArrayList<FolderRingAnimator> mFolderOuterRings = new ArrayList<FolderRingAnimator>();
Adam Cohenc51934b2011-07-26 21:07:43 -0700112 private int[] mFolderLeaveBehindCell = {-1, -1};
Adam Cohen69ce2e52011-07-03 19:25:21 -0700113
Michael Jurka5f1c5092010-09-03 14:15:02 -0700114 private float mBackgroundAlpha;
Adam Cohenf34bab52010-09-30 14:11:56 -0700115
Sunny Goyal2805e632015-05-20 15:35:32 -0700116 private static final int BACKGROUND_ACTIVATE_DURATION = 120;
117 private final TransitionDrawable mBackground;
118
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700119 // These values allow a fixed measurement to be set on the CellLayout.
120 private int mFixedWidth = -1;
121 private int mFixedHeight = -1;
122
Michael Jurka33945b22010-12-21 18:19:38 -0800123 // If we're actively dragging something over this screen, mIsDragOverlapping is true
124 private boolean mIsDragOverlapping = false;
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700125
Winson Chung150fbab2010-09-29 17:14:26 -0700126 // These arrays are used to implement the drag visualization on x-large screens.
Joe Onorato4be866d2010-10-10 11:26:02 -0700127 // They are used as circular arrays, indexed by mDragOutlineCurrent.
Adam Cohen091440a2015-03-18 14:16:05 -0700128 @Thunk Rect[] mDragOutlines = new Rect[4];
129 @Thunk float[] mDragOutlineAlphas = new float[mDragOutlines.length];
Joe Onorato4be866d2010-10-10 11:26:02 -0700130 private InterruptibleInOutAnimator[] mDragOutlineAnims =
131 new InterruptibleInOutAnimator[mDragOutlines.length];
Winson Chung150fbab2010-09-29 17:14:26 -0700132
133 // Used as an index into the above 3 arrays; indicates which is the most current value.
Joe Onorato4be866d2010-10-10 11:26:02 -0700134 private int mDragOutlineCurrent = 0;
Patrick Dubroy8e58e912010-10-14 13:21:48 -0700135 private final Paint mDragOutlinePaint = new Paint();
Winson Chung150fbab2010-09-29 17:14:26 -0700136
Sunny Goyal4fe5a372015-05-14 19:55:10 -0700137 private final ClickShadowView mTouchFeedbackView;
Patrick Dubroy96864c32011-03-10 17:17:23 -0800138
Sunny Goyal316490e2015-06-02 09:38:28 -0700139 @Thunk HashMap<CellLayout.LayoutParams, Animator> mReorderAnimators = new HashMap<>();
140 @Thunk HashMap<View, ReorderPreviewAnimation> mShakeAnimators = new HashMap<>();
Adam Cohen19f37922012-03-21 11:59:11 -0700141
142 private boolean mItemPlacementDirty = false;
Adam Cohenbfbfd262011-06-13 16:55:12 -0700143
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700144 // When a drag operation is in progress, holds the nearest cell to the touch point
145 private final int[] mDragCell = new int[2];
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800146
Joe Onorato4be866d2010-10-10 11:26:02 -0700147 private boolean mDragging = false;
148
Patrick Dubroyce34a972010-10-19 10:34:32 -0700149 private TimeInterpolator mEaseOutInterpolator;
Michael Jurkaa52570f2012-03-20 03:18:20 -0700150 private ShortcutAndWidgetContainer mShortcutsAndWidgets;
Patrick Dubroyce34a972010-10-19 10:34:32 -0700151
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800152 private boolean mIsHotseat = false;
Adam Cohen307fe232012-08-16 17:55:58 -0700153 private float mHotseatScale = 1f;
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800154
Adam Cohenfa3c58f2013-12-06 16:10:55 -0800155 public static final int MODE_SHOW_REORDER_HINT = 0;
156 public static final int MODE_DRAG_OVER = 1;
157 public static final int MODE_ON_DROP = 2;
158 public static final int MODE_ON_DROP_EXTERNAL = 3;
159 public static final int MODE_ACCEPT_DROP = 4;
Adam Cohen19f37922012-03-21 11:59:11 -0700160 private static final boolean DESTRUCTIVE_REORDER = false;
Adam Cohen482ed822012-03-02 14:15:13 -0800161 private static final boolean DEBUG_VISUALIZE_OCCUPIED = false;
162
Adam Cohenfa3c58f2013-12-06 16:10:55 -0800163 private static final float REORDER_PREVIEW_MAGNITUDE = 0.12f;
Adam Cohen19f37922012-03-21 11:59:11 -0700164 private static final int REORDER_ANIMATION_DURATION = 150;
Adam Cohen091440a2015-03-18 14:16:05 -0700165 @Thunk float mReorderPreviewAnimationMagnitude;
Adam Cohen19f37922012-03-21 11:59:11 -0700166
Adam Cohen482ed822012-03-02 14:15:13 -0800167 private ArrayList<View> mIntersectingViews = new ArrayList<View>();
168 private Rect mOccupiedRect = new Rect();
169 private int[] mDirectionVector = new int[2];
Adam Cohen19f37922012-03-21 11:59:11 -0700170 int[] mPreviousReorderDirection = new int[2];
Adam Cohenb209e632012-03-27 17:09:36 -0700171 private static final int INVALID_DIRECTION = -100;
Adam Cohen482ed822012-03-02 14:15:13 -0800172
Sunny Goyal2805e632015-05-20 15:35:32 -0700173 private final Rect mTempRect = new Rect();
Winson Chung3a6e7f32013-10-09 15:50:52 -0700174
Michael Jurkaca993832012-06-29 15:17:04 -0700175 private final static Paint sPaint = new Paint();
Romain Guy8a0bff52012-05-06 13:14:33 -0700176
Adam Cohenc9735cf2015-01-23 16:11:55 -0800177 // Related to accessible drag and drop
Sunny Goyale9b651e2015-04-24 11:44:51 -0700178 private DragAndDropAccessibilityDelegate mTouchHelper;
Adam Cohenc9735cf2015-01-23 16:11:55 -0800179 private boolean mUseTouchHelper = false;
Adam Cohenc9735cf2015-01-23 16:11:55 -0800180
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800181 public CellLayout(Context context) {
182 this(context, null);
183 }
184
185 public CellLayout(Context context, AttributeSet attrs) {
186 this(context, attrs, 0);
187 }
188
189 public CellLayout(Context context, AttributeSet attrs, int defStyle) {
190 super(context, attrs, defStyle);
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700191
192 // A ViewGroup usually does not draw, but CellLayout needs to draw a rectangle to show
193 // the user where a dragged item will land when dropped.
194 setWillNotDraw(false);
Romain Guyce3cbd12013-02-25 15:00:36 -0800195 setClipToPadding(false);
Adam Cohen2acce882012-03-28 19:03:19 -0700196 mLauncher = (Launcher) context;
Michael Jurkaa63c4522010-08-19 13:52:27 -0700197
Adam Cohen2e6da152015-05-06 11:42:25 -0700198 DeviceProfile grid = mLauncher.getDeviceProfile();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800199
Winson Chung11a1a532013-09-13 11:14:45 -0700200 mCellWidth = mCellHeight = -1;
Nilesh Agrawal5f7099a2014-01-02 15:54:57 -0800201 mFixedCellWidth = mFixedCellHeight = -1;
Winson Chung5f8afe62013-08-12 16:19:28 -0700202 mWidthGap = mOriginalWidthGap = 0;
203 mHeightGap = mOriginalHeightGap = 0;
204 mMaxGap = Integer.MAX_VALUE;
Adam Cohen2e6da152015-05-06 11:42:25 -0700205 mCountX = (int) grid.inv.numColumns;
206 mCountY = (int) grid.inv.numRows;
Michael Jurka0280c3b2010-09-17 15:00:07 -0700207 mOccupied = new boolean[mCountX][mCountY];
Adam Cohen482ed822012-03-02 14:15:13 -0800208 mTmpOccupied = new boolean[mCountX][mCountY];
Adam Cohen5b53f292012-03-29 14:30:35 -0700209 mPreviousReorderDirection[0] = INVALID_DIRECTION;
210 mPreviousReorderDirection[1] = INVALID_DIRECTION;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800211
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800212 setAlwaysDrawnWithCacheEnabled(false);
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700213 final Resources res = getResources();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700214 mHotseatScale = (float) grid.hotseatIconSizePx / grid.iconSizePx;
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700215
Tony Wickhame0c33232016-02-08 11:37:04 -0800216 mBackground = (TransitionDrawable) res.getDrawable(
217 FeatureFlags.LAUNCHER3_LEGACY_WORKSPACE_DND ? R.drawable.bg_screenpanel
218 : R.drawable.bg_celllayout);
Sunny Goyal2805e632015-05-20 15:35:32 -0700219 mBackground.setCallback(this);
Winson Chunge8f1d042015-07-31 12:39:57 -0700220 mBackground.setAlpha((int) (mBackgroundAlpha * 255));
Michael Jurka33945b22010-12-21 18:19:38 -0800221
Adam Cohenfa3c58f2013-12-06 16:10:55 -0800222 mReorderPreviewAnimationMagnitude = (REORDER_PREVIEW_MAGNITUDE *
Winson Chung5f8afe62013-08-12 16:19:28 -0700223 grid.iconSizePx);
Adam Cohen19f37922012-03-21 11:59:11 -0700224
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700225 // Initialize the data structures used for the drag visualization.
Patrick Dubroyce34a972010-10-19 10:34:32 -0700226 mEaseOutInterpolator = new DecelerateInterpolator(2.5f); // Quint ease out
Winson Chungb8c69f32011-10-19 21:36:08 -0700227 mDragCell[0] = mDragCell[1] = -1;
Joe Onorato4be866d2010-10-10 11:26:02 -0700228 for (int i = 0; i < mDragOutlines.length; i++) {
Adam Cohend41fbf52012-02-16 23:53:59 -0800229 mDragOutlines[i] = new Rect(-1, -1, -1, -1);
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700230 }
231
232 // When dragging things around the home screens, we show a green outline of
233 // where the item will land. The outlines gradually fade out, leaving a trail
234 // behind the drag path.
235 // Set up all the animations that are used to implement this fading.
236 final int duration = res.getInteger(R.integer.config_dragOutlineFadeTime);
Chet Haase472b2812010-10-14 07:02:04 -0700237 final float fromAlphaValue = 0;
238 final float toAlphaValue = (float)res.getInteger(R.integer.config_dragOutlineMaxAlpha);
Joe Onorato4be866d2010-10-10 11:26:02 -0700239
Patrick Dubroy8e58e912010-10-14 13:21:48 -0700240 Arrays.fill(mDragOutlineAlphas, fromAlphaValue);
Joe Onorato4be866d2010-10-10 11:26:02 -0700241
242 for (int i = 0; i < mDragOutlineAnims.length; i++) {
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700243 final InterruptibleInOutAnimator anim =
Michael Jurkaf1ad6082013-03-13 12:55:46 +0100244 new InterruptibleInOutAnimator(this, duration, fromAlphaValue, toAlphaValue);
Patrick Dubroyce34a972010-10-19 10:34:32 -0700245 anim.getAnimator().setInterpolator(mEaseOutInterpolator);
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700246 final int thisIndex = i;
Chet Haase472b2812010-10-14 07:02:04 -0700247 anim.getAnimator().addUpdateListener(new AnimatorUpdateListener() {
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700248 public void onAnimationUpdate(ValueAnimator animation) {
Joe Onorato4be866d2010-10-10 11:26:02 -0700249 final Bitmap outline = (Bitmap)anim.getTag();
250
251 // If an animation is started and then stopped very quickly, we can still
252 // get spurious updates we've cleared the tag. Guard against this.
253 if (outline == null) {
Tony Wickhama0628cc2015-10-14 15:23:04 -0700254 if (LOGD) {
Patrick Dubroyfe6bd872010-10-13 17:32:10 -0700255 Object val = animation.getAnimatedValue();
256 Log.d(TAG, "anim " + thisIndex + " update: " + val +
257 ", isStopped " + anim.isStopped());
258 }
Joe Onorato4be866d2010-10-10 11:26:02 -0700259 // Try to prevent it from continuing to run
260 animation.cancel();
261 } else {
Chet Haase472b2812010-10-14 07:02:04 -0700262 mDragOutlineAlphas[thisIndex] = (Float) animation.getAnimatedValue();
Adam Cohend41fbf52012-02-16 23:53:59 -0800263 CellLayout.this.invalidate(mDragOutlines[thisIndex]);
Joe Onorato4be866d2010-10-10 11:26:02 -0700264 }
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700265 }
266 });
Joe Onorato4be866d2010-10-10 11:26:02 -0700267 // The animation holds a reference to the drag outline bitmap as long is it's
268 // running. This way the bitmap can be GCed when the animations are complete.
Chet Haase472b2812010-10-14 07:02:04 -0700269 anim.getAnimator().addListener(new AnimatorListenerAdapter() {
Michael Jurka3c4c20f2010-10-28 15:36:06 -0700270 @Override
Joe Onorato4be866d2010-10-10 11:26:02 -0700271 public void onAnimationEnd(Animator animation) {
Chet Haase472b2812010-10-14 07:02:04 -0700272 if ((Float) ((ValueAnimator) animation).getAnimatedValue() == 0f) {
Joe Onorato4be866d2010-10-10 11:26:02 -0700273 anim.setTag(null);
274 }
275 }
276 });
277 mDragOutlineAnims[i] = anim;
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700278 }
Patrick Dubroyce34a972010-10-19 10:34:32 -0700279
Michael Jurkaa52570f2012-03-20 03:18:20 -0700280 mShortcutsAndWidgets = new ShortcutAndWidgetContainer(context);
Adam Cohen2374abf2013-04-16 14:56:57 -0700281 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap, mHeightGap,
Winson Chung5f8afe62013-08-12 16:19:28 -0700282 mCountX, mCountY);
Adam Cohen2374abf2013-04-16 14:56:57 -0700283
Mady Mellorbb835202015-07-15 16:34:34 -0700284 mStylusEventHelper = new StylusEventHelper(new SimpleOnStylusPressListener(this), this);
Mady Melloref044dd2015-06-02 15:35:07 -0700285
Sunny Goyal4fe5a372015-05-14 19:55:10 -0700286 mTouchFeedbackView = new ClickShadowView(context);
287 addView(mTouchFeedbackView);
Michael Jurkaa52570f2012-03-20 03:18:20 -0700288 addView(mShortcutsAndWidgets);
Michael Jurka18014792010-10-14 09:01:34 -0700289 }
290
Adam Cohenc9735cf2015-01-23 16:11:55 -0800291 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Sunny Goyale9b651e2015-04-24 11:44:51 -0700292 public void enableAccessibleDrag(boolean enable, int dragType) {
Adam Cohenc9735cf2015-01-23 16:11:55 -0800293 mUseTouchHelper = enable;
294 if (!enable) {
295 ViewCompat.setAccessibilityDelegate(this, null);
296 setImportantForAccessibility(IMPORTANT_FOR_ACCESSIBILITY_NO);
297 getShortcutsAndWidgets().setImportantForAccessibility(IMPORTANT_FOR_ACCESSIBILITY_NO);
298 setOnClickListener(mLauncher);
299 } else {
Sunny Goyale9b651e2015-04-24 11:44:51 -0700300 if (dragType == WORKSPACE_ACCESSIBILITY_DRAG &&
301 !(mTouchHelper instanceof WorkspaceAccessibilityHelper)) {
302 mTouchHelper = new WorkspaceAccessibilityHelper(this);
303 } else if (dragType == FOLDER_ACCESSIBILITY_DRAG &&
304 !(mTouchHelper instanceof FolderAccessibilityHelper)) {
305 mTouchHelper = new FolderAccessibilityHelper(this);
306 }
Adam Cohenc9735cf2015-01-23 16:11:55 -0800307 ViewCompat.setAccessibilityDelegate(this, mTouchHelper);
308 setImportantForAccessibility(IMPORTANT_FOR_ACCESSIBILITY_YES);
309 getShortcutsAndWidgets().setImportantForAccessibility(IMPORTANT_FOR_ACCESSIBILITY_YES);
310 setOnClickListener(mTouchHelper);
311 }
312
313 // Invalidate the accessibility hierarchy
314 if (getParent() != null) {
315 getParent().notifySubtreeAccessibilityStateChanged(
316 this, this, AccessibilityEvent.CONTENT_CHANGE_TYPE_SUBTREE);
317 }
318 }
319
320 @Override
321 public boolean dispatchHoverEvent(MotionEvent event) {
322 // Always attempt to dispatch hover events to accessibility first.
323 if (mUseTouchHelper && mTouchHelper.dispatchHoverEvent(event)) {
324 return true;
325 }
326 return super.dispatchHoverEvent(event);
327 }
328
329 @Override
Adam Cohenc9735cf2015-01-23 16:11:55 -0800330 public boolean onInterceptTouchEvent(MotionEvent ev) {
331 if (mUseTouchHelper ||
332 (mInterceptTouchListener != null && mInterceptTouchListener.onTouch(this, ev))) {
333 return true;
334 }
335 return false;
336 }
337
Mady Melloref044dd2015-06-02 15:35:07 -0700338 @Override
339 public boolean onTouchEvent(MotionEvent ev) {
340 boolean handled = super.onTouchEvent(ev);
341 // Stylus button press on a home screen should not switch between overview mode and
342 // the home screen mode, however, once in overview mode stylus button press should be
343 // enabled to allow rearranging the different home screens. So check what mode
344 // the workspace is in, and only perform stylus button presses while in overview mode.
345 if (mLauncher.mWorkspace.isInOverviewMode()
Mady Mellorbb835202015-07-15 16:34:34 -0700346 && mStylusEventHelper.onMotionEvent(ev)) {
Mady Melloref044dd2015-06-02 15:35:07 -0700347 return true;
348 }
349 return handled;
350 }
351
Chris Craik01f2d7f2013-10-01 14:41:56 -0700352 public void enableHardwareLayer(boolean hasLayer) {
353 mShortcutsAndWidgets.setLayerType(hasLayer ? LAYER_TYPE_HARDWARE : LAYER_TYPE_NONE, sPaint);
Michael Jurkad51f33a2012-06-28 15:35:26 -0700354 }
355
356 public void buildHardwareLayer() {
357 mShortcutsAndWidgets.buildLayer();
Adam Cohen2801caf2011-05-13 20:57:39 -0700358 }
359
Adam Cohen307fe232012-08-16 17:55:58 -0700360 public float getChildrenScale() {
361 return mIsHotseat ? mHotseatScale : 1.0f;
362 }
363
Winson Chung5f8afe62013-08-12 16:19:28 -0700364 public void setCellDimensions(int width, int height) {
Winson Chung11a1a532013-09-13 11:14:45 -0700365 mFixedCellWidth = mCellWidth = width;
366 mFixedCellHeight = mCellHeight = height;
Winson Chung5f8afe62013-08-12 16:19:28 -0700367 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap, mHeightGap,
368 mCountX, mCountY);
369 }
370
Adam Cohen2801caf2011-05-13 20:57:39 -0700371 public void setGridSize(int x, int y) {
372 mCountX = x;
373 mCountY = y;
374 mOccupied = new boolean[mCountX][mCountY];
Adam Cohen482ed822012-03-02 14:15:13 -0800375 mTmpOccupied = new boolean[mCountX][mCountY];
Adam Cohen7fbec102012-03-27 12:42:19 -0700376 mTempRectStack.clear();
Adam Cohen2374abf2013-04-16 14:56:57 -0700377 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap, mHeightGap,
Winson Chung5f8afe62013-08-12 16:19:28 -0700378 mCountX, mCountY);
Adam Cohen76fc0852011-06-17 13:26:23 -0700379 requestLayout();
Adam Cohen2801caf2011-05-13 20:57:39 -0700380 }
381
Adam Cohen2374abf2013-04-16 14:56:57 -0700382 // Set whether or not to invert the layout horizontally if the layout is in RTL mode.
383 public void setInvertIfRtl(boolean invert) {
384 mShortcutsAndWidgets.setInvertIfRtl(invert);
385 }
386
Adam Cohen917e3882013-10-31 15:03:35 -0700387 public void setDropPending(boolean pending) {
388 mDropPending = pending;
389 }
390
391 public boolean isDropPending() {
392 return mDropPending;
393 }
394
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700395 @Override
396 public void setPressedIcon(BubbleTextView icon, Bitmap background) {
Sunny Goyal508da152014-08-14 10:53:27 -0700397 if (icon == null || background == null) {
398 mTouchFeedbackView.setBitmap(null);
399 mTouchFeedbackView.animate().cancel();
400 } else {
Sunny Goyal508da152014-08-14 10:53:27 -0700401 if (mTouchFeedbackView.setBitmap(background)) {
Sunny Goyal4fe5a372015-05-14 19:55:10 -0700402 mTouchFeedbackView.alignWithIconView(icon, mShortcutsAndWidgets);
403 mTouchFeedbackView.animateShadow();
Sunny Goyal508da152014-08-14 10:53:27 -0700404 }
Patrick Dubroy96864c32011-03-10 17:17:23 -0800405 }
406 }
407
Adam Cohenc50438c2014-08-19 17:43:05 -0700408 void disableDragTarget() {
409 mIsDragTarget = false;
410 }
411
Tony Wickham0f97b782015-12-02 17:55:07 -0800412 public boolean isDragTarget() {
413 return mIsDragTarget;
414 }
415
Adam Cohenc50438c2014-08-19 17:43:05 -0700416 void setIsDragOverlapping(boolean isDragOverlapping) {
417 if (mIsDragOverlapping != isDragOverlapping) {
418 mIsDragOverlapping = isDragOverlapping;
Sunny Goyal2805e632015-05-20 15:35:32 -0700419 if (mIsDragOverlapping) {
420 mBackground.startTransition(BACKGROUND_ACTIVATE_DURATION);
421 } else {
Winson Chunge8f1d042015-07-31 12:39:57 -0700422 if (mBackgroundAlpha > 0f) {
423 mBackground.reverseTransition(BACKGROUND_ACTIVATE_DURATION);
424 } else {
425 mBackground.resetTransition();
426 }
Sunny Goyal2805e632015-05-20 15:35:32 -0700427 }
Adam Cohenc50438c2014-08-19 17:43:05 -0700428 invalidate();
429 }
430 }
431
Sunny Goyale2fd14b2015-08-27 17:45:46 -0700432 public void disableJailContent() {
433 mJailContent = false;
434 }
435
436 @Override
437 protected void dispatchSaveInstanceState(SparseArray<Parcelable> container) {
438 if (mJailContent) {
439 ParcelableSparseArray jail = getJailedArray(container);
440 super.dispatchSaveInstanceState(jail);
441 container.put(R.id.cell_layout_jail_id, jail);
442 } else {
443 super.dispatchSaveInstanceState(container);
444 }
445 }
446
447 @Override
448 protected void dispatchRestoreInstanceState(SparseArray<Parcelable> container) {
449 super.dispatchRestoreInstanceState(mJailContent ? getJailedArray(container) : container);
450 }
451
452 private ParcelableSparseArray getJailedArray(SparseArray<Parcelable> container) {
453 final Parcelable parcelable = container.get(R.id.cell_layout_jail_id);
454 return parcelable instanceof ParcelableSparseArray ?
455 (ParcelableSparseArray) parcelable : new ParcelableSparseArray();
456 }
457
Tony Wickham0f97b782015-12-02 17:55:07 -0800458 public boolean getIsDragOverlapping() {
459 return mIsDragOverlapping;
460 }
461
Jeff Sharkey83f111d2009-04-20 21:03:13 -0700462 @Override
Patrick Dubroy1262e362010-10-06 15:49:50 -0700463 protected void onDraw(Canvas canvas) {
Sunny Goyal05739772015-05-19 19:59:09 -0700464 if (!mIsDragTarget) {
465 return;
466 }
467
Michael Jurka3e7c7632010-10-02 16:01:03 -0700468 // When we're large, we are either drawn in a "hover" state (ie when dragging an item to
469 // a neighboring page) or with just a normal background (if backgroundAlpha > 0.0f)
470 // When we're small, we are either drawn normally or in the "accepts drops" state (during
471 // a drag). However, we also drag the mini hover background *over* one of those two
472 // backgrounds
Sunny Goyal05739772015-05-19 19:59:09 -0700473 if (mBackgroundAlpha > 0.0f) {
Sunny Goyal2805e632015-05-20 15:35:32 -0700474 mBackground.draw(canvas);
Michael Jurkaa63c4522010-08-19 13:52:27 -0700475 }
Romain Guya6abce82009-11-10 02:54:41 -0800476
Patrick Dubroy8e58e912010-10-14 13:21:48 -0700477 final Paint paint = mDragOutlinePaint;
Joe Onorato4be866d2010-10-10 11:26:02 -0700478 for (int i = 0; i < mDragOutlines.length; i++) {
Chet Haase472b2812010-10-14 07:02:04 -0700479 final float alpha = mDragOutlineAlphas[i];
Joe Onorato4be866d2010-10-10 11:26:02 -0700480 if (alpha > 0) {
Joe Onorato4be866d2010-10-10 11:26:02 -0700481 final Bitmap b = (Bitmap) mDragOutlineAnims[i].getTag();
Chet Haase472b2812010-10-14 07:02:04 -0700482 paint.setAlpha((int)(alpha + .5f));
Sunny Goyal106bf642015-07-16 12:18:06 -0700483 canvas.drawBitmap(b, null, mDragOutlines[i], paint);
Winson Chung150fbab2010-09-29 17:14:26 -0700484 }
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700485 }
Patrick Dubroy96864c32011-03-10 17:17:23 -0800486
Adam Cohen482ed822012-03-02 14:15:13 -0800487 if (DEBUG_VISUALIZE_OCCUPIED) {
488 int[] pt = new int[2];
489 ColorDrawable cd = new ColorDrawable(Color.RED);
Adam Cohene7587d22012-05-24 18:50:02 -0700490 cd.setBounds(0, 0, mCellWidth, mCellHeight);
Adam Cohen482ed822012-03-02 14:15:13 -0800491 for (int i = 0; i < mCountX; i++) {
492 for (int j = 0; j < mCountY; j++) {
493 if (mOccupied[i][j]) {
494 cellToPoint(i, j, pt);
495 canvas.save();
496 canvas.translate(pt[0], pt[1]);
497 cd.draw(canvas);
498 canvas.restore();
499 }
500 }
501 }
502 }
503
Andrew Flynn850d2e72012-04-26 16:51:20 -0700504 int previewOffset = FolderRingAnimator.sPreviewSize;
505
Adam Cohen69ce2e52011-07-03 19:25:21 -0700506 // The folder outer / inner ring image(s)
Adam Cohen2e6da152015-05-06 11:42:25 -0700507 DeviceProfile grid = mLauncher.getDeviceProfile();
Adam Cohen69ce2e52011-07-03 19:25:21 -0700508 for (int i = 0; i < mFolderOuterRings.size(); i++) {
509 FolderRingAnimator fra = mFolderOuterRings.get(i);
510
Adam Cohen5108bc02013-09-20 17:04:51 -0700511 Drawable d;
512 int width, height;
Adam Cohen69ce2e52011-07-03 19:25:21 -0700513 cellToPoint(fra.mCellX, fra.mCellY, mTempLocation);
Winson Chung5f8afe62013-08-12 16:19:28 -0700514 View child = getChildAt(fra.mCellX, fra.mCellY);
Adam Cohen558f1c22013-10-09 15:15:24 -0700515
Winson Chung89f97052013-09-20 11:32:26 -0700516 if (child != null) {
Adam Cohen558f1c22013-10-09 15:15:24 -0700517 int centerX = mTempLocation[0] + mCellWidth / 2;
518 int centerY = mTempLocation[1] + previewOffset / 2 +
519 child.getPaddingTop() + grid.folderBackgroundOffset;
520
Adam Cohen5108bc02013-09-20 17:04:51 -0700521 // Draw outer ring, if it exists
522 if (FolderIcon.HAS_OUTER_RING) {
523 d = FolderRingAnimator.sSharedOuterRingDrawable;
524 width = (int) (fra.getOuterRingSize() * getChildrenScale());
525 height = width;
526 canvas.save();
527 canvas.translate(centerX - width / 2, centerY - height / 2);
528 d.setBounds(0, 0, width, height);
529 d.draw(canvas);
530 canvas.restore();
531 }
Adam Cohen69ce2e52011-07-03 19:25:21 -0700532
Winson Chung89f97052013-09-20 11:32:26 -0700533 // Draw inner ring
534 d = FolderRingAnimator.sSharedInnerRingDrawable;
535 width = (int) (fra.getInnerRingSize() * getChildrenScale());
536 height = width;
Winson Chung89f97052013-09-20 11:32:26 -0700537 canvas.save();
538 canvas.translate(centerX - width / 2, centerY - width / 2);
539 d.setBounds(0, 0, width, height);
540 d.draw(canvas);
541 canvas.restore();
542 }
Adam Cohen69ce2e52011-07-03 19:25:21 -0700543 }
Adam Cohenc51934b2011-07-26 21:07:43 -0700544
545 if (mFolderLeaveBehindCell[0] >= 0 && mFolderLeaveBehindCell[1] >= 0) {
546 Drawable d = FolderIcon.sSharedFolderLeaveBehind;
547 int width = d.getIntrinsicWidth();
548 int height = d.getIntrinsicHeight();
549
550 cellToPoint(mFolderLeaveBehindCell[0], mFolderLeaveBehindCell[1], mTempLocation);
Winson Chung5f8afe62013-08-12 16:19:28 -0700551 View child = getChildAt(mFolderLeaveBehindCell[0], mFolderLeaveBehindCell[1]);
Winson Chung89f97052013-09-20 11:32:26 -0700552 if (child != null) {
553 int centerX = mTempLocation[0] + mCellWidth / 2;
554 int centerY = mTempLocation[1] + previewOffset / 2 +
555 child.getPaddingTop() + grid.folderBackgroundOffset;
Adam Cohenc51934b2011-07-26 21:07:43 -0700556
Winson Chung89f97052013-09-20 11:32:26 -0700557 canvas.save();
558 canvas.translate(centerX - width / 2, centerY - width / 2);
559 d.setBounds(0, 0, width, height);
560 d.draw(canvas);
561 canvas.restore();
562 }
Adam Cohenc51934b2011-07-26 21:07:43 -0700563 }
Adam Cohen69ce2e52011-07-03 19:25:21 -0700564 }
565
566 public void showFolderAccept(FolderRingAnimator fra) {
567 mFolderOuterRings.add(fra);
568 }
569
570 public void hideFolderAccept(FolderRingAnimator fra) {
571 if (mFolderOuterRings.contains(fra)) {
572 mFolderOuterRings.remove(fra);
573 }
574 invalidate();
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700575 }
576
Adam Cohenc51934b2011-07-26 21:07:43 -0700577 public void setFolderLeaveBehindCell(int x, int y) {
578 mFolderLeaveBehindCell[0] = x;
579 mFolderLeaveBehindCell[1] = y;
580 invalidate();
581 }
582
583 public void clearFolderLeaveBehind() {
584 mFolderLeaveBehindCell[0] = -1;
585 mFolderLeaveBehindCell[1] = -1;
586 invalidate();
587 }
588
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700589 @Override
Michael Jurkae6235dd2011-10-04 15:02:05 -0700590 public boolean shouldDelayChildPressedState() {
591 return false;
592 }
593
Adam Cohen1462de32012-07-24 22:34:36 -0700594 public void restoreInstanceState(SparseArray<Parcelable> states) {
Sunny Goyal33a152f2014-07-22 12:13:14 -0700595 try {
596 dispatchRestoreInstanceState(states);
597 } catch (IllegalArgumentException ex) {
Sunny Goyal6c56c682015-07-16 14:09:05 -0700598 if (ProviderConfig.IS_DOGFOOD_BUILD) {
Sunny Goyal33a152f2014-07-22 12:13:14 -0700599 throw ex;
600 }
601 // Mismatched viewId / viewType preventing restore. Skip restore on production builds.
602 Log.e(TAG, "Ignoring an error while restoring a view instance state", ex);
603 }
Adam Cohen1462de32012-07-24 22:34:36 -0700604 }
605
Michael Jurkae6235dd2011-10-04 15:02:05 -0700606 @Override
Jeff Sharkey83f111d2009-04-20 21:03:13 -0700607 public void cancelLongPress() {
608 super.cancelLongPress();
609
610 // Cancel long press for all children
611 final int count = getChildCount();
612 for (int i = 0; i < count; i++) {
613 final View child = getChildAt(i);
614 child.cancelLongPress();
615 }
616 }
617
Michael Jurkadee05892010-07-27 10:01:56 -0700618 public void setOnInterceptTouchListener(View.OnTouchListener listener) {
619 mInterceptTouchListener = listener;
620 }
621
Hyunyoung Songee3e6a72015-02-20 14:25:27 -0800622 public int getCountX() {
Adam Cohend22015c2010-07-26 22:02:18 -0700623 return mCountX;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800624 }
625
Hyunyoung Songee3e6a72015-02-20 14:25:27 -0800626 public int getCountY() {
Adam Cohend22015c2010-07-26 22:02:18 -0700627 return mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800628 }
629
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800630 public void setIsHotseat(boolean isHotseat) {
631 mIsHotseat = isHotseat;
Winson Chung5f8afe62013-08-12 16:19:28 -0700632 mShortcutsAndWidgets.setIsHotseat(isHotseat);
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800633 }
634
Sunny Goyale9b651e2015-04-24 11:44:51 -0700635 public boolean isHotseat() {
636 return mIsHotseat;
637 }
638
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800639 public boolean addViewToCellLayout(View child, int index, int childId, LayoutParams params,
Sunny Goyalf7a29e82015-04-24 15:20:43 -0700640 boolean markCells) {
Winson Chungaafa03c2010-06-11 17:34:16 -0700641 final LayoutParams lp = params;
642
Andrew Flynnde38e422012-05-08 11:22:15 -0700643 // Hotseat icons - remove text
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800644 if (child instanceof BubbleTextView) {
645 BubbleTextView bubbleChild = (BubbleTextView) child;
Winson Chung5f8afe62013-08-12 16:19:28 -0700646 bubbleChild.setTextVisibility(!mIsHotseat);
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800647 }
648
Adam Cohen307fe232012-08-16 17:55:58 -0700649 child.setScaleX(getChildrenScale());
650 child.setScaleY(getChildrenScale());
651
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800652 // Generate an id for each view, this assumes we have at most 256x256 cells
653 // per workspace screen
Adam Cohend22015c2010-07-26 22:02:18 -0700654 if (lp.cellX >= 0 && lp.cellX <= mCountX - 1 && lp.cellY >= 0 && lp.cellY <= mCountY - 1) {
Winson Chungaafa03c2010-06-11 17:34:16 -0700655 // If the horizontal or vertical span is set to -1, it is taken to
656 // mean that it spans the extent of the CellLayout
Adam Cohend22015c2010-07-26 22:02:18 -0700657 if (lp.cellHSpan < 0) lp.cellHSpan = mCountX;
658 if (lp.cellVSpan < 0) lp.cellVSpan = mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800659
Winson Chungaafa03c2010-06-11 17:34:16 -0700660 child.setId(childId);
Tony Wickhama0628cc2015-10-14 15:23:04 -0700661 if (LOGD) {
662 Log.d(TAG, "Adding view to ShortcutsAndWidgetsContainer: " + child);
663 }
Sunny Goyalf7a29e82015-04-24 15:20:43 -0700664 mShortcutsAndWidgets.addView(child, index, lp);
Michael Jurkadee05892010-07-27 10:01:56 -0700665
Michael Jurkaf3ca3ab2010-10-20 17:08:24 -0700666 if (markCells) markCellsAsOccupiedForView(child);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700667
Winson Chungaafa03c2010-06-11 17:34:16 -0700668 return true;
669 }
670 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800671 }
Michael Jurka3e7c7632010-10-02 16:01:03 -0700672
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800673 @Override
Michael Jurka0280c3b2010-09-17 15:00:07 -0700674 public void removeAllViews() {
675 clearOccupiedCells();
Michael Jurkaa52570f2012-03-20 03:18:20 -0700676 mShortcutsAndWidgets.removeAllViews();
Michael Jurka0280c3b2010-09-17 15:00:07 -0700677 }
678
679 @Override
680 public void removeAllViewsInLayout() {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700681 if (mShortcutsAndWidgets.getChildCount() > 0) {
Michael Jurka7cfc2822011-08-02 20:19:24 -0700682 clearOccupiedCells();
Michael Jurkaa52570f2012-03-20 03:18:20 -0700683 mShortcutsAndWidgets.removeAllViewsInLayout();
Michael Jurka7cfc2822011-08-02 20:19:24 -0700684 }
Michael Jurka0280c3b2010-09-17 15:00:07 -0700685 }
686
687 @Override
688 public void removeView(View view) {
689 markCellsAsUnoccupiedForView(view);
Michael Jurkaa52570f2012-03-20 03:18:20 -0700690 mShortcutsAndWidgets.removeView(view);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700691 }
692
693 @Override
694 public void removeViewAt(int index) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700695 markCellsAsUnoccupiedForView(mShortcutsAndWidgets.getChildAt(index));
696 mShortcutsAndWidgets.removeViewAt(index);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700697 }
698
699 @Override
700 public void removeViewInLayout(View view) {
701 markCellsAsUnoccupiedForView(view);
Michael Jurkaa52570f2012-03-20 03:18:20 -0700702 mShortcutsAndWidgets.removeViewInLayout(view);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700703 }
704
705 @Override
706 public void removeViews(int start, int count) {
707 for (int i = start; i < start + count; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700708 markCellsAsUnoccupiedForView(mShortcutsAndWidgets.getChildAt(i));
Michael Jurka0280c3b2010-09-17 15:00:07 -0700709 }
Michael Jurkaa52570f2012-03-20 03:18:20 -0700710 mShortcutsAndWidgets.removeViews(start, count);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700711 }
712
713 @Override
714 public void removeViewsInLayout(int start, int count) {
715 for (int i = start; i < start + count; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700716 markCellsAsUnoccupiedForView(mShortcutsAndWidgets.getChildAt(i));
Michael Jurka0280c3b2010-09-17 15:00:07 -0700717 }
Michael Jurkaa52570f2012-03-20 03:18:20 -0700718 mShortcutsAndWidgets.removeViewsInLayout(start, count);
Michael Jurkaabded662011-03-04 12:06:57 -0800719 }
720
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700721 /**
Winson Chungaafa03c2010-06-11 17:34:16 -0700722 * Given a point, return the cell that strictly encloses that point
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800723 * @param x X coordinate of the point
724 * @param y Y coordinate of the point
725 * @param result Array of 2 ints to hold the x and y coordinate of the cell
726 */
Sunny Goyale9b651e2015-04-24 11:44:51 -0700727 public void pointToCellExact(int x, int y, int[] result) {
Winson Chung4b825dcd2011-06-19 12:41:22 -0700728 final int hStartPadding = getPaddingLeft();
729 final int vStartPadding = getPaddingTop();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800730
731 result[0] = (x - hStartPadding) / (mCellWidth + mWidthGap);
732 result[1] = (y - vStartPadding) / (mCellHeight + mHeightGap);
733
Adam Cohend22015c2010-07-26 22:02:18 -0700734 final int xAxis = mCountX;
735 final int yAxis = mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800736
737 if (result[0] < 0) result[0] = 0;
738 if (result[0] >= xAxis) result[0] = xAxis - 1;
739 if (result[1] < 0) result[1] = 0;
740 if (result[1] >= yAxis) result[1] = yAxis - 1;
741 }
Winson Chungaafa03c2010-06-11 17:34:16 -0700742
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800743 /**
744 * Given a point, return the cell that most closely encloses that point
745 * @param x X coordinate of the point
746 * @param y Y coordinate of the point
747 * @param result Array of 2 ints to hold the x and y coordinate of the cell
748 */
749 void pointToCellRounded(int x, int y, int[] result) {
750 pointToCellExact(x + (mCellWidth / 2), y + (mCellHeight / 2), result);
751 }
752
753 /**
754 * Given a cell coordinate, return the point that represents the upper left corner of that cell
Winson Chungaafa03c2010-06-11 17:34:16 -0700755 *
756 * @param cellX X coordinate of the cell
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800757 * @param cellY Y coordinate of the cell
Winson Chungaafa03c2010-06-11 17:34:16 -0700758 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800759 * @param result Array of 2 ints to hold the x and y coordinate of the point
760 */
761 void cellToPoint(int cellX, int cellY, int[] result) {
Winson Chung4b825dcd2011-06-19 12:41:22 -0700762 final int hStartPadding = getPaddingLeft();
763 final int vStartPadding = getPaddingTop();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800764
765 result[0] = hStartPadding + cellX * (mCellWidth + mWidthGap);
766 result[1] = vStartPadding + cellY * (mCellHeight + mHeightGap);
767 }
768
Adam Cohene3e27a82011-04-15 12:07:39 -0700769 /**
Adam Cohen482ed822012-03-02 14:15:13 -0800770 * Given a cell coordinate, return the point that represents the center of the cell
Adam Cohene3e27a82011-04-15 12:07:39 -0700771 *
772 * @param cellX X coordinate of the cell
773 * @param cellY Y coordinate of the cell
774 *
775 * @param result Array of 2 ints to hold the x and y coordinate of the point
776 */
777 void cellToCenterPoint(int cellX, int cellY, int[] result) {
Adam Cohen47a876d2012-03-19 13:21:41 -0700778 regionToCenterPoint(cellX, cellY, 1, 1, result);
779 }
780
781 /**
782 * Given a cell coordinate and span return the point that represents the center of the regio
783 *
784 * @param cellX X coordinate of the cell
785 * @param cellY Y coordinate of the cell
786 *
787 * @param result Array of 2 ints to hold the x and y coordinate of the point
788 */
789 void regionToCenterPoint(int cellX, int cellY, int spanX, int spanY, int[] result) {
Winson Chung4b825dcd2011-06-19 12:41:22 -0700790 final int hStartPadding = getPaddingLeft();
791 final int vStartPadding = getPaddingTop();
Adam Cohen47a876d2012-03-19 13:21:41 -0700792 result[0] = hStartPadding + cellX * (mCellWidth + mWidthGap) +
793 (spanX * mCellWidth + (spanX - 1) * mWidthGap) / 2;
794 result[1] = vStartPadding + cellY * (mCellHeight + mHeightGap) +
795 (spanY * mCellHeight + (spanY - 1) * mHeightGap) / 2;
Adam Cohene3e27a82011-04-15 12:07:39 -0700796 }
797
Adam Cohen19f37922012-03-21 11:59:11 -0700798 /**
799 * Given a cell coordinate and span fills out a corresponding pixel rect
800 *
801 * @param cellX X coordinate of the cell
802 * @param cellY Y coordinate of the cell
803 * @param result Rect in which to write the result
804 */
805 void regionToRect(int cellX, int cellY, int spanX, int spanY, Rect result) {
806 final int hStartPadding = getPaddingLeft();
807 final int vStartPadding = getPaddingTop();
808 final int left = hStartPadding + cellX * (mCellWidth + mWidthGap);
809 final int top = vStartPadding + cellY * (mCellHeight + mHeightGap);
810 result.set(left, top, left + (spanX * mCellWidth + (spanX - 1) * mWidthGap),
811 top + (spanY * mCellHeight + (spanY - 1) * mHeightGap));
812 }
813
Adam Cohen482ed822012-03-02 14:15:13 -0800814 public float getDistanceFromCell(float x, float y, int[] cell) {
815 cellToCenterPoint(cell[0], cell[1], mTmpPoint);
Sunny Goyalf7a29e82015-04-24 15:20:43 -0700816 return (float) Math.hypot(x - mTmpPoint[0], y - mTmpPoint[1]);
Adam Cohen482ed822012-03-02 14:15:13 -0800817 }
818
Adam Cohenf9c184a2016-01-15 16:47:43 -0800819 public int getCellWidth() {
Romain Guy84f296c2009-11-04 15:00:44 -0800820 return mCellWidth;
821 }
822
823 int getCellHeight() {
824 return mCellHeight;
825 }
826
Adam Cohend4844c32011-02-18 19:25:06 -0800827 int getWidthGap() {
828 return mWidthGap;
829 }
830
831 int getHeightGap() {
832 return mHeightGap;
833 }
834
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700835 public void setFixedSize(int width, int height) {
836 mFixedWidth = width;
837 mFixedHeight = height;
838 }
839
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800840 @Override
841 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800842 int widthSpecMode = MeasureSpec.getMode(widthMeasureSpec);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800843 int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec);
Winson Chung5f8afe62013-08-12 16:19:28 -0700844 int widthSize = MeasureSpec.getSize(widthMeasureSpec);
845 int heightSize = MeasureSpec.getSize(heightMeasureSpec);
Winson Chung2d75f122013-09-23 16:53:31 -0700846 int childWidthSize = widthSize - (getPaddingLeft() + getPaddingRight());
847 int childHeightSize = heightSize - (getPaddingTop() + getPaddingBottom());
Winson Chung11a1a532013-09-13 11:14:45 -0700848 if (mFixedCellWidth < 0 || mFixedCellHeight < 0) {
Sunny Goyalc6205602015-05-21 20:46:33 -0700849 int cw = DeviceProfile.calculateCellWidth(childWidthSize, mCountX);
850 int ch = DeviceProfile.calculateCellHeight(childHeightSize, mCountY);
Winson Chung11a1a532013-09-13 11:14:45 -0700851 if (cw != mCellWidth || ch != mCellHeight) {
852 mCellWidth = cw;
853 mCellHeight = ch;
854 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap,
855 mHeightGap, mCountX, mCountY);
856 }
Winson Chung5f8afe62013-08-12 16:19:28 -0700857 }
Winson Chungaafa03c2010-06-11 17:34:16 -0700858
Winson Chung2d75f122013-09-23 16:53:31 -0700859 int newWidth = childWidthSize;
860 int newHeight = childHeightSize;
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700861 if (mFixedWidth > 0 && mFixedHeight > 0) {
862 newWidth = mFixedWidth;
863 newHeight = mFixedHeight;
864 } else if (widthSpecMode == MeasureSpec.UNSPECIFIED || heightSpecMode == MeasureSpec.UNSPECIFIED) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800865 throw new RuntimeException("CellLayout cannot have UNSPECIFIED dimensions");
866 }
867
Adam Cohend22015c2010-07-26 22:02:18 -0700868 int numWidthGaps = mCountX - 1;
869 int numHeightGaps = mCountY - 1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800870
Adam Cohen234c4cd2011-07-17 21:03:04 -0700871 if (mOriginalWidthGap < 0 || mOriginalHeightGap < 0) {
Winson Chung2d75f122013-09-23 16:53:31 -0700872 int hSpace = childWidthSize;
873 int vSpace = childHeightSize;
Adam Cohenf4bd5792012-04-27 11:35:29 -0700874 int hFreeSpace = hSpace - (mCountX * mCellWidth);
875 int vFreeSpace = vSpace - (mCountY * mCellHeight);
Winson Chung4b825dcd2011-06-19 12:41:22 -0700876 mWidthGap = Math.min(mMaxGap, numWidthGaps > 0 ? (hFreeSpace / numWidthGaps) : 0);
877 mHeightGap = Math.min(mMaxGap,numHeightGaps > 0 ? (vFreeSpace / numHeightGaps) : 0);
Winson Chung5f8afe62013-08-12 16:19:28 -0700878 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap,
879 mHeightGap, mCountX, mCountY);
Adam Cohen234c4cd2011-07-17 21:03:04 -0700880 } else {
881 mWidthGap = mOriginalWidthGap;
882 mHeightGap = mOriginalHeightGap;
Winson Chungece7f5b2010-10-22 14:54:12 -0700883 }
Sunny Goyal4fe5a372015-05-14 19:55:10 -0700884
885 // Make the feedback view large enough to hold the blur bitmap.
886 mTouchFeedbackView.measure(
887 MeasureSpec.makeMeasureSpec(mCellWidth + mTouchFeedbackView.getExtraSize(),
888 MeasureSpec.EXACTLY),
889 MeasureSpec.makeMeasureSpec(mCellHeight + mTouchFeedbackView.getExtraSize(),
890 MeasureSpec.EXACTLY));
891
892 mShortcutsAndWidgets.measure(
893 MeasureSpec.makeMeasureSpec(newWidth, MeasureSpec.EXACTLY),
894 MeasureSpec.makeMeasureSpec(newHeight, MeasureSpec.EXACTLY));
895
896 int maxWidth = mShortcutsAndWidgets.getMeasuredWidth();
897 int maxHeight = mShortcutsAndWidgets.getMeasuredHeight();
Winson Chung2d75f122013-09-23 16:53:31 -0700898 if (mFixedWidth > 0 && mFixedHeight > 0) {
899 setMeasuredDimension(maxWidth, maxHeight);
900 } else {
901 setMeasuredDimension(widthSize, heightSize);
902 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800903 }
904
905 @Override
Michael Jurka28750fb2010-09-24 17:43:49 -0700906 protected void onLayout(boolean changed, int l, int t, int r, int b) {
Tony Wickham26b01422015-11-10 14:44:32 -0800907 boolean isFullscreen = mShortcutsAndWidgets.getChildCount() > 0 &&
908 ((LayoutParams) mShortcutsAndWidgets.getChildAt(0).getLayoutParams()).isFullscreen;
909 int left = getPaddingLeft();
910 if (!isFullscreen) {
Tony Wickhama501d492015-11-03 18:05:01 -0800911 left += (int) Math.ceil(getUnusedHorizontalSpace() / 2f);
Tony Wickham26b01422015-11-10 14:44:32 -0800912 }
Winson Chung38848ca2013-10-08 12:03:44 -0700913 int top = getPaddingTop();
Sunny Goyal4fe5a372015-05-14 19:55:10 -0700914
915 mTouchFeedbackView.layout(left, top,
916 left + mTouchFeedbackView.getMeasuredWidth(),
917 top + mTouchFeedbackView.getMeasuredHeight());
918 mShortcutsAndWidgets.layout(left, top,
919 left + r - l,
920 top + b - t);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800921 }
922
Tony Wickhama501d492015-11-03 18:05:01 -0800923 /**
924 * Returns the amount of space left over after subtracting padding and cells. This space will be
925 * very small, a few pixels at most, and is a result of rounding down when calculating the cell
926 * width in {@link DeviceProfile#calculateCellWidth(int, int)}.
927 */
928 public int getUnusedHorizontalSpace() {
929 return getMeasuredWidth() - getPaddingLeft() - getPaddingRight() - (mCountX * mCellWidth);
930 }
931
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800932 @Override
Michael Jurkadee05892010-07-27 10:01:56 -0700933 protected void onSizeChanged(int w, int h, int oldw, int oldh) {
934 super.onSizeChanged(w, h, oldw, oldh);
Winson Chung82a9bd22013-10-08 16:02:34 -0700935
936 // Expand the background drawing bounds by the padding baked into the background drawable
Sunny Goyal2805e632015-05-20 15:35:32 -0700937 mBackground.getPadding(mTempRect);
938 mBackground.setBounds(-mTempRect.left, -mTempRect.top,
939 w + mTempRect.right, h + mTempRect.bottom);
Michael Jurkadee05892010-07-27 10:01:56 -0700940 }
941
942 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800943 protected void setChildrenDrawingCacheEnabled(boolean enabled) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700944 mShortcutsAndWidgets.setChildrenDrawingCacheEnabled(enabled);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800945 }
946
947 @Override
948 protected void setChildrenDrawnWithCacheEnabled(boolean enabled) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700949 mShortcutsAndWidgets.setChildrenDrawnWithCacheEnabled(enabled);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800950 }
951
Michael Jurka5f1c5092010-09-03 14:15:02 -0700952 public float getBackgroundAlpha() {
953 return mBackgroundAlpha;
Michael Jurkadee05892010-07-27 10:01:56 -0700954 }
955
Michael Jurka5f1c5092010-09-03 14:15:02 -0700956 public void setBackgroundAlpha(float alpha) {
Michael Jurkaafaa0502011-12-13 18:22:50 -0800957 if (mBackgroundAlpha != alpha) {
958 mBackgroundAlpha = alpha;
Sunny Goyal2805e632015-05-20 15:35:32 -0700959 mBackground.setAlpha((int) (mBackgroundAlpha * 255));
Michael Jurkaafaa0502011-12-13 18:22:50 -0800960 }
Michael Jurkadee05892010-07-27 10:01:56 -0700961 }
962
Sunny Goyal2805e632015-05-20 15:35:32 -0700963 @Override
964 protected boolean verifyDrawable(Drawable who) {
965 return super.verifyDrawable(who) || (mIsDragTarget && who == mBackground);
966 }
967
Michael Jurkaa52570f2012-03-20 03:18:20 -0700968 public void setShortcutAndWidgetAlpha(float alpha) {
Sunny Goyal02b50812014-09-10 15:44:42 -0700969 mShortcutsAndWidgets.setAlpha(alpha);
Michael Jurkadee05892010-07-27 10:01:56 -0700970 }
971
Michael Jurkaa52570f2012-03-20 03:18:20 -0700972 public ShortcutAndWidgetContainer getShortcutsAndWidgets() {
Sunny Goyaldcbcc862014-08-12 15:58:36 -0700973 return mShortcutsAndWidgets;
Michael Jurkaa52570f2012-03-20 03:18:20 -0700974 }
975
Patrick Dubroy440c3602010-07-13 17:50:32 -0700976 public View getChildAt(int x, int y) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700977 return mShortcutsAndWidgets.getChildAt(x, y);
Patrick Dubroy440c3602010-07-13 17:50:32 -0700978 }
979
Adam Cohen76fc0852011-06-17 13:26:23 -0700980 public boolean animateChildToPosition(final View child, int cellX, int cellY, int duration,
Adam Cohen482ed822012-03-02 14:15:13 -0800981 int delay, boolean permanent, boolean adjustOccupied) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700982 ShortcutAndWidgetContainer clc = getShortcutsAndWidgets();
Adam Cohen482ed822012-03-02 14:15:13 -0800983 boolean[][] occupied = mOccupied;
984 if (!permanent) {
985 occupied = mTmpOccupied;
986 }
987
Adam Cohen19f37922012-03-21 11:59:11 -0700988 if (clc.indexOfChild(child) != -1) {
Adam Cohenbfbfd262011-06-13 16:55:12 -0700989 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
990 final ItemInfo info = (ItemInfo) child.getTag();
991
992 // We cancel any existing animations
993 if (mReorderAnimators.containsKey(lp)) {
994 mReorderAnimators.get(lp).cancel();
995 mReorderAnimators.remove(lp);
996 }
997
Adam Cohen482ed822012-03-02 14:15:13 -0800998 final int oldX = lp.x;
999 final int oldY = lp.y;
1000 if (adjustOccupied) {
1001 occupied[lp.cellX][lp.cellY] = false;
1002 occupied[cellX][cellY] = true;
1003 }
Adam Cohenbfbfd262011-06-13 16:55:12 -07001004 lp.isLockedToGrid = true;
Adam Cohen482ed822012-03-02 14:15:13 -08001005 if (permanent) {
1006 lp.cellX = info.cellX = cellX;
1007 lp.cellY = info.cellY = cellY;
1008 } else {
1009 lp.tmpCellX = cellX;
1010 lp.tmpCellY = cellY;
1011 }
Adam Cohenbfbfd262011-06-13 16:55:12 -07001012 clc.setupLp(lp);
1013 lp.isLockedToGrid = false;
Adam Cohen482ed822012-03-02 14:15:13 -08001014 final int newX = lp.x;
1015 final int newY = lp.y;
Adam Cohenbfbfd262011-06-13 16:55:12 -07001016
Adam Cohen76fc0852011-06-17 13:26:23 -07001017 lp.x = oldX;
1018 lp.y = oldY;
Adam Cohen76fc0852011-06-17 13:26:23 -07001019
Adam Cohen482ed822012-03-02 14:15:13 -08001020 // Exit early if we're not actually moving the view
1021 if (oldX == newX && oldY == newY) {
1022 lp.isLockedToGrid = true;
1023 return true;
1024 }
1025
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001026 ValueAnimator va = LauncherAnimUtils.ofFloat(child, 0f, 1f);
Adam Cohen482ed822012-03-02 14:15:13 -08001027 va.setDuration(duration);
1028 mReorderAnimators.put(lp, va);
1029
1030 va.addUpdateListener(new AnimatorUpdateListener() {
1031 @Override
Adam Cohenbfbfd262011-06-13 16:55:12 -07001032 public void onAnimationUpdate(ValueAnimator animation) {
Adam Cohen482ed822012-03-02 14:15:13 -08001033 float r = ((Float) animation.getAnimatedValue()).floatValue();
Adam Cohen19f37922012-03-21 11:59:11 -07001034 lp.x = (int) ((1 - r) * oldX + r * newX);
1035 lp.y = (int) ((1 - r) * oldY + r * newY);
Adam Cohen6b8a02d2012-03-22 15:13:40 -07001036 child.requestLayout();
Adam Cohenbfbfd262011-06-13 16:55:12 -07001037 }
1038 });
Adam Cohen482ed822012-03-02 14:15:13 -08001039 va.addListener(new AnimatorListenerAdapter() {
Adam Cohenbfbfd262011-06-13 16:55:12 -07001040 boolean cancelled = false;
1041 public void onAnimationEnd(Animator animation) {
1042 // If the animation was cancelled, it means that another animation
1043 // has interrupted this one, and we don't want to lock the item into
1044 // place just yet.
1045 if (!cancelled) {
1046 lp.isLockedToGrid = true;
Adam Cohen482ed822012-03-02 14:15:13 -08001047 child.requestLayout();
Adam Cohenbfbfd262011-06-13 16:55:12 -07001048 }
1049 if (mReorderAnimators.containsKey(lp)) {
1050 mReorderAnimators.remove(lp);
1051 }
1052 }
1053 public void onAnimationCancel(Animator animation) {
1054 cancelled = true;
1055 }
1056 });
Adam Cohen482ed822012-03-02 14:15:13 -08001057 va.setStartDelay(delay);
1058 va.start();
Adam Cohenbfbfd262011-06-13 16:55:12 -07001059 return true;
1060 }
1061 return false;
1062 }
1063
Tony Wickhama501d492015-11-03 18:05:01 -08001064 void visualizeDropLocation(View v, Bitmap dragOutline, int cellX, int cellY, int spanX,
1065 int spanY, boolean resize, DropTarget.DragObject dragObject) {
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07001066 final int oldDragCellX = mDragCell[0];
1067 final int oldDragCellY = mDragCell[1];
Adam Cohen482ed822012-03-02 14:15:13 -08001068
Adam Cohen2801caf2011-05-13 20:57:39 -07001069 if (dragOutline == null && v == null) {
Adam Cohen2801caf2011-05-13 20:57:39 -07001070 return;
1071 }
1072
Adam Cohen482ed822012-03-02 14:15:13 -08001073 if (cellX != oldDragCellX || cellY != oldDragCellY) {
Sunny Goyale78e3d72015-09-24 11:23:31 -07001074 Point dragOffset = dragObject.dragView.getDragVisualizeOffset();
1075 Rect dragRegion = dragObject.dragView.getDragRegion();
1076
Adam Cohen482ed822012-03-02 14:15:13 -08001077 mDragCell[0] = cellX;
1078 mDragCell[1] = cellY;
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001079
Joe Onorato4be866d2010-10-10 11:26:02 -07001080 final int oldIndex = mDragOutlineCurrent;
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07001081 mDragOutlineAnims[oldIndex].animateOut();
1082 mDragOutlineCurrent = (oldIndex + 1) % mDragOutlines.length;
Adam Cohend41fbf52012-02-16 23:53:59 -08001083 Rect r = mDragOutlines[mDragOutlineCurrent];
Sunny Goyal106bf642015-07-16 12:18:06 -07001084
Adam Cohend41fbf52012-02-16 23:53:59 -08001085 if (resize) {
Adam Cohen482ed822012-03-02 14:15:13 -08001086 cellToRect(cellX, cellY, spanX, spanY, r);
Sunny Goyal106bf642015-07-16 12:18:06 -07001087 } else {
1088 // Find the top left corner of the rect the object will occupy
1089 final int[] topLeft = mTmpPoint;
1090 cellToPoint(cellX, cellY, topLeft);
1091
1092 int left = topLeft[0];
1093 int top = topLeft[1];
1094
1095 if (v != null && dragOffset == null) {
1096 // When drawing the drag outline, it did not account for margin offsets
1097 // added by the view's parent.
1098 MarginLayoutParams lp = (MarginLayoutParams) v.getLayoutParams();
1099 left += lp.leftMargin;
1100 top += lp.topMargin;
1101
1102 // Offsets due to the size difference between the View and the dragOutline.
1103 // There is a size difference to account for the outer blur, which may lie
1104 // outside the bounds of the view.
1105 top += (v.getHeight() - dragOutline.getHeight()) / 2;
1106 // We center about the x axis
1107 left += ((mCellWidth * spanX) + ((spanX - 1) * mWidthGap)
1108 - dragOutline.getWidth()) / 2;
1109 } else {
1110 if (dragOffset != null && dragRegion != null) {
1111 // Center the drag region *horizontally* in the cell and apply a drag
1112 // outline offset
1113 left += dragOffset.x + ((mCellWidth * spanX) + ((spanX - 1) * mWidthGap)
1114 - dragRegion.width()) / 2;
1115 int cHeight = getShortcutsAndWidgets().getCellContentHeight();
1116 int cellPaddingY = (int) Math.max(0, ((mCellHeight - cHeight) / 2f));
1117 top += dragOffset.y + cellPaddingY;
1118 } else {
1119 // Center the drag outline in the cell
1120 left += ((mCellWidth * spanX) + ((spanX - 1) * mWidthGap)
1121 - dragOutline.getWidth()) / 2;
1122 top += ((mCellHeight * spanY) + ((spanY - 1) * mHeightGap)
1123 - dragOutline.getHeight()) / 2;
1124 }
1125 }
1126 r.set(left, top, left + dragOutline.getWidth(), top + dragOutline.getHeight());
Adam Cohend41fbf52012-02-16 23:53:59 -08001127 }
Winson Chung150fbab2010-09-29 17:14:26 -07001128
Sunny Goyal106bf642015-07-16 12:18:06 -07001129 Utilities.scaleRectAboutCenter(r, getChildrenScale());
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07001130 mDragOutlineAnims[mDragOutlineCurrent].setTag(dragOutline);
1131 mDragOutlineAnims[mDragOutlineCurrent].animateIn();
Sunny Goyale78e3d72015-09-24 11:23:31 -07001132
1133 if (dragObject.stateAnnouncer != null) {
1134 String msg;
1135 if (isHotseat()) {
1136 msg = getContext().getString(R.string.move_to_hotseat_position,
1137 Math.max(cellX, cellY) + 1);
1138 } else {
1139 msg = getContext().getString(R.string.move_to_empty_cell,
1140 cellY + 1, cellX + 1);
1141 }
1142 dragObject.stateAnnouncer.announce(msg);
1143 }
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07001144 }
1145 }
1146
Adam Cohene0310962011-04-18 16:15:31 -07001147 public void clearDragOutlines() {
1148 final int oldIndex = mDragOutlineCurrent;
1149 mDragOutlineAnims[oldIndex].animateOut();
Adam Cohend41fbf52012-02-16 23:53:59 -08001150 mDragCell[0] = mDragCell[1] = -1;
Adam Cohene0310962011-04-18 16:15:31 -07001151 }
1152
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001153 /**
Jeff Sharkey70864282009-04-07 21:08:40 -07001154 * Find a vacant area that will fit the given bounds nearest the requested
1155 * cell location. Uses Euclidean distance to score multiple vacant areas.
Winson Chungaafa03c2010-06-11 17:34:16 -07001156 *
Romain Guy51afc022009-05-04 18:03:43 -07001157 * @param pixelX The X location at which you want to search for a vacant area.
1158 * @param pixelY The Y location at which you want to search for a vacant area.
Adam Cohend41fbf52012-02-16 23:53:59 -08001159 * @param minSpanX The minimum horizontal span required
1160 * @param minSpanY The minimum vertical span required
1161 * @param spanX Horizontal span of the object.
1162 * @param spanY Vertical span of the object.
1163 * @param result Array in which to place the result, or null (in which case a new array will
1164 * be allocated)
1165 * @return The X, Y cell of a vacant area that can contain this object,
1166 * nearest the requested location.
1167 */
1168 int[] findNearestVacantArea(int pixelX, int pixelY, int minSpanX, int minSpanY, int spanX,
1169 int spanY, int[] result, int[] resultSpan) {
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001170 return findNearestArea(pixelX, pixelY, minSpanX, minSpanY, spanX, spanY, true,
Adam Cohend41fbf52012-02-16 23:53:59 -08001171 result, resultSpan);
1172 }
1173
Adam Cohend41fbf52012-02-16 23:53:59 -08001174 private final Stack<Rect> mTempRectStack = new Stack<Rect>();
1175 private void lazyInitTempRectStack() {
1176 if (mTempRectStack.isEmpty()) {
1177 for (int i = 0; i < mCountX * mCountY; i++) {
1178 mTempRectStack.push(new Rect());
1179 }
1180 }
1181 }
Adam Cohen482ed822012-03-02 14:15:13 -08001182
Adam Cohend41fbf52012-02-16 23:53:59 -08001183 private void recycleTempRects(Stack<Rect> used) {
1184 while (!used.isEmpty()) {
1185 mTempRectStack.push(used.pop());
1186 }
1187 }
1188
1189 /**
1190 * Find a vacant area that will fit the given bounds nearest the requested
1191 * cell location. Uses Euclidean distance to score multiple vacant areas.
1192 *
1193 * @param pixelX The X location at which you want to search for a vacant area.
1194 * @param pixelY The Y location at which you want to search for a vacant area.
1195 * @param minSpanX The minimum horizontal span required
1196 * @param minSpanY The minimum vertical span required
1197 * @param spanX Horizontal span of the object.
1198 * @param spanY Vertical span of the object.
1199 * @param ignoreOccupied If true, the result can be an occupied cell
1200 * @param result Array in which to place the result, or null (in which case a new array will
1201 * be allocated)
1202 * @return The X, Y cell of a vacant area that can contain this object,
1203 * nearest the requested location.
1204 */
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001205 private int[] findNearestArea(int pixelX, int pixelY, int minSpanX, int minSpanY, int spanX,
1206 int spanY, boolean ignoreOccupied, int[] result, int[] resultSpan) {
Adam Cohend41fbf52012-02-16 23:53:59 -08001207 lazyInitTempRectStack();
Michael Jurkac6ee42e2010-09-30 12:04:50 -07001208
Adam Cohene3e27a82011-04-15 12:07:39 -07001209 // For items with a spanX / spanY > 1, the passed in point (pixelX, pixelY) corresponds
1210 // to the center of the item, but we are searching based on the top-left cell, so
1211 // we translate the point over to correspond to the top-left.
1212 pixelX -= (mCellWidth + mWidthGap) * (spanX - 1) / 2f;
1213 pixelY -= (mCellHeight + mHeightGap) * (spanY - 1) / 2f;
1214
Jeff Sharkey70864282009-04-07 21:08:40 -07001215 // Keep track of best-scoring drop area
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001216 final int[] bestXY = result != null ? result : new int[2];
Jeff Sharkey70864282009-04-07 21:08:40 -07001217 double bestDistance = Double.MAX_VALUE;
Adam Cohend41fbf52012-02-16 23:53:59 -08001218 final Rect bestRect = new Rect(-1, -1, -1, -1);
1219 final Stack<Rect> validRegions = new Stack<Rect>();
Winson Chungaafa03c2010-06-11 17:34:16 -07001220
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001221 final int countX = mCountX;
1222 final int countY = mCountY;
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001223
Adam Cohend41fbf52012-02-16 23:53:59 -08001224 if (minSpanX <= 0 || minSpanY <= 0 || spanX <= 0 || spanY <= 0 ||
1225 spanX < minSpanX || spanY < minSpanY) {
1226 return bestXY;
1227 }
1228
1229 for (int y = 0; y < countY - (minSpanY - 1); y++) {
Michael Jurkac28de512010-08-13 11:27:44 -07001230 inner:
Adam Cohend41fbf52012-02-16 23:53:59 -08001231 for (int x = 0; x < countX - (minSpanX - 1); x++) {
1232 int ySize = -1;
1233 int xSize = -1;
Adam Cohendf035382011-04-11 17:22:04 -07001234 if (ignoreOccupied) {
Adam Cohend41fbf52012-02-16 23:53:59 -08001235 // First, let's see if this thing fits anywhere
1236 for (int i = 0; i < minSpanX; i++) {
1237 for (int j = 0; j < minSpanY; j++) {
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001238 if (mOccupied[x + i][y + j]) {
Adam Cohendf035382011-04-11 17:22:04 -07001239 continue inner;
1240 }
Michael Jurkac28de512010-08-13 11:27:44 -07001241 }
1242 }
Adam Cohend41fbf52012-02-16 23:53:59 -08001243 xSize = minSpanX;
1244 ySize = minSpanY;
1245
1246 // We know that the item will fit at _some_ acceptable size, now let's see
1247 // how big we can make it. We'll alternate between incrementing x and y spans
1248 // until we hit a limit.
1249 boolean incX = true;
1250 boolean hitMaxX = xSize >= spanX;
1251 boolean hitMaxY = ySize >= spanY;
1252 while (!(hitMaxX && hitMaxY)) {
1253 if (incX && !hitMaxX) {
1254 for (int j = 0; j < ySize; j++) {
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001255 if (x + xSize > countX -1 || mOccupied[x + xSize][y + j]) {
Adam Cohend41fbf52012-02-16 23:53:59 -08001256 // We can't move out horizontally
1257 hitMaxX = true;
1258 }
1259 }
1260 if (!hitMaxX) {
1261 xSize++;
1262 }
1263 } else if (!hitMaxY) {
1264 for (int i = 0; i < xSize; i++) {
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001265 if (y + ySize > countY - 1 || mOccupied[x + i][y + ySize]) {
Adam Cohend41fbf52012-02-16 23:53:59 -08001266 // We can't move out vertically
1267 hitMaxY = true;
1268 }
1269 }
1270 if (!hitMaxY) {
1271 ySize++;
1272 }
1273 }
1274 hitMaxX |= xSize >= spanX;
1275 hitMaxY |= ySize >= spanY;
1276 incX = !incX;
1277 }
1278 incX = true;
1279 hitMaxX = xSize >= spanX;
1280 hitMaxY = ySize >= spanY;
Michael Jurkac28de512010-08-13 11:27:44 -07001281 }
Sunny Goyal2805e632015-05-20 15:35:32 -07001282 final int[] cellXY = mTmpPoint;
Adam Cohene3e27a82011-04-15 12:07:39 -07001283 cellToCenterPoint(x, y, cellXY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001284
Adam Cohend41fbf52012-02-16 23:53:59 -08001285 // We verify that the current rect is not a sub-rect of any of our previous
1286 // candidates. In this case, the current rect is disqualified in favour of the
1287 // containing rect.
1288 Rect currentRect = mTempRectStack.pop();
1289 currentRect.set(x, y, x + xSize, y + ySize);
1290 boolean contained = false;
1291 for (Rect r : validRegions) {
1292 if (r.contains(currentRect)) {
1293 contained = true;
1294 break;
1295 }
1296 }
1297 validRegions.push(currentRect);
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001298 double distance = Math.hypot(cellXY[0] - pixelX, cellXY[1] - pixelY);
Adam Cohen482ed822012-03-02 14:15:13 -08001299
Adam Cohend41fbf52012-02-16 23:53:59 -08001300 if ((distance <= bestDistance && !contained) ||
1301 currentRect.contains(bestRect)) {
Michael Jurkac28de512010-08-13 11:27:44 -07001302 bestDistance = distance;
1303 bestXY[0] = x;
1304 bestXY[1] = y;
Adam Cohend41fbf52012-02-16 23:53:59 -08001305 if (resultSpan != null) {
1306 resultSpan[0] = xSize;
1307 resultSpan[1] = ySize;
1308 }
1309 bestRect.set(currentRect);
Michael Jurkac28de512010-08-13 11:27:44 -07001310 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001311 }
1312 }
1313
Adam Cohenc0dcf592011-06-01 15:30:43 -07001314 // Return -1, -1 if no suitable location found
1315 if (bestDistance == Double.MAX_VALUE) {
1316 bestXY[0] = -1;
1317 bestXY[1] = -1;
Jeff Sharkey70864282009-04-07 21:08:40 -07001318 }
Adam Cohend41fbf52012-02-16 23:53:59 -08001319 recycleTempRects(validRegions);
Adam Cohenc0dcf592011-06-01 15:30:43 -07001320 return bestXY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001321 }
Winson Chungaafa03c2010-06-11 17:34:16 -07001322
Adam Cohen482ed822012-03-02 14:15:13 -08001323 /**
1324 * Find a vacant area that will fit the given bounds nearest the requested
1325 * cell location, and will also weigh in a suggested direction vector of the
1326 * desired location. This method computers distance based on unit grid distances,
1327 * not pixel distances.
1328 *
Adam Cohen47a876d2012-03-19 13:21:41 -07001329 * @param cellX The X cell nearest to which you want to search for a vacant area.
1330 * @param cellY The Y cell nearest which you want to search for a vacant area.
Adam Cohen482ed822012-03-02 14:15:13 -08001331 * @param spanX Horizontal span of the object.
1332 * @param spanY Vertical span of the object.
Adam Cohen47a876d2012-03-19 13:21:41 -07001333 * @param direction The favored direction in which the views should move from x, y
Sunny Goyal9eba1fd2015-10-16 08:58:57 -07001334 * @param occupied The array which represents which cells in the CellLayout are occupied
Adam Cohen47a876d2012-03-19 13:21:41 -07001335 * @param blockOccupied The array which represents which cells in the specified block (cellX,
Winson Chung5f8afe62013-08-12 16:19:28 -07001336 * cellY, spanX, spanY) are occupied. This is used when try to move a group of views.
Adam Cohen482ed822012-03-02 14:15:13 -08001337 * @param result Array in which to place the result, or null (in which case a new array will
1338 * be allocated)
1339 * @return The X, Y cell of a vacant area that can contain this object,
1340 * nearest the requested location.
1341 */
1342 private int[] findNearestArea(int cellX, int cellY, int spanX, int spanY, int[] direction,
Adam Cohen47a876d2012-03-19 13:21:41 -07001343 boolean[][] occupied, boolean blockOccupied[][], int[] result) {
Adam Cohen482ed822012-03-02 14:15:13 -08001344 // Keep track of best-scoring drop area
1345 final int[] bestXY = result != null ? result : new int[2];
1346 float bestDistance = Float.MAX_VALUE;
1347 int bestDirectionScore = Integer.MIN_VALUE;
1348
1349 final int countX = mCountX;
1350 final int countY = mCountY;
1351
1352 for (int y = 0; y < countY - (spanY - 1); y++) {
1353 inner:
1354 for (int x = 0; x < countX - (spanX - 1); x++) {
1355 // First, let's see if this thing fits anywhere
1356 for (int i = 0; i < spanX; i++) {
1357 for (int j = 0; j < spanY; j++) {
Adam Cohen47a876d2012-03-19 13:21:41 -07001358 if (occupied[x + i][y + j] && (blockOccupied == null || blockOccupied[i][j])) {
Adam Cohen482ed822012-03-02 14:15:13 -08001359 continue inner;
1360 }
1361 }
1362 }
1363
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001364 float distance = (float) Math.hypot(x - cellX, y - cellY);
Adam Cohen482ed822012-03-02 14:15:13 -08001365 int[] curDirection = mTmpPoint;
Adam Cohen47a876d2012-03-19 13:21:41 -07001366 computeDirectionVector(x - cellX, y - cellY, curDirection);
1367 // The direction score is just the dot product of the two candidate direction
1368 // and that passed in.
Adam Cohen482ed822012-03-02 14:15:13 -08001369 int curDirectionScore = direction[0] * curDirection[0] +
1370 direction[1] * curDirection[1];
Adam Cohen47a876d2012-03-19 13:21:41 -07001371 boolean exactDirectionOnly = false;
1372 boolean directionMatches = direction[0] == curDirection[0] &&
1373 direction[0] == curDirection[0];
1374 if ((directionMatches || !exactDirectionOnly) &&
1375 Float.compare(distance, bestDistance) < 0 || (Float.compare(distance,
Adam Cohen482ed822012-03-02 14:15:13 -08001376 bestDistance) == 0 && curDirectionScore > bestDirectionScore)) {
1377 bestDistance = distance;
1378 bestDirectionScore = curDirectionScore;
1379 bestXY[0] = x;
1380 bestXY[1] = y;
1381 }
1382 }
1383 }
1384
1385 // Return -1, -1 if no suitable location found
1386 if (bestDistance == Float.MAX_VALUE) {
1387 bestXY[0] = -1;
1388 bestXY[1] = -1;
1389 }
1390 return bestXY;
1391 }
1392
1393 private boolean addViewToTempLocation(View v, Rect rectOccupiedByPotentialDrop,
Adam Cohen8baab352012-03-20 17:39:21 -07001394 int[] direction, ItemConfiguration currentState) {
1395 CellAndSpan c = currentState.map.get(v);
Adam Cohen482ed822012-03-02 14:15:13 -08001396 boolean success = false;
Adam Cohen8baab352012-03-20 17:39:21 -07001397 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, false);
Adam Cohen482ed822012-03-02 14:15:13 -08001398 markCellsForRect(rectOccupiedByPotentialDrop, mTmpOccupied, true);
1399
Adam Cohen8baab352012-03-20 17:39:21 -07001400 findNearestArea(c.x, c.y, c.spanX, c.spanY, direction, mTmpOccupied, null, mTempLocation);
Adam Cohen482ed822012-03-02 14:15:13 -08001401
1402 if (mTempLocation[0] >= 0 && mTempLocation[1] >= 0) {
Adam Cohen8baab352012-03-20 17:39:21 -07001403 c.x = mTempLocation[0];
1404 c.y = mTempLocation[1];
Adam Cohen482ed822012-03-02 14:15:13 -08001405 success = true;
Adam Cohen482ed822012-03-02 14:15:13 -08001406 }
Adam Cohen8baab352012-03-20 17:39:21 -07001407 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001408 return success;
1409 }
1410
Adam Cohenf3900c22012-11-16 18:28:11 -08001411 /**
1412 * This helper class defines a cluster of views. It helps with defining complex edges
1413 * of the cluster and determining how those edges interact with other views. The edges
1414 * essentially define a fine-grained boundary around the cluster of views -- like a more
1415 * precise version of a bounding box.
1416 */
1417 private class ViewCluster {
1418 final static int LEFT = 0;
1419 final static int TOP = 1;
1420 final static int RIGHT = 2;
1421 final static int BOTTOM = 3;
Adam Cohen47a876d2012-03-19 13:21:41 -07001422
Adam Cohenf3900c22012-11-16 18:28:11 -08001423 ArrayList<View> views;
1424 ItemConfiguration config;
1425 Rect boundingRect = new Rect();
Adam Cohen47a876d2012-03-19 13:21:41 -07001426
Adam Cohenf3900c22012-11-16 18:28:11 -08001427 int[] leftEdge = new int[mCountY];
1428 int[] rightEdge = new int[mCountY];
1429 int[] topEdge = new int[mCountX];
1430 int[] bottomEdge = new int[mCountX];
1431 boolean leftEdgeDirty, rightEdgeDirty, topEdgeDirty, bottomEdgeDirty, boundingRectDirty;
1432
1433 @SuppressWarnings("unchecked")
1434 public ViewCluster(ArrayList<View> views, ItemConfiguration config) {
1435 this.views = (ArrayList<View>) views.clone();
1436 this.config = config;
1437 resetEdges();
Adam Cohen47a876d2012-03-19 13:21:41 -07001438 }
1439
Adam Cohenf3900c22012-11-16 18:28:11 -08001440 void resetEdges() {
1441 for (int i = 0; i < mCountX; i++) {
1442 topEdge[i] = -1;
1443 bottomEdge[i] = -1;
1444 }
1445 for (int i = 0; i < mCountY; i++) {
1446 leftEdge[i] = -1;
1447 rightEdge[i] = -1;
1448 }
1449 leftEdgeDirty = true;
1450 rightEdgeDirty = true;
1451 bottomEdgeDirty = true;
1452 topEdgeDirty = true;
1453 boundingRectDirty = true;
1454 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001455
Adam Cohenf3900c22012-11-16 18:28:11 -08001456 void computeEdge(int which, int[] edge) {
1457 int count = views.size();
1458 for (int i = 0; i < count; i++) {
1459 CellAndSpan cs = config.map.get(views.get(i));
1460 switch (which) {
1461 case LEFT:
1462 int left = cs.x;
1463 for (int j = cs.y; j < cs.y + cs.spanY; j++) {
1464 if (left < edge[j] || edge[j] < 0) {
1465 edge[j] = left;
Adam Cohena56dc102012-07-13 13:41:42 -07001466 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001467 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001468 break;
1469 case RIGHT:
1470 int right = cs.x + cs.spanX;
1471 for (int j = cs.y; j < cs.y + cs.spanY; j++) {
1472 if (right > edge[j]) {
1473 edge[j] = right;
1474 }
1475 }
1476 break;
1477 case TOP:
1478 int top = cs.y;
1479 for (int j = cs.x; j < cs.x + cs.spanX; j++) {
1480 if (top < edge[j] || edge[j] < 0) {
1481 edge[j] = top;
1482 }
1483 }
1484 break;
1485 case BOTTOM:
1486 int bottom = cs.y + cs.spanY;
1487 for (int j = cs.x; j < cs.x + cs.spanX; j++) {
1488 if (bottom > edge[j]) {
1489 edge[j] = bottom;
1490 }
1491 }
1492 break;
Adam Cohen47a876d2012-03-19 13:21:41 -07001493 }
1494 }
1495 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001496
1497 boolean isViewTouchingEdge(View v, int whichEdge) {
1498 CellAndSpan cs = config.map.get(v);
1499
1500 int[] edge = getEdge(whichEdge);
1501
1502 switch (whichEdge) {
1503 case LEFT:
1504 for (int i = cs.y; i < cs.y + cs.spanY; i++) {
1505 if (edge[i] == cs.x + cs.spanX) {
1506 return true;
1507 }
1508 }
1509 break;
1510 case RIGHT:
1511 for (int i = cs.y; i < cs.y + cs.spanY; i++) {
1512 if (edge[i] == cs.x) {
1513 return true;
1514 }
1515 }
1516 break;
1517 case TOP:
1518 for (int i = cs.x; i < cs.x + cs.spanX; i++) {
1519 if (edge[i] == cs.y + cs.spanY) {
1520 return true;
1521 }
1522 }
1523 break;
1524 case BOTTOM:
1525 for (int i = cs.x; i < cs.x + cs.spanX; i++) {
1526 if (edge[i] == cs.y) {
1527 return true;
1528 }
1529 }
1530 break;
1531 }
1532 return false;
1533 }
1534
1535 void shift(int whichEdge, int delta) {
1536 for (View v: views) {
1537 CellAndSpan c = config.map.get(v);
1538 switch (whichEdge) {
1539 case LEFT:
1540 c.x -= delta;
1541 break;
1542 case RIGHT:
1543 c.x += delta;
1544 break;
1545 case TOP:
1546 c.y -= delta;
1547 break;
1548 case BOTTOM:
1549 default:
1550 c.y += delta;
1551 break;
1552 }
1553 }
1554 resetEdges();
1555 }
1556
1557 public void addView(View v) {
1558 views.add(v);
1559 resetEdges();
1560 }
1561
1562 public Rect getBoundingRect() {
1563 if (boundingRectDirty) {
1564 boolean first = true;
1565 for (View v: views) {
1566 CellAndSpan c = config.map.get(v);
1567 if (first) {
1568 boundingRect.set(c.x, c.y, c.x + c.spanX, c.y + c.spanY);
1569 first = false;
1570 } else {
1571 boundingRect.union(c.x, c.y, c.x + c.spanX, c.y + c.spanY);
1572 }
1573 }
1574 }
1575 return boundingRect;
1576 }
1577
1578 public int[] getEdge(int which) {
1579 switch (which) {
1580 case LEFT:
1581 return getLeftEdge();
1582 case RIGHT:
1583 return getRightEdge();
1584 case TOP:
1585 return getTopEdge();
1586 case BOTTOM:
1587 default:
1588 return getBottomEdge();
1589 }
1590 }
1591
1592 public int[] getLeftEdge() {
1593 if (leftEdgeDirty) {
1594 computeEdge(LEFT, leftEdge);
1595 }
1596 return leftEdge;
1597 }
1598
1599 public int[] getRightEdge() {
1600 if (rightEdgeDirty) {
1601 computeEdge(RIGHT, rightEdge);
1602 }
1603 return rightEdge;
1604 }
1605
1606 public int[] getTopEdge() {
1607 if (topEdgeDirty) {
1608 computeEdge(TOP, topEdge);
1609 }
1610 return topEdge;
1611 }
1612
1613 public int[] getBottomEdge() {
1614 if (bottomEdgeDirty) {
1615 computeEdge(BOTTOM, bottomEdge);
1616 }
1617 return bottomEdge;
1618 }
1619
1620 PositionComparator comparator = new PositionComparator();
1621 class PositionComparator implements Comparator<View> {
1622 int whichEdge = 0;
1623 public int compare(View left, View right) {
1624 CellAndSpan l = config.map.get(left);
1625 CellAndSpan r = config.map.get(right);
1626 switch (whichEdge) {
1627 case LEFT:
1628 return (r.x + r.spanX) - (l.x + l.spanX);
1629 case RIGHT:
1630 return l.x - r.x;
1631 case TOP:
1632 return (r.y + r.spanY) - (l.y + l.spanY);
1633 case BOTTOM:
1634 default:
1635 return l.y - r.y;
1636 }
1637 }
1638 }
1639
1640 public void sortConfigurationForEdgePush(int edge) {
1641 comparator.whichEdge = edge;
1642 Collections.sort(config.sortedViews, comparator);
1643 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001644 }
1645
Adam Cohenf3900c22012-11-16 18:28:11 -08001646 private boolean pushViewsToTempLocation(ArrayList<View> views, Rect rectOccupiedByPotentialDrop,
1647 int[] direction, View dragView, ItemConfiguration currentState) {
Adam Cohene0489502012-08-27 15:18:53 -07001648
Adam Cohenf3900c22012-11-16 18:28:11 -08001649 ViewCluster cluster = new ViewCluster(views, currentState);
1650 Rect clusterRect = cluster.getBoundingRect();
1651 int whichEdge;
1652 int pushDistance;
1653 boolean fail = false;
1654
1655 // Determine the edge of the cluster that will be leading the push and how far
1656 // the cluster must be shifted.
1657 if (direction[0] < 0) {
1658 whichEdge = ViewCluster.LEFT;
1659 pushDistance = clusterRect.right - rectOccupiedByPotentialDrop.left;
Adam Cohene0489502012-08-27 15:18:53 -07001660 } else if (direction[0] > 0) {
Adam Cohenf3900c22012-11-16 18:28:11 -08001661 whichEdge = ViewCluster.RIGHT;
1662 pushDistance = rectOccupiedByPotentialDrop.right - clusterRect.left;
1663 } else if (direction[1] < 0) {
1664 whichEdge = ViewCluster.TOP;
1665 pushDistance = clusterRect.bottom - rectOccupiedByPotentialDrop.top;
1666 } else {
1667 whichEdge = ViewCluster.BOTTOM;
1668 pushDistance = rectOccupiedByPotentialDrop.bottom - clusterRect.top;
Adam Cohene0489502012-08-27 15:18:53 -07001669 }
1670
Adam Cohenf3900c22012-11-16 18:28:11 -08001671 // Break early for invalid push distance.
1672 if (pushDistance <= 0) {
1673 return false;
Adam Cohene0489502012-08-27 15:18:53 -07001674 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001675
1676 // Mark the occupied state as false for the group of views we want to move.
1677 for (View v: views) {
1678 CellAndSpan c = currentState.map.get(v);
1679 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, false);
1680 }
1681
1682 // We save the current configuration -- if we fail to find a solution we will revert
1683 // to the initial state. The process of finding a solution modifies the configuration
1684 // in place, hence the need for revert in the failure case.
1685 currentState.save();
1686
1687 // The pushing algorithm is simplified by considering the views in the order in which
1688 // they would be pushed by the cluster. For example, if the cluster is leading with its
1689 // left edge, we consider sort the views by their right edge, from right to left.
1690 cluster.sortConfigurationForEdgePush(whichEdge);
1691
1692 while (pushDistance > 0 && !fail) {
1693 for (View v: currentState.sortedViews) {
1694 // For each view that isn't in the cluster, we see if the leading edge of the
1695 // cluster is contacting the edge of that view. If so, we add that view to the
1696 // cluster.
1697 if (!cluster.views.contains(v) && v != dragView) {
1698 if (cluster.isViewTouchingEdge(v, whichEdge)) {
1699 LayoutParams lp = (LayoutParams) v.getLayoutParams();
1700 if (!lp.canReorder) {
1701 // The push solution includes the all apps button, this is not viable.
1702 fail = true;
1703 break;
1704 }
1705 cluster.addView(v);
1706 CellAndSpan c = currentState.map.get(v);
1707
1708 // Adding view to cluster, mark it as not occupied.
1709 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, false);
1710 }
1711 }
1712 }
1713 pushDistance--;
1714
1715 // The cluster has been completed, now we move the whole thing over in the appropriate
1716 // direction.
1717 cluster.shift(whichEdge, 1);
1718 }
1719
1720 boolean foundSolution = false;
1721 clusterRect = cluster.getBoundingRect();
1722
1723 // Due to the nature of the algorithm, the only check required to verify a valid solution
1724 // is to ensure that completed shifted cluster lies completely within the cell layout.
1725 if (!fail && clusterRect.left >= 0 && clusterRect.right <= mCountX && clusterRect.top >= 0 &&
1726 clusterRect.bottom <= mCountY) {
1727 foundSolution = true;
1728 } else {
1729 currentState.restore();
1730 }
1731
1732 // In either case, we set the occupied array as marked for the location of the views
1733 for (View v: cluster.views) {
1734 CellAndSpan c = currentState.map.get(v);
1735 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, true);
1736 }
1737
1738 return foundSolution;
Adam Cohene0489502012-08-27 15:18:53 -07001739 }
1740
Adam Cohen482ed822012-03-02 14:15:13 -08001741 private boolean addViewsToTempLocation(ArrayList<View> views, Rect rectOccupiedByPotentialDrop,
Adam Cohenf3900c22012-11-16 18:28:11 -08001742 int[] direction, View dragView, ItemConfiguration currentState) {
Adam Cohen482ed822012-03-02 14:15:13 -08001743 if (views.size() == 0) return true;
Adam Cohen482ed822012-03-02 14:15:13 -08001744
Adam Cohen8baab352012-03-20 17:39:21 -07001745 boolean success = false;
Adam Cohen482ed822012-03-02 14:15:13 -08001746 Rect boundingRect = null;
Adam Cohen8baab352012-03-20 17:39:21 -07001747 // We construct a rect which represents the entire group of views passed in
Adam Cohen482ed822012-03-02 14:15:13 -08001748 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001749 CellAndSpan c = currentState.map.get(v);
Adam Cohen482ed822012-03-02 14:15:13 -08001750 if (boundingRect == null) {
Adam Cohen8baab352012-03-20 17:39:21 -07001751 boundingRect = new Rect(c.x, c.y, c.x + c.spanX, c.y + c.spanY);
Adam Cohen482ed822012-03-02 14:15:13 -08001752 } else {
Adam Cohen8baab352012-03-20 17:39:21 -07001753 boundingRect.union(c.x, c.y, c.x + c.spanX, c.y + c.spanY);
Adam Cohen482ed822012-03-02 14:15:13 -08001754 }
1755 }
Adam Cohen8baab352012-03-20 17:39:21 -07001756
Adam Cohen8baab352012-03-20 17:39:21 -07001757 // Mark the occupied state as false for the group of views we want to move.
Adam Cohenf3900c22012-11-16 18:28:11 -08001758 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001759 CellAndSpan c = currentState.map.get(v);
1760 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, false);
1761 }
1762
Adam Cohen47a876d2012-03-19 13:21:41 -07001763 boolean[][] blockOccupied = new boolean[boundingRect.width()][boundingRect.height()];
1764 int top = boundingRect.top;
1765 int left = boundingRect.left;
Adam Cohen8baab352012-03-20 17:39:21 -07001766 // We mark more precisely which parts of the bounding rect are truly occupied, allowing
Adam Cohena56dc102012-07-13 13:41:42 -07001767 // for interlocking.
Adam Cohenf3900c22012-11-16 18:28:11 -08001768 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001769 CellAndSpan c = currentState.map.get(v);
1770 markCellsForView(c.x - left, c.y - top, c.spanX, c.spanY, blockOccupied, true);
Adam Cohen47a876d2012-03-19 13:21:41 -07001771 }
1772
Adam Cohen482ed822012-03-02 14:15:13 -08001773 markCellsForRect(rectOccupiedByPotentialDrop, mTmpOccupied, true);
1774
Adam Cohenf3900c22012-11-16 18:28:11 -08001775 findNearestArea(boundingRect.left, boundingRect.top, boundingRect.width(),
1776 boundingRect.height(), direction, mTmpOccupied, blockOccupied, mTempLocation);
Adam Cohen482ed822012-03-02 14:15:13 -08001777
Adam Cohen8baab352012-03-20 17:39:21 -07001778 // If we successfuly found a location by pushing the block of views, we commit it
Adam Cohen482ed822012-03-02 14:15:13 -08001779 if (mTempLocation[0] >= 0 && mTempLocation[1] >= 0) {
Adam Cohen8baab352012-03-20 17:39:21 -07001780 int deltaX = mTempLocation[0] - boundingRect.left;
1781 int deltaY = mTempLocation[1] - boundingRect.top;
Adam Cohenf3900c22012-11-16 18:28:11 -08001782 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001783 CellAndSpan c = currentState.map.get(v);
1784 c.x += deltaX;
1785 c.y += deltaY;
Adam Cohen482ed822012-03-02 14:15:13 -08001786 }
1787 success = true;
1788 }
Adam Cohen8baab352012-03-20 17:39:21 -07001789
1790 // In either case, we set the occupied array as marked for the location of the views
Adam Cohenf3900c22012-11-16 18:28:11 -08001791 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001792 CellAndSpan c = currentState.map.get(v);
1793 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001794 }
1795 return success;
1796 }
1797
1798 private void markCellsForRect(Rect r, boolean[][] occupied, boolean value) {
1799 markCellsForView(r.left, r.top, r.width(), r.height(), occupied, value);
1800 }
1801
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001802 // This method tries to find a reordering solution which satisfies the push mechanic by trying
1803 // to push items in each of the cardinal directions, in an order based on the direction vector
1804 // passed.
1805 private boolean attemptPushInDirection(ArrayList<View> intersectingViews, Rect occupied,
1806 int[] direction, View ignoreView, ItemConfiguration solution) {
1807 if ((Math.abs(direction[0]) + Math.abs(direction[1])) > 1) {
Winson Chung5f8afe62013-08-12 16:19:28 -07001808 // If the direction vector has two non-zero components, we try pushing
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001809 // separately in each of the components.
1810 int temp = direction[1];
1811 direction[1] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08001812
1813 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001814 ignoreView, solution)) {
1815 return true;
1816 }
1817 direction[1] = temp;
1818 temp = direction[0];
1819 direction[0] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08001820
1821 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001822 ignoreView, solution)) {
1823 return true;
1824 }
1825 // Revert the direction
1826 direction[0] = temp;
1827
1828 // Now we try pushing in each component of the opposite direction
1829 direction[0] *= -1;
1830 direction[1] *= -1;
1831 temp = direction[1];
1832 direction[1] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08001833 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001834 ignoreView, solution)) {
1835 return true;
1836 }
1837
1838 direction[1] = temp;
1839 temp = direction[0];
1840 direction[0] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08001841 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001842 ignoreView, solution)) {
1843 return true;
1844 }
1845 // revert the direction
1846 direction[0] = temp;
1847 direction[0] *= -1;
1848 direction[1] *= -1;
Winson Chung5f8afe62013-08-12 16:19:28 -07001849
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001850 } else {
1851 // If the direction vector has a single non-zero component, we push first in the
1852 // direction of the vector
Adam Cohenf3900c22012-11-16 18:28:11 -08001853 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001854 ignoreView, solution)) {
1855 return true;
1856 }
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001857 // Then we try the opposite direction
1858 direction[0] *= -1;
1859 direction[1] *= -1;
Adam Cohenf3900c22012-11-16 18:28:11 -08001860 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001861 ignoreView, solution)) {
1862 return true;
1863 }
1864 // Switch the direction back
1865 direction[0] *= -1;
1866 direction[1] *= -1;
Winson Chung5f8afe62013-08-12 16:19:28 -07001867
1868 // If we have failed to find a push solution with the above, then we try
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001869 // to find a solution by pushing along the perpendicular axis.
1870
1871 // Swap the components
1872 int temp = direction[1];
1873 direction[1] = direction[0];
1874 direction[0] = temp;
Adam Cohenf3900c22012-11-16 18:28:11 -08001875 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001876 ignoreView, solution)) {
1877 return true;
1878 }
1879
1880 // Then we try the opposite direction
1881 direction[0] *= -1;
1882 direction[1] *= -1;
Adam Cohenf3900c22012-11-16 18:28:11 -08001883 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001884 ignoreView, solution)) {
1885 return true;
1886 }
1887 // Switch the direction back
1888 direction[0] *= -1;
1889 direction[1] *= -1;
1890
1891 // Swap the components back
1892 temp = direction[1];
1893 direction[1] = direction[0];
1894 direction[0] = temp;
1895 }
1896 return false;
1897 }
1898
Adam Cohen482ed822012-03-02 14:15:13 -08001899 private boolean rearrangementExists(int cellX, int cellY, int spanX, int spanY, int[] direction,
Adam Cohen8baab352012-03-20 17:39:21 -07001900 View ignoreView, ItemConfiguration solution) {
Winson Chunge3e03bc2012-05-01 15:10:11 -07001901 // Return early if get invalid cell positions
1902 if (cellX < 0 || cellY < 0) return false;
Adam Cohen482ed822012-03-02 14:15:13 -08001903
Adam Cohen8baab352012-03-20 17:39:21 -07001904 mIntersectingViews.clear();
Adam Cohen482ed822012-03-02 14:15:13 -08001905 mOccupiedRect.set(cellX, cellY, cellX + spanX, cellY + spanY);
Adam Cohen482ed822012-03-02 14:15:13 -08001906
Adam Cohen8baab352012-03-20 17:39:21 -07001907 // Mark the desired location of the view currently being dragged.
Adam Cohen482ed822012-03-02 14:15:13 -08001908 if (ignoreView != null) {
Adam Cohen8baab352012-03-20 17:39:21 -07001909 CellAndSpan c = solution.map.get(ignoreView);
Adam Cohen19f37922012-03-21 11:59:11 -07001910 if (c != null) {
1911 c.x = cellX;
1912 c.y = cellY;
1913 }
Adam Cohen482ed822012-03-02 14:15:13 -08001914 }
Adam Cohen482ed822012-03-02 14:15:13 -08001915 Rect r0 = new Rect(cellX, cellY, cellX + spanX, cellY + spanY);
1916 Rect r1 = new Rect();
Adam Cohen8baab352012-03-20 17:39:21 -07001917 for (View child: solution.map.keySet()) {
Adam Cohen482ed822012-03-02 14:15:13 -08001918 if (child == ignoreView) continue;
Adam Cohen8baab352012-03-20 17:39:21 -07001919 CellAndSpan c = solution.map.get(child);
Adam Cohen482ed822012-03-02 14:15:13 -08001920 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Adam Cohen8baab352012-03-20 17:39:21 -07001921 r1.set(c.x, c.y, c.x + c.spanX, c.y + c.spanY);
Adam Cohen482ed822012-03-02 14:15:13 -08001922 if (Rect.intersects(r0, r1)) {
1923 if (!lp.canReorder) {
1924 return false;
1925 }
1926 mIntersectingViews.add(child);
1927 }
1928 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001929
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001930 solution.intersectingViews = new ArrayList<View>(mIntersectingViews);
1931
Winson Chung5f8afe62013-08-12 16:19:28 -07001932 // First we try to find a solution which respects the push mechanic. That is,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001933 // we try to find a solution such that no displaced item travels through another item
1934 // without also displacing that item.
1935 if (attemptPushInDirection(mIntersectingViews, mOccupiedRect, direction, ignoreView,
Adam Cohen19f37922012-03-21 11:59:11 -07001936 solution)) {
Adam Cohen47a876d2012-03-19 13:21:41 -07001937 return true;
1938 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001939
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001940 // Next we try moving the views as a block, but without requiring the push mechanic.
Adam Cohenf3900c22012-11-16 18:28:11 -08001941 if (addViewsToTempLocation(mIntersectingViews, mOccupiedRect, direction, ignoreView,
Adam Cohen19f37922012-03-21 11:59:11 -07001942 solution)) {
Adam Cohen482ed822012-03-02 14:15:13 -08001943 return true;
1944 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001945
Adam Cohen482ed822012-03-02 14:15:13 -08001946 // Ok, they couldn't move as a block, let's move them individually
1947 for (View v : mIntersectingViews) {
Adam Cohen8baab352012-03-20 17:39:21 -07001948 if (!addViewToTempLocation(v, mOccupiedRect, direction, solution)) {
Adam Cohen482ed822012-03-02 14:15:13 -08001949 return false;
1950 }
1951 }
1952 return true;
1953 }
1954
1955 /*
1956 * Returns a pair (x, y), where x,y are in {-1, 0, 1} corresponding to vector between
1957 * the provided point and the provided cell
1958 */
Adam Cohen47a876d2012-03-19 13:21:41 -07001959 private void computeDirectionVector(float deltaX, float deltaY, int[] result) {
Adam Cohen482ed822012-03-02 14:15:13 -08001960 double angle = Math.atan(((float) deltaY) / deltaX);
1961
1962 result[0] = 0;
1963 result[1] = 0;
1964 if (Math.abs(Math.cos(angle)) > 0.5f) {
1965 result[0] = (int) Math.signum(deltaX);
1966 }
1967 if (Math.abs(Math.sin(angle)) > 0.5f) {
1968 result[1] = (int) Math.signum(deltaY);
1969 }
1970 }
1971
Adam Cohen8baab352012-03-20 17:39:21 -07001972 private void copyOccupiedArray(boolean[][] occupied) {
1973 for (int i = 0; i < mCountX; i++) {
1974 for (int j = 0; j < mCountY; j++) {
1975 occupied[i][j] = mOccupied[i][j];
1976 }
1977 }
1978 }
1979
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001980 private ItemConfiguration findReorderSolution(int pixelX, int pixelY, int minSpanX, int minSpanY,
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001981 int spanX, int spanY, int[] direction, View dragView, boolean decX,
1982 ItemConfiguration solution) {
Adam Cohen8baab352012-03-20 17:39:21 -07001983 // Copy the current state into the solution. This solution will be manipulated as necessary.
1984 copyCurrentStateToSolution(solution, false);
1985 // Copy the current occupied array into the temporary occupied array. This array will be
1986 // manipulated as necessary to find a solution.
1987 copyOccupiedArray(mTmpOccupied);
Adam Cohen482ed822012-03-02 14:15:13 -08001988
1989 // We find the nearest cell into which we would place the dragged item, assuming there's
1990 // nothing in its way.
1991 int result[] = new int[2];
1992 result = findNearestArea(pixelX, pixelY, spanX, spanY, result);
1993
1994 boolean success = false;
1995 // First we try the exact nearest position of the item being dragged,
1996 // we will then want to try to move this around to other neighbouring positions
Adam Cohen8baab352012-03-20 17:39:21 -07001997 success = rearrangementExists(result[0], result[1], spanX, spanY, direction, dragView,
1998 solution);
Adam Cohen482ed822012-03-02 14:15:13 -08001999
2000 if (!success) {
2001 // We try shrinking the widget down to size in an alternating pattern, shrink 1 in
2002 // x, then 1 in y etc.
2003 if (spanX > minSpanX && (minSpanY == spanY || decX)) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002004 return findReorderSolution(pixelX, pixelY, minSpanX, minSpanY, spanX - 1, spanY,
2005 direction, dragView, false, solution);
Adam Cohen482ed822012-03-02 14:15:13 -08002006 } else if (spanY > minSpanY) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002007 return findReorderSolution(pixelX, pixelY, minSpanX, minSpanY, spanX, spanY - 1,
2008 direction, dragView, true, solution);
Adam Cohen482ed822012-03-02 14:15:13 -08002009 }
2010 solution.isSolution = false;
2011 } else {
2012 solution.isSolution = true;
2013 solution.dragViewX = result[0];
2014 solution.dragViewY = result[1];
2015 solution.dragViewSpanX = spanX;
2016 solution.dragViewSpanY = spanY;
Adam Cohen482ed822012-03-02 14:15:13 -08002017 }
2018 return solution;
2019 }
2020
2021 private void copyCurrentStateToSolution(ItemConfiguration solution, boolean temp) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002022 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08002023 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002024 View child = mShortcutsAndWidgets.getChildAt(i);
Adam Cohen482ed822012-03-02 14:15:13 -08002025 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Adam Cohen8baab352012-03-20 17:39:21 -07002026 CellAndSpan c;
Adam Cohen482ed822012-03-02 14:15:13 -08002027 if (temp) {
Adam Cohen8baab352012-03-20 17:39:21 -07002028 c = new CellAndSpan(lp.tmpCellX, lp.tmpCellY, lp.cellHSpan, lp.cellVSpan);
Adam Cohen482ed822012-03-02 14:15:13 -08002029 } else {
Adam Cohen8baab352012-03-20 17:39:21 -07002030 c = new CellAndSpan(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan);
Adam Cohen482ed822012-03-02 14:15:13 -08002031 }
Adam Cohenf3900c22012-11-16 18:28:11 -08002032 solution.add(child, c);
Adam Cohen482ed822012-03-02 14:15:13 -08002033 }
2034 }
2035
2036 private void copySolutionToTempState(ItemConfiguration solution, View dragView) {
2037 for (int i = 0; i < mCountX; i++) {
2038 for (int j = 0; j < mCountY; j++) {
2039 mTmpOccupied[i][j] = false;
2040 }
2041 }
2042
Michael Jurkaa52570f2012-03-20 03:18:20 -07002043 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08002044 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002045 View child = mShortcutsAndWidgets.getChildAt(i);
Adam Cohen482ed822012-03-02 14:15:13 -08002046 if (child == dragView) continue;
2047 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Adam Cohen8baab352012-03-20 17:39:21 -07002048 CellAndSpan c = solution.map.get(child);
2049 if (c != null) {
2050 lp.tmpCellX = c.x;
2051 lp.tmpCellY = c.y;
2052 lp.cellHSpan = c.spanX;
2053 lp.cellVSpan = c.spanY;
2054 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, true);
Adam Cohen482ed822012-03-02 14:15:13 -08002055 }
2056 }
2057 markCellsForView(solution.dragViewX, solution.dragViewY, solution.dragViewSpanX,
2058 solution.dragViewSpanY, mTmpOccupied, true);
2059 }
2060
2061 private void animateItemsToSolution(ItemConfiguration solution, View dragView, boolean
2062 commitDragView) {
2063
2064 boolean[][] occupied = DESTRUCTIVE_REORDER ? mOccupied : mTmpOccupied;
2065 for (int i = 0; i < mCountX; i++) {
2066 for (int j = 0; j < mCountY; j++) {
2067 occupied[i][j] = false;
2068 }
2069 }
2070
Michael Jurkaa52570f2012-03-20 03:18:20 -07002071 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08002072 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002073 View child = mShortcutsAndWidgets.getChildAt(i);
Adam Cohen482ed822012-03-02 14:15:13 -08002074 if (child == dragView) continue;
Adam Cohen8baab352012-03-20 17:39:21 -07002075 CellAndSpan c = solution.map.get(child);
2076 if (c != null) {
Adam Cohen19f37922012-03-21 11:59:11 -07002077 animateChildToPosition(child, c.x, c.y, REORDER_ANIMATION_DURATION, 0,
2078 DESTRUCTIVE_REORDER, false);
Adam Cohen8baab352012-03-20 17:39:21 -07002079 markCellsForView(c.x, c.y, c.spanX, c.spanY, occupied, true);
Adam Cohen482ed822012-03-02 14:15:13 -08002080 }
2081 }
2082 if (commitDragView) {
2083 markCellsForView(solution.dragViewX, solution.dragViewY, solution.dragViewSpanX,
2084 solution.dragViewSpanY, occupied, true);
2085 }
2086 }
2087
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002088
2089 // This method starts or changes the reorder preview animations
2090 private void beginOrAdjustReorderPreviewAnimations(ItemConfiguration solution,
2091 View dragView, int delay, int mode) {
Adam Cohen19f37922012-03-21 11:59:11 -07002092 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen19f37922012-03-21 11:59:11 -07002093 for (int i = 0; i < childCount; i++) {
2094 View child = mShortcutsAndWidgets.getChildAt(i);
2095 if (child == dragView) continue;
2096 CellAndSpan c = solution.map.get(child);
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002097 boolean skip = mode == ReorderPreviewAnimation.MODE_HINT && solution.intersectingViews
2098 != null && !solution.intersectingViews.contains(child);
2099
Adam Cohen19f37922012-03-21 11:59:11 -07002100 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002101 if (c != null && !skip) {
2102 ReorderPreviewAnimation rha = new ReorderPreviewAnimation(child, mode, lp.cellX,
2103 lp.cellY, c.x, c.y, c.spanX, c.spanY);
Adam Cohend024f982012-05-23 18:26:45 -07002104 rha.animate();
Adam Cohen19f37922012-03-21 11:59:11 -07002105 }
2106 }
2107 }
2108
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002109 // Class which represents the reorder preview animations. These animations show that an item is
Adam Cohen19f37922012-03-21 11:59:11 -07002110 // in a temporary state, and hint at where the item will return to.
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002111 class ReorderPreviewAnimation {
Adam Cohen19f37922012-03-21 11:59:11 -07002112 View child;
Adam Cohend024f982012-05-23 18:26:45 -07002113 float finalDeltaX;
2114 float finalDeltaY;
2115 float initDeltaX;
2116 float initDeltaY;
2117 float finalScale;
2118 float initScale;
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002119 int mode;
2120 boolean repeating = false;
2121 private static final int PREVIEW_DURATION = 300;
2122 private static final int HINT_DURATION = Workspace.REORDER_TIMEOUT;
2123
2124 public static final int MODE_HINT = 0;
2125 public static final int MODE_PREVIEW = 1;
2126
Adam Cohene7587d22012-05-24 18:50:02 -07002127 Animator a;
Adam Cohen19f37922012-03-21 11:59:11 -07002128
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002129 public ReorderPreviewAnimation(View child, int mode, int cellX0, int cellY0, int cellX1,
2130 int cellY1, int spanX, int spanY) {
Adam Cohen19f37922012-03-21 11:59:11 -07002131 regionToCenterPoint(cellX0, cellY0, spanX, spanY, mTmpPoint);
2132 final int x0 = mTmpPoint[0];
2133 final int y0 = mTmpPoint[1];
2134 regionToCenterPoint(cellX1, cellY1, spanX, spanY, mTmpPoint);
2135 final int x1 = mTmpPoint[0];
2136 final int y1 = mTmpPoint[1];
2137 final int dX = x1 - x0;
2138 final int dY = y1 - y0;
Adam Cohend024f982012-05-23 18:26:45 -07002139 finalDeltaX = 0;
2140 finalDeltaY = 0;
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002141 int dir = mode == MODE_HINT ? -1 : 1;
Adam Cohen19f37922012-03-21 11:59:11 -07002142 if (dX == dY && dX == 0) {
2143 } else {
2144 if (dY == 0) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002145 finalDeltaX = - dir * Math.signum(dX) * mReorderPreviewAnimationMagnitude;
Adam Cohen19f37922012-03-21 11:59:11 -07002146 } else if (dX == 0) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002147 finalDeltaY = - dir * Math.signum(dY) * mReorderPreviewAnimationMagnitude;
Adam Cohen19f37922012-03-21 11:59:11 -07002148 } else {
2149 double angle = Math.atan( (float) (dY) / dX);
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002150 finalDeltaX = (int) (- dir * Math.signum(dX) *
2151 Math.abs(Math.cos(angle) * mReorderPreviewAnimationMagnitude));
2152 finalDeltaY = (int) (- dir * Math.signum(dY) *
2153 Math.abs(Math.sin(angle) * mReorderPreviewAnimationMagnitude));
Adam Cohen19f37922012-03-21 11:59:11 -07002154 }
2155 }
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002156 this.mode = mode;
Adam Cohend024f982012-05-23 18:26:45 -07002157 initDeltaX = child.getTranslationX();
2158 initDeltaY = child.getTranslationY();
Adam Cohen307fe232012-08-16 17:55:58 -07002159 finalScale = getChildrenScale() - 4.0f / child.getWidth();
Adam Cohend024f982012-05-23 18:26:45 -07002160 initScale = child.getScaleX();
Adam Cohen19f37922012-03-21 11:59:11 -07002161 this.child = child;
2162 }
2163
Adam Cohend024f982012-05-23 18:26:45 -07002164 void animate() {
Adam Cohen19f37922012-03-21 11:59:11 -07002165 if (mShakeAnimators.containsKey(child)) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002166 ReorderPreviewAnimation oldAnimation = mShakeAnimators.get(child);
Adam Cohend024f982012-05-23 18:26:45 -07002167 oldAnimation.cancel();
Adam Cohen19f37922012-03-21 11:59:11 -07002168 mShakeAnimators.remove(child);
Adam Cohene7587d22012-05-24 18:50:02 -07002169 if (finalDeltaX == 0 && finalDeltaY == 0) {
2170 completeAnimationImmediately();
2171 return;
2172 }
Adam Cohen19f37922012-03-21 11:59:11 -07002173 }
Adam Cohend024f982012-05-23 18:26:45 -07002174 if (finalDeltaX == 0 && finalDeltaY == 0) {
Adam Cohen19f37922012-03-21 11:59:11 -07002175 return;
2176 }
Michael Jurkaf1ad6082013-03-13 12:55:46 +01002177 ValueAnimator va = LauncherAnimUtils.ofFloat(child, 0f, 1f);
Adam Cohene7587d22012-05-24 18:50:02 -07002178 a = va;
Tony Wickham9e0702f2015-09-02 14:45:39 -07002179
2180 // Animations are disabled in power save mode, causing the repeated animation to jump
2181 // spastically between beginning and end states. Since this looks bad, we don't repeat
2182 // the animation in power save mode.
Tony Wickham112ac952015-11-12 12:31:50 -08002183 if (!Utilities.isPowerSaverOn(getContext())) {
Tony Wickham9e0702f2015-09-02 14:45:39 -07002184 va.setRepeatMode(ValueAnimator.REVERSE);
2185 va.setRepeatCount(ValueAnimator.INFINITE);
2186 }
2187
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002188 va.setDuration(mode == MODE_HINT ? HINT_DURATION : PREVIEW_DURATION);
Adam Cohend024f982012-05-23 18:26:45 -07002189 va.setStartDelay((int) (Math.random() * 60));
Adam Cohen19f37922012-03-21 11:59:11 -07002190 va.addUpdateListener(new AnimatorUpdateListener() {
2191 @Override
2192 public void onAnimationUpdate(ValueAnimator animation) {
2193 float r = ((Float) animation.getAnimatedValue()).floatValue();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002194 float r1 = (mode == MODE_HINT && repeating) ? 1.0f : r;
2195 float x = r1 * finalDeltaX + (1 - r1) * initDeltaX;
2196 float y = r1 * finalDeltaY + (1 - r1) * initDeltaY;
Adam Cohen19f37922012-03-21 11:59:11 -07002197 child.setTranslationX(x);
2198 child.setTranslationY(y);
Adam Cohend024f982012-05-23 18:26:45 -07002199 float s = r * finalScale + (1 - r) * initScale;
Brandon Keely50e6e562012-05-08 16:28:49 -07002200 child.setScaleX(s);
2201 child.setScaleY(s);
Adam Cohen19f37922012-03-21 11:59:11 -07002202 }
2203 });
2204 va.addListener(new AnimatorListenerAdapter() {
2205 public void onAnimationRepeat(Animator animation) {
Adam Cohen19f37922012-03-21 11:59:11 -07002206 // We make sure to end only after a full period
Adam Cohend024f982012-05-23 18:26:45 -07002207 initDeltaX = 0;
2208 initDeltaY = 0;
Adam Cohen307fe232012-08-16 17:55:58 -07002209 initScale = getChildrenScale();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002210 repeating = true;
Adam Cohen19f37922012-03-21 11:59:11 -07002211 }
2212 });
Adam Cohen19f37922012-03-21 11:59:11 -07002213 mShakeAnimators.put(child, this);
2214 va.start();
2215 }
2216
Adam Cohend024f982012-05-23 18:26:45 -07002217 private void cancel() {
Adam Cohene7587d22012-05-24 18:50:02 -07002218 if (a != null) {
2219 a.cancel();
2220 }
Adam Cohen19f37922012-03-21 11:59:11 -07002221 }
Adam Cohene7587d22012-05-24 18:50:02 -07002222
Adam Cohen091440a2015-03-18 14:16:05 -07002223 @Thunk void completeAnimationImmediately() {
Adam Cohene7587d22012-05-24 18:50:02 -07002224 if (a != null) {
2225 a.cancel();
2226 }
Brandon Keely50e6e562012-05-08 16:28:49 -07002227
Sunny Goyal5d2fc322015-07-06 22:52:49 -07002228 a = new LauncherViewPropertyAnimator(child)
2229 .scaleX(getChildrenScale())
2230 .scaleY(getChildrenScale())
2231 .translationX(0)
2232 .translationY(0)
2233 .setDuration(REORDER_ANIMATION_DURATION);
2234 a.setInterpolator(new android.view.animation.DecelerateInterpolator(1.5f));
2235 a.start();
Brandon Keely50e6e562012-05-08 16:28:49 -07002236 }
Adam Cohen19f37922012-03-21 11:59:11 -07002237 }
2238
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002239 private void completeAndClearReorderPreviewAnimations() {
2240 for (ReorderPreviewAnimation a: mShakeAnimators.values()) {
Brandon Keely50e6e562012-05-08 16:28:49 -07002241 a.completeAnimationImmediately();
Adam Cohen19f37922012-03-21 11:59:11 -07002242 }
2243 mShakeAnimators.clear();
2244 }
2245
Adam Cohen482ed822012-03-02 14:15:13 -08002246 private void commitTempPlacement() {
2247 for (int i = 0; i < mCountX; i++) {
2248 for (int j = 0; j < mCountY; j++) {
2249 mOccupied[i][j] = mTmpOccupied[i][j];
2250 }
2251 }
Sunny Goyalaa8ef112015-06-12 20:04:41 -07002252
2253 long screenId = mLauncher.getWorkspace().getIdForScreen(this);
2254 int container = Favorites.CONTAINER_DESKTOP;
2255
2256 if (mLauncher.isHotseatLayout(this)) {
2257 screenId = -1;
2258 container = Favorites.CONTAINER_HOTSEAT;
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) {
Sunny Goyalaa8ef112015-06-12 20:04:41 -07002269 final boolean requiresDbUpdate = (info.cellX != lp.tmpCellX
2270 || info.cellY != lp.tmpCellY || info.spanX != lp.cellHSpan
2271 || info.spanY != lp.cellVSpan);
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;
Sunny Goyalaa8ef112015-06-12 20:04:41 -07002277
2278 if (requiresDbUpdate) {
2279 LauncherModel.modifyItemInDatabase(mLauncher, info, container, screenId,
2280 info.cellX, info.cellY, info.spanX, info.spanY);
2281 }
Adam Cohen2acce882012-03-28 19:03:19 -07002282 }
Adam Cohen482ed822012-03-02 14:15:13 -08002283 }
2284 }
2285
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002286 private void setUseTempCoords(boolean useTempCoords) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002287 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08002288 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002289 LayoutParams lp = (LayoutParams) mShortcutsAndWidgets.getChildAt(i).getLayoutParams();
Adam Cohen482ed822012-03-02 14:15:13 -08002290 lp.useTmpCoords = useTempCoords;
2291 }
2292 }
2293
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002294 private ItemConfiguration findConfigurationNoShuffle(int pixelX, int pixelY, int minSpanX, int minSpanY,
Adam Cohen482ed822012-03-02 14:15:13 -08002295 int spanX, int spanY, View dragView, ItemConfiguration solution) {
2296 int[] result = new int[2];
2297 int[] resultSpan = new int[2];
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002298 findNearestVacantArea(pixelX, pixelY, minSpanX, minSpanY, spanX, spanY, result,
Adam Cohen482ed822012-03-02 14:15:13 -08002299 resultSpan);
2300 if (result[0] >= 0 && result[1] >= 0) {
2301 copyCurrentStateToSolution(solution, false);
2302 solution.dragViewX = result[0];
2303 solution.dragViewY = result[1];
2304 solution.dragViewSpanX = resultSpan[0];
2305 solution.dragViewSpanY = resultSpan[1];
2306 solution.isSolution = true;
2307 } else {
2308 solution.isSolution = false;
2309 }
2310 return solution;
2311 }
2312
2313 public void prepareChildForDrag(View child) {
2314 markCellsAsUnoccupiedForView(child);
Adam Cohen482ed822012-03-02 14:15:13 -08002315 }
2316
Adam Cohen19f37922012-03-21 11:59:11 -07002317 /* This seems like it should be obvious and straight-forward, but when the direction vector
2318 needs to match with the notion of the dragView pushing other views, we have to employ
2319 a slightly more subtle notion of the direction vector. The question is what two points is
2320 the vector between? The center of the dragView and its desired destination? Not quite, as
2321 this doesn't necessarily coincide with the interaction of the dragView and items occupying
2322 those cells. Instead we use some heuristics to often lock the vector to up, down, left
2323 or right, which helps make pushing feel right.
2324 */
2325 private void getDirectionVectorForDrop(int dragViewCenterX, int dragViewCenterY, int spanX,
2326 int spanY, View dragView, int[] resultDirection) {
2327 int[] targetDestination = new int[2];
2328
2329 findNearestArea(dragViewCenterX, dragViewCenterY, spanX, spanY, targetDestination);
2330 Rect dragRect = new Rect();
2331 regionToRect(targetDestination[0], targetDestination[1], spanX, spanY, dragRect);
2332 dragRect.offset(dragViewCenterX - dragRect.centerX(), dragViewCenterY - dragRect.centerY());
2333
2334 Rect dropRegionRect = new Rect();
2335 getViewsIntersectingRegion(targetDestination[0], targetDestination[1], spanX, spanY,
2336 dragView, dropRegionRect, mIntersectingViews);
2337
2338 int dropRegionSpanX = dropRegionRect.width();
2339 int dropRegionSpanY = dropRegionRect.height();
2340
2341 regionToRect(dropRegionRect.left, dropRegionRect.top, dropRegionRect.width(),
2342 dropRegionRect.height(), dropRegionRect);
2343
2344 int deltaX = (dropRegionRect.centerX() - dragViewCenterX) / spanX;
2345 int deltaY = (dropRegionRect.centerY() - dragViewCenterY) / spanY;
2346
2347 if (dropRegionSpanX == mCountX || spanX == mCountX) {
2348 deltaX = 0;
2349 }
2350 if (dropRegionSpanY == mCountY || spanY == mCountY) {
2351 deltaY = 0;
2352 }
2353
2354 if (deltaX == 0 && deltaY == 0) {
2355 // No idea what to do, give a random direction.
2356 resultDirection[0] = 1;
2357 resultDirection[1] = 0;
2358 } else {
2359 computeDirectionVector(deltaX, deltaY, resultDirection);
2360 }
2361 }
2362
2363 // For a given cell and span, fetch the set of views intersecting the region.
2364 private void getViewsIntersectingRegion(int cellX, int cellY, int spanX, int spanY,
2365 View dragView, Rect boundingRect, ArrayList<View> intersectingViews) {
2366 if (boundingRect != null) {
2367 boundingRect.set(cellX, cellY, cellX + spanX, cellY + spanY);
2368 }
2369 intersectingViews.clear();
2370 Rect r0 = new Rect(cellX, cellY, cellX + spanX, cellY + spanY);
2371 Rect r1 = new Rect();
2372 final int count = mShortcutsAndWidgets.getChildCount();
2373 for (int i = 0; i < count; i++) {
2374 View child = mShortcutsAndWidgets.getChildAt(i);
2375 if (child == dragView) continue;
2376 LayoutParams lp = (LayoutParams) child.getLayoutParams();
2377 r1.set(lp.cellX, lp.cellY, lp.cellX + lp.cellHSpan, lp.cellY + lp.cellVSpan);
2378 if (Rect.intersects(r0, r1)) {
2379 mIntersectingViews.add(child);
2380 if (boundingRect != null) {
2381 boundingRect.union(r1);
2382 }
2383 }
2384 }
2385 }
2386
2387 boolean isNearestDropLocationOccupied(int pixelX, int pixelY, int spanX, int spanY,
2388 View dragView, int[] result) {
2389 result = findNearestArea(pixelX, pixelY, spanX, spanY, result);
2390 getViewsIntersectingRegion(result[0], result[1], spanX, spanY, dragView, null,
2391 mIntersectingViews);
2392 return !mIntersectingViews.isEmpty();
2393 }
2394
2395 void revertTempState() {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002396 completeAndClearReorderPreviewAnimations();
2397 if (isItemPlacementDirty() && !DESTRUCTIVE_REORDER) {
2398 final int count = mShortcutsAndWidgets.getChildCount();
2399 for (int i = 0; i < count; i++) {
2400 View child = mShortcutsAndWidgets.getChildAt(i);
2401 LayoutParams lp = (LayoutParams) child.getLayoutParams();
2402 if (lp.tmpCellX != lp.cellX || lp.tmpCellY != lp.cellY) {
2403 lp.tmpCellX = lp.cellX;
2404 lp.tmpCellY = lp.cellY;
2405 animateChildToPosition(child, lp.cellX, lp.cellY, REORDER_ANIMATION_DURATION,
2406 0, false, false);
2407 }
Adam Cohen19f37922012-03-21 11:59:11 -07002408 }
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002409 setItemPlacementDirty(false);
Adam Cohen19f37922012-03-21 11:59:11 -07002410 }
Adam Cohen19f37922012-03-21 11:59:11 -07002411 }
2412
Adam Cohenbebf0422012-04-11 18:06:28 -07002413 boolean createAreaForResize(int cellX, int cellY, int spanX, int spanY,
2414 View dragView, int[] direction, boolean commit) {
2415 int[] pixelXY = new int[2];
2416 regionToCenterPoint(cellX, cellY, spanX, spanY, pixelXY);
2417
2418 // First we determine if things have moved enough to cause a different layout
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002419 ItemConfiguration swapSolution = findReorderSolution(pixelXY[0], pixelXY[1], spanX, spanY,
Adam Cohenbebf0422012-04-11 18:06:28 -07002420 spanX, spanY, direction, dragView, true, new ItemConfiguration());
2421
2422 setUseTempCoords(true);
2423 if (swapSolution != null && swapSolution.isSolution) {
2424 // If we're just testing for a possible location (MODE_ACCEPT_DROP), we don't bother
2425 // committing anything or animating anything as we just want to determine if a solution
2426 // exists
2427 copySolutionToTempState(swapSolution, dragView);
2428 setItemPlacementDirty(true);
2429 animateItemsToSolution(swapSolution, dragView, commit);
2430
2431 if (commit) {
2432 commitTempPlacement();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002433 completeAndClearReorderPreviewAnimations();
Adam Cohenbebf0422012-04-11 18:06:28 -07002434 setItemPlacementDirty(false);
2435 } else {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002436 beginOrAdjustReorderPreviewAnimations(swapSolution, dragView,
2437 REORDER_ANIMATION_DURATION, ReorderPreviewAnimation.MODE_PREVIEW);
Adam Cohenbebf0422012-04-11 18:06:28 -07002438 }
2439 mShortcutsAndWidgets.requestLayout();
2440 }
2441 return swapSolution.isSolution;
2442 }
2443
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002444 int[] performReorder(int pixelX, int pixelY, int minSpanX, int minSpanY, int spanX, int spanY,
Adam Cohen482ed822012-03-02 14:15:13 -08002445 View dragView, int[] result, int resultSpan[], int mode) {
Adam Cohen482ed822012-03-02 14:15:13 -08002446 // First we determine if things have moved enough to cause a different layout
Adam Cohen47a876d2012-03-19 13:21:41 -07002447 result = findNearestArea(pixelX, pixelY, spanX, spanY, result);
Adam Cohen482ed822012-03-02 14:15:13 -08002448
2449 if (resultSpan == null) {
2450 resultSpan = new int[2];
2451 }
2452
Adam Cohen19f37922012-03-21 11:59:11 -07002453 // When we are checking drop validity or actually dropping, we don't recompute the
2454 // direction vector, since we want the solution to match the preview, and it's possible
2455 // that the exact position of the item has changed to result in a new reordering outcome.
Adam Cohenb209e632012-03-27 17:09:36 -07002456 if ((mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL || mode == MODE_ACCEPT_DROP)
2457 && mPreviousReorderDirection[0] != INVALID_DIRECTION) {
Adam Cohen19f37922012-03-21 11:59:11 -07002458 mDirectionVector[0] = mPreviousReorderDirection[0];
2459 mDirectionVector[1] = mPreviousReorderDirection[1];
2460 // We reset this vector after drop
Adam Cohenb209e632012-03-27 17:09:36 -07002461 if (mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL) {
2462 mPreviousReorderDirection[0] = INVALID_DIRECTION;
2463 mPreviousReorderDirection[1] = INVALID_DIRECTION;
Adam Cohen19f37922012-03-21 11:59:11 -07002464 }
2465 } else {
2466 getDirectionVectorForDrop(pixelX, pixelY, spanX, spanY, dragView, mDirectionVector);
2467 mPreviousReorderDirection[0] = mDirectionVector[0];
2468 mPreviousReorderDirection[1] = mDirectionVector[1];
2469 }
2470
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002471 // Find a solution involving pushing / displacing any items in the way
2472 ItemConfiguration swapSolution = findReorderSolution(pixelX, pixelY, minSpanX, minSpanY,
Adam Cohen482ed822012-03-02 14:15:13 -08002473 spanX, spanY, mDirectionVector, dragView, true, new ItemConfiguration());
2474
2475 // We attempt the approach which doesn't shuffle views at all
2476 ItemConfiguration noShuffleSolution = findConfigurationNoShuffle(pixelX, pixelY, minSpanX,
2477 minSpanY, spanX, spanY, dragView, new ItemConfiguration());
2478
2479 ItemConfiguration finalSolution = null;
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002480
2481 // If the reorder solution requires resizing (shrinking) the item being dropped, we instead
2482 // favor a solution in which the item is not resized, but
Adam Cohen482ed822012-03-02 14:15:13 -08002483 if (swapSolution.isSolution && swapSolution.area() >= noShuffleSolution.area()) {
2484 finalSolution = swapSolution;
2485 } else if (noShuffleSolution.isSolution) {
2486 finalSolution = noShuffleSolution;
2487 }
2488
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002489 if (mode == MODE_SHOW_REORDER_HINT) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002490 if (finalSolution != null) {
Adam Cohenfe692872013-12-11 14:47:23 -08002491 beginOrAdjustReorderPreviewAnimations(finalSolution, dragView, 0,
2492 ReorderPreviewAnimation.MODE_HINT);
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002493 result[0] = finalSolution.dragViewX;
2494 result[1] = finalSolution.dragViewY;
2495 resultSpan[0] = finalSolution.dragViewSpanX;
2496 resultSpan[1] = finalSolution.dragViewSpanY;
2497 } else {
2498 result[0] = result[1] = resultSpan[0] = resultSpan[1] = -1;
2499 }
2500 return result;
2501 }
2502
Adam Cohen482ed822012-03-02 14:15:13 -08002503 boolean foundSolution = true;
2504 if (!DESTRUCTIVE_REORDER) {
2505 setUseTempCoords(true);
2506 }
2507
2508 if (finalSolution != null) {
2509 result[0] = finalSolution.dragViewX;
2510 result[1] = finalSolution.dragViewY;
2511 resultSpan[0] = finalSolution.dragViewSpanX;
2512 resultSpan[1] = finalSolution.dragViewSpanY;
2513
2514 // If we're just testing for a possible location (MODE_ACCEPT_DROP), we don't bother
2515 // committing anything or animating anything as we just want to determine if a solution
2516 // exists
2517 if (mode == MODE_DRAG_OVER || mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL) {
2518 if (!DESTRUCTIVE_REORDER) {
2519 copySolutionToTempState(finalSolution, dragView);
2520 }
2521 setItemPlacementDirty(true);
2522 animateItemsToSolution(finalSolution, dragView, mode == MODE_ON_DROP);
2523
Adam Cohen19f37922012-03-21 11:59:11 -07002524 if (!DESTRUCTIVE_REORDER &&
2525 (mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL)) {
Adam Cohen482ed822012-03-02 14:15:13 -08002526 commitTempPlacement();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002527 completeAndClearReorderPreviewAnimations();
Adam Cohen19f37922012-03-21 11:59:11 -07002528 setItemPlacementDirty(false);
2529 } else {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002530 beginOrAdjustReorderPreviewAnimations(finalSolution, dragView,
2531 REORDER_ANIMATION_DURATION, ReorderPreviewAnimation.MODE_PREVIEW);
Adam Cohen482ed822012-03-02 14:15:13 -08002532 }
2533 }
2534 } else {
2535 foundSolution = false;
2536 result[0] = result[1] = resultSpan[0] = resultSpan[1] = -1;
2537 }
2538
2539 if ((mode == MODE_ON_DROP || !foundSolution) && !DESTRUCTIVE_REORDER) {
2540 setUseTempCoords(false);
2541 }
Adam Cohen482ed822012-03-02 14:15:13 -08002542
Michael Jurkaa52570f2012-03-20 03:18:20 -07002543 mShortcutsAndWidgets.requestLayout();
Adam Cohen482ed822012-03-02 14:15:13 -08002544 return result;
2545 }
2546
Adam Cohen19f37922012-03-21 11:59:11 -07002547 void setItemPlacementDirty(boolean dirty) {
2548 mItemPlacementDirty = dirty;
Adam Cohen482ed822012-03-02 14:15:13 -08002549 }
Adam Cohen19f37922012-03-21 11:59:11 -07002550 boolean isItemPlacementDirty() {
2551 return mItemPlacementDirty;
Adam Cohen482ed822012-03-02 14:15:13 -08002552 }
2553
Adam Cohen091440a2015-03-18 14:16:05 -07002554 @Thunk class ItemConfiguration {
Adam Cohen8baab352012-03-20 17:39:21 -07002555 HashMap<View, CellAndSpan> map = new HashMap<View, CellAndSpan>();
Adam Cohenf3900c22012-11-16 18:28:11 -08002556 private HashMap<View, CellAndSpan> savedMap = new HashMap<View, CellAndSpan>();
2557 ArrayList<View> sortedViews = new ArrayList<View>();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002558 ArrayList<View> intersectingViews;
Adam Cohen482ed822012-03-02 14:15:13 -08002559 boolean isSolution = false;
2560 int dragViewX, dragViewY, dragViewSpanX, dragViewSpanY;
2561
Adam Cohenf3900c22012-11-16 18:28:11 -08002562 void save() {
2563 // Copy current state into savedMap
2564 for (View v: map.keySet()) {
2565 map.get(v).copy(savedMap.get(v));
2566 }
2567 }
2568
2569 void restore() {
2570 // Restore current state from savedMap
2571 for (View v: savedMap.keySet()) {
2572 savedMap.get(v).copy(map.get(v));
2573 }
2574 }
2575
2576 void add(View v, CellAndSpan cs) {
2577 map.put(v, cs);
2578 savedMap.put(v, new CellAndSpan());
2579 sortedViews.add(v);
2580 }
2581
Adam Cohen482ed822012-03-02 14:15:13 -08002582 int area() {
2583 return dragViewSpanX * dragViewSpanY;
2584 }
Adam Cohen8baab352012-03-20 17:39:21 -07002585 }
2586
2587 private class CellAndSpan {
2588 int x, y;
2589 int spanX, spanY;
2590
Adam Cohenf3900c22012-11-16 18:28:11 -08002591 public CellAndSpan() {
2592 }
2593
2594 public void copy(CellAndSpan copy) {
2595 copy.x = x;
2596 copy.y = y;
2597 copy.spanX = spanX;
2598 copy.spanY = spanY;
2599 }
2600
Adam Cohen8baab352012-03-20 17:39:21 -07002601 public CellAndSpan(int x, int y, int spanX, int spanY) {
2602 this.x = x;
2603 this.y = y;
2604 this.spanX = spanX;
2605 this.spanY = spanY;
Adam Cohen482ed822012-03-02 14:15:13 -08002606 }
Adam Cohenf3900c22012-11-16 18:28:11 -08002607
2608 public String toString() {
2609 return "(" + x + ", " + y + ": " + spanX + ", " + spanY + ")";
2610 }
2611
Adam Cohen482ed822012-03-02 14:15:13 -08002612 }
2613
Adam Cohendf035382011-04-11 17:22:04 -07002614 /**
Adam Cohendf035382011-04-11 17:22:04 -07002615 * Find a starting cell position that will fit the given bounds nearest the requested
2616 * cell location. Uses Euclidean distance to score multiple vacant areas.
2617 *
2618 * @param pixelX The X location at which you want to search for a vacant area.
2619 * @param pixelY The Y location at which you want to search for a vacant area.
2620 * @param spanX Horizontal span of the object.
2621 * @param spanY Vertical span of the object.
2622 * @param ignoreView Considers space occupied by this view as unoccupied
2623 * @param result Previously returned value to possibly recycle.
2624 * @return The X, Y cell of a vacant area that can contain this object,
2625 * nearest the requested location.
2626 */
Adam Cohenf9c184a2016-01-15 16:47:43 -08002627 public int[] findNearestArea(int pixelX, int pixelY, int spanX, int spanY, int[] result) {
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002628 return findNearestArea(pixelX, pixelY, spanX, spanY, spanX, spanY, false, result, null);
Adam Cohendf035382011-04-11 17:22:04 -07002629 }
2630
Michael Jurka0280c3b2010-09-17 15:00:07 -07002631 boolean existsEmptyCell() {
2632 return findCellForSpan(null, 1, 1);
2633 }
2634
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002635 /**
Michael Jurka0280c3b2010-09-17 15:00:07 -07002636 * Finds the upper-left coordinate of the first rectangle in the grid that can
2637 * hold a cell of the specified dimensions. If intersectX and intersectY are not -1,
2638 * then this method will only return coordinates for rectangles that contain the cell
2639 * (intersectX, intersectY)
2640 *
2641 * @param cellXY The array that will contain the position of a vacant cell if such a cell
2642 * can be found.
2643 * @param spanX The horizontal span of the cell we want to find.
2644 * @param spanY The vertical span of the cell we want to find.
2645 *
2646 * @return True if a vacant cell of the specified dimension was found, false otherwise.
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002647 */
Hyunyoung Song3f471442015-04-08 19:01:34 -07002648 public boolean findCellForSpan(int[] cellXY, int spanX, int spanY) {
Michael Jurka28750fb2010-09-24 17:43:49 -07002649 boolean foundCell = false;
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002650 final int endX = mCountX - (spanX - 1);
2651 final int endY = mCountY - (spanY - 1);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002652
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002653 for (int y = 0; y < endY && !foundCell; y++) {
2654 inner:
2655 for (int x = 0; x < endX; x++) {
2656 for (int i = 0; i < spanX; i++) {
2657 for (int j = 0; j < spanY; j++) {
2658 if (mOccupied[x + i][y + j]) {
2659 // small optimization: we can skip to after the column we just found
2660 // an occupied cell
2661 x += i;
2662 continue inner;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002663 }
2664 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002665 }
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002666 if (cellXY != null) {
2667 cellXY[0] = x;
2668 cellXY[1] = y;
2669 }
2670 foundCell = true;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002671 break;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002672 }
2673 }
2674
Michael Jurka28750fb2010-09-24 17:43:49 -07002675 return foundCell;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002676 }
2677
2678 /**
Winson Chungc07918d2011-07-01 15:35:26 -07002679 * A drag event has begun over this layout.
2680 * It may have begun over this layout (in which case onDragChild is called first),
2681 * or it may have begun on another layout.
2682 */
2683 void onDragEnter() {
Winson Chungc07918d2011-07-01 15:35:26 -07002684 mDragging = true;
2685 }
2686
2687 /**
Michael Jurka0280c3b2010-09-17 15:00:07 -07002688 * Called when drag has left this CellLayout or has been completed (successfully or not)
2689 */
2690 void onDragExit() {
Joe Onorato4be866d2010-10-10 11:26:02 -07002691 // This can actually be called when we aren't in a drag, e.g. when adding a new
2692 // item to this layout via the customize drawer.
2693 // Guard against that case.
2694 if (mDragging) {
2695 mDragging = false;
Patrick Dubroyde7658b2010-09-27 11:15:43 -07002696 }
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07002697
2698 // Invalidate the drag data
Adam Cohend41fbf52012-02-16 23:53:59 -08002699 mDragCell[0] = mDragCell[1] = -1;
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07002700 mDragOutlineAnims[mDragOutlineCurrent].animateOut();
2701 mDragOutlineCurrent = (mDragOutlineCurrent + 1) % mDragOutlineAnims.length;
Adam Cohen19f37922012-03-21 11:59:11 -07002702 revertTempState();
Michael Jurka33945b22010-12-21 18:19:38 -08002703 setIsDragOverlapping(false);
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002704 }
2705
2706 /**
Winson Chungaafa03c2010-06-11 17:34:16 -07002707 * Mark a child as having been dropped.
Patrick Dubroyde7658b2010-09-27 11:15:43 -07002708 * At the beginning of the drag operation, the child may have been on another
Patrick Dubroyce34a972010-10-19 10:34:32 -07002709 * screen, but it is re-parented before this method is called.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002710 *
2711 * @param child The child that is being dropped
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002712 */
Adam Cohen716b51e2011-06-30 12:09:54 -07002713 void onDropChild(View child) {
Romain Guyd94533d2009-08-17 10:01:15 -07002714 if (child != null) {
2715 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Romain Guy84f296c2009-11-04 15:00:44 -08002716 lp.dropped = true;
Romain Guyd94533d2009-08-17 10:01:15 -07002717 child.requestLayout();
Tony Wickham1cdb6d02015-09-17 11:08:27 -07002718 markCellsAsOccupiedForView(child);
Romain Guyd94533d2009-08-17 10:01:15 -07002719 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002720 }
2721
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002722 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002723 * Computes a bounding rectangle for a range of cells
Winson Chungaafa03c2010-06-11 17:34:16 -07002724 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002725 * @param cellX X coordinate of upper left corner expressed as a cell position
2726 * @param cellY Y coordinate of upper left corner expressed as a cell position
Winson Chungaafa03c2010-06-11 17:34:16 -07002727 * @param cellHSpan Width in cells
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002728 * @param cellVSpan Height in cells
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002729 * @param resultRect Rect into which to put the results
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002730 */
Adam Cohend41fbf52012-02-16 23:53:59 -08002731 public void cellToRect(int cellX, int cellY, int cellHSpan, int cellVSpan, Rect resultRect) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002732 final int cellWidth = mCellWidth;
2733 final int cellHeight = mCellHeight;
2734 final int widthGap = mWidthGap;
2735 final int heightGap = mHeightGap;
Winson Chungaafa03c2010-06-11 17:34:16 -07002736
Winson Chung4b825dcd2011-06-19 12:41:22 -07002737 final int hStartPadding = getPaddingLeft();
2738 final int vStartPadding = getPaddingTop();
Winson Chungaafa03c2010-06-11 17:34:16 -07002739
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002740 int width = cellHSpan * cellWidth + ((cellHSpan - 1) * widthGap);
2741 int height = cellVSpan * cellHeight + ((cellVSpan - 1) * heightGap);
2742
2743 int x = hStartPadding + cellX * (cellWidth + widthGap);
2744 int y = vStartPadding + cellY * (cellHeight + heightGap);
Winson Chungaafa03c2010-06-11 17:34:16 -07002745
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002746 resultRect.set(x, y, x + width, y + height);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002747 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002748
Michael Jurka0280c3b2010-09-17 15:00:07 -07002749 private void clearOccupiedCells() {
2750 for (int x = 0; x < mCountX; x++) {
2751 for (int y = 0; y < mCountY; y++) {
2752 mOccupied[x][y] = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002753 }
2754 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002755 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002756
Adam Cohend4844c32011-02-18 19:25:06 -08002757 public void markCellsAsOccupiedForView(View view) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002758 if (view == null || view.getParent() != mShortcutsAndWidgets) return;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002759 LayoutParams lp = (LayoutParams) view.getLayoutParams();
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002760 markCellsForView(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan, mOccupied, true);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002761 }
2762
Adam Cohend4844c32011-02-18 19:25:06 -08002763 public void markCellsAsUnoccupiedForView(View view) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002764 if (view == null || view.getParent() != mShortcutsAndWidgets) return;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002765 LayoutParams lp = (LayoutParams) view.getLayoutParams();
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002766 markCellsForView(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan, mOccupied, false);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002767 }
2768
Adam Cohen482ed822012-03-02 14:15:13 -08002769 private void markCellsForView(int cellX, int cellY, int spanX, int spanY, boolean[][] occupied,
2770 boolean value) {
2771 if (cellX < 0 || cellY < 0) return;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002772 for (int x = cellX; x < cellX + spanX && x < mCountX; x++) {
2773 for (int y = cellY; y < cellY + spanY && y < mCountY; y++) {
Adam Cohen482ed822012-03-02 14:15:13 -08002774 occupied[x][y] = value;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002775 }
2776 }
2777 }
2778
Adam Cohen2801caf2011-05-13 20:57:39 -07002779 public int getDesiredWidth() {
Michael Jurka8b805b12012-04-18 14:23:14 -07002780 return getPaddingLeft() + getPaddingRight() + (mCountX * mCellWidth) +
Adam Cohen2801caf2011-05-13 20:57:39 -07002781 (Math.max((mCountX - 1), 0) * mWidthGap);
2782 }
2783
2784 public int getDesiredHeight() {
Michael Jurka8b805b12012-04-18 14:23:14 -07002785 return getPaddingTop() + getPaddingBottom() + (mCountY * mCellHeight) +
Adam Cohen2801caf2011-05-13 20:57:39 -07002786 (Math.max((mCountY - 1), 0) * mHeightGap);
2787 }
2788
Michael Jurka66d72172011-04-12 16:29:25 -07002789 public boolean isOccupied(int x, int y) {
2790 if (x < mCountX && y < mCountY) {
2791 return mOccupied[x][y];
2792 } else {
2793 throw new RuntimeException("Position exceeds the bound of this CellLayout");
2794 }
2795 }
2796
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002797 @Override
2798 public ViewGroup.LayoutParams generateLayoutParams(AttributeSet attrs) {
2799 return new CellLayout.LayoutParams(getContext(), attrs);
2800 }
2801
2802 @Override
2803 protected boolean checkLayoutParams(ViewGroup.LayoutParams p) {
2804 return p instanceof CellLayout.LayoutParams;
2805 }
2806
2807 @Override
2808 protected ViewGroup.LayoutParams generateLayoutParams(ViewGroup.LayoutParams p) {
2809 return new CellLayout.LayoutParams(p);
2810 }
2811
2812 public static class LayoutParams extends ViewGroup.MarginLayoutParams {
2813 /**
2814 * Horizontal location of the item in the grid.
2815 */
2816 @ViewDebug.ExportedProperty
2817 public int cellX;
2818
2819 /**
2820 * Vertical location of the item in the grid.
2821 */
2822 @ViewDebug.ExportedProperty
2823 public int cellY;
2824
2825 /**
Adam Cohen482ed822012-03-02 14:15:13 -08002826 * Temporary horizontal location of the item in the grid during reorder
2827 */
2828 public int tmpCellX;
2829
2830 /**
2831 * Temporary vertical location of the item in the grid during reorder
2832 */
2833 public int tmpCellY;
2834
2835 /**
2836 * Indicates that the temporary coordinates should be used to layout the items
2837 */
2838 public boolean useTmpCoords;
2839
2840 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002841 * Number of cells spanned horizontally by the item.
2842 */
2843 @ViewDebug.ExportedProperty
2844 public int cellHSpan;
2845
2846 /**
2847 * Number of cells spanned vertically by the item.
2848 */
2849 @ViewDebug.ExportedProperty
2850 public int cellVSpan;
Winson Chungaafa03c2010-06-11 17:34:16 -07002851
Adam Cohen1b607ed2011-03-03 17:26:50 -08002852 /**
2853 * Indicates whether the item will set its x, y, width and height parameters freely,
2854 * or whether these will be computed based on cellX, cellY, cellHSpan and cellVSpan.
2855 */
Adam Cohend4844c32011-02-18 19:25:06 -08002856 public boolean isLockedToGrid = true;
2857
Adam Cohen482ed822012-03-02 14:15:13 -08002858 /**
Adam Cohenec40b2b2013-07-23 15:52:40 -07002859 * Indicates that this item should use the full extents of its parent.
2860 */
2861 public boolean isFullscreen = false;
2862
2863 /**
Adam Cohen482ed822012-03-02 14:15:13 -08002864 * Indicates whether this item can be reordered. Always true except in the case of the
2865 * the AllApps button.
2866 */
2867 public boolean canReorder = true;
2868
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002869 // X coordinate of the view in the layout.
2870 @ViewDebug.ExportedProperty
Vadim Tryshevfedca432015-08-19 17:55:02 -07002871 public int x;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002872 // Y coordinate of the view in the layout.
2873 @ViewDebug.ExportedProperty
Vadim Tryshevfedca432015-08-19 17:55:02 -07002874 public int y;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002875
Romain Guy84f296c2009-11-04 15:00:44 -08002876 boolean dropped;
Romain Guyfcb9e712009-10-02 16:06:52 -07002877
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002878 public LayoutParams(Context c, AttributeSet attrs) {
2879 super(c, attrs);
2880 cellHSpan = 1;
2881 cellVSpan = 1;
2882 }
2883
2884 public LayoutParams(ViewGroup.LayoutParams source) {
2885 super(source);
2886 cellHSpan = 1;
2887 cellVSpan = 1;
2888 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002889
2890 public LayoutParams(LayoutParams source) {
2891 super(source);
2892 this.cellX = source.cellX;
2893 this.cellY = source.cellY;
2894 this.cellHSpan = source.cellHSpan;
2895 this.cellVSpan = source.cellVSpan;
2896 }
2897
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002898 public LayoutParams(int cellX, int cellY, int cellHSpan, int cellVSpan) {
Romain Guy8f19cdd2010-01-08 15:07:00 -08002899 super(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002900 this.cellX = cellX;
2901 this.cellY = cellY;
2902 this.cellHSpan = cellHSpan;
2903 this.cellVSpan = cellVSpan;
2904 }
2905
Adam Cohen2374abf2013-04-16 14:56:57 -07002906 public void setup(int cellWidth, int cellHeight, int widthGap, int heightGap,
2907 boolean invertHorizontally, int colCount) {
Adam Cohend4844c32011-02-18 19:25:06 -08002908 if (isLockedToGrid) {
2909 final int myCellHSpan = cellHSpan;
2910 final int myCellVSpan = cellVSpan;
Adam Cohen2374abf2013-04-16 14:56:57 -07002911 int myCellX = useTmpCoords ? tmpCellX : cellX;
2912 int myCellY = useTmpCoords ? tmpCellY : cellY;
2913
2914 if (invertHorizontally) {
2915 myCellX = colCount - myCellX - cellHSpan;
2916 }
Adam Cohen1b607ed2011-03-03 17:26:50 -08002917
Adam Cohend4844c32011-02-18 19:25:06 -08002918 width = myCellHSpan * cellWidth + ((myCellHSpan - 1) * widthGap) -
2919 leftMargin - rightMargin;
2920 height = myCellVSpan * cellHeight + ((myCellVSpan - 1) * heightGap) -
2921 topMargin - bottomMargin;
Winson Chungeecf02d2012-03-02 17:14:58 -08002922 x = (int) (myCellX * (cellWidth + widthGap) + leftMargin);
2923 y = (int) (myCellY * (cellHeight + heightGap) + topMargin);
Adam Cohend4844c32011-02-18 19:25:06 -08002924 }
2925 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002926
Winson Chungaafa03c2010-06-11 17:34:16 -07002927 public String toString() {
2928 return "(" + this.cellX + ", " + this.cellY + ")";
2929 }
Adam Cohen7f4eabe2011-04-21 16:19:16 -07002930
2931 public void setWidth(int width) {
2932 this.width = width;
2933 }
2934
2935 public int getWidth() {
2936 return width;
2937 }
2938
2939 public void setHeight(int height) {
2940 this.height = height;
2941 }
2942
2943 public int getHeight() {
2944 return height;
2945 }
2946
2947 public void setX(int x) {
2948 this.x = x;
2949 }
2950
2951 public int getX() {
2952 return x;
2953 }
2954
2955 public void setY(int y) {
2956 this.y = y;
2957 }
2958
2959 public int getY() {
2960 return y;
2961 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002962 }
2963
Michael Jurka0280c3b2010-09-17 15:00:07 -07002964 // This class stores info for two purposes:
2965 // 1. When dragging items (mDragInfo in Workspace), we store the View, its cellX & cellY,
2966 // its spanX, spanY, and the screen it is on
2967 // 2. When long clicking on an empty cell in a CellLayout, we save information about the
2968 // cellX and cellY coordinates and which page was clicked. We then set this as a tag on
2969 // the CellLayout that was long clicked
Sunny Goyal83a8f042015-05-19 12:52:12 -07002970 public static final class CellInfo {
Adam Cohenf9c184a2016-01-15 16:47:43 -08002971 public View cell;
Michael Jurkaa63c4522010-08-19 13:52:27 -07002972 int cellX = -1;
2973 int cellY = -1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002974 int spanX;
2975 int spanY;
Adam Cohendcd297f2013-06-18 13:13:40 -07002976 long screenId;
Winson Chung3d503fb2011-07-13 17:25:49 -07002977 long container;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002978
Sunny Goyal83a8f042015-05-19 12:52:12 -07002979 public CellInfo(View v, ItemInfo info) {
Adam Cohene0aaa0d2014-05-12 12:44:22 -07002980 cell = v;
2981 cellX = info.cellX;
2982 cellY = info.cellY;
2983 spanX = info.spanX;
2984 spanY = info.spanY;
2985 screenId = info.screenId;
2986 container = info.container;
2987 }
2988
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002989 @Override
2990 public String toString() {
Winson Chungaafa03c2010-06-11 17:34:16 -07002991 return "Cell[view=" + (cell == null ? "null" : cell.getClass())
2992 + ", x=" + cellX + ", y=" + cellY + "]";
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002993 }
2994 }
Michael Jurkad771c962011-08-09 15:00:48 -07002995
Sunny Goyala9116722015-04-29 13:55:58 -07002996 public boolean findVacantCell(int spanX, int spanY, int[] outXY) {
2997 return Utilities.findVacantCell(outXY, spanX, spanY, mCountX, mCountY, mOccupied);
2998 }
Sunny Goyal9ca9c132015-04-29 14:57:22 -07002999
Tony Wickham86930612015-09-09 13:50:40 -07003000 /**
3001 * Returns whether an item can be placed in this CellLayout (after rearranging and/or resizing
3002 * if necessary).
3003 */
3004 public boolean hasReorderSolution(ItemInfo itemInfo) {
3005 int[] cellPoint = new int[2];
3006 // Check for a solution starting at every cell.
3007 for (int cellX = 0; cellX < getCountX(); cellX++) {
3008 for (int cellY = 0; cellY < getCountY(); cellY++) {
3009 cellToPoint(cellX, cellY, cellPoint);
3010 if (findReorderSolution(cellPoint[0], cellPoint[1], itemInfo.minSpanX,
3011 itemInfo.minSpanY, itemInfo.spanX, itemInfo.spanY, mDirectionVector, null,
3012 true, new ItemConfiguration()).isSolution) {
3013 return true;
3014 }
3015 }
3016 }
3017 return false;
3018 }
3019
Sunny Goyal9ca9c132015-04-29 14:57:22 -07003020 public boolean isRegionVacant(int x, int y, int spanX, int spanY) {
3021 int x2 = x + spanX - 1;
3022 int y2 = y + spanY - 1;
3023 if (x < 0 || y < 0 || x2 >= mCountX || y2 >= mCountY) {
3024 return false;
3025 }
3026 for (int i = x; i <= x2; i++) {
3027 for (int j = y; j <= y2; j++) {
3028 if (mOccupied[i][j]) {
3029 return false;
3030 }
3031 }
3032 }
3033
3034 return true;
3035 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003036}