blob: f2d07f2b11d5337dd9adfc12e8304e5fb361ad78 [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
vadimt04f356f2019-02-14 18:46:36 -080051import androidx.annotation.IntDef;
52import androidx.core.view.ViewCompat;
53
Sunny Goyalaa8ef112015-06-12 20:04:41 -070054import com.android.launcher3.LauncherSettings.Favorites;
Sunny Goyale9b651e2015-04-24 11:44:51 -070055import com.android.launcher3.accessibility.DragAndDropAccessibilityDelegate;
Sunny Goyal5bc6b6f2017-10-26 15:36:10 -070056import com.android.launcher3.anim.Interpolators;
Sunny Goyal9e76f682017-02-13 12:13:43 -080057import com.android.launcher3.anim.PropertyListBuilder;
Sunny Goyal3d706ad2017-03-06 16:56:39 -080058import com.android.launcher3.config.FeatureFlags;
Jon Mirandaa0233f72017-06-22 18:34:45 -070059import com.android.launcher3.folder.PreviewBackground;
Sunny Goyal06e21a22016-08-11 16:02:02 -070060import com.android.launcher3.graphics.DragPreviewProvider;
Sunny Goyalae6e3182019-04-30 12:04:37 -070061import com.android.launcher3.graphics.RotationMode;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -070062import com.android.launcher3.util.CellAndSpan;
63import com.android.launcher3.util.GridOccupancy;
Sunny Goyale2fd14b2015-08-27 17:45:46 -070064import com.android.launcher3.util.ParcelableSparseArray;
Sunny Goyal9b29ca52017-02-17 10:39:44 -080065import com.android.launcher3.util.Themes;
Adam Cohen091440a2015-03-18 14:16:05 -070066import com.android.launcher3.util.Thunk;
Sunny Goyalab770a12018-11-14 15:17:26 -080067import com.android.launcher3.views.ActivityContext;
Sunny Goyalae6e3182019-04-30 12:04:37 -070068import com.android.launcher3.views.Transposable;
Sunny Goyal29947f02017-12-18 13:49:44 -080069import com.android.launcher3.widget.LauncherAppWidgetHostView;
Sunny Goyal5bc6b6f2017-10-26 15:36:10 -070070
Sunny Goyalc13403c2016-11-18 23:44:48 -080071import java.lang.annotation.Retention;
72import java.lang.annotation.RetentionPolicy;
Adam Cohen69ce2e52011-07-03 19:25:21 -070073import java.util.ArrayList;
Adam Cohenc0dcf592011-06-01 15:30:43 -070074import java.util.Arrays;
Adam Cohenf3900c22012-11-16 18:28:11 -080075import java.util.Collections;
76import java.util.Comparator;
Adam Cohend41fbf52012-02-16 23:53:59 -080077import java.util.Stack;
Adam Cohenc0dcf592011-06-01 15:30:43 -070078
Sunny Goyalae6e3182019-04-30 12:04:37 -070079public class CellLayout extends ViewGroup implements Transposable {
Tony Wickhama0628cc2015-10-14 15:23:04 -070080 private static final String TAG = "CellLayout";
81 private static final boolean LOGD = false;
Winson Chungaafa03c2010-06-11 17:34:16 -070082
Sunny Goyalab770a12018-11-14 15:17:26 -080083 protected final ActivityContext mActivity;
Sunny Goyal4ffec482016-02-09 11:28:52 -080084 @ViewDebug.ExportedProperty(category = "launcher")
Adam Cohen091440a2015-03-18 14:16:05 -070085 @Thunk int mCellWidth;
Sunny Goyal4ffec482016-02-09 11:28:52 -080086 @ViewDebug.ExportedProperty(category = "launcher")
Adam Cohen091440a2015-03-18 14:16:05 -070087 @Thunk int mCellHeight;
Winson Chung11a1a532013-09-13 11:14:45 -070088 private int mFixedCellWidth;
89 private int mFixedCellHeight;
Winson Chungaafa03c2010-06-11 17:34:16 -070090
Sunny Goyal4ffec482016-02-09 11:28:52 -080091 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyalff4ba2d2016-04-02 14:12:34 -070092 private int mCountX;
Sunny Goyal4ffec482016-02-09 11:28:52 -080093 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyalff4ba2d2016-04-02 14:12:34 -070094 private int mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080095
Adam Cohen917e3882013-10-31 15:03:35 -070096 private boolean mDropPending = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080097
Patrick Dubroyde7658b2010-09-27 11:15:43 -070098 // These are temporary variables to prevent having to allocate a new object just to
99 // return an (x, y) value from helper functions. Do NOT use them to maintain other state.
Adam Cohen091440a2015-03-18 14:16:05 -0700100 @Thunk final int[] mTmpPoint = new int[2];
Sunny Goyal2805e632015-05-20 15:35:32 -0700101 @Thunk final int[] mTempLocation = new int[2];
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700102
Sunny Goyalff4ba2d2016-04-02 14:12:34 -0700103 private GridOccupancy mOccupied;
104 private GridOccupancy mTmpOccupied;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800105
Michael Jurkadee05892010-07-27 10:01:56 -0700106 private OnTouchListener mInterceptTouchListener;
107
Samuel Fufa1e2d0042019-11-18 17:12:46 -0800108 private final ArrayList<DelegatedCellDrawing> mDelegatedCellDrawings = new ArrayList<>();
Jon Mirandaa0233f72017-06-22 18:34:45 -0700109 final PreviewBackground mFolderLeaveBehind = new PreviewBackground();
Adam Cohen69ce2e52011-07-03 19:25:21 -0700110
Sunny Goyalf5440cb2016-12-14 15:13:00 -0800111 private static final int[] BACKGROUND_STATE_ACTIVE = new int[] { android.R.attr.state_active };
Sunny Goyale15e2a82017-12-15 13:05:42 -0800112 private static final int[] BACKGROUND_STATE_DEFAULT = EMPTY_STATE_SET;
Sunny Goyalf5440cb2016-12-14 15:13:00 -0800113 private final Drawable mBackground;
Sunny Goyal2805e632015-05-20 15:35:32 -0700114
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700115 // These values allow a fixed measurement to be set on the CellLayout.
116 private int mFixedWidth = -1;
117 private int mFixedHeight = -1;
118
Michael Jurka33945b22010-12-21 18:19:38 -0800119 // If we're actively dragging something over this screen, mIsDragOverlapping is true
120 private boolean mIsDragOverlapping = false;
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700121
Winson Chung150fbab2010-09-29 17:14:26 -0700122 // These arrays are used to implement the drag visualization on x-large screens.
Joe Onorato4be866d2010-10-10 11:26:02 -0700123 // They are used as circular arrays, indexed by mDragOutlineCurrent.
Rajeev Kumar9962dbe2017-06-12 12:16:20 -0700124 @Thunk final Rect[] mDragOutlines = new Rect[4];
125 @Thunk final float[] mDragOutlineAlphas = new float[mDragOutlines.length];
126 private final InterruptibleInOutAnimator[] mDragOutlineAnims =
Joe Onorato4be866d2010-10-10 11:26:02 -0700127 new InterruptibleInOutAnimator[mDragOutlines.length];
Winson Chung150fbab2010-09-29 17:14:26 -0700128
129 // Used as an index into the above 3 arrays; indicates which is the most current value.
Joe Onorato4be866d2010-10-10 11:26:02 -0700130 private int mDragOutlineCurrent = 0;
Patrick Dubroy8e58e912010-10-14 13:21:48 -0700131 private final Paint mDragOutlinePaint = new Paint();
Winson Chung150fbab2010-09-29 17:14:26 -0700132
Rajeev Kumar9962dbe2017-06-12 12:16:20 -0700133 @Thunk final ArrayMap<LayoutParams, Animator> mReorderAnimators = new ArrayMap<>();
134 @Thunk final ArrayMap<View, ReorderPreviewAnimation> mShakeAnimators = new ArrayMap<>();
Adam Cohen19f37922012-03-21 11:59:11 -0700135
136 private boolean mItemPlacementDirty = false;
Adam Cohenbfbfd262011-06-13 16:55:12 -0700137
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700138 // When a drag operation is in progress, holds the nearest cell to the touch point
139 private final int[] mDragCell = new int[2];
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800140
Joe Onorato4be866d2010-10-10 11:26:02 -0700141 private boolean mDragging = false;
142
Rajeev Kumar9962dbe2017-06-12 12:16:20 -0700143 private final TimeInterpolator mEaseOutInterpolator;
144 private final ShortcutAndWidgetContainer mShortcutsAndWidgets;
Patrick Dubroyce34a972010-10-19 10:34:32 -0700145
Sunny Goyalc13403c2016-11-18 23:44:48 -0800146 @Retention(RetentionPolicy.SOURCE)
147 @IntDef({WORKSPACE, HOTSEAT, FOLDER})
148 public @interface ContainerType{}
149 public static final int WORKSPACE = 0;
150 public static final int HOTSEAT = 1;
151 public static final int FOLDER = 2;
152
153 @ContainerType private final int mContainerType;
154
Jon Mirandab28c4fc2017-06-20 10:58:36 -0700155 private final float mChildScale = 1f;
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800156
Adam Cohenfa3c58f2013-12-06 16:10:55 -0800157 public static final int MODE_SHOW_REORDER_HINT = 0;
158 public static final int MODE_DRAG_OVER = 1;
159 public static final int MODE_ON_DROP = 2;
160 public static final int MODE_ON_DROP_EXTERNAL = 3;
161 public static final int MODE_ACCEPT_DROP = 4;
Adam Cohen19f37922012-03-21 11:59:11 -0700162 private static final boolean DESTRUCTIVE_REORDER = false;
Adam Cohen482ed822012-03-02 14:15:13 -0800163 private static final boolean DEBUG_VISUALIZE_OCCUPIED = false;
164
Adam Cohenfa3c58f2013-12-06 16:10:55 -0800165 private static final float REORDER_PREVIEW_MAGNITUDE = 0.12f;
Adam Cohen19f37922012-03-21 11:59:11 -0700166 private static final int REORDER_ANIMATION_DURATION = 150;
Sunny Goyalc13403c2016-11-18 23:44:48 -0800167 @Thunk final float mReorderPreviewAnimationMagnitude;
Adam Cohen19f37922012-03-21 11:59:11 -0700168
Rajeev Kumar9962dbe2017-06-12 12:16:20 -0700169 private final ArrayList<View> mIntersectingViews = new ArrayList<>();
170 private final Rect mOccupiedRect = new Rect();
171 private final int[] mDirectionVector = new int[2];
172 final int[] mPreviousReorderDirection = new int[2];
Adam Cohenb209e632012-03-27 17:09:36 -0700173 private static final int INVALID_DIRECTION = -100;
Adam Cohen482ed822012-03-02 14:15:13 -0800174
Sunny Goyal2805e632015-05-20 15:35:32 -0700175 private final Rect mTempRect = new Rect();
Winson Chung3a6e7f32013-10-09 15:50:52 -0700176
Sunny Goyal73b5a272019-12-09 14:55:56 -0800177 private static final Paint sPaint = new Paint();
Romain Guy8a0bff52012-05-06 13:14:33 -0700178
Adam Cohenc9735cf2015-01-23 16:11:55 -0800179 // Related to accessible drag and drop
Adam Cohenc9735cf2015-01-23 16:11:55 -0800180 private boolean mUseTouchHelper = false;
Sunny Goyalae6e3182019-04-30 12:04:37 -0700181 private RotationMode mRotationMode = RotationMode.NORMAL;
Adam Cohenc9735cf2015-01-23 16:11:55 -0800182
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800183 public CellLayout(Context context) {
184 this(context, null);
185 }
186
187 public CellLayout(Context context, AttributeSet attrs) {
188 this(context, attrs, 0);
189 }
190
191 public CellLayout(Context context, AttributeSet attrs, int defStyle) {
192 super(context, attrs, defStyle);
Sunny Goyalc13403c2016-11-18 23:44:48 -0800193 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.CellLayout, defStyle, 0);
194 mContainerType = a.getInteger(R.styleable.CellLayout_containerType, WORKSPACE);
195 a.recycle();
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700196
197 // A ViewGroup usually does not draw, but CellLayout needs to draw a rectangle to show
198 // the user where a dragged item will land when dropped.
199 setWillNotDraw(false);
Romain Guyce3cbd12013-02-25 15:00:36 -0800200 setClipToPadding(false);
Sunny Goyalab770a12018-11-14 15:17:26 -0800201 mActivity = ActivityContext.lookupContext(context);
Michael Jurkaa63c4522010-08-19 13:52:27 -0700202
Sunny Goyalae6e3182019-04-30 12:04:37 -0700203 DeviceProfile grid = mActivity.getWallpaperDeviceProfile();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800204
Winson Chung11a1a532013-09-13 11:14:45 -0700205 mCellWidth = mCellHeight = -1;
Nilesh Agrawal5f7099a2014-01-02 15:54:57 -0800206 mFixedCellWidth = mFixedCellHeight = -1;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -0700207
208 mCountX = grid.inv.numColumns;
209 mCountY = grid.inv.numRows;
210 mOccupied = new GridOccupancy(mCountX, mCountY);
211 mTmpOccupied = new GridOccupancy(mCountX, mCountY);
212
Adam Cohen5b53f292012-03-29 14:30:35 -0700213 mPreviousReorderDirection[0] = INVALID_DIRECTION;
214 mPreviousReorderDirection[1] = INVALID_DIRECTION;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800215
Samuel Fufa1e2d0042019-11-18 17:12:46 -0800216 mFolderLeaveBehind.mDelegateCellX = -1;
217 mFolderLeaveBehind.mDelegateCellY = -1;
Adam Cohenefca0272016-02-24 19:19:06 -0800218
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800219 setAlwaysDrawnWithCacheEnabled(false);
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700220 final Resources res = getResources();
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700221
Sunny Goyalf5440cb2016-12-14 15:13:00 -0800222 mBackground = res.getDrawable(R.drawable.bg_celllayout);
Sunny Goyal2805e632015-05-20 15:35:32 -0700223 mBackground.setCallback(this);
Sunny Goyalaeb16432017-10-16 11:46:41 -0700224 mBackground.setAlpha(0);
Michael Jurka33945b22010-12-21 18:19:38 -0800225
Sunny Goyalc13403c2016-11-18 23:44:48 -0800226 mReorderPreviewAnimationMagnitude = (REORDER_PREVIEW_MAGNITUDE * grid.iconSizePx);
Adam Cohen19f37922012-03-21 11:59:11 -0700227
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700228 // Initialize the data structures used for the drag visualization.
Sunny Goyal5bc6b6f2017-10-26 15:36:10 -0700229 mEaseOutInterpolator = Interpolators.DEACCEL_2_5; // Quint ease out
Winson Chungb8c69f32011-10-19 21:36:08 -0700230 mDragCell[0] = mDragCell[1] = -1;
Joe Onorato4be866d2010-10-10 11:26:02 -0700231 for (int i = 0; i < mDragOutlines.length; i++) {
Adam Cohend41fbf52012-02-16 23:53:59 -0800232 mDragOutlines[i] = new Rect(-1, -1, -1, -1);
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700233 }
Mario Bertschler54ba6012017-06-08 10:53:53 -0700234 mDragOutlinePaint.setColor(Themes.getAttrColor(context, R.attr.workspaceTextColor));
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700235
236 // When dragging things around the home screens, we show a green outline of
237 // where the item will land. The outlines gradually fade out, leaving a trail
238 // behind the drag path.
239 // Set up all the animations that are used to implement this fading.
240 final int duration = res.getInteger(R.integer.config_dragOutlineFadeTime);
Chet Haase472b2812010-10-14 07:02:04 -0700241 final float fromAlphaValue = 0;
242 final float toAlphaValue = (float)res.getInteger(R.integer.config_dragOutlineMaxAlpha);
Joe Onorato4be866d2010-10-10 11:26:02 -0700243
Patrick Dubroy8e58e912010-10-14 13:21:48 -0700244 Arrays.fill(mDragOutlineAlphas, fromAlphaValue);
Joe Onorato4be866d2010-10-10 11:26:02 -0700245
246 for (int i = 0; i < mDragOutlineAnims.length; i++) {
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700247 final InterruptibleInOutAnimator anim =
Sunny Goyal849c6a22018-08-08 16:33:46 -0700248 new InterruptibleInOutAnimator(duration, fromAlphaValue, toAlphaValue);
Patrick Dubroyce34a972010-10-19 10:34:32 -0700249 anim.getAnimator().setInterpolator(mEaseOutInterpolator);
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700250 final int thisIndex = i;
Chet Haase472b2812010-10-14 07:02:04 -0700251 anim.getAnimator().addUpdateListener(new AnimatorUpdateListener() {
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700252 public void onAnimationUpdate(ValueAnimator animation) {
Joe Onorato4be866d2010-10-10 11:26:02 -0700253 final Bitmap outline = (Bitmap)anim.getTag();
254
255 // If an animation is started and then stopped very quickly, we can still
256 // get spurious updates we've cleared the tag. Guard against this.
257 if (outline == null) {
Tony Wickhama0628cc2015-10-14 15:23:04 -0700258 if (LOGD) {
Patrick Dubroyfe6bd872010-10-13 17:32:10 -0700259 Object val = animation.getAnimatedValue();
260 Log.d(TAG, "anim " + thisIndex + " update: " + val +
261 ", isStopped " + anim.isStopped());
262 }
Joe Onorato4be866d2010-10-10 11:26:02 -0700263 // Try to prevent it from continuing to run
264 animation.cancel();
265 } else {
Chet Haase472b2812010-10-14 07:02:04 -0700266 mDragOutlineAlphas[thisIndex] = (Float) animation.getAnimatedValue();
Adam Cohend41fbf52012-02-16 23:53:59 -0800267 CellLayout.this.invalidate(mDragOutlines[thisIndex]);
Joe Onorato4be866d2010-10-10 11:26:02 -0700268 }
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700269 }
270 });
Joe Onorato4be866d2010-10-10 11:26:02 -0700271 // The animation holds a reference to the drag outline bitmap as long is it's
272 // running. This way the bitmap can be GCed when the animations are complete.
Chet Haase472b2812010-10-14 07:02:04 -0700273 anim.getAnimator().addListener(new AnimatorListenerAdapter() {
Michael Jurka3c4c20f2010-10-28 15:36:06 -0700274 @Override
Joe Onorato4be866d2010-10-10 11:26:02 -0700275 public void onAnimationEnd(Animator animation) {
Chet Haase472b2812010-10-14 07:02:04 -0700276 if ((Float) ((ValueAnimator) animation).getAnimatedValue() == 0f) {
Joe Onorato4be866d2010-10-10 11:26:02 -0700277 anim.setTag(null);
278 }
279 }
280 });
281 mDragOutlineAnims[i] = anim;
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700282 }
Patrick Dubroyce34a972010-10-19 10:34:32 -0700283
Sunny Goyalc13403c2016-11-18 23:44:48 -0800284 mShortcutsAndWidgets = new ShortcutAndWidgetContainer(context, mContainerType);
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530285 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mCountX, mCountY);
Michael Jurkaa52570f2012-03-20 03:18:20 -0700286 addView(mShortcutsAndWidgets);
Michael Jurka18014792010-10-14 09:01:34 -0700287 }
288
Sunny Goyal9b180102020-03-11 10:02:29 -0700289
290 /**
291 * Sets or clears a delegate used for accessible drag and drop
292 */
293 public void setDragAndDropAccessibilityDelegate(DragAndDropAccessibilityDelegate delegate) {
294 setOnClickListener(delegate);
295 setOnHoverListener(delegate);
296 ViewCompat.setAccessibilityDelegate(this, delegate);
297
298 mUseTouchHelper = delegate != null;
299 int accessibilityFlag = mUseTouchHelper
300 ? IMPORTANT_FOR_ACCESSIBILITY_YES : IMPORTANT_FOR_ACCESSIBILITY_NO;
301 setImportantForAccessibility(accessibilityFlag);
302 getShortcutsAndWidgets().setImportantForAccessibility(accessibilityFlag);
Adam Cohenc9735cf2015-01-23 16:11:55 -0800303
304 // Invalidate the accessibility hierarchy
305 if (getParent() != null) {
306 getParent().notifySubtreeAccessibilityStateChanged(
307 this, this, AccessibilityEvent.CONTENT_CHANGE_TYPE_SUBTREE);
308 }
309 }
310
Sunny Goyalae6e3182019-04-30 12:04:37 -0700311 public void setRotationMode(RotationMode mode) {
312 if (mRotationMode != mode) {
313 mRotationMode = mode;
314 requestLayout();
315 }
316 }
317
318 @Override
319 public RotationMode getRotationMode() {
320 return mRotationMode;
321 }
322
323 @Override
324 public void setPadding(int left, int top, int right, int bottom) {
325 mRotationMode.mapRect(left, top, right, bottom, mTempRect);
326 super.setPadding(mTempRect.left, mTempRect.top, mTempRect.right, mTempRect.bottom);
327 }
328
Adam Cohenc9735cf2015-01-23 16:11:55 -0800329 @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
vadimt04f356f2019-02-14 18:46:36 -0800342 public boolean isHardwareLayerEnabled() {
343 return mShortcutsAndWidgets.getLayerType() == LAYER_TYPE_HARDWARE;
344 }
345
Winson Chung5f8afe62013-08-12 16:19:28 -0700346 public void setCellDimensions(int width, int height) {
Winson Chung11a1a532013-09-13 11:14:45 -0700347 mFixedCellWidth = mCellWidth = width;
348 mFixedCellHeight = mCellHeight = height;
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530349 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mCountX, mCountY);
Winson Chung5f8afe62013-08-12 16:19:28 -0700350 }
351
Adam Cohen2801caf2011-05-13 20:57:39 -0700352 public void setGridSize(int x, int y) {
353 mCountX = x;
354 mCountY = y;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -0700355 mOccupied = new GridOccupancy(mCountX, mCountY);
356 mTmpOccupied = new GridOccupancy(mCountX, mCountY);
Adam Cohen7fbec102012-03-27 12:42:19 -0700357 mTempRectStack.clear();
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530358 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mCountX, mCountY);
Adam Cohen76fc0852011-06-17 13:26:23 -0700359 requestLayout();
Adam Cohen2801caf2011-05-13 20:57:39 -0700360 }
361
Adam Cohen2374abf2013-04-16 14:56:57 -0700362 // Set whether or not to invert the layout horizontally if the layout is in RTL mode.
363 public void setInvertIfRtl(boolean invert) {
364 mShortcutsAndWidgets.setInvertIfRtl(invert);
365 }
366
Adam Cohen917e3882013-10-31 15:03:35 -0700367 public void setDropPending(boolean pending) {
368 mDropPending = pending;
369 }
370
371 public boolean isDropPending() {
372 return mDropPending;
373 }
374
Adam Cohenc50438c2014-08-19 17:43:05 -0700375 void setIsDragOverlapping(boolean isDragOverlapping) {
376 if (mIsDragOverlapping != isDragOverlapping) {
377 mIsDragOverlapping = isDragOverlapping;
Sunny Goyalf5440cb2016-12-14 15:13:00 -0800378 mBackground.setState(mIsDragOverlapping
379 ? BACKGROUND_STATE_ACTIVE : BACKGROUND_STATE_DEFAULT);
Adam Cohenc50438c2014-08-19 17:43:05 -0700380 invalidate();
381 }
382 }
383
Sunny Goyale2fd14b2015-08-27 17:45:46 -0700384 @Override
385 protected void dispatchSaveInstanceState(SparseArray<Parcelable> container) {
Sunny Goyal7ce471b2017-08-02 03:37:39 -0700386 ParcelableSparseArray jail = getJailedArray(container);
387 super.dispatchSaveInstanceState(jail);
388 container.put(R.id.cell_layout_jail_id, jail);
Sunny Goyale2fd14b2015-08-27 17:45:46 -0700389 }
390
391 @Override
392 protected void dispatchRestoreInstanceState(SparseArray<Parcelable> container) {
Sunny Goyal7ce471b2017-08-02 03:37:39 -0700393 super.dispatchRestoreInstanceState(getJailedArray(container));
Sunny Goyale2fd14b2015-08-27 17:45:46 -0700394 }
395
Sunny Goyal7ce471b2017-08-02 03:37:39 -0700396 /**
397 * Wrap the SparseArray in another Parcelable so that the item ids do not conflict with our
398 * our internal resource ids
399 */
Sunny Goyale2fd14b2015-08-27 17:45:46 -0700400 private ParcelableSparseArray getJailedArray(SparseArray<Parcelable> container) {
401 final Parcelable parcelable = container.get(R.id.cell_layout_jail_id);
402 return parcelable instanceof ParcelableSparseArray ?
403 (ParcelableSparseArray) parcelable : new ParcelableSparseArray();
404 }
405
Tony Wickham0f97b782015-12-02 17:55:07 -0800406 public boolean getIsDragOverlapping() {
407 return mIsDragOverlapping;
408 }
409
Jeff Sharkey83f111d2009-04-20 21:03:13 -0700410 @Override
Patrick Dubroy1262e362010-10-06 15:49:50 -0700411 protected void onDraw(Canvas canvas) {
Michael Jurka3e7c7632010-10-02 16:01:03 -0700412 // When we're large, we are either drawn in a "hover" state (ie when dragging an item to
413 // a neighboring page) or with just a normal background (if backgroundAlpha > 0.0f)
414 // When we're small, we are either drawn normally or in the "accepts drops" state (during
415 // a drag). However, we also drag the mini hover background *over* one of those two
416 // backgrounds
Sunny Goyalaeb16432017-10-16 11:46:41 -0700417 if (mBackground.getAlpha() > 0) {
Sunny Goyal2805e632015-05-20 15:35:32 -0700418 mBackground.draw(canvas);
Michael Jurkaa63c4522010-08-19 13:52:27 -0700419 }
Romain Guya6abce82009-11-10 02:54:41 -0800420
Patrick Dubroy8e58e912010-10-14 13:21:48 -0700421 final Paint paint = mDragOutlinePaint;
Joe Onorato4be866d2010-10-10 11:26:02 -0700422 for (int i = 0; i < mDragOutlines.length; i++) {
Chet Haase472b2812010-10-14 07:02:04 -0700423 final float alpha = mDragOutlineAlphas[i];
Joe Onorato4be866d2010-10-10 11:26:02 -0700424 if (alpha > 0) {
Joe Onorato4be866d2010-10-10 11:26:02 -0700425 final Bitmap b = (Bitmap) mDragOutlineAnims[i].getTag();
Chet Haase472b2812010-10-14 07:02:04 -0700426 paint.setAlpha((int)(alpha + .5f));
Sunny Goyal106bf642015-07-16 12:18:06 -0700427 canvas.drawBitmap(b, null, mDragOutlines[i], paint);
Winson Chung150fbab2010-09-29 17:14:26 -0700428 }
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700429 }
Patrick Dubroy96864c32011-03-10 17:17:23 -0800430
Adam Cohen482ed822012-03-02 14:15:13 -0800431 if (DEBUG_VISUALIZE_OCCUPIED) {
432 int[] pt = new int[2];
433 ColorDrawable cd = new ColorDrawable(Color.RED);
Adam Cohene7587d22012-05-24 18:50:02 -0700434 cd.setBounds(0, 0, mCellWidth, mCellHeight);
Adam Cohen482ed822012-03-02 14:15:13 -0800435 for (int i = 0; i < mCountX; i++) {
436 for (int j = 0; j < mCountY; j++) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -0700437 if (mOccupied.cells[i][j]) {
Adam Cohen482ed822012-03-02 14:15:13 -0800438 cellToPoint(i, j, pt);
439 canvas.save();
440 canvas.translate(pt[0], pt[1]);
441 cd.draw(canvas);
442 canvas.restore();
443 }
444 }
445 }
446 }
447
Samuel Fufa1e2d0042019-11-18 17:12:46 -0800448 for (int i = 0; i < mDelegatedCellDrawings.size(); i++) {
449 DelegatedCellDrawing cellDrawing = mDelegatedCellDrawings.get(i);
450 cellToPoint(cellDrawing.mDelegateCellX, cellDrawing.mDelegateCellY, mTempLocation);
Adam Cohenefca0272016-02-24 19:19:06 -0800451 canvas.save();
452 canvas.translate(mTempLocation[0], mTempLocation[1]);
Samuel Fufa1e2d0042019-11-18 17:12:46 -0800453 cellDrawing.drawUnderItem(canvas);
Adam Cohenefca0272016-02-24 19:19:06 -0800454 canvas.restore();
Adam Cohen69ce2e52011-07-03 19:25:21 -0700455 }
Adam Cohenc51934b2011-07-26 21:07:43 -0700456
Samuel Fufa1e2d0042019-11-18 17:12:46 -0800457 if (mFolderLeaveBehind.mDelegateCellX >= 0 && mFolderLeaveBehind.mDelegateCellY >= 0) {
458 cellToPoint(mFolderLeaveBehind.mDelegateCellX,
459 mFolderLeaveBehind.mDelegateCellY, mTempLocation);
Adam Cohenefca0272016-02-24 19:19:06 -0800460 canvas.save();
461 canvas.translate(mTempLocation[0], mTempLocation[1]);
Sunny Goyal19b93b72017-02-19 20:21:37 -0800462 mFolderLeaveBehind.drawLeaveBehind(canvas);
Adam Cohenefca0272016-02-24 19:19:06 -0800463 canvas.restore();
Adam Cohenc51934b2011-07-26 21:07:43 -0700464 }
Adam Cohen69ce2e52011-07-03 19:25:21 -0700465 }
466
Adam Cohenefca0272016-02-24 19:19:06 -0800467 @Override
468 protected void dispatchDraw(Canvas canvas) {
469 super.dispatchDraw(canvas);
470
Samuel Fufa1e2d0042019-11-18 17:12:46 -0800471 for (int i = 0; i < mDelegatedCellDrawings.size(); i++) {
472 DelegatedCellDrawing bg = mDelegatedCellDrawings.get(i);
473 cellToPoint(bg.mDelegateCellX, bg.mDelegateCellY, mTempLocation);
474 canvas.save();
475 canvas.translate(mTempLocation[0], mTempLocation[1]);
476 bg.drawOverItem(canvas);
477 canvas.restore();
Adam Cohenefca0272016-02-24 19:19:06 -0800478 }
Adam Cohen69ce2e52011-07-03 19:25:21 -0700479 }
480
Samuel Fufa1e2d0042019-11-18 17:12:46 -0800481 /**
482 * Add Delegated cell drawing
483 */
484 public void addDelegatedCellDrawing(DelegatedCellDrawing bg) {
485 mDelegatedCellDrawings.add(bg);
Adam Cohenefca0272016-02-24 19:19:06 -0800486 }
Samuel Fufa1e2d0042019-11-18 17:12:46 -0800487
488 /**
489 * Remove item from DelegatedCellDrawings
490 */
491 public void removeDelegatedCellDrawing(DelegatedCellDrawing bg) {
492 mDelegatedCellDrawings.remove(bg);
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700493 }
494
Adam Cohenc51934b2011-07-26 21:07:43 -0700495 public void setFolderLeaveBehindCell(int x, int y) {
Adam Cohenefca0272016-02-24 19:19:06 -0800496 View child = getChildAt(x, y);
Sunny Goyalab770a12018-11-14 15:17:26 -0800497 mFolderLeaveBehind.setup(getContext(), mActivity, null,
Adam Cohenefca0272016-02-24 19:19:06 -0800498 child.getMeasuredWidth(), child.getPaddingTop());
499
Samuel Fufa1e2d0042019-11-18 17:12:46 -0800500 mFolderLeaveBehind.mDelegateCellX = x;
501 mFolderLeaveBehind.mDelegateCellY = y;
Adam Cohenc51934b2011-07-26 21:07:43 -0700502 invalidate();
503 }
504
505 public void clearFolderLeaveBehind() {
Samuel Fufa1e2d0042019-11-18 17:12:46 -0800506 mFolderLeaveBehind.mDelegateCellX = -1;
507 mFolderLeaveBehind.mDelegateCellY = -1;
Adam Cohenc51934b2011-07-26 21:07:43 -0700508 invalidate();
509 }
510
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700511 @Override
Michael Jurkae6235dd2011-10-04 15:02:05 -0700512 public boolean shouldDelayChildPressedState() {
513 return false;
514 }
515
Adam Cohen1462de32012-07-24 22:34:36 -0700516 public void restoreInstanceState(SparseArray<Parcelable> states) {
Sunny Goyal33a152f2014-07-22 12:13:14 -0700517 try {
518 dispatchRestoreInstanceState(states);
519 } catch (IllegalArgumentException ex) {
Zak Cohen3eeb41d2020-02-14 14:15:13 -0800520 if (FeatureFlags.IS_STUDIO_BUILD) {
Sunny Goyal33a152f2014-07-22 12:13:14 -0700521 throw ex;
522 }
523 // Mismatched viewId / viewType preventing restore. Skip restore on production builds.
524 Log.e(TAG, "Ignoring an error while restoring a view instance state", ex);
525 }
Adam Cohen1462de32012-07-24 22:34:36 -0700526 }
527
Michael Jurkae6235dd2011-10-04 15:02:05 -0700528 @Override
Jeff Sharkey83f111d2009-04-20 21:03:13 -0700529 public void cancelLongPress() {
530 super.cancelLongPress();
531
532 // Cancel long press for all children
533 final int count = getChildCount();
534 for (int i = 0; i < count; i++) {
535 final View child = getChildAt(i);
536 child.cancelLongPress();
537 }
538 }
539
Michael Jurkadee05892010-07-27 10:01:56 -0700540 public void setOnInterceptTouchListener(View.OnTouchListener listener) {
541 mInterceptTouchListener = listener;
542 }
543
Hyunyoung Songee3e6a72015-02-20 14:25:27 -0800544 public int getCountX() {
Adam Cohend22015c2010-07-26 22:02:18 -0700545 return mCountX;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800546 }
547
Hyunyoung Songee3e6a72015-02-20 14:25:27 -0800548 public int getCountY() {
Adam Cohend22015c2010-07-26 22:02:18 -0700549 return mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800550 }
551
Sunny Goyalc13403c2016-11-18 23:44:48 -0800552 public boolean acceptsWidget() {
553 return mContainerType == WORKSPACE;
Sunny Goyale9b651e2015-04-24 11:44:51 -0700554 }
555
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800556 public boolean addViewToCellLayout(View child, int index, int childId, LayoutParams params,
Sunny Goyalf7a29e82015-04-24 15:20:43 -0700557 boolean markCells) {
Winson Chungaafa03c2010-06-11 17:34:16 -0700558 final LayoutParams lp = params;
559
Andrew Flynnde38e422012-05-08 11:22:15 -0700560 // Hotseat icons - remove text
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800561 if (child instanceof BubbleTextView) {
562 BubbleTextView bubbleChild = (BubbleTextView) child;
Jon Mirandaf1eae802017-10-04 11:23:33 -0700563 bubbleChild.setTextVisibility(mContainerType != HOTSEAT);
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800564 }
565
Sunny Goyalc13403c2016-11-18 23:44:48 -0800566 child.setScaleX(mChildScale);
567 child.setScaleY(mChildScale);
Adam Cohen307fe232012-08-16 17:55:58 -0700568
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800569 // Generate an id for each view, this assumes we have at most 256x256 cells
570 // per workspace screen
Adam Cohend22015c2010-07-26 22:02:18 -0700571 if (lp.cellX >= 0 && lp.cellX <= mCountX - 1 && lp.cellY >= 0 && lp.cellY <= mCountY - 1) {
Winson Chungaafa03c2010-06-11 17:34:16 -0700572 // If the horizontal or vertical span is set to -1, it is taken to
573 // mean that it spans the extent of the CellLayout
Adam Cohend22015c2010-07-26 22:02:18 -0700574 if (lp.cellHSpan < 0) lp.cellHSpan = mCountX;
575 if (lp.cellVSpan < 0) lp.cellVSpan = mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800576
Winson Chungaafa03c2010-06-11 17:34:16 -0700577 child.setId(childId);
Tony Wickhama0628cc2015-10-14 15:23:04 -0700578 if (LOGD) {
579 Log.d(TAG, "Adding view to ShortcutsAndWidgetsContainer: " + child);
580 }
Sunny Goyalf7a29e82015-04-24 15:20:43 -0700581 mShortcutsAndWidgets.addView(child, index, lp);
Michael Jurkadee05892010-07-27 10:01:56 -0700582
Michael Jurkaf3ca3ab2010-10-20 17:08:24 -0700583 if (markCells) markCellsAsOccupiedForView(child);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700584
Winson Chungaafa03c2010-06-11 17:34:16 -0700585 return true;
586 }
587 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800588 }
Michael Jurka3e7c7632010-10-02 16:01:03 -0700589
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800590 @Override
Michael Jurka0280c3b2010-09-17 15:00:07 -0700591 public void removeAllViews() {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -0700592 mOccupied.clear();
Michael Jurkaa52570f2012-03-20 03:18:20 -0700593 mShortcutsAndWidgets.removeAllViews();
Michael Jurka0280c3b2010-09-17 15:00:07 -0700594 }
595
596 @Override
597 public void removeAllViewsInLayout() {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700598 if (mShortcutsAndWidgets.getChildCount() > 0) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -0700599 mOccupied.clear();
Michael Jurkaa52570f2012-03-20 03:18:20 -0700600 mShortcutsAndWidgets.removeAllViewsInLayout();
Michael Jurka7cfc2822011-08-02 20:19:24 -0700601 }
Michael Jurka0280c3b2010-09-17 15:00:07 -0700602 }
603
604 @Override
605 public void removeView(View view) {
606 markCellsAsUnoccupiedForView(view);
Michael Jurkaa52570f2012-03-20 03:18:20 -0700607 mShortcutsAndWidgets.removeView(view);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700608 }
609
610 @Override
611 public void removeViewAt(int index) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700612 markCellsAsUnoccupiedForView(mShortcutsAndWidgets.getChildAt(index));
613 mShortcutsAndWidgets.removeViewAt(index);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700614 }
615
616 @Override
617 public void removeViewInLayout(View view) {
618 markCellsAsUnoccupiedForView(view);
Michael Jurkaa52570f2012-03-20 03:18:20 -0700619 mShortcutsAndWidgets.removeViewInLayout(view);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700620 }
621
622 @Override
623 public void removeViews(int start, int count) {
624 for (int i = start; i < start + count; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700625 markCellsAsUnoccupiedForView(mShortcutsAndWidgets.getChildAt(i));
Michael Jurka0280c3b2010-09-17 15:00:07 -0700626 }
Michael Jurkaa52570f2012-03-20 03:18:20 -0700627 mShortcutsAndWidgets.removeViews(start, count);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700628 }
629
630 @Override
631 public void removeViewsInLayout(int start, int count) {
632 for (int i = start; i < start + count; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700633 markCellsAsUnoccupiedForView(mShortcutsAndWidgets.getChildAt(i));
Michael Jurka0280c3b2010-09-17 15:00:07 -0700634 }
Michael Jurkaa52570f2012-03-20 03:18:20 -0700635 mShortcutsAndWidgets.removeViewsInLayout(start, count);
Michael Jurkaabded662011-03-04 12:06:57 -0800636 }
637
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700638 /**
Winson Chungaafa03c2010-06-11 17:34:16 -0700639 * Given a point, return the cell that strictly encloses that point
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800640 * @param x X coordinate of the point
641 * @param y Y coordinate of the point
642 * @param result Array of 2 ints to hold the x and y coordinate of the cell
643 */
Sunny Goyale9b651e2015-04-24 11:44:51 -0700644 public void pointToCellExact(int x, int y, int[] result) {
Winson Chung4b825dcd2011-06-19 12:41:22 -0700645 final int hStartPadding = getPaddingLeft();
646 final int vStartPadding = getPaddingTop();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800647
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530648 result[0] = (x - hStartPadding) / mCellWidth;
649 result[1] = (y - vStartPadding) / mCellHeight;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800650
Adam Cohend22015c2010-07-26 22:02:18 -0700651 final int xAxis = mCountX;
652 final int yAxis = mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800653
654 if (result[0] < 0) result[0] = 0;
655 if (result[0] >= xAxis) result[0] = xAxis - 1;
656 if (result[1] < 0) result[1] = 0;
657 if (result[1] >= yAxis) result[1] = yAxis - 1;
658 }
Winson Chungaafa03c2010-06-11 17:34:16 -0700659
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800660 /**
661 * Given a point, return the cell that most closely encloses that point
662 * @param x X coordinate of the point
663 * @param y Y coordinate of the point
664 * @param result Array of 2 ints to hold the x and y coordinate of the cell
665 */
666 void pointToCellRounded(int x, int y, int[] result) {
667 pointToCellExact(x + (mCellWidth / 2), y + (mCellHeight / 2), result);
668 }
669
670 /**
671 * Given a cell coordinate, return the point that represents the upper left corner of that cell
Winson Chungaafa03c2010-06-11 17:34:16 -0700672 *
673 * @param cellX X coordinate of the cell
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800674 * @param cellY Y coordinate of the cell
Winson Chungaafa03c2010-06-11 17:34:16 -0700675 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800676 * @param result Array of 2 ints to hold the x and y coordinate of the point
677 */
678 void cellToPoint(int cellX, int cellY, int[] result) {
Winson Chung4b825dcd2011-06-19 12:41:22 -0700679 final int hStartPadding = getPaddingLeft();
680 final int vStartPadding = getPaddingTop();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800681
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530682 result[0] = hStartPadding + cellX * mCellWidth;
683 result[1] = vStartPadding + cellY * mCellHeight;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800684 }
685
Adam Cohene3e27a82011-04-15 12:07:39 -0700686 /**
Adam Cohen482ed822012-03-02 14:15:13 -0800687 * Given a cell coordinate, return the point that represents the center of the cell
Adam Cohene3e27a82011-04-15 12:07:39 -0700688 *
689 * @param cellX X coordinate of the cell
690 * @param cellY Y coordinate of the cell
691 *
692 * @param result Array of 2 ints to hold the x and y coordinate of the point
693 */
694 void cellToCenterPoint(int cellX, int cellY, int[] result) {
Adam Cohen47a876d2012-03-19 13:21:41 -0700695 regionToCenterPoint(cellX, cellY, 1, 1, result);
696 }
697
698 /**
699 * Given a cell coordinate and span return the point that represents the center of the regio
700 *
701 * @param cellX X coordinate of the cell
702 * @param cellY Y coordinate of the cell
703 *
704 * @param result Array of 2 ints to hold the x and y coordinate of the point
705 */
706 void regionToCenterPoint(int cellX, int cellY, int spanX, int spanY, int[] result) {
Winson Chung4b825dcd2011-06-19 12:41:22 -0700707 final int hStartPadding = getPaddingLeft();
708 final int vStartPadding = getPaddingTop();
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530709 result[0] = hStartPadding + cellX * mCellWidth + (spanX * mCellWidth) / 2;
710 result[1] = vStartPadding + cellY * mCellHeight + (spanY * mCellHeight) / 2;
Adam Cohene3e27a82011-04-15 12:07:39 -0700711 }
712
Adam Cohen19f37922012-03-21 11:59:11 -0700713 /**
714 * Given a cell coordinate and span fills out a corresponding pixel rect
715 *
716 * @param cellX X coordinate of the cell
717 * @param cellY Y coordinate of the cell
718 * @param result Rect in which to write the result
719 */
720 void regionToRect(int cellX, int cellY, int spanX, int spanY, Rect result) {
721 final int hStartPadding = getPaddingLeft();
722 final int vStartPadding = getPaddingTop();
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530723 final int left = hStartPadding + cellX * mCellWidth;
724 final int top = vStartPadding + cellY * mCellHeight;
725 result.set(left, top, left + (spanX * mCellWidth), top + (spanY * mCellHeight));
Adam Cohen19f37922012-03-21 11:59:11 -0700726 }
727
Adam Cohen482ed822012-03-02 14:15:13 -0800728 public float getDistanceFromCell(float x, float y, int[] cell) {
729 cellToCenterPoint(cell[0], cell[1], mTmpPoint);
Sunny Goyalf7a29e82015-04-24 15:20:43 -0700730 return (float) Math.hypot(x - mTmpPoint[0], y - mTmpPoint[1]);
Adam Cohen482ed822012-03-02 14:15:13 -0800731 }
732
Adam Cohenf9c184a2016-01-15 16:47:43 -0800733 public int getCellWidth() {
Romain Guy84f296c2009-11-04 15:00:44 -0800734 return mCellWidth;
735 }
736
Sunny Goyal0b754e52017-08-07 07:42:45 -0700737 public int getCellHeight() {
Romain Guy84f296c2009-11-04 15:00:44 -0800738 return mCellHeight;
739 }
740
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700741 public void setFixedSize(int width, int height) {
742 mFixedWidth = width;
743 mFixedHeight = height;
744 }
745
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800746 @Override
747 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800748 int widthSpecMode = MeasureSpec.getMode(widthMeasureSpec);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800749 int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec);
Winson Chung5f8afe62013-08-12 16:19:28 -0700750 int widthSize = MeasureSpec.getSize(widthMeasureSpec);
751 int heightSize = MeasureSpec.getSize(heightMeasureSpec);
Winson Chung2d75f122013-09-23 16:53:31 -0700752 int childWidthSize = widthSize - (getPaddingLeft() + getPaddingRight());
753 int childHeightSize = heightSize - (getPaddingTop() + getPaddingBottom());
Sunny Goyalae6e3182019-04-30 12:04:37 -0700754
755 mShortcutsAndWidgets.setRotation(mRotationMode.surfaceRotation);
756 if (mRotationMode.isTransposed) {
757 int tmp = childWidthSize;
758 childWidthSize = childHeightSize;
759 childHeightSize = tmp;
760 }
761
Winson Chung11a1a532013-09-13 11:14:45 -0700762 if (mFixedCellWidth < 0 || mFixedCellHeight < 0) {
Sunny Goyalc6205602015-05-21 20:46:33 -0700763 int cw = DeviceProfile.calculateCellWidth(childWidthSize, mCountX);
764 int ch = DeviceProfile.calculateCellHeight(childHeightSize, mCountY);
Winson Chung11a1a532013-09-13 11:14:45 -0700765 if (cw != mCellWidth || ch != mCellHeight) {
766 mCellWidth = cw;
767 mCellHeight = ch;
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530768 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mCountX, mCountY);
Winson Chung11a1a532013-09-13 11:14:45 -0700769 }
Winson Chung5f8afe62013-08-12 16:19:28 -0700770 }
Winson Chungaafa03c2010-06-11 17:34:16 -0700771
Winson Chung2d75f122013-09-23 16:53:31 -0700772 int newWidth = childWidthSize;
773 int newHeight = childHeightSize;
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700774 if (mFixedWidth > 0 && mFixedHeight > 0) {
775 newWidth = mFixedWidth;
776 newHeight = mFixedHeight;
777 } else if (widthSpecMode == MeasureSpec.UNSPECIFIED || heightSpecMode == MeasureSpec.UNSPECIFIED) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800778 throw new RuntimeException("CellLayout cannot have UNSPECIFIED dimensions");
779 }
780
Sunny Goyal4fe5a372015-05-14 19:55:10 -0700781 mShortcutsAndWidgets.measure(
782 MeasureSpec.makeMeasureSpec(newWidth, MeasureSpec.EXACTLY),
783 MeasureSpec.makeMeasureSpec(newHeight, MeasureSpec.EXACTLY));
784
785 int maxWidth = mShortcutsAndWidgets.getMeasuredWidth();
786 int maxHeight = mShortcutsAndWidgets.getMeasuredHeight();
Winson Chung2d75f122013-09-23 16:53:31 -0700787 if (mFixedWidth > 0 && mFixedHeight > 0) {
788 setMeasuredDimension(maxWidth, maxHeight);
789 } else {
790 setMeasuredDimension(widthSize, heightSize);
791 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800792 }
793
794 @Override
Michael Jurka28750fb2010-09-24 17:43:49 -0700795 protected void onLayout(boolean changed, int l, int t, int r, int b) {
Tony Wickham26b01422015-11-10 14:44:32 -0800796 int left = getPaddingLeft();
Sunny Goyal7ce471b2017-08-02 03:37:39 -0700797 left += (int) Math.ceil(getUnusedHorizontalSpace() / 2f);
Sunny Goyal7c786f72016-06-01 14:08:21 -0700798 int right = r - l - getPaddingRight();
Sunny Goyal7ce471b2017-08-02 03:37:39 -0700799 right -= (int) Math.ceil(getUnusedHorizontalSpace() / 2f);
Sunny Goyal7c786f72016-06-01 14:08:21 -0700800
Winson Chung38848ca2013-10-08 12:03:44 -0700801 int top = getPaddingTop();
Sunny Goyal7c786f72016-06-01 14:08:21 -0700802 int bottom = b - t - getPaddingBottom();
Sunny Goyal4fe5a372015-05-14 19:55:10 -0700803
Sunny Goyal7c786f72016-06-01 14:08:21 -0700804 // Expand the background drawing bounds by the padding baked into the background drawable
805 mBackground.getPadding(mTempRect);
806 mBackground.setBounds(
Jon Miranda28032002017-07-13 16:18:56 -0700807 left - mTempRect.left - getPaddingLeft(),
808 top - mTempRect.top - getPaddingTop(),
809 right + mTempRect.right + getPaddingRight(),
810 bottom + mTempRect.bottom + getPaddingBottom());
Sunny Goyalae6e3182019-04-30 12:04:37 -0700811
812 if (mRotationMode.isTransposed) {
813 int halfW = mShortcutsAndWidgets.getMeasuredWidth() / 2;
814 int halfH = mShortcutsAndWidgets.getMeasuredHeight() / 2;
815 int cX = (left + right) / 2;
816 int cY = (top + bottom) / 2;
817 mShortcutsAndWidgets.layout(cX - halfW, cY - halfH, cX + halfW, cY + halfH);
818 } else {
819 mShortcutsAndWidgets.layout(left, top, right, bottom);
820 }
Sunny Goyal7c786f72016-06-01 14:08:21 -0700821 }
822
Tony Wickhama501d492015-11-03 18:05:01 -0800823 /**
824 * Returns the amount of space left over after subtracting padding and cells. This space will be
825 * very small, a few pixels at most, and is a result of rounding down when calculating the cell
826 * width in {@link DeviceProfile#calculateCellWidth(int, int)}.
827 */
828 public int getUnusedHorizontalSpace() {
Sunny Goyal41d51a02019-05-14 09:44:34 -0700829 return (mRotationMode.isTransposed ? getMeasuredHeight() : getMeasuredWidth())
830 - getPaddingLeft() - getPaddingRight() - (mCountX * mCellWidth);
Tony Wickhama501d492015-11-03 18:05:01 -0800831 }
832
Sunny Goyalaeb16432017-10-16 11:46:41 -0700833 public Drawable getScrimBackground() {
834 return mBackground;
Michael Jurkadee05892010-07-27 10:01:56 -0700835 }
836
Sunny Goyal2805e632015-05-20 15:35:32 -0700837 @Override
838 protected boolean verifyDrawable(Drawable who) {
Sunny Goyal7ce471b2017-08-02 03:37:39 -0700839 return super.verifyDrawable(who) || (who == mBackground);
Sunny Goyal2805e632015-05-20 15:35:32 -0700840 }
841
Michael Jurkaa52570f2012-03-20 03:18:20 -0700842 public ShortcutAndWidgetContainer getShortcutsAndWidgets() {
Sunny Goyaldcbcc862014-08-12 15:58:36 -0700843 return mShortcutsAndWidgets;
Michael Jurkaa52570f2012-03-20 03:18:20 -0700844 }
845
Patrick Dubroy440c3602010-07-13 17:50:32 -0700846 public View getChildAt(int x, int y) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700847 return mShortcutsAndWidgets.getChildAt(x, y);
Patrick Dubroy440c3602010-07-13 17:50:32 -0700848 }
849
Adam Cohen76fc0852011-06-17 13:26:23 -0700850 public boolean animateChildToPosition(final View child, int cellX, int cellY, int duration,
Adam Cohen482ed822012-03-02 14:15:13 -0800851 int delay, boolean permanent, boolean adjustOccupied) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700852 ShortcutAndWidgetContainer clc = getShortcutsAndWidgets();
Adam Cohen482ed822012-03-02 14:15:13 -0800853
Adam Cohen19f37922012-03-21 11:59:11 -0700854 if (clc.indexOfChild(child) != -1) {
Adam Cohenbfbfd262011-06-13 16:55:12 -0700855 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
856 final ItemInfo info = (ItemInfo) child.getTag();
857
858 // We cancel any existing animations
859 if (mReorderAnimators.containsKey(lp)) {
860 mReorderAnimators.get(lp).cancel();
861 mReorderAnimators.remove(lp);
862 }
863
Adam Cohen482ed822012-03-02 14:15:13 -0800864 final int oldX = lp.x;
865 final int oldY = lp.y;
866 if (adjustOccupied) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -0700867 GridOccupancy occupied = permanent ? mOccupied : mTmpOccupied;
868 occupied.markCells(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan, false);
869 occupied.markCells(cellX, cellY, lp.cellHSpan, lp.cellVSpan, true);
Adam Cohen482ed822012-03-02 14:15:13 -0800870 }
Adam Cohenbfbfd262011-06-13 16:55:12 -0700871 lp.isLockedToGrid = true;
Adam Cohen482ed822012-03-02 14:15:13 -0800872 if (permanent) {
873 lp.cellX = info.cellX = cellX;
874 lp.cellY = info.cellY = cellY;
875 } else {
876 lp.tmpCellX = cellX;
877 lp.tmpCellY = cellY;
878 }
Jon Mirandae96798e2016-12-07 12:10:44 -0800879 clc.setupLp(child);
Adam Cohenbfbfd262011-06-13 16:55:12 -0700880 lp.isLockedToGrid = false;
Adam Cohen482ed822012-03-02 14:15:13 -0800881 final int newX = lp.x;
882 final int newY = lp.y;
Adam Cohenbfbfd262011-06-13 16:55:12 -0700883
Adam Cohen76fc0852011-06-17 13:26:23 -0700884 lp.x = oldX;
885 lp.y = oldY;
Adam Cohen76fc0852011-06-17 13:26:23 -0700886
Adam Cohen482ed822012-03-02 14:15:13 -0800887 // Exit early if we're not actually moving the view
888 if (oldX == newX && oldY == newY) {
889 lp.isLockedToGrid = true;
890 return true;
891 }
892
Sunny Goyal849c6a22018-08-08 16:33:46 -0700893 ValueAnimator va = ValueAnimator.ofFloat(0f, 1f);
Adam Cohen482ed822012-03-02 14:15:13 -0800894 va.setDuration(duration);
895 mReorderAnimators.put(lp, va);
896
897 va.addUpdateListener(new AnimatorUpdateListener() {
898 @Override
Adam Cohenbfbfd262011-06-13 16:55:12 -0700899 public void onAnimationUpdate(ValueAnimator animation) {
Jon Mirandae96798e2016-12-07 12:10:44 -0800900 float r = (Float) animation.getAnimatedValue();
Adam Cohen19f37922012-03-21 11:59:11 -0700901 lp.x = (int) ((1 - r) * oldX + r * newX);
902 lp.y = (int) ((1 - r) * oldY + r * newY);
Adam Cohen6b8a02d2012-03-22 15:13:40 -0700903 child.requestLayout();
Adam Cohenbfbfd262011-06-13 16:55:12 -0700904 }
905 });
Adam Cohen482ed822012-03-02 14:15:13 -0800906 va.addListener(new AnimatorListenerAdapter() {
Adam Cohenbfbfd262011-06-13 16:55:12 -0700907 boolean cancelled = false;
908 public void onAnimationEnd(Animator animation) {
909 // If the animation was cancelled, it means that another animation
910 // has interrupted this one, and we don't want to lock the item into
911 // place just yet.
912 if (!cancelled) {
913 lp.isLockedToGrid = true;
Adam Cohen482ed822012-03-02 14:15:13 -0800914 child.requestLayout();
Adam Cohenbfbfd262011-06-13 16:55:12 -0700915 }
916 if (mReorderAnimators.containsKey(lp)) {
917 mReorderAnimators.remove(lp);
918 }
919 }
920 public void onAnimationCancel(Animator animation) {
921 cancelled = true;
922 }
923 });
Adam Cohen482ed822012-03-02 14:15:13 -0800924 va.setStartDelay(delay);
925 va.start();
Adam Cohenbfbfd262011-06-13 16:55:12 -0700926 return true;
927 }
928 return false;
929 }
930
Sunny Goyal06e21a22016-08-11 16:02:02 -0700931 void visualizeDropLocation(View v, DragPreviewProvider outlineProvider, int cellX, int cellY,
932 int spanX, int spanY, boolean resize, DropTarget.DragObject dragObject) {
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -0700933 final int oldDragCellX = mDragCell[0];
934 final int oldDragCellY = mDragCell[1];
Adam Cohen482ed822012-03-02 14:15:13 -0800935
Hyunyoung Song0de01172016-10-05 16:27:48 -0700936 if (outlineProvider == null || outlineProvider.generatedDragOutline == null) {
Adam Cohen2801caf2011-05-13 20:57:39 -0700937 return;
938 }
939
Hyunyoung Song0de01172016-10-05 16:27:48 -0700940 Bitmap dragOutline = outlineProvider.generatedDragOutline;
Adam Cohen482ed822012-03-02 14:15:13 -0800941 if (cellX != oldDragCellX || cellY != oldDragCellY) {
Sunny Goyale78e3d72015-09-24 11:23:31 -0700942 Point dragOffset = dragObject.dragView.getDragVisualizeOffset();
943 Rect dragRegion = dragObject.dragView.getDragRegion();
944
Adam Cohen482ed822012-03-02 14:15:13 -0800945 mDragCell[0] = cellX;
946 mDragCell[1] = cellY;
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700947
Joe Onorato4be866d2010-10-10 11:26:02 -0700948 final int oldIndex = mDragOutlineCurrent;
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -0700949 mDragOutlineAnims[oldIndex].animateOut();
950 mDragOutlineCurrent = (oldIndex + 1) % mDragOutlines.length;
Adam Cohend41fbf52012-02-16 23:53:59 -0800951 Rect r = mDragOutlines[mDragOutlineCurrent];
Sunny Goyal106bf642015-07-16 12:18:06 -0700952
Adam Cohend41fbf52012-02-16 23:53:59 -0800953 if (resize) {
Adam Cohen482ed822012-03-02 14:15:13 -0800954 cellToRect(cellX, cellY, spanX, spanY, r);
Jon Mirandae96798e2016-12-07 12:10:44 -0800955 if (v instanceof LauncherAppWidgetHostView) {
Sunny Goyalae6e3182019-04-30 12:04:37 -0700956 DeviceProfile profile = mActivity.getWallpaperDeviceProfile();
Jon Miranda6f6a06a2016-12-15 11:24:18 -0800957 Utilities.shrinkRect(r, profile.appWidgetScale.x, profile.appWidgetScale.y);
Jon Mirandae96798e2016-12-07 12:10:44 -0800958 }
Sunny Goyal106bf642015-07-16 12:18:06 -0700959 } else {
960 // Find the top left corner of the rect the object will occupy
961 final int[] topLeft = mTmpPoint;
962 cellToPoint(cellX, cellY, topLeft);
963
964 int left = topLeft[0];
965 int top = topLeft[1];
966
967 if (v != null && dragOffset == null) {
968 // When drawing the drag outline, it did not account for margin offsets
969 // added by the view's parent.
970 MarginLayoutParams lp = (MarginLayoutParams) v.getLayoutParams();
971 left += lp.leftMargin;
972 top += lp.topMargin;
973
974 // Offsets due to the size difference between the View and the dragOutline.
975 // There is a size difference to account for the outer blur, which may lie
976 // outside the bounds of the view.
Jon Mirandaf7ff3fe2016-12-05 12:04:44 -0800977 top += ((mCellHeight * spanY) - dragOutline.getHeight()) / 2;
Sunny Goyal106bf642015-07-16 12:18:06 -0700978 // We center about the x axis
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530979 left += ((mCellWidth * spanX) - dragOutline.getWidth()) / 2;
Sunny Goyal106bf642015-07-16 12:18:06 -0700980 } else {
981 if (dragOffset != null && dragRegion != null) {
982 // Center the drag region *horizontally* in the cell and apply a drag
983 // outline offset
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530984 left += dragOffset.x + ((mCellWidth * spanX) - dragRegion.width()) / 2;
Sunny Goyal106bf642015-07-16 12:18:06 -0700985 int cHeight = getShortcutsAndWidgets().getCellContentHeight();
986 int cellPaddingY = (int) Math.max(0, ((mCellHeight - cHeight) / 2f));
987 top += dragOffset.y + cellPaddingY;
988 } else {
989 // Center the drag outline in the cell
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530990 left += ((mCellWidth * spanX) - dragOutline.getWidth()) / 2;
991 top += ((mCellHeight * spanY) - dragOutline.getHeight()) / 2;
Sunny Goyal106bf642015-07-16 12:18:06 -0700992 }
993 }
994 r.set(left, top, left + dragOutline.getWidth(), top + dragOutline.getHeight());
Adam Cohend41fbf52012-02-16 23:53:59 -0800995 }
Winson Chung150fbab2010-09-29 17:14:26 -0700996
Jon Miranda6f6a06a2016-12-15 11:24:18 -0800997 Utilities.scaleRectAboutCenter(r, mChildScale);
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -0700998 mDragOutlineAnims[mDragOutlineCurrent].setTag(dragOutline);
999 mDragOutlineAnims[mDragOutlineCurrent].animateIn();
Sunny Goyale78e3d72015-09-24 11:23:31 -07001000
1001 if (dragObject.stateAnnouncer != null) {
Sunny Goyalc13403c2016-11-18 23:44:48 -08001002 dragObject.stateAnnouncer.announce(getItemMoveDescription(cellX, cellY));
Sunny Goyale78e3d72015-09-24 11:23:31 -07001003 }
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07001004 }
1005 }
1006
Sunny Goyal726bee72018-03-05 12:54:24 -08001007 @SuppressLint("StringFormatMatches")
Sunny Goyalc13403c2016-11-18 23:44:48 -08001008 public String getItemMoveDescription(int cellX, int cellY) {
1009 if (mContainerType == HOTSEAT) {
1010 return getContext().getString(R.string.move_to_hotseat_position,
1011 Math.max(cellX, cellY) + 1);
1012 } else {
1013 return getContext().getString(R.string.move_to_empty_cell,
1014 cellY + 1, cellX + 1);
1015 }
1016 }
1017
Adam Cohene0310962011-04-18 16:15:31 -07001018 public void clearDragOutlines() {
1019 final int oldIndex = mDragOutlineCurrent;
1020 mDragOutlineAnims[oldIndex].animateOut();
Adam Cohend41fbf52012-02-16 23:53:59 -08001021 mDragCell[0] = mDragCell[1] = -1;
Adam Cohene0310962011-04-18 16:15:31 -07001022 }
1023
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001024 /**
Jeff Sharkey70864282009-04-07 21:08:40 -07001025 * Find a vacant area that will fit the given bounds nearest the requested
1026 * cell location. Uses Euclidean distance to score multiple vacant areas.
Winson Chungaafa03c2010-06-11 17:34:16 -07001027 *
Romain Guy51afc022009-05-04 18:03:43 -07001028 * @param pixelX The X location at which you want to search for a vacant area.
1029 * @param pixelY The Y location at which you want to search for a vacant area.
Adam Cohend41fbf52012-02-16 23:53:59 -08001030 * @param minSpanX The minimum horizontal span required
1031 * @param minSpanY The minimum vertical span required
1032 * @param spanX Horizontal span of the object.
1033 * @param spanY Vertical span of the object.
1034 * @param result Array in which to place the result, or null (in which case a new array will
1035 * be allocated)
1036 * @return The X, Y cell of a vacant area that can contain this object,
1037 * nearest the requested location.
1038 */
1039 int[] findNearestVacantArea(int pixelX, int pixelY, int minSpanX, int minSpanY, int spanX,
1040 int spanY, int[] result, int[] resultSpan) {
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001041 return findNearestArea(pixelX, pixelY, minSpanX, minSpanY, spanX, spanY, true,
Adam Cohend41fbf52012-02-16 23:53:59 -08001042 result, resultSpan);
1043 }
1044
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001045 private final Stack<Rect> mTempRectStack = new Stack<>();
Adam Cohend41fbf52012-02-16 23:53:59 -08001046 private void lazyInitTempRectStack() {
1047 if (mTempRectStack.isEmpty()) {
1048 for (int i = 0; i < mCountX * mCountY; i++) {
1049 mTempRectStack.push(new Rect());
1050 }
1051 }
1052 }
Adam Cohen482ed822012-03-02 14:15:13 -08001053
Adam Cohend41fbf52012-02-16 23:53:59 -08001054 private void recycleTempRects(Stack<Rect> used) {
1055 while (!used.isEmpty()) {
1056 mTempRectStack.push(used.pop());
1057 }
1058 }
1059
1060 /**
1061 * Find a vacant area that will fit the given bounds nearest the requested
1062 * cell location. Uses Euclidean distance to score multiple vacant areas.
1063 *
1064 * @param pixelX The X location at which you want to search for a vacant area.
1065 * @param pixelY The Y location at which you want to search for a vacant area.
1066 * @param minSpanX The minimum horizontal span required
1067 * @param minSpanY The minimum vertical span required
1068 * @param spanX Horizontal span of the object.
1069 * @param spanY Vertical span of the object.
1070 * @param ignoreOccupied If true, the result can be an occupied cell
1071 * @param result Array in which to place the result, or null (in which case a new array will
1072 * be allocated)
1073 * @return The X, Y cell of a vacant area that can contain this object,
1074 * nearest the requested location.
1075 */
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001076 private int[] findNearestArea(int pixelX, int pixelY, int minSpanX, int minSpanY, int spanX,
1077 int spanY, boolean ignoreOccupied, int[] result, int[] resultSpan) {
Adam Cohend41fbf52012-02-16 23:53:59 -08001078 lazyInitTempRectStack();
Michael Jurkac6ee42e2010-09-30 12:04:50 -07001079
Adam Cohene3e27a82011-04-15 12:07:39 -07001080 // For items with a spanX / spanY > 1, the passed in point (pixelX, pixelY) corresponds
1081 // to the center of the item, but we are searching based on the top-left cell, so
1082 // we translate the point over to correspond to the top-left.
Sunny Goyalaa8a8712016-11-20 15:26:01 +05301083 pixelX -= mCellWidth * (spanX - 1) / 2f;
1084 pixelY -= mCellHeight * (spanY - 1) / 2f;
Adam Cohene3e27a82011-04-15 12:07:39 -07001085
Jeff Sharkey70864282009-04-07 21:08:40 -07001086 // Keep track of best-scoring drop area
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001087 final int[] bestXY = result != null ? result : new int[2];
Jeff Sharkey70864282009-04-07 21:08:40 -07001088 double bestDistance = Double.MAX_VALUE;
Adam Cohend41fbf52012-02-16 23:53:59 -08001089 final Rect bestRect = new Rect(-1, -1, -1, -1);
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001090 final Stack<Rect> validRegions = new Stack<>();
Winson Chungaafa03c2010-06-11 17:34:16 -07001091
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001092 final int countX = mCountX;
1093 final int countY = mCountY;
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001094
Adam Cohend41fbf52012-02-16 23:53:59 -08001095 if (minSpanX <= 0 || minSpanY <= 0 || spanX <= 0 || spanY <= 0 ||
1096 spanX < minSpanX || spanY < minSpanY) {
1097 return bestXY;
1098 }
1099
1100 for (int y = 0; y < countY - (minSpanY - 1); y++) {
Michael Jurkac28de512010-08-13 11:27:44 -07001101 inner:
Adam Cohend41fbf52012-02-16 23:53:59 -08001102 for (int x = 0; x < countX - (minSpanX - 1); x++) {
1103 int ySize = -1;
1104 int xSize = -1;
Adam Cohendf035382011-04-11 17:22:04 -07001105 if (ignoreOccupied) {
Adam Cohend41fbf52012-02-16 23:53:59 -08001106 // First, let's see if this thing fits anywhere
1107 for (int i = 0; i < minSpanX; i++) {
1108 for (int j = 0; j < minSpanY; j++) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001109 if (mOccupied.cells[x + i][y + j]) {
Adam Cohendf035382011-04-11 17:22:04 -07001110 continue inner;
1111 }
Michael Jurkac28de512010-08-13 11:27:44 -07001112 }
1113 }
Adam Cohend41fbf52012-02-16 23:53:59 -08001114 xSize = minSpanX;
1115 ySize = minSpanY;
1116
1117 // We know that the item will fit at _some_ acceptable size, now let's see
1118 // how big we can make it. We'll alternate between incrementing x and y spans
1119 // until we hit a limit.
1120 boolean incX = true;
1121 boolean hitMaxX = xSize >= spanX;
1122 boolean hitMaxY = ySize >= spanY;
1123 while (!(hitMaxX && hitMaxY)) {
1124 if (incX && !hitMaxX) {
1125 for (int j = 0; j < ySize; j++) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001126 if (x + xSize > countX -1 || mOccupied.cells[x + xSize][y + j]) {
Adam Cohend41fbf52012-02-16 23:53:59 -08001127 // We can't move out horizontally
1128 hitMaxX = true;
1129 }
1130 }
1131 if (!hitMaxX) {
1132 xSize++;
1133 }
1134 } else if (!hitMaxY) {
1135 for (int i = 0; i < xSize; i++) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001136 if (y + ySize > countY - 1 || mOccupied.cells[x + i][y + ySize]) {
Adam Cohend41fbf52012-02-16 23:53:59 -08001137 // We can't move out vertically
1138 hitMaxY = true;
1139 }
1140 }
1141 if (!hitMaxY) {
1142 ySize++;
1143 }
1144 }
1145 hitMaxX |= xSize >= spanX;
1146 hitMaxY |= ySize >= spanY;
1147 incX = !incX;
1148 }
1149 incX = true;
1150 hitMaxX = xSize >= spanX;
1151 hitMaxY = ySize >= spanY;
Michael Jurkac28de512010-08-13 11:27:44 -07001152 }
Sunny Goyal2805e632015-05-20 15:35:32 -07001153 final int[] cellXY = mTmpPoint;
Adam Cohene3e27a82011-04-15 12:07:39 -07001154 cellToCenterPoint(x, y, cellXY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001155
Adam Cohend41fbf52012-02-16 23:53:59 -08001156 // We verify that the current rect is not a sub-rect of any of our previous
1157 // candidates. In this case, the current rect is disqualified in favour of the
1158 // containing rect.
1159 Rect currentRect = mTempRectStack.pop();
1160 currentRect.set(x, y, x + xSize, y + ySize);
1161 boolean contained = false;
1162 for (Rect r : validRegions) {
1163 if (r.contains(currentRect)) {
1164 contained = true;
1165 break;
1166 }
1167 }
1168 validRegions.push(currentRect);
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001169 double distance = Math.hypot(cellXY[0] - pixelX, cellXY[1] - pixelY);
Adam Cohen482ed822012-03-02 14:15:13 -08001170
Adam Cohend41fbf52012-02-16 23:53:59 -08001171 if ((distance <= bestDistance && !contained) ||
1172 currentRect.contains(bestRect)) {
Michael Jurkac28de512010-08-13 11:27:44 -07001173 bestDistance = distance;
1174 bestXY[0] = x;
1175 bestXY[1] = y;
Adam Cohend41fbf52012-02-16 23:53:59 -08001176 if (resultSpan != null) {
1177 resultSpan[0] = xSize;
1178 resultSpan[1] = ySize;
1179 }
1180 bestRect.set(currentRect);
Michael Jurkac28de512010-08-13 11:27:44 -07001181 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001182 }
1183 }
1184
Adam Cohenc0dcf592011-06-01 15:30:43 -07001185 // Return -1, -1 if no suitable location found
1186 if (bestDistance == Double.MAX_VALUE) {
1187 bestXY[0] = -1;
1188 bestXY[1] = -1;
Jeff Sharkey70864282009-04-07 21:08:40 -07001189 }
Adam Cohend41fbf52012-02-16 23:53:59 -08001190 recycleTempRects(validRegions);
Adam Cohenc0dcf592011-06-01 15:30:43 -07001191 return bestXY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001192 }
Winson Chungaafa03c2010-06-11 17:34:16 -07001193
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001194 /**
Adam Cohen482ed822012-03-02 14:15:13 -08001195 * Find a vacant area that will fit the given bounds nearest the requested
1196 * cell location, and will also weigh in a suggested direction vector of the
1197 * desired location. This method computers distance based on unit grid distances,
1198 * not pixel distances.
1199 *
Adam Cohen47a876d2012-03-19 13:21:41 -07001200 * @param cellX The X cell nearest to which you want to search for a vacant area.
1201 * @param cellY The Y cell nearest which you want to search for a vacant area.
Adam Cohen482ed822012-03-02 14:15:13 -08001202 * @param spanX Horizontal span of the object.
1203 * @param spanY Vertical span of the object.
Adam Cohen47a876d2012-03-19 13:21:41 -07001204 * @param direction The favored direction in which the views should move from x, y
Sunny Goyal9eba1fd2015-10-16 08:58:57 -07001205 * @param occupied The array which represents which cells in the CellLayout are occupied
Adam Cohen47a876d2012-03-19 13:21:41 -07001206 * @param blockOccupied The array which represents which cells in the specified block (cellX,
Winson Chung5f8afe62013-08-12 16:19:28 -07001207 * cellY, spanX, spanY) are occupied. This is used when try to move a group of views.
Adam Cohen482ed822012-03-02 14:15:13 -08001208 * @param result Array in which to place the result, or null (in which case a new array will
1209 * be allocated)
1210 * @return The X, Y cell of a vacant area that can contain this object,
1211 * nearest the requested location.
1212 */
1213 private int[] findNearestArea(int cellX, int cellY, int spanX, int spanY, int[] direction,
Adam Cohen47a876d2012-03-19 13:21:41 -07001214 boolean[][] occupied, boolean blockOccupied[][], int[] result) {
Adam Cohen482ed822012-03-02 14:15:13 -08001215 // Keep track of best-scoring drop area
1216 final int[] bestXY = result != null ? result : new int[2];
1217 float bestDistance = Float.MAX_VALUE;
1218 int bestDirectionScore = Integer.MIN_VALUE;
1219
1220 final int countX = mCountX;
1221 final int countY = mCountY;
1222
1223 for (int y = 0; y < countY - (spanY - 1); y++) {
1224 inner:
1225 for (int x = 0; x < countX - (spanX - 1); x++) {
1226 // First, let's see if this thing fits anywhere
1227 for (int i = 0; i < spanX; i++) {
1228 for (int j = 0; j < spanY; j++) {
Adam Cohen47a876d2012-03-19 13:21:41 -07001229 if (occupied[x + i][y + j] && (blockOccupied == null || blockOccupied[i][j])) {
Adam Cohen482ed822012-03-02 14:15:13 -08001230 continue inner;
1231 }
1232 }
1233 }
1234
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001235 float distance = (float) Math.hypot(x - cellX, y - cellY);
Adam Cohen482ed822012-03-02 14:15:13 -08001236 int[] curDirection = mTmpPoint;
Adam Cohen47a876d2012-03-19 13:21:41 -07001237 computeDirectionVector(x - cellX, y - cellY, curDirection);
1238 // The direction score is just the dot product of the two candidate direction
1239 // and that passed in.
Adam Cohen482ed822012-03-02 14:15:13 -08001240 int curDirectionScore = direction[0] * curDirection[0] +
1241 direction[1] * curDirection[1];
Sunny Goyal8f90dcf2016-08-18 15:01:11 -07001242 if (Float.compare(distance, bestDistance) < 0 ||
1243 (Float.compare(distance, bestDistance) == 0
1244 && curDirectionScore > bestDirectionScore)) {
Adam Cohen482ed822012-03-02 14:15:13 -08001245 bestDistance = distance;
1246 bestDirectionScore = curDirectionScore;
1247 bestXY[0] = x;
1248 bestXY[1] = y;
1249 }
1250 }
1251 }
1252
1253 // Return -1, -1 if no suitable location found
1254 if (bestDistance == Float.MAX_VALUE) {
1255 bestXY[0] = -1;
1256 bestXY[1] = -1;
1257 }
1258 return bestXY;
1259 }
1260
1261 private boolean addViewToTempLocation(View v, Rect rectOccupiedByPotentialDrop,
Adam Cohen8baab352012-03-20 17:39:21 -07001262 int[] direction, ItemConfiguration currentState) {
1263 CellAndSpan c = currentState.map.get(v);
Adam Cohen482ed822012-03-02 14:15:13 -08001264 boolean success = false;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001265 mTmpOccupied.markCells(c, false);
1266 mTmpOccupied.markCells(rectOccupiedByPotentialDrop, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001267
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001268 findNearestArea(c.cellX, c.cellY, c.spanX, c.spanY, direction,
1269 mTmpOccupied.cells, null, mTempLocation);
Adam Cohen482ed822012-03-02 14:15:13 -08001270
1271 if (mTempLocation[0] >= 0 && mTempLocation[1] >= 0) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001272 c.cellX = mTempLocation[0];
1273 c.cellY = mTempLocation[1];
Adam Cohen482ed822012-03-02 14:15:13 -08001274 success = true;
Adam Cohen482ed822012-03-02 14:15:13 -08001275 }
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001276 mTmpOccupied.markCells(c, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001277 return success;
1278 }
1279
Adam Cohenf3900c22012-11-16 18:28:11 -08001280 /**
1281 * This helper class defines a cluster of views. It helps with defining complex edges
1282 * of the cluster and determining how those edges interact with other views. The edges
1283 * essentially define a fine-grained boundary around the cluster of views -- like a more
1284 * precise version of a bounding box.
1285 */
1286 private class ViewCluster {
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001287 final static int LEFT = 1 << 0;
1288 final static int TOP = 1 << 1;
1289 final static int RIGHT = 1 << 2;
1290 final static int BOTTOM = 1 << 3;
Adam Cohen47a876d2012-03-19 13:21:41 -07001291
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001292 final ArrayList<View> views;
1293 final ItemConfiguration config;
1294 final Rect boundingRect = new Rect();
Adam Cohen47a876d2012-03-19 13:21:41 -07001295
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001296 final int[] leftEdge = new int[mCountY];
1297 final int[] rightEdge = new int[mCountY];
1298 final int[] topEdge = new int[mCountX];
1299 final int[] bottomEdge = new int[mCountX];
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001300 int dirtyEdges;
1301 boolean boundingRectDirty;
Adam Cohenf3900c22012-11-16 18:28:11 -08001302
1303 @SuppressWarnings("unchecked")
1304 public ViewCluster(ArrayList<View> views, ItemConfiguration config) {
1305 this.views = (ArrayList<View>) views.clone();
1306 this.config = config;
1307 resetEdges();
Adam Cohen47a876d2012-03-19 13:21:41 -07001308 }
1309
Adam Cohenf3900c22012-11-16 18:28:11 -08001310 void resetEdges() {
1311 for (int i = 0; i < mCountX; i++) {
1312 topEdge[i] = -1;
1313 bottomEdge[i] = -1;
1314 }
1315 for (int i = 0; i < mCountY; i++) {
1316 leftEdge[i] = -1;
1317 rightEdge[i] = -1;
1318 }
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001319 dirtyEdges = LEFT | TOP | RIGHT | BOTTOM;
Adam Cohenf3900c22012-11-16 18:28:11 -08001320 boundingRectDirty = true;
1321 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001322
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001323 void computeEdge(int which) {
Adam Cohenf3900c22012-11-16 18:28:11 -08001324 int count = views.size();
1325 for (int i = 0; i < count; i++) {
1326 CellAndSpan cs = config.map.get(views.get(i));
1327 switch (which) {
1328 case LEFT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001329 int left = cs.cellX;
1330 for (int j = cs.cellY; j < cs.cellY + cs.spanY; j++) {
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001331 if (left < leftEdge[j] || leftEdge[j] < 0) {
1332 leftEdge[j] = left;
Adam Cohena56dc102012-07-13 13:41:42 -07001333 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001334 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001335 break;
1336 case RIGHT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001337 int right = cs.cellX + cs.spanX;
1338 for (int j = cs.cellY; j < cs.cellY + cs.spanY; j++) {
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001339 if (right > rightEdge[j]) {
1340 rightEdge[j] = right;
Adam Cohenf3900c22012-11-16 18:28:11 -08001341 }
1342 }
1343 break;
1344 case TOP:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001345 int top = cs.cellY;
1346 for (int j = cs.cellX; j < cs.cellX + cs.spanX; j++) {
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001347 if (top < topEdge[j] || topEdge[j] < 0) {
1348 topEdge[j] = top;
Adam Cohenf3900c22012-11-16 18:28:11 -08001349 }
1350 }
1351 break;
1352 case BOTTOM:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001353 int bottom = cs.cellY + cs.spanY;
1354 for (int j = cs.cellX; j < cs.cellX + cs.spanX; j++) {
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001355 if (bottom > bottomEdge[j]) {
1356 bottomEdge[j] = bottom;
Adam Cohenf3900c22012-11-16 18:28:11 -08001357 }
1358 }
1359 break;
Adam Cohen47a876d2012-03-19 13:21:41 -07001360 }
1361 }
1362 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001363
1364 boolean isViewTouchingEdge(View v, int whichEdge) {
1365 CellAndSpan cs = config.map.get(v);
1366
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001367 if ((dirtyEdges & whichEdge) == whichEdge) {
1368 computeEdge(whichEdge);
1369 dirtyEdges &= ~whichEdge;
1370 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001371
1372 switch (whichEdge) {
1373 case LEFT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001374 for (int i = cs.cellY; i < cs.cellY + cs.spanY; i++) {
1375 if (leftEdge[i] == cs.cellX + cs.spanX) {
Adam Cohenf3900c22012-11-16 18:28:11 -08001376 return true;
1377 }
1378 }
1379 break;
1380 case RIGHT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001381 for (int i = cs.cellY; i < cs.cellY + cs.spanY; i++) {
1382 if (rightEdge[i] == cs.cellX) {
Adam Cohenf3900c22012-11-16 18:28:11 -08001383 return true;
1384 }
1385 }
1386 break;
1387 case TOP:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001388 for (int i = cs.cellX; i < cs.cellX + cs.spanX; i++) {
1389 if (topEdge[i] == cs.cellY + cs.spanY) {
Adam Cohenf3900c22012-11-16 18:28:11 -08001390 return true;
1391 }
1392 }
1393 break;
1394 case BOTTOM:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001395 for (int i = cs.cellX; i < cs.cellX + cs.spanX; i++) {
1396 if (bottomEdge[i] == cs.cellY) {
Adam Cohenf3900c22012-11-16 18:28:11 -08001397 return true;
1398 }
1399 }
1400 break;
1401 }
1402 return false;
1403 }
1404
1405 void shift(int whichEdge, int delta) {
1406 for (View v: views) {
1407 CellAndSpan c = config.map.get(v);
1408 switch (whichEdge) {
1409 case LEFT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001410 c.cellX -= delta;
Adam Cohenf3900c22012-11-16 18:28:11 -08001411 break;
1412 case RIGHT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001413 c.cellX += delta;
Adam Cohenf3900c22012-11-16 18:28:11 -08001414 break;
1415 case TOP:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001416 c.cellY -= delta;
Adam Cohenf3900c22012-11-16 18:28:11 -08001417 break;
1418 case BOTTOM:
1419 default:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001420 c.cellY += delta;
Adam Cohenf3900c22012-11-16 18:28:11 -08001421 break;
1422 }
1423 }
1424 resetEdges();
1425 }
1426
1427 public void addView(View v) {
1428 views.add(v);
1429 resetEdges();
1430 }
1431
1432 public Rect getBoundingRect() {
1433 if (boundingRectDirty) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001434 config.getBoundingRectForViews(views, boundingRect);
Adam Cohenf3900c22012-11-16 18:28:11 -08001435 }
1436 return boundingRect;
1437 }
1438
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001439 final PositionComparator comparator = new PositionComparator();
Adam Cohenf3900c22012-11-16 18:28:11 -08001440 class PositionComparator implements Comparator<View> {
1441 int whichEdge = 0;
1442 public int compare(View left, View right) {
1443 CellAndSpan l = config.map.get(left);
1444 CellAndSpan r = config.map.get(right);
1445 switch (whichEdge) {
1446 case LEFT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001447 return (r.cellX + r.spanX) - (l.cellX + l.spanX);
Adam Cohenf3900c22012-11-16 18:28:11 -08001448 case RIGHT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001449 return l.cellX - r.cellX;
Adam Cohenf3900c22012-11-16 18:28:11 -08001450 case TOP:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001451 return (r.cellY + r.spanY) - (l.cellY + l.spanY);
Adam Cohenf3900c22012-11-16 18:28:11 -08001452 case BOTTOM:
1453 default:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001454 return l.cellY - r.cellY;
Adam Cohenf3900c22012-11-16 18:28:11 -08001455 }
1456 }
1457 }
1458
1459 public void sortConfigurationForEdgePush(int edge) {
1460 comparator.whichEdge = edge;
1461 Collections.sort(config.sortedViews, comparator);
1462 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001463 }
1464
Adam Cohenf3900c22012-11-16 18:28:11 -08001465 private boolean pushViewsToTempLocation(ArrayList<View> views, Rect rectOccupiedByPotentialDrop,
1466 int[] direction, View dragView, ItemConfiguration currentState) {
Adam Cohene0489502012-08-27 15:18:53 -07001467
Adam Cohenf3900c22012-11-16 18:28:11 -08001468 ViewCluster cluster = new ViewCluster(views, currentState);
1469 Rect clusterRect = cluster.getBoundingRect();
1470 int whichEdge;
1471 int pushDistance;
1472 boolean fail = false;
1473
1474 // Determine the edge of the cluster that will be leading the push and how far
1475 // the cluster must be shifted.
1476 if (direction[0] < 0) {
1477 whichEdge = ViewCluster.LEFT;
1478 pushDistance = clusterRect.right - rectOccupiedByPotentialDrop.left;
Adam Cohene0489502012-08-27 15:18:53 -07001479 } else if (direction[0] > 0) {
Adam Cohenf3900c22012-11-16 18:28:11 -08001480 whichEdge = ViewCluster.RIGHT;
1481 pushDistance = rectOccupiedByPotentialDrop.right - clusterRect.left;
1482 } else if (direction[1] < 0) {
1483 whichEdge = ViewCluster.TOP;
1484 pushDistance = clusterRect.bottom - rectOccupiedByPotentialDrop.top;
1485 } else {
1486 whichEdge = ViewCluster.BOTTOM;
1487 pushDistance = rectOccupiedByPotentialDrop.bottom - clusterRect.top;
Adam Cohene0489502012-08-27 15:18:53 -07001488 }
1489
Adam Cohenf3900c22012-11-16 18:28:11 -08001490 // Break early for invalid push distance.
1491 if (pushDistance <= 0) {
1492 return false;
Adam Cohene0489502012-08-27 15:18:53 -07001493 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001494
1495 // Mark the occupied state as false for the group of views we want to move.
1496 for (View v: views) {
1497 CellAndSpan c = currentState.map.get(v);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001498 mTmpOccupied.markCells(c, false);
Adam Cohenf3900c22012-11-16 18:28:11 -08001499 }
1500
1501 // We save the current configuration -- if we fail to find a solution we will revert
1502 // to the initial state. The process of finding a solution modifies the configuration
1503 // in place, hence the need for revert in the failure case.
1504 currentState.save();
1505
1506 // The pushing algorithm is simplified by considering the views in the order in which
1507 // they would be pushed by the cluster. For example, if the cluster is leading with its
1508 // left edge, we consider sort the views by their right edge, from right to left.
1509 cluster.sortConfigurationForEdgePush(whichEdge);
1510
1511 while (pushDistance > 0 && !fail) {
1512 for (View v: currentState.sortedViews) {
1513 // For each view that isn't in the cluster, we see if the leading edge of the
1514 // cluster is contacting the edge of that view. If so, we add that view to the
1515 // cluster.
1516 if (!cluster.views.contains(v) && v != dragView) {
1517 if (cluster.isViewTouchingEdge(v, whichEdge)) {
1518 LayoutParams lp = (LayoutParams) v.getLayoutParams();
1519 if (!lp.canReorder) {
1520 // The push solution includes the all apps button, this is not viable.
1521 fail = true;
1522 break;
1523 }
1524 cluster.addView(v);
1525 CellAndSpan c = currentState.map.get(v);
1526
1527 // Adding view to cluster, mark it as not occupied.
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001528 mTmpOccupied.markCells(c, false);
Adam Cohenf3900c22012-11-16 18:28:11 -08001529 }
1530 }
1531 }
1532 pushDistance--;
1533
1534 // The cluster has been completed, now we move the whole thing over in the appropriate
1535 // direction.
1536 cluster.shift(whichEdge, 1);
1537 }
1538
1539 boolean foundSolution = false;
1540 clusterRect = cluster.getBoundingRect();
1541
1542 // Due to the nature of the algorithm, the only check required to verify a valid solution
1543 // is to ensure that completed shifted cluster lies completely within the cell layout.
1544 if (!fail && clusterRect.left >= 0 && clusterRect.right <= mCountX && clusterRect.top >= 0 &&
1545 clusterRect.bottom <= mCountY) {
1546 foundSolution = true;
1547 } else {
1548 currentState.restore();
1549 }
1550
1551 // In either case, we set the occupied array as marked for the location of the views
1552 for (View v: cluster.views) {
1553 CellAndSpan c = currentState.map.get(v);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001554 mTmpOccupied.markCells(c, true);
Adam Cohenf3900c22012-11-16 18:28:11 -08001555 }
1556
1557 return foundSolution;
Adam Cohene0489502012-08-27 15:18:53 -07001558 }
1559
Adam Cohen482ed822012-03-02 14:15:13 -08001560 private boolean addViewsToTempLocation(ArrayList<View> views, Rect rectOccupiedByPotentialDrop,
Adam Cohenf3900c22012-11-16 18:28:11 -08001561 int[] direction, View dragView, ItemConfiguration currentState) {
Adam Cohen482ed822012-03-02 14:15:13 -08001562 if (views.size() == 0) return true;
Adam Cohen482ed822012-03-02 14:15:13 -08001563
Adam Cohen8baab352012-03-20 17:39:21 -07001564 boolean success = false;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001565 Rect boundingRect = new Rect();
Adam Cohen8baab352012-03-20 17:39:21 -07001566 // We construct a rect which represents the entire group of views passed in
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001567 currentState.getBoundingRectForViews(views, boundingRect);
Adam Cohen8baab352012-03-20 17:39:21 -07001568
Adam Cohen8baab352012-03-20 17:39:21 -07001569 // Mark the occupied state as false for the group of views we want to move.
Adam Cohenf3900c22012-11-16 18:28:11 -08001570 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001571 CellAndSpan c = currentState.map.get(v);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001572 mTmpOccupied.markCells(c, false);
Adam Cohen8baab352012-03-20 17:39:21 -07001573 }
1574
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001575 GridOccupancy blockOccupied = new GridOccupancy(boundingRect.width(), boundingRect.height());
Adam Cohen47a876d2012-03-19 13:21:41 -07001576 int top = boundingRect.top;
1577 int left = boundingRect.left;
Adam Cohen8baab352012-03-20 17:39:21 -07001578 // We mark more precisely which parts of the bounding rect are truly occupied, allowing
Adam Cohena56dc102012-07-13 13:41:42 -07001579 // for interlocking.
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 blockOccupied.markCells(c.cellX - left, c.cellY - top, c.spanX, c.spanY, true);
Adam Cohen47a876d2012-03-19 13:21:41 -07001583 }
1584
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001585 mTmpOccupied.markCells(rectOccupiedByPotentialDrop, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001586
Adam Cohenf3900c22012-11-16 18:28:11 -08001587 findNearestArea(boundingRect.left, boundingRect.top, boundingRect.width(),
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001588 boundingRect.height(), direction,
1589 mTmpOccupied.cells, blockOccupied.cells, mTempLocation);
Adam Cohen482ed822012-03-02 14:15:13 -08001590
Adam Cohen8baab352012-03-20 17:39:21 -07001591 // If we successfuly found a location by pushing the block of views, we commit it
Adam Cohen482ed822012-03-02 14:15:13 -08001592 if (mTempLocation[0] >= 0 && mTempLocation[1] >= 0) {
Adam Cohen8baab352012-03-20 17:39:21 -07001593 int deltaX = mTempLocation[0] - boundingRect.left;
1594 int deltaY = mTempLocation[1] - boundingRect.top;
Adam Cohenf3900c22012-11-16 18:28:11 -08001595 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001596 CellAndSpan c = currentState.map.get(v);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001597 c.cellX += deltaX;
1598 c.cellY += deltaY;
Adam Cohen482ed822012-03-02 14:15:13 -08001599 }
1600 success = true;
1601 }
Adam Cohen8baab352012-03-20 17:39:21 -07001602
1603 // In either case, we set the occupied array as marked for the location of the views
Adam Cohenf3900c22012-11-16 18:28:11 -08001604 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001605 CellAndSpan c = currentState.map.get(v);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001606 mTmpOccupied.markCells(c, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001607 }
1608 return success;
1609 }
1610
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001611 // This method tries to find a reordering solution which satisfies the push mechanic by trying
1612 // to push items in each of the cardinal directions, in an order based on the direction vector
1613 // passed.
1614 private boolean attemptPushInDirection(ArrayList<View> intersectingViews, Rect occupied,
1615 int[] direction, View ignoreView, ItemConfiguration solution) {
1616 if ((Math.abs(direction[0]) + Math.abs(direction[1])) > 1) {
Winson Chung5f8afe62013-08-12 16:19:28 -07001617 // If the direction vector has two non-zero components, we try pushing
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001618 // separately in each of the components.
1619 int temp = direction[1];
1620 direction[1] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08001621
1622 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001623 ignoreView, solution)) {
1624 return true;
1625 }
1626 direction[1] = temp;
1627 temp = direction[0];
1628 direction[0] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08001629
1630 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001631 ignoreView, solution)) {
1632 return true;
1633 }
1634 // Revert the direction
1635 direction[0] = temp;
1636
1637 // Now we try pushing in each component of the opposite direction
1638 direction[0] *= -1;
1639 direction[1] *= -1;
1640 temp = direction[1];
1641 direction[1] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08001642 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001643 ignoreView, solution)) {
1644 return true;
1645 }
1646
1647 direction[1] = temp;
1648 temp = direction[0];
1649 direction[0] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08001650 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001651 ignoreView, solution)) {
1652 return true;
1653 }
1654 // revert the direction
1655 direction[0] = temp;
1656 direction[0] *= -1;
1657 direction[1] *= -1;
Winson Chung5f8afe62013-08-12 16:19:28 -07001658
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001659 } else {
1660 // If the direction vector has a single non-zero component, we push first in the
1661 // direction of the vector
Adam Cohenf3900c22012-11-16 18:28:11 -08001662 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001663 ignoreView, solution)) {
1664 return true;
1665 }
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001666 // Then we try the opposite direction
1667 direction[0] *= -1;
1668 direction[1] *= -1;
Adam Cohenf3900c22012-11-16 18:28:11 -08001669 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001670 ignoreView, solution)) {
1671 return true;
1672 }
1673 // Switch the direction back
1674 direction[0] *= -1;
1675 direction[1] *= -1;
Winson Chung5f8afe62013-08-12 16:19:28 -07001676
1677 // If we have failed to find a push solution with the above, then we try
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001678 // to find a solution by pushing along the perpendicular axis.
1679
1680 // Swap the components
1681 int temp = direction[1];
1682 direction[1] = direction[0];
1683 direction[0] = temp;
Adam Cohenf3900c22012-11-16 18:28:11 -08001684 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001685 ignoreView, solution)) {
1686 return true;
1687 }
1688
1689 // Then we try the opposite direction
1690 direction[0] *= -1;
1691 direction[1] *= -1;
Adam Cohenf3900c22012-11-16 18:28:11 -08001692 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001693 ignoreView, solution)) {
1694 return true;
1695 }
1696 // Switch the direction back
1697 direction[0] *= -1;
1698 direction[1] *= -1;
1699
1700 // Swap the components back
1701 temp = direction[1];
1702 direction[1] = direction[0];
1703 direction[0] = temp;
1704 }
1705 return false;
1706 }
1707
Adam Cohen482ed822012-03-02 14:15:13 -08001708 private boolean rearrangementExists(int cellX, int cellY, int spanX, int spanY, int[] direction,
Adam Cohen8baab352012-03-20 17:39:21 -07001709 View ignoreView, ItemConfiguration solution) {
Winson Chunge3e03bc2012-05-01 15:10:11 -07001710 // Return early if get invalid cell positions
1711 if (cellX < 0 || cellY < 0) return false;
Adam Cohen482ed822012-03-02 14:15:13 -08001712
Adam Cohen8baab352012-03-20 17:39:21 -07001713 mIntersectingViews.clear();
Adam Cohen482ed822012-03-02 14:15:13 -08001714 mOccupiedRect.set(cellX, cellY, cellX + spanX, cellY + spanY);
Adam Cohen482ed822012-03-02 14:15:13 -08001715
Adam Cohen8baab352012-03-20 17:39:21 -07001716 // Mark the desired location of the view currently being dragged.
Adam Cohen482ed822012-03-02 14:15:13 -08001717 if (ignoreView != null) {
Adam Cohen8baab352012-03-20 17:39:21 -07001718 CellAndSpan c = solution.map.get(ignoreView);
Adam Cohen19f37922012-03-21 11:59:11 -07001719 if (c != null) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001720 c.cellX = cellX;
1721 c.cellY = cellY;
Adam Cohen19f37922012-03-21 11:59:11 -07001722 }
Adam Cohen482ed822012-03-02 14:15:13 -08001723 }
Adam Cohen482ed822012-03-02 14:15:13 -08001724 Rect r0 = new Rect(cellX, cellY, cellX + spanX, cellY + spanY);
1725 Rect r1 = new Rect();
Adam Cohen8baab352012-03-20 17:39:21 -07001726 for (View child: solution.map.keySet()) {
Adam Cohen482ed822012-03-02 14:15:13 -08001727 if (child == ignoreView) continue;
Adam Cohen8baab352012-03-20 17:39:21 -07001728 CellAndSpan c = solution.map.get(child);
Adam Cohen482ed822012-03-02 14:15:13 -08001729 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001730 r1.set(c.cellX, c.cellY, c.cellX + c.spanX, c.cellY + c.spanY);
Adam Cohen482ed822012-03-02 14:15:13 -08001731 if (Rect.intersects(r0, r1)) {
1732 if (!lp.canReorder) {
1733 return false;
1734 }
1735 mIntersectingViews.add(child);
1736 }
1737 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001738
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001739 solution.intersectingViews = new ArrayList<>(mIntersectingViews);
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001740
Winson Chung5f8afe62013-08-12 16:19:28 -07001741 // First we try to find a solution which respects the push mechanic. That is,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001742 // we try to find a solution such that no displaced item travels through another item
1743 // without also displacing that item.
1744 if (attemptPushInDirection(mIntersectingViews, mOccupiedRect, direction, ignoreView,
Adam Cohen19f37922012-03-21 11:59:11 -07001745 solution)) {
Adam Cohen47a876d2012-03-19 13:21:41 -07001746 return true;
1747 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001748
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001749 // Next we try moving the views as a block, but without requiring the push mechanic.
Adam Cohenf3900c22012-11-16 18:28:11 -08001750 if (addViewsToTempLocation(mIntersectingViews, mOccupiedRect, direction, ignoreView,
Adam Cohen19f37922012-03-21 11:59:11 -07001751 solution)) {
Adam Cohen482ed822012-03-02 14:15:13 -08001752 return true;
1753 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001754
Adam Cohen482ed822012-03-02 14:15:13 -08001755 // Ok, they couldn't move as a block, let's move them individually
1756 for (View v : mIntersectingViews) {
Adam Cohen8baab352012-03-20 17:39:21 -07001757 if (!addViewToTempLocation(v, mOccupiedRect, direction, solution)) {
Adam Cohen482ed822012-03-02 14:15:13 -08001758 return false;
1759 }
1760 }
1761 return true;
1762 }
1763
1764 /*
1765 * Returns a pair (x, y), where x,y are in {-1, 0, 1} corresponding to vector between
1766 * the provided point and the provided cell
1767 */
Adam Cohen47a876d2012-03-19 13:21:41 -07001768 private void computeDirectionVector(float deltaX, float deltaY, int[] result) {
Jon Mirandae96798e2016-12-07 12:10:44 -08001769 double angle = Math.atan(deltaY / deltaX);
Adam Cohen482ed822012-03-02 14:15:13 -08001770
1771 result[0] = 0;
1772 result[1] = 0;
1773 if (Math.abs(Math.cos(angle)) > 0.5f) {
1774 result[0] = (int) Math.signum(deltaX);
1775 }
1776 if (Math.abs(Math.sin(angle)) > 0.5f) {
1777 result[1] = (int) Math.signum(deltaY);
1778 }
1779 }
1780
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001781 private ItemConfiguration findReorderSolution(int pixelX, int pixelY, int minSpanX, int minSpanY,
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001782 int spanX, int spanY, int[] direction, View dragView, boolean decX,
1783 ItemConfiguration solution) {
Adam Cohen8baab352012-03-20 17:39:21 -07001784 // Copy the current state into the solution. This solution will be manipulated as necessary.
1785 copyCurrentStateToSolution(solution, false);
1786 // Copy the current occupied array into the temporary occupied array. This array will be
1787 // manipulated as necessary to find a solution.
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001788 mOccupied.copyTo(mTmpOccupied);
Adam Cohen482ed822012-03-02 14:15:13 -08001789
1790 // We find the nearest cell into which we would place the dragged item, assuming there's
1791 // nothing in its way.
1792 int result[] = new int[2];
1793 result = findNearestArea(pixelX, pixelY, spanX, spanY, result);
1794
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001795 boolean success;
Adam Cohen482ed822012-03-02 14:15:13 -08001796 // First we try the exact nearest position of the item being dragged,
1797 // we will then want to try to move this around to other neighbouring positions
Adam Cohen8baab352012-03-20 17:39:21 -07001798 success = rearrangementExists(result[0], result[1], spanX, spanY, direction, dragView,
1799 solution);
Adam Cohen482ed822012-03-02 14:15:13 -08001800
1801 if (!success) {
1802 // We try shrinking the widget down to size in an alternating pattern, shrink 1 in
1803 // x, then 1 in y etc.
1804 if (spanX > minSpanX && (minSpanY == spanY || decX)) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001805 return findReorderSolution(pixelX, pixelY, minSpanX, minSpanY, spanX - 1, spanY,
1806 direction, dragView, false, solution);
Adam Cohen482ed822012-03-02 14:15:13 -08001807 } else if (spanY > minSpanY) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001808 return findReorderSolution(pixelX, pixelY, minSpanX, minSpanY, spanX, spanY - 1,
1809 direction, dragView, true, solution);
Adam Cohen482ed822012-03-02 14:15:13 -08001810 }
1811 solution.isSolution = false;
1812 } else {
1813 solution.isSolution = true;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001814 solution.cellX = result[0];
1815 solution.cellY = result[1];
1816 solution.spanX = spanX;
1817 solution.spanY = spanY;
Adam Cohen482ed822012-03-02 14:15:13 -08001818 }
1819 return solution;
1820 }
1821
1822 private void copyCurrentStateToSolution(ItemConfiguration solution, boolean temp) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07001823 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08001824 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07001825 View child = mShortcutsAndWidgets.getChildAt(i);
Adam Cohen482ed822012-03-02 14:15:13 -08001826 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Adam Cohen8baab352012-03-20 17:39:21 -07001827 CellAndSpan c;
Adam Cohen482ed822012-03-02 14:15:13 -08001828 if (temp) {
Adam Cohen8baab352012-03-20 17:39:21 -07001829 c = new CellAndSpan(lp.tmpCellX, lp.tmpCellY, lp.cellHSpan, lp.cellVSpan);
Adam Cohen482ed822012-03-02 14:15:13 -08001830 } else {
Adam Cohen8baab352012-03-20 17:39:21 -07001831 c = new CellAndSpan(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan);
Adam Cohen482ed822012-03-02 14:15:13 -08001832 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001833 solution.add(child, c);
Adam Cohen482ed822012-03-02 14:15:13 -08001834 }
1835 }
1836
1837 private void copySolutionToTempState(ItemConfiguration solution, View dragView) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001838 mTmpOccupied.clear();
Adam Cohen482ed822012-03-02 14:15:13 -08001839
Michael Jurkaa52570f2012-03-20 03:18:20 -07001840 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08001841 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07001842 View child = mShortcutsAndWidgets.getChildAt(i);
Adam Cohen482ed822012-03-02 14:15:13 -08001843 if (child == dragView) continue;
1844 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Adam Cohen8baab352012-03-20 17:39:21 -07001845 CellAndSpan c = solution.map.get(child);
1846 if (c != null) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001847 lp.tmpCellX = c.cellX;
1848 lp.tmpCellY = c.cellY;
Adam Cohen8baab352012-03-20 17:39:21 -07001849 lp.cellHSpan = c.spanX;
1850 lp.cellVSpan = c.spanY;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001851 mTmpOccupied.markCells(c, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001852 }
1853 }
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001854 mTmpOccupied.markCells(solution, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001855 }
1856
1857 private void animateItemsToSolution(ItemConfiguration solution, View dragView, boolean
1858 commitDragView) {
1859
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001860 GridOccupancy occupied = DESTRUCTIVE_REORDER ? mOccupied : mTmpOccupied;
1861 occupied.clear();
Adam Cohen482ed822012-03-02 14:15:13 -08001862
Michael Jurkaa52570f2012-03-20 03:18:20 -07001863 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08001864 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07001865 View child = mShortcutsAndWidgets.getChildAt(i);
Adam Cohen482ed822012-03-02 14:15:13 -08001866 if (child == dragView) continue;
Adam Cohen8baab352012-03-20 17:39:21 -07001867 CellAndSpan c = solution.map.get(child);
1868 if (c != null) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001869 animateChildToPosition(child, c.cellX, c.cellY, REORDER_ANIMATION_DURATION, 0,
Adam Cohen19f37922012-03-21 11:59:11 -07001870 DESTRUCTIVE_REORDER, false);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001871 occupied.markCells(c, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001872 }
1873 }
1874 if (commitDragView) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001875 occupied.markCells(solution, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001876 }
1877 }
1878
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001879
1880 // This method starts or changes the reorder preview animations
1881 private void beginOrAdjustReorderPreviewAnimations(ItemConfiguration solution,
1882 View dragView, int delay, int mode) {
Adam Cohen19f37922012-03-21 11:59:11 -07001883 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen19f37922012-03-21 11:59:11 -07001884 for (int i = 0; i < childCount; i++) {
1885 View child = mShortcutsAndWidgets.getChildAt(i);
1886 if (child == dragView) continue;
1887 CellAndSpan c = solution.map.get(child);
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001888 boolean skip = mode == ReorderPreviewAnimation.MODE_HINT && solution.intersectingViews
1889 != null && !solution.intersectingViews.contains(child);
1890
Adam Cohen19f37922012-03-21 11:59:11 -07001891 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001892 if (c != null && !skip) {
1893 ReorderPreviewAnimation rha = new ReorderPreviewAnimation(child, mode, lp.cellX,
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001894 lp.cellY, c.cellX, c.cellY, c.spanX, c.spanY);
Adam Cohend024f982012-05-23 18:26:45 -07001895 rha.animate();
Adam Cohen19f37922012-03-21 11:59:11 -07001896 }
1897 }
1898 }
1899
Sunny Goyal849c6a22018-08-08 16:33:46 -07001900 private static final Property<ReorderPreviewAnimation, Float> ANIMATION_PROGRESS =
1901 new Property<ReorderPreviewAnimation, Float>(float.class, "animationProgress") {
1902 @Override
1903 public Float get(ReorderPreviewAnimation anim) {
1904 return anim.animationProgress;
1905 }
1906
1907 @Override
1908 public void set(ReorderPreviewAnimation anim, Float progress) {
1909 anim.setAnimationProgress(progress);
1910 }
1911 };
1912
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001913 // Class which represents the reorder preview animations. These animations show that an item is
Adam Cohen19f37922012-03-21 11:59:11 -07001914 // in a temporary state, and hint at where the item will return to.
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001915 class ReorderPreviewAnimation {
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001916 final View child;
Adam Cohend024f982012-05-23 18:26:45 -07001917 float finalDeltaX;
1918 float finalDeltaY;
1919 float initDeltaX;
1920 float initDeltaY;
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001921 final float finalScale;
Adam Cohend024f982012-05-23 18:26:45 -07001922 float initScale;
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001923 final int mode;
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001924 boolean repeating = false;
1925 private static final int PREVIEW_DURATION = 300;
1926 private static final int HINT_DURATION = Workspace.REORDER_TIMEOUT;
1927
Jon Miranda21266912016-12-19 14:12:05 -08001928 private static final float CHILD_DIVIDEND = 4.0f;
1929
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001930 public static final int MODE_HINT = 0;
1931 public static final int MODE_PREVIEW = 1;
1932
Sunny Goyal849c6a22018-08-08 16:33:46 -07001933 float animationProgress = 0;
Sunny Goyalf0b6db72018-08-13 16:10:14 -07001934 ValueAnimator a;
Adam Cohen19f37922012-03-21 11:59:11 -07001935
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001936 public ReorderPreviewAnimation(View child, int mode, int cellX0, int cellY0, int cellX1,
1937 int cellY1, int spanX, int spanY) {
Adam Cohen19f37922012-03-21 11:59:11 -07001938 regionToCenterPoint(cellX0, cellY0, spanX, spanY, mTmpPoint);
1939 final int x0 = mTmpPoint[0];
1940 final int y0 = mTmpPoint[1];
1941 regionToCenterPoint(cellX1, cellY1, spanX, spanY, mTmpPoint);
1942 final int x1 = mTmpPoint[0];
1943 final int y1 = mTmpPoint[1];
1944 final int dX = x1 - x0;
1945 final int dY = y1 - y0;
Jon Miranda21266912016-12-19 14:12:05 -08001946
1947 this.child = child;
1948 this.mode = mode;
1949 setInitialAnimationValues(false);
1950 finalScale = (mChildScale - (CHILD_DIVIDEND / child.getWidth())) * initScale;
1951 finalDeltaX = initDeltaX;
1952 finalDeltaY = initDeltaY;
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001953 int dir = mode == MODE_HINT ? -1 : 1;
Adam Cohen19f37922012-03-21 11:59:11 -07001954 if (dX == dY && dX == 0) {
1955 } else {
1956 if (dY == 0) {
Jon Miranda21266912016-12-19 14:12:05 -08001957 finalDeltaX += - dir * Math.signum(dX) * mReorderPreviewAnimationMagnitude;
Adam Cohen19f37922012-03-21 11:59:11 -07001958 } else if (dX == 0) {
Jon Miranda21266912016-12-19 14:12:05 -08001959 finalDeltaY += - dir * Math.signum(dY) * mReorderPreviewAnimationMagnitude;
Adam Cohen19f37922012-03-21 11:59:11 -07001960 } else {
1961 double angle = Math.atan( (float) (dY) / dX);
Jon Miranda21266912016-12-19 14:12:05 -08001962 finalDeltaX += (int) (- dir * Math.signum(dX) *
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001963 Math.abs(Math.cos(angle) * mReorderPreviewAnimationMagnitude));
Jon Miranda21266912016-12-19 14:12:05 -08001964 finalDeltaY += (int) (- dir * Math.signum(dY) *
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001965 Math.abs(Math.sin(angle) * mReorderPreviewAnimationMagnitude));
Adam Cohen19f37922012-03-21 11:59:11 -07001966 }
1967 }
Jon Miranda21266912016-12-19 14:12:05 -08001968 }
1969
1970 void setInitialAnimationValues(boolean restoreOriginalValues) {
1971 if (restoreOriginalValues) {
1972 if (child instanceof LauncherAppWidgetHostView) {
1973 LauncherAppWidgetHostView lahv = (LauncherAppWidgetHostView) child;
1974 initScale = lahv.getScaleToFit();
1975 initDeltaX = lahv.getTranslationForCentering().x;
1976 initDeltaY = lahv.getTranslationForCentering().y;
1977 } else {
1978 initScale = mChildScale;
1979 initDeltaX = 0;
1980 initDeltaY = 0;
1981 }
1982 } else {
1983 initScale = child.getScaleX();
1984 initDeltaX = child.getTranslationX();
1985 initDeltaY = child.getTranslationY();
1986 }
Adam Cohen19f37922012-03-21 11:59:11 -07001987 }
1988
Adam Cohend024f982012-05-23 18:26:45 -07001989 void animate() {
Jon Miranda21266912016-12-19 14:12:05 -08001990 boolean noMovement = (finalDeltaX == initDeltaX) && (finalDeltaY == initDeltaY);
1991
Adam Cohen19f37922012-03-21 11:59:11 -07001992 if (mShakeAnimators.containsKey(child)) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001993 ReorderPreviewAnimation oldAnimation = mShakeAnimators.get(child);
Adam Cohend024f982012-05-23 18:26:45 -07001994 oldAnimation.cancel();
Adam Cohen19f37922012-03-21 11:59:11 -07001995 mShakeAnimators.remove(child);
Jon Miranda21266912016-12-19 14:12:05 -08001996 if (noMovement) {
Adam Cohene7587d22012-05-24 18:50:02 -07001997 completeAnimationImmediately();
1998 return;
1999 }
Adam Cohen19f37922012-03-21 11:59:11 -07002000 }
Jon Miranda21266912016-12-19 14:12:05 -08002001 if (noMovement) {
Adam Cohen19f37922012-03-21 11:59:11 -07002002 return;
2003 }
Sunny Goyal849c6a22018-08-08 16:33:46 -07002004 ValueAnimator va = ObjectAnimator.ofFloat(this, ANIMATION_PROGRESS, 0, 1);
Adam Cohene7587d22012-05-24 18:50:02 -07002005 a = va;
Tony Wickham9e0702f2015-09-02 14:45:39 -07002006
2007 // Animations are disabled in power save mode, causing the repeated animation to jump
2008 // spastically between beginning and end states. Since this looks bad, we don't repeat
2009 // the animation in power save mode.
Sunny Goyal7368fa42019-04-22 09:58:14 -07002010 if (Utilities.areAnimationsEnabled(getContext())) {
Tony Wickham9e0702f2015-09-02 14:45:39 -07002011 va.setRepeatMode(ValueAnimator.REVERSE);
2012 va.setRepeatCount(ValueAnimator.INFINITE);
2013 }
2014
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002015 va.setDuration(mode == MODE_HINT ? HINT_DURATION : PREVIEW_DURATION);
Adam Cohend024f982012-05-23 18:26:45 -07002016 va.setStartDelay((int) (Math.random() * 60));
Adam Cohen19f37922012-03-21 11:59:11 -07002017 va.addListener(new AnimatorListenerAdapter() {
2018 public void onAnimationRepeat(Animator animation) {
Adam Cohen19f37922012-03-21 11:59:11 -07002019 // We make sure to end only after a full period
Jon Miranda21266912016-12-19 14:12:05 -08002020 setInitialAnimationValues(true);
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002021 repeating = true;
Adam Cohen19f37922012-03-21 11:59:11 -07002022 }
2023 });
Adam Cohen19f37922012-03-21 11:59:11 -07002024 mShakeAnimators.put(child, this);
2025 va.start();
2026 }
2027
Sunny Goyal849c6a22018-08-08 16:33:46 -07002028 private void setAnimationProgress(float progress) {
2029 animationProgress = progress;
2030 float r1 = (mode == MODE_HINT && repeating) ? 1.0f : animationProgress;
2031 float x = r1 * finalDeltaX + (1 - r1) * initDeltaX;
2032 float y = r1 * finalDeltaY + (1 - r1) * initDeltaY;
2033 child.setTranslationX(x);
2034 child.setTranslationY(y);
2035 float s = animationProgress * finalScale + (1 - animationProgress) * initScale;
2036 child.setScaleX(s);
2037 child.setScaleY(s);
2038 }
2039
Adam Cohend024f982012-05-23 18:26:45 -07002040 private void cancel() {
Adam Cohene7587d22012-05-24 18:50:02 -07002041 if (a != null) {
2042 a.cancel();
2043 }
Adam Cohen19f37922012-03-21 11:59:11 -07002044 }
Adam Cohene7587d22012-05-24 18:50:02 -07002045
Adam Cohen091440a2015-03-18 14:16:05 -07002046 @Thunk void completeAnimationImmediately() {
Adam Cohene7587d22012-05-24 18:50:02 -07002047 if (a != null) {
2048 a.cancel();
2049 }
Brandon Keely50e6e562012-05-08 16:28:49 -07002050
Jon Miranda72dbd912017-01-04 14:03:07 -08002051 setInitialAnimationValues(true);
Sunny Goyalf0b6db72018-08-13 16:10:14 -07002052 a = new PropertyListBuilder()
2053 .scale(initScale)
2054 .translationX(initDeltaX)
2055 .translationY(initDeltaY)
2056 .build(child)
Sunny Goyal9e76f682017-02-13 12:13:43 -08002057 .setDuration(REORDER_ANIMATION_DURATION);
Sunny Goyalab770a12018-11-14 15:17:26 -08002058 Launcher.cast(mActivity).getDragController().addFirstFrameAnimationHelper(a);
Sunny Goyalf0b6db72018-08-13 16:10:14 -07002059 a.setInterpolator(DEACCEL_1_5);
Sunny Goyal5d2fc322015-07-06 22:52:49 -07002060 a.start();
Brandon Keely50e6e562012-05-08 16:28:49 -07002061 }
Adam Cohen19f37922012-03-21 11:59:11 -07002062 }
2063
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002064 private void completeAndClearReorderPreviewAnimations() {
2065 for (ReorderPreviewAnimation a: mShakeAnimators.values()) {
Brandon Keely50e6e562012-05-08 16:28:49 -07002066 a.completeAnimationImmediately();
Adam Cohen19f37922012-03-21 11:59:11 -07002067 }
2068 mShakeAnimators.clear();
2069 }
2070
Adam Cohen482ed822012-03-02 14:15:13 -08002071 private void commitTempPlacement() {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002072 mTmpOccupied.copyTo(mOccupied);
Sunny Goyalaa8ef112015-06-12 20:04:41 -07002073
Sunny Goyalab770a12018-11-14 15:17:26 -08002074 int screenId = Launcher.cast(mActivity).getWorkspace().getIdForScreen(this);
Sunny Goyalaa8ef112015-06-12 20:04:41 -07002075 int container = Favorites.CONTAINER_DESKTOP;
2076
Sunny Goyalc13403c2016-11-18 23:44:48 -08002077 if (mContainerType == HOTSEAT) {
Sunny Goyalaa8ef112015-06-12 20:04:41 -07002078 screenId = -1;
2079 container = Favorites.CONTAINER_HOTSEAT;
2080 }
2081
Michael Jurkaa52570f2012-03-20 03:18:20 -07002082 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08002083 for (int i = 0; i < childCount; i++) {
Adam Cohenea889a22012-03-27 16:45:39 -07002084 View child = mShortcutsAndWidgets.getChildAt(i);
2085 LayoutParams lp = (LayoutParams) child.getLayoutParams();
2086 ItemInfo info = (ItemInfo) child.getTag();
Adam Cohen2acce882012-03-28 19:03:19 -07002087 // We do a null check here because the item info can be null in the case of the
2088 // AllApps button in the hotseat.
2089 if (info != null) {
Sunny Goyalaa8ef112015-06-12 20:04:41 -07002090 final boolean requiresDbUpdate = (info.cellX != lp.tmpCellX
2091 || info.cellY != lp.tmpCellY || info.spanX != lp.cellHSpan
2092 || info.spanY != lp.cellVSpan);
2093
Adam Cohen2acce882012-03-28 19:03:19 -07002094 info.cellX = lp.cellX = lp.tmpCellX;
2095 info.cellY = lp.cellY = lp.tmpCellY;
Adam Cohenbebf0422012-04-11 18:06:28 -07002096 info.spanX = lp.cellHSpan;
2097 info.spanY = lp.cellVSpan;
Sunny Goyalaa8ef112015-06-12 20:04:41 -07002098
2099 if (requiresDbUpdate) {
Sunny Goyalab770a12018-11-14 15:17:26 -08002100 Launcher.cast(mActivity).getModelWriter().modifyItemInDatabase(info, container,
2101 screenId, info.cellX, info.cellY, info.spanX, info.spanY);
Sunny Goyalaa8ef112015-06-12 20:04:41 -07002102 }
Adam Cohen2acce882012-03-28 19:03:19 -07002103 }
Adam Cohen482ed822012-03-02 14:15:13 -08002104 }
2105 }
2106
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002107 private void setUseTempCoords(boolean useTempCoords) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002108 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08002109 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002110 LayoutParams lp = (LayoutParams) mShortcutsAndWidgets.getChildAt(i).getLayoutParams();
Adam Cohen482ed822012-03-02 14:15:13 -08002111 lp.useTmpCoords = useTempCoords;
2112 }
2113 }
2114
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002115 private ItemConfiguration findConfigurationNoShuffle(int pixelX, int pixelY, int minSpanX, int minSpanY,
Adam Cohen482ed822012-03-02 14:15:13 -08002116 int spanX, int spanY, View dragView, ItemConfiguration solution) {
2117 int[] result = new int[2];
2118 int[] resultSpan = new int[2];
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002119 findNearestVacantArea(pixelX, pixelY, minSpanX, minSpanY, spanX, spanY, result,
Adam Cohen482ed822012-03-02 14:15:13 -08002120 resultSpan);
2121 if (result[0] >= 0 && result[1] >= 0) {
2122 copyCurrentStateToSolution(solution, false);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002123 solution.cellX = result[0];
2124 solution.cellY = result[1];
2125 solution.spanX = resultSpan[0];
2126 solution.spanY = resultSpan[1];
Adam Cohen482ed822012-03-02 14:15:13 -08002127 solution.isSolution = true;
2128 } else {
2129 solution.isSolution = false;
2130 }
2131 return solution;
2132 }
2133
Adam Cohen19f37922012-03-21 11:59:11 -07002134 /* This seems like it should be obvious and straight-forward, but when the direction vector
2135 needs to match with the notion of the dragView pushing other views, we have to employ
2136 a slightly more subtle notion of the direction vector. The question is what two points is
2137 the vector between? The center of the dragView and its desired destination? Not quite, as
2138 this doesn't necessarily coincide with the interaction of the dragView and items occupying
2139 those cells. Instead we use some heuristics to often lock the vector to up, down, left
2140 or right, which helps make pushing feel right.
2141 */
2142 private void getDirectionVectorForDrop(int dragViewCenterX, int dragViewCenterY, int spanX,
2143 int spanY, View dragView, int[] resultDirection) {
2144 int[] targetDestination = new int[2];
2145
2146 findNearestArea(dragViewCenterX, dragViewCenterY, spanX, spanY, targetDestination);
2147 Rect dragRect = new Rect();
2148 regionToRect(targetDestination[0], targetDestination[1], spanX, spanY, dragRect);
2149 dragRect.offset(dragViewCenterX - dragRect.centerX(), dragViewCenterY - dragRect.centerY());
2150
2151 Rect dropRegionRect = new Rect();
2152 getViewsIntersectingRegion(targetDestination[0], targetDestination[1], spanX, spanY,
2153 dragView, dropRegionRect, mIntersectingViews);
2154
2155 int dropRegionSpanX = dropRegionRect.width();
2156 int dropRegionSpanY = dropRegionRect.height();
2157
2158 regionToRect(dropRegionRect.left, dropRegionRect.top, dropRegionRect.width(),
2159 dropRegionRect.height(), dropRegionRect);
2160
2161 int deltaX = (dropRegionRect.centerX() - dragViewCenterX) / spanX;
2162 int deltaY = (dropRegionRect.centerY() - dragViewCenterY) / spanY;
2163
2164 if (dropRegionSpanX == mCountX || spanX == mCountX) {
2165 deltaX = 0;
2166 }
2167 if (dropRegionSpanY == mCountY || spanY == mCountY) {
2168 deltaY = 0;
2169 }
2170
2171 if (deltaX == 0 && deltaY == 0) {
2172 // No idea what to do, give a random direction.
2173 resultDirection[0] = 1;
2174 resultDirection[1] = 0;
2175 } else {
2176 computeDirectionVector(deltaX, deltaY, resultDirection);
2177 }
2178 }
2179
2180 // For a given cell and span, fetch the set of views intersecting the region.
2181 private void getViewsIntersectingRegion(int cellX, int cellY, int spanX, int spanY,
2182 View dragView, Rect boundingRect, ArrayList<View> intersectingViews) {
2183 if (boundingRect != null) {
2184 boundingRect.set(cellX, cellY, cellX + spanX, cellY + spanY);
2185 }
2186 intersectingViews.clear();
2187 Rect r0 = new Rect(cellX, cellY, cellX + spanX, cellY + spanY);
2188 Rect r1 = new Rect();
2189 final int count = mShortcutsAndWidgets.getChildCount();
2190 for (int i = 0; i < count; i++) {
2191 View child = mShortcutsAndWidgets.getChildAt(i);
2192 if (child == dragView) continue;
2193 LayoutParams lp = (LayoutParams) child.getLayoutParams();
2194 r1.set(lp.cellX, lp.cellY, lp.cellX + lp.cellHSpan, lp.cellY + lp.cellVSpan);
2195 if (Rect.intersects(r0, r1)) {
2196 mIntersectingViews.add(child);
2197 if (boundingRect != null) {
2198 boundingRect.union(r1);
2199 }
2200 }
2201 }
2202 }
2203
2204 boolean isNearestDropLocationOccupied(int pixelX, int pixelY, int spanX, int spanY,
2205 View dragView, int[] result) {
2206 result = findNearestArea(pixelX, pixelY, spanX, spanY, result);
2207 getViewsIntersectingRegion(result[0], result[1], spanX, spanY, dragView, null,
2208 mIntersectingViews);
2209 return !mIntersectingViews.isEmpty();
2210 }
2211
2212 void revertTempState() {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002213 completeAndClearReorderPreviewAnimations();
2214 if (isItemPlacementDirty() && !DESTRUCTIVE_REORDER) {
2215 final int count = mShortcutsAndWidgets.getChildCount();
2216 for (int i = 0; i < count; i++) {
2217 View child = mShortcutsAndWidgets.getChildAt(i);
2218 LayoutParams lp = (LayoutParams) child.getLayoutParams();
2219 if (lp.tmpCellX != lp.cellX || lp.tmpCellY != lp.cellY) {
2220 lp.tmpCellX = lp.cellX;
2221 lp.tmpCellY = lp.cellY;
2222 animateChildToPosition(child, lp.cellX, lp.cellY, REORDER_ANIMATION_DURATION,
2223 0, false, false);
2224 }
Adam Cohen19f37922012-03-21 11:59:11 -07002225 }
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002226 setItemPlacementDirty(false);
Adam Cohen19f37922012-03-21 11:59:11 -07002227 }
Adam Cohen19f37922012-03-21 11:59:11 -07002228 }
2229
Adam Cohenbebf0422012-04-11 18:06:28 -07002230 boolean createAreaForResize(int cellX, int cellY, int spanX, int spanY,
2231 View dragView, int[] direction, boolean commit) {
2232 int[] pixelXY = new int[2];
2233 regionToCenterPoint(cellX, cellY, spanX, spanY, pixelXY);
2234
2235 // First we determine if things have moved enough to cause a different layout
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002236 ItemConfiguration swapSolution = findReorderSolution(pixelXY[0], pixelXY[1], spanX, spanY,
Adam Cohenbebf0422012-04-11 18:06:28 -07002237 spanX, spanY, direction, dragView, true, new ItemConfiguration());
2238
2239 setUseTempCoords(true);
2240 if (swapSolution != null && swapSolution.isSolution) {
2241 // If we're just testing for a possible location (MODE_ACCEPT_DROP), we don't bother
2242 // committing anything or animating anything as we just want to determine if a solution
2243 // exists
2244 copySolutionToTempState(swapSolution, dragView);
2245 setItemPlacementDirty(true);
2246 animateItemsToSolution(swapSolution, dragView, commit);
2247
2248 if (commit) {
2249 commitTempPlacement();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002250 completeAndClearReorderPreviewAnimations();
Adam Cohenbebf0422012-04-11 18:06:28 -07002251 setItemPlacementDirty(false);
2252 } else {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002253 beginOrAdjustReorderPreviewAnimations(swapSolution, dragView,
2254 REORDER_ANIMATION_DURATION, ReorderPreviewAnimation.MODE_PREVIEW);
Adam Cohenbebf0422012-04-11 18:06:28 -07002255 }
2256 mShortcutsAndWidgets.requestLayout();
2257 }
2258 return swapSolution.isSolution;
2259 }
2260
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002261 int[] performReorder(int pixelX, int pixelY, int minSpanX, int minSpanY, int spanX, int spanY,
Adam Cohen482ed822012-03-02 14:15:13 -08002262 View dragView, int[] result, int resultSpan[], int mode) {
Adam Cohen482ed822012-03-02 14:15:13 -08002263 // First we determine if things have moved enough to cause a different layout
Adam Cohen47a876d2012-03-19 13:21:41 -07002264 result = findNearestArea(pixelX, pixelY, spanX, spanY, result);
Adam Cohen482ed822012-03-02 14:15:13 -08002265
2266 if (resultSpan == null) {
2267 resultSpan = new int[2];
2268 }
2269
Adam Cohen19f37922012-03-21 11:59:11 -07002270 // When we are checking drop validity or actually dropping, we don't recompute the
2271 // direction vector, since we want the solution to match the preview, and it's possible
2272 // that the exact position of the item has changed to result in a new reordering outcome.
Adam Cohenb209e632012-03-27 17:09:36 -07002273 if ((mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL || mode == MODE_ACCEPT_DROP)
2274 && mPreviousReorderDirection[0] != INVALID_DIRECTION) {
Adam Cohen19f37922012-03-21 11:59:11 -07002275 mDirectionVector[0] = mPreviousReorderDirection[0];
2276 mDirectionVector[1] = mPreviousReorderDirection[1];
2277 // We reset this vector after drop
Adam Cohenb209e632012-03-27 17:09:36 -07002278 if (mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL) {
2279 mPreviousReorderDirection[0] = INVALID_DIRECTION;
2280 mPreviousReorderDirection[1] = INVALID_DIRECTION;
Adam Cohen19f37922012-03-21 11:59:11 -07002281 }
2282 } else {
2283 getDirectionVectorForDrop(pixelX, pixelY, spanX, spanY, dragView, mDirectionVector);
2284 mPreviousReorderDirection[0] = mDirectionVector[0];
2285 mPreviousReorderDirection[1] = mDirectionVector[1];
2286 }
2287
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002288 // Find a solution involving pushing / displacing any items in the way
2289 ItemConfiguration swapSolution = findReorderSolution(pixelX, pixelY, minSpanX, minSpanY,
Adam Cohen482ed822012-03-02 14:15:13 -08002290 spanX, spanY, mDirectionVector, dragView, true, new ItemConfiguration());
2291
2292 // We attempt the approach which doesn't shuffle views at all
2293 ItemConfiguration noShuffleSolution = findConfigurationNoShuffle(pixelX, pixelY, minSpanX,
2294 minSpanY, spanX, spanY, dragView, new ItemConfiguration());
2295
2296 ItemConfiguration finalSolution = null;
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002297
2298 // If the reorder solution requires resizing (shrinking) the item being dropped, we instead
2299 // favor a solution in which the item is not resized, but
Adam Cohen482ed822012-03-02 14:15:13 -08002300 if (swapSolution.isSolution && swapSolution.area() >= noShuffleSolution.area()) {
2301 finalSolution = swapSolution;
2302 } else if (noShuffleSolution.isSolution) {
2303 finalSolution = noShuffleSolution;
2304 }
2305
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002306 if (mode == MODE_SHOW_REORDER_HINT) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002307 if (finalSolution != null) {
Adam Cohenfe692872013-12-11 14:47:23 -08002308 beginOrAdjustReorderPreviewAnimations(finalSolution, dragView, 0,
2309 ReorderPreviewAnimation.MODE_HINT);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002310 result[0] = finalSolution.cellX;
2311 result[1] = finalSolution.cellY;
2312 resultSpan[0] = finalSolution.spanX;
2313 resultSpan[1] = finalSolution.spanY;
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002314 } else {
2315 result[0] = result[1] = resultSpan[0] = resultSpan[1] = -1;
2316 }
2317 return result;
2318 }
2319
Adam Cohen482ed822012-03-02 14:15:13 -08002320 boolean foundSolution = true;
2321 if (!DESTRUCTIVE_REORDER) {
2322 setUseTempCoords(true);
2323 }
2324
2325 if (finalSolution != null) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002326 result[0] = finalSolution.cellX;
2327 result[1] = finalSolution.cellY;
2328 resultSpan[0] = finalSolution.spanX;
2329 resultSpan[1] = finalSolution.spanY;
Adam Cohen482ed822012-03-02 14:15:13 -08002330
2331 // If we're just testing for a possible location (MODE_ACCEPT_DROP), we don't bother
2332 // committing anything or animating anything as we just want to determine if a solution
2333 // exists
2334 if (mode == MODE_DRAG_OVER || mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL) {
2335 if (!DESTRUCTIVE_REORDER) {
2336 copySolutionToTempState(finalSolution, dragView);
2337 }
2338 setItemPlacementDirty(true);
2339 animateItemsToSolution(finalSolution, dragView, mode == MODE_ON_DROP);
2340
Adam Cohen19f37922012-03-21 11:59:11 -07002341 if (!DESTRUCTIVE_REORDER &&
2342 (mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL)) {
Adam Cohen482ed822012-03-02 14:15:13 -08002343 commitTempPlacement();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002344 completeAndClearReorderPreviewAnimations();
Adam Cohen19f37922012-03-21 11:59:11 -07002345 setItemPlacementDirty(false);
2346 } else {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002347 beginOrAdjustReorderPreviewAnimations(finalSolution, dragView,
2348 REORDER_ANIMATION_DURATION, ReorderPreviewAnimation.MODE_PREVIEW);
Adam Cohen482ed822012-03-02 14:15:13 -08002349 }
2350 }
2351 } else {
2352 foundSolution = false;
2353 result[0] = result[1] = resultSpan[0] = resultSpan[1] = -1;
2354 }
2355
2356 if ((mode == MODE_ON_DROP || !foundSolution) && !DESTRUCTIVE_REORDER) {
2357 setUseTempCoords(false);
2358 }
Adam Cohen482ed822012-03-02 14:15:13 -08002359
Michael Jurkaa52570f2012-03-20 03:18:20 -07002360 mShortcutsAndWidgets.requestLayout();
Adam Cohen482ed822012-03-02 14:15:13 -08002361 return result;
2362 }
2363
Adam Cohen19f37922012-03-21 11:59:11 -07002364 void setItemPlacementDirty(boolean dirty) {
2365 mItemPlacementDirty = dirty;
Adam Cohen482ed822012-03-02 14:15:13 -08002366 }
Adam Cohen19f37922012-03-21 11:59:11 -07002367 boolean isItemPlacementDirty() {
2368 return mItemPlacementDirty;
Adam Cohen482ed822012-03-02 14:15:13 -08002369 }
2370
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002371 private static class ItemConfiguration extends CellAndSpan {
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07002372 final ArrayMap<View, CellAndSpan> map = new ArrayMap<>();
2373 private final ArrayMap<View, CellAndSpan> savedMap = new ArrayMap<>();
2374 final ArrayList<View> sortedViews = new ArrayList<>();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002375 ArrayList<View> intersectingViews;
Adam Cohen482ed822012-03-02 14:15:13 -08002376 boolean isSolution = false;
Adam Cohen482ed822012-03-02 14:15:13 -08002377
Adam Cohenf3900c22012-11-16 18:28:11 -08002378 void save() {
2379 // Copy current state into savedMap
2380 for (View v: map.keySet()) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002381 savedMap.get(v).copyFrom(map.get(v));
Adam Cohenf3900c22012-11-16 18:28:11 -08002382 }
2383 }
2384
2385 void restore() {
2386 // Restore current state from savedMap
2387 for (View v: savedMap.keySet()) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002388 map.get(v).copyFrom(savedMap.get(v));
Adam Cohenf3900c22012-11-16 18:28:11 -08002389 }
2390 }
2391
2392 void add(View v, CellAndSpan cs) {
2393 map.put(v, cs);
2394 savedMap.put(v, new CellAndSpan());
2395 sortedViews.add(v);
2396 }
2397
Adam Cohen482ed822012-03-02 14:15:13 -08002398 int area() {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002399 return spanX * spanY;
Adam Cohenf3900c22012-11-16 18:28:11 -08002400 }
2401
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002402 void getBoundingRectForViews(ArrayList<View> views, Rect outRect) {
2403 boolean first = true;
2404 for (View v: views) {
2405 CellAndSpan c = map.get(v);
2406 if (first) {
2407 outRect.set(c.cellX, c.cellY, c.cellX + c.spanX, c.cellY + c.spanY);
2408 first = false;
2409 } else {
2410 outRect.union(c.cellX, c.cellY, c.cellX + c.spanX, c.cellY + c.spanY);
2411 }
2412 }
Adam Cohenf3900c22012-11-16 18:28:11 -08002413 }
Adam Cohen482ed822012-03-02 14:15:13 -08002414 }
2415
Adam Cohendf035382011-04-11 17:22:04 -07002416 /**
Adam Cohendf035382011-04-11 17:22:04 -07002417 * Find a starting cell position that will fit the given bounds nearest the requested
2418 * cell location. Uses Euclidean distance to score multiple vacant areas.
2419 *
2420 * @param pixelX The X location at which you want to search for a vacant area.
2421 * @param pixelY The Y location at which you want to search for a vacant area.
2422 * @param spanX Horizontal span of the object.
2423 * @param spanY Vertical span of the object.
Adam Cohendf035382011-04-11 17:22:04 -07002424 * @param result Previously returned value to possibly recycle.
2425 * @return The X, Y cell of a vacant area that can contain this object,
2426 * nearest the requested location.
2427 */
Adam Cohenf9c184a2016-01-15 16:47:43 -08002428 public int[] findNearestArea(int pixelX, int pixelY, int spanX, int spanY, int[] result) {
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002429 return findNearestArea(pixelX, pixelY, spanX, spanY, spanX, spanY, false, result, null);
Adam Cohendf035382011-04-11 17:22:04 -07002430 }
2431
Michael Jurka0280c3b2010-09-17 15:00:07 -07002432 boolean existsEmptyCell() {
2433 return findCellForSpan(null, 1, 1);
2434 }
2435
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002436 /**
Michael Jurka0280c3b2010-09-17 15:00:07 -07002437 * Finds the upper-left coordinate of the first rectangle in the grid that can
2438 * hold a cell of the specified dimensions. If intersectX and intersectY are not -1,
2439 * then this method will only return coordinates for rectangles that contain the cell
2440 * (intersectX, intersectY)
2441 *
2442 * @param cellXY The array that will contain the position of a vacant cell if such a cell
2443 * can be found.
2444 * @param spanX The horizontal span of the cell we want to find.
2445 * @param spanY The vertical span of the cell we want to find.
2446 *
2447 * @return True if a vacant cell of the specified dimension was found, false otherwise.
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002448 */
Hyunyoung Song3f471442015-04-08 19:01:34 -07002449 public boolean findCellForSpan(int[] cellXY, int spanX, int spanY) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002450 if (cellXY == null) {
2451 cellXY = new int[2];
Michael Jurka0280c3b2010-09-17 15:00:07 -07002452 }
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002453 return mOccupied.findVacantCell(cellXY, spanX, spanY);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002454 }
2455
2456 /**
Winson Chungc07918d2011-07-01 15:35:26 -07002457 * A drag event has begun over this layout.
2458 * It may have begun over this layout (in which case onDragChild is called first),
2459 * or it may have begun on another layout.
2460 */
2461 void onDragEnter() {
Winson Chungc07918d2011-07-01 15:35:26 -07002462 mDragging = true;
2463 }
2464
2465 /**
Michael Jurka0280c3b2010-09-17 15:00:07 -07002466 * Called when drag has left this CellLayout or has been completed (successfully or not)
2467 */
2468 void onDragExit() {
Joe Onorato4be866d2010-10-10 11:26:02 -07002469 // This can actually be called when we aren't in a drag, e.g. when adding a new
2470 // item to this layout via the customize drawer.
2471 // Guard against that case.
2472 if (mDragging) {
2473 mDragging = false;
Patrick Dubroyde7658b2010-09-27 11:15:43 -07002474 }
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07002475
2476 // Invalidate the drag data
Adam Cohend41fbf52012-02-16 23:53:59 -08002477 mDragCell[0] = mDragCell[1] = -1;
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07002478 mDragOutlineAnims[mDragOutlineCurrent].animateOut();
2479 mDragOutlineCurrent = (mDragOutlineCurrent + 1) % mDragOutlineAnims.length;
Adam Cohen19f37922012-03-21 11:59:11 -07002480 revertTempState();
Michael Jurka33945b22010-12-21 18:19:38 -08002481 setIsDragOverlapping(false);
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002482 }
2483
2484 /**
Winson Chungaafa03c2010-06-11 17:34:16 -07002485 * Mark a child as having been dropped.
Patrick Dubroyde7658b2010-09-27 11:15:43 -07002486 * At the beginning of the drag operation, the child may have been on another
Patrick Dubroyce34a972010-10-19 10:34:32 -07002487 * screen, but it is re-parented before this method is called.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002488 *
2489 * @param child The child that is being dropped
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002490 */
Adam Cohen716b51e2011-06-30 12:09:54 -07002491 void onDropChild(View child) {
Romain Guyd94533d2009-08-17 10:01:15 -07002492 if (child != null) {
2493 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Romain Guy84f296c2009-11-04 15:00:44 -08002494 lp.dropped = true;
Romain Guyd94533d2009-08-17 10:01:15 -07002495 child.requestLayout();
Tony Wickham1cdb6d02015-09-17 11:08:27 -07002496 markCellsAsOccupiedForView(child);
Romain Guyd94533d2009-08-17 10:01:15 -07002497 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002498 }
2499
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002500 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002501 * Computes a bounding rectangle for a range of cells
Winson Chungaafa03c2010-06-11 17:34:16 -07002502 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002503 * @param cellX X coordinate of upper left corner expressed as a cell position
2504 * @param cellY Y coordinate of upper left corner expressed as a cell position
Winson Chungaafa03c2010-06-11 17:34:16 -07002505 * @param cellHSpan Width in cells
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002506 * @param cellVSpan Height in cells
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002507 * @param resultRect Rect into which to put the results
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002508 */
Adam Cohend41fbf52012-02-16 23:53:59 -08002509 public void cellToRect(int cellX, int cellY, int cellHSpan, int cellVSpan, Rect resultRect) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002510 final int cellWidth = mCellWidth;
2511 final int cellHeight = mCellHeight;
Winson Chungaafa03c2010-06-11 17:34:16 -07002512
Winson Chung4b825dcd2011-06-19 12:41:22 -07002513 final int hStartPadding = getPaddingLeft();
2514 final int vStartPadding = getPaddingTop();
Winson Chungaafa03c2010-06-11 17:34:16 -07002515
Sunny Goyalaa8a8712016-11-20 15:26:01 +05302516 int width = cellHSpan * cellWidth;
2517 int height = cellVSpan * cellHeight;
2518 int x = hStartPadding + cellX * cellWidth;
2519 int y = vStartPadding + cellY * cellHeight;
Winson Chungaafa03c2010-06-11 17:34:16 -07002520
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002521 resultRect.set(x, y, x + width, y + height);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002522 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002523
Adam Cohend4844c32011-02-18 19:25:06 -08002524 public void markCellsAsOccupiedForView(View view) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002525 if (view == null || view.getParent() != mShortcutsAndWidgets) return;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002526 LayoutParams lp = (LayoutParams) view.getLayoutParams();
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002527 mOccupied.markCells(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan, true);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002528 }
2529
Adam Cohend4844c32011-02-18 19:25:06 -08002530 public void markCellsAsUnoccupiedForView(View view) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002531 if (view == null || view.getParent() != mShortcutsAndWidgets) return;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002532 LayoutParams lp = (LayoutParams) view.getLayoutParams();
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002533 mOccupied.markCells(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002534 }
2535
Adam Cohen2801caf2011-05-13 20:57:39 -07002536 public int getDesiredWidth() {
Sunny Goyalaa8a8712016-11-20 15:26:01 +05302537 return getPaddingLeft() + getPaddingRight() + (mCountX * mCellWidth);
Adam Cohen2801caf2011-05-13 20:57:39 -07002538 }
2539
2540 public int getDesiredHeight() {
Sunny Goyalaa8a8712016-11-20 15:26:01 +05302541 return getPaddingTop() + getPaddingBottom() + (mCountY * mCellHeight);
Adam Cohen2801caf2011-05-13 20:57:39 -07002542 }
2543
Michael Jurka66d72172011-04-12 16:29:25 -07002544 public boolean isOccupied(int x, int y) {
2545 if (x < mCountX && y < mCountY) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002546 return mOccupied.cells[x][y];
Michael Jurka66d72172011-04-12 16:29:25 -07002547 } else {
2548 throw new RuntimeException("Position exceeds the bound of this CellLayout");
2549 }
2550 }
2551
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002552 @Override
2553 public ViewGroup.LayoutParams generateLayoutParams(AttributeSet attrs) {
2554 return new CellLayout.LayoutParams(getContext(), attrs);
2555 }
2556
2557 @Override
2558 protected boolean checkLayoutParams(ViewGroup.LayoutParams p) {
2559 return p instanceof CellLayout.LayoutParams;
2560 }
2561
2562 @Override
2563 protected ViewGroup.LayoutParams generateLayoutParams(ViewGroup.LayoutParams p) {
2564 return new CellLayout.LayoutParams(p);
2565 }
2566
2567 public static class LayoutParams extends ViewGroup.MarginLayoutParams {
2568 /**
2569 * Horizontal location of the item in the grid.
2570 */
2571 @ViewDebug.ExportedProperty
2572 public int cellX;
2573
2574 /**
2575 * Vertical location of the item in the grid.
2576 */
2577 @ViewDebug.ExportedProperty
2578 public int cellY;
2579
2580 /**
Adam Cohen482ed822012-03-02 14:15:13 -08002581 * Temporary horizontal location of the item in the grid during reorder
2582 */
2583 public int tmpCellX;
2584
2585 /**
2586 * Temporary vertical location of the item in the grid during reorder
2587 */
2588 public int tmpCellY;
2589
2590 /**
2591 * Indicates that the temporary coordinates should be used to layout the items
2592 */
2593 public boolean useTmpCoords;
2594
2595 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002596 * Number of cells spanned horizontally by the item.
2597 */
2598 @ViewDebug.ExportedProperty
2599 public int cellHSpan;
2600
2601 /**
2602 * Number of cells spanned vertically by the item.
2603 */
2604 @ViewDebug.ExportedProperty
2605 public int cellVSpan;
Winson Chungaafa03c2010-06-11 17:34:16 -07002606
Adam Cohen1b607ed2011-03-03 17:26:50 -08002607 /**
2608 * Indicates whether the item will set its x, y, width and height parameters freely,
2609 * or whether these will be computed based on cellX, cellY, cellHSpan and cellVSpan.
2610 */
Adam Cohend4844c32011-02-18 19:25:06 -08002611 public boolean isLockedToGrid = true;
2612
Adam Cohen482ed822012-03-02 14:15:13 -08002613 /**
2614 * Indicates whether this item can be reordered. Always true except in the case of the
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07002615 * the AllApps button and QSB place holder.
Adam Cohen482ed822012-03-02 14:15:13 -08002616 */
2617 public boolean canReorder = true;
2618
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002619 // X coordinate of the view in the layout.
2620 @ViewDebug.ExportedProperty
Vadim Tryshevfedca432015-08-19 17:55:02 -07002621 public int x;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002622 // Y coordinate of the view in the layout.
2623 @ViewDebug.ExportedProperty
Vadim Tryshevfedca432015-08-19 17:55:02 -07002624 public int y;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002625
Romain Guy84f296c2009-11-04 15:00:44 -08002626 boolean dropped;
Romain Guyfcb9e712009-10-02 16:06:52 -07002627
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002628 public LayoutParams(Context c, AttributeSet attrs) {
2629 super(c, attrs);
2630 cellHSpan = 1;
2631 cellVSpan = 1;
2632 }
2633
2634 public LayoutParams(ViewGroup.LayoutParams source) {
2635 super(source);
2636 cellHSpan = 1;
2637 cellVSpan = 1;
2638 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002639
2640 public LayoutParams(LayoutParams source) {
2641 super(source);
2642 this.cellX = source.cellX;
2643 this.cellY = source.cellY;
2644 this.cellHSpan = source.cellHSpan;
2645 this.cellVSpan = source.cellVSpan;
2646 }
2647
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002648 public LayoutParams(int cellX, int cellY, int cellHSpan, int cellVSpan) {
Romain Guy8f19cdd2010-01-08 15:07:00 -08002649 super(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002650 this.cellX = cellX;
2651 this.cellY = cellY;
2652 this.cellHSpan = cellHSpan;
2653 this.cellVSpan = cellVSpan;
2654 }
2655
Sunny Goyalaa8a8712016-11-20 15:26:01 +05302656 public void setup(int cellWidth, int cellHeight, boolean invertHorizontally, int colCount) {
Jon Miranda7ae64ff2016-11-21 16:18:46 -08002657 setup(cellWidth, cellHeight, invertHorizontally, colCount, 1.0f, 1.0f);
2658 }
2659
2660 /**
2661 * Use this method, as opposed to {@link #setup(int, int, boolean, int)}, if the view needs
2662 * to be scaled.
2663 *
2664 * ie. In multi-window mode, we setup widgets so that they are measured and laid out
2665 * using their full/invariant device profile sizes.
2666 */
2667 public void setup(int cellWidth, int cellHeight, boolean invertHorizontally, int colCount,
2668 float cellScaleX, float cellScaleY) {
Adam Cohend4844c32011-02-18 19:25:06 -08002669 if (isLockedToGrid) {
2670 final int myCellHSpan = cellHSpan;
2671 final int myCellVSpan = cellVSpan;
Adam Cohen2374abf2013-04-16 14:56:57 -07002672 int myCellX = useTmpCoords ? tmpCellX : cellX;
2673 int myCellY = useTmpCoords ? tmpCellY : cellY;
2674
2675 if (invertHorizontally) {
2676 myCellX = colCount - myCellX - cellHSpan;
2677 }
Adam Cohen1b607ed2011-03-03 17:26:50 -08002678
Jon Miranda7ae64ff2016-11-21 16:18:46 -08002679 width = (int) (myCellHSpan * cellWidth / cellScaleX - leftMargin - rightMargin);
2680 height = (int) (myCellVSpan * cellHeight / cellScaleY - topMargin - bottomMargin);
Sunny Goyalaa8a8712016-11-20 15:26:01 +05302681 x = (myCellX * cellWidth + leftMargin);
2682 y = (myCellY * cellHeight + topMargin);
Adam Cohend4844c32011-02-18 19:25:06 -08002683 }
2684 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002685
Sunny Goyal11a50742019-08-07 09:24:26 -07002686 /**
2687 * Sets the position to the provided point
2688 */
2689 public void setXY(Point point) {
2690 cellX = point.x;
2691 cellY = point.y;
2692 }
2693
Winson Chungaafa03c2010-06-11 17:34:16 -07002694 public String toString() {
2695 return "(" + this.cellX + ", " + this.cellY + ")";
2696 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002697 }
2698
Michael Jurka0280c3b2010-09-17 15:00:07 -07002699 // This class stores info for two purposes:
2700 // 1. When dragging items (mDragInfo in Workspace), we store the View, its cellX & cellY,
2701 // its spanX, spanY, and the screen it is on
2702 // 2. When long clicking on an empty cell in a CellLayout, we save information about the
2703 // cellX and cellY coordinates and which page was clicked. We then set this as a tag on
2704 // the CellLayout that was long clicked
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002705 public static final class CellInfo extends CellAndSpan {
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07002706 public final View cell;
Sunny Goyalefb7e842018-10-04 15:11:00 -07002707 final int screenId;
2708 final int container;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002709
Sunny Goyal83a8f042015-05-19 12:52:12 -07002710 public CellInfo(View v, ItemInfo info) {
Adam Cohene0aaa0d2014-05-12 12:44:22 -07002711 cellX = info.cellX;
2712 cellY = info.cellY;
2713 spanX = info.spanX;
2714 spanY = info.spanY;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002715 cell = v;
Adam Cohene0aaa0d2014-05-12 12:44:22 -07002716 screenId = info.screenId;
2717 container = info.container;
2718 }
2719
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002720 @Override
2721 public String toString() {
Winson Chungaafa03c2010-06-11 17:34:16 -07002722 return "Cell[view=" + (cell == null ? "null" : cell.getClass())
2723 + ", x=" + cellX + ", y=" + cellY + "]";
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002724 }
2725 }
Michael Jurkad771c962011-08-09 15:00:48 -07002726
Tony Wickham86930612015-09-09 13:50:40 -07002727 /**
Samuel Fufa1e2d0042019-11-18 17:12:46 -08002728 * A Delegated cell Drawing for drawing on CellLayout
2729 */
2730 public abstract static class DelegatedCellDrawing {
2731 public int mDelegateCellX;
2732 public int mDelegateCellY;
2733
2734 /**
2735 * Draw under CellLayout
2736 */
2737 public abstract void drawUnderItem(Canvas canvas);
2738
2739 /**
2740 * Draw over CellLayout
2741 */
2742 public abstract void drawOverItem(Canvas canvas);
2743 }
2744
2745 /**
Tony Wickham86930612015-09-09 13:50:40 -07002746 * Returns whether an item can be placed in this CellLayout (after rearranging and/or resizing
2747 * if necessary).
2748 */
2749 public boolean hasReorderSolution(ItemInfo itemInfo) {
2750 int[] cellPoint = new int[2];
2751 // Check for a solution starting at every cell.
2752 for (int cellX = 0; cellX < getCountX(); cellX++) {
2753 for (int cellY = 0; cellY < getCountY(); cellY++) {
2754 cellToPoint(cellX, cellY, cellPoint);
2755 if (findReorderSolution(cellPoint[0], cellPoint[1], itemInfo.minSpanX,
2756 itemInfo.minSpanY, itemInfo.spanX, itemInfo.spanY, mDirectionVector, null,
2757 true, new ItemConfiguration()).isSolution) {
2758 return true;
2759 }
2760 }
2761 }
2762 return false;
2763 }
2764
Samuel Fufaa4211432020-02-25 18:47:54 -08002765 /**
2766 * Finds solution to accept hotseat migration to cell layout. commits solution if commitConfig
2767 */
2768 public boolean makeSpaceForHotseatMigration(boolean commitConfig) {
Samuel Fufaa4211432020-02-25 18:47:54 -08002769 int[] cellPoint = new int[2];
2770 int[] directionVector = new int[]{0, -1};
2771 cellToPoint(0, mCountY, cellPoint);
2772 ItemConfiguration configuration = new ItemConfiguration();
2773 if (findReorderSolution(cellPoint[0], cellPoint[1], mCountX, 1, mCountX, 1,
2774 directionVector, null, false, configuration).isSolution) {
2775 if (commitConfig) {
2776 copySolutionToTempState(configuration, null);
2777 commitTempPlacement();
Samuel Fufa82bbdac2020-03-09 18:24:47 -07002778 // undo marking cells occupied since there is actually nothing being placed yet.
2779 mOccupied.markCells(0, mCountY - 1, mCountX, 1, false);
Samuel Fufaa4211432020-02-25 18:47:54 -08002780 }
2781 return true;
2782 }
2783 return false;
2784 }
2785
Samuel Fufa82bbdac2020-03-09 18:24:47 -07002786 /**
2787 * returns a copy of cell layout's grid occupancy
2788 */
2789 public GridOccupancy cloneGridOccupancy() {
2790 GridOccupancy occupancy = new GridOccupancy(mCountX, mCountY);
2791 mOccupied.copyTo(occupancy);
2792 return occupancy;
2793 }
2794
Sunny Goyal9ca9c132015-04-29 14:57:22 -07002795 public boolean isRegionVacant(int x, int y, int spanX, int spanY) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002796 return mOccupied.isRegionVacant(x, y, spanX, spanY);
Sunny Goyal9ca9c132015-04-29 14:57:22 -07002797 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002798}