blob: 260abd1aa2d1e639b098aeeba1d3dcdd768d00b5 [file] [log] [blame]
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Daniel Sandler325dc232013-06-05 22:57:57 -040017package com.android.launcher3;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080018
Joe Onorato4be866d2010-10-10 11:26:02 -070019import android.animation.Animator;
Michael Jurka629758f2012-06-14 16:18:21 -070020import android.animation.AnimatorListenerAdapter;
Sunny Goyal849c6a22018-08-08 16:33:46 -070021import android.animation.ObjectAnimator;
Chet Haase00397b12010-10-07 11:13:10 -070022import android.animation.TimeInterpolator;
Patrick Dubroyde7658b2010-09-27 11:15:43 -070023import android.animation.ValueAnimator;
24import android.animation.ValueAnimator.AnimatorUpdateListener;
Sunny Goyal726bee72018-03-05 12:54:24 -080025import android.annotation.SuppressLint;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080026import android.content.Context;
Joe Onorato79e56262009-09-21 15:23:04 -040027import android.content.res.Resources;
Sunny Goyalc13403c2016-11-18 23:44:48 -080028import android.content.res.TypedArray;
Joe Onorato4be866d2010-10-10 11:26:02 -070029import android.graphics.Bitmap;
Winson Chungaafa03c2010-06-11 17:34:16 -070030import android.graphics.Canvas;
Andrew Flynn0dca1ec2012-02-29 13:33:22 -080031import android.graphics.Color;
Joe Onorato4be866d2010-10-10 11:26:02 -070032import android.graphics.Paint;
Patrick Dubroyde7658b2010-09-27 11:15:43 -070033import android.graphics.Point;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080034import android.graphics.Rect;
Adam Cohen482ed822012-03-02 14:15:13 -080035import android.graphics.drawable.ColorDrawable;
Patrick Dubroy6569f2c2010-07-12 14:25:18 -070036import android.graphics.drawable.Drawable;
Adam Cohen1462de32012-07-24 22:34:36 -070037import android.os.Parcelable;
Sunny Goyal849c6a22018-08-08 16:33:46 -070038import android.os.SystemClock;
Sunny Goyalc13403c2016-11-18 23:44:48 -080039import android.support.annotation.IntDef;
Adam Cohenc9735cf2015-01-23 16:11:55 -080040import android.support.v4.view.ViewCompat;
Rajeev Kumar9962dbe2017-06-12 12:16:20 -070041import android.util.ArrayMap;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080042import android.util.AttributeSet;
Joe Onorato4be866d2010-10-10 11:26:02 -070043import android.util.Log;
Sunny Goyal849c6a22018-08-08 16:33:46 -070044import android.util.Property;
Adam Cohen1462de32012-07-24 22:34:36 -070045import android.util.SparseArray;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080046import android.view.MotionEvent;
47import android.view.View;
48import android.view.ViewDebug;
49import android.view.ViewGroup;
Adam Cohenc9735cf2015-01-23 16:11:55 -080050import android.view.accessibility.AccessibilityEvent;
Sunny Goyal5bc6b6f2017-10-26 15:36:10 -070051
Sunny Goyalaa8ef112015-06-12 20:04:41 -070052import com.android.launcher3.LauncherSettings.Favorites;
Sunny Goyale9b651e2015-04-24 11:44:51 -070053import com.android.launcher3.accessibility.DragAndDropAccessibilityDelegate;
54import com.android.launcher3.accessibility.FolderAccessibilityHelper;
55import com.android.launcher3.accessibility.WorkspaceAccessibilityHelper;
Sunny 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 Goyalff4ba2d2016-04-02 14:12:34 -070061import com.android.launcher3.util.CellAndSpan;
62import com.android.launcher3.util.GridOccupancy;
Sunny Goyale2fd14b2015-08-27 17:45:46 -070063import com.android.launcher3.util.ParcelableSparseArray;
Sunny Goyal9b29ca52017-02-17 10:39:44 -080064import com.android.launcher3.util.Themes;
Adam Cohen091440a2015-03-18 14:16:05 -070065import com.android.launcher3.util.Thunk;
Sunny Goyal29947f02017-12-18 13:49:44 -080066import com.android.launcher3.widget.LauncherAppWidgetHostView;
Sunny Goyal5bc6b6f2017-10-26 15:36:10 -070067
Sunny Goyalc13403c2016-11-18 23:44:48 -080068import java.lang.annotation.Retention;
69import java.lang.annotation.RetentionPolicy;
Adam Cohen69ce2e52011-07-03 19:25:21 -070070import java.util.ArrayList;
Adam Cohenc0dcf592011-06-01 15:30:43 -070071import java.util.Arrays;
Adam Cohenf3900c22012-11-16 18:28:11 -080072import java.util.Collections;
73import java.util.Comparator;
Adam Cohend41fbf52012-02-16 23:53:59 -080074import java.util.Stack;
Adam Cohenc0dcf592011-06-01 15:30:43 -070075
Sunny Goyal726bee72018-03-05 12:54:24 -080076public class CellLayout extends ViewGroup {
Sunny Goyale9b651e2015-04-24 11:44:51 -070077 public static final int WORKSPACE_ACCESSIBILITY_DRAG = 2;
78 public static final int FOLDER_ACCESSIBILITY_DRAG = 1;
79
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
Rajeev Kumar9962dbe2017-06-12 12:16:20 -070083 private final Launcher mLauncher;
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;
Rajeev Kumar9962dbe2017-06-12 12:16:20 -0700107 private final StylusEventHelper mStylusEventHelper;
Michael Jurkadee05892010-07-27 10:01:56 -0700108
Jon Mirandaa0233f72017-06-22 18:34:45 -0700109 private final ArrayList<PreviewBackground> mFolderBackgrounds = new ArrayList<>();
110 final PreviewBackground mFolderLeaveBehind = new PreviewBackground();
Adam Cohen69ce2e52011-07-03 19:25:21 -0700111
Sunny Goyalf5440cb2016-12-14 15:13:00 -0800112 private static final int[] BACKGROUND_STATE_ACTIVE = new int[] { android.R.attr.state_active };
Sunny Goyale15e2a82017-12-15 13:05:42 -0800113 private static final int[] BACKGROUND_STATE_DEFAULT = EMPTY_STATE_SET;
Sunny Goyalf5440cb2016-12-14 15:13:00 -0800114 private final Drawable mBackground;
Sunny Goyal2805e632015-05-20 15:35:32 -0700115
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700116 // These values allow a fixed measurement to be set on the CellLayout.
117 private int mFixedWidth = -1;
118 private int mFixedHeight = -1;
119
Michael Jurka33945b22010-12-21 18:19:38 -0800120 // If we're actively dragging something over this screen, mIsDragOverlapping is true
121 private boolean mIsDragOverlapping = false;
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700122
Winson Chung150fbab2010-09-29 17:14:26 -0700123 // These arrays are used to implement the drag visualization on x-large screens.
Joe Onorato4be866d2010-10-10 11:26:02 -0700124 // They are used as circular arrays, indexed by mDragOutlineCurrent.
Rajeev Kumar9962dbe2017-06-12 12:16:20 -0700125 @Thunk final Rect[] mDragOutlines = new Rect[4];
126 @Thunk final float[] mDragOutlineAlphas = new float[mDragOutlines.length];
127 private final InterruptibleInOutAnimator[] mDragOutlineAnims =
Joe Onorato4be866d2010-10-10 11:26:02 -0700128 new InterruptibleInOutAnimator[mDragOutlines.length];
Winson Chung150fbab2010-09-29 17:14:26 -0700129
130 // Used as an index into the above 3 arrays; indicates which is the most current value.
Joe Onorato4be866d2010-10-10 11:26:02 -0700131 private int mDragOutlineCurrent = 0;
Patrick Dubroy8e58e912010-10-14 13:21:48 -0700132 private final Paint mDragOutlinePaint = new Paint();
Winson Chung150fbab2010-09-29 17:14:26 -0700133
Rajeev Kumar9962dbe2017-06-12 12:16:20 -0700134 @Thunk final ArrayMap<LayoutParams, Animator> mReorderAnimators = new ArrayMap<>();
135 @Thunk final ArrayMap<View, ReorderPreviewAnimation> mShakeAnimators = new ArrayMap<>();
Adam Cohen19f37922012-03-21 11:59:11 -0700136
137 private boolean mItemPlacementDirty = false;
Adam Cohenbfbfd262011-06-13 16:55:12 -0700138
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700139 // When a drag operation is in progress, holds the nearest cell to the touch point
140 private final int[] mDragCell = new int[2];
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800141
Joe Onorato4be866d2010-10-10 11:26:02 -0700142 private boolean mDragging = false;
143
Rajeev Kumar9962dbe2017-06-12 12:16:20 -0700144 private final TimeInterpolator mEaseOutInterpolator;
145 private final ShortcutAndWidgetContainer mShortcutsAndWidgets;
Patrick Dubroyce34a972010-10-19 10:34:32 -0700146
Sunny Goyalc13403c2016-11-18 23:44:48 -0800147 @Retention(RetentionPolicy.SOURCE)
148 @IntDef({WORKSPACE, HOTSEAT, FOLDER})
149 public @interface ContainerType{}
150 public static final int WORKSPACE = 0;
151 public static final int HOTSEAT = 1;
152 public static final int FOLDER = 2;
153
154 @ContainerType private final int mContainerType;
155
Jon Mirandab28c4fc2017-06-20 10:58:36 -0700156 private final float mChildScale = 1f;
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800157
Adam Cohenfa3c58f2013-12-06 16:10:55 -0800158 public static final int MODE_SHOW_REORDER_HINT = 0;
159 public static final int MODE_DRAG_OVER = 1;
160 public static final int MODE_ON_DROP = 2;
161 public static final int MODE_ON_DROP_EXTERNAL = 3;
162 public static final int MODE_ACCEPT_DROP = 4;
Adam Cohen19f37922012-03-21 11:59:11 -0700163 private static final boolean DESTRUCTIVE_REORDER = false;
Adam Cohen482ed822012-03-02 14:15:13 -0800164 private static final boolean DEBUG_VISUALIZE_OCCUPIED = false;
165
Adam Cohenfa3c58f2013-12-06 16:10:55 -0800166 private static final float REORDER_PREVIEW_MAGNITUDE = 0.12f;
Adam Cohen19f37922012-03-21 11:59:11 -0700167 private static final int REORDER_ANIMATION_DURATION = 150;
Sunny Goyalc13403c2016-11-18 23:44:48 -0800168 @Thunk final float mReorderPreviewAnimationMagnitude;
Adam Cohen19f37922012-03-21 11:59:11 -0700169
Rajeev Kumar9962dbe2017-06-12 12:16:20 -0700170 private final ArrayList<View> mIntersectingViews = new ArrayList<>();
171 private final Rect mOccupiedRect = new Rect();
172 private final int[] mDirectionVector = new int[2];
173 final int[] mPreviousReorderDirection = new int[2];
Adam Cohenb209e632012-03-27 17:09:36 -0700174 private static final int INVALID_DIRECTION = -100;
Adam Cohen482ed822012-03-02 14:15:13 -0800175
Sunny Goyal2805e632015-05-20 15:35:32 -0700176 private final Rect mTempRect = new Rect();
Winson Chung3a6e7f32013-10-09 15:50:52 -0700177
Michael Jurkaca993832012-06-29 15:17:04 -0700178 private final static Paint sPaint = new Paint();
Romain Guy8a0bff52012-05-06 13:14:33 -0700179
Adam Cohenc9735cf2015-01-23 16:11:55 -0800180 // Related to accessible drag and drop
Sunny Goyale9b651e2015-04-24 11:44:51 -0700181 private DragAndDropAccessibilityDelegate mTouchHelper;
Adam Cohenc9735cf2015-01-23 16:11:55 -0800182 private boolean mUseTouchHelper = false;
Adam Cohenc9735cf2015-01-23 16:11:55 -0800183
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800184 public CellLayout(Context context) {
185 this(context, null);
186 }
187
188 public CellLayout(Context context, AttributeSet attrs) {
189 this(context, attrs, 0);
190 }
191
192 public CellLayout(Context context, AttributeSet attrs, int defStyle) {
193 super(context, attrs, defStyle);
Sunny Goyalc13403c2016-11-18 23:44:48 -0800194 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.CellLayout, defStyle, 0);
195 mContainerType = a.getInteger(R.styleable.CellLayout_containerType, WORKSPACE);
196 a.recycle();
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700197
198 // A ViewGroup usually does not draw, but CellLayout needs to draw a rectangle to show
199 // the user where a dragged item will land when dropped.
200 setWillNotDraw(false);
Romain Guyce3cbd12013-02-25 15:00:36 -0800201 setClipToPadding(false);
Tony2fd02082016-10-07 12:50:01 -0700202 mLauncher = Launcher.getLauncher(context);
Michael Jurkaa63c4522010-08-19 13:52:27 -0700203
Adam Cohen2e6da152015-05-06 11:42:25 -0700204 DeviceProfile grid = mLauncher.getDeviceProfile();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800205
Winson Chung11a1a532013-09-13 11:14:45 -0700206 mCellWidth = mCellHeight = -1;
Nilesh Agrawal5f7099a2014-01-02 15:54:57 -0800207 mFixedCellWidth = mFixedCellHeight = -1;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -0700208
209 mCountX = grid.inv.numColumns;
210 mCountY = grid.inv.numRows;
211 mOccupied = new GridOccupancy(mCountX, mCountY);
212 mTmpOccupied = new GridOccupancy(mCountX, mCountY);
213
Adam Cohen5b53f292012-03-29 14:30:35 -0700214 mPreviousReorderDirection[0] = INVALID_DIRECTION;
215 mPreviousReorderDirection[1] = INVALID_DIRECTION;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800216
Adam Cohenefca0272016-02-24 19:19:06 -0800217 mFolderLeaveBehind.delegateCellX = -1;
218 mFolderLeaveBehind.delegateCellY = -1;
219
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800220 setAlwaysDrawnWithCacheEnabled(false);
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700221 final Resources res = getResources();
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700222
Sunny Goyalf5440cb2016-12-14 15:13:00 -0800223 mBackground = res.getDrawable(R.drawable.bg_celllayout);
Sunny Goyal2805e632015-05-20 15:35:32 -0700224 mBackground.setCallback(this);
Sunny Goyalaeb16432017-10-16 11:46:41 -0700225 mBackground.setAlpha(0);
Michael Jurka33945b22010-12-21 18:19:38 -0800226
Sunny Goyalc13403c2016-11-18 23:44:48 -0800227 mReorderPreviewAnimationMagnitude = (REORDER_PREVIEW_MAGNITUDE * grid.iconSizePx);
Adam Cohen19f37922012-03-21 11:59:11 -0700228
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700229 // Initialize the data structures used for the drag visualization.
Sunny Goyal5bc6b6f2017-10-26 15:36:10 -0700230 mEaseOutInterpolator = Interpolators.DEACCEL_2_5; // Quint ease out
Winson Chungb8c69f32011-10-19 21:36:08 -0700231 mDragCell[0] = mDragCell[1] = -1;
Joe Onorato4be866d2010-10-10 11:26:02 -0700232 for (int i = 0; i < mDragOutlines.length; i++) {
Adam Cohend41fbf52012-02-16 23:53:59 -0800233 mDragOutlines[i] = new Rect(-1, -1, -1, -1);
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700234 }
Mario Bertschler54ba6012017-06-08 10:53:53 -0700235 mDragOutlinePaint.setColor(Themes.getAttrColor(context, R.attr.workspaceTextColor));
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700236
237 // When dragging things around the home screens, we show a green outline of
238 // where the item will land. The outlines gradually fade out, leaving a trail
239 // behind the drag path.
240 // Set up all the animations that are used to implement this fading.
241 final int duration = res.getInteger(R.integer.config_dragOutlineFadeTime);
Chet Haase472b2812010-10-14 07:02:04 -0700242 final float fromAlphaValue = 0;
243 final float toAlphaValue = (float)res.getInteger(R.integer.config_dragOutlineMaxAlpha);
Joe Onorato4be866d2010-10-10 11:26:02 -0700244
Patrick Dubroy8e58e912010-10-14 13:21:48 -0700245 Arrays.fill(mDragOutlineAlphas, fromAlphaValue);
Joe Onorato4be866d2010-10-10 11:26:02 -0700246
247 for (int i = 0; i < mDragOutlineAnims.length; i++) {
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700248 final InterruptibleInOutAnimator anim =
Sunny Goyal849c6a22018-08-08 16:33:46 -0700249 new InterruptibleInOutAnimator(duration, fromAlphaValue, toAlphaValue);
Patrick Dubroyce34a972010-10-19 10:34:32 -0700250 anim.getAnimator().setInterpolator(mEaseOutInterpolator);
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700251 final int thisIndex = i;
Chet Haase472b2812010-10-14 07:02:04 -0700252 anim.getAnimator().addUpdateListener(new AnimatorUpdateListener() {
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700253 public void onAnimationUpdate(ValueAnimator animation) {
Joe Onorato4be866d2010-10-10 11:26:02 -0700254 final Bitmap outline = (Bitmap)anim.getTag();
255
256 // If an animation is started and then stopped very quickly, we can still
257 // get spurious updates we've cleared the tag. Guard against this.
258 if (outline == null) {
Tony Wickhama0628cc2015-10-14 15:23:04 -0700259 if (LOGD) {
Patrick Dubroyfe6bd872010-10-13 17:32:10 -0700260 Object val = animation.getAnimatedValue();
261 Log.d(TAG, "anim " + thisIndex + " update: " + val +
262 ", isStopped " + anim.isStopped());
263 }
Joe Onorato4be866d2010-10-10 11:26:02 -0700264 // Try to prevent it from continuing to run
265 animation.cancel();
266 } else {
Chet Haase472b2812010-10-14 07:02:04 -0700267 mDragOutlineAlphas[thisIndex] = (Float) animation.getAnimatedValue();
Adam Cohend41fbf52012-02-16 23:53:59 -0800268 CellLayout.this.invalidate(mDragOutlines[thisIndex]);
Joe Onorato4be866d2010-10-10 11:26:02 -0700269 }
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700270 }
271 });
Joe Onorato4be866d2010-10-10 11:26:02 -0700272 // The animation holds a reference to the drag outline bitmap as long is it's
273 // running. This way the bitmap can be GCed when the animations are complete.
Chet Haase472b2812010-10-14 07:02:04 -0700274 anim.getAnimator().addListener(new AnimatorListenerAdapter() {
Michael Jurka3c4c20f2010-10-28 15:36:06 -0700275 @Override
Joe Onorato4be866d2010-10-10 11:26:02 -0700276 public void onAnimationEnd(Animator animation) {
Chet Haase472b2812010-10-14 07:02:04 -0700277 if ((Float) ((ValueAnimator) animation).getAnimatedValue() == 0f) {
Joe Onorato4be866d2010-10-10 11:26:02 -0700278 anim.setTag(null);
279 }
280 }
281 });
282 mDragOutlineAnims[i] = anim;
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700283 }
Patrick Dubroyce34a972010-10-19 10:34:32 -0700284
Sunny Goyalc13403c2016-11-18 23:44:48 -0800285 mShortcutsAndWidgets = new ShortcutAndWidgetContainer(context, mContainerType);
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530286 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mCountX, mCountY);
Adam Cohen2374abf2013-04-16 14:56:57 -0700287
Mady Mellorbb835202015-07-15 16:34:34 -0700288 mStylusEventHelper = new StylusEventHelper(new SimpleOnStylusPressListener(this), this);
Michael Jurkaa52570f2012-03-20 03:18:20 -0700289 addView(mShortcutsAndWidgets);
Michael Jurka18014792010-10-14 09:01:34 -0700290 }
291
Sunny Goyale9b651e2015-04-24 11:44:51 -0700292 public void enableAccessibleDrag(boolean enable, int dragType) {
Adam Cohenc9735cf2015-01-23 16:11:55 -0800293 mUseTouchHelper = enable;
294 if (!enable) {
295 ViewCompat.setAccessibilityDelegate(this, null);
296 setImportantForAccessibility(IMPORTANT_FOR_ACCESSIBILITY_NO);
297 getShortcutsAndWidgets().setImportantForAccessibility(IMPORTANT_FOR_ACCESSIBILITY_NO);
Sunny Goyal7c7be8c2018-03-07 19:58:07 -0800298 setOnClickListener(null);
Adam Cohenc9735cf2015-01-23 16:11:55 -0800299 } else {
Sunny Goyale9b651e2015-04-24 11:44:51 -0700300 if (dragType == WORKSPACE_ACCESSIBILITY_DRAG &&
301 !(mTouchHelper instanceof WorkspaceAccessibilityHelper)) {
302 mTouchHelper = new WorkspaceAccessibilityHelper(this);
303 } else if (dragType == FOLDER_ACCESSIBILITY_DRAG &&
304 !(mTouchHelper instanceof FolderAccessibilityHelper)) {
305 mTouchHelper = new FolderAccessibilityHelper(this);
306 }
Adam Cohenc9735cf2015-01-23 16:11:55 -0800307 ViewCompat.setAccessibilityDelegate(this, mTouchHelper);
308 setImportantForAccessibility(IMPORTANT_FOR_ACCESSIBILITY_YES);
309 getShortcutsAndWidgets().setImportantForAccessibility(IMPORTANT_FOR_ACCESSIBILITY_YES);
310 setOnClickListener(mTouchHelper);
311 }
312
313 // Invalidate the accessibility hierarchy
314 if (getParent() != null) {
315 getParent().notifySubtreeAccessibilityStateChanged(
316 this, this, AccessibilityEvent.CONTENT_CHANGE_TYPE_SUBTREE);
317 }
318 }
319
320 @Override
321 public boolean dispatchHoverEvent(MotionEvent event) {
322 // Always attempt to dispatch hover events to accessibility first.
323 if (mUseTouchHelper && mTouchHelper.dispatchHoverEvent(event)) {
324 return true;
325 }
326 return super.dispatchHoverEvent(event);
327 }
328
329 @Override
Adam Cohenc9735cf2015-01-23 16:11:55 -0800330 public boolean onInterceptTouchEvent(MotionEvent ev) {
331 if (mUseTouchHelper ||
332 (mInterceptTouchListener != null && mInterceptTouchListener.onTouch(this, ev))) {
333 return true;
334 }
335 return false;
336 }
337
Mady Melloref044dd2015-06-02 15:35:07 -0700338 @Override
339 public boolean onTouchEvent(MotionEvent ev) {
340 boolean handled = super.onTouchEvent(ev);
341 // Stylus button press on a home screen should not switch between overview mode and
342 // the home screen mode, however, once in overview mode stylus button press should be
343 // enabled to allow rearranging the different home screens. So check what mode
344 // the workspace is in, and only perform stylus button presses while in overview mode.
Sunny Goyalf9403d92017-10-18 10:55:56 -0700345 if (mLauncher.isInState(LauncherState.OVERVIEW)
Mady Mellorbb835202015-07-15 16:34:34 -0700346 && mStylusEventHelper.onMotionEvent(ev)) {
Mady Melloref044dd2015-06-02 15:35:07 -0700347 return true;
348 }
349 return handled;
350 }
351
Chris Craik01f2d7f2013-10-01 14:41:56 -0700352 public void enableHardwareLayer(boolean hasLayer) {
353 mShortcutsAndWidgets.setLayerType(hasLayer ? LAYER_TYPE_HARDWARE : LAYER_TYPE_NONE, sPaint);
Michael Jurkad51f33a2012-06-28 15:35:26 -0700354 }
355
Winson Chung5f8afe62013-08-12 16:19:28 -0700356 public void setCellDimensions(int width, int height) {
Winson Chung11a1a532013-09-13 11:14:45 -0700357 mFixedCellWidth = mCellWidth = width;
358 mFixedCellHeight = mCellHeight = height;
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530359 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mCountX, mCountY);
Winson Chung5f8afe62013-08-12 16:19:28 -0700360 }
361
Adam Cohen2801caf2011-05-13 20:57:39 -0700362 public void setGridSize(int x, int y) {
363 mCountX = x;
364 mCountY = y;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -0700365 mOccupied = new GridOccupancy(mCountX, mCountY);
366 mTmpOccupied = new GridOccupancy(mCountX, mCountY);
Adam Cohen7fbec102012-03-27 12:42:19 -0700367 mTempRectStack.clear();
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530368 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mCountX, mCountY);
Adam Cohen76fc0852011-06-17 13:26:23 -0700369 requestLayout();
Adam Cohen2801caf2011-05-13 20:57:39 -0700370 }
371
Adam Cohen2374abf2013-04-16 14:56:57 -0700372 // Set whether or not to invert the layout horizontally if the layout is in RTL mode.
373 public void setInvertIfRtl(boolean invert) {
374 mShortcutsAndWidgets.setInvertIfRtl(invert);
375 }
376
Adam Cohen917e3882013-10-31 15:03:35 -0700377 public void setDropPending(boolean pending) {
378 mDropPending = pending;
379 }
380
381 public boolean isDropPending() {
382 return mDropPending;
383 }
384
Adam Cohenc50438c2014-08-19 17:43:05 -0700385 void setIsDragOverlapping(boolean isDragOverlapping) {
386 if (mIsDragOverlapping != isDragOverlapping) {
387 mIsDragOverlapping = isDragOverlapping;
Sunny Goyalf5440cb2016-12-14 15:13:00 -0800388 mBackground.setState(mIsDragOverlapping
389 ? BACKGROUND_STATE_ACTIVE : BACKGROUND_STATE_DEFAULT);
Adam Cohenc50438c2014-08-19 17:43:05 -0700390 invalidate();
391 }
392 }
393
Sunny Goyale2fd14b2015-08-27 17:45:46 -0700394 @Override
395 protected void dispatchSaveInstanceState(SparseArray<Parcelable> container) {
Sunny Goyal7ce471b2017-08-02 03:37:39 -0700396 ParcelableSparseArray jail = getJailedArray(container);
397 super.dispatchSaveInstanceState(jail);
398 container.put(R.id.cell_layout_jail_id, jail);
Sunny Goyale2fd14b2015-08-27 17:45:46 -0700399 }
400
401 @Override
402 protected void dispatchRestoreInstanceState(SparseArray<Parcelable> container) {
Sunny Goyal7ce471b2017-08-02 03:37:39 -0700403 super.dispatchRestoreInstanceState(getJailedArray(container));
Sunny Goyale2fd14b2015-08-27 17:45:46 -0700404 }
405
Sunny Goyal7ce471b2017-08-02 03:37:39 -0700406 /**
407 * Wrap the SparseArray in another Parcelable so that the item ids do not conflict with our
408 * our internal resource ids
409 */
Sunny Goyale2fd14b2015-08-27 17:45:46 -0700410 private ParcelableSparseArray getJailedArray(SparseArray<Parcelable> container) {
411 final Parcelable parcelable = container.get(R.id.cell_layout_jail_id);
412 return parcelable instanceof ParcelableSparseArray ?
413 (ParcelableSparseArray) parcelable : new ParcelableSparseArray();
414 }
415
Tony Wickham0f97b782015-12-02 17:55:07 -0800416 public boolean getIsDragOverlapping() {
417 return mIsDragOverlapping;
418 }
419
Jeff Sharkey83f111d2009-04-20 21:03:13 -0700420 @Override
Patrick Dubroy1262e362010-10-06 15:49:50 -0700421 protected void onDraw(Canvas canvas) {
Michael Jurka3e7c7632010-10-02 16:01:03 -0700422 // When we're large, we are either drawn in a "hover" state (ie when dragging an item to
423 // a neighboring page) or with just a normal background (if backgroundAlpha > 0.0f)
424 // When we're small, we are either drawn normally or in the "accepts drops" state (during
425 // a drag). However, we also drag the mini hover background *over* one of those two
426 // backgrounds
Sunny Goyalaeb16432017-10-16 11:46:41 -0700427 if (mBackground.getAlpha() > 0) {
Sunny Goyal2805e632015-05-20 15:35:32 -0700428 mBackground.draw(canvas);
Michael Jurkaa63c4522010-08-19 13:52:27 -0700429 }
Romain Guya6abce82009-11-10 02:54:41 -0800430
Patrick Dubroy8e58e912010-10-14 13:21:48 -0700431 final Paint paint = mDragOutlinePaint;
Joe Onorato4be866d2010-10-10 11:26:02 -0700432 for (int i = 0; i < mDragOutlines.length; i++) {
Chet Haase472b2812010-10-14 07:02:04 -0700433 final float alpha = mDragOutlineAlphas[i];
Joe Onorato4be866d2010-10-10 11:26:02 -0700434 if (alpha > 0) {
Joe Onorato4be866d2010-10-10 11:26:02 -0700435 final Bitmap b = (Bitmap) mDragOutlineAnims[i].getTag();
Chet Haase472b2812010-10-14 07:02:04 -0700436 paint.setAlpha((int)(alpha + .5f));
Sunny Goyal106bf642015-07-16 12:18:06 -0700437 canvas.drawBitmap(b, null, mDragOutlines[i], paint);
Winson Chung150fbab2010-09-29 17:14:26 -0700438 }
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700439 }
Patrick Dubroy96864c32011-03-10 17:17:23 -0800440
Adam Cohen482ed822012-03-02 14:15:13 -0800441 if (DEBUG_VISUALIZE_OCCUPIED) {
442 int[] pt = new int[2];
443 ColorDrawable cd = new ColorDrawable(Color.RED);
Adam Cohene7587d22012-05-24 18:50:02 -0700444 cd.setBounds(0, 0, mCellWidth, mCellHeight);
Adam Cohen482ed822012-03-02 14:15:13 -0800445 for (int i = 0; i < mCountX; i++) {
446 for (int j = 0; j < mCountY; j++) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -0700447 if (mOccupied.cells[i][j]) {
Adam Cohen482ed822012-03-02 14:15:13 -0800448 cellToPoint(i, j, pt);
449 canvas.save();
450 canvas.translate(pt[0], pt[1]);
451 cd.draw(canvas);
452 canvas.restore();
453 }
454 }
455 }
456 }
457
Adam Cohenefca0272016-02-24 19:19:06 -0800458 for (int i = 0; i < mFolderBackgrounds.size(); i++) {
Jon Mirandaa0233f72017-06-22 18:34:45 -0700459 PreviewBackground bg = mFolderBackgrounds.get(i);
Adam Cohenefca0272016-02-24 19:19:06 -0800460 cellToPoint(bg.delegateCellX, bg.delegateCellY, mTempLocation);
461 canvas.save();
462 canvas.translate(mTempLocation[0], mTempLocation[1]);
Sunny Goyal19b93b72017-02-19 20:21:37 -0800463 bg.drawBackground(canvas);
Adam Cohenf172b742016-03-30 19:28:34 -0700464 if (!bg.isClipping) {
Sunny Goyal19b93b72017-02-19 20:21:37 -0800465 bg.drawBackgroundStroke(canvas);
Adam Cohenf172b742016-03-30 19:28:34 -0700466 }
Adam Cohenefca0272016-02-24 19:19:06 -0800467 canvas.restore();
Adam Cohen69ce2e52011-07-03 19:25:21 -0700468 }
Adam Cohenc51934b2011-07-26 21:07:43 -0700469
Adam Cohenefca0272016-02-24 19:19:06 -0800470 if (mFolderLeaveBehind.delegateCellX >= 0 && mFolderLeaveBehind.delegateCellY >= 0) {
471 cellToPoint(mFolderLeaveBehind.delegateCellX,
472 mFolderLeaveBehind.delegateCellY, mTempLocation);
473 canvas.save();
474 canvas.translate(mTempLocation[0], mTempLocation[1]);
Sunny Goyal19b93b72017-02-19 20:21:37 -0800475 mFolderLeaveBehind.drawLeaveBehind(canvas);
Adam Cohenefca0272016-02-24 19:19:06 -0800476 canvas.restore();
Adam Cohenc51934b2011-07-26 21:07:43 -0700477 }
Adam Cohen69ce2e52011-07-03 19:25:21 -0700478 }
479
Adam Cohenefca0272016-02-24 19:19:06 -0800480 @Override
481 protected void dispatchDraw(Canvas canvas) {
482 super.dispatchDraw(canvas);
483
484 for (int i = 0; i < mFolderBackgrounds.size(); i++) {
Jon Mirandaa0233f72017-06-22 18:34:45 -0700485 PreviewBackground bg = mFolderBackgrounds.get(i);
Adam Cohenf172b742016-03-30 19:28:34 -0700486 if (bg.isClipping) {
487 cellToPoint(bg.delegateCellX, bg.delegateCellY, mTempLocation);
488 canvas.save();
489 canvas.translate(mTempLocation[0], mTempLocation[1]);
Sunny Goyal19b93b72017-02-19 20:21:37 -0800490 bg.drawBackgroundStroke(canvas);
Adam Cohenf172b742016-03-30 19:28:34 -0700491 canvas.restore();
492 }
Adam Cohenefca0272016-02-24 19:19:06 -0800493 }
Adam Cohen69ce2e52011-07-03 19:25:21 -0700494 }
495
Jon Mirandaa0233f72017-06-22 18:34:45 -0700496 public void addFolderBackground(PreviewBackground bg) {
Adam Cohenefca0272016-02-24 19:19:06 -0800497 mFolderBackgrounds.add(bg);
498 }
Jon Mirandaa0233f72017-06-22 18:34:45 -0700499 public void removeFolderBackground(PreviewBackground bg) {
Adam Cohenefca0272016-02-24 19:19:06 -0800500 mFolderBackgrounds.remove(bg);
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700501 }
502
Adam Cohenc51934b2011-07-26 21:07:43 -0700503 public void setFolderLeaveBehindCell(int x, int y) {
Adam Cohenefca0272016-02-24 19:19:06 -0800504 View child = getChildAt(x, y);
Sunny Goyal368ae772017-05-24 13:19:15 -0700505 mFolderLeaveBehind.setup(mLauncher, null,
Adam Cohenefca0272016-02-24 19:19:06 -0800506 child.getMeasuredWidth(), child.getPaddingTop());
507
508 mFolderLeaveBehind.delegateCellX = x;
509 mFolderLeaveBehind.delegateCellY = y;
Adam Cohenc51934b2011-07-26 21:07:43 -0700510 invalidate();
511 }
512
513 public void clearFolderLeaveBehind() {
Adam Cohenefca0272016-02-24 19:19:06 -0800514 mFolderLeaveBehind.delegateCellX = -1;
515 mFolderLeaveBehind.delegateCellY = -1;
Adam Cohenc51934b2011-07-26 21:07:43 -0700516 invalidate();
517 }
518
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700519 @Override
Michael Jurkae6235dd2011-10-04 15:02:05 -0700520 public boolean shouldDelayChildPressedState() {
521 return false;
522 }
523
Adam Cohen1462de32012-07-24 22:34:36 -0700524 public void restoreInstanceState(SparseArray<Parcelable> states) {
Sunny Goyal33a152f2014-07-22 12:13:14 -0700525 try {
526 dispatchRestoreInstanceState(states);
527 } catch (IllegalArgumentException ex) {
Sunny Goyal3d706ad2017-03-06 16:56:39 -0800528 if (FeatureFlags.IS_DOGFOOD_BUILD) {
Sunny Goyal33a152f2014-07-22 12:13:14 -0700529 throw ex;
530 }
531 // Mismatched viewId / viewType preventing restore. Skip restore on production builds.
532 Log.e(TAG, "Ignoring an error while restoring a view instance state", ex);
533 }
Adam Cohen1462de32012-07-24 22:34:36 -0700534 }
535
Michael Jurkae6235dd2011-10-04 15:02:05 -0700536 @Override
Jeff Sharkey83f111d2009-04-20 21:03:13 -0700537 public void cancelLongPress() {
538 super.cancelLongPress();
539
540 // Cancel long press for all children
541 final int count = getChildCount();
542 for (int i = 0; i < count; i++) {
543 final View child = getChildAt(i);
544 child.cancelLongPress();
545 }
546 }
547
Michael Jurkadee05892010-07-27 10:01:56 -0700548 public void setOnInterceptTouchListener(View.OnTouchListener listener) {
549 mInterceptTouchListener = listener;
550 }
551
Hyunyoung Songee3e6a72015-02-20 14:25:27 -0800552 public int getCountX() {
Adam Cohend22015c2010-07-26 22:02:18 -0700553 return mCountX;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800554 }
555
Hyunyoung Songee3e6a72015-02-20 14:25:27 -0800556 public int getCountY() {
Adam Cohend22015c2010-07-26 22:02:18 -0700557 return mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800558 }
559
Sunny Goyalc13403c2016-11-18 23:44:48 -0800560 public boolean acceptsWidget() {
561 return mContainerType == WORKSPACE;
Sunny Goyale9b651e2015-04-24 11:44:51 -0700562 }
563
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800564 public boolean addViewToCellLayout(View child, int index, int childId, LayoutParams params,
Sunny Goyalf7a29e82015-04-24 15:20:43 -0700565 boolean markCells) {
Winson Chungaafa03c2010-06-11 17:34:16 -0700566 final LayoutParams lp = params;
567
Andrew Flynnde38e422012-05-08 11:22:15 -0700568 // Hotseat icons - remove text
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800569 if (child instanceof BubbleTextView) {
570 BubbleTextView bubbleChild = (BubbleTextView) child;
Jon Mirandaf1eae802017-10-04 11:23:33 -0700571 bubbleChild.setTextVisibility(mContainerType != HOTSEAT);
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800572 }
573
Sunny Goyalc13403c2016-11-18 23:44:48 -0800574 child.setScaleX(mChildScale);
575 child.setScaleY(mChildScale);
Adam Cohen307fe232012-08-16 17:55:58 -0700576
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800577 // Generate an id for each view, this assumes we have at most 256x256 cells
578 // per workspace screen
Adam Cohend22015c2010-07-26 22:02:18 -0700579 if (lp.cellX >= 0 && lp.cellX <= mCountX - 1 && lp.cellY >= 0 && lp.cellY <= mCountY - 1) {
Winson Chungaafa03c2010-06-11 17:34:16 -0700580 // If the horizontal or vertical span is set to -1, it is taken to
581 // mean that it spans the extent of the CellLayout
Adam Cohend22015c2010-07-26 22:02:18 -0700582 if (lp.cellHSpan < 0) lp.cellHSpan = mCountX;
583 if (lp.cellVSpan < 0) lp.cellVSpan = mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800584
Winson Chungaafa03c2010-06-11 17:34:16 -0700585 child.setId(childId);
Tony Wickhama0628cc2015-10-14 15:23:04 -0700586 if (LOGD) {
587 Log.d(TAG, "Adding view to ShortcutsAndWidgetsContainer: " + child);
588 }
Sunny Goyalf7a29e82015-04-24 15:20:43 -0700589 mShortcutsAndWidgets.addView(child, index, lp);
Michael Jurkadee05892010-07-27 10:01:56 -0700590
Michael Jurkaf3ca3ab2010-10-20 17:08:24 -0700591 if (markCells) markCellsAsOccupiedForView(child);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700592
Winson Chungaafa03c2010-06-11 17:34:16 -0700593 return true;
594 }
595 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800596 }
Michael Jurka3e7c7632010-10-02 16:01:03 -0700597
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800598 @Override
Michael Jurka0280c3b2010-09-17 15:00:07 -0700599 public void removeAllViews() {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -0700600 mOccupied.clear();
Michael Jurkaa52570f2012-03-20 03:18:20 -0700601 mShortcutsAndWidgets.removeAllViews();
Michael Jurka0280c3b2010-09-17 15:00:07 -0700602 }
603
604 @Override
605 public void removeAllViewsInLayout() {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700606 if (mShortcutsAndWidgets.getChildCount() > 0) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -0700607 mOccupied.clear();
Michael Jurkaa52570f2012-03-20 03:18:20 -0700608 mShortcutsAndWidgets.removeAllViewsInLayout();
Michael Jurka7cfc2822011-08-02 20:19:24 -0700609 }
Michael Jurka0280c3b2010-09-17 15:00:07 -0700610 }
611
612 @Override
613 public void removeView(View view) {
614 markCellsAsUnoccupiedForView(view);
Michael Jurkaa52570f2012-03-20 03:18:20 -0700615 mShortcutsAndWidgets.removeView(view);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700616 }
617
618 @Override
619 public void removeViewAt(int index) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700620 markCellsAsUnoccupiedForView(mShortcutsAndWidgets.getChildAt(index));
621 mShortcutsAndWidgets.removeViewAt(index);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700622 }
623
624 @Override
625 public void removeViewInLayout(View view) {
626 markCellsAsUnoccupiedForView(view);
Michael Jurkaa52570f2012-03-20 03:18:20 -0700627 mShortcutsAndWidgets.removeViewInLayout(view);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700628 }
629
630 @Override
631 public void removeViews(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.removeViews(start, count);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700636 }
637
638 @Override
639 public void removeViewsInLayout(int start, int count) {
640 for (int i = start; i < start + count; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700641 markCellsAsUnoccupiedForView(mShortcutsAndWidgets.getChildAt(i));
Michael Jurka0280c3b2010-09-17 15:00:07 -0700642 }
Michael Jurkaa52570f2012-03-20 03:18:20 -0700643 mShortcutsAndWidgets.removeViewsInLayout(start, count);
Michael Jurkaabded662011-03-04 12:06:57 -0800644 }
645
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700646 /**
Winson Chungaafa03c2010-06-11 17:34:16 -0700647 * Given a point, return the cell that strictly encloses that point
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800648 * @param x X coordinate of the point
649 * @param y Y coordinate of the point
650 * @param result Array of 2 ints to hold the x and y coordinate of the cell
651 */
Sunny Goyale9b651e2015-04-24 11:44:51 -0700652 public void pointToCellExact(int x, int y, int[] result) {
Winson Chung4b825dcd2011-06-19 12:41:22 -0700653 final int hStartPadding = getPaddingLeft();
654 final int vStartPadding = getPaddingTop();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800655
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530656 result[0] = (x - hStartPadding) / mCellWidth;
657 result[1] = (y - vStartPadding) / mCellHeight;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800658
Adam Cohend22015c2010-07-26 22:02:18 -0700659 final int xAxis = mCountX;
660 final int yAxis = mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800661
662 if (result[0] < 0) result[0] = 0;
663 if (result[0] >= xAxis) result[0] = xAxis - 1;
664 if (result[1] < 0) result[1] = 0;
665 if (result[1] >= yAxis) result[1] = yAxis - 1;
666 }
Winson Chungaafa03c2010-06-11 17:34:16 -0700667
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800668 /**
669 * Given a point, return the cell that most closely encloses that point
670 * @param x X coordinate of the point
671 * @param y Y coordinate of the point
672 * @param result Array of 2 ints to hold the x and y coordinate of the cell
673 */
674 void pointToCellRounded(int x, int y, int[] result) {
675 pointToCellExact(x + (mCellWidth / 2), y + (mCellHeight / 2), result);
676 }
677
678 /**
679 * Given a cell coordinate, return the point that represents the upper left corner of that cell
Winson Chungaafa03c2010-06-11 17:34:16 -0700680 *
681 * @param cellX X coordinate of the cell
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800682 * @param cellY Y coordinate of the cell
Winson Chungaafa03c2010-06-11 17:34:16 -0700683 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800684 * @param result Array of 2 ints to hold the x and y coordinate of the point
685 */
686 void cellToPoint(int cellX, int cellY, int[] result) {
Winson Chung4b825dcd2011-06-19 12:41:22 -0700687 final int hStartPadding = getPaddingLeft();
688 final int vStartPadding = getPaddingTop();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800689
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530690 result[0] = hStartPadding + cellX * mCellWidth;
691 result[1] = vStartPadding + cellY * mCellHeight;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800692 }
693
Adam Cohene3e27a82011-04-15 12:07:39 -0700694 /**
Adam Cohen482ed822012-03-02 14:15:13 -0800695 * Given a cell coordinate, return the point that represents the center of the cell
Adam Cohene3e27a82011-04-15 12:07:39 -0700696 *
697 * @param cellX X coordinate of the cell
698 * @param cellY Y coordinate of the cell
699 *
700 * @param result Array of 2 ints to hold the x and y coordinate of the point
701 */
702 void cellToCenterPoint(int cellX, int cellY, int[] result) {
Adam Cohen47a876d2012-03-19 13:21:41 -0700703 regionToCenterPoint(cellX, cellY, 1, 1, result);
704 }
705
706 /**
707 * Given a cell coordinate and span return the point that represents the center of the regio
708 *
709 * @param cellX X coordinate of the cell
710 * @param cellY Y coordinate of the cell
711 *
712 * @param result Array of 2 ints to hold the x and y coordinate of the point
713 */
714 void regionToCenterPoint(int cellX, int cellY, int spanX, int spanY, int[] result) {
Winson Chung4b825dcd2011-06-19 12:41:22 -0700715 final int hStartPadding = getPaddingLeft();
716 final int vStartPadding = getPaddingTop();
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530717 result[0] = hStartPadding + cellX * mCellWidth + (spanX * mCellWidth) / 2;
718 result[1] = vStartPadding + cellY * mCellHeight + (spanY * mCellHeight) / 2;
Adam Cohene3e27a82011-04-15 12:07:39 -0700719 }
720
Adam Cohen19f37922012-03-21 11:59:11 -0700721 /**
722 * Given a cell coordinate and span fills out a corresponding pixel rect
723 *
724 * @param cellX X coordinate of the cell
725 * @param cellY Y coordinate of the cell
726 * @param result Rect in which to write the result
727 */
728 void regionToRect(int cellX, int cellY, int spanX, int spanY, Rect result) {
729 final int hStartPadding = getPaddingLeft();
730 final int vStartPadding = getPaddingTop();
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530731 final int left = hStartPadding + cellX * mCellWidth;
732 final int top = vStartPadding + cellY * mCellHeight;
733 result.set(left, top, left + (spanX * mCellWidth), top + (spanY * mCellHeight));
Adam Cohen19f37922012-03-21 11:59:11 -0700734 }
735
Adam Cohen482ed822012-03-02 14:15:13 -0800736 public float getDistanceFromCell(float x, float y, int[] cell) {
737 cellToCenterPoint(cell[0], cell[1], mTmpPoint);
Sunny Goyalf7a29e82015-04-24 15:20:43 -0700738 return (float) Math.hypot(x - mTmpPoint[0], y - mTmpPoint[1]);
Adam Cohen482ed822012-03-02 14:15:13 -0800739 }
740
Adam Cohenf9c184a2016-01-15 16:47:43 -0800741 public int getCellWidth() {
Romain Guy84f296c2009-11-04 15:00:44 -0800742 return mCellWidth;
743 }
744
Sunny Goyal0b754e52017-08-07 07:42:45 -0700745 public int getCellHeight() {
Romain Guy84f296c2009-11-04 15:00:44 -0800746 return mCellHeight;
747 }
748
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700749 public void setFixedSize(int width, int height) {
750 mFixedWidth = width;
751 mFixedHeight = height;
752 }
753
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800754 @Override
755 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800756 int widthSpecMode = MeasureSpec.getMode(widthMeasureSpec);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800757 int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec);
Winson Chung5f8afe62013-08-12 16:19:28 -0700758 int widthSize = MeasureSpec.getSize(widthMeasureSpec);
759 int heightSize = MeasureSpec.getSize(heightMeasureSpec);
Winson Chung2d75f122013-09-23 16:53:31 -0700760 int childWidthSize = widthSize - (getPaddingLeft() + getPaddingRight());
761 int childHeightSize = heightSize - (getPaddingTop() + getPaddingBottom());
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 mShortcutsAndWidgets.layout(left, top, right, bottom);
Sunny Goyal7c786f72016-06-01 14:08:21 -0700805 // Expand the background drawing bounds by the padding baked into the background drawable
806 mBackground.getPadding(mTempRect);
807 mBackground.setBounds(
Jon Miranda28032002017-07-13 16:18:56 -0700808 left - mTempRect.left - getPaddingLeft(),
809 top - mTempRect.top - getPaddingTop(),
810 right + mTempRect.right + getPaddingRight(),
811 bottom + mTempRect.bottom + getPaddingBottom());
Sunny Goyal7c786f72016-06-01 14:08:21 -0700812 }
813
Tony Wickhama501d492015-11-03 18:05:01 -0800814 /**
815 * Returns the amount of space left over after subtracting padding and cells. This space will be
816 * very small, a few pixels at most, and is a result of rounding down when calculating the cell
817 * width in {@link DeviceProfile#calculateCellWidth(int, int)}.
818 */
819 public int getUnusedHorizontalSpace() {
820 return getMeasuredWidth() - getPaddingLeft() - getPaddingRight() - (mCountX * mCellWidth);
821 }
822
Sunny Goyalaeb16432017-10-16 11:46:41 -0700823 public Drawable getScrimBackground() {
824 return mBackground;
Michael Jurkadee05892010-07-27 10:01:56 -0700825 }
826
Sunny Goyal2805e632015-05-20 15:35:32 -0700827 @Override
828 protected boolean verifyDrawable(Drawable who) {
Sunny Goyal7ce471b2017-08-02 03:37:39 -0700829 return super.verifyDrawable(who) || (who == mBackground);
Sunny Goyal2805e632015-05-20 15:35:32 -0700830 }
831
Michael Jurkaa52570f2012-03-20 03:18:20 -0700832 public ShortcutAndWidgetContainer getShortcutsAndWidgets() {
Sunny Goyaldcbcc862014-08-12 15:58:36 -0700833 return mShortcutsAndWidgets;
Michael Jurkaa52570f2012-03-20 03:18:20 -0700834 }
835
Patrick Dubroy440c3602010-07-13 17:50:32 -0700836 public View getChildAt(int x, int y) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700837 return mShortcutsAndWidgets.getChildAt(x, y);
Patrick Dubroy440c3602010-07-13 17:50:32 -0700838 }
839
Adam Cohen76fc0852011-06-17 13:26:23 -0700840 public boolean animateChildToPosition(final View child, int cellX, int cellY, int duration,
Adam Cohen482ed822012-03-02 14:15:13 -0800841 int delay, boolean permanent, boolean adjustOccupied) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700842 ShortcutAndWidgetContainer clc = getShortcutsAndWidgets();
Adam Cohen482ed822012-03-02 14:15:13 -0800843
Adam Cohen19f37922012-03-21 11:59:11 -0700844 if (clc.indexOfChild(child) != -1) {
Adam Cohenbfbfd262011-06-13 16:55:12 -0700845 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
846 final ItemInfo info = (ItemInfo) child.getTag();
847
848 // We cancel any existing animations
849 if (mReorderAnimators.containsKey(lp)) {
850 mReorderAnimators.get(lp).cancel();
851 mReorderAnimators.remove(lp);
852 }
853
Adam Cohen482ed822012-03-02 14:15:13 -0800854 final int oldX = lp.x;
855 final int oldY = lp.y;
856 if (adjustOccupied) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -0700857 GridOccupancy occupied = permanent ? mOccupied : mTmpOccupied;
858 occupied.markCells(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan, false);
859 occupied.markCells(cellX, cellY, lp.cellHSpan, lp.cellVSpan, true);
Adam Cohen482ed822012-03-02 14:15:13 -0800860 }
Adam Cohenbfbfd262011-06-13 16:55:12 -0700861 lp.isLockedToGrid = true;
Adam Cohen482ed822012-03-02 14:15:13 -0800862 if (permanent) {
863 lp.cellX = info.cellX = cellX;
864 lp.cellY = info.cellY = cellY;
865 } else {
866 lp.tmpCellX = cellX;
867 lp.tmpCellY = cellY;
868 }
Jon Mirandae96798e2016-12-07 12:10:44 -0800869 clc.setupLp(child);
Adam Cohenbfbfd262011-06-13 16:55:12 -0700870 lp.isLockedToGrid = false;
Adam Cohen482ed822012-03-02 14:15:13 -0800871 final int newX = lp.x;
872 final int newY = lp.y;
Adam Cohenbfbfd262011-06-13 16:55:12 -0700873
Adam Cohen76fc0852011-06-17 13:26:23 -0700874 lp.x = oldX;
875 lp.y = oldY;
Adam Cohen76fc0852011-06-17 13:26:23 -0700876
Adam Cohen482ed822012-03-02 14:15:13 -0800877 // Exit early if we're not actually moving the view
878 if (oldX == newX && oldY == newY) {
879 lp.isLockedToGrid = true;
880 return true;
881 }
882
Sunny Goyal849c6a22018-08-08 16:33:46 -0700883 ValueAnimator va = ValueAnimator.ofFloat(0f, 1f);
Adam Cohen482ed822012-03-02 14:15:13 -0800884 va.setDuration(duration);
885 mReorderAnimators.put(lp, va);
886
887 va.addUpdateListener(new AnimatorUpdateListener() {
888 @Override
Adam Cohenbfbfd262011-06-13 16:55:12 -0700889 public void onAnimationUpdate(ValueAnimator animation) {
Jon Mirandae96798e2016-12-07 12:10:44 -0800890 float r = (Float) animation.getAnimatedValue();
Adam Cohen19f37922012-03-21 11:59:11 -0700891 lp.x = (int) ((1 - r) * oldX + r * newX);
892 lp.y = (int) ((1 - r) * oldY + r * newY);
Adam Cohen6b8a02d2012-03-22 15:13:40 -0700893 child.requestLayout();
Adam Cohenbfbfd262011-06-13 16:55:12 -0700894 }
895 });
Adam Cohen482ed822012-03-02 14:15:13 -0800896 va.addListener(new AnimatorListenerAdapter() {
Adam Cohenbfbfd262011-06-13 16:55:12 -0700897 boolean cancelled = false;
898 public void onAnimationEnd(Animator animation) {
899 // If the animation was cancelled, it means that another animation
900 // has interrupted this one, and we don't want to lock the item into
901 // place just yet.
902 if (!cancelled) {
903 lp.isLockedToGrid = true;
Adam Cohen482ed822012-03-02 14:15:13 -0800904 child.requestLayout();
Adam Cohenbfbfd262011-06-13 16:55:12 -0700905 }
906 if (mReorderAnimators.containsKey(lp)) {
907 mReorderAnimators.remove(lp);
908 }
909 }
910 public void onAnimationCancel(Animator animation) {
911 cancelled = true;
912 }
913 });
Adam Cohen482ed822012-03-02 14:15:13 -0800914 va.setStartDelay(delay);
915 va.start();
Adam Cohenbfbfd262011-06-13 16:55:12 -0700916 return true;
917 }
918 return false;
919 }
920
Sunny Goyal06e21a22016-08-11 16:02:02 -0700921 void visualizeDropLocation(View v, DragPreviewProvider outlineProvider, int cellX, int cellY,
922 int spanX, int spanY, boolean resize, DropTarget.DragObject dragObject) {
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -0700923 final int oldDragCellX = mDragCell[0];
924 final int oldDragCellY = mDragCell[1];
Adam Cohen482ed822012-03-02 14:15:13 -0800925
Hyunyoung Song0de01172016-10-05 16:27:48 -0700926 if (outlineProvider == null || outlineProvider.generatedDragOutline == null) {
Adam Cohen2801caf2011-05-13 20:57:39 -0700927 return;
928 }
929
Hyunyoung Song0de01172016-10-05 16:27:48 -0700930 Bitmap dragOutline = outlineProvider.generatedDragOutline;
Adam Cohen482ed822012-03-02 14:15:13 -0800931 if (cellX != oldDragCellX || cellY != oldDragCellY) {
Sunny Goyale78e3d72015-09-24 11:23:31 -0700932 Point dragOffset = dragObject.dragView.getDragVisualizeOffset();
933 Rect dragRegion = dragObject.dragView.getDragRegion();
934
Adam Cohen482ed822012-03-02 14:15:13 -0800935 mDragCell[0] = cellX;
936 mDragCell[1] = cellY;
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700937
Joe Onorato4be866d2010-10-10 11:26:02 -0700938 final int oldIndex = mDragOutlineCurrent;
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -0700939 mDragOutlineAnims[oldIndex].animateOut();
940 mDragOutlineCurrent = (oldIndex + 1) % mDragOutlines.length;
Adam Cohend41fbf52012-02-16 23:53:59 -0800941 Rect r = mDragOutlines[mDragOutlineCurrent];
Sunny Goyal106bf642015-07-16 12:18:06 -0700942
Adam Cohend41fbf52012-02-16 23:53:59 -0800943 if (resize) {
Adam Cohen482ed822012-03-02 14:15:13 -0800944 cellToRect(cellX, cellY, spanX, spanY, r);
Jon Mirandae96798e2016-12-07 12:10:44 -0800945 if (v instanceof LauncherAppWidgetHostView) {
946 DeviceProfile profile = mLauncher.getDeviceProfile();
Jon Miranda6f6a06a2016-12-15 11:24:18 -0800947 Utilities.shrinkRect(r, profile.appWidgetScale.x, profile.appWidgetScale.y);
Jon Mirandae96798e2016-12-07 12:10:44 -0800948 }
Sunny Goyal106bf642015-07-16 12:18:06 -0700949 } else {
950 // Find the top left corner of the rect the object will occupy
951 final int[] topLeft = mTmpPoint;
952 cellToPoint(cellX, cellY, topLeft);
953
954 int left = topLeft[0];
955 int top = topLeft[1];
956
957 if (v != null && dragOffset == null) {
958 // When drawing the drag outline, it did not account for margin offsets
959 // added by the view's parent.
960 MarginLayoutParams lp = (MarginLayoutParams) v.getLayoutParams();
961 left += lp.leftMargin;
962 top += lp.topMargin;
963
964 // Offsets due to the size difference between the View and the dragOutline.
965 // There is a size difference to account for the outer blur, which may lie
966 // outside the bounds of the view.
Jon Mirandaf7ff3fe2016-12-05 12:04:44 -0800967 top += ((mCellHeight * spanY) - dragOutline.getHeight()) / 2;
Sunny Goyal106bf642015-07-16 12:18:06 -0700968 // We center about the x axis
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530969 left += ((mCellWidth * spanX) - dragOutline.getWidth()) / 2;
Sunny Goyal106bf642015-07-16 12:18:06 -0700970 } else {
971 if (dragOffset != null && dragRegion != null) {
972 // Center the drag region *horizontally* in the cell and apply a drag
973 // outline offset
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530974 left += dragOffset.x + ((mCellWidth * spanX) - dragRegion.width()) / 2;
Sunny Goyal106bf642015-07-16 12:18:06 -0700975 int cHeight = getShortcutsAndWidgets().getCellContentHeight();
976 int cellPaddingY = (int) Math.max(0, ((mCellHeight - cHeight) / 2f));
977 top += dragOffset.y + cellPaddingY;
978 } else {
979 // Center the drag outline in the cell
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530980 left += ((mCellWidth * spanX) - dragOutline.getWidth()) / 2;
981 top += ((mCellHeight * spanY) - dragOutline.getHeight()) / 2;
Sunny Goyal106bf642015-07-16 12:18:06 -0700982 }
983 }
984 r.set(left, top, left + dragOutline.getWidth(), top + dragOutline.getHeight());
Adam Cohend41fbf52012-02-16 23:53:59 -0800985 }
Winson Chung150fbab2010-09-29 17:14:26 -0700986
Jon Miranda6f6a06a2016-12-15 11:24:18 -0800987 Utilities.scaleRectAboutCenter(r, mChildScale);
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -0700988 mDragOutlineAnims[mDragOutlineCurrent].setTag(dragOutline);
989 mDragOutlineAnims[mDragOutlineCurrent].animateIn();
Sunny Goyale78e3d72015-09-24 11:23:31 -0700990
991 if (dragObject.stateAnnouncer != null) {
Sunny Goyalc13403c2016-11-18 23:44:48 -0800992 dragObject.stateAnnouncer.announce(getItemMoveDescription(cellX, cellY));
Sunny Goyale78e3d72015-09-24 11:23:31 -0700993 }
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700994 }
995 }
996
Sunny Goyal726bee72018-03-05 12:54:24 -0800997 @SuppressLint("StringFormatMatches")
Sunny Goyalc13403c2016-11-18 23:44:48 -0800998 public String getItemMoveDescription(int cellX, int cellY) {
999 if (mContainerType == HOTSEAT) {
1000 return getContext().getString(R.string.move_to_hotseat_position,
1001 Math.max(cellX, cellY) + 1);
1002 } else {
1003 return getContext().getString(R.string.move_to_empty_cell,
1004 cellY + 1, cellX + 1);
1005 }
1006 }
1007
Adam Cohene0310962011-04-18 16:15:31 -07001008 public void clearDragOutlines() {
1009 final int oldIndex = mDragOutlineCurrent;
1010 mDragOutlineAnims[oldIndex].animateOut();
Adam Cohend41fbf52012-02-16 23:53:59 -08001011 mDragCell[0] = mDragCell[1] = -1;
Adam Cohene0310962011-04-18 16:15:31 -07001012 }
1013
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001014 /**
Jeff Sharkey70864282009-04-07 21:08:40 -07001015 * Find a vacant area that will fit the given bounds nearest the requested
1016 * cell location. Uses Euclidean distance to score multiple vacant areas.
Winson Chungaafa03c2010-06-11 17:34:16 -07001017 *
Romain Guy51afc022009-05-04 18:03:43 -07001018 * @param pixelX The X location at which you want to search for a vacant area.
1019 * @param pixelY The Y location at which you want to search for a vacant area.
Adam Cohend41fbf52012-02-16 23:53:59 -08001020 * @param minSpanX The minimum horizontal span required
1021 * @param minSpanY The minimum vertical span required
1022 * @param spanX Horizontal span of the object.
1023 * @param spanY Vertical span of the object.
1024 * @param result Array in which to place the result, or null (in which case a new array will
1025 * be allocated)
1026 * @return The X, Y cell of a vacant area that can contain this object,
1027 * nearest the requested location.
1028 */
1029 int[] findNearestVacantArea(int pixelX, int pixelY, int minSpanX, int minSpanY, int spanX,
1030 int spanY, int[] result, int[] resultSpan) {
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001031 return findNearestArea(pixelX, pixelY, minSpanX, minSpanY, spanX, spanY, true,
Adam Cohend41fbf52012-02-16 23:53:59 -08001032 result, resultSpan);
1033 }
1034
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001035 private final Stack<Rect> mTempRectStack = new Stack<>();
Adam Cohend41fbf52012-02-16 23:53:59 -08001036 private void lazyInitTempRectStack() {
1037 if (mTempRectStack.isEmpty()) {
1038 for (int i = 0; i < mCountX * mCountY; i++) {
1039 mTempRectStack.push(new Rect());
1040 }
1041 }
1042 }
Adam Cohen482ed822012-03-02 14:15:13 -08001043
Adam Cohend41fbf52012-02-16 23:53:59 -08001044 private void recycleTempRects(Stack<Rect> used) {
1045 while (!used.isEmpty()) {
1046 mTempRectStack.push(used.pop());
1047 }
1048 }
1049
1050 /**
1051 * Find a vacant area that will fit the given bounds nearest the requested
1052 * cell location. Uses Euclidean distance to score multiple vacant areas.
1053 *
1054 * @param pixelX The X location at which you want to search for a vacant area.
1055 * @param pixelY The Y location at which you want to search for a vacant area.
1056 * @param minSpanX The minimum horizontal span required
1057 * @param minSpanY The minimum vertical span required
1058 * @param spanX Horizontal span of the object.
1059 * @param spanY Vertical span of the object.
1060 * @param ignoreOccupied If true, the result can be an occupied cell
1061 * @param result Array in which to place the result, or null (in which case a new array will
1062 * be allocated)
1063 * @return The X, Y cell of a vacant area that can contain this object,
1064 * nearest the requested location.
1065 */
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001066 private int[] findNearestArea(int pixelX, int pixelY, int minSpanX, int minSpanY, int spanX,
1067 int spanY, boolean ignoreOccupied, int[] result, int[] resultSpan) {
Adam Cohend41fbf52012-02-16 23:53:59 -08001068 lazyInitTempRectStack();
Michael Jurkac6ee42e2010-09-30 12:04:50 -07001069
Adam Cohene3e27a82011-04-15 12:07:39 -07001070 // For items with a spanX / spanY > 1, the passed in point (pixelX, pixelY) corresponds
1071 // to the center of the item, but we are searching based on the top-left cell, so
1072 // we translate the point over to correspond to the top-left.
Sunny Goyalaa8a8712016-11-20 15:26:01 +05301073 pixelX -= mCellWidth * (spanX - 1) / 2f;
1074 pixelY -= mCellHeight * (spanY - 1) / 2f;
Adam Cohene3e27a82011-04-15 12:07:39 -07001075
Jeff Sharkey70864282009-04-07 21:08:40 -07001076 // Keep track of best-scoring drop area
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001077 final int[] bestXY = result != null ? result : new int[2];
Jeff Sharkey70864282009-04-07 21:08:40 -07001078 double bestDistance = Double.MAX_VALUE;
Adam Cohend41fbf52012-02-16 23:53:59 -08001079 final Rect bestRect = new Rect(-1, -1, -1, -1);
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001080 final Stack<Rect> validRegions = new Stack<>();
Winson Chungaafa03c2010-06-11 17:34:16 -07001081
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001082 final int countX = mCountX;
1083 final int countY = mCountY;
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001084
Adam Cohend41fbf52012-02-16 23:53:59 -08001085 if (minSpanX <= 0 || minSpanY <= 0 || spanX <= 0 || spanY <= 0 ||
1086 spanX < minSpanX || spanY < minSpanY) {
1087 return bestXY;
1088 }
1089
1090 for (int y = 0; y < countY - (minSpanY - 1); y++) {
Michael Jurkac28de512010-08-13 11:27:44 -07001091 inner:
Adam Cohend41fbf52012-02-16 23:53:59 -08001092 for (int x = 0; x < countX - (minSpanX - 1); x++) {
1093 int ySize = -1;
1094 int xSize = -1;
Adam Cohendf035382011-04-11 17:22:04 -07001095 if (ignoreOccupied) {
Adam Cohend41fbf52012-02-16 23:53:59 -08001096 // First, let's see if this thing fits anywhere
1097 for (int i = 0; i < minSpanX; i++) {
1098 for (int j = 0; j < minSpanY; j++) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001099 if (mOccupied.cells[x + i][y + j]) {
Adam Cohendf035382011-04-11 17:22:04 -07001100 continue inner;
1101 }
Michael Jurkac28de512010-08-13 11:27:44 -07001102 }
1103 }
Adam Cohend41fbf52012-02-16 23:53:59 -08001104 xSize = minSpanX;
1105 ySize = minSpanY;
1106
1107 // We know that the item will fit at _some_ acceptable size, now let's see
1108 // how big we can make it. We'll alternate between incrementing x and y spans
1109 // until we hit a limit.
1110 boolean incX = true;
1111 boolean hitMaxX = xSize >= spanX;
1112 boolean hitMaxY = ySize >= spanY;
1113 while (!(hitMaxX && hitMaxY)) {
1114 if (incX && !hitMaxX) {
1115 for (int j = 0; j < ySize; j++) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001116 if (x + xSize > countX -1 || mOccupied.cells[x + xSize][y + j]) {
Adam Cohend41fbf52012-02-16 23:53:59 -08001117 // We can't move out horizontally
1118 hitMaxX = true;
1119 }
1120 }
1121 if (!hitMaxX) {
1122 xSize++;
1123 }
1124 } else if (!hitMaxY) {
1125 for (int i = 0; i < xSize; i++) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001126 if (y + ySize > countY - 1 || mOccupied.cells[x + i][y + ySize]) {
Adam Cohend41fbf52012-02-16 23:53:59 -08001127 // We can't move out vertically
1128 hitMaxY = true;
1129 }
1130 }
1131 if (!hitMaxY) {
1132 ySize++;
1133 }
1134 }
1135 hitMaxX |= xSize >= spanX;
1136 hitMaxY |= ySize >= spanY;
1137 incX = !incX;
1138 }
1139 incX = true;
1140 hitMaxX = xSize >= spanX;
1141 hitMaxY = ySize >= spanY;
Michael Jurkac28de512010-08-13 11:27:44 -07001142 }
Sunny Goyal2805e632015-05-20 15:35:32 -07001143 final int[] cellXY = mTmpPoint;
Adam Cohene3e27a82011-04-15 12:07:39 -07001144 cellToCenterPoint(x, y, cellXY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001145
Adam Cohend41fbf52012-02-16 23:53:59 -08001146 // We verify that the current rect is not a sub-rect of any of our previous
1147 // candidates. In this case, the current rect is disqualified in favour of the
1148 // containing rect.
1149 Rect currentRect = mTempRectStack.pop();
1150 currentRect.set(x, y, x + xSize, y + ySize);
1151 boolean contained = false;
1152 for (Rect r : validRegions) {
1153 if (r.contains(currentRect)) {
1154 contained = true;
1155 break;
1156 }
1157 }
1158 validRegions.push(currentRect);
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001159 double distance = Math.hypot(cellXY[0] - pixelX, cellXY[1] - pixelY);
Adam Cohen482ed822012-03-02 14:15:13 -08001160
Adam Cohend41fbf52012-02-16 23:53:59 -08001161 if ((distance <= bestDistance && !contained) ||
1162 currentRect.contains(bestRect)) {
Michael Jurkac28de512010-08-13 11:27:44 -07001163 bestDistance = distance;
1164 bestXY[0] = x;
1165 bestXY[1] = y;
Adam Cohend41fbf52012-02-16 23:53:59 -08001166 if (resultSpan != null) {
1167 resultSpan[0] = xSize;
1168 resultSpan[1] = ySize;
1169 }
1170 bestRect.set(currentRect);
Michael Jurkac28de512010-08-13 11:27:44 -07001171 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001172 }
1173 }
1174
Adam Cohenc0dcf592011-06-01 15:30:43 -07001175 // Return -1, -1 if no suitable location found
1176 if (bestDistance == Double.MAX_VALUE) {
1177 bestXY[0] = -1;
1178 bestXY[1] = -1;
Jeff Sharkey70864282009-04-07 21:08:40 -07001179 }
Adam Cohend41fbf52012-02-16 23:53:59 -08001180 recycleTempRects(validRegions);
Adam Cohenc0dcf592011-06-01 15:30:43 -07001181 return bestXY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001182 }
Winson Chungaafa03c2010-06-11 17:34:16 -07001183
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001184 /**
Adam Cohen482ed822012-03-02 14:15:13 -08001185 * Find a vacant area that will fit the given bounds nearest the requested
1186 * cell location, and will also weigh in a suggested direction vector of the
1187 * desired location. This method computers distance based on unit grid distances,
1188 * not pixel distances.
1189 *
Adam Cohen47a876d2012-03-19 13:21:41 -07001190 * @param cellX The X cell nearest to which you want to search for a vacant area.
1191 * @param cellY The Y cell nearest which you want to search for a vacant area.
Adam Cohen482ed822012-03-02 14:15:13 -08001192 * @param spanX Horizontal span of the object.
1193 * @param spanY Vertical span of the object.
Adam Cohen47a876d2012-03-19 13:21:41 -07001194 * @param direction The favored direction in which the views should move from x, y
Sunny Goyal9eba1fd2015-10-16 08:58:57 -07001195 * @param occupied The array which represents which cells in the CellLayout are occupied
Adam Cohen47a876d2012-03-19 13:21:41 -07001196 * @param blockOccupied The array which represents which cells in the specified block (cellX,
Winson Chung5f8afe62013-08-12 16:19:28 -07001197 * cellY, spanX, spanY) are occupied. This is used when try to move a group of views.
Adam Cohen482ed822012-03-02 14:15:13 -08001198 * @param result Array in which to place the result, or null (in which case a new array will
1199 * be allocated)
1200 * @return The X, Y cell of a vacant area that can contain this object,
1201 * nearest the requested location.
1202 */
1203 private int[] findNearestArea(int cellX, int cellY, int spanX, int spanY, int[] direction,
Adam Cohen47a876d2012-03-19 13:21:41 -07001204 boolean[][] occupied, boolean blockOccupied[][], int[] result) {
Adam Cohen482ed822012-03-02 14:15:13 -08001205 // Keep track of best-scoring drop area
1206 final int[] bestXY = result != null ? result : new int[2];
1207 float bestDistance = Float.MAX_VALUE;
1208 int bestDirectionScore = Integer.MIN_VALUE;
1209
1210 final int countX = mCountX;
1211 final int countY = mCountY;
1212
1213 for (int y = 0; y < countY - (spanY - 1); y++) {
1214 inner:
1215 for (int x = 0; x < countX - (spanX - 1); x++) {
1216 // First, let's see if this thing fits anywhere
1217 for (int i = 0; i < spanX; i++) {
1218 for (int j = 0; j < spanY; j++) {
Adam Cohen47a876d2012-03-19 13:21:41 -07001219 if (occupied[x + i][y + j] && (blockOccupied == null || blockOccupied[i][j])) {
Adam Cohen482ed822012-03-02 14:15:13 -08001220 continue inner;
1221 }
1222 }
1223 }
1224
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001225 float distance = (float) Math.hypot(x - cellX, y - cellY);
Adam Cohen482ed822012-03-02 14:15:13 -08001226 int[] curDirection = mTmpPoint;
Adam Cohen47a876d2012-03-19 13:21:41 -07001227 computeDirectionVector(x - cellX, y - cellY, curDirection);
1228 // The direction score is just the dot product of the two candidate direction
1229 // and that passed in.
Adam Cohen482ed822012-03-02 14:15:13 -08001230 int curDirectionScore = direction[0] * curDirection[0] +
1231 direction[1] * curDirection[1];
Sunny Goyal8f90dcf2016-08-18 15:01:11 -07001232 if (Float.compare(distance, bestDistance) < 0 ||
1233 (Float.compare(distance, bestDistance) == 0
1234 && curDirectionScore > bestDirectionScore)) {
Adam Cohen482ed822012-03-02 14:15:13 -08001235 bestDistance = distance;
1236 bestDirectionScore = curDirectionScore;
1237 bestXY[0] = x;
1238 bestXY[1] = y;
1239 }
1240 }
1241 }
1242
1243 // Return -1, -1 if no suitable location found
1244 if (bestDistance == Float.MAX_VALUE) {
1245 bestXY[0] = -1;
1246 bestXY[1] = -1;
1247 }
1248 return bestXY;
1249 }
1250
1251 private boolean addViewToTempLocation(View v, Rect rectOccupiedByPotentialDrop,
Adam Cohen8baab352012-03-20 17:39:21 -07001252 int[] direction, ItemConfiguration currentState) {
1253 CellAndSpan c = currentState.map.get(v);
Adam Cohen482ed822012-03-02 14:15:13 -08001254 boolean success = false;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001255 mTmpOccupied.markCells(c, false);
1256 mTmpOccupied.markCells(rectOccupiedByPotentialDrop, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001257
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001258 findNearestArea(c.cellX, c.cellY, c.spanX, c.spanY, direction,
1259 mTmpOccupied.cells, null, mTempLocation);
Adam Cohen482ed822012-03-02 14:15:13 -08001260
1261 if (mTempLocation[0] >= 0 && mTempLocation[1] >= 0) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001262 c.cellX = mTempLocation[0];
1263 c.cellY = mTempLocation[1];
Adam Cohen482ed822012-03-02 14:15:13 -08001264 success = true;
Adam Cohen482ed822012-03-02 14:15:13 -08001265 }
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001266 mTmpOccupied.markCells(c, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001267 return success;
1268 }
1269
Adam Cohenf3900c22012-11-16 18:28:11 -08001270 /**
1271 * This helper class defines a cluster of views. It helps with defining complex edges
1272 * of the cluster and determining how those edges interact with other views. The edges
1273 * essentially define a fine-grained boundary around the cluster of views -- like a more
1274 * precise version of a bounding box.
1275 */
1276 private class ViewCluster {
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001277 final static int LEFT = 1 << 0;
1278 final static int TOP = 1 << 1;
1279 final static int RIGHT = 1 << 2;
1280 final static int BOTTOM = 1 << 3;
Adam Cohen47a876d2012-03-19 13:21:41 -07001281
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001282 final ArrayList<View> views;
1283 final ItemConfiguration config;
1284 final Rect boundingRect = new Rect();
Adam Cohen47a876d2012-03-19 13:21:41 -07001285
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001286 final int[] leftEdge = new int[mCountY];
1287 final int[] rightEdge = new int[mCountY];
1288 final int[] topEdge = new int[mCountX];
1289 final int[] bottomEdge = new int[mCountX];
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001290 int dirtyEdges;
1291 boolean boundingRectDirty;
Adam Cohenf3900c22012-11-16 18:28:11 -08001292
1293 @SuppressWarnings("unchecked")
1294 public ViewCluster(ArrayList<View> views, ItemConfiguration config) {
1295 this.views = (ArrayList<View>) views.clone();
1296 this.config = config;
1297 resetEdges();
Adam Cohen47a876d2012-03-19 13:21:41 -07001298 }
1299
Adam Cohenf3900c22012-11-16 18:28:11 -08001300 void resetEdges() {
1301 for (int i = 0; i < mCountX; i++) {
1302 topEdge[i] = -1;
1303 bottomEdge[i] = -1;
1304 }
1305 for (int i = 0; i < mCountY; i++) {
1306 leftEdge[i] = -1;
1307 rightEdge[i] = -1;
1308 }
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001309 dirtyEdges = LEFT | TOP | RIGHT | BOTTOM;
Adam Cohenf3900c22012-11-16 18:28:11 -08001310 boundingRectDirty = true;
1311 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001312
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001313 void computeEdge(int which) {
Adam Cohenf3900c22012-11-16 18:28:11 -08001314 int count = views.size();
1315 for (int i = 0; i < count; i++) {
1316 CellAndSpan cs = config.map.get(views.get(i));
1317 switch (which) {
1318 case LEFT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001319 int left = cs.cellX;
1320 for (int j = cs.cellY; j < cs.cellY + cs.spanY; j++) {
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001321 if (left < leftEdge[j] || leftEdge[j] < 0) {
1322 leftEdge[j] = left;
Adam Cohena56dc102012-07-13 13:41:42 -07001323 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001324 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001325 break;
1326 case RIGHT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001327 int right = cs.cellX + cs.spanX;
1328 for (int j = cs.cellY; j < cs.cellY + cs.spanY; j++) {
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001329 if (right > rightEdge[j]) {
1330 rightEdge[j] = right;
Adam Cohenf3900c22012-11-16 18:28:11 -08001331 }
1332 }
1333 break;
1334 case TOP:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001335 int top = cs.cellY;
1336 for (int j = cs.cellX; j < cs.cellX + cs.spanX; j++) {
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001337 if (top < topEdge[j] || topEdge[j] < 0) {
1338 topEdge[j] = top;
Adam Cohenf3900c22012-11-16 18:28:11 -08001339 }
1340 }
1341 break;
1342 case BOTTOM:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001343 int bottom = cs.cellY + cs.spanY;
1344 for (int j = cs.cellX; j < cs.cellX + cs.spanX; j++) {
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001345 if (bottom > bottomEdge[j]) {
1346 bottomEdge[j] = bottom;
Adam Cohenf3900c22012-11-16 18:28:11 -08001347 }
1348 }
1349 break;
Adam Cohen47a876d2012-03-19 13:21:41 -07001350 }
1351 }
1352 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001353
1354 boolean isViewTouchingEdge(View v, int whichEdge) {
1355 CellAndSpan cs = config.map.get(v);
1356
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001357 if ((dirtyEdges & whichEdge) == whichEdge) {
1358 computeEdge(whichEdge);
1359 dirtyEdges &= ~whichEdge;
1360 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001361
1362 switch (whichEdge) {
1363 case LEFT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001364 for (int i = cs.cellY; i < cs.cellY + cs.spanY; i++) {
1365 if (leftEdge[i] == cs.cellX + cs.spanX) {
Adam Cohenf3900c22012-11-16 18:28:11 -08001366 return true;
1367 }
1368 }
1369 break;
1370 case RIGHT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001371 for (int i = cs.cellY; i < cs.cellY + cs.spanY; i++) {
1372 if (rightEdge[i] == cs.cellX) {
Adam Cohenf3900c22012-11-16 18:28:11 -08001373 return true;
1374 }
1375 }
1376 break;
1377 case TOP:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001378 for (int i = cs.cellX; i < cs.cellX + cs.spanX; i++) {
1379 if (topEdge[i] == cs.cellY + cs.spanY) {
Adam Cohenf3900c22012-11-16 18:28:11 -08001380 return true;
1381 }
1382 }
1383 break;
1384 case BOTTOM:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001385 for (int i = cs.cellX; i < cs.cellX + cs.spanX; i++) {
1386 if (bottomEdge[i] == cs.cellY) {
Adam Cohenf3900c22012-11-16 18:28:11 -08001387 return true;
1388 }
1389 }
1390 break;
1391 }
1392 return false;
1393 }
1394
1395 void shift(int whichEdge, int delta) {
1396 for (View v: views) {
1397 CellAndSpan c = config.map.get(v);
1398 switch (whichEdge) {
1399 case LEFT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001400 c.cellX -= delta;
Adam Cohenf3900c22012-11-16 18:28:11 -08001401 break;
1402 case RIGHT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001403 c.cellX += delta;
Adam Cohenf3900c22012-11-16 18:28:11 -08001404 break;
1405 case TOP:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001406 c.cellY -= delta;
Adam Cohenf3900c22012-11-16 18:28:11 -08001407 break;
1408 case BOTTOM:
1409 default:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001410 c.cellY += delta;
Adam Cohenf3900c22012-11-16 18:28:11 -08001411 break;
1412 }
1413 }
1414 resetEdges();
1415 }
1416
1417 public void addView(View v) {
1418 views.add(v);
1419 resetEdges();
1420 }
1421
1422 public Rect getBoundingRect() {
1423 if (boundingRectDirty) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001424 config.getBoundingRectForViews(views, boundingRect);
Adam Cohenf3900c22012-11-16 18:28:11 -08001425 }
1426 return boundingRect;
1427 }
1428
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001429 final PositionComparator comparator = new PositionComparator();
Adam Cohenf3900c22012-11-16 18:28:11 -08001430 class PositionComparator implements Comparator<View> {
1431 int whichEdge = 0;
1432 public int compare(View left, View right) {
1433 CellAndSpan l = config.map.get(left);
1434 CellAndSpan r = config.map.get(right);
1435 switch (whichEdge) {
1436 case LEFT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001437 return (r.cellX + r.spanX) - (l.cellX + l.spanX);
Adam Cohenf3900c22012-11-16 18:28:11 -08001438 case RIGHT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001439 return l.cellX - r.cellX;
Adam Cohenf3900c22012-11-16 18:28:11 -08001440 case TOP:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001441 return (r.cellY + r.spanY) - (l.cellY + l.spanY);
Adam Cohenf3900c22012-11-16 18:28:11 -08001442 case BOTTOM:
1443 default:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001444 return l.cellY - r.cellY;
Adam Cohenf3900c22012-11-16 18:28:11 -08001445 }
1446 }
1447 }
1448
1449 public void sortConfigurationForEdgePush(int edge) {
1450 comparator.whichEdge = edge;
1451 Collections.sort(config.sortedViews, comparator);
1452 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001453 }
1454
Adam Cohenf3900c22012-11-16 18:28:11 -08001455 private boolean pushViewsToTempLocation(ArrayList<View> views, Rect rectOccupiedByPotentialDrop,
1456 int[] direction, View dragView, ItemConfiguration currentState) {
Adam Cohene0489502012-08-27 15:18:53 -07001457
Adam Cohenf3900c22012-11-16 18:28:11 -08001458 ViewCluster cluster = new ViewCluster(views, currentState);
1459 Rect clusterRect = cluster.getBoundingRect();
1460 int whichEdge;
1461 int pushDistance;
1462 boolean fail = false;
1463
1464 // Determine the edge of the cluster that will be leading the push and how far
1465 // the cluster must be shifted.
1466 if (direction[0] < 0) {
1467 whichEdge = ViewCluster.LEFT;
1468 pushDistance = clusterRect.right - rectOccupiedByPotentialDrop.left;
Adam Cohene0489502012-08-27 15:18:53 -07001469 } else if (direction[0] > 0) {
Adam Cohenf3900c22012-11-16 18:28:11 -08001470 whichEdge = ViewCluster.RIGHT;
1471 pushDistance = rectOccupiedByPotentialDrop.right - clusterRect.left;
1472 } else if (direction[1] < 0) {
1473 whichEdge = ViewCluster.TOP;
1474 pushDistance = clusterRect.bottom - rectOccupiedByPotentialDrop.top;
1475 } else {
1476 whichEdge = ViewCluster.BOTTOM;
1477 pushDistance = rectOccupiedByPotentialDrop.bottom - clusterRect.top;
Adam Cohene0489502012-08-27 15:18:53 -07001478 }
1479
Adam Cohenf3900c22012-11-16 18:28:11 -08001480 // Break early for invalid push distance.
1481 if (pushDistance <= 0) {
1482 return false;
Adam Cohene0489502012-08-27 15:18:53 -07001483 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001484
1485 // Mark the occupied state as false for the group of views we want to move.
1486 for (View v: views) {
1487 CellAndSpan c = currentState.map.get(v);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001488 mTmpOccupied.markCells(c, false);
Adam Cohenf3900c22012-11-16 18:28:11 -08001489 }
1490
1491 // We save the current configuration -- if we fail to find a solution we will revert
1492 // to the initial state. The process of finding a solution modifies the configuration
1493 // in place, hence the need for revert in the failure case.
1494 currentState.save();
1495
1496 // The pushing algorithm is simplified by considering the views in the order in which
1497 // they would be pushed by the cluster. For example, if the cluster is leading with its
1498 // left edge, we consider sort the views by their right edge, from right to left.
1499 cluster.sortConfigurationForEdgePush(whichEdge);
1500
1501 while (pushDistance > 0 && !fail) {
1502 for (View v: currentState.sortedViews) {
1503 // For each view that isn't in the cluster, we see if the leading edge of the
1504 // cluster is contacting the edge of that view. If so, we add that view to the
1505 // cluster.
1506 if (!cluster.views.contains(v) && v != dragView) {
1507 if (cluster.isViewTouchingEdge(v, whichEdge)) {
1508 LayoutParams lp = (LayoutParams) v.getLayoutParams();
1509 if (!lp.canReorder) {
1510 // The push solution includes the all apps button, this is not viable.
1511 fail = true;
1512 break;
1513 }
1514 cluster.addView(v);
1515 CellAndSpan c = currentState.map.get(v);
1516
1517 // Adding view to cluster, mark it as not occupied.
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001518 mTmpOccupied.markCells(c, false);
Adam Cohenf3900c22012-11-16 18:28:11 -08001519 }
1520 }
1521 }
1522 pushDistance--;
1523
1524 // The cluster has been completed, now we move the whole thing over in the appropriate
1525 // direction.
1526 cluster.shift(whichEdge, 1);
1527 }
1528
1529 boolean foundSolution = false;
1530 clusterRect = cluster.getBoundingRect();
1531
1532 // Due to the nature of the algorithm, the only check required to verify a valid solution
1533 // is to ensure that completed shifted cluster lies completely within the cell layout.
1534 if (!fail && clusterRect.left >= 0 && clusterRect.right <= mCountX && clusterRect.top >= 0 &&
1535 clusterRect.bottom <= mCountY) {
1536 foundSolution = true;
1537 } else {
1538 currentState.restore();
1539 }
1540
1541 // In either case, we set the occupied array as marked for the location of the views
1542 for (View v: cluster.views) {
1543 CellAndSpan c = currentState.map.get(v);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001544 mTmpOccupied.markCells(c, true);
Adam Cohenf3900c22012-11-16 18:28:11 -08001545 }
1546
1547 return foundSolution;
Adam Cohene0489502012-08-27 15:18:53 -07001548 }
1549
Adam Cohen482ed822012-03-02 14:15:13 -08001550 private boolean addViewsToTempLocation(ArrayList<View> views, Rect rectOccupiedByPotentialDrop,
Adam Cohenf3900c22012-11-16 18:28:11 -08001551 int[] direction, View dragView, ItemConfiguration currentState) {
Adam Cohen482ed822012-03-02 14:15:13 -08001552 if (views.size() == 0) return true;
Adam Cohen482ed822012-03-02 14:15:13 -08001553
Adam Cohen8baab352012-03-20 17:39:21 -07001554 boolean success = false;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001555 Rect boundingRect = new Rect();
Adam Cohen8baab352012-03-20 17:39:21 -07001556 // We construct a rect which represents the entire group of views passed in
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001557 currentState.getBoundingRectForViews(views, boundingRect);
Adam Cohen8baab352012-03-20 17:39:21 -07001558
Adam Cohen8baab352012-03-20 17:39:21 -07001559 // Mark the occupied state as false for the group of views we want to move.
Adam Cohenf3900c22012-11-16 18:28:11 -08001560 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001561 CellAndSpan c = currentState.map.get(v);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001562 mTmpOccupied.markCells(c, false);
Adam Cohen8baab352012-03-20 17:39:21 -07001563 }
1564
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001565 GridOccupancy blockOccupied = new GridOccupancy(boundingRect.width(), boundingRect.height());
Adam Cohen47a876d2012-03-19 13:21:41 -07001566 int top = boundingRect.top;
1567 int left = boundingRect.left;
Adam Cohen8baab352012-03-20 17:39:21 -07001568 // We mark more precisely which parts of the bounding rect are truly occupied, allowing
Adam Cohena56dc102012-07-13 13:41:42 -07001569 // for interlocking.
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 blockOccupied.markCells(c.cellX - left, c.cellY - top, c.spanX, c.spanY, true);
Adam Cohen47a876d2012-03-19 13:21:41 -07001573 }
1574
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001575 mTmpOccupied.markCells(rectOccupiedByPotentialDrop, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001576
Adam Cohenf3900c22012-11-16 18:28:11 -08001577 findNearestArea(boundingRect.left, boundingRect.top, boundingRect.width(),
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001578 boundingRect.height(), direction,
1579 mTmpOccupied.cells, blockOccupied.cells, mTempLocation);
Adam Cohen482ed822012-03-02 14:15:13 -08001580
Adam Cohen8baab352012-03-20 17:39:21 -07001581 // If we successfuly found a location by pushing the block of views, we commit it
Adam Cohen482ed822012-03-02 14:15:13 -08001582 if (mTempLocation[0] >= 0 && mTempLocation[1] >= 0) {
Adam Cohen8baab352012-03-20 17:39:21 -07001583 int deltaX = mTempLocation[0] - boundingRect.left;
1584 int deltaY = mTempLocation[1] - boundingRect.top;
Adam Cohenf3900c22012-11-16 18:28:11 -08001585 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001586 CellAndSpan c = currentState.map.get(v);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001587 c.cellX += deltaX;
1588 c.cellY += deltaY;
Adam Cohen482ed822012-03-02 14:15:13 -08001589 }
1590 success = true;
1591 }
Adam Cohen8baab352012-03-20 17:39:21 -07001592
1593 // In either case, we set the occupied array as marked for the location of the views
Adam Cohenf3900c22012-11-16 18:28:11 -08001594 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001595 CellAndSpan c = currentState.map.get(v);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001596 mTmpOccupied.markCells(c, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001597 }
1598 return success;
1599 }
1600
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001601 // This method tries to find a reordering solution which satisfies the push mechanic by trying
1602 // to push items in each of the cardinal directions, in an order based on the direction vector
1603 // passed.
1604 private boolean attemptPushInDirection(ArrayList<View> intersectingViews, Rect occupied,
1605 int[] direction, View ignoreView, ItemConfiguration solution) {
1606 if ((Math.abs(direction[0]) + Math.abs(direction[1])) > 1) {
Winson Chung5f8afe62013-08-12 16:19:28 -07001607 // If the direction vector has two non-zero components, we try pushing
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001608 // separately in each of the components.
1609 int temp = direction[1];
1610 direction[1] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08001611
1612 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001613 ignoreView, solution)) {
1614 return true;
1615 }
1616 direction[1] = temp;
1617 temp = direction[0];
1618 direction[0] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08001619
1620 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001621 ignoreView, solution)) {
1622 return true;
1623 }
1624 // Revert the direction
1625 direction[0] = temp;
1626
1627 // Now we try pushing in each component of the opposite direction
1628 direction[0] *= -1;
1629 direction[1] *= -1;
1630 temp = direction[1];
1631 direction[1] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08001632 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001633 ignoreView, solution)) {
1634 return true;
1635 }
1636
1637 direction[1] = temp;
1638 temp = direction[0];
1639 direction[0] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08001640 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001641 ignoreView, solution)) {
1642 return true;
1643 }
1644 // revert the direction
1645 direction[0] = temp;
1646 direction[0] *= -1;
1647 direction[1] *= -1;
Winson Chung5f8afe62013-08-12 16:19:28 -07001648
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001649 } else {
1650 // If the direction vector has a single non-zero component, we push first in the
1651 // direction of the vector
Adam Cohenf3900c22012-11-16 18:28:11 -08001652 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001653 ignoreView, solution)) {
1654 return true;
1655 }
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001656 // Then we try the opposite direction
1657 direction[0] *= -1;
1658 direction[1] *= -1;
Adam Cohenf3900c22012-11-16 18:28:11 -08001659 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001660 ignoreView, solution)) {
1661 return true;
1662 }
1663 // Switch the direction back
1664 direction[0] *= -1;
1665 direction[1] *= -1;
Winson Chung5f8afe62013-08-12 16:19:28 -07001666
1667 // If we have failed to find a push solution with the above, then we try
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001668 // to find a solution by pushing along the perpendicular axis.
1669
1670 // Swap the components
1671 int temp = direction[1];
1672 direction[1] = direction[0];
1673 direction[0] = temp;
Adam Cohenf3900c22012-11-16 18:28:11 -08001674 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001675 ignoreView, solution)) {
1676 return true;
1677 }
1678
1679 // Then we try the opposite direction
1680 direction[0] *= -1;
1681 direction[1] *= -1;
Adam Cohenf3900c22012-11-16 18:28:11 -08001682 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001683 ignoreView, solution)) {
1684 return true;
1685 }
1686 // Switch the direction back
1687 direction[0] *= -1;
1688 direction[1] *= -1;
1689
1690 // Swap the components back
1691 temp = direction[1];
1692 direction[1] = direction[0];
1693 direction[0] = temp;
1694 }
1695 return false;
1696 }
1697
Adam Cohen482ed822012-03-02 14:15:13 -08001698 private boolean rearrangementExists(int cellX, int cellY, int spanX, int spanY, int[] direction,
Adam Cohen8baab352012-03-20 17:39:21 -07001699 View ignoreView, ItemConfiguration solution) {
Winson Chunge3e03bc2012-05-01 15:10:11 -07001700 // Return early if get invalid cell positions
1701 if (cellX < 0 || cellY < 0) return false;
Adam Cohen482ed822012-03-02 14:15:13 -08001702
Adam Cohen8baab352012-03-20 17:39:21 -07001703 mIntersectingViews.clear();
Adam Cohen482ed822012-03-02 14:15:13 -08001704 mOccupiedRect.set(cellX, cellY, cellX + spanX, cellY + spanY);
Adam Cohen482ed822012-03-02 14:15:13 -08001705
Adam Cohen8baab352012-03-20 17:39:21 -07001706 // Mark the desired location of the view currently being dragged.
Adam Cohen482ed822012-03-02 14:15:13 -08001707 if (ignoreView != null) {
Adam Cohen8baab352012-03-20 17:39:21 -07001708 CellAndSpan c = solution.map.get(ignoreView);
Adam Cohen19f37922012-03-21 11:59:11 -07001709 if (c != null) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001710 c.cellX = cellX;
1711 c.cellY = cellY;
Adam Cohen19f37922012-03-21 11:59:11 -07001712 }
Adam Cohen482ed822012-03-02 14:15:13 -08001713 }
Adam Cohen482ed822012-03-02 14:15:13 -08001714 Rect r0 = new Rect(cellX, cellY, cellX + spanX, cellY + spanY);
1715 Rect r1 = new Rect();
Adam Cohen8baab352012-03-20 17:39:21 -07001716 for (View child: solution.map.keySet()) {
Adam Cohen482ed822012-03-02 14:15:13 -08001717 if (child == ignoreView) continue;
Adam Cohen8baab352012-03-20 17:39:21 -07001718 CellAndSpan c = solution.map.get(child);
Adam Cohen482ed822012-03-02 14:15:13 -08001719 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001720 r1.set(c.cellX, c.cellY, c.cellX + c.spanX, c.cellY + c.spanY);
Adam Cohen482ed822012-03-02 14:15:13 -08001721 if (Rect.intersects(r0, r1)) {
1722 if (!lp.canReorder) {
1723 return false;
1724 }
1725 mIntersectingViews.add(child);
1726 }
1727 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001728
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001729 solution.intersectingViews = new ArrayList<>(mIntersectingViews);
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001730
Winson Chung5f8afe62013-08-12 16:19:28 -07001731 // First we try to find a solution which respects the push mechanic. That is,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001732 // we try to find a solution such that no displaced item travels through another item
1733 // without also displacing that item.
1734 if (attemptPushInDirection(mIntersectingViews, mOccupiedRect, direction, ignoreView,
Adam Cohen19f37922012-03-21 11:59:11 -07001735 solution)) {
Adam Cohen47a876d2012-03-19 13:21:41 -07001736 return true;
1737 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001738
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001739 // Next we try moving the views as a block, but without requiring the push mechanic.
Adam Cohenf3900c22012-11-16 18:28:11 -08001740 if (addViewsToTempLocation(mIntersectingViews, mOccupiedRect, direction, ignoreView,
Adam Cohen19f37922012-03-21 11:59:11 -07001741 solution)) {
Adam Cohen482ed822012-03-02 14:15:13 -08001742 return true;
1743 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001744
Adam Cohen482ed822012-03-02 14:15:13 -08001745 // Ok, they couldn't move as a block, let's move them individually
1746 for (View v : mIntersectingViews) {
Adam Cohen8baab352012-03-20 17:39:21 -07001747 if (!addViewToTempLocation(v, mOccupiedRect, direction, solution)) {
Adam Cohen482ed822012-03-02 14:15:13 -08001748 return false;
1749 }
1750 }
1751 return true;
1752 }
1753
1754 /*
1755 * Returns a pair (x, y), where x,y are in {-1, 0, 1} corresponding to vector between
1756 * the provided point and the provided cell
1757 */
Adam Cohen47a876d2012-03-19 13:21:41 -07001758 private void computeDirectionVector(float deltaX, float deltaY, int[] result) {
Jon Mirandae96798e2016-12-07 12:10:44 -08001759 double angle = Math.atan(deltaY / deltaX);
Adam Cohen482ed822012-03-02 14:15:13 -08001760
1761 result[0] = 0;
1762 result[1] = 0;
1763 if (Math.abs(Math.cos(angle)) > 0.5f) {
1764 result[0] = (int) Math.signum(deltaX);
1765 }
1766 if (Math.abs(Math.sin(angle)) > 0.5f) {
1767 result[1] = (int) Math.signum(deltaY);
1768 }
1769 }
1770
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001771 private ItemConfiguration findReorderSolution(int pixelX, int pixelY, int minSpanX, int minSpanY,
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001772 int spanX, int spanY, int[] direction, View dragView, boolean decX,
1773 ItemConfiguration solution) {
Adam Cohen8baab352012-03-20 17:39:21 -07001774 // Copy the current state into the solution. This solution will be manipulated as necessary.
1775 copyCurrentStateToSolution(solution, false);
1776 // Copy the current occupied array into the temporary occupied array. This array will be
1777 // manipulated as necessary to find a solution.
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001778 mOccupied.copyTo(mTmpOccupied);
Adam Cohen482ed822012-03-02 14:15:13 -08001779
1780 // We find the nearest cell into which we would place the dragged item, assuming there's
1781 // nothing in its way.
1782 int result[] = new int[2];
1783 result = findNearestArea(pixelX, pixelY, spanX, spanY, result);
1784
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001785 boolean success;
Adam Cohen482ed822012-03-02 14:15:13 -08001786 // First we try the exact nearest position of the item being dragged,
1787 // we will then want to try to move this around to other neighbouring positions
Adam Cohen8baab352012-03-20 17:39:21 -07001788 success = rearrangementExists(result[0], result[1], spanX, spanY, direction, dragView,
1789 solution);
Adam Cohen482ed822012-03-02 14:15:13 -08001790
1791 if (!success) {
1792 // We try shrinking the widget down to size in an alternating pattern, shrink 1 in
1793 // x, then 1 in y etc.
1794 if (spanX > minSpanX && (minSpanY == spanY || decX)) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001795 return findReorderSolution(pixelX, pixelY, minSpanX, minSpanY, spanX - 1, spanY,
1796 direction, dragView, false, solution);
Adam Cohen482ed822012-03-02 14:15:13 -08001797 } else if (spanY > minSpanY) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001798 return findReorderSolution(pixelX, pixelY, minSpanX, minSpanY, spanX, spanY - 1,
1799 direction, dragView, true, solution);
Adam Cohen482ed822012-03-02 14:15:13 -08001800 }
1801 solution.isSolution = false;
1802 } else {
1803 solution.isSolution = true;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001804 solution.cellX = result[0];
1805 solution.cellY = result[1];
1806 solution.spanX = spanX;
1807 solution.spanY = spanY;
Adam Cohen482ed822012-03-02 14:15:13 -08001808 }
1809 return solution;
1810 }
1811
1812 private void copyCurrentStateToSolution(ItemConfiguration solution, boolean temp) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07001813 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08001814 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07001815 View child = mShortcutsAndWidgets.getChildAt(i);
Adam Cohen482ed822012-03-02 14:15:13 -08001816 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Adam Cohen8baab352012-03-20 17:39:21 -07001817 CellAndSpan c;
Adam Cohen482ed822012-03-02 14:15:13 -08001818 if (temp) {
Adam Cohen8baab352012-03-20 17:39:21 -07001819 c = new CellAndSpan(lp.tmpCellX, lp.tmpCellY, lp.cellHSpan, lp.cellVSpan);
Adam Cohen482ed822012-03-02 14:15:13 -08001820 } else {
Adam Cohen8baab352012-03-20 17:39:21 -07001821 c = new CellAndSpan(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan);
Adam Cohen482ed822012-03-02 14:15:13 -08001822 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001823 solution.add(child, c);
Adam Cohen482ed822012-03-02 14:15:13 -08001824 }
1825 }
1826
1827 private void copySolutionToTempState(ItemConfiguration solution, View dragView) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001828 mTmpOccupied.clear();
Adam Cohen482ed822012-03-02 14:15:13 -08001829
Michael Jurkaa52570f2012-03-20 03:18:20 -07001830 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08001831 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07001832 View child = mShortcutsAndWidgets.getChildAt(i);
Adam Cohen482ed822012-03-02 14:15:13 -08001833 if (child == dragView) continue;
1834 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Adam Cohen8baab352012-03-20 17:39:21 -07001835 CellAndSpan c = solution.map.get(child);
1836 if (c != null) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001837 lp.tmpCellX = c.cellX;
1838 lp.tmpCellY = c.cellY;
Adam Cohen8baab352012-03-20 17:39:21 -07001839 lp.cellHSpan = c.spanX;
1840 lp.cellVSpan = c.spanY;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001841 mTmpOccupied.markCells(c, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001842 }
1843 }
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001844 mTmpOccupied.markCells(solution, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001845 }
1846
1847 private void animateItemsToSolution(ItemConfiguration solution, View dragView, boolean
1848 commitDragView) {
1849
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001850 GridOccupancy occupied = DESTRUCTIVE_REORDER ? mOccupied : mTmpOccupied;
1851 occupied.clear();
Adam Cohen482ed822012-03-02 14:15:13 -08001852
Michael Jurkaa52570f2012-03-20 03:18:20 -07001853 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08001854 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07001855 View child = mShortcutsAndWidgets.getChildAt(i);
Adam Cohen482ed822012-03-02 14:15:13 -08001856 if (child == dragView) continue;
Adam Cohen8baab352012-03-20 17:39:21 -07001857 CellAndSpan c = solution.map.get(child);
1858 if (c != null) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001859 animateChildToPosition(child, c.cellX, c.cellY, REORDER_ANIMATION_DURATION, 0,
Adam Cohen19f37922012-03-21 11:59:11 -07001860 DESTRUCTIVE_REORDER, false);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001861 occupied.markCells(c, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001862 }
1863 }
1864 if (commitDragView) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001865 occupied.markCells(solution, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001866 }
1867 }
1868
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001869
1870 // This method starts or changes the reorder preview animations
1871 private void beginOrAdjustReorderPreviewAnimations(ItemConfiguration solution,
1872 View dragView, int delay, int mode) {
Adam Cohen19f37922012-03-21 11:59:11 -07001873 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen19f37922012-03-21 11:59:11 -07001874 for (int i = 0; i < childCount; i++) {
1875 View child = mShortcutsAndWidgets.getChildAt(i);
1876 if (child == dragView) continue;
1877 CellAndSpan c = solution.map.get(child);
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001878 boolean skip = mode == ReorderPreviewAnimation.MODE_HINT && solution.intersectingViews
1879 != null && !solution.intersectingViews.contains(child);
1880
Adam Cohen19f37922012-03-21 11:59:11 -07001881 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001882 if (c != null && !skip) {
1883 ReorderPreviewAnimation rha = new ReorderPreviewAnimation(child, mode, lp.cellX,
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001884 lp.cellY, c.cellX, c.cellY, c.spanX, c.spanY);
Adam Cohend024f982012-05-23 18:26:45 -07001885 rha.animate();
Adam Cohen19f37922012-03-21 11:59:11 -07001886 }
1887 }
1888 }
1889
Sunny Goyal849c6a22018-08-08 16:33:46 -07001890 private static final Property<ReorderPreviewAnimation, Float> ANIMATION_PROGRESS =
1891 new Property<ReorderPreviewAnimation, Float>(float.class, "animationProgress") {
1892 @Override
1893 public Float get(ReorderPreviewAnimation anim) {
1894 return anim.animationProgress;
1895 }
1896
1897 @Override
1898 public void set(ReorderPreviewAnimation anim, Float progress) {
1899 anim.setAnimationProgress(progress);
1900 }
1901 };
1902
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001903 // Class which represents the reorder preview animations. These animations show that an item is
Adam Cohen19f37922012-03-21 11:59:11 -07001904 // in a temporary state, and hint at where the item will return to.
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001905 class ReorderPreviewAnimation {
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001906 final View child;
Adam Cohend024f982012-05-23 18:26:45 -07001907 float finalDeltaX;
1908 float finalDeltaY;
1909 float initDeltaX;
1910 float initDeltaY;
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001911 final float finalScale;
Adam Cohend024f982012-05-23 18:26:45 -07001912 float initScale;
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001913 final int mode;
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001914 boolean repeating = false;
1915 private static final int PREVIEW_DURATION = 300;
1916 private static final int HINT_DURATION = Workspace.REORDER_TIMEOUT;
1917
Jon Miranda21266912016-12-19 14:12:05 -08001918 private static final float CHILD_DIVIDEND = 4.0f;
1919
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001920 public static final int MODE_HINT = 0;
1921 public static final int MODE_PREVIEW = 1;
1922
Sunny Goyal849c6a22018-08-08 16:33:46 -07001923 float animationProgress = 0;
Adam Cohene7587d22012-05-24 18:50:02 -07001924 Animator a;
Adam Cohen19f37922012-03-21 11:59:11 -07001925
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001926 public ReorderPreviewAnimation(View child, int mode, int cellX0, int cellY0, int cellX1,
1927 int cellY1, int spanX, int spanY) {
Adam Cohen19f37922012-03-21 11:59:11 -07001928 regionToCenterPoint(cellX0, cellY0, spanX, spanY, mTmpPoint);
1929 final int x0 = mTmpPoint[0];
1930 final int y0 = mTmpPoint[1];
1931 regionToCenterPoint(cellX1, cellY1, spanX, spanY, mTmpPoint);
1932 final int x1 = mTmpPoint[0];
1933 final int y1 = mTmpPoint[1];
1934 final int dX = x1 - x0;
1935 final int dY = y1 - y0;
Jon Miranda21266912016-12-19 14:12:05 -08001936
1937 this.child = child;
1938 this.mode = mode;
1939 setInitialAnimationValues(false);
1940 finalScale = (mChildScale - (CHILD_DIVIDEND / child.getWidth())) * initScale;
1941 finalDeltaX = initDeltaX;
1942 finalDeltaY = initDeltaY;
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001943 int dir = mode == MODE_HINT ? -1 : 1;
Adam Cohen19f37922012-03-21 11:59:11 -07001944 if (dX == dY && dX == 0) {
1945 } else {
1946 if (dY == 0) {
Jon Miranda21266912016-12-19 14:12:05 -08001947 finalDeltaX += - dir * Math.signum(dX) * mReorderPreviewAnimationMagnitude;
Adam Cohen19f37922012-03-21 11:59:11 -07001948 } else if (dX == 0) {
Jon Miranda21266912016-12-19 14:12:05 -08001949 finalDeltaY += - dir * Math.signum(dY) * mReorderPreviewAnimationMagnitude;
Adam Cohen19f37922012-03-21 11:59:11 -07001950 } else {
1951 double angle = Math.atan( (float) (dY) / dX);
Jon Miranda21266912016-12-19 14:12:05 -08001952 finalDeltaX += (int) (- dir * Math.signum(dX) *
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001953 Math.abs(Math.cos(angle) * mReorderPreviewAnimationMagnitude));
Jon Miranda21266912016-12-19 14:12:05 -08001954 finalDeltaY += (int) (- dir * Math.signum(dY) *
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001955 Math.abs(Math.sin(angle) * mReorderPreviewAnimationMagnitude));
Adam Cohen19f37922012-03-21 11:59:11 -07001956 }
1957 }
Jon Miranda21266912016-12-19 14:12:05 -08001958 }
1959
1960 void setInitialAnimationValues(boolean restoreOriginalValues) {
1961 if (restoreOriginalValues) {
1962 if (child instanceof LauncherAppWidgetHostView) {
1963 LauncherAppWidgetHostView lahv = (LauncherAppWidgetHostView) child;
1964 initScale = lahv.getScaleToFit();
1965 initDeltaX = lahv.getTranslationForCentering().x;
1966 initDeltaY = lahv.getTranslationForCentering().y;
1967 } else {
1968 initScale = mChildScale;
1969 initDeltaX = 0;
1970 initDeltaY = 0;
1971 }
1972 } else {
1973 initScale = child.getScaleX();
1974 initDeltaX = child.getTranslationX();
1975 initDeltaY = child.getTranslationY();
1976 }
Adam Cohen19f37922012-03-21 11:59:11 -07001977 }
1978
Adam Cohend024f982012-05-23 18:26:45 -07001979 void animate() {
Jon Miranda21266912016-12-19 14:12:05 -08001980 boolean noMovement = (finalDeltaX == initDeltaX) && (finalDeltaY == initDeltaY);
1981
Adam Cohen19f37922012-03-21 11:59:11 -07001982 if (mShakeAnimators.containsKey(child)) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001983 ReorderPreviewAnimation oldAnimation = mShakeAnimators.get(child);
Adam Cohend024f982012-05-23 18:26:45 -07001984 oldAnimation.cancel();
Adam Cohen19f37922012-03-21 11:59:11 -07001985 mShakeAnimators.remove(child);
Jon Miranda21266912016-12-19 14:12:05 -08001986 if (noMovement) {
Adam Cohene7587d22012-05-24 18:50:02 -07001987 completeAnimationImmediately();
1988 return;
1989 }
Adam Cohen19f37922012-03-21 11:59:11 -07001990 }
Jon Miranda21266912016-12-19 14:12:05 -08001991 if (noMovement) {
Adam Cohen19f37922012-03-21 11:59:11 -07001992 return;
1993 }
Sunny Goyal849c6a22018-08-08 16:33:46 -07001994 ValueAnimator va = ObjectAnimator.ofFloat(this, ANIMATION_PROGRESS, 0, 1);
Adam Cohene7587d22012-05-24 18:50:02 -07001995 a = va;
Tony Wickham9e0702f2015-09-02 14:45:39 -07001996
1997 // Animations are disabled in power save mode, causing the repeated animation to jump
1998 // spastically between beginning and end states. Since this looks bad, we don't repeat
1999 // the animation in power save mode.
Tony Wickham8155fa22018-05-18 17:18:49 -07002000 if (!Utilities.isPowerSaverPreventingAnimation(getContext())) {
Tony Wickham9e0702f2015-09-02 14:45:39 -07002001 va.setRepeatMode(ValueAnimator.REVERSE);
2002 va.setRepeatCount(ValueAnimator.INFINITE);
2003 }
2004
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002005 va.setDuration(mode == MODE_HINT ? HINT_DURATION : PREVIEW_DURATION);
Adam Cohend024f982012-05-23 18:26:45 -07002006 va.setStartDelay((int) (Math.random() * 60));
Adam Cohen19f37922012-03-21 11:59:11 -07002007 va.addListener(new AnimatorListenerAdapter() {
2008 public void onAnimationRepeat(Animator animation) {
Adam Cohen19f37922012-03-21 11:59:11 -07002009 // We make sure to end only after a full period
Jon Miranda21266912016-12-19 14:12:05 -08002010 setInitialAnimationValues(true);
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002011 repeating = true;
Adam Cohen19f37922012-03-21 11:59:11 -07002012 }
2013 });
Adam Cohen19f37922012-03-21 11:59:11 -07002014 mShakeAnimators.put(child, this);
2015 va.start();
2016 }
2017
Sunny Goyal849c6a22018-08-08 16:33:46 -07002018 private void setAnimationProgress(float progress) {
2019 animationProgress = progress;
2020 float r1 = (mode == MODE_HINT && repeating) ? 1.0f : animationProgress;
2021 float x = r1 * finalDeltaX + (1 - r1) * initDeltaX;
2022 float y = r1 * finalDeltaY + (1 - r1) * initDeltaY;
2023 child.setTranslationX(x);
2024 child.setTranslationY(y);
2025 float s = animationProgress * finalScale + (1 - animationProgress) * initScale;
2026 child.setScaleX(s);
2027 child.setScaleY(s);
2028 }
2029
Adam Cohend024f982012-05-23 18:26:45 -07002030 private void cancel() {
Adam Cohene7587d22012-05-24 18:50:02 -07002031 if (a != null) {
2032 a.cancel();
2033 }
Adam Cohen19f37922012-03-21 11:59:11 -07002034 }
Adam Cohene7587d22012-05-24 18:50:02 -07002035
Adam Cohen091440a2015-03-18 14:16:05 -07002036 @Thunk void completeAnimationImmediately() {
Adam Cohene7587d22012-05-24 18:50:02 -07002037 if (a != null) {
2038 a.cancel();
2039 }
Brandon Keely50e6e562012-05-08 16:28:49 -07002040
Jon Miranda72dbd912017-01-04 14:03:07 -08002041 setInitialAnimationValues(true);
Sunny Goyal9e76f682017-02-13 12:13:43 -08002042 a = LauncherAnimUtils.ofPropertyValuesHolder(child,
2043 new PropertyListBuilder()
2044 .scale(initScale)
2045 .translationX(initDeltaX)
2046 .translationY(initDeltaY)
2047 .build())
2048 .setDuration(REORDER_ANIMATION_DURATION);
Sunny Goyal5d2fc322015-07-06 22:52:49 -07002049 a.setInterpolator(new android.view.animation.DecelerateInterpolator(1.5f));
2050 a.start();
Brandon Keely50e6e562012-05-08 16:28:49 -07002051 }
Adam Cohen19f37922012-03-21 11:59:11 -07002052 }
2053
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002054 private void completeAndClearReorderPreviewAnimations() {
2055 for (ReorderPreviewAnimation a: mShakeAnimators.values()) {
Brandon Keely50e6e562012-05-08 16:28:49 -07002056 a.completeAnimationImmediately();
Adam Cohen19f37922012-03-21 11:59:11 -07002057 }
2058 mShakeAnimators.clear();
2059 }
2060
Adam Cohen482ed822012-03-02 14:15:13 -08002061 private void commitTempPlacement() {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002062 mTmpOccupied.copyTo(mOccupied);
Sunny Goyalaa8ef112015-06-12 20:04:41 -07002063
2064 long screenId = mLauncher.getWorkspace().getIdForScreen(this);
2065 int container = Favorites.CONTAINER_DESKTOP;
2066
Sunny Goyalc13403c2016-11-18 23:44:48 -08002067 if (mContainerType == HOTSEAT) {
Sunny Goyalaa8ef112015-06-12 20:04:41 -07002068 screenId = -1;
2069 container = Favorites.CONTAINER_HOTSEAT;
2070 }
2071
Michael Jurkaa52570f2012-03-20 03:18:20 -07002072 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08002073 for (int i = 0; i < childCount; i++) {
Adam Cohenea889a22012-03-27 16:45:39 -07002074 View child = mShortcutsAndWidgets.getChildAt(i);
2075 LayoutParams lp = (LayoutParams) child.getLayoutParams();
2076 ItemInfo info = (ItemInfo) child.getTag();
Adam Cohen2acce882012-03-28 19:03:19 -07002077 // We do a null check here because the item info can be null in the case of the
2078 // AllApps button in the hotseat.
2079 if (info != null) {
Sunny Goyalaa8ef112015-06-12 20:04:41 -07002080 final boolean requiresDbUpdate = (info.cellX != lp.tmpCellX
2081 || info.cellY != lp.tmpCellY || info.spanX != lp.cellHSpan
2082 || info.spanY != lp.cellVSpan);
2083
Adam Cohen2acce882012-03-28 19:03:19 -07002084 info.cellX = lp.cellX = lp.tmpCellX;
2085 info.cellY = lp.cellY = lp.tmpCellY;
Adam Cohenbebf0422012-04-11 18:06:28 -07002086 info.spanX = lp.cellHSpan;
2087 info.spanY = lp.cellVSpan;
Sunny Goyalaa8ef112015-06-12 20:04:41 -07002088
2089 if (requiresDbUpdate) {
Sunny Goyal43bf11d2017-02-02 13:52:53 -08002090 mLauncher.getModelWriter().modifyItemInDatabase(info, container, screenId,
Sunny Goyalaa8ef112015-06-12 20:04:41 -07002091 info.cellX, info.cellY, info.spanX, info.spanY);
2092 }
Adam Cohen2acce882012-03-28 19:03:19 -07002093 }
Adam Cohen482ed822012-03-02 14:15:13 -08002094 }
2095 }
2096
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002097 private void setUseTempCoords(boolean useTempCoords) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002098 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08002099 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002100 LayoutParams lp = (LayoutParams) mShortcutsAndWidgets.getChildAt(i).getLayoutParams();
Adam Cohen482ed822012-03-02 14:15:13 -08002101 lp.useTmpCoords = useTempCoords;
2102 }
2103 }
2104
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002105 private ItemConfiguration findConfigurationNoShuffle(int pixelX, int pixelY, int minSpanX, int minSpanY,
Adam Cohen482ed822012-03-02 14:15:13 -08002106 int spanX, int spanY, View dragView, ItemConfiguration solution) {
2107 int[] result = new int[2];
2108 int[] resultSpan = new int[2];
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002109 findNearestVacantArea(pixelX, pixelY, minSpanX, minSpanY, spanX, spanY, result,
Adam Cohen482ed822012-03-02 14:15:13 -08002110 resultSpan);
2111 if (result[0] >= 0 && result[1] >= 0) {
2112 copyCurrentStateToSolution(solution, false);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002113 solution.cellX = result[0];
2114 solution.cellY = result[1];
2115 solution.spanX = resultSpan[0];
2116 solution.spanY = resultSpan[1];
Adam Cohen482ed822012-03-02 14:15:13 -08002117 solution.isSolution = true;
2118 } else {
2119 solution.isSolution = false;
2120 }
2121 return solution;
2122 }
2123
Adam Cohen19f37922012-03-21 11:59:11 -07002124 /* This seems like it should be obvious and straight-forward, but when the direction vector
2125 needs to match with the notion of the dragView pushing other views, we have to employ
2126 a slightly more subtle notion of the direction vector. The question is what two points is
2127 the vector between? The center of the dragView and its desired destination? Not quite, as
2128 this doesn't necessarily coincide with the interaction of the dragView and items occupying
2129 those cells. Instead we use some heuristics to often lock the vector to up, down, left
2130 or right, which helps make pushing feel right.
2131 */
2132 private void getDirectionVectorForDrop(int dragViewCenterX, int dragViewCenterY, int spanX,
2133 int spanY, View dragView, int[] resultDirection) {
2134 int[] targetDestination = new int[2];
2135
2136 findNearestArea(dragViewCenterX, dragViewCenterY, spanX, spanY, targetDestination);
2137 Rect dragRect = new Rect();
2138 regionToRect(targetDestination[0], targetDestination[1], spanX, spanY, dragRect);
2139 dragRect.offset(dragViewCenterX - dragRect.centerX(), dragViewCenterY - dragRect.centerY());
2140
2141 Rect dropRegionRect = new Rect();
2142 getViewsIntersectingRegion(targetDestination[0], targetDestination[1], spanX, spanY,
2143 dragView, dropRegionRect, mIntersectingViews);
2144
2145 int dropRegionSpanX = dropRegionRect.width();
2146 int dropRegionSpanY = dropRegionRect.height();
2147
2148 regionToRect(dropRegionRect.left, dropRegionRect.top, dropRegionRect.width(),
2149 dropRegionRect.height(), dropRegionRect);
2150
2151 int deltaX = (dropRegionRect.centerX() - dragViewCenterX) / spanX;
2152 int deltaY = (dropRegionRect.centerY() - dragViewCenterY) / spanY;
2153
2154 if (dropRegionSpanX == mCountX || spanX == mCountX) {
2155 deltaX = 0;
2156 }
2157 if (dropRegionSpanY == mCountY || spanY == mCountY) {
2158 deltaY = 0;
2159 }
2160
2161 if (deltaX == 0 && deltaY == 0) {
2162 // No idea what to do, give a random direction.
2163 resultDirection[0] = 1;
2164 resultDirection[1] = 0;
2165 } else {
2166 computeDirectionVector(deltaX, deltaY, resultDirection);
2167 }
2168 }
2169
2170 // For a given cell and span, fetch the set of views intersecting the region.
2171 private void getViewsIntersectingRegion(int cellX, int cellY, int spanX, int spanY,
2172 View dragView, Rect boundingRect, ArrayList<View> intersectingViews) {
2173 if (boundingRect != null) {
2174 boundingRect.set(cellX, cellY, cellX + spanX, cellY + spanY);
2175 }
2176 intersectingViews.clear();
2177 Rect r0 = new Rect(cellX, cellY, cellX + spanX, cellY + spanY);
2178 Rect r1 = new Rect();
2179 final int count = mShortcutsAndWidgets.getChildCount();
2180 for (int i = 0; i < count; i++) {
2181 View child = mShortcutsAndWidgets.getChildAt(i);
2182 if (child == dragView) continue;
2183 LayoutParams lp = (LayoutParams) child.getLayoutParams();
2184 r1.set(lp.cellX, lp.cellY, lp.cellX + lp.cellHSpan, lp.cellY + lp.cellVSpan);
2185 if (Rect.intersects(r0, r1)) {
2186 mIntersectingViews.add(child);
2187 if (boundingRect != null) {
2188 boundingRect.union(r1);
2189 }
2190 }
2191 }
2192 }
2193
2194 boolean isNearestDropLocationOccupied(int pixelX, int pixelY, int spanX, int spanY,
2195 View dragView, int[] result) {
2196 result = findNearestArea(pixelX, pixelY, spanX, spanY, result);
2197 getViewsIntersectingRegion(result[0], result[1], spanX, spanY, dragView, null,
2198 mIntersectingViews);
2199 return !mIntersectingViews.isEmpty();
2200 }
2201
2202 void revertTempState() {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002203 completeAndClearReorderPreviewAnimations();
2204 if (isItemPlacementDirty() && !DESTRUCTIVE_REORDER) {
2205 final int count = mShortcutsAndWidgets.getChildCount();
2206 for (int i = 0; i < count; i++) {
2207 View child = mShortcutsAndWidgets.getChildAt(i);
2208 LayoutParams lp = (LayoutParams) child.getLayoutParams();
2209 if (lp.tmpCellX != lp.cellX || lp.tmpCellY != lp.cellY) {
2210 lp.tmpCellX = lp.cellX;
2211 lp.tmpCellY = lp.cellY;
2212 animateChildToPosition(child, lp.cellX, lp.cellY, REORDER_ANIMATION_DURATION,
2213 0, false, false);
2214 }
Adam Cohen19f37922012-03-21 11:59:11 -07002215 }
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002216 setItemPlacementDirty(false);
Adam Cohen19f37922012-03-21 11:59:11 -07002217 }
Adam Cohen19f37922012-03-21 11:59:11 -07002218 }
2219
Adam Cohenbebf0422012-04-11 18:06:28 -07002220 boolean createAreaForResize(int cellX, int cellY, int spanX, int spanY,
2221 View dragView, int[] direction, boolean commit) {
2222 int[] pixelXY = new int[2];
2223 regionToCenterPoint(cellX, cellY, spanX, spanY, pixelXY);
2224
2225 // First we determine if things have moved enough to cause a different layout
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002226 ItemConfiguration swapSolution = findReorderSolution(pixelXY[0], pixelXY[1], spanX, spanY,
Adam Cohenbebf0422012-04-11 18:06:28 -07002227 spanX, spanY, direction, dragView, true, new ItemConfiguration());
2228
2229 setUseTempCoords(true);
2230 if (swapSolution != null && swapSolution.isSolution) {
2231 // If we're just testing for a possible location (MODE_ACCEPT_DROP), we don't bother
2232 // committing anything or animating anything as we just want to determine if a solution
2233 // exists
2234 copySolutionToTempState(swapSolution, dragView);
2235 setItemPlacementDirty(true);
2236 animateItemsToSolution(swapSolution, dragView, commit);
2237
2238 if (commit) {
2239 commitTempPlacement();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002240 completeAndClearReorderPreviewAnimations();
Adam Cohenbebf0422012-04-11 18:06:28 -07002241 setItemPlacementDirty(false);
2242 } else {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002243 beginOrAdjustReorderPreviewAnimations(swapSolution, dragView,
2244 REORDER_ANIMATION_DURATION, ReorderPreviewAnimation.MODE_PREVIEW);
Adam Cohenbebf0422012-04-11 18:06:28 -07002245 }
2246 mShortcutsAndWidgets.requestLayout();
2247 }
2248 return swapSolution.isSolution;
2249 }
2250
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002251 int[] performReorder(int pixelX, int pixelY, int minSpanX, int minSpanY, int spanX, int spanY,
Adam Cohen482ed822012-03-02 14:15:13 -08002252 View dragView, int[] result, int resultSpan[], int mode) {
Adam Cohen482ed822012-03-02 14:15:13 -08002253 // First we determine if things have moved enough to cause a different layout
Adam Cohen47a876d2012-03-19 13:21:41 -07002254 result = findNearestArea(pixelX, pixelY, spanX, spanY, result);
Adam Cohen482ed822012-03-02 14:15:13 -08002255
2256 if (resultSpan == null) {
2257 resultSpan = new int[2];
2258 }
2259
Adam Cohen19f37922012-03-21 11:59:11 -07002260 // When we are checking drop validity or actually dropping, we don't recompute the
2261 // direction vector, since we want the solution to match the preview, and it's possible
2262 // that the exact position of the item has changed to result in a new reordering outcome.
Adam Cohenb209e632012-03-27 17:09:36 -07002263 if ((mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL || mode == MODE_ACCEPT_DROP)
2264 && mPreviousReorderDirection[0] != INVALID_DIRECTION) {
Adam Cohen19f37922012-03-21 11:59:11 -07002265 mDirectionVector[0] = mPreviousReorderDirection[0];
2266 mDirectionVector[1] = mPreviousReorderDirection[1];
2267 // We reset this vector after drop
Adam Cohenb209e632012-03-27 17:09:36 -07002268 if (mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL) {
2269 mPreviousReorderDirection[0] = INVALID_DIRECTION;
2270 mPreviousReorderDirection[1] = INVALID_DIRECTION;
Adam Cohen19f37922012-03-21 11:59:11 -07002271 }
2272 } else {
2273 getDirectionVectorForDrop(pixelX, pixelY, spanX, spanY, dragView, mDirectionVector);
2274 mPreviousReorderDirection[0] = mDirectionVector[0];
2275 mPreviousReorderDirection[1] = mDirectionVector[1];
2276 }
2277
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002278 // Find a solution involving pushing / displacing any items in the way
2279 ItemConfiguration swapSolution = findReorderSolution(pixelX, pixelY, minSpanX, minSpanY,
Adam Cohen482ed822012-03-02 14:15:13 -08002280 spanX, spanY, mDirectionVector, dragView, true, new ItemConfiguration());
2281
2282 // We attempt the approach which doesn't shuffle views at all
2283 ItemConfiguration noShuffleSolution = findConfigurationNoShuffle(pixelX, pixelY, minSpanX,
2284 minSpanY, spanX, spanY, dragView, new ItemConfiguration());
2285
2286 ItemConfiguration finalSolution = null;
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002287
2288 // If the reorder solution requires resizing (shrinking) the item being dropped, we instead
2289 // favor a solution in which the item is not resized, but
Adam Cohen482ed822012-03-02 14:15:13 -08002290 if (swapSolution.isSolution && swapSolution.area() >= noShuffleSolution.area()) {
2291 finalSolution = swapSolution;
2292 } else if (noShuffleSolution.isSolution) {
2293 finalSolution = noShuffleSolution;
2294 }
2295
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002296 if (mode == MODE_SHOW_REORDER_HINT) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002297 if (finalSolution != null) {
Adam Cohenfe692872013-12-11 14:47:23 -08002298 beginOrAdjustReorderPreviewAnimations(finalSolution, dragView, 0,
2299 ReorderPreviewAnimation.MODE_HINT);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002300 result[0] = finalSolution.cellX;
2301 result[1] = finalSolution.cellY;
2302 resultSpan[0] = finalSolution.spanX;
2303 resultSpan[1] = finalSolution.spanY;
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002304 } else {
2305 result[0] = result[1] = resultSpan[0] = resultSpan[1] = -1;
2306 }
2307 return result;
2308 }
2309
Adam Cohen482ed822012-03-02 14:15:13 -08002310 boolean foundSolution = true;
2311 if (!DESTRUCTIVE_REORDER) {
2312 setUseTempCoords(true);
2313 }
2314
2315 if (finalSolution != null) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002316 result[0] = finalSolution.cellX;
2317 result[1] = finalSolution.cellY;
2318 resultSpan[0] = finalSolution.spanX;
2319 resultSpan[1] = finalSolution.spanY;
Adam Cohen482ed822012-03-02 14:15:13 -08002320
2321 // If we're just testing for a possible location (MODE_ACCEPT_DROP), we don't bother
2322 // committing anything or animating anything as we just want to determine if a solution
2323 // exists
2324 if (mode == MODE_DRAG_OVER || mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL) {
2325 if (!DESTRUCTIVE_REORDER) {
2326 copySolutionToTempState(finalSolution, dragView);
2327 }
2328 setItemPlacementDirty(true);
2329 animateItemsToSolution(finalSolution, dragView, mode == MODE_ON_DROP);
2330
Adam Cohen19f37922012-03-21 11:59:11 -07002331 if (!DESTRUCTIVE_REORDER &&
2332 (mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL)) {
Adam Cohen482ed822012-03-02 14:15:13 -08002333 commitTempPlacement();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002334 completeAndClearReorderPreviewAnimations();
Adam Cohen19f37922012-03-21 11:59:11 -07002335 setItemPlacementDirty(false);
2336 } else {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002337 beginOrAdjustReorderPreviewAnimations(finalSolution, dragView,
2338 REORDER_ANIMATION_DURATION, ReorderPreviewAnimation.MODE_PREVIEW);
Adam Cohen482ed822012-03-02 14:15:13 -08002339 }
2340 }
2341 } else {
2342 foundSolution = false;
2343 result[0] = result[1] = resultSpan[0] = resultSpan[1] = -1;
2344 }
2345
2346 if ((mode == MODE_ON_DROP || !foundSolution) && !DESTRUCTIVE_REORDER) {
2347 setUseTempCoords(false);
2348 }
Adam Cohen482ed822012-03-02 14:15:13 -08002349
Michael Jurkaa52570f2012-03-20 03:18:20 -07002350 mShortcutsAndWidgets.requestLayout();
Adam Cohen482ed822012-03-02 14:15:13 -08002351 return result;
2352 }
2353
Adam Cohen19f37922012-03-21 11:59:11 -07002354 void setItemPlacementDirty(boolean dirty) {
2355 mItemPlacementDirty = dirty;
Adam Cohen482ed822012-03-02 14:15:13 -08002356 }
Adam Cohen19f37922012-03-21 11:59:11 -07002357 boolean isItemPlacementDirty() {
2358 return mItemPlacementDirty;
Adam Cohen482ed822012-03-02 14:15:13 -08002359 }
2360
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002361 private static class ItemConfiguration extends CellAndSpan {
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07002362 final ArrayMap<View, CellAndSpan> map = new ArrayMap<>();
2363 private final ArrayMap<View, CellAndSpan> savedMap = new ArrayMap<>();
2364 final ArrayList<View> sortedViews = new ArrayList<>();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002365 ArrayList<View> intersectingViews;
Adam Cohen482ed822012-03-02 14:15:13 -08002366 boolean isSolution = false;
Adam Cohen482ed822012-03-02 14:15:13 -08002367
Adam Cohenf3900c22012-11-16 18:28:11 -08002368 void save() {
2369 // Copy current state into savedMap
2370 for (View v: map.keySet()) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002371 savedMap.get(v).copyFrom(map.get(v));
Adam Cohenf3900c22012-11-16 18:28:11 -08002372 }
2373 }
2374
2375 void restore() {
2376 // Restore current state from savedMap
2377 for (View v: savedMap.keySet()) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002378 map.get(v).copyFrom(savedMap.get(v));
Adam Cohenf3900c22012-11-16 18:28:11 -08002379 }
2380 }
2381
2382 void add(View v, CellAndSpan cs) {
2383 map.put(v, cs);
2384 savedMap.put(v, new CellAndSpan());
2385 sortedViews.add(v);
2386 }
2387
Adam Cohen482ed822012-03-02 14:15:13 -08002388 int area() {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002389 return spanX * spanY;
Adam Cohenf3900c22012-11-16 18:28:11 -08002390 }
2391
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002392 void getBoundingRectForViews(ArrayList<View> views, Rect outRect) {
2393 boolean first = true;
2394 for (View v: views) {
2395 CellAndSpan c = map.get(v);
2396 if (first) {
2397 outRect.set(c.cellX, c.cellY, c.cellX + c.spanX, c.cellY + c.spanY);
2398 first = false;
2399 } else {
2400 outRect.union(c.cellX, c.cellY, c.cellX + c.spanX, c.cellY + c.spanY);
2401 }
2402 }
Adam Cohenf3900c22012-11-16 18:28:11 -08002403 }
Adam Cohen482ed822012-03-02 14:15:13 -08002404 }
2405
Adam Cohendf035382011-04-11 17:22:04 -07002406 /**
Adam Cohendf035382011-04-11 17:22:04 -07002407 * Find a starting cell position that will fit the given bounds nearest the requested
2408 * cell location. Uses Euclidean distance to score multiple vacant areas.
2409 *
2410 * @param pixelX The X location at which you want to search for a vacant area.
2411 * @param pixelY The Y location at which you want to search for a vacant area.
2412 * @param spanX Horizontal span of the object.
2413 * @param spanY Vertical span of the object.
Adam Cohendf035382011-04-11 17:22:04 -07002414 * @param result Previously returned value to possibly recycle.
2415 * @return The X, Y cell of a vacant area that can contain this object,
2416 * nearest the requested location.
2417 */
Adam Cohenf9c184a2016-01-15 16:47:43 -08002418 public int[] findNearestArea(int pixelX, int pixelY, int spanX, int spanY, int[] result) {
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002419 return findNearestArea(pixelX, pixelY, spanX, spanY, spanX, spanY, false, result, null);
Adam Cohendf035382011-04-11 17:22:04 -07002420 }
2421
Michael Jurka0280c3b2010-09-17 15:00:07 -07002422 boolean existsEmptyCell() {
2423 return findCellForSpan(null, 1, 1);
2424 }
2425
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002426 /**
Michael Jurka0280c3b2010-09-17 15:00:07 -07002427 * Finds the upper-left coordinate of the first rectangle in the grid that can
2428 * hold a cell of the specified dimensions. If intersectX and intersectY are not -1,
2429 * then this method will only return coordinates for rectangles that contain the cell
2430 * (intersectX, intersectY)
2431 *
2432 * @param cellXY The array that will contain the position of a vacant cell if such a cell
2433 * can be found.
2434 * @param spanX The horizontal span of the cell we want to find.
2435 * @param spanY The vertical span of the cell we want to find.
2436 *
2437 * @return True if a vacant cell of the specified dimension was found, false otherwise.
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002438 */
Hyunyoung Song3f471442015-04-08 19:01:34 -07002439 public boolean findCellForSpan(int[] cellXY, int spanX, int spanY) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002440 if (cellXY == null) {
2441 cellXY = new int[2];
Michael Jurka0280c3b2010-09-17 15:00:07 -07002442 }
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002443 return mOccupied.findVacantCell(cellXY, spanX, spanY);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002444 }
2445
2446 /**
Winson Chungc07918d2011-07-01 15:35:26 -07002447 * A drag event has begun over this layout.
2448 * It may have begun over this layout (in which case onDragChild is called first),
2449 * or it may have begun on another layout.
2450 */
2451 void onDragEnter() {
Winson Chungc07918d2011-07-01 15:35:26 -07002452 mDragging = true;
2453 }
2454
2455 /**
Michael Jurka0280c3b2010-09-17 15:00:07 -07002456 * Called when drag has left this CellLayout or has been completed (successfully or not)
2457 */
2458 void onDragExit() {
Joe Onorato4be866d2010-10-10 11:26:02 -07002459 // This can actually be called when we aren't in a drag, e.g. when adding a new
2460 // item to this layout via the customize drawer.
2461 // Guard against that case.
2462 if (mDragging) {
2463 mDragging = false;
Patrick Dubroyde7658b2010-09-27 11:15:43 -07002464 }
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07002465
2466 // Invalidate the drag data
Adam Cohend41fbf52012-02-16 23:53:59 -08002467 mDragCell[0] = mDragCell[1] = -1;
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07002468 mDragOutlineAnims[mDragOutlineCurrent].animateOut();
2469 mDragOutlineCurrent = (mDragOutlineCurrent + 1) % mDragOutlineAnims.length;
Adam Cohen19f37922012-03-21 11:59:11 -07002470 revertTempState();
Michael Jurka33945b22010-12-21 18:19:38 -08002471 setIsDragOverlapping(false);
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002472 }
2473
2474 /**
Winson Chungaafa03c2010-06-11 17:34:16 -07002475 * Mark a child as having been dropped.
Patrick Dubroyde7658b2010-09-27 11:15:43 -07002476 * At the beginning of the drag operation, the child may have been on another
Patrick Dubroyce34a972010-10-19 10:34:32 -07002477 * screen, but it is re-parented before this method is called.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002478 *
2479 * @param child The child that is being dropped
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002480 */
Adam Cohen716b51e2011-06-30 12:09:54 -07002481 void onDropChild(View child) {
Romain Guyd94533d2009-08-17 10:01:15 -07002482 if (child != null) {
2483 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Romain Guy84f296c2009-11-04 15:00:44 -08002484 lp.dropped = true;
Romain Guyd94533d2009-08-17 10:01:15 -07002485 child.requestLayout();
Tony Wickham1cdb6d02015-09-17 11:08:27 -07002486 markCellsAsOccupiedForView(child);
Romain Guyd94533d2009-08-17 10:01:15 -07002487 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002488 }
2489
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002490 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002491 * Computes a bounding rectangle for a range of cells
Winson Chungaafa03c2010-06-11 17:34:16 -07002492 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002493 * @param cellX X coordinate of upper left corner expressed as a cell position
2494 * @param cellY Y coordinate of upper left corner expressed as a cell position
Winson Chungaafa03c2010-06-11 17:34:16 -07002495 * @param cellHSpan Width in cells
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002496 * @param cellVSpan Height in cells
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002497 * @param resultRect Rect into which to put the results
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002498 */
Adam Cohend41fbf52012-02-16 23:53:59 -08002499 public void cellToRect(int cellX, int cellY, int cellHSpan, int cellVSpan, Rect resultRect) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002500 final int cellWidth = mCellWidth;
2501 final int cellHeight = mCellHeight;
Winson Chungaafa03c2010-06-11 17:34:16 -07002502
Winson Chung4b825dcd2011-06-19 12:41:22 -07002503 final int hStartPadding = getPaddingLeft();
2504 final int vStartPadding = getPaddingTop();
Winson Chungaafa03c2010-06-11 17:34:16 -07002505
Sunny Goyalaa8a8712016-11-20 15:26:01 +05302506 int width = cellHSpan * cellWidth;
2507 int height = cellVSpan * cellHeight;
2508 int x = hStartPadding + cellX * cellWidth;
2509 int y = vStartPadding + cellY * cellHeight;
Winson Chungaafa03c2010-06-11 17:34:16 -07002510
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002511 resultRect.set(x, y, x + width, y + height);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002512 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002513
Adam Cohend4844c32011-02-18 19:25:06 -08002514 public void markCellsAsOccupiedForView(View view) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002515 if (view == null || view.getParent() != mShortcutsAndWidgets) return;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002516 LayoutParams lp = (LayoutParams) view.getLayoutParams();
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002517 mOccupied.markCells(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan, true);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002518 }
2519
Adam Cohend4844c32011-02-18 19:25:06 -08002520 public void markCellsAsUnoccupiedForView(View view) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002521 if (view == null || view.getParent() != mShortcutsAndWidgets) return;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002522 LayoutParams lp = (LayoutParams) view.getLayoutParams();
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002523 mOccupied.markCells(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002524 }
2525
Adam Cohen2801caf2011-05-13 20:57:39 -07002526 public int getDesiredWidth() {
Sunny Goyalaa8a8712016-11-20 15:26:01 +05302527 return getPaddingLeft() + getPaddingRight() + (mCountX * mCellWidth);
Adam Cohen2801caf2011-05-13 20:57:39 -07002528 }
2529
2530 public int getDesiredHeight() {
Sunny Goyalaa8a8712016-11-20 15:26:01 +05302531 return getPaddingTop() + getPaddingBottom() + (mCountY * mCellHeight);
Adam Cohen2801caf2011-05-13 20:57:39 -07002532 }
2533
Michael Jurka66d72172011-04-12 16:29:25 -07002534 public boolean isOccupied(int x, int y) {
2535 if (x < mCountX && y < mCountY) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002536 return mOccupied.cells[x][y];
Michael Jurka66d72172011-04-12 16:29:25 -07002537 } else {
2538 throw new RuntimeException("Position exceeds the bound of this CellLayout");
2539 }
2540 }
2541
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002542 @Override
2543 public ViewGroup.LayoutParams generateLayoutParams(AttributeSet attrs) {
2544 return new CellLayout.LayoutParams(getContext(), attrs);
2545 }
2546
2547 @Override
2548 protected boolean checkLayoutParams(ViewGroup.LayoutParams p) {
2549 return p instanceof CellLayout.LayoutParams;
2550 }
2551
2552 @Override
2553 protected ViewGroup.LayoutParams generateLayoutParams(ViewGroup.LayoutParams p) {
2554 return new CellLayout.LayoutParams(p);
2555 }
2556
2557 public static class LayoutParams extends ViewGroup.MarginLayoutParams {
2558 /**
2559 * Horizontal location of the item in the grid.
2560 */
2561 @ViewDebug.ExportedProperty
2562 public int cellX;
2563
2564 /**
2565 * Vertical location of the item in the grid.
2566 */
2567 @ViewDebug.ExportedProperty
2568 public int cellY;
2569
2570 /**
Adam Cohen482ed822012-03-02 14:15:13 -08002571 * Temporary horizontal location of the item in the grid during reorder
2572 */
2573 public int tmpCellX;
2574
2575 /**
2576 * Temporary vertical location of the item in the grid during reorder
2577 */
2578 public int tmpCellY;
2579
2580 /**
2581 * Indicates that the temporary coordinates should be used to layout the items
2582 */
2583 public boolean useTmpCoords;
2584
2585 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002586 * Number of cells spanned horizontally by the item.
2587 */
2588 @ViewDebug.ExportedProperty
2589 public int cellHSpan;
2590
2591 /**
2592 * Number of cells spanned vertically by the item.
2593 */
2594 @ViewDebug.ExportedProperty
2595 public int cellVSpan;
Winson Chungaafa03c2010-06-11 17:34:16 -07002596
Adam Cohen1b607ed2011-03-03 17:26:50 -08002597 /**
2598 * Indicates whether the item will set its x, y, width and height parameters freely,
2599 * or whether these will be computed based on cellX, cellY, cellHSpan and cellVSpan.
2600 */
Adam Cohend4844c32011-02-18 19:25:06 -08002601 public boolean isLockedToGrid = true;
2602
Adam Cohen482ed822012-03-02 14:15:13 -08002603 /**
2604 * Indicates whether this item can be reordered. Always true except in the case of the
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07002605 * the AllApps button and QSB place holder.
Adam Cohen482ed822012-03-02 14:15:13 -08002606 */
2607 public boolean canReorder = true;
2608
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002609 // X coordinate of the view in the layout.
2610 @ViewDebug.ExportedProperty
Vadim Tryshevfedca432015-08-19 17:55:02 -07002611 public int x;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002612 // Y coordinate of the view in the layout.
2613 @ViewDebug.ExportedProperty
Vadim Tryshevfedca432015-08-19 17:55:02 -07002614 public int y;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002615
Romain Guy84f296c2009-11-04 15:00:44 -08002616 boolean dropped;
Romain Guyfcb9e712009-10-02 16:06:52 -07002617
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002618 public LayoutParams(Context c, AttributeSet attrs) {
2619 super(c, attrs);
2620 cellHSpan = 1;
2621 cellVSpan = 1;
2622 }
2623
2624 public LayoutParams(ViewGroup.LayoutParams source) {
2625 super(source);
2626 cellHSpan = 1;
2627 cellVSpan = 1;
2628 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002629
2630 public LayoutParams(LayoutParams source) {
2631 super(source);
2632 this.cellX = source.cellX;
2633 this.cellY = source.cellY;
2634 this.cellHSpan = source.cellHSpan;
2635 this.cellVSpan = source.cellVSpan;
2636 }
2637
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002638 public LayoutParams(int cellX, int cellY, int cellHSpan, int cellVSpan) {
Romain Guy8f19cdd2010-01-08 15:07:00 -08002639 super(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002640 this.cellX = cellX;
2641 this.cellY = cellY;
2642 this.cellHSpan = cellHSpan;
2643 this.cellVSpan = cellVSpan;
2644 }
2645
Sunny Goyalaa8a8712016-11-20 15:26:01 +05302646 public void setup(int cellWidth, int cellHeight, boolean invertHorizontally, int colCount) {
Jon Miranda7ae64ff2016-11-21 16:18:46 -08002647 setup(cellWidth, cellHeight, invertHorizontally, colCount, 1.0f, 1.0f);
2648 }
2649
2650 /**
2651 * Use this method, as opposed to {@link #setup(int, int, boolean, int)}, if the view needs
2652 * to be scaled.
2653 *
2654 * ie. In multi-window mode, we setup widgets so that they are measured and laid out
2655 * using their full/invariant device profile sizes.
2656 */
2657 public void setup(int cellWidth, int cellHeight, boolean invertHorizontally, int colCount,
2658 float cellScaleX, float cellScaleY) {
Adam Cohend4844c32011-02-18 19:25:06 -08002659 if (isLockedToGrid) {
2660 final int myCellHSpan = cellHSpan;
2661 final int myCellVSpan = cellVSpan;
Adam Cohen2374abf2013-04-16 14:56:57 -07002662 int myCellX = useTmpCoords ? tmpCellX : cellX;
2663 int myCellY = useTmpCoords ? tmpCellY : cellY;
2664
2665 if (invertHorizontally) {
2666 myCellX = colCount - myCellX - cellHSpan;
2667 }
Adam Cohen1b607ed2011-03-03 17:26:50 -08002668
Jon Miranda7ae64ff2016-11-21 16:18:46 -08002669 width = (int) (myCellHSpan * cellWidth / cellScaleX - leftMargin - rightMargin);
2670 height = (int) (myCellVSpan * cellHeight / cellScaleY - topMargin - bottomMargin);
Sunny Goyalaa8a8712016-11-20 15:26:01 +05302671 x = (myCellX * cellWidth + leftMargin);
2672 y = (myCellY * cellHeight + topMargin);
Adam Cohend4844c32011-02-18 19:25:06 -08002673 }
2674 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002675
Winson Chungaafa03c2010-06-11 17:34:16 -07002676 public String toString() {
2677 return "(" + this.cellX + ", " + this.cellY + ")";
2678 }
Adam Cohen7f4eabe2011-04-21 16:19:16 -07002679
2680 public void setWidth(int width) {
2681 this.width = width;
2682 }
2683
2684 public int getWidth() {
2685 return width;
2686 }
2687
2688 public void setHeight(int height) {
2689 this.height = height;
2690 }
2691
2692 public int getHeight() {
2693 return height;
2694 }
2695
2696 public void setX(int x) {
2697 this.x = x;
2698 }
2699
2700 public int getX() {
2701 return x;
2702 }
2703
2704 public void setY(int y) {
2705 this.y = y;
2706 }
2707
2708 public int getY() {
2709 return y;
2710 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002711 }
2712
Michael Jurka0280c3b2010-09-17 15:00:07 -07002713 // This class stores info for two purposes:
2714 // 1. When dragging items (mDragInfo in Workspace), we store the View, its cellX & cellY,
2715 // its spanX, spanY, and the screen it is on
2716 // 2. When long clicking on an empty cell in a CellLayout, we save information about the
2717 // cellX and cellY coordinates and which page was clicked. We then set this as a tag on
2718 // the CellLayout that was long clicked
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002719 public static final class CellInfo extends CellAndSpan {
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07002720 public final View cell;
2721 final long screenId;
2722 final long container;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002723
Sunny Goyal83a8f042015-05-19 12:52:12 -07002724 public CellInfo(View v, ItemInfo info) {
Adam Cohene0aaa0d2014-05-12 12:44:22 -07002725 cellX = info.cellX;
2726 cellY = info.cellY;
2727 spanX = info.spanX;
2728 spanY = info.spanY;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002729 cell = v;
Adam Cohene0aaa0d2014-05-12 12:44:22 -07002730 screenId = info.screenId;
2731 container = info.container;
2732 }
2733
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002734 @Override
2735 public String toString() {
Winson Chungaafa03c2010-06-11 17:34:16 -07002736 return "Cell[view=" + (cell == null ? "null" : cell.getClass())
2737 + ", x=" + cellX + ", y=" + cellY + "]";
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002738 }
2739 }
Michael Jurkad771c962011-08-09 15:00:48 -07002740
Tony Wickham86930612015-09-09 13:50:40 -07002741 /**
2742 * Returns whether an item can be placed in this CellLayout (after rearranging and/or resizing
2743 * if necessary).
2744 */
2745 public boolean hasReorderSolution(ItemInfo itemInfo) {
2746 int[] cellPoint = new int[2];
2747 // Check for a solution starting at every cell.
2748 for (int cellX = 0; cellX < getCountX(); cellX++) {
2749 for (int cellY = 0; cellY < getCountY(); cellY++) {
2750 cellToPoint(cellX, cellY, cellPoint);
2751 if (findReorderSolution(cellPoint[0], cellPoint[1], itemInfo.minSpanX,
2752 itemInfo.minSpanY, itemInfo.spanX, itemInfo.spanY, mDirectionVector, null,
2753 true, new ItemConfiguration()).isSolution) {
2754 return true;
2755 }
2756 }
2757 }
2758 return false;
2759 }
2760
Sunny Goyal9ca9c132015-04-29 14:57:22 -07002761 public boolean isRegionVacant(int x, int y, int spanX, int spanY) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002762 return mOccupied.isRegionVacant(x, y, spanX, spanY);
Sunny Goyal9ca9c132015-04-29 14:57:22 -07002763 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002764}