blob: a117cfd1593d64597c8dc404381e1c8ec45b5b0b [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
Sunny Goyalf0b6db72018-08-13 16:10:14 -070019import static com.android.launcher3.anim.Interpolators.DEACCEL_1_5;
20
Joe Onorato4be866d2010-10-10 11:26:02 -070021import android.animation.Animator;
Michael Jurka629758f2012-06-14 16:18:21 -070022import android.animation.AnimatorListenerAdapter;
Sunny Goyal849c6a22018-08-08 16:33:46 -070023import android.animation.ObjectAnimator;
Chet Haase00397b12010-10-07 11:13:10 -070024import android.animation.TimeInterpolator;
Patrick Dubroyde7658b2010-09-27 11:15:43 -070025import android.animation.ValueAnimator;
26import android.animation.ValueAnimator.AnimatorUpdateListener;
Sunny Goyal726bee72018-03-05 12:54:24 -080027import android.annotation.SuppressLint;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080028import android.content.Context;
Joe Onorato79e56262009-09-21 15:23:04 -040029import android.content.res.Resources;
Sunny Goyalc13403c2016-11-18 23:44:48 -080030import android.content.res.TypedArray;
Joe Onorato4be866d2010-10-10 11:26:02 -070031import android.graphics.Bitmap;
Winson Chungaafa03c2010-06-11 17:34:16 -070032import android.graphics.Canvas;
Andrew Flynn0dca1ec2012-02-29 13:33:22 -080033import android.graphics.Color;
Joe Onorato4be866d2010-10-10 11:26:02 -070034import android.graphics.Paint;
Patrick Dubroyde7658b2010-09-27 11:15:43 -070035import android.graphics.Point;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080036import android.graphics.Rect;
Adam Cohen482ed822012-03-02 14:15:13 -080037import android.graphics.drawable.ColorDrawable;
Patrick Dubroy6569f2c2010-07-12 14:25:18 -070038import android.graphics.drawable.Drawable;
Adam Cohen1462de32012-07-24 22:34:36 -070039import android.os.Parcelable;
Rajeev Kumar9962dbe2017-06-12 12:16:20 -070040import android.util.ArrayMap;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080041import android.util.AttributeSet;
Joe Onorato4be866d2010-10-10 11:26:02 -070042import android.util.Log;
Sunny Goyal849c6a22018-08-08 16:33:46 -070043import android.util.Property;
Adam Cohen1462de32012-07-24 22:34:36 -070044import android.util.SparseArray;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080045import android.view.MotionEvent;
46import android.view.View;
47import android.view.ViewDebug;
48import android.view.ViewGroup;
Adam Cohenc9735cf2015-01-23 16:11:55 -080049import android.view.accessibility.AccessibilityEvent;
Sunny Goyal5bc6b6f2017-10-26 15:36:10 -070050
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;
Sunny Goyal5bc6b6f2017-10-26 15:36:10 -070055import com.android.launcher3.anim.Interpolators;
Sunny Goyal9e76f682017-02-13 12:13:43 -080056import com.android.launcher3.anim.PropertyListBuilder;
Sunny Goyal3d706ad2017-03-06 16:56:39 -080057import com.android.launcher3.config.FeatureFlags;
Jon Mirandaa0233f72017-06-22 18:34:45 -070058import com.android.launcher3.folder.PreviewBackground;
Sunny Goyal06e21a22016-08-11 16:02:02 -070059import com.android.launcher3.graphics.DragPreviewProvider;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -070060import com.android.launcher3.util.CellAndSpan;
61import com.android.launcher3.util.GridOccupancy;
Sunny Goyale2fd14b2015-08-27 17:45:46 -070062import com.android.launcher3.util.ParcelableSparseArray;
Sunny Goyal9b29ca52017-02-17 10:39:44 -080063import com.android.launcher3.util.Themes;
Adam Cohen091440a2015-03-18 14:16:05 -070064import com.android.launcher3.util.Thunk;
Sunny Goyalab770a12018-11-14 15:17:26 -080065import com.android.launcher3.views.ActivityContext;
Sunny Goyal29947f02017-12-18 13:49:44 -080066import com.android.launcher3.widget.LauncherAppWidgetHostView;
Sunny Goyal5bc6b6f2017-10-26 15:36:10 -070067
Sunny Goyalc13403c2016-11-18 23:44:48 -080068import java.lang.annotation.Retention;
69import java.lang.annotation.RetentionPolicy;
Adam Cohen69ce2e52011-07-03 19:25:21 -070070import java.util.ArrayList;
Adam Cohenc0dcf592011-06-01 15:30:43 -070071import java.util.Arrays;
Adam Cohenf3900c22012-11-16 18:28:11 -080072import java.util.Collections;
73import java.util.Comparator;
Adam Cohend41fbf52012-02-16 23:53:59 -080074import java.util.Stack;
Adam Cohenc0dcf592011-06-01 15:30:43 -070075
Sunny Goyald2303072018-08-14 15:21:45 -070076import androidx.annotation.IntDef;
77import androidx.core.view.ViewCompat;
78
Sunny Goyal726bee72018-03-05 12:54:24 -080079public class CellLayout extends ViewGroup {
Sunny Goyale9b651e2015-04-24 11:44:51 -070080 public static final int WORKSPACE_ACCESSIBILITY_DRAG = 2;
81 public static final int FOLDER_ACCESSIBILITY_DRAG = 1;
82
Tony Wickhama0628cc2015-10-14 15:23:04 -070083 private static final String TAG = "CellLayout";
84 private static final boolean LOGD = false;
Winson Chungaafa03c2010-06-11 17:34:16 -070085
Sunny Goyalab770a12018-11-14 15:17:26 -080086 protected final ActivityContext mActivity;
Sunny Goyal4ffec482016-02-09 11:28:52 -080087 @ViewDebug.ExportedProperty(category = "launcher")
Adam Cohen091440a2015-03-18 14:16:05 -070088 @Thunk int mCellWidth;
Sunny Goyal4ffec482016-02-09 11:28:52 -080089 @ViewDebug.ExportedProperty(category = "launcher")
Adam Cohen091440a2015-03-18 14:16:05 -070090 @Thunk int mCellHeight;
Winson Chung11a1a532013-09-13 11:14:45 -070091 private int mFixedCellWidth;
92 private int mFixedCellHeight;
Winson Chungaafa03c2010-06-11 17:34:16 -070093
Sunny Goyal4ffec482016-02-09 11:28:52 -080094 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyalff4ba2d2016-04-02 14:12:34 -070095 private int mCountX;
Sunny Goyal4ffec482016-02-09 11:28:52 -080096 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyalff4ba2d2016-04-02 14:12:34 -070097 private int mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080098
Adam Cohen917e3882013-10-31 15:03:35 -070099 private boolean mDropPending = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800100
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700101 // These are temporary variables to prevent having to allocate a new object just to
102 // return an (x, y) value from helper functions. Do NOT use them to maintain other state.
Adam Cohen091440a2015-03-18 14:16:05 -0700103 @Thunk final int[] mTmpPoint = new int[2];
Sunny Goyal2805e632015-05-20 15:35:32 -0700104 @Thunk final int[] mTempLocation = new int[2];
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700105
Sunny Goyalff4ba2d2016-04-02 14:12:34 -0700106 private GridOccupancy mOccupied;
107 private GridOccupancy mTmpOccupied;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800108
Michael Jurkadee05892010-07-27 10:01:56 -0700109 private OnTouchListener mInterceptTouchListener;
110
Jon Mirandaa0233f72017-06-22 18:34:45 -0700111 private final ArrayList<PreviewBackground> mFolderBackgrounds = new ArrayList<>();
112 final PreviewBackground mFolderLeaveBehind = new PreviewBackground();
Adam Cohen69ce2e52011-07-03 19:25:21 -0700113
Sunny Goyalf5440cb2016-12-14 15:13:00 -0800114 private static final int[] BACKGROUND_STATE_ACTIVE = new int[] { android.R.attr.state_active };
Sunny Goyale15e2a82017-12-15 13:05:42 -0800115 private static final int[] BACKGROUND_STATE_DEFAULT = EMPTY_STATE_SET;
Sunny Goyalf5440cb2016-12-14 15:13:00 -0800116 private final Drawable mBackground;
Sunny Goyal2805e632015-05-20 15:35:32 -0700117
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700118 // These values allow a fixed measurement to be set on the CellLayout.
119 private int mFixedWidth = -1;
120 private int mFixedHeight = -1;
121
Michael Jurka33945b22010-12-21 18:19:38 -0800122 // If we're actively dragging something over this screen, mIsDragOverlapping is true
123 private boolean mIsDragOverlapping = false;
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700124
Winson Chung150fbab2010-09-29 17:14:26 -0700125 // These arrays are used to implement the drag visualization on x-large screens.
Joe Onorato4be866d2010-10-10 11:26:02 -0700126 // They are used as circular arrays, indexed by mDragOutlineCurrent.
Rajeev Kumar9962dbe2017-06-12 12:16:20 -0700127 @Thunk final Rect[] mDragOutlines = new Rect[4];
128 @Thunk final float[] mDragOutlineAlphas = new float[mDragOutlines.length];
129 private final InterruptibleInOutAnimator[] mDragOutlineAnims =
Joe Onorato4be866d2010-10-10 11:26:02 -0700130 new InterruptibleInOutAnimator[mDragOutlines.length];
Winson Chung150fbab2010-09-29 17:14:26 -0700131
132 // Used as an index into the above 3 arrays; indicates which is the most current value.
Joe Onorato4be866d2010-10-10 11:26:02 -0700133 private int mDragOutlineCurrent = 0;
Patrick Dubroy8e58e912010-10-14 13:21:48 -0700134 private final Paint mDragOutlinePaint = new Paint();
Winson Chung150fbab2010-09-29 17:14:26 -0700135
Rajeev Kumar9962dbe2017-06-12 12:16:20 -0700136 @Thunk final ArrayMap<LayoutParams, Animator> mReorderAnimators = new ArrayMap<>();
137 @Thunk final ArrayMap<View, ReorderPreviewAnimation> mShakeAnimators = new ArrayMap<>();
Adam Cohen19f37922012-03-21 11:59:11 -0700138
139 private boolean mItemPlacementDirty = false;
Adam Cohenbfbfd262011-06-13 16:55:12 -0700140
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700141 // When a drag operation is in progress, holds the nearest cell to the touch point
142 private final int[] mDragCell = new int[2];
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800143
Joe Onorato4be866d2010-10-10 11:26:02 -0700144 private boolean mDragging = false;
145
Rajeev Kumar9962dbe2017-06-12 12:16:20 -0700146 private final TimeInterpolator mEaseOutInterpolator;
147 private final ShortcutAndWidgetContainer mShortcutsAndWidgets;
Patrick Dubroyce34a972010-10-19 10:34:32 -0700148
Sunny Goyalc13403c2016-11-18 23:44:48 -0800149 @Retention(RetentionPolicy.SOURCE)
150 @IntDef({WORKSPACE, HOTSEAT, FOLDER})
151 public @interface ContainerType{}
152 public static final int WORKSPACE = 0;
153 public static final int HOTSEAT = 1;
154 public static final int FOLDER = 2;
155
156 @ContainerType private final int mContainerType;
157
Jon Mirandab28c4fc2017-06-20 10:58:36 -0700158 private final float mChildScale = 1f;
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800159
Adam Cohenfa3c58f2013-12-06 16:10:55 -0800160 public static final int MODE_SHOW_REORDER_HINT = 0;
161 public static final int MODE_DRAG_OVER = 1;
162 public static final int MODE_ON_DROP = 2;
163 public static final int MODE_ON_DROP_EXTERNAL = 3;
164 public static final int MODE_ACCEPT_DROP = 4;
Adam Cohen19f37922012-03-21 11:59:11 -0700165 private static final boolean DESTRUCTIVE_REORDER = false;
Adam Cohen482ed822012-03-02 14:15:13 -0800166 private static final boolean DEBUG_VISUALIZE_OCCUPIED = false;
167
Adam Cohenfa3c58f2013-12-06 16:10:55 -0800168 private static final float REORDER_PREVIEW_MAGNITUDE = 0.12f;
Adam Cohen19f37922012-03-21 11:59:11 -0700169 private static final int REORDER_ANIMATION_DURATION = 150;
Sunny Goyalc13403c2016-11-18 23:44:48 -0800170 @Thunk final float mReorderPreviewAnimationMagnitude;
Adam Cohen19f37922012-03-21 11:59:11 -0700171
Rajeev Kumar9962dbe2017-06-12 12:16:20 -0700172 private final ArrayList<View> mIntersectingViews = new ArrayList<>();
173 private final Rect mOccupiedRect = new Rect();
174 private final int[] mDirectionVector = new int[2];
175 final int[] mPreviousReorderDirection = new int[2];
Adam Cohenb209e632012-03-27 17:09:36 -0700176 private static final int INVALID_DIRECTION = -100;
Adam Cohen482ed822012-03-02 14:15:13 -0800177
Sunny Goyal2805e632015-05-20 15:35:32 -0700178 private final Rect mTempRect = new Rect();
Winson Chung3a6e7f32013-10-09 15:50:52 -0700179
Michael Jurkaca993832012-06-29 15:17:04 -0700180 private final static Paint sPaint = new Paint();
Romain Guy8a0bff52012-05-06 13:14:33 -0700181
Adam Cohenc9735cf2015-01-23 16:11:55 -0800182 // Related to accessible drag and drop
Sunny Goyale9b651e2015-04-24 11:44:51 -0700183 private DragAndDropAccessibilityDelegate mTouchHelper;
Adam Cohenc9735cf2015-01-23 16:11:55 -0800184 private boolean mUseTouchHelper = false;
Adam Cohenc9735cf2015-01-23 16:11:55 -0800185
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800186 public CellLayout(Context context) {
187 this(context, null);
188 }
189
190 public CellLayout(Context context, AttributeSet attrs) {
191 this(context, attrs, 0);
192 }
193
194 public CellLayout(Context context, AttributeSet attrs, int defStyle) {
195 super(context, attrs, defStyle);
Sunny Goyalc13403c2016-11-18 23:44:48 -0800196 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.CellLayout, defStyle, 0);
197 mContainerType = a.getInteger(R.styleable.CellLayout_containerType, WORKSPACE);
198 a.recycle();
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700199
200 // A ViewGroup usually does not draw, but CellLayout needs to draw a rectangle to show
201 // the user where a dragged item will land when dropped.
202 setWillNotDraw(false);
Romain Guyce3cbd12013-02-25 15:00:36 -0800203 setClipToPadding(false);
Sunny Goyalab770a12018-11-14 15:17:26 -0800204 mActivity = ActivityContext.lookupContext(context);
Michael Jurkaa63c4522010-08-19 13:52:27 -0700205
Sunny Goyalab770a12018-11-14 15:17:26 -0800206 DeviceProfile grid = mActivity.getDeviceProfile();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800207
Winson Chung11a1a532013-09-13 11:14:45 -0700208 mCellWidth = mCellHeight = -1;
Nilesh Agrawal5f7099a2014-01-02 15:54:57 -0800209 mFixedCellWidth = mFixedCellHeight = -1;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -0700210
211 mCountX = grid.inv.numColumns;
212 mCountY = grid.inv.numRows;
213 mOccupied = new GridOccupancy(mCountX, mCountY);
214 mTmpOccupied = new GridOccupancy(mCountX, mCountY);
215
Adam Cohen5b53f292012-03-29 14:30:35 -0700216 mPreviousReorderDirection[0] = INVALID_DIRECTION;
217 mPreviousReorderDirection[1] = INVALID_DIRECTION;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800218
Adam Cohenefca0272016-02-24 19:19:06 -0800219 mFolderLeaveBehind.delegateCellX = -1;
220 mFolderLeaveBehind.delegateCellY = -1;
221
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800222 setAlwaysDrawnWithCacheEnabled(false);
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700223 final Resources res = getResources();
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700224
Sunny Goyalf5440cb2016-12-14 15:13:00 -0800225 mBackground = res.getDrawable(R.drawable.bg_celllayout);
Sunny Goyal2805e632015-05-20 15:35:32 -0700226 mBackground.setCallback(this);
Sunny Goyalaeb16432017-10-16 11:46:41 -0700227 mBackground.setAlpha(0);
Michael Jurka33945b22010-12-21 18:19:38 -0800228
Sunny Goyalc13403c2016-11-18 23:44:48 -0800229 mReorderPreviewAnimationMagnitude = (REORDER_PREVIEW_MAGNITUDE * grid.iconSizePx);
Adam Cohen19f37922012-03-21 11:59:11 -0700230
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700231 // Initialize the data structures used for the drag visualization.
Sunny Goyal5bc6b6f2017-10-26 15:36:10 -0700232 mEaseOutInterpolator = Interpolators.DEACCEL_2_5; // Quint ease out
Winson Chungb8c69f32011-10-19 21:36:08 -0700233 mDragCell[0] = mDragCell[1] = -1;
Joe Onorato4be866d2010-10-10 11:26:02 -0700234 for (int i = 0; i < mDragOutlines.length; i++) {
Adam Cohend41fbf52012-02-16 23:53:59 -0800235 mDragOutlines[i] = new Rect(-1, -1, -1, -1);
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700236 }
Mario Bertschler54ba6012017-06-08 10:53:53 -0700237 mDragOutlinePaint.setColor(Themes.getAttrColor(context, R.attr.workspaceTextColor));
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700238
239 // When dragging things around the home screens, we show a green outline of
240 // where the item will land. The outlines gradually fade out, leaving a trail
241 // behind the drag path.
242 // Set up all the animations that are used to implement this fading.
243 final int duration = res.getInteger(R.integer.config_dragOutlineFadeTime);
Chet Haase472b2812010-10-14 07:02:04 -0700244 final float fromAlphaValue = 0;
245 final float toAlphaValue = (float)res.getInteger(R.integer.config_dragOutlineMaxAlpha);
Joe Onorato4be866d2010-10-10 11:26:02 -0700246
Patrick Dubroy8e58e912010-10-14 13:21:48 -0700247 Arrays.fill(mDragOutlineAlphas, fromAlphaValue);
Joe Onorato4be866d2010-10-10 11:26:02 -0700248
249 for (int i = 0; i < mDragOutlineAnims.length; i++) {
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700250 final InterruptibleInOutAnimator anim =
Sunny Goyal849c6a22018-08-08 16:33:46 -0700251 new InterruptibleInOutAnimator(duration, fromAlphaValue, toAlphaValue);
Patrick Dubroyce34a972010-10-19 10:34:32 -0700252 anim.getAnimator().setInterpolator(mEaseOutInterpolator);
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700253 final int thisIndex = i;
Chet Haase472b2812010-10-14 07:02:04 -0700254 anim.getAnimator().addUpdateListener(new AnimatorUpdateListener() {
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700255 public void onAnimationUpdate(ValueAnimator animation) {
Joe Onorato4be866d2010-10-10 11:26:02 -0700256 final Bitmap outline = (Bitmap)anim.getTag();
257
258 // If an animation is started and then stopped very quickly, we can still
259 // get spurious updates we've cleared the tag. Guard against this.
260 if (outline == null) {
Tony Wickhama0628cc2015-10-14 15:23:04 -0700261 if (LOGD) {
Patrick Dubroyfe6bd872010-10-13 17:32:10 -0700262 Object val = animation.getAnimatedValue();
263 Log.d(TAG, "anim " + thisIndex + " update: " + val +
264 ", isStopped " + anim.isStopped());
265 }
Joe Onorato4be866d2010-10-10 11:26:02 -0700266 // Try to prevent it from continuing to run
267 animation.cancel();
268 } else {
Chet Haase472b2812010-10-14 07:02:04 -0700269 mDragOutlineAlphas[thisIndex] = (Float) animation.getAnimatedValue();
Adam Cohend41fbf52012-02-16 23:53:59 -0800270 CellLayout.this.invalidate(mDragOutlines[thisIndex]);
Joe Onorato4be866d2010-10-10 11:26:02 -0700271 }
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700272 }
273 });
Joe Onorato4be866d2010-10-10 11:26:02 -0700274 // The animation holds a reference to the drag outline bitmap as long is it's
275 // running. This way the bitmap can be GCed when the animations are complete.
Chet Haase472b2812010-10-14 07:02:04 -0700276 anim.getAnimator().addListener(new AnimatorListenerAdapter() {
Michael Jurka3c4c20f2010-10-28 15:36:06 -0700277 @Override
Joe Onorato4be866d2010-10-10 11:26:02 -0700278 public void onAnimationEnd(Animator animation) {
Chet Haase472b2812010-10-14 07:02:04 -0700279 if ((Float) ((ValueAnimator) animation).getAnimatedValue() == 0f) {
Joe Onorato4be866d2010-10-10 11:26:02 -0700280 anim.setTag(null);
281 }
282 }
283 });
284 mDragOutlineAnims[i] = anim;
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700285 }
Patrick Dubroyce34a972010-10-19 10:34:32 -0700286
Sunny Goyalc13403c2016-11-18 23:44:48 -0800287 mShortcutsAndWidgets = new ShortcutAndWidgetContainer(context, mContainerType);
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530288 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mCountX, mCountY);
Michael Jurkaa52570f2012-03-20 03:18:20 -0700289 addView(mShortcutsAndWidgets);
Michael Jurka18014792010-10-14 09:01:34 -0700290 }
291
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);
Sunny Goyal7c7be8c2018-03-07 19:58:07 -0800298 setOnClickListener(null);
Adam Cohenc9735cf2015-01-23 16:11:55 -0800299 } 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
Chris Craik01f2d7f2013-10-01 14:41:56 -0700338 public void enableHardwareLayer(boolean hasLayer) {
339 mShortcutsAndWidgets.setLayerType(hasLayer ? LAYER_TYPE_HARDWARE : LAYER_TYPE_NONE, sPaint);
Michael Jurkad51f33a2012-06-28 15:35:26 -0700340 }
341
Winson Chung5f8afe62013-08-12 16:19:28 -0700342 public void setCellDimensions(int width, int height) {
Winson Chung11a1a532013-09-13 11:14:45 -0700343 mFixedCellWidth = mCellWidth = width;
344 mFixedCellHeight = mCellHeight = height;
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530345 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mCountX, mCountY);
Winson Chung5f8afe62013-08-12 16:19:28 -0700346 }
347
Adam Cohen2801caf2011-05-13 20:57:39 -0700348 public void setGridSize(int x, int y) {
349 mCountX = x;
350 mCountY = y;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -0700351 mOccupied = new GridOccupancy(mCountX, mCountY);
352 mTmpOccupied = new GridOccupancy(mCountX, mCountY);
Adam Cohen7fbec102012-03-27 12:42:19 -0700353 mTempRectStack.clear();
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530354 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mCountX, mCountY);
Adam Cohen76fc0852011-06-17 13:26:23 -0700355 requestLayout();
Adam Cohen2801caf2011-05-13 20:57:39 -0700356 }
357
Adam Cohen2374abf2013-04-16 14:56:57 -0700358 // Set whether or not to invert the layout horizontally if the layout is in RTL mode.
359 public void setInvertIfRtl(boolean invert) {
360 mShortcutsAndWidgets.setInvertIfRtl(invert);
361 }
362
Adam Cohen917e3882013-10-31 15:03:35 -0700363 public void setDropPending(boolean pending) {
364 mDropPending = pending;
365 }
366
367 public boolean isDropPending() {
368 return mDropPending;
369 }
370
Adam Cohenc50438c2014-08-19 17:43:05 -0700371 void setIsDragOverlapping(boolean isDragOverlapping) {
372 if (mIsDragOverlapping != isDragOverlapping) {
373 mIsDragOverlapping = isDragOverlapping;
Sunny Goyalf5440cb2016-12-14 15:13:00 -0800374 mBackground.setState(mIsDragOverlapping
375 ? BACKGROUND_STATE_ACTIVE : BACKGROUND_STATE_DEFAULT);
Adam Cohenc50438c2014-08-19 17:43:05 -0700376 invalidate();
377 }
378 }
379
Sunny Goyale2fd14b2015-08-27 17:45:46 -0700380 @Override
381 protected void dispatchSaveInstanceState(SparseArray<Parcelable> container) {
Sunny Goyal7ce471b2017-08-02 03:37:39 -0700382 ParcelableSparseArray jail = getJailedArray(container);
383 super.dispatchSaveInstanceState(jail);
384 container.put(R.id.cell_layout_jail_id, jail);
Sunny Goyale2fd14b2015-08-27 17:45:46 -0700385 }
386
387 @Override
388 protected void dispatchRestoreInstanceState(SparseArray<Parcelable> container) {
Sunny Goyal7ce471b2017-08-02 03:37:39 -0700389 super.dispatchRestoreInstanceState(getJailedArray(container));
Sunny Goyale2fd14b2015-08-27 17:45:46 -0700390 }
391
Sunny Goyal7ce471b2017-08-02 03:37:39 -0700392 /**
393 * Wrap the SparseArray in another Parcelable so that the item ids do not conflict with our
394 * our internal resource ids
395 */
Sunny Goyale2fd14b2015-08-27 17:45:46 -0700396 private ParcelableSparseArray getJailedArray(SparseArray<Parcelable> container) {
397 final Parcelable parcelable = container.get(R.id.cell_layout_jail_id);
398 return parcelable instanceof ParcelableSparseArray ?
399 (ParcelableSparseArray) parcelable : new ParcelableSparseArray();
400 }
401
Tony Wickham0f97b782015-12-02 17:55:07 -0800402 public boolean getIsDragOverlapping() {
403 return mIsDragOverlapping;
404 }
405
Jeff Sharkey83f111d2009-04-20 21:03:13 -0700406 @Override
Patrick Dubroy1262e362010-10-06 15:49:50 -0700407 protected void onDraw(Canvas canvas) {
Michael Jurka3e7c7632010-10-02 16:01:03 -0700408 // When we're large, we are either drawn in a "hover" state (ie when dragging an item to
409 // a neighboring page) or with just a normal background (if backgroundAlpha > 0.0f)
410 // When we're small, we are either drawn normally or in the "accepts drops" state (during
411 // a drag). However, we also drag the mini hover background *over* one of those two
412 // backgrounds
Sunny Goyalaeb16432017-10-16 11:46:41 -0700413 if (mBackground.getAlpha() > 0) {
Sunny Goyal2805e632015-05-20 15:35:32 -0700414 mBackground.draw(canvas);
Michael Jurkaa63c4522010-08-19 13:52:27 -0700415 }
Romain Guya6abce82009-11-10 02:54:41 -0800416
Patrick Dubroy8e58e912010-10-14 13:21:48 -0700417 final Paint paint = mDragOutlinePaint;
Joe Onorato4be866d2010-10-10 11:26:02 -0700418 for (int i = 0; i < mDragOutlines.length; i++) {
Chet Haase472b2812010-10-14 07:02:04 -0700419 final float alpha = mDragOutlineAlphas[i];
Joe Onorato4be866d2010-10-10 11:26:02 -0700420 if (alpha > 0) {
Joe Onorato4be866d2010-10-10 11:26:02 -0700421 final Bitmap b = (Bitmap) mDragOutlineAnims[i].getTag();
Chet Haase472b2812010-10-14 07:02:04 -0700422 paint.setAlpha((int)(alpha + .5f));
Sunny Goyal106bf642015-07-16 12:18:06 -0700423 canvas.drawBitmap(b, null, mDragOutlines[i], paint);
Winson Chung150fbab2010-09-29 17:14:26 -0700424 }
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700425 }
Patrick Dubroy96864c32011-03-10 17:17:23 -0800426
Adam Cohen482ed822012-03-02 14:15:13 -0800427 if (DEBUG_VISUALIZE_OCCUPIED) {
428 int[] pt = new int[2];
429 ColorDrawable cd = new ColorDrawable(Color.RED);
Adam Cohene7587d22012-05-24 18:50:02 -0700430 cd.setBounds(0, 0, mCellWidth, mCellHeight);
Adam Cohen482ed822012-03-02 14:15:13 -0800431 for (int i = 0; i < mCountX; i++) {
432 for (int j = 0; j < mCountY; j++) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -0700433 if (mOccupied.cells[i][j]) {
Adam Cohen482ed822012-03-02 14:15:13 -0800434 cellToPoint(i, j, pt);
435 canvas.save();
436 canvas.translate(pt[0], pt[1]);
437 cd.draw(canvas);
438 canvas.restore();
439 }
440 }
441 }
442 }
443
Adam Cohenefca0272016-02-24 19:19:06 -0800444 for (int i = 0; i < mFolderBackgrounds.size(); i++) {
Jon Mirandaa0233f72017-06-22 18:34:45 -0700445 PreviewBackground bg = mFolderBackgrounds.get(i);
Adam Cohenefca0272016-02-24 19:19:06 -0800446 cellToPoint(bg.delegateCellX, bg.delegateCellY, mTempLocation);
447 canvas.save();
448 canvas.translate(mTempLocation[0], mTempLocation[1]);
Sunny Goyal19b93b72017-02-19 20:21:37 -0800449 bg.drawBackground(canvas);
Adam Cohenf172b742016-03-30 19:28:34 -0700450 if (!bg.isClipping) {
Sunny Goyal19b93b72017-02-19 20:21:37 -0800451 bg.drawBackgroundStroke(canvas);
Adam Cohenf172b742016-03-30 19:28:34 -0700452 }
Adam Cohenefca0272016-02-24 19:19:06 -0800453 canvas.restore();
Adam Cohen69ce2e52011-07-03 19:25:21 -0700454 }
Adam Cohenc51934b2011-07-26 21:07:43 -0700455
Adam Cohenefca0272016-02-24 19:19:06 -0800456 if (mFolderLeaveBehind.delegateCellX >= 0 && mFolderLeaveBehind.delegateCellY >= 0) {
457 cellToPoint(mFolderLeaveBehind.delegateCellX,
458 mFolderLeaveBehind.delegateCellY, mTempLocation);
459 canvas.save();
460 canvas.translate(mTempLocation[0], mTempLocation[1]);
Sunny Goyal19b93b72017-02-19 20:21:37 -0800461 mFolderLeaveBehind.drawLeaveBehind(canvas);
Adam Cohenefca0272016-02-24 19:19:06 -0800462 canvas.restore();
Adam Cohenc51934b2011-07-26 21:07:43 -0700463 }
Adam Cohen69ce2e52011-07-03 19:25:21 -0700464 }
465
Adam Cohenefca0272016-02-24 19:19:06 -0800466 @Override
467 protected void dispatchDraw(Canvas canvas) {
468 super.dispatchDraw(canvas);
469
470 for (int i = 0; i < mFolderBackgrounds.size(); i++) {
Jon Mirandaa0233f72017-06-22 18:34:45 -0700471 PreviewBackground bg = mFolderBackgrounds.get(i);
Adam Cohenf172b742016-03-30 19:28:34 -0700472 if (bg.isClipping) {
473 cellToPoint(bg.delegateCellX, bg.delegateCellY, mTempLocation);
474 canvas.save();
475 canvas.translate(mTempLocation[0], mTempLocation[1]);
Sunny Goyal19b93b72017-02-19 20:21:37 -0800476 bg.drawBackgroundStroke(canvas);
Adam Cohenf172b742016-03-30 19:28:34 -0700477 canvas.restore();
478 }
Adam Cohenefca0272016-02-24 19:19:06 -0800479 }
Adam Cohen69ce2e52011-07-03 19:25:21 -0700480 }
481
Jon Mirandaa0233f72017-06-22 18:34:45 -0700482 public void addFolderBackground(PreviewBackground bg) {
Adam Cohenefca0272016-02-24 19:19:06 -0800483 mFolderBackgrounds.add(bg);
484 }
Jon Mirandaa0233f72017-06-22 18:34:45 -0700485 public void removeFolderBackground(PreviewBackground bg) {
Adam Cohenefca0272016-02-24 19:19:06 -0800486 mFolderBackgrounds.remove(bg);
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700487 }
488
Adam Cohenc51934b2011-07-26 21:07:43 -0700489 public void setFolderLeaveBehindCell(int x, int y) {
Adam Cohenefca0272016-02-24 19:19:06 -0800490 View child = getChildAt(x, y);
Sunny Goyalab770a12018-11-14 15:17:26 -0800491 mFolderLeaveBehind.setup(getContext(), mActivity, null,
Adam Cohenefca0272016-02-24 19:19:06 -0800492 child.getMeasuredWidth(), child.getPaddingTop());
493
494 mFolderLeaveBehind.delegateCellX = x;
495 mFolderLeaveBehind.delegateCellY = y;
Adam Cohenc51934b2011-07-26 21:07:43 -0700496 invalidate();
497 }
498
499 public void clearFolderLeaveBehind() {
Adam Cohenefca0272016-02-24 19:19:06 -0800500 mFolderLeaveBehind.delegateCellX = -1;
501 mFolderLeaveBehind.delegateCellY = -1;
Adam Cohenc51934b2011-07-26 21:07:43 -0700502 invalidate();
503 }
504
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700505 @Override
Michael Jurkae6235dd2011-10-04 15:02:05 -0700506 public boolean shouldDelayChildPressedState() {
507 return false;
508 }
509
Adam Cohen1462de32012-07-24 22:34:36 -0700510 public void restoreInstanceState(SparseArray<Parcelable> states) {
Sunny Goyal33a152f2014-07-22 12:13:14 -0700511 try {
512 dispatchRestoreInstanceState(states);
513 } catch (IllegalArgumentException ex) {
Sunny Goyal3d706ad2017-03-06 16:56:39 -0800514 if (FeatureFlags.IS_DOGFOOD_BUILD) {
Sunny Goyal33a152f2014-07-22 12:13:14 -0700515 throw ex;
516 }
517 // Mismatched viewId / viewType preventing restore. Skip restore on production builds.
518 Log.e(TAG, "Ignoring an error while restoring a view instance state", ex);
519 }
Adam Cohen1462de32012-07-24 22:34:36 -0700520 }
521
Michael Jurkae6235dd2011-10-04 15:02:05 -0700522 @Override
Jeff Sharkey83f111d2009-04-20 21:03:13 -0700523 public void cancelLongPress() {
524 super.cancelLongPress();
525
526 // Cancel long press for all children
527 final int count = getChildCount();
528 for (int i = 0; i < count; i++) {
529 final View child = getChildAt(i);
530 child.cancelLongPress();
531 }
532 }
533
Michael Jurkadee05892010-07-27 10:01:56 -0700534 public void setOnInterceptTouchListener(View.OnTouchListener listener) {
535 mInterceptTouchListener = listener;
536 }
537
Hyunyoung Songee3e6a72015-02-20 14:25:27 -0800538 public int getCountX() {
Adam Cohend22015c2010-07-26 22:02:18 -0700539 return mCountX;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800540 }
541
Hyunyoung Songee3e6a72015-02-20 14:25:27 -0800542 public int getCountY() {
Adam Cohend22015c2010-07-26 22:02:18 -0700543 return mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800544 }
545
Sunny Goyalc13403c2016-11-18 23:44:48 -0800546 public boolean acceptsWidget() {
547 return mContainerType == WORKSPACE;
Sunny Goyale9b651e2015-04-24 11:44:51 -0700548 }
549
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800550 public boolean addViewToCellLayout(View child, int index, int childId, LayoutParams params,
Sunny Goyalf7a29e82015-04-24 15:20:43 -0700551 boolean markCells) {
Winson Chungaafa03c2010-06-11 17:34:16 -0700552 final LayoutParams lp = params;
553
Andrew Flynnde38e422012-05-08 11:22:15 -0700554 // Hotseat icons - remove text
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800555 if (child instanceof BubbleTextView) {
556 BubbleTextView bubbleChild = (BubbleTextView) child;
Jon Mirandaf1eae802017-10-04 11:23:33 -0700557 bubbleChild.setTextVisibility(mContainerType != HOTSEAT);
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800558 }
559
Sunny Goyalc13403c2016-11-18 23:44:48 -0800560 child.setScaleX(mChildScale);
561 child.setScaleY(mChildScale);
Adam Cohen307fe232012-08-16 17:55:58 -0700562
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800563 // Generate an id for each view, this assumes we have at most 256x256 cells
564 // per workspace screen
Adam Cohend22015c2010-07-26 22:02:18 -0700565 if (lp.cellX >= 0 && lp.cellX <= mCountX - 1 && lp.cellY >= 0 && lp.cellY <= mCountY - 1) {
Winson Chungaafa03c2010-06-11 17:34:16 -0700566 // If the horizontal or vertical span is set to -1, it is taken to
567 // mean that it spans the extent of the CellLayout
Adam Cohend22015c2010-07-26 22:02:18 -0700568 if (lp.cellHSpan < 0) lp.cellHSpan = mCountX;
569 if (lp.cellVSpan < 0) lp.cellVSpan = mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800570
Winson Chungaafa03c2010-06-11 17:34:16 -0700571 child.setId(childId);
Tony Wickhama0628cc2015-10-14 15:23:04 -0700572 if (LOGD) {
573 Log.d(TAG, "Adding view to ShortcutsAndWidgetsContainer: " + child);
574 }
Sunny Goyalf7a29e82015-04-24 15:20:43 -0700575 mShortcutsAndWidgets.addView(child, index, lp);
Michael Jurkadee05892010-07-27 10:01:56 -0700576
Michael Jurkaf3ca3ab2010-10-20 17:08:24 -0700577 if (markCells) markCellsAsOccupiedForView(child);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700578
Winson Chungaafa03c2010-06-11 17:34:16 -0700579 return true;
580 }
581 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800582 }
Michael Jurka3e7c7632010-10-02 16:01:03 -0700583
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800584 @Override
Michael Jurka0280c3b2010-09-17 15:00:07 -0700585 public void removeAllViews() {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -0700586 mOccupied.clear();
Michael Jurkaa52570f2012-03-20 03:18:20 -0700587 mShortcutsAndWidgets.removeAllViews();
Michael Jurka0280c3b2010-09-17 15:00:07 -0700588 }
589
590 @Override
591 public void removeAllViewsInLayout() {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700592 if (mShortcutsAndWidgets.getChildCount() > 0) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -0700593 mOccupied.clear();
Michael Jurkaa52570f2012-03-20 03:18:20 -0700594 mShortcutsAndWidgets.removeAllViewsInLayout();
Michael Jurka7cfc2822011-08-02 20:19:24 -0700595 }
Michael Jurka0280c3b2010-09-17 15:00:07 -0700596 }
597
598 @Override
599 public void removeView(View view) {
600 markCellsAsUnoccupiedForView(view);
Michael Jurkaa52570f2012-03-20 03:18:20 -0700601 mShortcutsAndWidgets.removeView(view);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700602 }
603
604 @Override
605 public void removeViewAt(int index) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700606 markCellsAsUnoccupiedForView(mShortcutsAndWidgets.getChildAt(index));
607 mShortcutsAndWidgets.removeViewAt(index);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700608 }
609
610 @Override
611 public void removeViewInLayout(View view) {
612 markCellsAsUnoccupiedForView(view);
Michael Jurkaa52570f2012-03-20 03:18:20 -0700613 mShortcutsAndWidgets.removeViewInLayout(view);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700614 }
615
616 @Override
617 public void removeViews(int start, int count) {
618 for (int i = start; i < start + count; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700619 markCellsAsUnoccupiedForView(mShortcutsAndWidgets.getChildAt(i));
Michael Jurka0280c3b2010-09-17 15:00:07 -0700620 }
Michael Jurkaa52570f2012-03-20 03:18:20 -0700621 mShortcutsAndWidgets.removeViews(start, count);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700622 }
623
624 @Override
625 public void removeViewsInLayout(int start, int count) {
626 for (int i = start; i < start + count; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700627 markCellsAsUnoccupiedForView(mShortcutsAndWidgets.getChildAt(i));
Michael Jurka0280c3b2010-09-17 15:00:07 -0700628 }
Michael Jurkaa52570f2012-03-20 03:18:20 -0700629 mShortcutsAndWidgets.removeViewsInLayout(start, count);
Michael Jurkaabded662011-03-04 12:06:57 -0800630 }
631
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700632 /**
Winson Chungaafa03c2010-06-11 17:34:16 -0700633 * Given a point, return the cell that strictly encloses that point
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800634 * @param x X coordinate of the point
635 * @param y Y coordinate of the point
636 * @param result Array of 2 ints to hold the x and y coordinate of the cell
637 */
Sunny Goyale9b651e2015-04-24 11:44:51 -0700638 public void pointToCellExact(int x, int y, int[] result) {
Winson Chung4b825dcd2011-06-19 12:41:22 -0700639 final int hStartPadding = getPaddingLeft();
640 final int vStartPadding = getPaddingTop();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800641
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530642 result[0] = (x - hStartPadding) / mCellWidth;
643 result[1] = (y - vStartPadding) / mCellHeight;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800644
Adam Cohend22015c2010-07-26 22:02:18 -0700645 final int xAxis = mCountX;
646 final int yAxis = mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800647
648 if (result[0] < 0) result[0] = 0;
649 if (result[0] >= xAxis) result[0] = xAxis - 1;
650 if (result[1] < 0) result[1] = 0;
651 if (result[1] >= yAxis) result[1] = yAxis - 1;
652 }
Winson Chungaafa03c2010-06-11 17:34:16 -0700653
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800654 /**
655 * Given a point, return the cell that most closely encloses that point
656 * @param x X coordinate of the point
657 * @param y Y coordinate of the point
658 * @param result Array of 2 ints to hold the x and y coordinate of the cell
659 */
660 void pointToCellRounded(int x, int y, int[] result) {
661 pointToCellExact(x + (mCellWidth / 2), y + (mCellHeight / 2), result);
662 }
663
664 /**
665 * Given a cell coordinate, return the point that represents the upper left corner of that cell
Winson Chungaafa03c2010-06-11 17:34:16 -0700666 *
667 * @param cellX X coordinate of the cell
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800668 * @param cellY Y coordinate of the cell
Winson Chungaafa03c2010-06-11 17:34:16 -0700669 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800670 * @param result Array of 2 ints to hold the x and y coordinate of the point
671 */
672 void cellToPoint(int cellX, int cellY, int[] result) {
Winson Chung4b825dcd2011-06-19 12:41:22 -0700673 final int hStartPadding = getPaddingLeft();
674 final int vStartPadding = getPaddingTop();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800675
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530676 result[0] = hStartPadding + cellX * mCellWidth;
677 result[1] = vStartPadding + cellY * mCellHeight;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800678 }
679
Adam Cohene3e27a82011-04-15 12:07:39 -0700680 /**
Adam Cohen482ed822012-03-02 14:15:13 -0800681 * Given a cell coordinate, return the point that represents the center of the cell
Adam Cohene3e27a82011-04-15 12:07:39 -0700682 *
683 * @param cellX X coordinate of the cell
684 * @param cellY Y coordinate of the cell
685 *
686 * @param result Array of 2 ints to hold the x and y coordinate of the point
687 */
688 void cellToCenterPoint(int cellX, int cellY, int[] result) {
Adam Cohen47a876d2012-03-19 13:21:41 -0700689 regionToCenterPoint(cellX, cellY, 1, 1, result);
690 }
691
692 /**
693 * Given a cell coordinate and span return the point that represents the center of the regio
694 *
695 * @param cellX X coordinate of the cell
696 * @param cellY Y coordinate of the cell
697 *
698 * @param result Array of 2 ints to hold the x and y coordinate of the point
699 */
700 void regionToCenterPoint(int cellX, int cellY, int spanX, int spanY, int[] result) {
Winson Chung4b825dcd2011-06-19 12:41:22 -0700701 final int hStartPadding = getPaddingLeft();
702 final int vStartPadding = getPaddingTop();
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530703 result[0] = hStartPadding + cellX * mCellWidth + (spanX * mCellWidth) / 2;
704 result[1] = vStartPadding + cellY * mCellHeight + (spanY * mCellHeight) / 2;
Adam Cohene3e27a82011-04-15 12:07:39 -0700705 }
706
Adam Cohen19f37922012-03-21 11:59:11 -0700707 /**
708 * Given a cell coordinate and span fills out a corresponding pixel rect
709 *
710 * @param cellX X coordinate of the cell
711 * @param cellY Y coordinate of the cell
712 * @param result Rect in which to write the result
713 */
714 void regionToRect(int cellX, int cellY, int spanX, int spanY, Rect result) {
715 final int hStartPadding = getPaddingLeft();
716 final int vStartPadding = getPaddingTop();
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530717 final int left = hStartPadding + cellX * mCellWidth;
718 final int top = vStartPadding + cellY * mCellHeight;
719 result.set(left, top, left + (spanX * mCellWidth), top + (spanY * mCellHeight));
Adam Cohen19f37922012-03-21 11:59:11 -0700720 }
721
Adam Cohen482ed822012-03-02 14:15:13 -0800722 public float getDistanceFromCell(float x, float y, int[] cell) {
723 cellToCenterPoint(cell[0], cell[1], mTmpPoint);
Sunny Goyalf7a29e82015-04-24 15:20:43 -0700724 return (float) Math.hypot(x - mTmpPoint[0], y - mTmpPoint[1]);
Adam Cohen482ed822012-03-02 14:15:13 -0800725 }
726
Adam Cohenf9c184a2016-01-15 16:47:43 -0800727 public int getCellWidth() {
Romain Guy84f296c2009-11-04 15:00:44 -0800728 return mCellWidth;
729 }
730
Sunny Goyal0b754e52017-08-07 07:42:45 -0700731 public int getCellHeight() {
Romain Guy84f296c2009-11-04 15:00:44 -0800732 return mCellHeight;
733 }
734
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700735 public void setFixedSize(int width, int height) {
736 mFixedWidth = width;
737 mFixedHeight = height;
738 }
739
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800740 @Override
741 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800742 int widthSpecMode = MeasureSpec.getMode(widthMeasureSpec);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800743 int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec);
Winson Chung5f8afe62013-08-12 16:19:28 -0700744 int widthSize = MeasureSpec.getSize(widthMeasureSpec);
745 int heightSize = MeasureSpec.getSize(heightMeasureSpec);
Winson Chung2d75f122013-09-23 16:53:31 -0700746 int childWidthSize = widthSize - (getPaddingLeft() + getPaddingRight());
747 int childHeightSize = heightSize - (getPaddingTop() + getPaddingBottom());
Winson Chung11a1a532013-09-13 11:14:45 -0700748 if (mFixedCellWidth < 0 || mFixedCellHeight < 0) {
Sunny Goyalc6205602015-05-21 20:46:33 -0700749 int cw = DeviceProfile.calculateCellWidth(childWidthSize, mCountX);
750 int ch = DeviceProfile.calculateCellHeight(childHeightSize, mCountY);
Winson Chung11a1a532013-09-13 11:14:45 -0700751 if (cw != mCellWidth || ch != mCellHeight) {
752 mCellWidth = cw;
753 mCellHeight = ch;
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530754 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mCountX, mCountY);
Winson Chung11a1a532013-09-13 11:14:45 -0700755 }
Winson Chung5f8afe62013-08-12 16:19:28 -0700756 }
Winson Chungaafa03c2010-06-11 17:34:16 -0700757
Winson Chung2d75f122013-09-23 16:53:31 -0700758 int newWidth = childWidthSize;
759 int newHeight = childHeightSize;
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700760 if (mFixedWidth > 0 && mFixedHeight > 0) {
761 newWidth = mFixedWidth;
762 newHeight = mFixedHeight;
763 } else if (widthSpecMode == MeasureSpec.UNSPECIFIED || heightSpecMode == MeasureSpec.UNSPECIFIED) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800764 throw new RuntimeException("CellLayout cannot have UNSPECIFIED dimensions");
765 }
766
Sunny Goyal4fe5a372015-05-14 19:55:10 -0700767 mShortcutsAndWidgets.measure(
768 MeasureSpec.makeMeasureSpec(newWidth, MeasureSpec.EXACTLY),
769 MeasureSpec.makeMeasureSpec(newHeight, MeasureSpec.EXACTLY));
770
771 int maxWidth = mShortcutsAndWidgets.getMeasuredWidth();
772 int maxHeight = mShortcutsAndWidgets.getMeasuredHeight();
Winson Chung2d75f122013-09-23 16:53:31 -0700773 if (mFixedWidth > 0 && mFixedHeight > 0) {
774 setMeasuredDimension(maxWidth, maxHeight);
775 } else {
776 setMeasuredDimension(widthSize, heightSize);
777 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800778 }
779
780 @Override
Michael Jurka28750fb2010-09-24 17:43:49 -0700781 protected void onLayout(boolean changed, int l, int t, int r, int b) {
Tony Wickham26b01422015-11-10 14:44:32 -0800782 int left = getPaddingLeft();
Sunny Goyal7ce471b2017-08-02 03:37:39 -0700783 left += (int) Math.ceil(getUnusedHorizontalSpace() / 2f);
Sunny Goyal7c786f72016-06-01 14:08:21 -0700784 int right = r - l - getPaddingRight();
Sunny Goyal7ce471b2017-08-02 03:37:39 -0700785 right -= (int) Math.ceil(getUnusedHorizontalSpace() / 2f);
Sunny Goyal7c786f72016-06-01 14:08:21 -0700786
Winson Chung38848ca2013-10-08 12:03:44 -0700787 int top = getPaddingTop();
Sunny Goyal7c786f72016-06-01 14:08:21 -0700788 int bottom = b - t - getPaddingBottom();
Sunny Goyal4fe5a372015-05-14 19:55:10 -0700789
Sunny Goyal7c786f72016-06-01 14:08:21 -0700790 mShortcutsAndWidgets.layout(left, top, right, bottom);
Sunny Goyal7c786f72016-06-01 14:08:21 -0700791 // Expand the background drawing bounds by the padding baked into the background drawable
792 mBackground.getPadding(mTempRect);
793 mBackground.setBounds(
Jon Miranda28032002017-07-13 16:18:56 -0700794 left - mTempRect.left - getPaddingLeft(),
795 top - mTempRect.top - getPaddingTop(),
796 right + mTempRect.right + getPaddingRight(),
797 bottom + mTempRect.bottom + getPaddingBottom());
Sunny Goyal7c786f72016-06-01 14:08:21 -0700798 }
799
Tony Wickhama501d492015-11-03 18:05:01 -0800800 /**
801 * Returns the amount of space left over after subtracting padding and cells. This space will be
802 * very small, a few pixels at most, and is a result of rounding down when calculating the cell
803 * width in {@link DeviceProfile#calculateCellWidth(int, int)}.
804 */
805 public int getUnusedHorizontalSpace() {
806 return getMeasuredWidth() - getPaddingLeft() - getPaddingRight() - (mCountX * mCellWidth);
807 }
808
Sunny Goyalaeb16432017-10-16 11:46:41 -0700809 public Drawable getScrimBackground() {
810 return mBackground;
Michael Jurkadee05892010-07-27 10:01:56 -0700811 }
812
Sunny Goyal2805e632015-05-20 15:35:32 -0700813 @Override
814 protected boolean verifyDrawable(Drawable who) {
Sunny Goyal7ce471b2017-08-02 03:37:39 -0700815 return super.verifyDrawable(who) || (who == mBackground);
Sunny Goyal2805e632015-05-20 15:35:32 -0700816 }
817
Michael Jurkaa52570f2012-03-20 03:18:20 -0700818 public ShortcutAndWidgetContainer getShortcutsAndWidgets() {
Sunny Goyaldcbcc862014-08-12 15:58:36 -0700819 return mShortcutsAndWidgets;
Michael Jurkaa52570f2012-03-20 03:18:20 -0700820 }
821
Patrick Dubroy440c3602010-07-13 17:50:32 -0700822 public View getChildAt(int x, int y) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700823 return mShortcutsAndWidgets.getChildAt(x, y);
Patrick Dubroy440c3602010-07-13 17:50:32 -0700824 }
825
Adam Cohen76fc0852011-06-17 13:26:23 -0700826 public boolean animateChildToPosition(final View child, int cellX, int cellY, int duration,
Adam Cohen482ed822012-03-02 14:15:13 -0800827 int delay, boolean permanent, boolean adjustOccupied) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700828 ShortcutAndWidgetContainer clc = getShortcutsAndWidgets();
Adam Cohen482ed822012-03-02 14:15:13 -0800829
Adam Cohen19f37922012-03-21 11:59:11 -0700830 if (clc.indexOfChild(child) != -1) {
Adam Cohenbfbfd262011-06-13 16:55:12 -0700831 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
832 final ItemInfo info = (ItemInfo) child.getTag();
833
834 // We cancel any existing animations
835 if (mReorderAnimators.containsKey(lp)) {
836 mReorderAnimators.get(lp).cancel();
837 mReorderAnimators.remove(lp);
838 }
839
Adam Cohen482ed822012-03-02 14:15:13 -0800840 final int oldX = lp.x;
841 final int oldY = lp.y;
842 if (adjustOccupied) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -0700843 GridOccupancy occupied = permanent ? mOccupied : mTmpOccupied;
844 occupied.markCells(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan, false);
845 occupied.markCells(cellX, cellY, lp.cellHSpan, lp.cellVSpan, true);
Adam Cohen482ed822012-03-02 14:15:13 -0800846 }
Adam Cohenbfbfd262011-06-13 16:55:12 -0700847 lp.isLockedToGrid = true;
Adam Cohen482ed822012-03-02 14:15:13 -0800848 if (permanent) {
849 lp.cellX = info.cellX = cellX;
850 lp.cellY = info.cellY = cellY;
851 } else {
852 lp.tmpCellX = cellX;
853 lp.tmpCellY = cellY;
854 }
Jon Mirandae96798e2016-12-07 12:10:44 -0800855 clc.setupLp(child);
Adam Cohenbfbfd262011-06-13 16:55:12 -0700856 lp.isLockedToGrid = false;
Adam Cohen482ed822012-03-02 14:15:13 -0800857 final int newX = lp.x;
858 final int newY = lp.y;
Adam Cohenbfbfd262011-06-13 16:55:12 -0700859
Adam Cohen76fc0852011-06-17 13:26:23 -0700860 lp.x = oldX;
861 lp.y = oldY;
Adam Cohen76fc0852011-06-17 13:26:23 -0700862
Adam Cohen482ed822012-03-02 14:15:13 -0800863 // Exit early if we're not actually moving the view
864 if (oldX == newX && oldY == newY) {
865 lp.isLockedToGrid = true;
866 return true;
867 }
868
Sunny Goyal849c6a22018-08-08 16:33:46 -0700869 ValueAnimator va = ValueAnimator.ofFloat(0f, 1f);
Adam Cohen482ed822012-03-02 14:15:13 -0800870 va.setDuration(duration);
871 mReorderAnimators.put(lp, va);
872
873 va.addUpdateListener(new AnimatorUpdateListener() {
874 @Override
Adam Cohenbfbfd262011-06-13 16:55:12 -0700875 public void onAnimationUpdate(ValueAnimator animation) {
Jon Mirandae96798e2016-12-07 12:10:44 -0800876 float r = (Float) animation.getAnimatedValue();
Adam Cohen19f37922012-03-21 11:59:11 -0700877 lp.x = (int) ((1 - r) * oldX + r * newX);
878 lp.y = (int) ((1 - r) * oldY + r * newY);
Adam Cohen6b8a02d2012-03-22 15:13:40 -0700879 child.requestLayout();
Adam Cohenbfbfd262011-06-13 16:55:12 -0700880 }
881 });
Adam Cohen482ed822012-03-02 14:15:13 -0800882 va.addListener(new AnimatorListenerAdapter() {
Adam Cohenbfbfd262011-06-13 16:55:12 -0700883 boolean cancelled = false;
884 public void onAnimationEnd(Animator animation) {
885 // If the animation was cancelled, it means that another animation
886 // has interrupted this one, and we don't want to lock the item into
887 // place just yet.
888 if (!cancelled) {
889 lp.isLockedToGrid = true;
Adam Cohen482ed822012-03-02 14:15:13 -0800890 child.requestLayout();
Adam Cohenbfbfd262011-06-13 16:55:12 -0700891 }
892 if (mReorderAnimators.containsKey(lp)) {
893 mReorderAnimators.remove(lp);
894 }
895 }
896 public void onAnimationCancel(Animator animation) {
897 cancelled = true;
898 }
899 });
Adam Cohen482ed822012-03-02 14:15:13 -0800900 va.setStartDelay(delay);
901 va.start();
Adam Cohenbfbfd262011-06-13 16:55:12 -0700902 return true;
903 }
904 return false;
905 }
906
Sunny Goyal06e21a22016-08-11 16:02:02 -0700907 void visualizeDropLocation(View v, DragPreviewProvider outlineProvider, int cellX, int cellY,
908 int spanX, int spanY, boolean resize, DropTarget.DragObject dragObject) {
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -0700909 final int oldDragCellX = mDragCell[0];
910 final int oldDragCellY = mDragCell[1];
Adam Cohen482ed822012-03-02 14:15:13 -0800911
Hyunyoung Song0de01172016-10-05 16:27:48 -0700912 if (outlineProvider == null || outlineProvider.generatedDragOutline == null) {
Adam Cohen2801caf2011-05-13 20:57:39 -0700913 return;
914 }
915
Hyunyoung Song0de01172016-10-05 16:27:48 -0700916 Bitmap dragOutline = outlineProvider.generatedDragOutline;
Adam Cohen482ed822012-03-02 14:15:13 -0800917 if (cellX != oldDragCellX || cellY != oldDragCellY) {
Sunny Goyale78e3d72015-09-24 11:23:31 -0700918 Point dragOffset = dragObject.dragView.getDragVisualizeOffset();
919 Rect dragRegion = dragObject.dragView.getDragRegion();
920
Adam Cohen482ed822012-03-02 14:15:13 -0800921 mDragCell[0] = cellX;
922 mDragCell[1] = cellY;
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700923
Joe Onorato4be866d2010-10-10 11:26:02 -0700924 final int oldIndex = mDragOutlineCurrent;
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -0700925 mDragOutlineAnims[oldIndex].animateOut();
926 mDragOutlineCurrent = (oldIndex + 1) % mDragOutlines.length;
Adam Cohend41fbf52012-02-16 23:53:59 -0800927 Rect r = mDragOutlines[mDragOutlineCurrent];
Sunny Goyal106bf642015-07-16 12:18:06 -0700928
Adam Cohend41fbf52012-02-16 23:53:59 -0800929 if (resize) {
Adam Cohen482ed822012-03-02 14:15:13 -0800930 cellToRect(cellX, cellY, spanX, spanY, r);
Jon Mirandae96798e2016-12-07 12:10:44 -0800931 if (v instanceof LauncherAppWidgetHostView) {
Sunny Goyalab770a12018-11-14 15:17:26 -0800932 DeviceProfile profile = mActivity.getDeviceProfile();
Jon Miranda6f6a06a2016-12-15 11:24:18 -0800933 Utilities.shrinkRect(r, profile.appWidgetScale.x, profile.appWidgetScale.y);
Jon Mirandae96798e2016-12-07 12:10:44 -0800934 }
Sunny Goyal106bf642015-07-16 12:18:06 -0700935 } else {
936 // Find the top left corner of the rect the object will occupy
937 final int[] topLeft = mTmpPoint;
938 cellToPoint(cellX, cellY, topLeft);
939
940 int left = topLeft[0];
941 int top = topLeft[1];
942
943 if (v != null && dragOffset == null) {
944 // When drawing the drag outline, it did not account for margin offsets
945 // added by the view's parent.
946 MarginLayoutParams lp = (MarginLayoutParams) v.getLayoutParams();
947 left += lp.leftMargin;
948 top += lp.topMargin;
949
950 // Offsets due to the size difference between the View and the dragOutline.
951 // There is a size difference to account for the outer blur, which may lie
952 // outside the bounds of the view.
Jon Mirandaf7ff3fe2016-12-05 12:04:44 -0800953 top += ((mCellHeight * spanY) - dragOutline.getHeight()) / 2;
Sunny Goyal106bf642015-07-16 12:18:06 -0700954 // We center about the x axis
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530955 left += ((mCellWidth * spanX) - dragOutline.getWidth()) / 2;
Sunny Goyal106bf642015-07-16 12:18:06 -0700956 } else {
957 if (dragOffset != null && dragRegion != null) {
958 // Center the drag region *horizontally* in the cell and apply a drag
959 // outline offset
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530960 left += dragOffset.x + ((mCellWidth * spanX) - dragRegion.width()) / 2;
Sunny Goyal106bf642015-07-16 12:18:06 -0700961 int cHeight = getShortcutsAndWidgets().getCellContentHeight();
962 int cellPaddingY = (int) Math.max(0, ((mCellHeight - cHeight) / 2f));
963 top += dragOffset.y + cellPaddingY;
964 } else {
965 // Center the drag outline in the cell
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530966 left += ((mCellWidth * spanX) - dragOutline.getWidth()) / 2;
967 top += ((mCellHeight * spanY) - dragOutline.getHeight()) / 2;
Sunny Goyal106bf642015-07-16 12:18:06 -0700968 }
969 }
970 r.set(left, top, left + dragOutline.getWidth(), top + dragOutline.getHeight());
Adam Cohend41fbf52012-02-16 23:53:59 -0800971 }
Winson Chung150fbab2010-09-29 17:14:26 -0700972
Jon Miranda6f6a06a2016-12-15 11:24:18 -0800973 Utilities.scaleRectAboutCenter(r, mChildScale);
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -0700974 mDragOutlineAnims[mDragOutlineCurrent].setTag(dragOutline);
975 mDragOutlineAnims[mDragOutlineCurrent].animateIn();
Sunny Goyale78e3d72015-09-24 11:23:31 -0700976
977 if (dragObject.stateAnnouncer != null) {
Sunny Goyalc13403c2016-11-18 23:44:48 -0800978 dragObject.stateAnnouncer.announce(getItemMoveDescription(cellX, cellY));
Sunny Goyale78e3d72015-09-24 11:23:31 -0700979 }
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700980 }
981 }
982
Sunny Goyal726bee72018-03-05 12:54:24 -0800983 @SuppressLint("StringFormatMatches")
Sunny Goyalc13403c2016-11-18 23:44:48 -0800984 public String getItemMoveDescription(int cellX, int cellY) {
985 if (mContainerType == HOTSEAT) {
986 return getContext().getString(R.string.move_to_hotseat_position,
987 Math.max(cellX, cellY) + 1);
988 } else {
989 return getContext().getString(R.string.move_to_empty_cell,
990 cellY + 1, cellX + 1);
991 }
992 }
993
Adam Cohene0310962011-04-18 16:15:31 -0700994 public void clearDragOutlines() {
995 final int oldIndex = mDragOutlineCurrent;
996 mDragOutlineAnims[oldIndex].animateOut();
Adam Cohend41fbf52012-02-16 23:53:59 -0800997 mDragCell[0] = mDragCell[1] = -1;
Adam Cohene0310962011-04-18 16:15:31 -0700998 }
999
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001000 /**
Jeff Sharkey70864282009-04-07 21:08:40 -07001001 * Find a vacant area that will fit the given bounds nearest the requested
1002 * cell location. Uses Euclidean distance to score multiple vacant areas.
Winson Chungaafa03c2010-06-11 17:34:16 -07001003 *
Romain Guy51afc022009-05-04 18:03:43 -07001004 * @param pixelX The X location at which you want to search for a vacant area.
1005 * @param pixelY The Y location at which you want to search for a vacant area.
Adam Cohend41fbf52012-02-16 23:53:59 -08001006 * @param minSpanX The minimum horizontal span required
1007 * @param minSpanY The minimum vertical span required
1008 * @param spanX Horizontal span of the object.
1009 * @param spanY Vertical span of the object.
1010 * @param result Array in which to place the result, or null (in which case a new array will
1011 * be allocated)
1012 * @return The X, Y cell of a vacant area that can contain this object,
1013 * nearest the requested location.
1014 */
1015 int[] findNearestVacantArea(int pixelX, int pixelY, int minSpanX, int minSpanY, int spanX,
1016 int spanY, int[] result, int[] resultSpan) {
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001017 return findNearestArea(pixelX, pixelY, minSpanX, minSpanY, spanX, spanY, true,
Adam Cohend41fbf52012-02-16 23:53:59 -08001018 result, resultSpan);
1019 }
1020
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001021 private final Stack<Rect> mTempRectStack = new Stack<>();
Adam Cohend41fbf52012-02-16 23:53:59 -08001022 private void lazyInitTempRectStack() {
1023 if (mTempRectStack.isEmpty()) {
1024 for (int i = 0; i < mCountX * mCountY; i++) {
1025 mTempRectStack.push(new Rect());
1026 }
1027 }
1028 }
Adam Cohen482ed822012-03-02 14:15:13 -08001029
Adam Cohend41fbf52012-02-16 23:53:59 -08001030 private void recycleTempRects(Stack<Rect> used) {
1031 while (!used.isEmpty()) {
1032 mTempRectStack.push(used.pop());
1033 }
1034 }
1035
1036 /**
1037 * Find a vacant area that will fit the given bounds nearest the requested
1038 * cell location. Uses Euclidean distance to score multiple vacant areas.
1039 *
1040 * @param pixelX The X location at which you want to search for a vacant area.
1041 * @param pixelY The Y location at which you want to search for a vacant area.
1042 * @param minSpanX The minimum horizontal span required
1043 * @param minSpanY The minimum vertical span required
1044 * @param spanX Horizontal span of the object.
1045 * @param spanY Vertical span of the object.
1046 * @param ignoreOccupied If true, the result can be an occupied cell
1047 * @param result Array in which to place the result, or null (in which case a new array will
1048 * be allocated)
1049 * @return The X, Y cell of a vacant area that can contain this object,
1050 * nearest the requested location.
1051 */
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001052 private int[] findNearestArea(int pixelX, int pixelY, int minSpanX, int minSpanY, int spanX,
1053 int spanY, boolean ignoreOccupied, int[] result, int[] resultSpan) {
Adam Cohend41fbf52012-02-16 23:53:59 -08001054 lazyInitTempRectStack();
Michael Jurkac6ee42e2010-09-30 12:04:50 -07001055
Adam Cohene3e27a82011-04-15 12:07:39 -07001056 // For items with a spanX / spanY > 1, the passed in point (pixelX, pixelY) corresponds
1057 // to the center of the item, but we are searching based on the top-left cell, so
1058 // we translate the point over to correspond to the top-left.
Sunny Goyalaa8a8712016-11-20 15:26:01 +05301059 pixelX -= mCellWidth * (spanX - 1) / 2f;
1060 pixelY -= mCellHeight * (spanY - 1) / 2f;
Adam Cohene3e27a82011-04-15 12:07:39 -07001061
Jeff Sharkey70864282009-04-07 21:08:40 -07001062 // Keep track of best-scoring drop area
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001063 final int[] bestXY = result != null ? result : new int[2];
Jeff Sharkey70864282009-04-07 21:08:40 -07001064 double bestDistance = Double.MAX_VALUE;
Adam Cohend41fbf52012-02-16 23:53:59 -08001065 final Rect bestRect = new Rect(-1, -1, -1, -1);
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001066 final Stack<Rect> validRegions = new Stack<>();
Winson Chungaafa03c2010-06-11 17:34:16 -07001067
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001068 final int countX = mCountX;
1069 final int countY = mCountY;
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001070
Adam Cohend41fbf52012-02-16 23:53:59 -08001071 if (minSpanX <= 0 || minSpanY <= 0 || spanX <= 0 || spanY <= 0 ||
1072 spanX < minSpanX || spanY < minSpanY) {
1073 return bestXY;
1074 }
1075
1076 for (int y = 0; y < countY - (minSpanY - 1); y++) {
Michael Jurkac28de512010-08-13 11:27:44 -07001077 inner:
Adam Cohend41fbf52012-02-16 23:53:59 -08001078 for (int x = 0; x < countX - (minSpanX - 1); x++) {
1079 int ySize = -1;
1080 int xSize = -1;
Adam Cohendf035382011-04-11 17:22:04 -07001081 if (ignoreOccupied) {
Adam Cohend41fbf52012-02-16 23:53:59 -08001082 // First, let's see if this thing fits anywhere
1083 for (int i = 0; i < minSpanX; i++) {
1084 for (int j = 0; j < minSpanY; j++) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001085 if (mOccupied.cells[x + i][y + j]) {
Adam Cohendf035382011-04-11 17:22:04 -07001086 continue inner;
1087 }
Michael Jurkac28de512010-08-13 11:27:44 -07001088 }
1089 }
Adam Cohend41fbf52012-02-16 23:53:59 -08001090 xSize = minSpanX;
1091 ySize = minSpanY;
1092
1093 // We know that the item will fit at _some_ acceptable size, now let's see
1094 // how big we can make it. We'll alternate between incrementing x and y spans
1095 // until we hit a limit.
1096 boolean incX = true;
1097 boolean hitMaxX = xSize >= spanX;
1098 boolean hitMaxY = ySize >= spanY;
1099 while (!(hitMaxX && hitMaxY)) {
1100 if (incX && !hitMaxX) {
1101 for (int j = 0; j < ySize; j++) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001102 if (x + xSize > countX -1 || mOccupied.cells[x + xSize][y + j]) {
Adam Cohend41fbf52012-02-16 23:53:59 -08001103 // We can't move out horizontally
1104 hitMaxX = true;
1105 }
1106 }
1107 if (!hitMaxX) {
1108 xSize++;
1109 }
1110 } else if (!hitMaxY) {
1111 for (int i = 0; i < xSize; i++) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001112 if (y + ySize > countY - 1 || mOccupied.cells[x + i][y + ySize]) {
Adam Cohend41fbf52012-02-16 23:53:59 -08001113 // We can't move out vertically
1114 hitMaxY = true;
1115 }
1116 }
1117 if (!hitMaxY) {
1118 ySize++;
1119 }
1120 }
1121 hitMaxX |= xSize >= spanX;
1122 hitMaxY |= ySize >= spanY;
1123 incX = !incX;
1124 }
1125 incX = true;
1126 hitMaxX = xSize >= spanX;
1127 hitMaxY = ySize >= spanY;
Michael Jurkac28de512010-08-13 11:27:44 -07001128 }
Sunny Goyal2805e632015-05-20 15:35:32 -07001129 final int[] cellXY = mTmpPoint;
Adam Cohene3e27a82011-04-15 12:07:39 -07001130 cellToCenterPoint(x, y, cellXY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001131
Adam Cohend41fbf52012-02-16 23:53:59 -08001132 // We verify that the current rect is not a sub-rect of any of our previous
1133 // candidates. In this case, the current rect is disqualified in favour of the
1134 // containing rect.
1135 Rect currentRect = mTempRectStack.pop();
1136 currentRect.set(x, y, x + xSize, y + ySize);
1137 boolean contained = false;
1138 for (Rect r : validRegions) {
1139 if (r.contains(currentRect)) {
1140 contained = true;
1141 break;
1142 }
1143 }
1144 validRegions.push(currentRect);
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001145 double distance = Math.hypot(cellXY[0] - pixelX, cellXY[1] - pixelY);
Adam Cohen482ed822012-03-02 14:15:13 -08001146
Adam Cohend41fbf52012-02-16 23:53:59 -08001147 if ((distance <= bestDistance && !contained) ||
1148 currentRect.contains(bestRect)) {
Michael Jurkac28de512010-08-13 11:27:44 -07001149 bestDistance = distance;
1150 bestXY[0] = x;
1151 bestXY[1] = y;
Adam Cohend41fbf52012-02-16 23:53:59 -08001152 if (resultSpan != null) {
1153 resultSpan[0] = xSize;
1154 resultSpan[1] = ySize;
1155 }
1156 bestRect.set(currentRect);
Michael Jurkac28de512010-08-13 11:27:44 -07001157 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001158 }
1159 }
1160
Adam Cohenc0dcf592011-06-01 15:30:43 -07001161 // Return -1, -1 if no suitable location found
1162 if (bestDistance == Double.MAX_VALUE) {
1163 bestXY[0] = -1;
1164 bestXY[1] = -1;
Jeff Sharkey70864282009-04-07 21:08:40 -07001165 }
Adam Cohend41fbf52012-02-16 23:53:59 -08001166 recycleTempRects(validRegions);
Adam Cohenc0dcf592011-06-01 15:30:43 -07001167 return bestXY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001168 }
Winson Chungaafa03c2010-06-11 17:34:16 -07001169
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001170 /**
Adam Cohen482ed822012-03-02 14:15:13 -08001171 * Find a vacant area that will fit the given bounds nearest the requested
1172 * cell location, and will also weigh in a suggested direction vector of the
1173 * desired location. This method computers distance based on unit grid distances,
1174 * not pixel distances.
1175 *
Adam Cohen47a876d2012-03-19 13:21:41 -07001176 * @param cellX The X cell nearest to which you want to search for a vacant area.
1177 * @param cellY The Y cell nearest which you want to search for a vacant area.
Adam Cohen482ed822012-03-02 14:15:13 -08001178 * @param spanX Horizontal span of the object.
1179 * @param spanY Vertical span of the object.
Adam Cohen47a876d2012-03-19 13:21:41 -07001180 * @param direction The favored direction in which the views should move from x, y
Sunny Goyal9eba1fd2015-10-16 08:58:57 -07001181 * @param occupied The array which represents which cells in the CellLayout are occupied
Adam Cohen47a876d2012-03-19 13:21:41 -07001182 * @param blockOccupied The array which represents which cells in the specified block (cellX,
Winson Chung5f8afe62013-08-12 16:19:28 -07001183 * cellY, spanX, spanY) are occupied. This is used when try to move a group of views.
Adam Cohen482ed822012-03-02 14:15:13 -08001184 * @param result Array in which to place the result, or null (in which case a new array will
1185 * be allocated)
1186 * @return The X, Y cell of a vacant area that can contain this object,
1187 * nearest the requested location.
1188 */
1189 private int[] findNearestArea(int cellX, int cellY, int spanX, int spanY, int[] direction,
Adam Cohen47a876d2012-03-19 13:21:41 -07001190 boolean[][] occupied, boolean blockOccupied[][], int[] result) {
Adam Cohen482ed822012-03-02 14:15:13 -08001191 // Keep track of best-scoring drop area
1192 final int[] bestXY = result != null ? result : new int[2];
1193 float bestDistance = Float.MAX_VALUE;
1194 int bestDirectionScore = Integer.MIN_VALUE;
1195
1196 final int countX = mCountX;
1197 final int countY = mCountY;
1198
1199 for (int y = 0; y < countY - (spanY - 1); y++) {
1200 inner:
1201 for (int x = 0; x < countX - (spanX - 1); x++) {
1202 // First, let's see if this thing fits anywhere
1203 for (int i = 0; i < spanX; i++) {
1204 for (int j = 0; j < spanY; j++) {
Adam Cohen47a876d2012-03-19 13:21:41 -07001205 if (occupied[x + i][y + j] && (blockOccupied == null || blockOccupied[i][j])) {
Adam Cohen482ed822012-03-02 14:15:13 -08001206 continue inner;
1207 }
1208 }
1209 }
1210
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001211 float distance = (float) Math.hypot(x - cellX, y - cellY);
Adam Cohen482ed822012-03-02 14:15:13 -08001212 int[] curDirection = mTmpPoint;
Adam Cohen47a876d2012-03-19 13:21:41 -07001213 computeDirectionVector(x - cellX, y - cellY, curDirection);
1214 // The direction score is just the dot product of the two candidate direction
1215 // and that passed in.
Adam Cohen482ed822012-03-02 14:15:13 -08001216 int curDirectionScore = direction[0] * curDirection[0] +
1217 direction[1] * curDirection[1];
Sunny Goyal8f90dcf2016-08-18 15:01:11 -07001218 if (Float.compare(distance, bestDistance) < 0 ||
1219 (Float.compare(distance, bestDistance) == 0
1220 && curDirectionScore > bestDirectionScore)) {
Adam Cohen482ed822012-03-02 14:15:13 -08001221 bestDistance = distance;
1222 bestDirectionScore = curDirectionScore;
1223 bestXY[0] = x;
1224 bestXY[1] = y;
1225 }
1226 }
1227 }
1228
1229 // Return -1, -1 if no suitable location found
1230 if (bestDistance == Float.MAX_VALUE) {
1231 bestXY[0] = -1;
1232 bestXY[1] = -1;
1233 }
1234 return bestXY;
1235 }
1236
1237 private boolean addViewToTempLocation(View v, Rect rectOccupiedByPotentialDrop,
Adam Cohen8baab352012-03-20 17:39:21 -07001238 int[] direction, ItemConfiguration currentState) {
1239 CellAndSpan c = currentState.map.get(v);
Adam Cohen482ed822012-03-02 14:15:13 -08001240 boolean success = false;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001241 mTmpOccupied.markCells(c, false);
1242 mTmpOccupied.markCells(rectOccupiedByPotentialDrop, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001243
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001244 findNearestArea(c.cellX, c.cellY, c.spanX, c.spanY, direction,
1245 mTmpOccupied.cells, null, mTempLocation);
Adam Cohen482ed822012-03-02 14:15:13 -08001246
1247 if (mTempLocation[0] >= 0 && mTempLocation[1] >= 0) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001248 c.cellX = mTempLocation[0];
1249 c.cellY = mTempLocation[1];
Adam Cohen482ed822012-03-02 14:15:13 -08001250 success = true;
Adam Cohen482ed822012-03-02 14:15:13 -08001251 }
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001252 mTmpOccupied.markCells(c, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001253 return success;
1254 }
1255
Adam Cohenf3900c22012-11-16 18:28:11 -08001256 /**
1257 * This helper class defines a cluster of views. It helps with defining complex edges
1258 * of the cluster and determining how those edges interact with other views. The edges
1259 * essentially define a fine-grained boundary around the cluster of views -- like a more
1260 * precise version of a bounding box.
1261 */
1262 private class ViewCluster {
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001263 final static int LEFT = 1 << 0;
1264 final static int TOP = 1 << 1;
1265 final static int RIGHT = 1 << 2;
1266 final static int BOTTOM = 1 << 3;
Adam Cohen47a876d2012-03-19 13:21:41 -07001267
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001268 final ArrayList<View> views;
1269 final ItemConfiguration config;
1270 final Rect boundingRect = new Rect();
Adam Cohen47a876d2012-03-19 13:21:41 -07001271
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001272 final int[] leftEdge = new int[mCountY];
1273 final int[] rightEdge = new int[mCountY];
1274 final int[] topEdge = new int[mCountX];
1275 final int[] bottomEdge = new int[mCountX];
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001276 int dirtyEdges;
1277 boolean boundingRectDirty;
Adam Cohenf3900c22012-11-16 18:28:11 -08001278
1279 @SuppressWarnings("unchecked")
1280 public ViewCluster(ArrayList<View> views, ItemConfiguration config) {
1281 this.views = (ArrayList<View>) views.clone();
1282 this.config = config;
1283 resetEdges();
Adam Cohen47a876d2012-03-19 13:21:41 -07001284 }
1285
Adam Cohenf3900c22012-11-16 18:28:11 -08001286 void resetEdges() {
1287 for (int i = 0; i < mCountX; i++) {
1288 topEdge[i] = -1;
1289 bottomEdge[i] = -1;
1290 }
1291 for (int i = 0; i < mCountY; i++) {
1292 leftEdge[i] = -1;
1293 rightEdge[i] = -1;
1294 }
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001295 dirtyEdges = LEFT | TOP | RIGHT | BOTTOM;
Adam Cohenf3900c22012-11-16 18:28:11 -08001296 boundingRectDirty = true;
1297 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001298
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001299 void computeEdge(int which) {
Adam Cohenf3900c22012-11-16 18:28:11 -08001300 int count = views.size();
1301 for (int i = 0; i < count; i++) {
1302 CellAndSpan cs = config.map.get(views.get(i));
1303 switch (which) {
1304 case LEFT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001305 int left = cs.cellX;
1306 for (int j = cs.cellY; j < cs.cellY + cs.spanY; j++) {
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001307 if (left < leftEdge[j] || leftEdge[j] < 0) {
1308 leftEdge[j] = left;
Adam Cohena56dc102012-07-13 13:41:42 -07001309 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001310 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001311 break;
1312 case RIGHT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001313 int right = cs.cellX + cs.spanX;
1314 for (int j = cs.cellY; j < cs.cellY + cs.spanY; j++) {
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001315 if (right > rightEdge[j]) {
1316 rightEdge[j] = right;
Adam Cohenf3900c22012-11-16 18:28:11 -08001317 }
1318 }
1319 break;
1320 case TOP:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001321 int top = cs.cellY;
1322 for (int j = cs.cellX; j < cs.cellX + cs.spanX; j++) {
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001323 if (top < topEdge[j] || topEdge[j] < 0) {
1324 topEdge[j] = top;
Adam Cohenf3900c22012-11-16 18:28:11 -08001325 }
1326 }
1327 break;
1328 case BOTTOM:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001329 int bottom = cs.cellY + cs.spanY;
1330 for (int j = cs.cellX; j < cs.cellX + cs.spanX; j++) {
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001331 if (bottom > bottomEdge[j]) {
1332 bottomEdge[j] = bottom;
Adam Cohenf3900c22012-11-16 18:28:11 -08001333 }
1334 }
1335 break;
Adam Cohen47a876d2012-03-19 13:21:41 -07001336 }
1337 }
1338 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001339
1340 boolean isViewTouchingEdge(View v, int whichEdge) {
1341 CellAndSpan cs = config.map.get(v);
1342
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001343 if ((dirtyEdges & whichEdge) == whichEdge) {
1344 computeEdge(whichEdge);
1345 dirtyEdges &= ~whichEdge;
1346 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001347
1348 switch (whichEdge) {
1349 case LEFT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001350 for (int i = cs.cellY; i < cs.cellY + cs.spanY; i++) {
1351 if (leftEdge[i] == cs.cellX + cs.spanX) {
Adam Cohenf3900c22012-11-16 18:28:11 -08001352 return true;
1353 }
1354 }
1355 break;
1356 case RIGHT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001357 for (int i = cs.cellY; i < cs.cellY + cs.spanY; i++) {
1358 if (rightEdge[i] == cs.cellX) {
Adam Cohenf3900c22012-11-16 18:28:11 -08001359 return true;
1360 }
1361 }
1362 break;
1363 case TOP:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001364 for (int i = cs.cellX; i < cs.cellX + cs.spanX; i++) {
1365 if (topEdge[i] == cs.cellY + cs.spanY) {
Adam Cohenf3900c22012-11-16 18:28:11 -08001366 return true;
1367 }
1368 }
1369 break;
1370 case BOTTOM:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001371 for (int i = cs.cellX; i < cs.cellX + cs.spanX; i++) {
1372 if (bottomEdge[i] == cs.cellY) {
Adam Cohenf3900c22012-11-16 18:28:11 -08001373 return true;
1374 }
1375 }
1376 break;
1377 }
1378 return false;
1379 }
1380
1381 void shift(int whichEdge, int delta) {
1382 for (View v: views) {
1383 CellAndSpan c = config.map.get(v);
1384 switch (whichEdge) {
1385 case LEFT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001386 c.cellX -= delta;
Adam Cohenf3900c22012-11-16 18:28:11 -08001387 break;
1388 case RIGHT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001389 c.cellX += delta;
Adam Cohenf3900c22012-11-16 18:28:11 -08001390 break;
1391 case TOP:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001392 c.cellY -= delta;
Adam Cohenf3900c22012-11-16 18:28:11 -08001393 break;
1394 case BOTTOM:
1395 default:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001396 c.cellY += delta;
Adam Cohenf3900c22012-11-16 18:28:11 -08001397 break;
1398 }
1399 }
1400 resetEdges();
1401 }
1402
1403 public void addView(View v) {
1404 views.add(v);
1405 resetEdges();
1406 }
1407
1408 public Rect getBoundingRect() {
1409 if (boundingRectDirty) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001410 config.getBoundingRectForViews(views, boundingRect);
Adam Cohenf3900c22012-11-16 18:28:11 -08001411 }
1412 return boundingRect;
1413 }
1414
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001415 final PositionComparator comparator = new PositionComparator();
Adam Cohenf3900c22012-11-16 18:28:11 -08001416 class PositionComparator implements Comparator<View> {
1417 int whichEdge = 0;
1418 public int compare(View left, View right) {
1419 CellAndSpan l = config.map.get(left);
1420 CellAndSpan r = config.map.get(right);
1421 switch (whichEdge) {
1422 case LEFT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001423 return (r.cellX + r.spanX) - (l.cellX + l.spanX);
Adam Cohenf3900c22012-11-16 18:28:11 -08001424 case RIGHT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001425 return l.cellX - r.cellX;
Adam Cohenf3900c22012-11-16 18:28:11 -08001426 case TOP:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001427 return (r.cellY + r.spanY) - (l.cellY + l.spanY);
Adam Cohenf3900c22012-11-16 18:28:11 -08001428 case BOTTOM:
1429 default:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001430 return l.cellY - r.cellY;
Adam Cohenf3900c22012-11-16 18:28:11 -08001431 }
1432 }
1433 }
1434
1435 public void sortConfigurationForEdgePush(int edge) {
1436 comparator.whichEdge = edge;
1437 Collections.sort(config.sortedViews, comparator);
1438 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001439 }
1440
Adam Cohenf3900c22012-11-16 18:28:11 -08001441 private boolean pushViewsToTempLocation(ArrayList<View> views, Rect rectOccupiedByPotentialDrop,
1442 int[] direction, View dragView, ItemConfiguration currentState) {
Adam Cohene0489502012-08-27 15:18:53 -07001443
Adam Cohenf3900c22012-11-16 18:28:11 -08001444 ViewCluster cluster = new ViewCluster(views, currentState);
1445 Rect clusterRect = cluster.getBoundingRect();
1446 int whichEdge;
1447 int pushDistance;
1448 boolean fail = false;
1449
1450 // Determine the edge of the cluster that will be leading the push and how far
1451 // the cluster must be shifted.
1452 if (direction[0] < 0) {
1453 whichEdge = ViewCluster.LEFT;
1454 pushDistance = clusterRect.right - rectOccupiedByPotentialDrop.left;
Adam Cohene0489502012-08-27 15:18:53 -07001455 } else if (direction[0] > 0) {
Adam Cohenf3900c22012-11-16 18:28:11 -08001456 whichEdge = ViewCluster.RIGHT;
1457 pushDistance = rectOccupiedByPotentialDrop.right - clusterRect.left;
1458 } else if (direction[1] < 0) {
1459 whichEdge = ViewCluster.TOP;
1460 pushDistance = clusterRect.bottom - rectOccupiedByPotentialDrop.top;
1461 } else {
1462 whichEdge = ViewCluster.BOTTOM;
1463 pushDistance = rectOccupiedByPotentialDrop.bottom - clusterRect.top;
Adam Cohene0489502012-08-27 15:18:53 -07001464 }
1465
Adam Cohenf3900c22012-11-16 18:28:11 -08001466 // Break early for invalid push distance.
1467 if (pushDistance <= 0) {
1468 return false;
Adam Cohene0489502012-08-27 15:18:53 -07001469 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001470
1471 // Mark the occupied state as false for the group of views we want to move.
1472 for (View v: views) {
1473 CellAndSpan c = currentState.map.get(v);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001474 mTmpOccupied.markCells(c, false);
Adam Cohenf3900c22012-11-16 18:28:11 -08001475 }
1476
1477 // We save the current configuration -- if we fail to find a solution we will revert
1478 // to the initial state. The process of finding a solution modifies the configuration
1479 // in place, hence the need for revert in the failure case.
1480 currentState.save();
1481
1482 // The pushing algorithm is simplified by considering the views in the order in which
1483 // they would be pushed by the cluster. For example, if the cluster is leading with its
1484 // left edge, we consider sort the views by their right edge, from right to left.
1485 cluster.sortConfigurationForEdgePush(whichEdge);
1486
1487 while (pushDistance > 0 && !fail) {
1488 for (View v: currentState.sortedViews) {
1489 // For each view that isn't in the cluster, we see if the leading edge of the
1490 // cluster is contacting the edge of that view. If so, we add that view to the
1491 // cluster.
1492 if (!cluster.views.contains(v) && v != dragView) {
1493 if (cluster.isViewTouchingEdge(v, whichEdge)) {
1494 LayoutParams lp = (LayoutParams) v.getLayoutParams();
1495 if (!lp.canReorder) {
1496 // The push solution includes the all apps button, this is not viable.
1497 fail = true;
1498 break;
1499 }
1500 cluster.addView(v);
1501 CellAndSpan c = currentState.map.get(v);
1502
1503 // Adding view to cluster, mark it as not occupied.
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001504 mTmpOccupied.markCells(c, false);
Adam Cohenf3900c22012-11-16 18:28:11 -08001505 }
1506 }
1507 }
1508 pushDistance--;
1509
1510 // The cluster has been completed, now we move the whole thing over in the appropriate
1511 // direction.
1512 cluster.shift(whichEdge, 1);
1513 }
1514
1515 boolean foundSolution = false;
1516 clusterRect = cluster.getBoundingRect();
1517
1518 // Due to the nature of the algorithm, the only check required to verify a valid solution
1519 // is to ensure that completed shifted cluster lies completely within the cell layout.
1520 if (!fail && clusterRect.left >= 0 && clusterRect.right <= mCountX && clusterRect.top >= 0 &&
1521 clusterRect.bottom <= mCountY) {
1522 foundSolution = true;
1523 } else {
1524 currentState.restore();
1525 }
1526
1527 // In either case, we set the occupied array as marked for the location of the views
1528 for (View v: cluster.views) {
1529 CellAndSpan c = currentState.map.get(v);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001530 mTmpOccupied.markCells(c, true);
Adam Cohenf3900c22012-11-16 18:28:11 -08001531 }
1532
1533 return foundSolution;
Adam Cohene0489502012-08-27 15:18:53 -07001534 }
1535
Adam Cohen482ed822012-03-02 14:15:13 -08001536 private boolean addViewsToTempLocation(ArrayList<View> views, Rect rectOccupiedByPotentialDrop,
Adam Cohenf3900c22012-11-16 18:28:11 -08001537 int[] direction, View dragView, ItemConfiguration currentState) {
Adam Cohen482ed822012-03-02 14:15:13 -08001538 if (views.size() == 0) return true;
Adam Cohen482ed822012-03-02 14:15:13 -08001539
Adam Cohen8baab352012-03-20 17:39:21 -07001540 boolean success = false;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001541 Rect boundingRect = new Rect();
Adam Cohen8baab352012-03-20 17:39:21 -07001542 // We construct a rect which represents the entire group of views passed in
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001543 currentState.getBoundingRectForViews(views, boundingRect);
Adam Cohen8baab352012-03-20 17:39:21 -07001544
Adam Cohen8baab352012-03-20 17:39:21 -07001545 // Mark the occupied state as false for the group of views we want to move.
Adam Cohenf3900c22012-11-16 18:28:11 -08001546 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001547 CellAndSpan c = currentState.map.get(v);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001548 mTmpOccupied.markCells(c, false);
Adam Cohen8baab352012-03-20 17:39:21 -07001549 }
1550
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001551 GridOccupancy blockOccupied = new GridOccupancy(boundingRect.width(), boundingRect.height());
Adam Cohen47a876d2012-03-19 13:21:41 -07001552 int top = boundingRect.top;
1553 int left = boundingRect.left;
Adam Cohen8baab352012-03-20 17:39:21 -07001554 // We mark more precisely which parts of the bounding rect are truly occupied, allowing
Adam Cohena56dc102012-07-13 13:41:42 -07001555 // for interlocking.
Adam Cohenf3900c22012-11-16 18:28:11 -08001556 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001557 CellAndSpan c = currentState.map.get(v);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001558 blockOccupied.markCells(c.cellX - left, c.cellY - top, c.spanX, c.spanY, true);
Adam Cohen47a876d2012-03-19 13:21:41 -07001559 }
1560
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001561 mTmpOccupied.markCells(rectOccupiedByPotentialDrop, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001562
Adam Cohenf3900c22012-11-16 18:28:11 -08001563 findNearestArea(boundingRect.left, boundingRect.top, boundingRect.width(),
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001564 boundingRect.height(), direction,
1565 mTmpOccupied.cells, blockOccupied.cells, mTempLocation);
Adam Cohen482ed822012-03-02 14:15:13 -08001566
Adam Cohen8baab352012-03-20 17:39:21 -07001567 // If we successfuly found a location by pushing the block of views, we commit it
Adam Cohen482ed822012-03-02 14:15:13 -08001568 if (mTempLocation[0] >= 0 && mTempLocation[1] >= 0) {
Adam Cohen8baab352012-03-20 17:39:21 -07001569 int deltaX = mTempLocation[0] - boundingRect.left;
1570 int deltaY = mTempLocation[1] - boundingRect.top;
Adam Cohenf3900c22012-11-16 18:28:11 -08001571 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001572 CellAndSpan c = currentState.map.get(v);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001573 c.cellX += deltaX;
1574 c.cellY += deltaY;
Adam Cohen482ed822012-03-02 14:15:13 -08001575 }
1576 success = true;
1577 }
Adam Cohen8baab352012-03-20 17:39:21 -07001578
1579 // In either case, we set the occupied array as marked for the location of the views
Adam Cohenf3900c22012-11-16 18:28:11 -08001580 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001581 CellAndSpan c = currentState.map.get(v);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001582 mTmpOccupied.markCells(c, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001583 }
1584 return success;
1585 }
1586
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001587 // This method tries to find a reordering solution which satisfies the push mechanic by trying
1588 // to push items in each of the cardinal directions, in an order based on the direction vector
1589 // passed.
1590 private boolean attemptPushInDirection(ArrayList<View> intersectingViews, Rect occupied,
1591 int[] direction, View ignoreView, ItemConfiguration solution) {
1592 if ((Math.abs(direction[0]) + Math.abs(direction[1])) > 1) {
Winson Chung5f8afe62013-08-12 16:19:28 -07001593 // If the direction vector has two non-zero components, we try pushing
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001594 // separately in each of the components.
1595 int temp = direction[1];
1596 direction[1] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08001597
1598 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001599 ignoreView, solution)) {
1600 return true;
1601 }
1602 direction[1] = temp;
1603 temp = direction[0];
1604 direction[0] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08001605
1606 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001607 ignoreView, solution)) {
1608 return true;
1609 }
1610 // Revert the direction
1611 direction[0] = temp;
1612
1613 // Now we try pushing in each component of the opposite direction
1614 direction[0] *= -1;
1615 direction[1] *= -1;
1616 temp = direction[1];
1617 direction[1] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08001618 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001619 ignoreView, solution)) {
1620 return true;
1621 }
1622
1623 direction[1] = temp;
1624 temp = direction[0];
1625 direction[0] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08001626 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001627 ignoreView, solution)) {
1628 return true;
1629 }
1630 // revert the direction
1631 direction[0] = temp;
1632 direction[0] *= -1;
1633 direction[1] *= -1;
Winson Chung5f8afe62013-08-12 16:19:28 -07001634
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001635 } else {
1636 // If the direction vector has a single non-zero component, we push first in the
1637 // direction of the vector
Adam Cohenf3900c22012-11-16 18:28:11 -08001638 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001639 ignoreView, solution)) {
1640 return true;
1641 }
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001642 // Then we try the opposite direction
1643 direction[0] *= -1;
1644 direction[1] *= -1;
Adam Cohenf3900c22012-11-16 18:28:11 -08001645 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001646 ignoreView, solution)) {
1647 return true;
1648 }
1649 // Switch the direction back
1650 direction[0] *= -1;
1651 direction[1] *= -1;
Winson Chung5f8afe62013-08-12 16:19:28 -07001652
1653 // If we have failed to find a push solution with the above, then we try
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001654 // to find a solution by pushing along the perpendicular axis.
1655
1656 // Swap the components
1657 int temp = direction[1];
1658 direction[1] = direction[0];
1659 direction[0] = temp;
Adam Cohenf3900c22012-11-16 18:28:11 -08001660 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001661 ignoreView, solution)) {
1662 return true;
1663 }
1664
1665 // Then we try the opposite direction
1666 direction[0] *= -1;
1667 direction[1] *= -1;
Adam Cohenf3900c22012-11-16 18:28:11 -08001668 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001669 ignoreView, solution)) {
1670 return true;
1671 }
1672 // Switch the direction back
1673 direction[0] *= -1;
1674 direction[1] *= -1;
1675
1676 // Swap the components back
1677 temp = direction[1];
1678 direction[1] = direction[0];
1679 direction[0] = temp;
1680 }
1681 return false;
1682 }
1683
Adam Cohen482ed822012-03-02 14:15:13 -08001684 private boolean rearrangementExists(int cellX, int cellY, int spanX, int spanY, int[] direction,
Adam Cohen8baab352012-03-20 17:39:21 -07001685 View ignoreView, ItemConfiguration solution) {
Winson Chunge3e03bc2012-05-01 15:10:11 -07001686 // Return early if get invalid cell positions
1687 if (cellX < 0 || cellY < 0) return false;
Adam Cohen482ed822012-03-02 14:15:13 -08001688
Adam Cohen8baab352012-03-20 17:39:21 -07001689 mIntersectingViews.clear();
Adam Cohen482ed822012-03-02 14:15:13 -08001690 mOccupiedRect.set(cellX, cellY, cellX + spanX, cellY + spanY);
Adam Cohen482ed822012-03-02 14:15:13 -08001691
Adam Cohen8baab352012-03-20 17:39:21 -07001692 // Mark the desired location of the view currently being dragged.
Adam Cohen482ed822012-03-02 14:15:13 -08001693 if (ignoreView != null) {
Adam Cohen8baab352012-03-20 17:39:21 -07001694 CellAndSpan c = solution.map.get(ignoreView);
Adam Cohen19f37922012-03-21 11:59:11 -07001695 if (c != null) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001696 c.cellX = cellX;
1697 c.cellY = cellY;
Adam Cohen19f37922012-03-21 11:59:11 -07001698 }
Adam Cohen482ed822012-03-02 14:15:13 -08001699 }
Adam Cohen482ed822012-03-02 14:15:13 -08001700 Rect r0 = new Rect(cellX, cellY, cellX + spanX, cellY + spanY);
1701 Rect r1 = new Rect();
Adam Cohen8baab352012-03-20 17:39:21 -07001702 for (View child: solution.map.keySet()) {
Adam Cohen482ed822012-03-02 14:15:13 -08001703 if (child == ignoreView) continue;
Adam Cohen8baab352012-03-20 17:39:21 -07001704 CellAndSpan c = solution.map.get(child);
Adam Cohen482ed822012-03-02 14:15:13 -08001705 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001706 r1.set(c.cellX, c.cellY, c.cellX + c.spanX, c.cellY + c.spanY);
Adam Cohen482ed822012-03-02 14:15:13 -08001707 if (Rect.intersects(r0, r1)) {
1708 if (!lp.canReorder) {
1709 return false;
1710 }
1711 mIntersectingViews.add(child);
1712 }
1713 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001714
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001715 solution.intersectingViews = new ArrayList<>(mIntersectingViews);
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001716
Winson Chung5f8afe62013-08-12 16:19:28 -07001717 // First we try to find a solution which respects the push mechanic. That is,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001718 // we try to find a solution such that no displaced item travels through another item
1719 // without also displacing that item.
1720 if (attemptPushInDirection(mIntersectingViews, mOccupiedRect, direction, ignoreView,
Adam Cohen19f37922012-03-21 11:59:11 -07001721 solution)) {
Adam Cohen47a876d2012-03-19 13:21:41 -07001722 return true;
1723 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001724
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001725 // Next we try moving the views as a block, but without requiring the push mechanic.
Adam Cohenf3900c22012-11-16 18:28:11 -08001726 if (addViewsToTempLocation(mIntersectingViews, mOccupiedRect, direction, ignoreView,
Adam Cohen19f37922012-03-21 11:59:11 -07001727 solution)) {
Adam Cohen482ed822012-03-02 14:15:13 -08001728 return true;
1729 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001730
Adam Cohen482ed822012-03-02 14:15:13 -08001731 // Ok, they couldn't move as a block, let's move them individually
1732 for (View v : mIntersectingViews) {
Adam Cohen8baab352012-03-20 17:39:21 -07001733 if (!addViewToTempLocation(v, mOccupiedRect, direction, solution)) {
Adam Cohen482ed822012-03-02 14:15:13 -08001734 return false;
1735 }
1736 }
1737 return true;
1738 }
1739
1740 /*
1741 * Returns a pair (x, y), where x,y are in {-1, 0, 1} corresponding to vector between
1742 * the provided point and the provided cell
1743 */
Adam Cohen47a876d2012-03-19 13:21:41 -07001744 private void computeDirectionVector(float deltaX, float deltaY, int[] result) {
Jon Mirandae96798e2016-12-07 12:10:44 -08001745 double angle = Math.atan(deltaY / deltaX);
Adam Cohen482ed822012-03-02 14:15:13 -08001746
1747 result[0] = 0;
1748 result[1] = 0;
1749 if (Math.abs(Math.cos(angle)) > 0.5f) {
1750 result[0] = (int) Math.signum(deltaX);
1751 }
1752 if (Math.abs(Math.sin(angle)) > 0.5f) {
1753 result[1] = (int) Math.signum(deltaY);
1754 }
1755 }
1756
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001757 private ItemConfiguration findReorderSolution(int pixelX, int pixelY, int minSpanX, int minSpanY,
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001758 int spanX, int spanY, int[] direction, View dragView, boolean decX,
1759 ItemConfiguration solution) {
Adam Cohen8baab352012-03-20 17:39:21 -07001760 // Copy the current state into the solution. This solution will be manipulated as necessary.
1761 copyCurrentStateToSolution(solution, false);
1762 // Copy the current occupied array into the temporary occupied array. This array will be
1763 // manipulated as necessary to find a solution.
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001764 mOccupied.copyTo(mTmpOccupied);
Adam Cohen482ed822012-03-02 14:15:13 -08001765
1766 // We find the nearest cell into which we would place the dragged item, assuming there's
1767 // nothing in its way.
1768 int result[] = new int[2];
1769 result = findNearestArea(pixelX, pixelY, spanX, spanY, result);
1770
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001771 boolean success;
Adam Cohen482ed822012-03-02 14:15:13 -08001772 // First we try the exact nearest position of the item being dragged,
1773 // we will then want to try to move this around to other neighbouring positions
Adam Cohen8baab352012-03-20 17:39:21 -07001774 success = rearrangementExists(result[0], result[1], spanX, spanY, direction, dragView,
1775 solution);
Adam Cohen482ed822012-03-02 14:15:13 -08001776
1777 if (!success) {
1778 // We try shrinking the widget down to size in an alternating pattern, shrink 1 in
1779 // x, then 1 in y etc.
1780 if (spanX > minSpanX && (minSpanY == spanY || decX)) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001781 return findReorderSolution(pixelX, pixelY, minSpanX, minSpanY, spanX - 1, spanY,
1782 direction, dragView, false, solution);
Adam Cohen482ed822012-03-02 14:15:13 -08001783 } else if (spanY > minSpanY) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001784 return findReorderSolution(pixelX, pixelY, minSpanX, minSpanY, spanX, spanY - 1,
1785 direction, dragView, true, solution);
Adam Cohen482ed822012-03-02 14:15:13 -08001786 }
1787 solution.isSolution = false;
1788 } else {
1789 solution.isSolution = true;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001790 solution.cellX = result[0];
1791 solution.cellY = result[1];
1792 solution.spanX = spanX;
1793 solution.spanY = spanY;
Adam Cohen482ed822012-03-02 14:15:13 -08001794 }
1795 return solution;
1796 }
1797
1798 private void copyCurrentStateToSolution(ItemConfiguration solution, boolean temp) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07001799 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08001800 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07001801 View child = mShortcutsAndWidgets.getChildAt(i);
Adam Cohen482ed822012-03-02 14:15:13 -08001802 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Adam Cohen8baab352012-03-20 17:39:21 -07001803 CellAndSpan c;
Adam Cohen482ed822012-03-02 14:15:13 -08001804 if (temp) {
Adam Cohen8baab352012-03-20 17:39:21 -07001805 c = new CellAndSpan(lp.tmpCellX, lp.tmpCellY, lp.cellHSpan, lp.cellVSpan);
Adam Cohen482ed822012-03-02 14:15:13 -08001806 } else {
Adam Cohen8baab352012-03-20 17:39:21 -07001807 c = new CellAndSpan(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan);
Adam Cohen482ed822012-03-02 14:15:13 -08001808 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001809 solution.add(child, c);
Adam Cohen482ed822012-03-02 14:15:13 -08001810 }
1811 }
1812
1813 private void copySolutionToTempState(ItemConfiguration solution, View dragView) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001814 mTmpOccupied.clear();
Adam Cohen482ed822012-03-02 14:15:13 -08001815
Michael Jurkaa52570f2012-03-20 03:18:20 -07001816 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08001817 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07001818 View child = mShortcutsAndWidgets.getChildAt(i);
Adam Cohen482ed822012-03-02 14:15:13 -08001819 if (child == dragView) continue;
1820 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Adam Cohen8baab352012-03-20 17:39:21 -07001821 CellAndSpan c = solution.map.get(child);
1822 if (c != null) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001823 lp.tmpCellX = c.cellX;
1824 lp.tmpCellY = c.cellY;
Adam Cohen8baab352012-03-20 17:39:21 -07001825 lp.cellHSpan = c.spanX;
1826 lp.cellVSpan = c.spanY;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001827 mTmpOccupied.markCells(c, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001828 }
1829 }
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001830 mTmpOccupied.markCells(solution, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001831 }
1832
1833 private void animateItemsToSolution(ItemConfiguration solution, View dragView, boolean
1834 commitDragView) {
1835
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001836 GridOccupancy occupied = DESTRUCTIVE_REORDER ? mOccupied : mTmpOccupied;
1837 occupied.clear();
Adam Cohen482ed822012-03-02 14:15:13 -08001838
Michael Jurkaa52570f2012-03-20 03:18:20 -07001839 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08001840 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07001841 View child = mShortcutsAndWidgets.getChildAt(i);
Adam Cohen482ed822012-03-02 14:15:13 -08001842 if (child == dragView) continue;
Adam Cohen8baab352012-03-20 17:39:21 -07001843 CellAndSpan c = solution.map.get(child);
1844 if (c != null) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001845 animateChildToPosition(child, c.cellX, c.cellY, REORDER_ANIMATION_DURATION, 0,
Adam Cohen19f37922012-03-21 11:59:11 -07001846 DESTRUCTIVE_REORDER, false);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001847 occupied.markCells(c, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001848 }
1849 }
1850 if (commitDragView) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001851 occupied.markCells(solution, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001852 }
1853 }
1854
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001855
1856 // This method starts or changes the reorder preview animations
1857 private void beginOrAdjustReorderPreviewAnimations(ItemConfiguration solution,
1858 View dragView, int delay, int mode) {
Adam Cohen19f37922012-03-21 11:59:11 -07001859 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen19f37922012-03-21 11:59:11 -07001860 for (int i = 0; i < childCount; i++) {
1861 View child = mShortcutsAndWidgets.getChildAt(i);
1862 if (child == dragView) continue;
1863 CellAndSpan c = solution.map.get(child);
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001864 boolean skip = mode == ReorderPreviewAnimation.MODE_HINT && solution.intersectingViews
1865 != null && !solution.intersectingViews.contains(child);
1866
Adam Cohen19f37922012-03-21 11:59:11 -07001867 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001868 if (c != null && !skip) {
1869 ReorderPreviewAnimation rha = new ReorderPreviewAnimation(child, mode, lp.cellX,
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001870 lp.cellY, c.cellX, c.cellY, c.spanX, c.spanY);
Adam Cohend024f982012-05-23 18:26:45 -07001871 rha.animate();
Adam Cohen19f37922012-03-21 11:59:11 -07001872 }
1873 }
1874 }
1875
Sunny Goyal849c6a22018-08-08 16:33:46 -07001876 private static final Property<ReorderPreviewAnimation, Float> ANIMATION_PROGRESS =
1877 new Property<ReorderPreviewAnimation, Float>(float.class, "animationProgress") {
1878 @Override
1879 public Float get(ReorderPreviewAnimation anim) {
1880 return anim.animationProgress;
1881 }
1882
1883 @Override
1884 public void set(ReorderPreviewAnimation anim, Float progress) {
1885 anim.setAnimationProgress(progress);
1886 }
1887 };
1888
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001889 // Class which represents the reorder preview animations. These animations show that an item is
Adam Cohen19f37922012-03-21 11:59:11 -07001890 // in a temporary state, and hint at where the item will return to.
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001891 class ReorderPreviewAnimation {
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001892 final View child;
Adam Cohend024f982012-05-23 18:26:45 -07001893 float finalDeltaX;
1894 float finalDeltaY;
1895 float initDeltaX;
1896 float initDeltaY;
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001897 final float finalScale;
Adam Cohend024f982012-05-23 18:26:45 -07001898 float initScale;
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001899 final int mode;
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001900 boolean repeating = false;
1901 private static final int PREVIEW_DURATION = 300;
1902 private static final int HINT_DURATION = Workspace.REORDER_TIMEOUT;
1903
Jon Miranda21266912016-12-19 14:12:05 -08001904 private static final float CHILD_DIVIDEND = 4.0f;
1905
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001906 public static final int MODE_HINT = 0;
1907 public static final int MODE_PREVIEW = 1;
1908
Sunny Goyal849c6a22018-08-08 16:33:46 -07001909 float animationProgress = 0;
Sunny Goyalf0b6db72018-08-13 16:10:14 -07001910 ValueAnimator a;
Adam Cohen19f37922012-03-21 11:59:11 -07001911
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001912 public ReorderPreviewAnimation(View child, int mode, int cellX0, int cellY0, int cellX1,
1913 int cellY1, int spanX, int spanY) {
Adam Cohen19f37922012-03-21 11:59:11 -07001914 regionToCenterPoint(cellX0, cellY0, spanX, spanY, mTmpPoint);
1915 final int x0 = mTmpPoint[0];
1916 final int y0 = mTmpPoint[1];
1917 regionToCenterPoint(cellX1, cellY1, spanX, spanY, mTmpPoint);
1918 final int x1 = mTmpPoint[0];
1919 final int y1 = mTmpPoint[1];
1920 final int dX = x1 - x0;
1921 final int dY = y1 - y0;
Jon Miranda21266912016-12-19 14:12:05 -08001922
1923 this.child = child;
1924 this.mode = mode;
1925 setInitialAnimationValues(false);
1926 finalScale = (mChildScale - (CHILD_DIVIDEND / child.getWidth())) * initScale;
1927 finalDeltaX = initDeltaX;
1928 finalDeltaY = initDeltaY;
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001929 int dir = mode == MODE_HINT ? -1 : 1;
Adam Cohen19f37922012-03-21 11:59:11 -07001930 if (dX == dY && dX == 0) {
1931 } else {
1932 if (dY == 0) {
Jon Miranda21266912016-12-19 14:12:05 -08001933 finalDeltaX += - dir * Math.signum(dX) * mReorderPreviewAnimationMagnitude;
Adam Cohen19f37922012-03-21 11:59:11 -07001934 } else if (dX == 0) {
Jon Miranda21266912016-12-19 14:12:05 -08001935 finalDeltaY += - dir * Math.signum(dY) * mReorderPreviewAnimationMagnitude;
Adam Cohen19f37922012-03-21 11:59:11 -07001936 } else {
1937 double angle = Math.atan( (float) (dY) / dX);
Jon Miranda21266912016-12-19 14:12:05 -08001938 finalDeltaX += (int) (- dir * Math.signum(dX) *
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001939 Math.abs(Math.cos(angle) * mReorderPreviewAnimationMagnitude));
Jon Miranda21266912016-12-19 14:12:05 -08001940 finalDeltaY += (int) (- dir * Math.signum(dY) *
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001941 Math.abs(Math.sin(angle) * mReorderPreviewAnimationMagnitude));
Adam Cohen19f37922012-03-21 11:59:11 -07001942 }
1943 }
Jon Miranda21266912016-12-19 14:12:05 -08001944 }
1945
1946 void setInitialAnimationValues(boolean restoreOriginalValues) {
1947 if (restoreOriginalValues) {
1948 if (child instanceof LauncherAppWidgetHostView) {
1949 LauncherAppWidgetHostView lahv = (LauncherAppWidgetHostView) child;
1950 initScale = lahv.getScaleToFit();
1951 initDeltaX = lahv.getTranslationForCentering().x;
1952 initDeltaY = lahv.getTranslationForCentering().y;
1953 } else {
1954 initScale = mChildScale;
1955 initDeltaX = 0;
1956 initDeltaY = 0;
1957 }
1958 } else {
1959 initScale = child.getScaleX();
1960 initDeltaX = child.getTranslationX();
1961 initDeltaY = child.getTranslationY();
1962 }
Adam Cohen19f37922012-03-21 11:59:11 -07001963 }
1964
Adam Cohend024f982012-05-23 18:26:45 -07001965 void animate() {
Jon Miranda21266912016-12-19 14:12:05 -08001966 boolean noMovement = (finalDeltaX == initDeltaX) && (finalDeltaY == initDeltaY);
1967
Adam Cohen19f37922012-03-21 11:59:11 -07001968 if (mShakeAnimators.containsKey(child)) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001969 ReorderPreviewAnimation oldAnimation = mShakeAnimators.get(child);
Adam Cohend024f982012-05-23 18:26:45 -07001970 oldAnimation.cancel();
Adam Cohen19f37922012-03-21 11:59:11 -07001971 mShakeAnimators.remove(child);
Jon Miranda21266912016-12-19 14:12:05 -08001972 if (noMovement) {
Adam Cohene7587d22012-05-24 18:50:02 -07001973 completeAnimationImmediately();
1974 return;
1975 }
Adam Cohen19f37922012-03-21 11:59:11 -07001976 }
Jon Miranda21266912016-12-19 14:12:05 -08001977 if (noMovement) {
Adam Cohen19f37922012-03-21 11:59:11 -07001978 return;
1979 }
Sunny Goyal849c6a22018-08-08 16:33:46 -07001980 ValueAnimator va = ObjectAnimator.ofFloat(this, ANIMATION_PROGRESS, 0, 1);
Adam Cohene7587d22012-05-24 18:50:02 -07001981 a = va;
Tony Wickham9e0702f2015-09-02 14:45:39 -07001982
1983 // Animations are disabled in power save mode, causing the repeated animation to jump
1984 // spastically between beginning and end states. Since this looks bad, we don't repeat
1985 // the animation in power save mode.
Tony Wickham8155fa22018-05-18 17:18:49 -07001986 if (!Utilities.isPowerSaverPreventingAnimation(getContext())) {
Tony Wickham9e0702f2015-09-02 14:45:39 -07001987 va.setRepeatMode(ValueAnimator.REVERSE);
1988 va.setRepeatCount(ValueAnimator.INFINITE);
1989 }
1990
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001991 va.setDuration(mode == MODE_HINT ? HINT_DURATION : PREVIEW_DURATION);
Adam Cohend024f982012-05-23 18:26:45 -07001992 va.setStartDelay((int) (Math.random() * 60));
Adam Cohen19f37922012-03-21 11:59:11 -07001993 va.addListener(new AnimatorListenerAdapter() {
1994 public void onAnimationRepeat(Animator animation) {
Adam Cohen19f37922012-03-21 11:59:11 -07001995 // We make sure to end only after a full period
Jon Miranda21266912016-12-19 14:12:05 -08001996 setInitialAnimationValues(true);
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001997 repeating = true;
Adam Cohen19f37922012-03-21 11:59:11 -07001998 }
1999 });
Adam Cohen19f37922012-03-21 11:59:11 -07002000 mShakeAnimators.put(child, this);
2001 va.start();
2002 }
2003
Sunny Goyal849c6a22018-08-08 16:33:46 -07002004 private void setAnimationProgress(float progress) {
2005 animationProgress = progress;
2006 float r1 = (mode == MODE_HINT && repeating) ? 1.0f : animationProgress;
2007 float x = r1 * finalDeltaX + (1 - r1) * initDeltaX;
2008 float y = r1 * finalDeltaY + (1 - r1) * initDeltaY;
2009 child.setTranslationX(x);
2010 child.setTranslationY(y);
2011 float s = animationProgress * finalScale + (1 - animationProgress) * initScale;
2012 child.setScaleX(s);
2013 child.setScaleY(s);
2014 }
2015
Adam Cohend024f982012-05-23 18:26:45 -07002016 private void cancel() {
Adam Cohene7587d22012-05-24 18:50:02 -07002017 if (a != null) {
2018 a.cancel();
2019 }
Adam Cohen19f37922012-03-21 11:59:11 -07002020 }
Adam Cohene7587d22012-05-24 18:50:02 -07002021
Adam Cohen091440a2015-03-18 14:16:05 -07002022 @Thunk void completeAnimationImmediately() {
Adam Cohene7587d22012-05-24 18:50:02 -07002023 if (a != null) {
2024 a.cancel();
2025 }
Brandon Keely50e6e562012-05-08 16:28:49 -07002026
Jon Miranda72dbd912017-01-04 14:03:07 -08002027 setInitialAnimationValues(true);
Sunny Goyalf0b6db72018-08-13 16:10:14 -07002028 a = new PropertyListBuilder()
2029 .scale(initScale)
2030 .translationX(initDeltaX)
2031 .translationY(initDeltaY)
2032 .build(child)
Sunny Goyal9e76f682017-02-13 12:13:43 -08002033 .setDuration(REORDER_ANIMATION_DURATION);
Sunny Goyalab770a12018-11-14 15:17:26 -08002034 Launcher.cast(mActivity).getDragController().addFirstFrameAnimationHelper(a);
Sunny Goyalf0b6db72018-08-13 16:10:14 -07002035 a.setInterpolator(DEACCEL_1_5);
Sunny Goyal5d2fc322015-07-06 22:52:49 -07002036 a.start();
Brandon Keely50e6e562012-05-08 16:28:49 -07002037 }
Adam Cohen19f37922012-03-21 11:59:11 -07002038 }
2039
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002040 private void completeAndClearReorderPreviewAnimations() {
2041 for (ReorderPreviewAnimation a: mShakeAnimators.values()) {
Brandon Keely50e6e562012-05-08 16:28:49 -07002042 a.completeAnimationImmediately();
Adam Cohen19f37922012-03-21 11:59:11 -07002043 }
2044 mShakeAnimators.clear();
2045 }
2046
Adam Cohen482ed822012-03-02 14:15:13 -08002047 private void commitTempPlacement() {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002048 mTmpOccupied.copyTo(mOccupied);
Sunny Goyalaa8ef112015-06-12 20:04:41 -07002049
Sunny Goyalab770a12018-11-14 15:17:26 -08002050 int screenId = Launcher.cast(mActivity).getWorkspace().getIdForScreen(this);
Sunny Goyalaa8ef112015-06-12 20:04:41 -07002051 int container = Favorites.CONTAINER_DESKTOP;
2052
Sunny Goyalc13403c2016-11-18 23:44:48 -08002053 if (mContainerType == HOTSEAT) {
Sunny Goyalaa8ef112015-06-12 20:04:41 -07002054 screenId = -1;
2055 container = Favorites.CONTAINER_HOTSEAT;
2056 }
2057
Michael Jurkaa52570f2012-03-20 03:18:20 -07002058 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08002059 for (int i = 0; i < childCount; i++) {
Adam Cohenea889a22012-03-27 16:45:39 -07002060 View child = mShortcutsAndWidgets.getChildAt(i);
2061 LayoutParams lp = (LayoutParams) child.getLayoutParams();
2062 ItemInfo info = (ItemInfo) child.getTag();
Adam Cohen2acce882012-03-28 19:03:19 -07002063 // We do a null check here because the item info can be null in the case of the
2064 // AllApps button in the hotseat.
2065 if (info != null) {
Sunny Goyalaa8ef112015-06-12 20:04:41 -07002066 final boolean requiresDbUpdate = (info.cellX != lp.tmpCellX
2067 || info.cellY != lp.tmpCellY || info.spanX != lp.cellHSpan
2068 || info.spanY != lp.cellVSpan);
2069
Adam Cohen2acce882012-03-28 19:03:19 -07002070 info.cellX = lp.cellX = lp.tmpCellX;
2071 info.cellY = lp.cellY = lp.tmpCellY;
Adam Cohenbebf0422012-04-11 18:06:28 -07002072 info.spanX = lp.cellHSpan;
2073 info.spanY = lp.cellVSpan;
Sunny Goyalaa8ef112015-06-12 20:04:41 -07002074
2075 if (requiresDbUpdate) {
Sunny Goyalab770a12018-11-14 15:17:26 -08002076 Launcher.cast(mActivity).getModelWriter().modifyItemInDatabase(info, container,
2077 screenId, info.cellX, info.cellY, info.spanX, info.spanY);
Sunny Goyalaa8ef112015-06-12 20:04:41 -07002078 }
Adam Cohen2acce882012-03-28 19:03:19 -07002079 }
Adam Cohen482ed822012-03-02 14:15:13 -08002080 }
2081 }
2082
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002083 private void setUseTempCoords(boolean useTempCoords) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002084 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08002085 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002086 LayoutParams lp = (LayoutParams) mShortcutsAndWidgets.getChildAt(i).getLayoutParams();
Adam Cohen482ed822012-03-02 14:15:13 -08002087 lp.useTmpCoords = useTempCoords;
2088 }
2089 }
2090
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002091 private ItemConfiguration findConfigurationNoShuffle(int pixelX, int pixelY, int minSpanX, int minSpanY,
Adam Cohen482ed822012-03-02 14:15:13 -08002092 int spanX, int spanY, View dragView, ItemConfiguration solution) {
2093 int[] result = new int[2];
2094 int[] resultSpan = new int[2];
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002095 findNearestVacantArea(pixelX, pixelY, minSpanX, minSpanY, spanX, spanY, result,
Adam Cohen482ed822012-03-02 14:15:13 -08002096 resultSpan);
2097 if (result[0] >= 0 && result[1] >= 0) {
2098 copyCurrentStateToSolution(solution, false);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002099 solution.cellX = result[0];
2100 solution.cellY = result[1];
2101 solution.spanX = resultSpan[0];
2102 solution.spanY = resultSpan[1];
Adam Cohen482ed822012-03-02 14:15:13 -08002103 solution.isSolution = true;
2104 } else {
2105 solution.isSolution = false;
2106 }
2107 return solution;
2108 }
2109
Adam Cohen19f37922012-03-21 11:59:11 -07002110 /* This seems like it should be obvious and straight-forward, but when the direction vector
2111 needs to match with the notion of the dragView pushing other views, we have to employ
2112 a slightly more subtle notion of the direction vector. The question is what two points is
2113 the vector between? The center of the dragView and its desired destination? Not quite, as
2114 this doesn't necessarily coincide with the interaction of the dragView and items occupying
2115 those cells. Instead we use some heuristics to often lock the vector to up, down, left
2116 or right, which helps make pushing feel right.
2117 */
2118 private void getDirectionVectorForDrop(int dragViewCenterX, int dragViewCenterY, int spanX,
2119 int spanY, View dragView, int[] resultDirection) {
2120 int[] targetDestination = new int[2];
2121
2122 findNearestArea(dragViewCenterX, dragViewCenterY, spanX, spanY, targetDestination);
2123 Rect dragRect = new Rect();
2124 regionToRect(targetDestination[0], targetDestination[1], spanX, spanY, dragRect);
2125 dragRect.offset(dragViewCenterX - dragRect.centerX(), dragViewCenterY - dragRect.centerY());
2126
2127 Rect dropRegionRect = new Rect();
2128 getViewsIntersectingRegion(targetDestination[0], targetDestination[1], spanX, spanY,
2129 dragView, dropRegionRect, mIntersectingViews);
2130
2131 int dropRegionSpanX = dropRegionRect.width();
2132 int dropRegionSpanY = dropRegionRect.height();
2133
2134 regionToRect(dropRegionRect.left, dropRegionRect.top, dropRegionRect.width(),
2135 dropRegionRect.height(), dropRegionRect);
2136
2137 int deltaX = (dropRegionRect.centerX() - dragViewCenterX) / spanX;
2138 int deltaY = (dropRegionRect.centerY() - dragViewCenterY) / spanY;
2139
2140 if (dropRegionSpanX == mCountX || spanX == mCountX) {
2141 deltaX = 0;
2142 }
2143 if (dropRegionSpanY == mCountY || spanY == mCountY) {
2144 deltaY = 0;
2145 }
2146
2147 if (deltaX == 0 && deltaY == 0) {
2148 // No idea what to do, give a random direction.
2149 resultDirection[0] = 1;
2150 resultDirection[1] = 0;
2151 } else {
2152 computeDirectionVector(deltaX, deltaY, resultDirection);
2153 }
2154 }
2155
2156 // For a given cell and span, fetch the set of views intersecting the region.
2157 private void getViewsIntersectingRegion(int cellX, int cellY, int spanX, int spanY,
2158 View dragView, Rect boundingRect, ArrayList<View> intersectingViews) {
2159 if (boundingRect != null) {
2160 boundingRect.set(cellX, cellY, cellX + spanX, cellY + spanY);
2161 }
2162 intersectingViews.clear();
2163 Rect r0 = new Rect(cellX, cellY, cellX + spanX, cellY + spanY);
2164 Rect r1 = new Rect();
2165 final int count = mShortcutsAndWidgets.getChildCount();
2166 for (int i = 0; i < count; i++) {
2167 View child = mShortcutsAndWidgets.getChildAt(i);
2168 if (child == dragView) continue;
2169 LayoutParams lp = (LayoutParams) child.getLayoutParams();
2170 r1.set(lp.cellX, lp.cellY, lp.cellX + lp.cellHSpan, lp.cellY + lp.cellVSpan);
2171 if (Rect.intersects(r0, r1)) {
2172 mIntersectingViews.add(child);
2173 if (boundingRect != null) {
2174 boundingRect.union(r1);
2175 }
2176 }
2177 }
2178 }
2179
2180 boolean isNearestDropLocationOccupied(int pixelX, int pixelY, int spanX, int spanY,
2181 View dragView, int[] result) {
2182 result = findNearestArea(pixelX, pixelY, spanX, spanY, result);
2183 getViewsIntersectingRegion(result[0], result[1], spanX, spanY, dragView, null,
2184 mIntersectingViews);
2185 return !mIntersectingViews.isEmpty();
2186 }
2187
2188 void revertTempState() {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002189 completeAndClearReorderPreviewAnimations();
2190 if (isItemPlacementDirty() && !DESTRUCTIVE_REORDER) {
2191 final int count = mShortcutsAndWidgets.getChildCount();
2192 for (int i = 0; i < count; i++) {
2193 View child = mShortcutsAndWidgets.getChildAt(i);
2194 LayoutParams lp = (LayoutParams) child.getLayoutParams();
2195 if (lp.tmpCellX != lp.cellX || lp.tmpCellY != lp.cellY) {
2196 lp.tmpCellX = lp.cellX;
2197 lp.tmpCellY = lp.cellY;
2198 animateChildToPosition(child, lp.cellX, lp.cellY, REORDER_ANIMATION_DURATION,
2199 0, false, false);
2200 }
Adam Cohen19f37922012-03-21 11:59:11 -07002201 }
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002202 setItemPlacementDirty(false);
Adam Cohen19f37922012-03-21 11:59:11 -07002203 }
Adam Cohen19f37922012-03-21 11:59:11 -07002204 }
2205
Adam Cohenbebf0422012-04-11 18:06:28 -07002206 boolean createAreaForResize(int cellX, int cellY, int spanX, int spanY,
2207 View dragView, int[] direction, boolean commit) {
2208 int[] pixelXY = new int[2];
2209 regionToCenterPoint(cellX, cellY, spanX, spanY, pixelXY);
2210
2211 // First we determine if things have moved enough to cause a different layout
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002212 ItemConfiguration swapSolution = findReorderSolution(pixelXY[0], pixelXY[1], spanX, spanY,
Adam Cohenbebf0422012-04-11 18:06:28 -07002213 spanX, spanY, direction, dragView, true, new ItemConfiguration());
2214
2215 setUseTempCoords(true);
2216 if (swapSolution != null && swapSolution.isSolution) {
2217 // If we're just testing for a possible location (MODE_ACCEPT_DROP), we don't bother
2218 // committing anything or animating anything as we just want to determine if a solution
2219 // exists
2220 copySolutionToTempState(swapSolution, dragView);
2221 setItemPlacementDirty(true);
2222 animateItemsToSolution(swapSolution, dragView, commit);
2223
2224 if (commit) {
2225 commitTempPlacement();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002226 completeAndClearReorderPreviewAnimations();
Adam Cohenbebf0422012-04-11 18:06:28 -07002227 setItemPlacementDirty(false);
2228 } else {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002229 beginOrAdjustReorderPreviewAnimations(swapSolution, dragView,
2230 REORDER_ANIMATION_DURATION, ReorderPreviewAnimation.MODE_PREVIEW);
Adam Cohenbebf0422012-04-11 18:06:28 -07002231 }
2232 mShortcutsAndWidgets.requestLayout();
2233 }
2234 return swapSolution.isSolution;
2235 }
2236
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002237 int[] performReorder(int pixelX, int pixelY, int minSpanX, int minSpanY, int spanX, int spanY,
Adam Cohen482ed822012-03-02 14:15:13 -08002238 View dragView, int[] result, int resultSpan[], int mode) {
Adam Cohen482ed822012-03-02 14:15:13 -08002239 // First we determine if things have moved enough to cause a different layout
Adam Cohen47a876d2012-03-19 13:21:41 -07002240 result = findNearestArea(pixelX, pixelY, spanX, spanY, result);
Adam Cohen482ed822012-03-02 14:15:13 -08002241
2242 if (resultSpan == null) {
2243 resultSpan = new int[2];
2244 }
2245
Adam Cohen19f37922012-03-21 11:59:11 -07002246 // When we are checking drop validity or actually dropping, we don't recompute the
2247 // direction vector, since we want the solution to match the preview, and it's possible
2248 // that the exact position of the item has changed to result in a new reordering outcome.
Adam Cohenb209e632012-03-27 17:09:36 -07002249 if ((mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL || mode == MODE_ACCEPT_DROP)
2250 && mPreviousReorderDirection[0] != INVALID_DIRECTION) {
Adam Cohen19f37922012-03-21 11:59:11 -07002251 mDirectionVector[0] = mPreviousReorderDirection[0];
2252 mDirectionVector[1] = mPreviousReorderDirection[1];
2253 // We reset this vector after drop
Adam Cohenb209e632012-03-27 17:09:36 -07002254 if (mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL) {
2255 mPreviousReorderDirection[0] = INVALID_DIRECTION;
2256 mPreviousReorderDirection[1] = INVALID_DIRECTION;
Adam Cohen19f37922012-03-21 11:59:11 -07002257 }
2258 } else {
2259 getDirectionVectorForDrop(pixelX, pixelY, spanX, spanY, dragView, mDirectionVector);
2260 mPreviousReorderDirection[0] = mDirectionVector[0];
2261 mPreviousReorderDirection[1] = mDirectionVector[1];
2262 }
2263
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002264 // Find a solution involving pushing / displacing any items in the way
2265 ItemConfiguration swapSolution = findReorderSolution(pixelX, pixelY, minSpanX, minSpanY,
Adam Cohen482ed822012-03-02 14:15:13 -08002266 spanX, spanY, mDirectionVector, dragView, true, new ItemConfiguration());
2267
2268 // We attempt the approach which doesn't shuffle views at all
2269 ItemConfiguration noShuffleSolution = findConfigurationNoShuffle(pixelX, pixelY, minSpanX,
2270 minSpanY, spanX, spanY, dragView, new ItemConfiguration());
2271
2272 ItemConfiguration finalSolution = null;
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002273
2274 // If the reorder solution requires resizing (shrinking) the item being dropped, we instead
2275 // favor a solution in which the item is not resized, but
Adam Cohen482ed822012-03-02 14:15:13 -08002276 if (swapSolution.isSolution && swapSolution.area() >= noShuffleSolution.area()) {
2277 finalSolution = swapSolution;
2278 } else if (noShuffleSolution.isSolution) {
2279 finalSolution = noShuffleSolution;
2280 }
2281
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002282 if (mode == MODE_SHOW_REORDER_HINT) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002283 if (finalSolution != null) {
Adam Cohenfe692872013-12-11 14:47:23 -08002284 beginOrAdjustReorderPreviewAnimations(finalSolution, dragView, 0,
2285 ReorderPreviewAnimation.MODE_HINT);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002286 result[0] = finalSolution.cellX;
2287 result[1] = finalSolution.cellY;
2288 resultSpan[0] = finalSolution.spanX;
2289 resultSpan[1] = finalSolution.spanY;
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002290 } else {
2291 result[0] = result[1] = resultSpan[0] = resultSpan[1] = -1;
2292 }
2293 return result;
2294 }
2295
Adam Cohen482ed822012-03-02 14:15:13 -08002296 boolean foundSolution = true;
2297 if (!DESTRUCTIVE_REORDER) {
2298 setUseTempCoords(true);
2299 }
2300
2301 if (finalSolution != null) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002302 result[0] = finalSolution.cellX;
2303 result[1] = finalSolution.cellY;
2304 resultSpan[0] = finalSolution.spanX;
2305 resultSpan[1] = finalSolution.spanY;
Adam Cohen482ed822012-03-02 14:15:13 -08002306
2307 // If we're just testing for a possible location (MODE_ACCEPT_DROP), we don't bother
2308 // committing anything or animating anything as we just want to determine if a solution
2309 // exists
2310 if (mode == MODE_DRAG_OVER || mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL) {
2311 if (!DESTRUCTIVE_REORDER) {
2312 copySolutionToTempState(finalSolution, dragView);
2313 }
2314 setItemPlacementDirty(true);
2315 animateItemsToSolution(finalSolution, dragView, mode == MODE_ON_DROP);
2316
Adam Cohen19f37922012-03-21 11:59:11 -07002317 if (!DESTRUCTIVE_REORDER &&
2318 (mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL)) {
Adam Cohen482ed822012-03-02 14:15:13 -08002319 commitTempPlacement();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002320 completeAndClearReorderPreviewAnimations();
Adam Cohen19f37922012-03-21 11:59:11 -07002321 setItemPlacementDirty(false);
2322 } else {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002323 beginOrAdjustReorderPreviewAnimations(finalSolution, dragView,
2324 REORDER_ANIMATION_DURATION, ReorderPreviewAnimation.MODE_PREVIEW);
Adam Cohen482ed822012-03-02 14:15:13 -08002325 }
2326 }
2327 } else {
2328 foundSolution = false;
2329 result[0] = result[1] = resultSpan[0] = resultSpan[1] = -1;
2330 }
2331
2332 if ((mode == MODE_ON_DROP || !foundSolution) && !DESTRUCTIVE_REORDER) {
2333 setUseTempCoords(false);
2334 }
Adam Cohen482ed822012-03-02 14:15:13 -08002335
Michael Jurkaa52570f2012-03-20 03:18:20 -07002336 mShortcutsAndWidgets.requestLayout();
Adam Cohen482ed822012-03-02 14:15:13 -08002337 return result;
2338 }
2339
Adam Cohen19f37922012-03-21 11:59:11 -07002340 void setItemPlacementDirty(boolean dirty) {
2341 mItemPlacementDirty = dirty;
Adam Cohen482ed822012-03-02 14:15:13 -08002342 }
Adam Cohen19f37922012-03-21 11:59:11 -07002343 boolean isItemPlacementDirty() {
2344 return mItemPlacementDirty;
Adam Cohen482ed822012-03-02 14:15:13 -08002345 }
2346
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002347 private static class ItemConfiguration extends CellAndSpan {
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07002348 final ArrayMap<View, CellAndSpan> map = new ArrayMap<>();
2349 private final ArrayMap<View, CellAndSpan> savedMap = new ArrayMap<>();
2350 final ArrayList<View> sortedViews = new ArrayList<>();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002351 ArrayList<View> intersectingViews;
Adam Cohen482ed822012-03-02 14:15:13 -08002352 boolean isSolution = false;
Adam Cohen482ed822012-03-02 14:15:13 -08002353
Adam Cohenf3900c22012-11-16 18:28:11 -08002354 void save() {
2355 // Copy current state into savedMap
2356 for (View v: map.keySet()) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002357 savedMap.get(v).copyFrom(map.get(v));
Adam Cohenf3900c22012-11-16 18:28:11 -08002358 }
2359 }
2360
2361 void restore() {
2362 // Restore current state from savedMap
2363 for (View v: savedMap.keySet()) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002364 map.get(v).copyFrom(savedMap.get(v));
Adam Cohenf3900c22012-11-16 18:28:11 -08002365 }
2366 }
2367
2368 void add(View v, CellAndSpan cs) {
2369 map.put(v, cs);
2370 savedMap.put(v, new CellAndSpan());
2371 sortedViews.add(v);
2372 }
2373
Adam Cohen482ed822012-03-02 14:15:13 -08002374 int area() {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002375 return spanX * spanY;
Adam Cohenf3900c22012-11-16 18:28:11 -08002376 }
2377
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002378 void getBoundingRectForViews(ArrayList<View> views, Rect outRect) {
2379 boolean first = true;
2380 for (View v: views) {
2381 CellAndSpan c = map.get(v);
2382 if (first) {
2383 outRect.set(c.cellX, c.cellY, c.cellX + c.spanX, c.cellY + c.spanY);
2384 first = false;
2385 } else {
2386 outRect.union(c.cellX, c.cellY, c.cellX + c.spanX, c.cellY + c.spanY);
2387 }
2388 }
Adam Cohenf3900c22012-11-16 18:28:11 -08002389 }
Adam Cohen482ed822012-03-02 14:15:13 -08002390 }
2391
Adam Cohendf035382011-04-11 17:22:04 -07002392 /**
Adam Cohendf035382011-04-11 17:22:04 -07002393 * Find a starting cell position that will fit the given bounds nearest the requested
2394 * cell location. Uses Euclidean distance to score multiple vacant areas.
2395 *
2396 * @param pixelX The X location at which you want to search for a vacant area.
2397 * @param pixelY The Y location at which you want to search for a vacant area.
2398 * @param spanX Horizontal span of the object.
2399 * @param spanY Vertical span of the object.
Adam Cohendf035382011-04-11 17:22:04 -07002400 * @param result Previously returned value to possibly recycle.
2401 * @return The X, Y cell of a vacant area that can contain this object,
2402 * nearest the requested location.
2403 */
Adam Cohenf9c184a2016-01-15 16:47:43 -08002404 public int[] findNearestArea(int pixelX, int pixelY, int spanX, int spanY, int[] result) {
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002405 return findNearestArea(pixelX, pixelY, spanX, spanY, spanX, spanY, false, result, null);
Adam Cohendf035382011-04-11 17:22:04 -07002406 }
2407
Michael Jurka0280c3b2010-09-17 15:00:07 -07002408 boolean existsEmptyCell() {
2409 return findCellForSpan(null, 1, 1);
2410 }
2411
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002412 /**
Michael Jurka0280c3b2010-09-17 15:00:07 -07002413 * Finds the upper-left coordinate of the first rectangle in the grid that can
2414 * hold a cell of the specified dimensions. If intersectX and intersectY are not -1,
2415 * then this method will only return coordinates for rectangles that contain the cell
2416 * (intersectX, intersectY)
2417 *
2418 * @param cellXY The array that will contain the position of a vacant cell if such a cell
2419 * can be found.
2420 * @param spanX The horizontal span of the cell we want to find.
2421 * @param spanY The vertical span of the cell we want to find.
2422 *
2423 * @return True if a vacant cell of the specified dimension was found, false otherwise.
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002424 */
Hyunyoung Song3f471442015-04-08 19:01:34 -07002425 public boolean findCellForSpan(int[] cellXY, int spanX, int spanY) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002426 if (cellXY == null) {
2427 cellXY = new int[2];
Michael Jurka0280c3b2010-09-17 15:00:07 -07002428 }
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002429 return mOccupied.findVacantCell(cellXY, spanX, spanY);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002430 }
2431
2432 /**
Winson Chungc07918d2011-07-01 15:35:26 -07002433 * A drag event has begun over this layout.
2434 * It may have begun over this layout (in which case onDragChild is called first),
2435 * or it may have begun on another layout.
2436 */
2437 void onDragEnter() {
Winson Chungc07918d2011-07-01 15:35:26 -07002438 mDragging = true;
2439 }
2440
2441 /**
Michael Jurka0280c3b2010-09-17 15:00:07 -07002442 * Called when drag has left this CellLayout or has been completed (successfully or not)
2443 */
2444 void onDragExit() {
Joe Onorato4be866d2010-10-10 11:26:02 -07002445 // This can actually be called when we aren't in a drag, e.g. when adding a new
2446 // item to this layout via the customize drawer.
2447 // Guard against that case.
2448 if (mDragging) {
2449 mDragging = false;
Patrick Dubroyde7658b2010-09-27 11:15:43 -07002450 }
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07002451
2452 // Invalidate the drag data
Adam Cohend41fbf52012-02-16 23:53:59 -08002453 mDragCell[0] = mDragCell[1] = -1;
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07002454 mDragOutlineAnims[mDragOutlineCurrent].animateOut();
2455 mDragOutlineCurrent = (mDragOutlineCurrent + 1) % mDragOutlineAnims.length;
Adam Cohen19f37922012-03-21 11:59:11 -07002456 revertTempState();
Michael Jurka33945b22010-12-21 18:19:38 -08002457 setIsDragOverlapping(false);
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002458 }
2459
2460 /**
Winson Chungaafa03c2010-06-11 17:34:16 -07002461 * Mark a child as having been dropped.
Patrick Dubroyde7658b2010-09-27 11:15:43 -07002462 * At the beginning of the drag operation, the child may have been on another
Patrick Dubroyce34a972010-10-19 10:34:32 -07002463 * screen, but it is re-parented before this method is called.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002464 *
2465 * @param child The child that is being dropped
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002466 */
Adam Cohen716b51e2011-06-30 12:09:54 -07002467 void onDropChild(View child) {
Romain Guyd94533d2009-08-17 10:01:15 -07002468 if (child != null) {
2469 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Romain Guy84f296c2009-11-04 15:00:44 -08002470 lp.dropped = true;
Romain Guyd94533d2009-08-17 10:01:15 -07002471 child.requestLayout();
Tony Wickham1cdb6d02015-09-17 11:08:27 -07002472 markCellsAsOccupiedForView(child);
Romain Guyd94533d2009-08-17 10:01:15 -07002473 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002474 }
2475
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002476 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002477 * Computes a bounding rectangle for a range of cells
Winson Chungaafa03c2010-06-11 17:34:16 -07002478 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002479 * @param cellX X coordinate of upper left corner expressed as a cell position
2480 * @param cellY Y coordinate of upper left corner expressed as a cell position
Winson Chungaafa03c2010-06-11 17:34:16 -07002481 * @param cellHSpan Width in cells
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002482 * @param cellVSpan Height in cells
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002483 * @param resultRect Rect into which to put the results
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002484 */
Adam Cohend41fbf52012-02-16 23:53:59 -08002485 public void cellToRect(int cellX, int cellY, int cellHSpan, int cellVSpan, Rect resultRect) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002486 final int cellWidth = mCellWidth;
2487 final int cellHeight = mCellHeight;
Winson Chungaafa03c2010-06-11 17:34:16 -07002488
Winson Chung4b825dcd2011-06-19 12:41:22 -07002489 final int hStartPadding = getPaddingLeft();
2490 final int vStartPadding = getPaddingTop();
Winson Chungaafa03c2010-06-11 17:34:16 -07002491
Sunny Goyalaa8a8712016-11-20 15:26:01 +05302492 int width = cellHSpan * cellWidth;
2493 int height = cellVSpan * cellHeight;
2494 int x = hStartPadding + cellX * cellWidth;
2495 int y = vStartPadding + cellY * cellHeight;
Winson Chungaafa03c2010-06-11 17:34:16 -07002496
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002497 resultRect.set(x, y, x + width, y + height);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002498 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002499
Adam Cohend4844c32011-02-18 19:25:06 -08002500 public void markCellsAsOccupiedForView(View view) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002501 if (view == null || view.getParent() != mShortcutsAndWidgets) return;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002502 LayoutParams lp = (LayoutParams) view.getLayoutParams();
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002503 mOccupied.markCells(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan, true);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002504 }
2505
Adam Cohend4844c32011-02-18 19:25:06 -08002506 public void markCellsAsUnoccupiedForView(View view) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002507 if (view == null || view.getParent() != mShortcutsAndWidgets) return;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002508 LayoutParams lp = (LayoutParams) view.getLayoutParams();
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002509 mOccupied.markCells(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002510 }
2511
Adam Cohen2801caf2011-05-13 20:57:39 -07002512 public int getDesiredWidth() {
Sunny Goyalaa8a8712016-11-20 15:26:01 +05302513 return getPaddingLeft() + getPaddingRight() + (mCountX * mCellWidth);
Adam Cohen2801caf2011-05-13 20:57:39 -07002514 }
2515
2516 public int getDesiredHeight() {
Sunny Goyalaa8a8712016-11-20 15:26:01 +05302517 return getPaddingTop() + getPaddingBottom() + (mCountY * mCellHeight);
Adam Cohen2801caf2011-05-13 20:57:39 -07002518 }
2519
Michael Jurka66d72172011-04-12 16:29:25 -07002520 public boolean isOccupied(int x, int y) {
2521 if (x < mCountX && y < mCountY) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002522 return mOccupied.cells[x][y];
Michael Jurka66d72172011-04-12 16:29:25 -07002523 } else {
2524 throw new RuntimeException("Position exceeds the bound of this CellLayout");
2525 }
2526 }
2527
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002528 @Override
2529 public ViewGroup.LayoutParams generateLayoutParams(AttributeSet attrs) {
2530 return new CellLayout.LayoutParams(getContext(), attrs);
2531 }
2532
2533 @Override
2534 protected boolean checkLayoutParams(ViewGroup.LayoutParams p) {
2535 return p instanceof CellLayout.LayoutParams;
2536 }
2537
2538 @Override
2539 protected ViewGroup.LayoutParams generateLayoutParams(ViewGroup.LayoutParams p) {
2540 return new CellLayout.LayoutParams(p);
2541 }
2542
2543 public static class LayoutParams extends ViewGroup.MarginLayoutParams {
2544 /**
2545 * Horizontal location of the item in the grid.
2546 */
2547 @ViewDebug.ExportedProperty
2548 public int cellX;
2549
2550 /**
2551 * Vertical location of the item in the grid.
2552 */
2553 @ViewDebug.ExportedProperty
2554 public int cellY;
2555
2556 /**
Adam Cohen482ed822012-03-02 14:15:13 -08002557 * Temporary horizontal location of the item in the grid during reorder
2558 */
2559 public int tmpCellX;
2560
2561 /**
2562 * Temporary vertical location of the item in the grid during reorder
2563 */
2564 public int tmpCellY;
2565
2566 /**
2567 * Indicates that the temporary coordinates should be used to layout the items
2568 */
2569 public boolean useTmpCoords;
2570
2571 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002572 * Number of cells spanned horizontally by the item.
2573 */
2574 @ViewDebug.ExportedProperty
2575 public int cellHSpan;
2576
2577 /**
2578 * Number of cells spanned vertically by the item.
2579 */
2580 @ViewDebug.ExportedProperty
2581 public int cellVSpan;
Winson Chungaafa03c2010-06-11 17:34:16 -07002582
Adam Cohen1b607ed2011-03-03 17:26:50 -08002583 /**
2584 * Indicates whether the item will set its x, y, width and height parameters freely,
2585 * or whether these will be computed based on cellX, cellY, cellHSpan and cellVSpan.
2586 */
Adam Cohend4844c32011-02-18 19:25:06 -08002587 public boolean isLockedToGrid = true;
2588
Adam Cohen482ed822012-03-02 14:15:13 -08002589 /**
2590 * Indicates whether this item can be reordered. Always true except in the case of the
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07002591 * the AllApps button and QSB place holder.
Adam Cohen482ed822012-03-02 14:15:13 -08002592 */
2593 public boolean canReorder = true;
2594
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002595 // X coordinate of the view in the layout.
2596 @ViewDebug.ExportedProperty
Vadim Tryshevfedca432015-08-19 17:55:02 -07002597 public int x;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002598 // Y coordinate of the view in the layout.
2599 @ViewDebug.ExportedProperty
Vadim Tryshevfedca432015-08-19 17:55:02 -07002600 public int y;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002601
Romain Guy84f296c2009-11-04 15:00:44 -08002602 boolean dropped;
Romain Guyfcb9e712009-10-02 16:06:52 -07002603
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002604 public LayoutParams(Context c, AttributeSet attrs) {
2605 super(c, attrs);
2606 cellHSpan = 1;
2607 cellVSpan = 1;
2608 }
2609
2610 public LayoutParams(ViewGroup.LayoutParams source) {
2611 super(source);
2612 cellHSpan = 1;
2613 cellVSpan = 1;
2614 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002615
2616 public LayoutParams(LayoutParams source) {
2617 super(source);
2618 this.cellX = source.cellX;
2619 this.cellY = source.cellY;
2620 this.cellHSpan = source.cellHSpan;
2621 this.cellVSpan = source.cellVSpan;
2622 }
2623
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002624 public LayoutParams(int cellX, int cellY, int cellHSpan, int cellVSpan) {
Romain Guy8f19cdd2010-01-08 15:07:00 -08002625 super(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002626 this.cellX = cellX;
2627 this.cellY = cellY;
2628 this.cellHSpan = cellHSpan;
2629 this.cellVSpan = cellVSpan;
2630 }
2631
Sunny Goyalaa8a8712016-11-20 15:26:01 +05302632 public void setup(int cellWidth, int cellHeight, boolean invertHorizontally, int colCount) {
Jon Miranda7ae64ff2016-11-21 16:18:46 -08002633 setup(cellWidth, cellHeight, invertHorizontally, colCount, 1.0f, 1.0f);
2634 }
2635
2636 /**
2637 * Use this method, as opposed to {@link #setup(int, int, boolean, int)}, if the view needs
2638 * to be scaled.
2639 *
2640 * ie. In multi-window mode, we setup widgets so that they are measured and laid out
2641 * using their full/invariant device profile sizes.
2642 */
2643 public void setup(int cellWidth, int cellHeight, boolean invertHorizontally, int colCount,
2644 float cellScaleX, float cellScaleY) {
Adam Cohend4844c32011-02-18 19:25:06 -08002645 if (isLockedToGrid) {
2646 final int myCellHSpan = cellHSpan;
2647 final int myCellVSpan = cellVSpan;
Adam Cohen2374abf2013-04-16 14:56:57 -07002648 int myCellX = useTmpCoords ? tmpCellX : cellX;
2649 int myCellY = useTmpCoords ? tmpCellY : cellY;
2650
2651 if (invertHorizontally) {
2652 myCellX = colCount - myCellX - cellHSpan;
2653 }
Adam Cohen1b607ed2011-03-03 17:26:50 -08002654
Jon Miranda7ae64ff2016-11-21 16:18:46 -08002655 width = (int) (myCellHSpan * cellWidth / cellScaleX - leftMargin - rightMargin);
2656 height = (int) (myCellVSpan * cellHeight / cellScaleY - topMargin - bottomMargin);
Sunny Goyalaa8a8712016-11-20 15:26:01 +05302657 x = (myCellX * cellWidth + leftMargin);
2658 y = (myCellY * cellHeight + topMargin);
Adam Cohend4844c32011-02-18 19:25:06 -08002659 }
2660 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002661
Winson Chungaafa03c2010-06-11 17:34:16 -07002662 public String toString() {
2663 return "(" + this.cellX + ", " + this.cellY + ")";
2664 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002665 }
2666
Michael Jurka0280c3b2010-09-17 15:00:07 -07002667 // This class stores info for two purposes:
2668 // 1. When dragging items (mDragInfo in Workspace), we store the View, its cellX & cellY,
2669 // its spanX, spanY, and the screen it is on
2670 // 2. When long clicking on an empty cell in a CellLayout, we save information about the
2671 // cellX and cellY coordinates and which page was clicked. We then set this as a tag on
2672 // the CellLayout that was long clicked
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002673 public static final class CellInfo extends CellAndSpan {
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07002674 public final View cell;
Sunny Goyalefb7e842018-10-04 15:11:00 -07002675 final int screenId;
2676 final int container;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002677
Sunny Goyal83a8f042015-05-19 12:52:12 -07002678 public CellInfo(View v, ItemInfo info) {
Adam Cohene0aaa0d2014-05-12 12:44:22 -07002679 cellX = info.cellX;
2680 cellY = info.cellY;
2681 spanX = info.spanX;
2682 spanY = info.spanY;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002683 cell = v;
Adam Cohene0aaa0d2014-05-12 12:44:22 -07002684 screenId = info.screenId;
2685 container = info.container;
2686 }
2687
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002688 @Override
2689 public String toString() {
Winson Chungaafa03c2010-06-11 17:34:16 -07002690 return "Cell[view=" + (cell == null ? "null" : cell.getClass())
2691 + ", x=" + cellX + ", y=" + cellY + "]";
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002692 }
2693 }
Michael Jurkad771c962011-08-09 15:00:48 -07002694
Tony Wickham86930612015-09-09 13:50:40 -07002695 /**
2696 * Returns whether an item can be placed in this CellLayout (after rearranging and/or resizing
2697 * if necessary).
2698 */
2699 public boolean hasReorderSolution(ItemInfo itemInfo) {
2700 int[] cellPoint = new int[2];
2701 // Check for a solution starting at every cell.
2702 for (int cellX = 0; cellX < getCountX(); cellX++) {
2703 for (int cellY = 0; cellY < getCountY(); cellY++) {
2704 cellToPoint(cellX, cellY, cellPoint);
2705 if (findReorderSolution(cellPoint[0], cellPoint[1], itemInfo.minSpanX,
2706 itemInfo.minSpanY, itemInfo.spanX, itemInfo.spanY, mDirectionVector, null,
2707 true, new ItemConfiguration()).isSolution) {
2708 return true;
2709 }
2710 }
2711 }
2712 return false;
2713 }
2714
Sunny Goyal9ca9c132015-04-29 14:57:22 -07002715 public boolean isRegionVacant(int x, int y, int spanX, int spanY) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002716 return mOccupied.isRegionVacant(x, y, spanX, spanY);
Sunny Goyal9ca9c132015-04-29 14:57:22 -07002717 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002718}