blob: d0d33a03de2c3e07b4f0f03f7bee50b7f58b4b03 [file] [log] [blame]
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Daniel Sandler325dc232013-06-05 22:57:57 -040017package com.android.launcher3;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080018
Joe Onorato4be866d2010-10-10 11:26:02 -070019import android.animation.Animator;
Michael Jurka629758f2012-06-14 16:18:21 -070020import android.animation.AnimatorListenerAdapter;
Chet Haase00397b12010-10-07 11:13:10 -070021import android.animation.TimeInterpolator;
Patrick Dubroyde7658b2010-09-27 11:15:43 -070022import android.animation.ValueAnimator;
23import android.animation.ValueAnimator.AnimatorUpdateListener;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080024import android.content.Context;
Joe Onorato79e56262009-09-21 15:23:04 -040025import android.content.res.Resources;
Sunny Goyalc13403c2016-11-18 23:44:48 -080026import android.content.res.TypedArray;
Joe Onorato4be866d2010-10-10 11:26:02 -070027import android.graphics.Bitmap;
Winson Chungaafa03c2010-06-11 17:34:16 -070028import android.graphics.Canvas;
Andrew Flynn0dca1ec2012-02-29 13:33:22 -080029import android.graphics.Color;
Joe Onorato4be866d2010-10-10 11:26:02 -070030import android.graphics.Paint;
Patrick Dubroyde7658b2010-09-27 11:15:43 -070031import android.graphics.Point;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080032import android.graphics.Rect;
Adam Cohen482ed822012-03-02 14:15:13 -080033import android.graphics.drawable.ColorDrawable;
Patrick Dubroy6569f2c2010-07-12 14:25:18 -070034import android.graphics.drawable.Drawable;
Adam Cohen1462de32012-07-24 22:34:36 -070035import android.os.Parcelable;
Sunny Goyalc13403c2016-11-18 23:44:48 -080036import android.support.annotation.IntDef;
Adam Cohenc9735cf2015-01-23 16:11:55 -080037import android.support.v4.view.ViewCompat;
Rajeev Kumar9962dbe2017-06-12 12:16:20 -070038import android.util.ArrayMap;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080039import android.util.AttributeSet;
Joe Onorato4be866d2010-10-10 11:26:02 -070040import android.util.Log;
Adam Cohen1462de32012-07-24 22:34:36 -070041import android.util.SparseArray;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080042import android.view.MotionEvent;
43import android.view.View;
44import android.view.ViewDebug;
45import android.view.ViewGroup;
Adam Cohenc9735cf2015-01-23 16:11:55 -080046import android.view.accessibility.AccessibilityEvent;
Winson Chung150fbab2010-09-29 17:14:26 -070047import android.view.animation.DecelerateInterpolator;
Sunny Goyal4b6eb262015-05-14 19:24:40 -070048import com.android.launcher3.BubbleTextView.BubbleTextShadowHandler;
Sunny Goyalaa8ef112015-06-12 20:04:41 -070049import com.android.launcher3.LauncherSettings.Favorites;
Sunny Goyale9b651e2015-04-24 11:44:51 -070050import com.android.launcher3.accessibility.DragAndDropAccessibilityDelegate;
51import com.android.launcher3.accessibility.FolderAccessibilityHelper;
52import com.android.launcher3.accessibility.WorkspaceAccessibilityHelper;
Sunny Goyal9e76f682017-02-13 12:13:43 -080053import com.android.launcher3.anim.PropertyListBuilder;
Sunny Goyal3d706ad2017-03-06 16:56:39 -080054import com.android.launcher3.config.FeatureFlags;
Sunny Goyal26119432016-02-18 22:09:23 +000055import com.android.launcher3.folder.FolderIcon;
Sunny Goyal06e21a22016-08-11 16:02:02 -070056import com.android.launcher3.graphics.DragPreviewProvider;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -070057import com.android.launcher3.util.CellAndSpan;
58import com.android.launcher3.util.GridOccupancy;
Sunny Goyale2fd14b2015-08-27 17:45:46 -070059import com.android.launcher3.util.ParcelableSparseArray;
Sunny Goyal9b29ca52017-02-17 10:39:44 -080060import com.android.launcher3.util.Themes;
Adam Cohen091440a2015-03-18 14:16:05 -070061import com.android.launcher3.util.Thunk;
Sunny Goyalc13403c2016-11-18 23:44:48 -080062import java.lang.annotation.Retention;
63import java.lang.annotation.RetentionPolicy;
Adam Cohen69ce2e52011-07-03 19:25:21 -070064import java.util.ArrayList;
Adam Cohenc0dcf592011-06-01 15:30:43 -070065import java.util.Arrays;
Adam Cohenf3900c22012-11-16 18:28:11 -080066import java.util.Collections;
67import java.util.Comparator;
Adam Cohend41fbf52012-02-16 23:53:59 -080068import java.util.Stack;
Adam Cohenc0dcf592011-06-01 15:30:43 -070069
Sunny Goyal4b6eb262015-05-14 19:24:40 -070070public class CellLayout extends ViewGroup implements BubbleTextShadowHandler {
Sunny Goyale9b651e2015-04-24 11:44:51 -070071 public static final int WORKSPACE_ACCESSIBILITY_DRAG = 2;
72 public static final int FOLDER_ACCESSIBILITY_DRAG = 1;
73
Tony Wickhama0628cc2015-10-14 15:23:04 -070074 private static final String TAG = "CellLayout";
75 private static final boolean LOGD = false;
Winson Chungaafa03c2010-06-11 17:34:16 -070076
Rajeev Kumar9962dbe2017-06-12 12:16:20 -070077 private final Launcher mLauncher;
Sunny Goyal4ffec482016-02-09 11:28:52 -080078 @ViewDebug.ExportedProperty(category = "launcher")
Adam Cohen091440a2015-03-18 14:16:05 -070079 @Thunk int mCellWidth;
Sunny Goyal4ffec482016-02-09 11:28:52 -080080 @ViewDebug.ExportedProperty(category = "launcher")
Adam Cohen091440a2015-03-18 14:16:05 -070081 @Thunk int mCellHeight;
Winson Chung11a1a532013-09-13 11:14:45 -070082 private int mFixedCellWidth;
83 private int mFixedCellHeight;
Winson Chungaafa03c2010-06-11 17:34:16 -070084
Sunny Goyal4ffec482016-02-09 11:28:52 -080085 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyalff4ba2d2016-04-02 14:12:34 -070086 private int mCountX;
Sunny Goyal4ffec482016-02-09 11:28:52 -080087 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyalff4ba2d2016-04-02 14:12:34 -070088 private int mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080089
Adam Cohen917e3882013-10-31 15:03:35 -070090 private boolean mDropPending = false;
Adam Cohenc50438c2014-08-19 17:43:05 -070091 private boolean mIsDragTarget = true;
Sunny Goyale2fd14b2015-08-27 17:45:46 -070092 private boolean mJailContent = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080093
Patrick Dubroyde7658b2010-09-27 11:15:43 -070094 // These are temporary variables to prevent having to allocate a new object just to
95 // return an (x, y) value from helper functions. Do NOT use them to maintain other state.
Adam Cohen091440a2015-03-18 14:16:05 -070096 @Thunk final int[] mTmpPoint = new int[2];
Sunny Goyal2805e632015-05-20 15:35:32 -070097 @Thunk final int[] mTempLocation = new int[2];
Patrick Dubroy6569f2c2010-07-12 14:25:18 -070098
Sunny Goyalff4ba2d2016-04-02 14:12:34 -070099 private GridOccupancy mOccupied;
100 private GridOccupancy mTmpOccupied;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800101
Michael Jurkadee05892010-07-27 10:01:56 -0700102 private OnTouchListener mInterceptTouchListener;
Rajeev Kumar9962dbe2017-06-12 12:16:20 -0700103 private final StylusEventHelper mStylusEventHelper;
Michael Jurkadee05892010-07-27 10:01:56 -0700104
Rajeev Kumar9962dbe2017-06-12 12:16:20 -0700105 private final ArrayList<FolderIcon.PreviewBackground> mFolderBackgrounds = new ArrayList<>();
106 final FolderIcon.PreviewBackground mFolderLeaveBehind = new FolderIcon.PreviewBackground();
Adam Cohen69ce2e52011-07-03 19:25:21 -0700107
Michael Jurka5f1c5092010-09-03 14:15:02 -0700108 private float mBackgroundAlpha;
Adam Cohenf34bab52010-09-30 14:11:56 -0700109
Sunny Goyalf5440cb2016-12-14 15:13:00 -0800110 private static final int[] BACKGROUND_STATE_ACTIVE = new int[] { android.R.attr.state_active };
111 private static final int[] BACKGROUND_STATE_DEFAULT = new int[0];
112 private final Drawable mBackground;
Sunny Goyal2805e632015-05-20 15:35:32 -0700113
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700114 // These values allow a fixed measurement to be set on the CellLayout.
115 private int mFixedWidth = -1;
116 private int mFixedHeight = -1;
117
Michael Jurka33945b22010-12-21 18:19:38 -0800118 // If we're actively dragging something over this screen, mIsDragOverlapping is true
119 private boolean mIsDragOverlapping = false;
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700120
Winson Chung150fbab2010-09-29 17:14:26 -0700121 // These arrays are used to implement the drag visualization on x-large screens.
Joe Onorato4be866d2010-10-10 11:26:02 -0700122 // They are used as circular arrays, indexed by mDragOutlineCurrent.
Rajeev Kumar9962dbe2017-06-12 12:16:20 -0700123 @Thunk final Rect[] mDragOutlines = new Rect[4];
124 @Thunk final float[] mDragOutlineAlphas = new float[mDragOutlines.length];
125 private final InterruptibleInOutAnimator[] mDragOutlineAnims =
Joe Onorato4be866d2010-10-10 11:26:02 -0700126 new InterruptibleInOutAnimator[mDragOutlines.length];
Winson Chung150fbab2010-09-29 17:14:26 -0700127
128 // Used as an index into the above 3 arrays; indicates which is the most current value.
Joe Onorato4be866d2010-10-10 11:26:02 -0700129 private int mDragOutlineCurrent = 0;
Patrick Dubroy8e58e912010-10-14 13:21:48 -0700130 private final Paint mDragOutlinePaint = new Paint();
Winson Chung150fbab2010-09-29 17:14:26 -0700131
Sunny Goyal4fe5a372015-05-14 19:55:10 -0700132 private final ClickShadowView mTouchFeedbackView;
Patrick Dubroy96864c32011-03-10 17:17:23 -0800133
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
156 private final float mChildScale;
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
Sunny Goyalc13403c2016-11-18 23:44:48 -0800220 mChildScale = mContainerType == HOTSEAT ? grid.inv.hotseatScale : 1f;
221
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800222 setAlwaysDrawnWithCacheEnabled(false);
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700223 final Resources res = getResources();
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700224
Sunny Goyalf5440cb2016-12-14 15:13:00 -0800225 mBackground = res.getDrawable(R.drawable.bg_celllayout);
Sunny Goyal2805e632015-05-20 15:35:32 -0700226 mBackground.setCallback(this);
Winson Chunge8f1d042015-07-31 12:39:57 -0700227 mBackground.setAlpha((int) (mBackgroundAlpha * 255));
Michael Jurka33945b22010-12-21 18:19:38 -0800228
Sunny Goyalc13403c2016-11-18 23:44:48 -0800229 mReorderPreviewAnimationMagnitude = (REORDER_PREVIEW_MAGNITUDE * grid.iconSizePx);
Adam Cohen19f37922012-03-21 11:59:11 -0700230
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700231 // Initialize the data structures used for the drag visualization.
Patrick Dubroyce34a972010-10-19 10:34:32 -0700232 mEaseOutInterpolator = new DecelerateInterpolator(2.5f); // Quint ease out
Winson Chungb8c69f32011-10-19 21:36:08 -0700233 mDragCell[0] = mDragCell[1] = -1;
Joe Onorato4be866d2010-10-10 11:26:02 -0700234 for (int i = 0; i < mDragOutlines.length; i++) {
Adam Cohend41fbf52012-02-16 23:53:59 -0800235 mDragOutlines[i] = new Rect(-1, -1, -1, -1);
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700236 }
Mario Bertschler54ba6012017-06-08 10:53:53 -0700237 mDragOutlinePaint.setColor(Themes.getAttrColor(context, R.attr.workspaceTextColor));
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700238
239 // When dragging things around the home screens, we show a green outline of
240 // where the item will land. The outlines gradually fade out, leaving a trail
241 // behind the drag path.
242 // Set up all the animations that are used to implement this fading.
243 final int duration = res.getInteger(R.integer.config_dragOutlineFadeTime);
Chet Haase472b2812010-10-14 07:02:04 -0700244 final float fromAlphaValue = 0;
245 final float toAlphaValue = (float)res.getInteger(R.integer.config_dragOutlineMaxAlpha);
Joe Onorato4be866d2010-10-10 11:26:02 -0700246
Patrick Dubroy8e58e912010-10-14 13:21:48 -0700247 Arrays.fill(mDragOutlineAlphas, fromAlphaValue);
Joe Onorato4be866d2010-10-10 11:26:02 -0700248
249 for (int i = 0; i < mDragOutlineAnims.length; i++) {
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700250 final InterruptibleInOutAnimator anim =
Michael Jurkaf1ad6082013-03-13 12:55:46 +0100251 new InterruptibleInOutAnimator(this, duration, fromAlphaValue, toAlphaValue);
Patrick Dubroyce34a972010-10-19 10:34:32 -0700252 anim.getAnimator().setInterpolator(mEaseOutInterpolator);
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700253 final int thisIndex = i;
Chet Haase472b2812010-10-14 07:02:04 -0700254 anim.getAnimator().addUpdateListener(new AnimatorUpdateListener() {
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700255 public void onAnimationUpdate(ValueAnimator animation) {
Joe Onorato4be866d2010-10-10 11:26:02 -0700256 final Bitmap outline = (Bitmap)anim.getTag();
257
258 // If an animation is started and then stopped very quickly, we can still
259 // get spurious updates we've cleared the tag. Guard against this.
260 if (outline == null) {
Tony Wickhama0628cc2015-10-14 15:23:04 -0700261 if (LOGD) {
Patrick Dubroyfe6bd872010-10-13 17:32:10 -0700262 Object val = animation.getAnimatedValue();
263 Log.d(TAG, "anim " + thisIndex + " update: " + val +
264 ", isStopped " + anim.isStopped());
265 }
Joe Onorato4be866d2010-10-10 11:26:02 -0700266 // Try to prevent it from continuing to run
267 animation.cancel();
268 } else {
Chet Haase472b2812010-10-14 07:02:04 -0700269 mDragOutlineAlphas[thisIndex] = (Float) animation.getAnimatedValue();
Adam Cohend41fbf52012-02-16 23:53:59 -0800270 CellLayout.this.invalidate(mDragOutlines[thisIndex]);
Joe Onorato4be866d2010-10-10 11:26:02 -0700271 }
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700272 }
273 });
Joe Onorato4be866d2010-10-10 11:26:02 -0700274 // The animation holds a reference to the drag outline bitmap as long is it's
275 // running. This way the bitmap can be GCed when the animations are complete.
Chet Haase472b2812010-10-14 07:02:04 -0700276 anim.getAnimator().addListener(new AnimatorListenerAdapter() {
Michael Jurka3c4c20f2010-10-28 15:36:06 -0700277 @Override
Joe Onorato4be866d2010-10-10 11:26:02 -0700278 public void onAnimationEnd(Animator animation) {
Chet Haase472b2812010-10-14 07:02:04 -0700279 if ((Float) ((ValueAnimator) animation).getAnimatedValue() == 0f) {
Joe Onorato4be866d2010-10-10 11:26:02 -0700280 anim.setTag(null);
281 }
282 }
283 });
284 mDragOutlineAnims[i] = anim;
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700285 }
Patrick Dubroyce34a972010-10-19 10:34:32 -0700286
Sunny Goyalc13403c2016-11-18 23:44:48 -0800287 mShortcutsAndWidgets = new ShortcutAndWidgetContainer(context, mContainerType);
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530288 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mCountX, mCountY);
Adam Cohen2374abf2013-04-16 14:56:57 -0700289
Mady Mellorbb835202015-07-15 16:34:34 -0700290 mStylusEventHelper = new StylusEventHelper(new SimpleOnStylusPressListener(this), this);
Mady Melloref044dd2015-06-02 15:35:07 -0700291
Sunny Goyal4fe5a372015-05-14 19:55:10 -0700292 mTouchFeedbackView = new ClickShadowView(context);
293 addView(mTouchFeedbackView);
Michael Jurkaa52570f2012-03-20 03:18:20 -0700294 addView(mShortcutsAndWidgets);
Michael Jurka18014792010-10-14 09:01:34 -0700295 }
296
Sunny Goyale9b651e2015-04-24 11:44:51 -0700297 public void enableAccessibleDrag(boolean enable, int dragType) {
Adam Cohenc9735cf2015-01-23 16:11:55 -0800298 mUseTouchHelper = enable;
299 if (!enable) {
300 ViewCompat.setAccessibilityDelegate(this, null);
301 setImportantForAccessibility(IMPORTANT_FOR_ACCESSIBILITY_NO);
302 getShortcutsAndWidgets().setImportantForAccessibility(IMPORTANT_FOR_ACCESSIBILITY_NO);
303 setOnClickListener(mLauncher);
304 } else {
Sunny Goyale9b651e2015-04-24 11:44:51 -0700305 if (dragType == WORKSPACE_ACCESSIBILITY_DRAG &&
306 !(mTouchHelper instanceof WorkspaceAccessibilityHelper)) {
307 mTouchHelper = new WorkspaceAccessibilityHelper(this);
308 } else if (dragType == FOLDER_ACCESSIBILITY_DRAG &&
309 !(mTouchHelper instanceof FolderAccessibilityHelper)) {
310 mTouchHelper = new FolderAccessibilityHelper(this);
311 }
Adam Cohenc9735cf2015-01-23 16:11:55 -0800312 ViewCompat.setAccessibilityDelegate(this, mTouchHelper);
313 setImportantForAccessibility(IMPORTANT_FOR_ACCESSIBILITY_YES);
314 getShortcutsAndWidgets().setImportantForAccessibility(IMPORTANT_FOR_ACCESSIBILITY_YES);
315 setOnClickListener(mTouchHelper);
316 }
317
318 // Invalidate the accessibility hierarchy
319 if (getParent() != null) {
320 getParent().notifySubtreeAccessibilityStateChanged(
321 this, this, AccessibilityEvent.CONTENT_CHANGE_TYPE_SUBTREE);
322 }
323 }
324
325 @Override
326 public boolean dispatchHoverEvent(MotionEvent event) {
327 // Always attempt to dispatch hover events to accessibility first.
328 if (mUseTouchHelper && mTouchHelper.dispatchHoverEvent(event)) {
329 return true;
330 }
331 return super.dispatchHoverEvent(event);
332 }
333
334 @Override
Adam Cohenc9735cf2015-01-23 16:11:55 -0800335 public boolean onInterceptTouchEvent(MotionEvent ev) {
336 if (mUseTouchHelper ||
337 (mInterceptTouchListener != null && mInterceptTouchListener.onTouch(this, ev))) {
338 return true;
339 }
340 return false;
341 }
342
Mady Melloref044dd2015-06-02 15:35:07 -0700343 @Override
344 public boolean onTouchEvent(MotionEvent ev) {
345 boolean handled = super.onTouchEvent(ev);
346 // Stylus button press on a home screen should not switch between overview mode and
347 // the home screen mode, however, once in overview mode stylus button press should be
348 // enabled to allow rearranging the different home screens. So check what mode
349 // the workspace is in, and only perform stylus button presses while in overview mode.
350 if (mLauncher.mWorkspace.isInOverviewMode()
Mady Mellorbb835202015-07-15 16:34:34 -0700351 && mStylusEventHelper.onMotionEvent(ev)) {
Mady Melloref044dd2015-06-02 15:35:07 -0700352 return true;
353 }
354 return handled;
355 }
356
Chris Craik01f2d7f2013-10-01 14:41:56 -0700357 public void enableHardwareLayer(boolean hasLayer) {
358 mShortcutsAndWidgets.setLayerType(hasLayer ? LAYER_TYPE_HARDWARE : LAYER_TYPE_NONE, sPaint);
Michael Jurkad51f33a2012-06-28 15:35:26 -0700359 }
360
361 public void buildHardwareLayer() {
362 mShortcutsAndWidgets.buildLayer();
Adam Cohen2801caf2011-05-13 20:57:39 -0700363 }
364
Winson Chung5f8afe62013-08-12 16:19:28 -0700365 public void setCellDimensions(int width, int height) {
Winson Chung11a1a532013-09-13 11:14:45 -0700366 mFixedCellWidth = mCellWidth = width;
367 mFixedCellHeight = mCellHeight = height;
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530368 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mCountX, mCountY);
Winson Chung5f8afe62013-08-12 16:19:28 -0700369 }
370
Adam Cohen2801caf2011-05-13 20:57:39 -0700371 public void setGridSize(int x, int y) {
372 mCountX = x;
373 mCountY = y;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -0700374 mOccupied = new GridOccupancy(mCountX, mCountY);
375 mTmpOccupied = new GridOccupancy(mCountX, mCountY);
Adam Cohen7fbec102012-03-27 12:42:19 -0700376 mTempRectStack.clear();
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530377 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mCountX, mCountY);
Adam Cohen76fc0852011-06-17 13:26:23 -0700378 requestLayout();
Adam Cohen2801caf2011-05-13 20:57:39 -0700379 }
380
Adam Cohen2374abf2013-04-16 14:56:57 -0700381 // Set whether or not to invert the layout horizontally if the layout is in RTL mode.
382 public void setInvertIfRtl(boolean invert) {
383 mShortcutsAndWidgets.setInvertIfRtl(invert);
384 }
385
Adam Cohen917e3882013-10-31 15:03:35 -0700386 public void setDropPending(boolean pending) {
387 mDropPending = pending;
388 }
389
390 public boolean isDropPending() {
391 return mDropPending;
392 }
393
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700394 @Override
395 public void setPressedIcon(BubbleTextView icon, Bitmap background) {
Sunny Goyal508da152014-08-14 10:53:27 -0700396 if (icon == null || background == null) {
397 mTouchFeedbackView.setBitmap(null);
398 mTouchFeedbackView.animate().cancel();
399 } else {
Sunny Goyal508da152014-08-14 10:53:27 -0700400 if (mTouchFeedbackView.setBitmap(background)) {
Winsonbe9798b2016-07-20 12:55:49 -0700401 mTouchFeedbackView.alignWithIconView(icon, mShortcutsAndWidgets,
402 null /* clipAgainstView */);
Sunny Goyal4fe5a372015-05-14 19:55:10 -0700403 mTouchFeedbackView.animateShadow();
Sunny Goyal508da152014-08-14 10:53:27 -0700404 }
Patrick Dubroy96864c32011-03-10 17:17:23 -0800405 }
406 }
407
Adam Cohenc50438c2014-08-19 17:43:05 -0700408 void disableDragTarget() {
409 mIsDragTarget = false;
410 }
411
Tony Wickham0f97b782015-12-02 17:55:07 -0800412 public boolean isDragTarget() {
413 return mIsDragTarget;
414 }
415
Adam Cohenc50438c2014-08-19 17:43:05 -0700416 void setIsDragOverlapping(boolean isDragOverlapping) {
417 if (mIsDragOverlapping != isDragOverlapping) {
418 mIsDragOverlapping = isDragOverlapping;
Sunny Goyalf5440cb2016-12-14 15:13:00 -0800419 mBackground.setState(mIsDragOverlapping
420 ? BACKGROUND_STATE_ACTIVE : BACKGROUND_STATE_DEFAULT);
Adam Cohenc50438c2014-08-19 17:43:05 -0700421 invalidate();
422 }
423 }
424
Sunny Goyale2fd14b2015-08-27 17:45:46 -0700425 public void disableJailContent() {
426 mJailContent = false;
427 }
428
429 @Override
430 protected void dispatchSaveInstanceState(SparseArray<Parcelable> container) {
431 if (mJailContent) {
432 ParcelableSparseArray jail = getJailedArray(container);
433 super.dispatchSaveInstanceState(jail);
434 container.put(R.id.cell_layout_jail_id, jail);
435 } else {
436 super.dispatchSaveInstanceState(container);
437 }
438 }
439
440 @Override
441 protected void dispatchRestoreInstanceState(SparseArray<Parcelable> container) {
442 super.dispatchRestoreInstanceState(mJailContent ? getJailedArray(container) : container);
443 }
444
445 private ParcelableSparseArray getJailedArray(SparseArray<Parcelable> container) {
446 final Parcelable parcelable = container.get(R.id.cell_layout_jail_id);
447 return parcelable instanceof ParcelableSparseArray ?
448 (ParcelableSparseArray) parcelable : new ParcelableSparseArray();
449 }
450
Tony Wickham0f97b782015-12-02 17:55:07 -0800451 public boolean getIsDragOverlapping() {
452 return mIsDragOverlapping;
453 }
454
Jeff Sharkey83f111d2009-04-20 21:03:13 -0700455 @Override
Patrick Dubroy1262e362010-10-06 15:49:50 -0700456 protected void onDraw(Canvas canvas) {
Sunny Goyal05739772015-05-19 19:59:09 -0700457 if (!mIsDragTarget) {
458 return;
459 }
460
Michael Jurka3e7c7632010-10-02 16:01:03 -0700461 // When we're large, we are either drawn in a "hover" state (ie when dragging an item to
462 // a neighboring page) or with just a normal background (if backgroundAlpha > 0.0f)
463 // When we're small, we are either drawn normally or in the "accepts drops" state (during
464 // a drag). However, we also drag the mini hover background *over* one of those two
465 // backgrounds
Sunny Goyal05739772015-05-19 19:59:09 -0700466 if (mBackgroundAlpha > 0.0f) {
Sunny Goyal2805e632015-05-20 15:35:32 -0700467 mBackground.draw(canvas);
Michael Jurkaa63c4522010-08-19 13:52:27 -0700468 }
Romain Guya6abce82009-11-10 02:54:41 -0800469
Patrick Dubroy8e58e912010-10-14 13:21:48 -0700470 final Paint paint = mDragOutlinePaint;
Joe Onorato4be866d2010-10-10 11:26:02 -0700471 for (int i = 0; i < mDragOutlines.length; i++) {
Chet Haase472b2812010-10-14 07:02:04 -0700472 final float alpha = mDragOutlineAlphas[i];
Joe Onorato4be866d2010-10-10 11:26:02 -0700473 if (alpha > 0) {
Joe Onorato4be866d2010-10-10 11:26:02 -0700474 final Bitmap b = (Bitmap) mDragOutlineAnims[i].getTag();
Chet Haase472b2812010-10-14 07:02:04 -0700475 paint.setAlpha((int)(alpha + .5f));
Sunny Goyal106bf642015-07-16 12:18:06 -0700476 canvas.drawBitmap(b, null, mDragOutlines[i], paint);
Winson Chung150fbab2010-09-29 17:14:26 -0700477 }
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700478 }
Patrick Dubroy96864c32011-03-10 17:17:23 -0800479
Adam Cohen482ed822012-03-02 14:15:13 -0800480 if (DEBUG_VISUALIZE_OCCUPIED) {
481 int[] pt = new int[2];
482 ColorDrawable cd = new ColorDrawable(Color.RED);
Adam Cohene7587d22012-05-24 18:50:02 -0700483 cd.setBounds(0, 0, mCellWidth, mCellHeight);
Adam Cohen482ed822012-03-02 14:15:13 -0800484 for (int i = 0; i < mCountX; i++) {
485 for (int j = 0; j < mCountY; j++) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -0700486 if (mOccupied.cells[i][j]) {
Adam Cohen482ed822012-03-02 14:15:13 -0800487 cellToPoint(i, j, pt);
488 canvas.save();
489 canvas.translate(pt[0], pt[1]);
490 cd.draw(canvas);
491 canvas.restore();
492 }
493 }
494 }
495 }
496
Adam Cohenefca0272016-02-24 19:19:06 -0800497 for (int i = 0; i < mFolderBackgrounds.size(); i++) {
498 FolderIcon.PreviewBackground bg = mFolderBackgrounds.get(i);
499 cellToPoint(bg.delegateCellX, bg.delegateCellY, mTempLocation);
500 canvas.save();
501 canvas.translate(mTempLocation[0], mTempLocation[1]);
Sunny Goyal19b93b72017-02-19 20:21:37 -0800502 bg.drawBackground(canvas);
Adam Cohenf172b742016-03-30 19:28:34 -0700503 if (!bg.isClipping) {
Sunny Goyal19b93b72017-02-19 20:21:37 -0800504 bg.drawBackgroundStroke(canvas);
Adam Cohenf172b742016-03-30 19:28:34 -0700505 }
Adam Cohenefca0272016-02-24 19:19:06 -0800506 canvas.restore();
Adam Cohen69ce2e52011-07-03 19:25:21 -0700507 }
Adam Cohenc51934b2011-07-26 21:07:43 -0700508
Adam Cohenefca0272016-02-24 19:19:06 -0800509 if (mFolderLeaveBehind.delegateCellX >= 0 && mFolderLeaveBehind.delegateCellY >= 0) {
510 cellToPoint(mFolderLeaveBehind.delegateCellX,
511 mFolderLeaveBehind.delegateCellY, mTempLocation);
512 canvas.save();
513 canvas.translate(mTempLocation[0], mTempLocation[1]);
Sunny Goyal19b93b72017-02-19 20:21:37 -0800514 mFolderLeaveBehind.drawLeaveBehind(canvas);
Adam Cohenefca0272016-02-24 19:19:06 -0800515 canvas.restore();
Adam Cohenc51934b2011-07-26 21:07:43 -0700516 }
Adam Cohen69ce2e52011-07-03 19:25:21 -0700517 }
518
Adam Cohenefca0272016-02-24 19:19:06 -0800519 @Override
520 protected void dispatchDraw(Canvas canvas) {
521 super.dispatchDraw(canvas);
522
523 for (int i = 0; i < mFolderBackgrounds.size(); i++) {
524 FolderIcon.PreviewBackground bg = mFolderBackgrounds.get(i);
Adam Cohenf172b742016-03-30 19:28:34 -0700525 if (bg.isClipping) {
526 cellToPoint(bg.delegateCellX, bg.delegateCellY, mTempLocation);
527 canvas.save();
528 canvas.translate(mTempLocation[0], mTempLocation[1]);
Sunny Goyal19b93b72017-02-19 20:21:37 -0800529 bg.drawBackgroundStroke(canvas);
Adam Cohenf172b742016-03-30 19:28:34 -0700530 canvas.restore();
531 }
Adam Cohenefca0272016-02-24 19:19:06 -0800532 }
Adam Cohen69ce2e52011-07-03 19:25:21 -0700533 }
534
Adam Cohenefca0272016-02-24 19:19:06 -0800535 public void addFolderBackground(FolderIcon.PreviewBackground bg) {
536 mFolderBackgrounds.add(bg);
537 }
538 public void removeFolderBackground(FolderIcon.PreviewBackground bg) {
539 mFolderBackgrounds.remove(bg);
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700540 }
541
Adam Cohenc51934b2011-07-26 21:07:43 -0700542 public void setFolderLeaveBehindCell(int x, int y) {
Adam Cohenefca0272016-02-24 19:19:06 -0800543 View child = getChildAt(x, y);
Sunny Goyal368ae772017-05-24 13:19:15 -0700544 mFolderLeaveBehind.setup(mLauncher, null,
Adam Cohenefca0272016-02-24 19:19:06 -0800545 child.getMeasuredWidth(), child.getPaddingTop());
546
547 mFolderLeaveBehind.delegateCellX = x;
548 mFolderLeaveBehind.delegateCellY = y;
Adam Cohenc51934b2011-07-26 21:07:43 -0700549 invalidate();
550 }
551
552 public void clearFolderLeaveBehind() {
Adam Cohenefca0272016-02-24 19:19:06 -0800553 mFolderLeaveBehind.delegateCellX = -1;
554 mFolderLeaveBehind.delegateCellY = -1;
Adam Cohenc51934b2011-07-26 21:07:43 -0700555 invalidate();
556 }
557
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700558 @Override
Michael Jurkae6235dd2011-10-04 15:02:05 -0700559 public boolean shouldDelayChildPressedState() {
560 return false;
561 }
562
Adam Cohen1462de32012-07-24 22:34:36 -0700563 public void restoreInstanceState(SparseArray<Parcelable> states) {
Sunny Goyal33a152f2014-07-22 12:13:14 -0700564 try {
565 dispatchRestoreInstanceState(states);
566 } catch (IllegalArgumentException ex) {
Sunny Goyal3d706ad2017-03-06 16:56:39 -0800567 if (FeatureFlags.IS_DOGFOOD_BUILD) {
Sunny Goyal33a152f2014-07-22 12:13:14 -0700568 throw ex;
569 }
570 // Mismatched viewId / viewType preventing restore. Skip restore on production builds.
571 Log.e(TAG, "Ignoring an error while restoring a view instance state", ex);
572 }
Adam Cohen1462de32012-07-24 22:34:36 -0700573 }
574
Michael Jurkae6235dd2011-10-04 15:02:05 -0700575 @Override
Jeff Sharkey83f111d2009-04-20 21:03:13 -0700576 public void cancelLongPress() {
577 super.cancelLongPress();
578
579 // Cancel long press for all children
580 final int count = getChildCount();
581 for (int i = 0; i < count; i++) {
582 final View child = getChildAt(i);
583 child.cancelLongPress();
584 }
585 }
586
Michael Jurkadee05892010-07-27 10:01:56 -0700587 public void setOnInterceptTouchListener(View.OnTouchListener listener) {
588 mInterceptTouchListener = listener;
589 }
590
Hyunyoung Songee3e6a72015-02-20 14:25:27 -0800591 public int getCountX() {
Adam Cohend22015c2010-07-26 22:02:18 -0700592 return mCountX;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800593 }
594
Hyunyoung Songee3e6a72015-02-20 14:25:27 -0800595 public int getCountY() {
Adam Cohend22015c2010-07-26 22:02:18 -0700596 return mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800597 }
598
Sunny Goyalc13403c2016-11-18 23:44:48 -0800599 public boolean acceptsWidget() {
600 return mContainerType == WORKSPACE;
Sunny Goyale9b651e2015-04-24 11:44:51 -0700601 }
602
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800603 public boolean addViewToCellLayout(View child, int index, int childId, LayoutParams params,
Sunny Goyalf7a29e82015-04-24 15:20:43 -0700604 boolean markCells) {
Winson Chungaafa03c2010-06-11 17:34:16 -0700605 final LayoutParams lp = params;
606
Andrew Flynnde38e422012-05-08 11:22:15 -0700607 // Hotseat icons - remove text
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800608 if (child instanceof BubbleTextView) {
609 BubbleTextView bubbleChild = (BubbleTextView) child;
Sunny Goyalc13403c2016-11-18 23:44:48 -0800610 bubbleChild.setTextVisibility(mContainerType != HOTSEAT);
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800611 }
612
Sunny Goyalc13403c2016-11-18 23:44:48 -0800613 child.setScaleX(mChildScale);
614 child.setScaleY(mChildScale);
Adam Cohen307fe232012-08-16 17:55:58 -0700615
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800616 // Generate an id for each view, this assumes we have at most 256x256 cells
617 // per workspace screen
Adam Cohend22015c2010-07-26 22:02:18 -0700618 if (lp.cellX >= 0 && lp.cellX <= mCountX - 1 && lp.cellY >= 0 && lp.cellY <= mCountY - 1) {
Winson Chungaafa03c2010-06-11 17:34:16 -0700619 // If the horizontal or vertical span is set to -1, it is taken to
620 // mean that it spans the extent of the CellLayout
Adam Cohend22015c2010-07-26 22:02:18 -0700621 if (lp.cellHSpan < 0) lp.cellHSpan = mCountX;
622 if (lp.cellVSpan < 0) lp.cellVSpan = mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800623
Winson Chungaafa03c2010-06-11 17:34:16 -0700624 child.setId(childId);
Tony Wickhama0628cc2015-10-14 15:23:04 -0700625 if (LOGD) {
626 Log.d(TAG, "Adding view to ShortcutsAndWidgetsContainer: " + child);
627 }
Sunny Goyalf7a29e82015-04-24 15:20:43 -0700628 mShortcutsAndWidgets.addView(child, index, lp);
Michael Jurkadee05892010-07-27 10:01:56 -0700629
Michael Jurkaf3ca3ab2010-10-20 17:08:24 -0700630 if (markCells) markCellsAsOccupiedForView(child);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700631
Winson Chungaafa03c2010-06-11 17:34:16 -0700632 return true;
633 }
634 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800635 }
Michael Jurka3e7c7632010-10-02 16:01:03 -0700636
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800637 @Override
Michael Jurka0280c3b2010-09-17 15:00:07 -0700638 public void removeAllViews() {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -0700639 mOccupied.clear();
Michael Jurkaa52570f2012-03-20 03:18:20 -0700640 mShortcutsAndWidgets.removeAllViews();
Michael Jurka0280c3b2010-09-17 15:00:07 -0700641 }
642
643 @Override
644 public void removeAllViewsInLayout() {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700645 if (mShortcutsAndWidgets.getChildCount() > 0) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -0700646 mOccupied.clear();
Michael Jurkaa52570f2012-03-20 03:18:20 -0700647 mShortcutsAndWidgets.removeAllViewsInLayout();
Michael Jurka7cfc2822011-08-02 20:19:24 -0700648 }
Michael Jurka0280c3b2010-09-17 15:00:07 -0700649 }
650
651 @Override
652 public void removeView(View view) {
653 markCellsAsUnoccupiedForView(view);
Michael Jurkaa52570f2012-03-20 03:18:20 -0700654 mShortcutsAndWidgets.removeView(view);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700655 }
656
657 @Override
658 public void removeViewAt(int index) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700659 markCellsAsUnoccupiedForView(mShortcutsAndWidgets.getChildAt(index));
660 mShortcutsAndWidgets.removeViewAt(index);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700661 }
662
663 @Override
664 public void removeViewInLayout(View view) {
665 markCellsAsUnoccupiedForView(view);
Michael Jurkaa52570f2012-03-20 03:18:20 -0700666 mShortcutsAndWidgets.removeViewInLayout(view);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700667 }
668
669 @Override
670 public void removeViews(int start, int count) {
671 for (int i = start; i < start + count; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700672 markCellsAsUnoccupiedForView(mShortcutsAndWidgets.getChildAt(i));
Michael Jurka0280c3b2010-09-17 15:00:07 -0700673 }
Michael Jurkaa52570f2012-03-20 03:18:20 -0700674 mShortcutsAndWidgets.removeViews(start, count);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700675 }
676
677 @Override
678 public void removeViewsInLayout(int start, int count) {
679 for (int i = start; i < start + count; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700680 markCellsAsUnoccupiedForView(mShortcutsAndWidgets.getChildAt(i));
Michael Jurka0280c3b2010-09-17 15:00:07 -0700681 }
Michael Jurkaa52570f2012-03-20 03:18:20 -0700682 mShortcutsAndWidgets.removeViewsInLayout(start, count);
Michael Jurkaabded662011-03-04 12:06:57 -0800683 }
684
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700685 /**
Winson Chungaafa03c2010-06-11 17:34:16 -0700686 * Given a point, return the cell that strictly encloses that point
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800687 * @param x X coordinate of the point
688 * @param y Y coordinate of the point
689 * @param result Array of 2 ints to hold the x and y coordinate of the cell
690 */
Sunny Goyale9b651e2015-04-24 11:44:51 -0700691 public void pointToCellExact(int x, int y, int[] result) {
Winson Chung4b825dcd2011-06-19 12:41:22 -0700692 final int hStartPadding = getPaddingLeft();
693 final int vStartPadding = getPaddingTop();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800694
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530695 result[0] = (x - hStartPadding) / mCellWidth;
696 result[1] = (y - vStartPadding) / mCellHeight;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800697
Adam Cohend22015c2010-07-26 22:02:18 -0700698 final int xAxis = mCountX;
699 final int yAxis = mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800700
701 if (result[0] < 0) result[0] = 0;
702 if (result[0] >= xAxis) result[0] = xAxis - 1;
703 if (result[1] < 0) result[1] = 0;
704 if (result[1] >= yAxis) result[1] = yAxis - 1;
705 }
Winson Chungaafa03c2010-06-11 17:34:16 -0700706
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800707 /**
708 * Given a point, return the cell that most closely encloses that point
709 * @param x X coordinate of the point
710 * @param y Y coordinate of the point
711 * @param result Array of 2 ints to hold the x and y coordinate of the cell
712 */
713 void pointToCellRounded(int x, int y, int[] result) {
714 pointToCellExact(x + (mCellWidth / 2), y + (mCellHeight / 2), result);
715 }
716
717 /**
718 * Given a cell coordinate, return the point that represents the upper left corner of that cell
Winson Chungaafa03c2010-06-11 17:34:16 -0700719 *
720 * @param cellX X coordinate of the cell
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800721 * @param cellY Y coordinate of the cell
Winson Chungaafa03c2010-06-11 17:34:16 -0700722 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800723 * @param result Array of 2 ints to hold the x and y coordinate of the point
724 */
725 void cellToPoint(int cellX, int cellY, int[] result) {
Winson Chung4b825dcd2011-06-19 12:41:22 -0700726 final int hStartPadding = getPaddingLeft();
727 final int vStartPadding = getPaddingTop();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800728
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530729 result[0] = hStartPadding + cellX * mCellWidth;
730 result[1] = vStartPadding + cellY * mCellHeight;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800731 }
732
Adam Cohene3e27a82011-04-15 12:07:39 -0700733 /**
Adam Cohen482ed822012-03-02 14:15:13 -0800734 * Given a cell coordinate, return the point that represents the center of the cell
Adam Cohene3e27a82011-04-15 12:07:39 -0700735 *
736 * @param cellX X coordinate of the cell
737 * @param cellY Y coordinate of the cell
738 *
739 * @param result Array of 2 ints to hold the x and y coordinate of the point
740 */
741 void cellToCenterPoint(int cellX, int cellY, int[] result) {
Adam Cohen47a876d2012-03-19 13:21:41 -0700742 regionToCenterPoint(cellX, cellY, 1, 1, result);
743 }
744
745 /**
746 * Given a cell coordinate and span return the point that represents the center of the regio
747 *
748 * @param cellX X coordinate of the cell
749 * @param cellY Y coordinate of the cell
750 *
751 * @param result Array of 2 ints to hold the x and y coordinate of the point
752 */
753 void regionToCenterPoint(int cellX, int cellY, int spanX, int spanY, int[] result) {
Winson Chung4b825dcd2011-06-19 12:41:22 -0700754 final int hStartPadding = getPaddingLeft();
755 final int vStartPadding = getPaddingTop();
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530756 result[0] = hStartPadding + cellX * mCellWidth + (spanX * mCellWidth) / 2;
757 result[1] = vStartPadding + cellY * mCellHeight + (spanY * mCellHeight) / 2;
Adam Cohene3e27a82011-04-15 12:07:39 -0700758 }
759
Adam Cohen19f37922012-03-21 11:59:11 -0700760 /**
761 * Given a cell coordinate and span fills out a corresponding pixel rect
762 *
763 * @param cellX X coordinate of the cell
764 * @param cellY Y coordinate of the cell
765 * @param result Rect in which to write the result
766 */
767 void regionToRect(int cellX, int cellY, int spanX, int spanY, Rect result) {
768 final int hStartPadding = getPaddingLeft();
769 final int vStartPadding = getPaddingTop();
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530770 final int left = hStartPadding + cellX * mCellWidth;
771 final int top = vStartPadding + cellY * mCellHeight;
772 result.set(left, top, left + (spanX * mCellWidth), top + (spanY * mCellHeight));
Adam Cohen19f37922012-03-21 11:59:11 -0700773 }
774
Adam Cohen482ed822012-03-02 14:15:13 -0800775 public float getDistanceFromCell(float x, float y, int[] cell) {
776 cellToCenterPoint(cell[0], cell[1], mTmpPoint);
Sunny Goyalf7a29e82015-04-24 15:20:43 -0700777 return (float) Math.hypot(x - mTmpPoint[0], y - mTmpPoint[1]);
Adam Cohen482ed822012-03-02 14:15:13 -0800778 }
779
Adam Cohenf9c184a2016-01-15 16:47:43 -0800780 public int getCellWidth() {
Romain Guy84f296c2009-11-04 15:00:44 -0800781 return mCellWidth;
782 }
783
784 int getCellHeight() {
785 return mCellHeight;
786 }
787
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700788 public void setFixedSize(int width, int height) {
789 mFixedWidth = width;
790 mFixedHeight = height;
791 }
792
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800793 @Override
794 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800795 int widthSpecMode = MeasureSpec.getMode(widthMeasureSpec);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800796 int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec);
Winson Chung5f8afe62013-08-12 16:19:28 -0700797 int widthSize = MeasureSpec.getSize(widthMeasureSpec);
798 int heightSize = MeasureSpec.getSize(heightMeasureSpec);
Winson Chung2d75f122013-09-23 16:53:31 -0700799 int childWidthSize = widthSize - (getPaddingLeft() + getPaddingRight());
800 int childHeightSize = heightSize - (getPaddingTop() + getPaddingBottom());
Winson Chung11a1a532013-09-13 11:14:45 -0700801 if (mFixedCellWidth < 0 || mFixedCellHeight < 0) {
Sunny Goyalc6205602015-05-21 20:46:33 -0700802 int cw = DeviceProfile.calculateCellWidth(childWidthSize, mCountX);
803 int ch = DeviceProfile.calculateCellHeight(childHeightSize, mCountY);
Winson Chung11a1a532013-09-13 11:14:45 -0700804 if (cw != mCellWidth || ch != mCellHeight) {
805 mCellWidth = cw;
806 mCellHeight = ch;
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530807 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mCountX, mCountY);
Winson Chung11a1a532013-09-13 11:14:45 -0700808 }
Winson Chung5f8afe62013-08-12 16:19:28 -0700809 }
Winson Chungaafa03c2010-06-11 17:34:16 -0700810
Winson Chung2d75f122013-09-23 16:53:31 -0700811 int newWidth = childWidthSize;
812 int newHeight = childHeightSize;
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700813 if (mFixedWidth > 0 && mFixedHeight > 0) {
814 newWidth = mFixedWidth;
815 newHeight = mFixedHeight;
816 } else if (widthSpecMode == MeasureSpec.UNSPECIFIED || heightSpecMode == MeasureSpec.UNSPECIFIED) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800817 throw new RuntimeException("CellLayout cannot have UNSPECIFIED dimensions");
818 }
819
Sunny Goyal4fe5a372015-05-14 19:55:10 -0700820 // Make the feedback view large enough to hold the blur bitmap.
821 mTouchFeedbackView.measure(
822 MeasureSpec.makeMeasureSpec(mCellWidth + mTouchFeedbackView.getExtraSize(),
823 MeasureSpec.EXACTLY),
824 MeasureSpec.makeMeasureSpec(mCellHeight + mTouchFeedbackView.getExtraSize(),
825 MeasureSpec.EXACTLY));
826
827 mShortcutsAndWidgets.measure(
828 MeasureSpec.makeMeasureSpec(newWidth, MeasureSpec.EXACTLY),
829 MeasureSpec.makeMeasureSpec(newHeight, MeasureSpec.EXACTLY));
830
831 int maxWidth = mShortcutsAndWidgets.getMeasuredWidth();
832 int maxHeight = mShortcutsAndWidgets.getMeasuredHeight();
Winson Chung2d75f122013-09-23 16:53:31 -0700833 if (mFixedWidth > 0 && mFixedHeight > 0) {
834 setMeasuredDimension(maxWidth, maxHeight);
835 } else {
836 setMeasuredDimension(widthSize, heightSize);
837 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800838 }
839
840 @Override
Michael Jurka28750fb2010-09-24 17:43:49 -0700841 protected void onLayout(boolean changed, int l, int t, int r, int b) {
Tony Wickham26b01422015-11-10 14:44:32 -0800842 boolean isFullscreen = mShortcutsAndWidgets.getChildCount() > 0 &&
843 ((LayoutParams) mShortcutsAndWidgets.getChildAt(0).getLayoutParams()).isFullscreen;
844 int left = getPaddingLeft();
845 if (!isFullscreen) {
Tony Wickhama501d492015-11-03 18:05:01 -0800846 left += (int) Math.ceil(getUnusedHorizontalSpace() / 2f);
Tony Wickham26b01422015-11-10 14:44:32 -0800847 }
Sunny Goyal7c786f72016-06-01 14:08:21 -0700848 int right = r - l - getPaddingRight();
849 if (!isFullscreen) {
850 right -= (int) Math.ceil(getUnusedHorizontalSpace() / 2f);
851 }
852
Winson Chung38848ca2013-10-08 12:03:44 -0700853 int top = getPaddingTop();
Sunny Goyal7c786f72016-06-01 14:08:21 -0700854 int bottom = b - t - getPaddingBottom();
Sunny Goyal4fe5a372015-05-14 19:55:10 -0700855
856 mTouchFeedbackView.layout(left, top,
857 left + mTouchFeedbackView.getMeasuredWidth(),
858 top + mTouchFeedbackView.getMeasuredHeight());
Sunny Goyal7c786f72016-06-01 14:08:21 -0700859 mShortcutsAndWidgets.layout(left, top, right, bottom);
860
861 // Expand the background drawing bounds by the padding baked into the background drawable
862 mBackground.getPadding(mTempRect);
863 mBackground.setBounds(
864 left - mTempRect.left,
865 top - mTempRect.top,
866 right + mTempRect.right,
867 bottom + mTempRect.bottom);
868 }
869
Tony Wickhama501d492015-11-03 18:05:01 -0800870 /**
871 * Returns the amount of space left over after subtracting padding and cells. This space will be
872 * very small, a few pixels at most, and is a result of rounding down when calculating the cell
873 * width in {@link DeviceProfile#calculateCellWidth(int, int)}.
874 */
875 public int getUnusedHorizontalSpace() {
876 return getMeasuredWidth() - getPaddingLeft() - getPaddingRight() - (mCountX * mCellWidth);
877 }
878
Michael Jurka5f1c5092010-09-03 14:15:02 -0700879 public float getBackgroundAlpha() {
880 return mBackgroundAlpha;
Michael Jurkadee05892010-07-27 10:01:56 -0700881 }
882
Michael Jurka5f1c5092010-09-03 14:15:02 -0700883 public void setBackgroundAlpha(float alpha) {
Michael Jurkaafaa0502011-12-13 18:22:50 -0800884 if (mBackgroundAlpha != alpha) {
885 mBackgroundAlpha = alpha;
Sunny Goyal2805e632015-05-20 15:35:32 -0700886 mBackground.setAlpha((int) (mBackgroundAlpha * 255));
Michael Jurkaafaa0502011-12-13 18:22:50 -0800887 }
Michael Jurkadee05892010-07-27 10:01:56 -0700888 }
889
Sunny Goyal2805e632015-05-20 15:35:32 -0700890 @Override
891 protected boolean verifyDrawable(Drawable who) {
892 return super.verifyDrawable(who) || (mIsDragTarget && who == mBackground);
893 }
894
Michael Jurkaa52570f2012-03-20 03:18:20 -0700895 public void setShortcutAndWidgetAlpha(float alpha) {
Sunny Goyal02b50812014-09-10 15:44:42 -0700896 mShortcutsAndWidgets.setAlpha(alpha);
Michael Jurkadee05892010-07-27 10:01:56 -0700897 }
898
Michael Jurkaa52570f2012-03-20 03:18:20 -0700899 public ShortcutAndWidgetContainer getShortcutsAndWidgets() {
Sunny Goyaldcbcc862014-08-12 15:58:36 -0700900 return mShortcutsAndWidgets;
Michael Jurkaa52570f2012-03-20 03:18:20 -0700901 }
902
Patrick Dubroy440c3602010-07-13 17:50:32 -0700903 public View getChildAt(int x, int y) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700904 return mShortcutsAndWidgets.getChildAt(x, y);
Patrick Dubroy440c3602010-07-13 17:50:32 -0700905 }
906
Adam Cohen76fc0852011-06-17 13:26:23 -0700907 public boolean animateChildToPosition(final View child, int cellX, int cellY, int duration,
Adam Cohen482ed822012-03-02 14:15:13 -0800908 int delay, boolean permanent, boolean adjustOccupied) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700909 ShortcutAndWidgetContainer clc = getShortcutsAndWidgets();
Adam Cohen482ed822012-03-02 14:15:13 -0800910
Adam Cohen19f37922012-03-21 11:59:11 -0700911 if (clc.indexOfChild(child) != -1) {
Adam Cohenbfbfd262011-06-13 16:55:12 -0700912 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
913 final ItemInfo info = (ItemInfo) child.getTag();
914
915 // We cancel any existing animations
916 if (mReorderAnimators.containsKey(lp)) {
917 mReorderAnimators.get(lp).cancel();
918 mReorderAnimators.remove(lp);
919 }
920
Adam Cohen482ed822012-03-02 14:15:13 -0800921 final int oldX = lp.x;
922 final int oldY = lp.y;
923 if (adjustOccupied) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -0700924 GridOccupancy occupied = permanent ? mOccupied : mTmpOccupied;
925 occupied.markCells(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan, false);
926 occupied.markCells(cellX, cellY, lp.cellHSpan, lp.cellVSpan, true);
Adam Cohen482ed822012-03-02 14:15:13 -0800927 }
Adam Cohenbfbfd262011-06-13 16:55:12 -0700928 lp.isLockedToGrid = true;
Adam Cohen482ed822012-03-02 14:15:13 -0800929 if (permanent) {
930 lp.cellX = info.cellX = cellX;
931 lp.cellY = info.cellY = cellY;
932 } else {
933 lp.tmpCellX = cellX;
934 lp.tmpCellY = cellY;
935 }
Jon Mirandae96798e2016-12-07 12:10:44 -0800936 clc.setupLp(child);
Adam Cohenbfbfd262011-06-13 16:55:12 -0700937 lp.isLockedToGrid = false;
Adam Cohen482ed822012-03-02 14:15:13 -0800938 final int newX = lp.x;
939 final int newY = lp.y;
Adam Cohenbfbfd262011-06-13 16:55:12 -0700940
Adam Cohen76fc0852011-06-17 13:26:23 -0700941 lp.x = oldX;
942 lp.y = oldY;
Adam Cohen76fc0852011-06-17 13:26:23 -0700943
Adam Cohen482ed822012-03-02 14:15:13 -0800944 // Exit early if we're not actually moving the view
945 if (oldX == newX && oldY == newY) {
946 lp.isLockedToGrid = true;
947 return true;
948 }
949
Jon Mirandacda3bfb2017-02-06 15:54:41 -0800950 ValueAnimator va = LauncherAnimUtils.ofFloat(0f, 1f);
Adam Cohen482ed822012-03-02 14:15:13 -0800951 va.setDuration(duration);
952 mReorderAnimators.put(lp, va);
953
954 va.addUpdateListener(new AnimatorUpdateListener() {
955 @Override
Adam Cohenbfbfd262011-06-13 16:55:12 -0700956 public void onAnimationUpdate(ValueAnimator animation) {
Jon Mirandae96798e2016-12-07 12:10:44 -0800957 float r = (Float) animation.getAnimatedValue();
Adam Cohen19f37922012-03-21 11:59:11 -0700958 lp.x = (int) ((1 - r) * oldX + r * newX);
959 lp.y = (int) ((1 - r) * oldY + r * newY);
Adam Cohen6b8a02d2012-03-22 15:13:40 -0700960 child.requestLayout();
Adam Cohenbfbfd262011-06-13 16:55:12 -0700961 }
962 });
Adam Cohen482ed822012-03-02 14:15:13 -0800963 va.addListener(new AnimatorListenerAdapter() {
Adam Cohenbfbfd262011-06-13 16:55:12 -0700964 boolean cancelled = false;
965 public void onAnimationEnd(Animator animation) {
966 // If the animation was cancelled, it means that another animation
967 // has interrupted this one, and we don't want to lock the item into
968 // place just yet.
969 if (!cancelled) {
970 lp.isLockedToGrid = true;
Adam Cohen482ed822012-03-02 14:15:13 -0800971 child.requestLayout();
Adam Cohenbfbfd262011-06-13 16:55:12 -0700972 }
973 if (mReorderAnimators.containsKey(lp)) {
974 mReorderAnimators.remove(lp);
975 }
976 }
977 public void onAnimationCancel(Animator animation) {
978 cancelled = true;
979 }
980 });
Adam Cohen482ed822012-03-02 14:15:13 -0800981 va.setStartDelay(delay);
982 va.start();
Adam Cohenbfbfd262011-06-13 16:55:12 -0700983 return true;
984 }
985 return false;
986 }
987
Sunny Goyal06e21a22016-08-11 16:02:02 -0700988 void visualizeDropLocation(View v, DragPreviewProvider outlineProvider, int cellX, int cellY,
989 int spanX, int spanY, boolean resize, DropTarget.DragObject dragObject) {
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -0700990 final int oldDragCellX = mDragCell[0];
991 final int oldDragCellY = mDragCell[1];
Adam Cohen482ed822012-03-02 14:15:13 -0800992
Hyunyoung Song0de01172016-10-05 16:27:48 -0700993 if (outlineProvider == null || outlineProvider.generatedDragOutline == null) {
Adam Cohen2801caf2011-05-13 20:57:39 -0700994 return;
995 }
996
Hyunyoung Song0de01172016-10-05 16:27:48 -0700997 Bitmap dragOutline = outlineProvider.generatedDragOutline;
Adam Cohen482ed822012-03-02 14:15:13 -0800998 if (cellX != oldDragCellX || cellY != oldDragCellY) {
Sunny Goyale78e3d72015-09-24 11:23:31 -0700999 Point dragOffset = dragObject.dragView.getDragVisualizeOffset();
1000 Rect dragRegion = dragObject.dragView.getDragRegion();
1001
Adam Cohen482ed822012-03-02 14:15:13 -08001002 mDragCell[0] = cellX;
1003 mDragCell[1] = cellY;
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001004
Joe Onorato4be866d2010-10-10 11:26:02 -07001005 final int oldIndex = mDragOutlineCurrent;
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07001006 mDragOutlineAnims[oldIndex].animateOut();
1007 mDragOutlineCurrent = (oldIndex + 1) % mDragOutlines.length;
Adam Cohend41fbf52012-02-16 23:53:59 -08001008 Rect r = mDragOutlines[mDragOutlineCurrent];
Sunny Goyal106bf642015-07-16 12:18:06 -07001009
Adam Cohend41fbf52012-02-16 23:53:59 -08001010 if (resize) {
Adam Cohen482ed822012-03-02 14:15:13 -08001011 cellToRect(cellX, cellY, spanX, spanY, r);
Jon Mirandae96798e2016-12-07 12:10:44 -08001012 if (v instanceof LauncherAppWidgetHostView) {
1013 DeviceProfile profile = mLauncher.getDeviceProfile();
Jon Miranda6f6a06a2016-12-15 11:24:18 -08001014 Utilities.shrinkRect(r, profile.appWidgetScale.x, profile.appWidgetScale.y);
Jon Mirandae96798e2016-12-07 12:10:44 -08001015 }
Sunny Goyal106bf642015-07-16 12:18:06 -07001016 } else {
1017 // Find the top left corner of the rect the object will occupy
1018 final int[] topLeft = mTmpPoint;
1019 cellToPoint(cellX, cellY, topLeft);
1020
1021 int left = topLeft[0];
1022 int top = topLeft[1];
1023
1024 if (v != null && dragOffset == null) {
1025 // When drawing the drag outline, it did not account for margin offsets
1026 // added by the view's parent.
1027 MarginLayoutParams lp = (MarginLayoutParams) v.getLayoutParams();
1028 left += lp.leftMargin;
1029 top += lp.topMargin;
1030
1031 // Offsets due to the size difference between the View and the dragOutline.
1032 // There is a size difference to account for the outer blur, which may lie
1033 // outside the bounds of the view.
Jon Mirandaf7ff3fe2016-12-05 12:04:44 -08001034 top += ((mCellHeight * spanY) - dragOutline.getHeight()) / 2;
Sunny Goyal106bf642015-07-16 12:18:06 -07001035 // We center about the x axis
Sunny Goyalaa8a8712016-11-20 15:26:01 +05301036 left += ((mCellWidth * spanX) - dragOutline.getWidth()) / 2;
Sunny Goyal106bf642015-07-16 12:18:06 -07001037 } else {
1038 if (dragOffset != null && dragRegion != null) {
1039 // Center the drag region *horizontally* in the cell and apply a drag
1040 // outline offset
Sunny Goyalaa8a8712016-11-20 15:26:01 +05301041 left += dragOffset.x + ((mCellWidth * spanX) - dragRegion.width()) / 2;
Sunny Goyal106bf642015-07-16 12:18:06 -07001042 int cHeight = getShortcutsAndWidgets().getCellContentHeight();
1043 int cellPaddingY = (int) Math.max(0, ((mCellHeight - cHeight) / 2f));
1044 top += dragOffset.y + cellPaddingY;
1045 } else {
1046 // Center the drag outline in the cell
Sunny Goyalaa8a8712016-11-20 15:26:01 +05301047 left += ((mCellWidth * spanX) - dragOutline.getWidth()) / 2;
1048 top += ((mCellHeight * spanY) - dragOutline.getHeight()) / 2;
Sunny Goyal106bf642015-07-16 12:18:06 -07001049 }
1050 }
1051 r.set(left, top, left + dragOutline.getWidth(), top + dragOutline.getHeight());
Adam Cohend41fbf52012-02-16 23:53:59 -08001052 }
Winson Chung150fbab2010-09-29 17:14:26 -07001053
Jon Miranda6f6a06a2016-12-15 11:24:18 -08001054 Utilities.scaleRectAboutCenter(r, mChildScale);
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07001055 mDragOutlineAnims[mDragOutlineCurrent].setTag(dragOutline);
1056 mDragOutlineAnims[mDragOutlineCurrent].animateIn();
Sunny Goyale78e3d72015-09-24 11:23:31 -07001057
1058 if (dragObject.stateAnnouncer != null) {
Sunny Goyalc13403c2016-11-18 23:44:48 -08001059 dragObject.stateAnnouncer.announce(getItemMoveDescription(cellX, cellY));
Sunny Goyale78e3d72015-09-24 11:23:31 -07001060 }
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07001061 }
1062 }
1063
Sunny Goyalc13403c2016-11-18 23:44:48 -08001064 public String getItemMoveDescription(int cellX, int cellY) {
1065 if (mContainerType == HOTSEAT) {
1066 return getContext().getString(R.string.move_to_hotseat_position,
1067 Math.max(cellX, cellY) + 1);
1068 } else {
1069 return getContext().getString(R.string.move_to_empty_cell,
1070 cellY + 1, cellX + 1);
1071 }
1072 }
1073
Adam Cohene0310962011-04-18 16:15:31 -07001074 public void clearDragOutlines() {
1075 final int oldIndex = mDragOutlineCurrent;
1076 mDragOutlineAnims[oldIndex].animateOut();
Adam Cohend41fbf52012-02-16 23:53:59 -08001077 mDragCell[0] = mDragCell[1] = -1;
Adam Cohene0310962011-04-18 16:15:31 -07001078 }
1079
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001080 /**
Jeff Sharkey70864282009-04-07 21:08:40 -07001081 * Find a vacant area that will fit the given bounds nearest the requested
1082 * cell location. Uses Euclidean distance to score multiple vacant areas.
Winson Chungaafa03c2010-06-11 17:34:16 -07001083 *
Romain Guy51afc022009-05-04 18:03:43 -07001084 * @param pixelX The X location at which you want to search for a vacant area.
1085 * @param pixelY The Y location at which you want to search for a vacant area.
Adam Cohend41fbf52012-02-16 23:53:59 -08001086 * @param minSpanX The minimum horizontal span required
1087 * @param minSpanY The minimum vertical span required
1088 * @param spanX Horizontal span of the object.
1089 * @param spanY Vertical span of the object.
1090 * @param result Array in which to place the result, or null (in which case a new array will
1091 * be allocated)
1092 * @return The X, Y cell of a vacant area that can contain this object,
1093 * nearest the requested location.
1094 */
1095 int[] findNearestVacantArea(int pixelX, int pixelY, int minSpanX, int minSpanY, int spanX,
1096 int spanY, int[] result, int[] resultSpan) {
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001097 return findNearestArea(pixelX, pixelY, minSpanX, minSpanY, spanX, spanY, true,
Adam Cohend41fbf52012-02-16 23:53:59 -08001098 result, resultSpan);
1099 }
1100
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001101 private final Stack<Rect> mTempRectStack = new Stack<>();
Adam Cohend41fbf52012-02-16 23:53:59 -08001102 private void lazyInitTempRectStack() {
1103 if (mTempRectStack.isEmpty()) {
1104 for (int i = 0; i < mCountX * mCountY; i++) {
1105 mTempRectStack.push(new Rect());
1106 }
1107 }
1108 }
Adam Cohen482ed822012-03-02 14:15:13 -08001109
Adam Cohend41fbf52012-02-16 23:53:59 -08001110 private void recycleTempRects(Stack<Rect> used) {
1111 while (!used.isEmpty()) {
1112 mTempRectStack.push(used.pop());
1113 }
1114 }
1115
1116 /**
1117 * Find a vacant area that will fit the given bounds nearest the requested
1118 * cell location. Uses Euclidean distance to score multiple vacant areas.
1119 *
1120 * @param pixelX The X location at which you want to search for a vacant area.
1121 * @param pixelY The Y location at which you want to search for a vacant area.
1122 * @param minSpanX The minimum horizontal span required
1123 * @param minSpanY The minimum vertical span required
1124 * @param spanX Horizontal span of the object.
1125 * @param spanY Vertical span of the object.
1126 * @param ignoreOccupied If true, the result can be an occupied cell
1127 * @param result Array in which to place the result, or null (in which case a new array will
1128 * be allocated)
1129 * @return The X, Y cell of a vacant area that can contain this object,
1130 * nearest the requested location.
1131 */
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001132 private int[] findNearestArea(int pixelX, int pixelY, int minSpanX, int minSpanY, int spanX,
1133 int spanY, boolean ignoreOccupied, int[] result, int[] resultSpan) {
Adam Cohend41fbf52012-02-16 23:53:59 -08001134 lazyInitTempRectStack();
Michael Jurkac6ee42e2010-09-30 12:04:50 -07001135
Adam Cohene3e27a82011-04-15 12:07:39 -07001136 // For items with a spanX / spanY > 1, the passed in point (pixelX, pixelY) corresponds
1137 // to the center of the item, but we are searching based on the top-left cell, so
1138 // we translate the point over to correspond to the top-left.
Sunny Goyalaa8a8712016-11-20 15:26:01 +05301139 pixelX -= mCellWidth * (spanX - 1) / 2f;
1140 pixelY -= mCellHeight * (spanY - 1) / 2f;
Adam Cohene3e27a82011-04-15 12:07:39 -07001141
Jeff Sharkey70864282009-04-07 21:08:40 -07001142 // Keep track of best-scoring drop area
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001143 final int[] bestXY = result != null ? result : new int[2];
Jeff Sharkey70864282009-04-07 21:08:40 -07001144 double bestDistance = Double.MAX_VALUE;
Adam Cohend41fbf52012-02-16 23:53:59 -08001145 final Rect bestRect = new Rect(-1, -1, -1, -1);
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001146 final Stack<Rect> validRegions = new Stack<>();
Winson Chungaafa03c2010-06-11 17:34:16 -07001147
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001148 final int countX = mCountX;
1149 final int countY = mCountY;
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001150
Adam Cohend41fbf52012-02-16 23:53:59 -08001151 if (minSpanX <= 0 || minSpanY <= 0 || spanX <= 0 || spanY <= 0 ||
1152 spanX < minSpanX || spanY < minSpanY) {
1153 return bestXY;
1154 }
1155
1156 for (int y = 0; y < countY - (minSpanY - 1); y++) {
Michael Jurkac28de512010-08-13 11:27:44 -07001157 inner:
Adam Cohend41fbf52012-02-16 23:53:59 -08001158 for (int x = 0; x < countX - (minSpanX - 1); x++) {
1159 int ySize = -1;
1160 int xSize = -1;
Adam Cohendf035382011-04-11 17:22:04 -07001161 if (ignoreOccupied) {
Adam Cohend41fbf52012-02-16 23:53:59 -08001162 // First, let's see if this thing fits anywhere
1163 for (int i = 0; i < minSpanX; i++) {
1164 for (int j = 0; j < minSpanY; j++) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001165 if (mOccupied.cells[x + i][y + j]) {
Adam Cohendf035382011-04-11 17:22:04 -07001166 continue inner;
1167 }
Michael Jurkac28de512010-08-13 11:27:44 -07001168 }
1169 }
Adam Cohend41fbf52012-02-16 23:53:59 -08001170 xSize = minSpanX;
1171 ySize = minSpanY;
1172
1173 // We know that the item will fit at _some_ acceptable size, now let's see
1174 // how big we can make it. We'll alternate between incrementing x and y spans
1175 // until we hit a limit.
1176 boolean incX = true;
1177 boolean hitMaxX = xSize >= spanX;
1178 boolean hitMaxY = ySize >= spanY;
1179 while (!(hitMaxX && hitMaxY)) {
1180 if (incX && !hitMaxX) {
1181 for (int j = 0; j < ySize; j++) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001182 if (x + xSize > countX -1 || mOccupied.cells[x + xSize][y + j]) {
Adam Cohend41fbf52012-02-16 23:53:59 -08001183 // We can't move out horizontally
1184 hitMaxX = true;
1185 }
1186 }
1187 if (!hitMaxX) {
1188 xSize++;
1189 }
1190 } else if (!hitMaxY) {
1191 for (int i = 0; i < xSize; i++) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001192 if (y + ySize > countY - 1 || mOccupied.cells[x + i][y + ySize]) {
Adam Cohend41fbf52012-02-16 23:53:59 -08001193 // We can't move out vertically
1194 hitMaxY = true;
1195 }
1196 }
1197 if (!hitMaxY) {
1198 ySize++;
1199 }
1200 }
1201 hitMaxX |= xSize >= spanX;
1202 hitMaxY |= ySize >= spanY;
1203 incX = !incX;
1204 }
1205 incX = true;
1206 hitMaxX = xSize >= spanX;
1207 hitMaxY = ySize >= spanY;
Michael Jurkac28de512010-08-13 11:27:44 -07001208 }
Sunny Goyal2805e632015-05-20 15:35:32 -07001209 final int[] cellXY = mTmpPoint;
Adam Cohene3e27a82011-04-15 12:07:39 -07001210 cellToCenterPoint(x, y, cellXY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001211
Adam Cohend41fbf52012-02-16 23:53:59 -08001212 // We verify that the current rect is not a sub-rect of any of our previous
1213 // candidates. In this case, the current rect is disqualified in favour of the
1214 // containing rect.
1215 Rect currentRect = mTempRectStack.pop();
1216 currentRect.set(x, y, x + xSize, y + ySize);
1217 boolean contained = false;
1218 for (Rect r : validRegions) {
1219 if (r.contains(currentRect)) {
1220 contained = true;
1221 break;
1222 }
1223 }
1224 validRegions.push(currentRect);
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001225 double distance = Math.hypot(cellXY[0] - pixelX, cellXY[1] - pixelY);
Adam Cohen482ed822012-03-02 14:15:13 -08001226
Adam Cohend41fbf52012-02-16 23:53:59 -08001227 if ((distance <= bestDistance && !contained) ||
1228 currentRect.contains(bestRect)) {
Michael Jurkac28de512010-08-13 11:27:44 -07001229 bestDistance = distance;
1230 bestXY[0] = x;
1231 bestXY[1] = y;
Adam Cohend41fbf52012-02-16 23:53:59 -08001232 if (resultSpan != null) {
1233 resultSpan[0] = xSize;
1234 resultSpan[1] = ySize;
1235 }
1236 bestRect.set(currentRect);
Michael Jurkac28de512010-08-13 11:27:44 -07001237 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001238 }
1239 }
1240
Adam Cohenc0dcf592011-06-01 15:30:43 -07001241 // Return -1, -1 if no suitable location found
1242 if (bestDistance == Double.MAX_VALUE) {
1243 bestXY[0] = -1;
1244 bestXY[1] = -1;
Jeff Sharkey70864282009-04-07 21:08:40 -07001245 }
Adam Cohend41fbf52012-02-16 23:53:59 -08001246 recycleTempRects(validRegions);
Adam Cohenc0dcf592011-06-01 15:30:43 -07001247 return bestXY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001248 }
Winson Chungaafa03c2010-06-11 17:34:16 -07001249
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001250 /**
Adam Cohen482ed822012-03-02 14:15:13 -08001251 * Find a vacant area that will fit the given bounds nearest the requested
1252 * cell location, and will also weigh in a suggested direction vector of the
1253 * desired location. This method computers distance based on unit grid distances,
1254 * not pixel distances.
1255 *
Adam Cohen47a876d2012-03-19 13:21:41 -07001256 * @param cellX The X cell nearest to which you want to search for a vacant area.
1257 * @param cellY The Y cell nearest which you want to search for a vacant area.
Adam Cohen482ed822012-03-02 14:15:13 -08001258 * @param spanX Horizontal span of the object.
1259 * @param spanY Vertical span of the object.
Adam Cohen47a876d2012-03-19 13:21:41 -07001260 * @param direction The favored direction in which the views should move from x, y
Sunny Goyal9eba1fd2015-10-16 08:58:57 -07001261 * @param occupied The array which represents which cells in the CellLayout are occupied
Adam Cohen47a876d2012-03-19 13:21:41 -07001262 * @param blockOccupied The array which represents which cells in the specified block (cellX,
Winson Chung5f8afe62013-08-12 16:19:28 -07001263 * cellY, spanX, spanY) are occupied. This is used when try to move a group of views.
Adam Cohen482ed822012-03-02 14:15:13 -08001264 * @param result Array in which to place the result, or null (in which case a new array will
1265 * be allocated)
1266 * @return The X, Y cell of a vacant area that can contain this object,
1267 * nearest the requested location.
1268 */
1269 private int[] findNearestArea(int cellX, int cellY, int spanX, int spanY, int[] direction,
Adam Cohen47a876d2012-03-19 13:21:41 -07001270 boolean[][] occupied, boolean blockOccupied[][], int[] result) {
Adam Cohen482ed822012-03-02 14:15:13 -08001271 // Keep track of best-scoring drop area
1272 final int[] bestXY = result != null ? result : new int[2];
1273 float bestDistance = Float.MAX_VALUE;
1274 int bestDirectionScore = Integer.MIN_VALUE;
1275
1276 final int countX = mCountX;
1277 final int countY = mCountY;
1278
1279 for (int y = 0; y < countY - (spanY - 1); y++) {
1280 inner:
1281 for (int x = 0; x < countX - (spanX - 1); x++) {
1282 // First, let's see if this thing fits anywhere
1283 for (int i = 0; i < spanX; i++) {
1284 for (int j = 0; j < spanY; j++) {
Adam Cohen47a876d2012-03-19 13:21:41 -07001285 if (occupied[x + i][y + j] && (blockOccupied == null || blockOccupied[i][j])) {
Adam Cohen482ed822012-03-02 14:15:13 -08001286 continue inner;
1287 }
1288 }
1289 }
1290
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001291 float distance = (float) Math.hypot(x - cellX, y - cellY);
Adam Cohen482ed822012-03-02 14:15:13 -08001292 int[] curDirection = mTmpPoint;
Adam Cohen47a876d2012-03-19 13:21:41 -07001293 computeDirectionVector(x - cellX, y - cellY, curDirection);
1294 // The direction score is just the dot product of the two candidate direction
1295 // and that passed in.
Adam Cohen482ed822012-03-02 14:15:13 -08001296 int curDirectionScore = direction[0] * curDirection[0] +
1297 direction[1] * curDirection[1];
Sunny Goyal8f90dcf2016-08-18 15:01:11 -07001298 if (Float.compare(distance, bestDistance) < 0 ||
1299 (Float.compare(distance, bestDistance) == 0
1300 && curDirectionScore > bestDirectionScore)) {
Adam Cohen482ed822012-03-02 14:15:13 -08001301 bestDistance = distance;
1302 bestDirectionScore = curDirectionScore;
1303 bestXY[0] = x;
1304 bestXY[1] = y;
1305 }
1306 }
1307 }
1308
1309 // Return -1, -1 if no suitable location found
1310 if (bestDistance == Float.MAX_VALUE) {
1311 bestXY[0] = -1;
1312 bestXY[1] = -1;
1313 }
1314 return bestXY;
1315 }
1316
1317 private boolean addViewToTempLocation(View v, Rect rectOccupiedByPotentialDrop,
Adam Cohen8baab352012-03-20 17:39:21 -07001318 int[] direction, ItemConfiguration currentState) {
1319 CellAndSpan c = currentState.map.get(v);
Adam Cohen482ed822012-03-02 14:15:13 -08001320 boolean success = false;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001321 mTmpOccupied.markCells(c, false);
1322 mTmpOccupied.markCells(rectOccupiedByPotentialDrop, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001323
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001324 findNearestArea(c.cellX, c.cellY, c.spanX, c.spanY, direction,
1325 mTmpOccupied.cells, null, mTempLocation);
Adam Cohen482ed822012-03-02 14:15:13 -08001326
1327 if (mTempLocation[0] >= 0 && mTempLocation[1] >= 0) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001328 c.cellX = mTempLocation[0];
1329 c.cellY = mTempLocation[1];
Adam Cohen482ed822012-03-02 14:15:13 -08001330 success = true;
Adam Cohen482ed822012-03-02 14:15:13 -08001331 }
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001332 mTmpOccupied.markCells(c, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001333 return success;
1334 }
1335
Adam Cohenf3900c22012-11-16 18:28:11 -08001336 /**
1337 * This helper class defines a cluster of views. It helps with defining complex edges
1338 * of the cluster and determining how those edges interact with other views. The edges
1339 * essentially define a fine-grained boundary around the cluster of views -- like a more
1340 * precise version of a bounding box.
1341 */
1342 private class ViewCluster {
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001343 final static int LEFT = 1 << 0;
1344 final static int TOP = 1 << 1;
1345 final static int RIGHT = 1 << 2;
1346 final static int BOTTOM = 1 << 3;
Adam Cohen47a876d2012-03-19 13:21:41 -07001347
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001348 final ArrayList<View> views;
1349 final ItemConfiguration config;
1350 final Rect boundingRect = new Rect();
Adam Cohen47a876d2012-03-19 13:21:41 -07001351
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001352 final int[] leftEdge = new int[mCountY];
1353 final int[] rightEdge = new int[mCountY];
1354 final int[] topEdge = new int[mCountX];
1355 final int[] bottomEdge = new int[mCountX];
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001356 int dirtyEdges;
1357 boolean boundingRectDirty;
Adam Cohenf3900c22012-11-16 18:28:11 -08001358
1359 @SuppressWarnings("unchecked")
1360 public ViewCluster(ArrayList<View> views, ItemConfiguration config) {
1361 this.views = (ArrayList<View>) views.clone();
1362 this.config = config;
1363 resetEdges();
Adam Cohen47a876d2012-03-19 13:21:41 -07001364 }
1365
Adam Cohenf3900c22012-11-16 18:28:11 -08001366 void resetEdges() {
1367 for (int i = 0; i < mCountX; i++) {
1368 topEdge[i] = -1;
1369 bottomEdge[i] = -1;
1370 }
1371 for (int i = 0; i < mCountY; i++) {
1372 leftEdge[i] = -1;
1373 rightEdge[i] = -1;
1374 }
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001375 dirtyEdges = LEFT | TOP | RIGHT | BOTTOM;
Adam Cohenf3900c22012-11-16 18:28:11 -08001376 boundingRectDirty = true;
1377 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001378
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001379 void computeEdge(int which) {
Adam Cohenf3900c22012-11-16 18:28:11 -08001380 int count = views.size();
1381 for (int i = 0; i < count; i++) {
1382 CellAndSpan cs = config.map.get(views.get(i));
1383 switch (which) {
1384 case LEFT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001385 int left = cs.cellX;
1386 for (int j = cs.cellY; j < cs.cellY + cs.spanY; j++) {
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001387 if (left < leftEdge[j] || leftEdge[j] < 0) {
1388 leftEdge[j] = left;
Adam Cohena56dc102012-07-13 13:41:42 -07001389 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001390 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001391 break;
1392 case RIGHT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001393 int right = cs.cellX + cs.spanX;
1394 for (int j = cs.cellY; j < cs.cellY + cs.spanY; j++) {
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001395 if (right > rightEdge[j]) {
1396 rightEdge[j] = right;
Adam Cohenf3900c22012-11-16 18:28:11 -08001397 }
1398 }
1399 break;
1400 case TOP:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001401 int top = cs.cellY;
1402 for (int j = cs.cellX; j < cs.cellX + cs.spanX; j++) {
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001403 if (top < topEdge[j] || topEdge[j] < 0) {
1404 topEdge[j] = top;
Adam Cohenf3900c22012-11-16 18:28:11 -08001405 }
1406 }
1407 break;
1408 case BOTTOM:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001409 int bottom = cs.cellY + cs.spanY;
1410 for (int j = cs.cellX; j < cs.cellX + cs.spanX; j++) {
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001411 if (bottom > bottomEdge[j]) {
1412 bottomEdge[j] = bottom;
Adam Cohenf3900c22012-11-16 18:28:11 -08001413 }
1414 }
1415 break;
Adam Cohen47a876d2012-03-19 13:21:41 -07001416 }
1417 }
1418 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001419
1420 boolean isViewTouchingEdge(View v, int whichEdge) {
1421 CellAndSpan cs = config.map.get(v);
1422
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001423 if ((dirtyEdges & whichEdge) == whichEdge) {
1424 computeEdge(whichEdge);
1425 dirtyEdges &= ~whichEdge;
1426 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001427
1428 switch (whichEdge) {
1429 case LEFT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001430 for (int i = cs.cellY; i < cs.cellY + cs.spanY; i++) {
1431 if (leftEdge[i] == cs.cellX + cs.spanX) {
Adam Cohenf3900c22012-11-16 18:28:11 -08001432 return true;
1433 }
1434 }
1435 break;
1436 case RIGHT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001437 for (int i = cs.cellY; i < cs.cellY + cs.spanY; i++) {
1438 if (rightEdge[i] == cs.cellX) {
Adam Cohenf3900c22012-11-16 18:28:11 -08001439 return true;
1440 }
1441 }
1442 break;
1443 case TOP:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001444 for (int i = cs.cellX; i < cs.cellX + cs.spanX; i++) {
1445 if (topEdge[i] == cs.cellY + cs.spanY) {
Adam Cohenf3900c22012-11-16 18:28:11 -08001446 return true;
1447 }
1448 }
1449 break;
1450 case BOTTOM:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001451 for (int i = cs.cellX; i < cs.cellX + cs.spanX; i++) {
1452 if (bottomEdge[i] == cs.cellY) {
Adam Cohenf3900c22012-11-16 18:28:11 -08001453 return true;
1454 }
1455 }
1456 break;
1457 }
1458 return false;
1459 }
1460
1461 void shift(int whichEdge, int delta) {
1462 for (View v: views) {
1463 CellAndSpan c = config.map.get(v);
1464 switch (whichEdge) {
1465 case LEFT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001466 c.cellX -= delta;
Adam Cohenf3900c22012-11-16 18:28:11 -08001467 break;
1468 case RIGHT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001469 c.cellX += delta;
Adam Cohenf3900c22012-11-16 18:28:11 -08001470 break;
1471 case TOP:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001472 c.cellY -= delta;
Adam Cohenf3900c22012-11-16 18:28:11 -08001473 break;
1474 case BOTTOM:
1475 default:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001476 c.cellY += delta;
Adam Cohenf3900c22012-11-16 18:28:11 -08001477 break;
1478 }
1479 }
1480 resetEdges();
1481 }
1482
1483 public void addView(View v) {
1484 views.add(v);
1485 resetEdges();
1486 }
1487
1488 public Rect getBoundingRect() {
1489 if (boundingRectDirty) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001490 config.getBoundingRectForViews(views, boundingRect);
Adam Cohenf3900c22012-11-16 18:28:11 -08001491 }
1492 return boundingRect;
1493 }
1494
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001495 final PositionComparator comparator = new PositionComparator();
Adam Cohenf3900c22012-11-16 18:28:11 -08001496 class PositionComparator implements Comparator<View> {
1497 int whichEdge = 0;
1498 public int compare(View left, View right) {
1499 CellAndSpan l = config.map.get(left);
1500 CellAndSpan r = config.map.get(right);
1501 switch (whichEdge) {
1502 case LEFT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001503 return (r.cellX + r.spanX) - (l.cellX + l.spanX);
Adam Cohenf3900c22012-11-16 18:28:11 -08001504 case RIGHT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001505 return l.cellX - r.cellX;
Adam Cohenf3900c22012-11-16 18:28:11 -08001506 case TOP:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001507 return (r.cellY + r.spanY) - (l.cellY + l.spanY);
Adam Cohenf3900c22012-11-16 18:28:11 -08001508 case BOTTOM:
1509 default:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001510 return l.cellY - r.cellY;
Adam Cohenf3900c22012-11-16 18:28:11 -08001511 }
1512 }
1513 }
1514
1515 public void sortConfigurationForEdgePush(int edge) {
1516 comparator.whichEdge = edge;
1517 Collections.sort(config.sortedViews, comparator);
1518 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001519 }
1520
Adam Cohenf3900c22012-11-16 18:28:11 -08001521 private boolean pushViewsToTempLocation(ArrayList<View> views, Rect rectOccupiedByPotentialDrop,
1522 int[] direction, View dragView, ItemConfiguration currentState) {
Adam Cohene0489502012-08-27 15:18:53 -07001523
Adam Cohenf3900c22012-11-16 18:28:11 -08001524 ViewCluster cluster = new ViewCluster(views, currentState);
1525 Rect clusterRect = cluster.getBoundingRect();
1526 int whichEdge;
1527 int pushDistance;
1528 boolean fail = false;
1529
1530 // Determine the edge of the cluster that will be leading the push and how far
1531 // the cluster must be shifted.
1532 if (direction[0] < 0) {
1533 whichEdge = ViewCluster.LEFT;
1534 pushDistance = clusterRect.right - rectOccupiedByPotentialDrop.left;
Adam Cohene0489502012-08-27 15:18:53 -07001535 } else if (direction[0] > 0) {
Adam Cohenf3900c22012-11-16 18:28:11 -08001536 whichEdge = ViewCluster.RIGHT;
1537 pushDistance = rectOccupiedByPotentialDrop.right - clusterRect.left;
1538 } else if (direction[1] < 0) {
1539 whichEdge = ViewCluster.TOP;
1540 pushDistance = clusterRect.bottom - rectOccupiedByPotentialDrop.top;
1541 } else {
1542 whichEdge = ViewCluster.BOTTOM;
1543 pushDistance = rectOccupiedByPotentialDrop.bottom - clusterRect.top;
Adam Cohene0489502012-08-27 15:18:53 -07001544 }
1545
Adam Cohenf3900c22012-11-16 18:28:11 -08001546 // Break early for invalid push distance.
1547 if (pushDistance <= 0) {
1548 return false;
Adam Cohene0489502012-08-27 15:18:53 -07001549 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001550
1551 // Mark the occupied state as false for the group of views we want to move.
1552 for (View v: views) {
1553 CellAndSpan c = currentState.map.get(v);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001554 mTmpOccupied.markCells(c, false);
Adam Cohenf3900c22012-11-16 18:28:11 -08001555 }
1556
1557 // We save the current configuration -- if we fail to find a solution we will revert
1558 // to the initial state. The process of finding a solution modifies the configuration
1559 // in place, hence the need for revert in the failure case.
1560 currentState.save();
1561
1562 // The pushing algorithm is simplified by considering the views in the order in which
1563 // they would be pushed by the cluster. For example, if the cluster is leading with its
1564 // left edge, we consider sort the views by their right edge, from right to left.
1565 cluster.sortConfigurationForEdgePush(whichEdge);
1566
1567 while (pushDistance > 0 && !fail) {
1568 for (View v: currentState.sortedViews) {
1569 // For each view that isn't in the cluster, we see if the leading edge of the
1570 // cluster is contacting the edge of that view. If so, we add that view to the
1571 // cluster.
1572 if (!cluster.views.contains(v) && v != dragView) {
1573 if (cluster.isViewTouchingEdge(v, whichEdge)) {
1574 LayoutParams lp = (LayoutParams) v.getLayoutParams();
1575 if (!lp.canReorder) {
1576 // The push solution includes the all apps button, this is not viable.
1577 fail = true;
1578 break;
1579 }
1580 cluster.addView(v);
1581 CellAndSpan c = currentState.map.get(v);
1582
1583 // Adding view to cluster, mark it as not occupied.
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001584 mTmpOccupied.markCells(c, false);
Adam Cohenf3900c22012-11-16 18:28:11 -08001585 }
1586 }
1587 }
1588 pushDistance--;
1589
1590 // The cluster has been completed, now we move the whole thing over in the appropriate
1591 // direction.
1592 cluster.shift(whichEdge, 1);
1593 }
1594
1595 boolean foundSolution = false;
1596 clusterRect = cluster.getBoundingRect();
1597
1598 // Due to the nature of the algorithm, the only check required to verify a valid solution
1599 // is to ensure that completed shifted cluster lies completely within the cell layout.
1600 if (!fail && clusterRect.left >= 0 && clusterRect.right <= mCountX && clusterRect.top >= 0 &&
1601 clusterRect.bottom <= mCountY) {
1602 foundSolution = true;
1603 } else {
1604 currentState.restore();
1605 }
1606
1607 // In either case, we set the occupied array as marked for the location of the views
1608 for (View v: cluster.views) {
1609 CellAndSpan c = currentState.map.get(v);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001610 mTmpOccupied.markCells(c, true);
Adam Cohenf3900c22012-11-16 18:28:11 -08001611 }
1612
1613 return foundSolution;
Adam Cohene0489502012-08-27 15:18:53 -07001614 }
1615
Adam Cohen482ed822012-03-02 14:15:13 -08001616 private boolean addViewsToTempLocation(ArrayList<View> views, Rect rectOccupiedByPotentialDrop,
Adam Cohenf3900c22012-11-16 18:28:11 -08001617 int[] direction, View dragView, ItemConfiguration currentState) {
Adam Cohen482ed822012-03-02 14:15:13 -08001618 if (views.size() == 0) return true;
Adam Cohen482ed822012-03-02 14:15:13 -08001619
Adam Cohen8baab352012-03-20 17:39:21 -07001620 boolean success = false;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001621 Rect boundingRect = new Rect();
Adam Cohen8baab352012-03-20 17:39:21 -07001622 // We construct a rect which represents the entire group of views passed in
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001623 currentState.getBoundingRectForViews(views, boundingRect);
Adam Cohen8baab352012-03-20 17:39:21 -07001624
Adam Cohen8baab352012-03-20 17:39:21 -07001625 // Mark the occupied state as false for the group of views we want to move.
Adam Cohenf3900c22012-11-16 18:28:11 -08001626 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001627 CellAndSpan c = currentState.map.get(v);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001628 mTmpOccupied.markCells(c, false);
Adam Cohen8baab352012-03-20 17:39:21 -07001629 }
1630
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001631 GridOccupancy blockOccupied = new GridOccupancy(boundingRect.width(), boundingRect.height());
Adam Cohen47a876d2012-03-19 13:21:41 -07001632 int top = boundingRect.top;
1633 int left = boundingRect.left;
Adam Cohen8baab352012-03-20 17:39:21 -07001634 // We mark more precisely which parts of the bounding rect are truly occupied, allowing
Adam Cohena56dc102012-07-13 13:41:42 -07001635 // for interlocking.
Adam Cohenf3900c22012-11-16 18:28:11 -08001636 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001637 CellAndSpan c = currentState.map.get(v);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001638 blockOccupied.markCells(c.cellX - left, c.cellY - top, c.spanX, c.spanY, true);
Adam Cohen47a876d2012-03-19 13:21:41 -07001639 }
1640
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001641 mTmpOccupied.markCells(rectOccupiedByPotentialDrop, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001642
Adam Cohenf3900c22012-11-16 18:28:11 -08001643 findNearestArea(boundingRect.left, boundingRect.top, boundingRect.width(),
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001644 boundingRect.height(), direction,
1645 mTmpOccupied.cells, blockOccupied.cells, mTempLocation);
Adam Cohen482ed822012-03-02 14:15:13 -08001646
Adam Cohen8baab352012-03-20 17:39:21 -07001647 // If we successfuly found a location by pushing the block of views, we commit it
Adam Cohen482ed822012-03-02 14:15:13 -08001648 if (mTempLocation[0] >= 0 && mTempLocation[1] >= 0) {
Adam Cohen8baab352012-03-20 17:39:21 -07001649 int deltaX = mTempLocation[0] - boundingRect.left;
1650 int deltaY = mTempLocation[1] - boundingRect.top;
Adam Cohenf3900c22012-11-16 18:28:11 -08001651 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001652 CellAndSpan c = currentState.map.get(v);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001653 c.cellX += deltaX;
1654 c.cellY += deltaY;
Adam Cohen482ed822012-03-02 14:15:13 -08001655 }
1656 success = true;
1657 }
Adam Cohen8baab352012-03-20 17:39:21 -07001658
1659 // In either case, we set the occupied array as marked for the location of the views
Adam Cohenf3900c22012-11-16 18:28:11 -08001660 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001661 CellAndSpan c = currentState.map.get(v);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001662 mTmpOccupied.markCells(c, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001663 }
1664 return success;
1665 }
1666
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001667 // This method tries to find a reordering solution which satisfies the push mechanic by trying
1668 // to push items in each of the cardinal directions, in an order based on the direction vector
1669 // passed.
1670 private boolean attemptPushInDirection(ArrayList<View> intersectingViews, Rect occupied,
1671 int[] direction, View ignoreView, ItemConfiguration solution) {
1672 if ((Math.abs(direction[0]) + Math.abs(direction[1])) > 1) {
Winson Chung5f8afe62013-08-12 16:19:28 -07001673 // If the direction vector has two non-zero components, we try pushing
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001674 // separately in each of the components.
1675 int temp = direction[1];
1676 direction[1] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08001677
1678 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001679 ignoreView, solution)) {
1680 return true;
1681 }
1682 direction[1] = temp;
1683 temp = direction[0];
1684 direction[0] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08001685
1686 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001687 ignoreView, solution)) {
1688 return true;
1689 }
1690 // Revert the direction
1691 direction[0] = temp;
1692
1693 // Now we try pushing in each component of the opposite direction
1694 direction[0] *= -1;
1695 direction[1] *= -1;
1696 temp = direction[1];
1697 direction[1] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08001698 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001699 ignoreView, solution)) {
1700 return true;
1701 }
1702
1703 direction[1] = temp;
1704 temp = direction[0];
1705 direction[0] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08001706 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001707 ignoreView, solution)) {
1708 return true;
1709 }
1710 // revert the direction
1711 direction[0] = temp;
1712 direction[0] *= -1;
1713 direction[1] *= -1;
Winson Chung5f8afe62013-08-12 16:19:28 -07001714
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001715 } else {
1716 // If the direction vector has a single non-zero component, we push first in the
1717 // direction of the vector
Adam Cohenf3900c22012-11-16 18:28:11 -08001718 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001719 ignoreView, solution)) {
1720 return true;
1721 }
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001722 // Then we try the opposite direction
1723 direction[0] *= -1;
1724 direction[1] *= -1;
Adam Cohenf3900c22012-11-16 18:28:11 -08001725 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001726 ignoreView, solution)) {
1727 return true;
1728 }
1729 // Switch the direction back
1730 direction[0] *= -1;
1731 direction[1] *= -1;
Winson Chung5f8afe62013-08-12 16:19:28 -07001732
1733 // If we have failed to find a push solution with the above, then we try
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001734 // to find a solution by pushing along the perpendicular axis.
1735
1736 // Swap the components
1737 int temp = direction[1];
1738 direction[1] = direction[0];
1739 direction[0] = temp;
Adam Cohenf3900c22012-11-16 18:28:11 -08001740 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001741 ignoreView, solution)) {
1742 return true;
1743 }
1744
1745 // Then we try the opposite direction
1746 direction[0] *= -1;
1747 direction[1] *= -1;
Adam Cohenf3900c22012-11-16 18:28:11 -08001748 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001749 ignoreView, solution)) {
1750 return true;
1751 }
1752 // Switch the direction back
1753 direction[0] *= -1;
1754 direction[1] *= -1;
1755
1756 // Swap the components back
1757 temp = direction[1];
1758 direction[1] = direction[0];
1759 direction[0] = temp;
1760 }
1761 return false;
1762 }
1763
Adam Cohen482ed822012-03-02 14:15:13 -08001764 private boolean rearrangementExists(int cellX, int cellY, int spanX, int spanY, int[] direction,
Adam Cohen8baab352012-03-20 17:39:21 -07001765 View ignoreView, ItemConfiguration solution) {
Winson Chunge3e03bc2012-05-01 15:10:11 -07001766 // Return early if get invalid cell positions
1767 if (cellX < 0 || cellY < 0) return false;
Adam Cohen482ed822012-03-02 14:15:13 -08001768
Adam Cohen8baab352012-03-20 17:39:21 -07001769 mIntersectingViews.clear();
Adam Cohen482ed822012-03-02 14:15:13 -08001770 mOccupiedRect.set(cellX, cellY, cellX + spanX, cellY + spanY);
Adam Cohen482ed822012-03-02 14:15:13 -08001771
Adam Cohen8baab352012-03-20 17:39:21 -07001772 // Mark the desired location of the view currently being dragged.
Adam Cohen482ed822012-03-02 14:15:13 -08001773 if (ignoreView != null) {
Adam Cohen8baab352012-03-20 17:39:21 -07001774 CellAndSpan c = solution.map.get(ignoreView);
Adam Cohen19f37922012-03-21 11:59:11 -07001775 if (c != null) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001776 c.cellX = cellX;
1777 c.cellY = cellY;
Adam Cohen19f37922012-03-21 11:59:11 -07001778 }
Adam Cohen482ed822012-03-02 14:15:13 -08001779 }
Adam Cohen482ed822012-03-02 14:15:13 -08001780 Rect r0 = new Rect(cellX, cellY, cellX + spanX, cellY + spanY);
1781 Rect r1 = new Rect();
Adam Cohen8baab352012-03-20 17:39:21 -07001782 for (View child: solution.map.keySet()) {
Adam Cohen482ed822012-03-02 14:15:13 -08001783 if (child == ignoreView) continue;
Adam Cohen8baab352012-03-20 17:39:21 -07001784 CellAndSpan c = solution.map.get(child);
Adam Cohen482ed822012-03-02 14:15:13 -08001785 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001786 r1.set(c.cellX, c.cellY, c.cellX + c.spanX, c.cellY + c.spanY);
Adam Cohen482ed822012-03-02 14:15:13 -08001787 if (Rect.intersects(r0, r1)) {
1788 if (!lp.canReorder) {
1789 return false;
1790 }
1791 mIntersectingViews.add(child);
1792 }
1793 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001794
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001795 solution.intersectingViews = new ArrayList<>(mIntersectingViews);
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001796
Winson Chung5f8afe62013-08-12 16:19:28 -07001797 // First we try to find a solution which respects the push mechanic. That is,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001798 // we try to find a solution such that no displaced item travels through another item
1799 // without also displacing that item.
1800 if (attemptPushInDirection(mIntersectingViews, mOccupiedRect, direction, ignoreView,
Adam Cohen19f37922012-03-21 11:59:11 -07001801 solution)) {
Adam Cohen47a876d2012-03-19 13:21:41 -07001802 return true;
1803 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001804
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001805 // Next we try moving the views as a block, but without requiring the push mechanic.
Adam Cohenf3900c22012-11-16 18:28:11 -08001806 if (addViewsToTempLocation(mIntersectingViews, mOccupiedRect, direction, ignoreView,
Adam Cohen19f37922012-03-21 11:59:11 -07001807 solution)) {
Adam Cohen482ed822012-03-02 14:15:13 -08001808 return true;
1809 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001810
Adam Cohen482ed822012-03-02 14:15:13 -08001811 // Ok, they couldn't move as a block, let's move them individually
1812 for (View v : mIntersectingViews) {
Adam Cohen8baab352012-03-20 17:39:21 -07001813 if (!addViewToTempLocation(v, mOccupiedRect, direction, solution)) {
Adam Cohen482ed822012-03-02 14:15:13 -08001814 return false;
1815 }
1816 }
1817 return true;
1818 }
1819
1820 /*
1821 * Returns a pair (x, y), where x,y are in {-1, 0, 1} corresponding to vector between
1822 * the provided point and the provided cell
1823 */
Adam Cohen47a876d2012-03-19 13:21:41 -07001824 private void computeDirectionVector(float deltaX, float deltaY, int[] result) {
Jon Mirandae96798e2016-12-07 12:10:44 -08001825 double angle = Math.atan(deltaY / deltaX);
Adam Cohen482ed822012-03-02 14:15:13 -08001826
1827 result[0] = 0;
1828 result[1] = 0;
1829 if (Math.abs(Math.cos(angle)) > 0.5f) {
1830 result[0] = (int) Math.signum(deltaX);
1831 }
1832 if (Math.abs(Math.sin(angle)) > 0.5f) {
1833 result[1] = (int) Math.signum(deltaY);
1834 }
1835 }
1836
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001837 private ItemConfiguration findReorderSolution(int pixelX, int pixelY, int minSpanX, int minSpanY,
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001838 int spanX, int spanY, int[] direction, View dragView, boolean decX,
1839 ItemConfiguration solution) {
Adam Cohen8baab352012-03-20 17:39:21 -07001840 // Copy the current state into the solution. This solution will be manipulated as necessary.
1841 copyCurrentStateToSolution(solution, false);
1842 // Copy the current occupied array into the temporary occupied array. This array will be
1843 // manipulated as necessary to find a solution.
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001844 mOccupied.copyTo(mTmpOccupied);
Adam Cohen482ed822012-03-02 14:15:13 -08001845
1846 // We find the nearest cell into which we would place the dragged item, assuming there's
1847 // nothing in its way.
1848 int result[] = new int[2];
1849 result = findNearestArea(pixelX, pixelY, spanX, spanY, result);
1850
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001851 boolean success;
Adam Cohen482ed822012-03-02 14:15:13 -08001852 // First we try the exact nearest position of the item being dragged,
1853 // we will then want to try to move this around to other neighbouring positions
Adam Cohen8baab352012-03-20 17:39:21 -07001854 success = rearrangementExists(result[0], result[1], spanX, spanY, direction, dragView,
1855 solution);
Adam Cohen482ed822012-03-02 14:15:13 -08001856
1857 if (!success) {
1858 // We try shrinking the widget down to size in an alternating pattern, shrink 1 in
1859 // x, then 1 in y etc.
1860 if (spanX > minSpanX && (minSpanY == spanY || decX)) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001861 return findReorderSolution(pixelX, pixelY, minSpanX, minSpanY, spanX - 1, spanY,
1862 direction, dragView, false, solution);
Adam Cohen482ed822012-03-02 14:15:13 -08001863 } else if (spanY > minSpanY) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001864 return findReorderSolution(pixelX, pixelY, minSpanX, minSpanY, spanX, spanY - 1,
1865 direction, dragView, true, solution);
Adam Cohen482ed822012-03-02 14:15:13 -08001866 }
1867 solution.isSolution = false;
1868 } else {
1869 solution.isSolution = true;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001870 solution.cellX = result[0];
1871 solution.cellY = result[1];
1872 solution.spanX = spanX;
1873 solution.spanY = spanY;
Adam Cohen482ed822012-03-02 14:15:13 -08001874 }
1875 return solution;
1876 }
1877
1878 private void copyCurrentStateToSolution(ItemConfiguration solution, boolean temp) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07001879 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08001880 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07001881 View child = mShortcutsAndWidgets.getChildAt(i);
Adam Cohen482ed822012-03-02 14:15:13 -08001882 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Adam Cohen8baab352012-03-20 17:39:21 -07001883 CellAndSpan c;
Adam Cohen482ed822012-03-02 14:15:13 -08001884 if (temp) {
Adam Cohen8baab352012-03-20 17:39:21 -07001885 c = new CellAndSpan(lp.tmpCellX, lp.tmpCellY, lp.cellHSpan, lp.cellVSpan);
Adam Cohen482ed822012-03-02 14:15:13 -08001886 } else {
Adam Cohen8baab352012-03-20 17:39:21 -07001887 c = new CellAndSpan(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan);
Adam Cohen482ed822012-03-02 14:15:13 -08001888 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001889 solution.add(child, c);
Adam Cohen482ed822012-03-02 14:15:13 -08001890 }
1891 }
1892
1893 private void copySolutionToTempState(ItemConfiguration solution, View dragView) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001894 mTmpOccupied.clear();
Adam Cohen482ed822012-03-02 14:15:13 -08001895
Michael Jurkaa52570f2012-03-20 03:18:20 -07001896 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08001897 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07001898 View child = mShortcutsAndWidgets.getChildAt(i);
Adam Cohen482ed822012-03-02 14:15:13 -08001899 if (child == dragView) continue;
1900 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Adam Cohen8baab352012-03-20 17:39:21 -07001901 CellAndSpan c = solution.map.get(child);
1902 if (c != null) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001903 lp.tmpCellX = c.cellX;
1904 lp.tmpCellY = c.cellY;
Adam Cohen8baab352012-03-20 17:39:21 -07001905 lp.cellHSpan = c.spanX;
1906 lp.cellVSpan = c.spanY;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001907 mTmpOccupied.markCells(c, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001908 }
1909 }
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001910 mTmpOccupied.markCells(solution, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001911 }
1912
1913 private void animateItemsToSolution(ItemConfiguration solution, View dragView, boolean
1914 commitDragView) {
1915
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001916 GridOccupancy occupied = DESTRUCTIVE_REORDER ? mOccupied : mTmpOccupied;
1917 occupied.clear();
Adam Cohen482ed822012-03-02 14:15:13 -08001918
Michael Jurkaa52570f2012-03-20 03:18:20 -07001919 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08001920 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07001921 View child = mShortcutsAndWidgets.getChildAt(i);
Adam Cohen482ed822012-03-02 14:15:13 -08001922 if (child == dragView) continue;
Adam Cohen8baab352012-03-20 17:39:21 -07001923 CellAndSpan c = solution.map.get(child);
1924 if (c != null) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001925 animateChildToPosition(child, c.cellX, c.cellY, REORDER_ANIMATION_DURATION, 0,
Adam Cohen19f37922012-03-21 11:59:11 -07001926 DESTRUCTIVE_REORDER, false);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001927 occupied.markCells(c, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001928 }
1929 }
1930 if (commitDragView) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001931 occupied.markCells(solution, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001932 }
1933 }
1934
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001935
1936 // This method starts or changes the reorder preview animations
1937 private void beginOrAdjustReorderPreviewAnimations(ItemConfiguration solution,
1938 View dragView, int delay, int mode) {
Adam Cohen19f37922012-03-21 11:59:11 -07001939 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen19f37922012-03-21 11:59:11 -07001940 for (int i = 0; i < childCount; i++) {
1941 View child = mShortcutsAndWidgets.getChildAt(i);
1942 if (child == dragView) continue;
1943 CellAndSpan c = solution.map.get(child);
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001944 boolean skip = mode == ReorderPreviewAnimation.MODE_HINT && solution.intersectingViews
1945 != null && !solution.intersectingViews.contains(child);
1946
Adam Cohen19f37922012-03-21 11:59:11 -07001947 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001948 if (c != null && !skip) {
1949 ReorderPreviewAnimation rha = new ReorderPreviewAnimation(child, mode, lp.cellX,
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001950 lp.cellY, c.cellX, c.cellY, c.spanX, c.spanY);
Adam Cohend024f982012-05-23 18:26:45 -07001951 rha.animate();
Adam Cohen19f37922012-03-21 11:59:11 -07001952 }
1953 }
1954 }
1955
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001956 // Class which represents the reorder preview animations. These animations show that an item is
Adam Cohen19f37922012-03-21 11:59:11 -07001957 // in a temporary state, and hint at where the item will return to.
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001958 class ReorderPreviewAnimation {
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001959 final View child;
Adam Cohend024f982012-05-23 18:26:45 -07001960 float finalDeltaX;
1961 float finalDeltaY;
1962 float initDeltaX;
1963 float initDeltaY;
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001964 final float finalScale;
Adam Cohend024f982012-05-23 18:26:45 -07001965 float initScale;
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07001966 final int mode;
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001967 boolean repeating = false;
1968 private static final int PREVIEW_DURATION = 300;
1969 private static final int HINT_DURATION = Workspace.REORDER_TIMEOUT;
1970
Jon Miranda21266912016-12-19 14:12:05 -08001971 private static final float CHILD_DIVIDEND = 4.0f;
1972
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001973 public static final int MODE_HINT = 0;
1974 public static final int MODE_PREVIEW = 1;
1975
Adam Cohene7587d22012-05-24 18:50:02 -07001976 Animator a;
Adam Cohen19f37922012-03-21 11:59:11 -07001977
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001978 public ReorderPreviewAnimation(View child, int mode, int cellX0, int cellY0, int cellX1,
1979 int cellY1, int spanX, int spanY) {
Adam Cohen19f37922012-03-21 11:59:11 -07001980 regionToCenterPoint(cellX0, cellY0, spanX, spanY, mTmpPoint);
1981 final int x0 = mTmpPoint[0];
1982 final int y0 = mTmpPoint[1];
1983 regionToCenterPoint(cellX1, cellY1, spanX, spanY, mTmpPoint);
1984 final int x1 = mTmpPoint[0];
1985 final int y1 = mTmpPoint[1];
1986 final int dX = x1 - x0;
1987 final int dY = y1 - y0;
Jon Miranda21266912016-12-19 14:12:05 -08001988
1989 this.child = child;
1990 this.mode = mode;
1991 setInitialAnimationValues(false);
1992 finalScale = (mChildScale - (CHILD_DIVIDEND / child.getWidth())) * initScale;
1993 finalDeltaX = initDeltaX;
1994 finalDeltaY = initDeltaY;
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001995 int dir = mode == MODE_HINT ? -1 : 1;
Adam Cohen19f37922012-03-21 11:59:11 -07001996 if (dX == dY && dX == 0) {
1997 } else {
1998 if (dY == 0) {
Jon Miranda21266912016-12-19 14:12:05 -08001999 finalDeltaX += - dir * Math.signum(dX) * mReorderPreviewAnimationMagnitude;
Adam Cohen19f37922012-03-21 11:59:11 -07002000 } else if (dX == 0) {
Jon Miranda21266912016-12-19 14:12:05 -08002001 finalDeltaY += - dir * Math.signum(dY) * mReorderPreviewAnimationMagnitude;
Adam Cohen19f37922012-03-21 11:59:11 -07002002 } else {
2003 double angle = Math.atan( (float) (dY) / dX);
Jon Miranda21266912016-12-19 14:12:05 -08002004 finalDeltaX += (int) (- dir * Math.signum(dX) *
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002005 Math.abs(Math.cos(angle) * mReorderPreviewAnimationMagnitude));
Jon Miranda21266912016-12-19 14:12:05 -08002006 finalDeltaY += (int) (- dir * Math.signum(dY) *
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002007 Math.abs(Math.sin(angle) * mReorderPreviewAnimationMagnitude));
Adam Cohen19f37922012-03-21 11:59:11 -07002008 }
2009 }
Jon Miranda21266912016-12-19 14:12:05 -08002010 }
2011
2012 void setInitialAnimationValues(boolean restoreOriginalValues) {
2013 if (restoreOriginalValues) {
2014 if (child instanceof LauncherAppWidgetHostView) {
2015 LauncherAppWidgetHostView lahv = (LauncherAppWidgetHostView) child;
2016 initScale = lahv.getScaleToFit();
2017 initDeltaX = lahv.getTranslationForCentering().x;
2018 initDeltaY = lahv.getTranslationForCentering().y;
2019 } else {
2020 initScale = mChildScale;
2021 initDeltaX = 0;
2022 initDeltaY = 0;
2023 }
2024 } else {
2025 initScale = child.getScaleX();
2026 initDeltaX = child.getTranslationX();
2027 initDeltaY = child.getTranslationY();
2028 }
Adam Cohen19f37922012-03-21 11:59:11 -07002029 }
2030
Adam Cohend024f982012-05-23 18:26:45 -07002031 void animate() {
Jon Miranda21266912016-12-19 14:12:05 -08002032 boolean noMovement = (finalDeltaX == initDeltaX) && (finalDeltaY == initDeltaY);
2033
Adam Cohen19f37922012-03-21 11:59:11 -07002034 if (mShakeAnimators.containsKey(child)) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002035 ReorderPreviewAnimation oldAnimation = mShakeAnimators.get(child);
Adam Cohend024f982012-05-23 18:26:45 -07002036 oldAnimation.cancel();
Adam Cohen19f37922012-03-21 11:59:11 -07002037 mShakeAnimators.remove(child);
Jon Miranda21266912016-12-19 14:12:05 -08002038 if (noMovement) {
Adam Cohene7587d22012-05-24 18:50:02 -07002039 completeAnimationImmediately();
2040 return;
2041 }
Adam Cohen19f37922012-03-21 11:59:11 -07002042 }
Jon Miranda21266912016-12-19 14:12:05 -08002043 if (noMovement) {
Adam Cohen19f37922012-03-21 11:59:11 -07002044 return;
2045 }
Jon Mirandacda3bfb2017-02-06 15:54:41 -08002046 ValueAnimator va = LauncherAnimUtils.ofFloat(0f, 1f);
Adam Cohene7587d22012-05-24 18:50:02 -07002047 a = va;
Tony Wickham9e0702f2015-09-02 14:45:39 -07002048
2049 // Animations are disabled in power save mode, causing the repeated animation to jump
2050 // spastically between beginning and end states. Since this looks bad, we don't repeat
2051 // the animation in power save mode.
Tony Wickham112ac952015-11-12 12:31:50 -08002052 if (!Utilities.isPowerSaverOn(getContext())) {
Tony Wickham9e0702f2015-09-02 14:45:39 -07002053 va.setRepeatMode(ValueAnimator.REVERSE);
2054 va.setRepeatCount(ValueAnimator.INFINITE);
2055 }
2056
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002057 va.setDuration(mode == MODE_HINT ? HINT_DURATION : PREVIEW_DURATION);
Adam Cohend024f982012-05-23 18:26:45 -07002058 va.setStartDelay((int) (Math.random() * 60));
Adam Cohen19f37922012-03-21 11:59:11 -07002059 va.addUpdateListener(new AnimatorUpdateListener() {
2060 @Override
2061 public void onAnimationUpdate(ValueAnimator animation) {
Jon Mirandae96798e2016-12-07 12:10:44 -08002062 float r = (Float) animation.getAnimatedValue();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002063 float r1 = (mode == MODE_HINT && repeating) ? 1.0f : r;
2064 float x = r1 * finalDeltaX + (1 - r1) * initDeltaX;
2065 float y = r1 * finalDeltaY + (1 - r1) * initDeltaY;
Adam Cohen19f37922012-03-21 11:59:11 -07002066 child.setTranslationX(x);
2067 child.setTranslationY(y);
Adam Cohend024f982012-05-23 18:26:45 -07002068 float s = r * finalScale + (1 - r) * initScale;
Brandon Keely50e6e562012-05-08 16:28:49 -07002069 child.setScaleX(s);
2070 child.setScaleY(s);
Adam Cohen19f37922012-03-21 11:59:11 -07002071 }
2072 });
2073 va.addListener(new AnimatorListenerAdapter() {
2074 public void onAnimationRepeat(Animator animation) {
Adam Cohen19f37922012-03-21 11:59:11 -07002075 // We make sure to end only after a full period
Jon Miranda21266912016-12-19 14:12:05 -08002076 setInitialAnimationValues(true);
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002077 repeating = true;
Adam Cohen19f37922012-03-21 11:59:11 -07002078 }
2079 });
Adam Cohen19f37922012-03-21 11:59:11 -07002080 mShakeAnimators.put(child, this);
2081 va.start();
2082 }
2083
Adam Cohend024f982012-05-23 18:26:45 -07002084 private void cancel() {
Adam Cohene7587d22012-05-24 18:50:02 -07002085 if (a != null) {
2086 a.cancel();
2087 }
Adam Cohen19f37922012-03-21 11:59:11 -07002088 }
Adam Cohene7587d22012-05-24 18:50:02 -07002089
Adam Cohen091440a2015-03-18 14:16:05 -07002090 @Thunk void completeAnimationImmediately() {
Adam Cohene7587d22012-05-24 18:50:02 -07002091 if (a != null) {
2092 a.cancel();
2093 }
Brandon Keely50e6e562012-05-08 16:28:49 -07002094
Jon Miranda72dbd912017-01-04 14:03:07 -08002095 setInitialAnimationValues(true);
Sunny Goyal9e76f682017-02-13 12:13:43 -08002096 a = LauncherAnimUtils.ofPropertyValuesHolder(child,
2097 new PropertyListBuilder()
2098 .scale(initScale)
2099 .translationX(initDeltaX)
2100 .translationY(initDeltaY)
2101 .build())
2102 .setDuration(REORDER_ANIMATION_DURATION);
Sunny Goyal5d2fc322015-07-06 22:52:49 -07002103 a.setInterpolator(new android.view.animation.DecelerateInterpolator(1.5f));
2104 a.start();
Brandon Keely50e6e562012-05-08 16:28:49 -07002105 }
Adam Cohen19f37922012-03-21 11:59:11 -07002106 }
2107
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002108 private void completeAndClearReorderPreviewAnimations() {
2109 for (ReorderPreviewAnimation a: mShakeAnimators.values()) {
Brandon Keely50e6e562012-05-08 16:28:49 -07002110 a.completeAnimationImmediately();
Adam Cohen19f37922012-03-21 11:59:11 -07002111 }
2112 mShakeAnimators.clear();
2113 }
2114
Adam Cohen482ed822012-03-02 14:15:13 -08002115 private void commitTempPlacement() {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002116 mTmpOccupied.copyTo(mOccupied);
Sunny Goyalaa8ef112015-06-12 20:04:41 -07002117
2118 long screenId = mLauncher.getWorkspace().getIdForScreen(this);
2119 int container = Favorites.CONTAINER_DESKTOP;
2120
Sunny Goyalc13403c2016-11-18 23:44:48 -08002121 if (mContainerType == HOTSEAT) {
Sunny Goyalaa8ef112015-06-12 20:04:41 -07002122 screenId = -1;
2123 container = Favorites.CONTAINER_HOTSEAT;
2124 }
2125
Michael Jurkaa52570f2012-03-20 03:18:20 -07002126 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08002127 for (int i = 0; i < childCount; i++) {
Adam Cohenea889a22012-03-27 16:45:39 -07002128 View child = mShortcutsAndWidgets.getChildAt(i);
2129 LayoutParams lp = (LayoutParams) child.getLayoutParams();
2130 ItemInfo info = (ItemInfo) child.getTag();
Adam Cohen2acce882012-03-28 19:03:19 -07002131 // We do a null check here because the item info can be null in the case of the
2132 // AllApps button in the hotseat.
2133 if (info != null) {
Sunny Goyalaa8ef112015-06-12 20:04:41 -07002134 final boolean requiresDbUpdate = (info.cellX != lp.tmpCellX
2135 || info.cellY != lp.tmpCellY || info.spanX != lp.cellHSpan
2136 || info.spanY != lp.cellVSpan);
2137
Adam Cohen2acce882012-03-28 19:03:19 -07002138 info.cellX = lp.cellX = lp.tmpCellX;
2139 info.cellY = lp.cellY = lp.tmpCellY;
Adam Cohenbebf0422012-04-11 18:06:28 -07002140 info.spanX = lp.cellHSpan;
2141 info.spanY = lp.cellVSpan;
Sunny Goyalaa8ef112015-06-12 20:04:41 -07002142
2143 if (requiresDbUpdate) {
Sunny Goyal43bf11d2017-02-02 13:52:53 -08002144 mLauncher.getModelWriter().modifyItemInDatabase(info, container, screenId,
Sunny Goyalaa8ef112015-06-12 20:04:41 -07002145 info.cellX, info.cellY, info.spanX, info.spanY);
2146 }
Adam Cohen2acce882012-03-28 19:03:19 -07002147 }
Adam Cohen482ed822012-03-02 14:15:13 -08002148 }
2149 }
2150
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002151 private void setUseTempCoords(boolean useTempCoords) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002152 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08002153 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002154 LayoutParams lp = (LayoutParams) mShortcutsAndWidgets.getChildAt(i).getLayoutParams();
Adam Cohen482ed822012-03-02 14:15:13 -08002155 lp.useTmpCoords = useTempCoords;
2156 }
2157 }
2158
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002159 private ItemConfiguration findConfigurationNoShuffle(int pixelX, int pixelY, int minSpanX, int minSpanY,
Adam Cohen482ed822012-03-02 14:15:13 -08002160 int spanX, int spanY, View dragView, ItemConfiguration solution) {
2161 int[] result = new int[2];
2162 int[] resultSpan = new int[2];
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002163 findNearestVacantArea(pixelX, pixelY, minSpanX, minSpanY, spanX, spanY, result,
Adam Cohen482ed822012-03-02 14:15:13 -08002164 resultSpan);
2165 if (result[0] >= 0 && result[1] >= 0) {
2166 copyCurrentStateToSolution(solution, false);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002167 solution.cellX = result[0];
2168 solution.cellY = result[1];
2169 solution.spanX = resultSpan[0];
2170 solution.spanY = resultSpan[1];
Adam Cohen482ed822012-03-02 14:15:13 -08002171 solution.isSolution = true;
2172 } else {
2173 solution.isSolution = false;
2174 }
2175 return solution;
2176 }
2177
Adam Cohen19f37922012-03-21 11:59:11 -07002178 /* This seems like it should be obvious and straight-forward, but when the direction vector
2179 needs to match with the notion of the dragView pushing other views, we have to employ
2180 a slightly more subtle notion of the direction vector. The question is what two points is
2181 the vector between? The center of the dragView and its desired destination? Not quite, as
2182 this doesn't necessarily coincide with the interaction of the dragView and items occupying
2183 those cells. Instead we use some heuristics to often lock the vector to up, down, left
2184 or right, which helps make pushing feel right.
2185 */
2186 private void getDirectionVectorForDrop(int dragViewCenterX, int dragViewCenterY, int spanX,
2187 int spanY, View dragView, int[] resultDirection) {
2188 int[] targetDestination = new int[2];
2189
2190 findNearestArea(dragViewCenterX, dragViewCenterY, spanX, spanY, targetDestination);
2191 Rect dragRect = new Rect();
2192 regionToRect(targetDestination[0], targetDestination[1], spanX, spanY, dragRect);
2193 dragRect.offset(dragViewCenterX - dragRect.centerX(), dragViewCenterY - dragRect.centerY());
2194
2195 Rect dropRegionRect = new Rect();
2196 getViewsIntersectingRegion(targetDestination[0], targetDestination[1], spanX, spanY,
2197 dragView, dropRegionRect, mIntersectingViews);
2198
2199 int dropRegionSpanX = dropRegionRect.width();
2200 int dropRegionSpanY = dropRegionRect.height();
2201
2202 regionToRect(dropRegionRect.left, dropRegionRect.top, dropRegionRect.width(),
2203 dropRegionRect.height(), dropRegionRect);
2204
2205 int deltaX = (dropRegionRect.centerX() - dragViewCenterX) / spanX;
2206 int deltaY = (dropRegionRect.centerY() - dragViewCenterY) / spanY;
2207
2208 if (dropRegionSpanX == mCountX || spanX == mCountX) {
2209 deltaX = 0;
2210 }
2211 if (dropRegionSpanY == mCountY || spanY == mCountY) {
2212 deltaY = 0;
2213 }
2214
2215 if (deltaX == 0 && deltaY == 0) {
2216 // No idea what to do, give a random direction.
2217 resultDirection[0] = 1;
2218 resultDirection[1] = 0;
2219 } else {
2220 computeDirectionVector(deltaX, deltaY, resultDirection);
2221 }
2222 }
2223
2224 // For a given cell and span, fetch the set of views intersecting the region.
2225 private void getViewsIntersectingRegion(int cellX, int cellY, int spanX, int spanY,
2226 View dragView, Rect boundingRect, ArrayList<View> intersectingViews) {
2227 if (boundingRect != null) {
2228 boundingRect.set(cellX, cellY, cellX + spanX, cellY + spanY);
2229 }
2230 intersectingViews.clear();
2231 Rect r0 = new Rect(cellX, cellY, cellX + spanX, cellY + spanY);
2232 Rect r1 = new Rect();
2233 final int count = mShortcutsAndWidgets.getChildCount();
2234 for (int i = 0; i < count; i++) {
2235 View child = mShortcutsAndWidgets.getChildAt(i);
2236 if (child == dragView) continue;
2237 LayoutParams lp = (LayoutParams) child.getLayoutParams();
2238 r1.set(lp.cellX, lp.cellY, lp.cellX + lp.cellHSpan, lp.cellY + lp.cellVSpan);
2239 if (Rect.intersects(r0, r1)) {
2240 mIntersectingViews.add(child);
2241 if (boundingRect != null) {
2242 boundingRect.union(r1);
2243 }
2244 }
2245 }
2246 }
2247
2248 boolean isNearestDropLocationOccupied(int pixelX, int pixelY, int spanX, int spanY,
2249 View dragView, int[] result) {
2250 result = findNearestArea(pixelX, pixelY, spanX, spanY, result);
2251 getViewsIntersectingRegion(result[0], result[1], spanX, spanY, dragView, null,
2252 mIntersectingViews);
2253 return !mIntersectingViews.isEmpty();
2254 }
2255
2256 void revertTempState() {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002257 completeAndClearReorderPreviewAnimations();
2258 if (isItemPlacementDirty() && !DESTRUCTIVE_REORDER) {
2259 final int count = mShortcutsAndWidgets.getChildCount();
2260 for (int i = 0; i < count; i++) {
2261 View child = mShortcutsAndWidgets.getChildAt(i);
2262 LayoutParams lp = (LayoutParams) child.getLayoutParams();
2263 if (lp.tmpCellX != lp.cellX || lp.tmpCellY != lp.cellY) {
2264 lp.tmpCellX = lp.cellX;
2265 lp.tmpCellY = lp.cellY;
2266 animateChildToPosition(child, lp.cellX, lp.cellY, REORDER_ANIMATION_DURATION,
2267 0, false, false);
2268 }
Adam Cohen19f37922012-03-21 11:59:11 -07002269 }
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002270 setItemPlacementDirty(false);
Adam Cohen19f37922012-03-21 11:59:11 -07002271 }
Adam Cohen19f37922012-03-21 11:59:11 -07002272 }
2273
Adam Cohenbebf0422012-04-11 18:06:28 -07002274 boolean createAreaForResize(int cellX, int cellY, int spanX, int spanY,
2275 View dragView, int[] direction, boolean commit) {
2276 int[] pixelXY = new int[2];
2277 regionToCenterPoint(cellX, cellY, spanX, spanY, pixelXY);
2278
2279 // First we determine if things have moved enough to cause a different layout
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002280 ItemConfiguration swapSolution = findReorderSolution(pixelXY[0], pixelXY[1], spanX, spanY,
Adam Cohenbebf0422012-04-11 18:06:28 -07002281 spanX, spanY, direction, dragView, true, new ItemConfiguration());
2282
2283 setUseTempCoords(true);
2284 if (swapSolution != null && swapSolution.isSolution) {
2285 // If we're just testing for a possible location (MODE_ACCEPT_DROP), we don't bother
2286 // committing anything or animating anything as we just want to determine if a solution
2287 // exists
2288 copySolutionToTempState(swapSolution, dragView);
2289 setItemPlacementDirty(true);
2290 animateItemsToSolution(swapSolution, dragView, commit);
2291
2292 if (commit) {
2293 commitTempPlacement();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002294 completeAndClearReorderPreviewAnimations();
Adam Cohenbebf0422012-04-11 18:06:28 -07002295 setItemPlacementDirty(false);
2296 } else {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002297 beginOrAdjustReorderPreviewAnimations(swapSolution, dragView,
2298 REORDER_ANIMATION_DURATION, ReorderPreviewAnimation.MODE_PREVIEW);
Adam Cohenbebf0422012-04-11 18:06:28 -07002299 }
2300 mShortcutsAndWidgets.requestLayout();
2301 }
2302 return swapSolution.isSolution;
2303 }
2304
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002305 int[] performReorder(int pixelX, int pixelY, int minSpanX, int minSpanY, int spanX, int spanY,
Adam Cohen482ed822012-03-02 14:15:13 -08002306 View dragView, int[] result, int resultSpan[], int mode) {
Adam Cohen482ed822012-03-02 14:15:13 -08002307 // First we determine if things have moved enough to cause a different layout
Adam Cohen47a876d2012-03-19 13:21:41 -07002308 result = findNearestArea(pixelX, pixelY, spanX, spanY, result);
Adam Cohen482ed822012-03-02 14:15:13 -08002309
2310 if (resultSpan == null) {
2311 resultSpan = new int[2];
2312 }
2313
Adam Cohen19f37922012-03-21 11:59:11 -07002314 // When we are checking drop validity or actually dropping, we don't recompute the
2315 // direction vector, since we want the solution to match the preview, and it's possible
2316 // that the exact position of the item has changed to result in a new reordering outcome.
Adam Cohenb209e632012-03-27 17:09:36 -07002317 if ((mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL || mode == MODE_ACCEPT_DROP)
2318 && mPreviousReorderDirection[0] != INVALID_DIRECTION) {
Adam Cohen19f37922012-03-21 11:59:11 -07002319 mDirectionVector[0] = mPreviousReorderDirection[0];
2320 mDirectionVector[1] = mPreviousReorderDirection[1];
2321 // We reset this vector after drop
Adam Cohenb209e632012-03-27 17:09:36 -07002322 if (mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL) {
2323 mPreviousReorderDirection[0] = INVALID_DIRECTION;
2324 mPreviousReorderDirection[1] = INVALID_DIRECTION;
Adam Cohen19f37922012-03-21 11:59:11 -07002325 }
2326 } else {
2327 getDirectionVectorForDrop(pixelX, pixelY, spanX, spanY, dragView, mDirectionVector);
2328 mPreviousReorderDirection[0] = mDirectionVector[0];
2329 mPreviousReorderDirection[1] = mDirectionVector[1];
2330 }
2331
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002332 // Find a solution involving pushing / displacing any items in the way
2333 ItemConfiguration swapSolution = findReorderSolution(pixelX, pixelY, minSpanX, minSpanY,
Adam Cohen482ed822012-03-02 14:15:13 -08002334 spanX, spanY, mDirectionVector, dragView, true, new ItemConfiguration());
2335
2336 // We attempt the approach which doesn't shuffle views at all
2337 ItemConfiguration noShuffleSolution = findConfigurationNoShuffle(pixelX, pixelY, minSpanX,
2338 minSpanY, spanX, spanY, dragView, new ItemConfiguration());
2339
2340 ItemConfiguration finalSolution = null;
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002341
2342 // If the reorder solution requires resizing (shrinking) the item being dropped, we instead
2343 // favor a solution in which the item is not resized, but
Adam Cohen482ed822012-03-02 14:15:13 -08002344 if (swapSolution.isSolution && swapSolution.area() >= noShuffleSolution.area()) {
2345 finalSolution = swapSolution;
2346 } else if (noShuffleSolution.isSolution) {
2347 finalSolution = noShuffleSolution;
2348 }
2349
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002350 if (mode == MODE_SHOW_REORDER_HINT) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002351 if (finalSolution != null) {
Adam Cohenfe692872013-12-11 14:47:23 -08002352 beginOrAdjustReorderPreviewAnimations(finalSolution, dragView, 0,
2353 ReorderPreviewAnimation.MODE_HINT);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002354 result[0] = finalSolution.cellX;
2355 result[1] = finalSolution.cellY;
2356 resultSpan[0] = finalSolution.spanX;
2357 resultSpan[1] = finalSolution.spanY;
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002358 } else {
2359 result[0] = result[1] = resultSpan[0] = resultSpan[1] = -1;
2360 }
2361 return result;
2362 }
2363
Adam Cohen482ed822012-03-02 14:15:13 -08002364 boolean foundSolution = true;
2365 if (!DESTRUCTIVE_REORDER) {
2366 setUseTempCoords(true);
2367 }
2368
2369 if (finalSolution != null) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002370 result[0] = finalSolution.cellX;
2371 result[1] = finalSolution.cellY;
2372 resultSpan[0] = finalSolution.spanX;
2373 resultSpan[1] = finalSolution.spanY;
Adam Cohen482ed822012-03-02 14:15:13 -08002374
2375 // If we're just testing for a possible location (MODE_ACCEPT_DROP), we don't bother
2376 // committing anything or animating anything as we just want to determine if a solution
2377 // exists
2378 if (mode == MODE_DRAG_OVER || mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL) {
2379 if (!DESTRUCTIVE_REORDER) {
2380 copySolutionToTempState(finalSolution, dragView);
2381 }
2382 setItemPlacementDirty(true);
2383 animateItemsToSolution(finalSolution, dragView, mode == MODE_ON_DROP);
2384
Adam Cohen19f37922012-03-21 11:59:11 -07002385 if (!DESTRUCTIVE_REORDER &&
2386 (mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL)) {
Adam Cohen482ed822012-03-02 14:15:13 -08002387 commitTempPlacement();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002388 completeAndClearReorderPreviewAnimations();
Adam Cohen19f37922012-03-21 11:59:11 -07002389 setItemPlacementDirty(false);
2390 } else {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002391 beginOrAdjustReorderPreviewAnimations(finalSolution, dragView,
2392 REORDER_ANIMATION_DURATION, ReorderPreviewAnimation.MODE_PREVIEW);
Adam Cohen482ed822012-03-02 14:15:13 -08002393 }
2394 }
2395 } else {
2396 foundSolution = false;
2397 result[0] = result[1] = resultSpan[0] = resultSpan[1] = -1;
2398 }
2399
2400 if ((mode == MODE_ON_DROP || !foundSolution) && !DESTRUCTIVE_REORDER) {
2401 setUseTempCoords(false);
2402 }
Adam Cohen482ed822012-03-02 14:15:13 -08002403
Michael Jurkaa52570f2012-03-20 03:18:20 -07002404 mShortcutsAndWidgets.requestLayout();
Adam Cohen482ed822012-03-02 14:15:13 -08002405 return result;
2406 }
2407
Adam Cohen19f37922012-03-21 11:59:11 -07002408 void setItemPlacementDirty(boolean dirty) {
2409 mItemPlacementDirty = dirty;
Adam Cohen482ed822012-03-02 14:15:13 -08002410 }
Adam Cohen19f37922012-03-21 11:59:11 -07002411 boolean isItemPlacementDirty() {
2412 return mItemPlacementDirty;
Adam Cohen482ed822012-03-02 14:15:13 -08002413 }
2414
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002415 private static class ItemConfiguration extends CellAndSpan {
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07002416 final ArrayMap<View, CellAndSpan> map = new ArrayMap<>();
2417 private final ArrayMap<View, CellAndSpan> savedMap = new ArrayMap<>();
2418 final ArrayList<View> sortedViews = new ArrayList<>();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002419 ArrayList<View> intersectingViews;
Adam Cohen482ed822012-03-02 14:15:13 -08002420 boolean isSolution = false;
Adam Cohen482ed822012-03-02 14:15:13 -08002421
Adam Cohenf3900c22012-11-16 18:28:11 -08002422 void save() {
2423 // Copy current state into savedMap
2424 for (View v: map.keySet()) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002425 savedMap.get(v).copyFrom(map.get(v));
Adam Cohenf3900c22012-11-16 18:28:11 -08002426 }
2427 }
2428
2429 void restore() {
2430 // Restore current state from savedMap
2431 for (View v: savedMap.keySet()) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002432 map.get(v).copyFrom(savedMap.get(v));
Adam Cohenf3900c22012-11-16 18:28:11 -08002433 }
2434 }
2435
2436 void add(View v, CellAndSpan cs) {
2437 map.put(v, cs);
2438 savedMap.put(v, new CellAndSpan());
2439 sortedViews.add(v);
2440 }
2441
Adam Cohen482ed822012-03-02 14:15:13 -08002442 int area() {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002443 return spanX * spanY;
Adam Cohenf3900c22012-11-16 18:28:11 -08002444 }
2445
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002446 void getBoundingRectForViews(ArrayList<View> views, Rect outRect) {
2447 boolean first = true;
2448 for (View v: views) {
2449 CellAndSpan c = map.get(v);
2450 if (first) {
2451 outRect.set(c.cellX, c.cellY, c.cellX + c.spanX, c.cellY + c.spanY);
2452 first = false;
2453 } else {
2454 outRect.union(c.cellX, c.cellY, c.cellX + c.spanX, c.cellY + c.spanY);
2455 }
2456 }
Adam Cohenf3900c22012-11-16 18:28:11 -08002457 }
Adam Cohen482ed822012-03-02 14:15:13 -08002458 }
2459
Adam Cohendf035382011-04-11 17:22:04 -07002460 /**
Adam Cohendf035382011-04-11 17:22:04 -07002461 * Find a starting cell position that will fit the given bounds nearest the requested
2462 * cell location. Uses Euclidean distance to score multiple vacant areas.
2463 *
2464 * @param pixelX The X location at which you want to search for a vacant area.
2465 * @param pixelY The Y location at which you want to search for a vacant area.
2466 * @param spanX Horizontal span of the object.
2467 * @param spanY Vertical span of the object.
Adam Cohendf035382011-04-11 17:22:04 -07002468 * @param result Previously returned value to possibly recycle.
2469 * @return The X, Y cell of a vacant area that can contain this object,
2470 * nearest the requested location.
2471 */
Adam Cohenf9c184a2016-01-15 16:47:43 -08002472 public int[] findNearestArea(int pixelX, int pixelY, int spanX, int spanY, int[] result) {
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002473 return findNearestArea(pixelX, pixelY, spanX, spanY, spanX, spanY, false, result, null);
Adam Cohendf035382011-04-11 17:22:04 -07002474 }
2475
Michael Jurka0280c3b2010-09-17 15:00:07 -07002476 boolean existsEmptyCell() {
2477 return findCellForSpan(null, 1, 1);
2478 }
2479
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002480 /**
Michael Jurka0280c3b2010-09-17 15:00:07 -07002481 * Finds the upper-left coordinate of the first rectangle in the grid that can
2482 * hold a cell of the specified dimensions. If intersectX and intersectY are not -1,
2483 * then this method will only return coordinates for rectangles that contain the cell
2484 * (intersectX, intersectY)
2485 *
2486 * @param cellXY The array that will contain the position of a vacant cell if such a cell
2487 * can be found.
2488 * @param spanX The horizontal span of the cell we want to find.
2489 * @param spanY The vertical span of the cell we want to find.
2490 *
2491 * @return True if a vacant cell of the specified dimension was found, false otherwise.
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002492 */
Hyunyoung Song3f471442015-04-08 19:01:34 -07002493 public boolean findCellForSpan(int[] cellXY, int spanX, int spanY) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002494 if (cellXY == null) {
2495 cellXY = new int[2];
Michael Jurka0280c3b2010-09-17 15:00:07 -07002496 }
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002497 return mOccupied.findVacantCell(cellXY, spanX, spanY);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002498 }
2499
2500 /**
Winson Chungc07918d2011-07-01 15:35:26 -07002501 * A drag event has begun over this layout.
2502 * It may have begun over this layout (in which case onDragChild is called first),
2503 * or it may have begun on another layout.
2504 */
2505 void onDragEnter() {
Winson Chungc07918d2011-07-01 15:35:26 -07002506 mDragging = true;
2507 }
2508
2509 /**
Michael Jurka0280c3b2010-09-17 15:00:07 -07002510 * Called when drag has left this CellLayout or has been completed (successfully or not)
2511 */
2512 void onDragExit() {
Joe Onorato4be866d2010-10-10 11:26:02 -07002513 // This can actually be called when we aren't in a drag, e.g. when adding a new
2514 // item to this layout via the customize drawer.
2515 // Guard against that case.
2516 if (mDragging) {
2517 mDragging = false;
Patrick Dubroyde7658b2010-09-27 11:15:43 -07002518 }
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07002519
2520 // Invalidate the drag data
Adam Cohend41fbf52012-02-16 23:53:59 -08002521 mDragCell[0] = mDragCell[1] = -1;
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07002522 mDragOutlineAnims[mDragOutlineCurrent].animateOut();
2523 mDragOutlineCurrent = (mDragOutlineCurrent + 1) % mDragOutlineAnims.length;
Adam Cohen19f37922012-03-21 11:59:11 -07002524 revertTempState();
Michael Jurka33945b22010-12-21 18:19:38 -08002525 setIsDragOverlapping(false);
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002526 }
2527
2528 /**
Winson Chungaafa03c2010-06-11 17:34:16 -07002529 * Mark a child as having been dropped.
Patrick Dubroyde7658b2010-09-27 11:15:43 -07002530 * At the beginning of the drag operation, the child may have been on another
Patrick Dubroyce34a972010-10-19 10:34:32 -07002531 * screen, but it is re-parented before this method is called.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002532 *
2533 * @param child The child that is being dropped
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002534 */
Adam Cohen716b51e2011-06-30 12:09:54 -07002535 void onDropChild(View child) {
Romain Guyd94533d2009-08-17 10:01:15 -07002536 if (child != null) {
2537 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Romain Guy84f296c2009-11-04 15:00:44 -08002538 lp.dropped = true;
Romain Guyd94533d2009-08-17 10:01:15 -07002539 child.requestLayout();
Tony Wickham1cdb6d02015-09-17 11:08:27 -07002540 markCellsAsOccupiedForView(child);
Romain Guyd94533d2009-08-17 10:01:15 -07002541 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002542 }
2543
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002544 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002545 * Computes a bounding rectangle for a range of cells
Winson Chungaafa03c2010-06-11 17:34:16 -07002546 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002547 * @param cellX X coordinate of upper left corner expressed as a cell position
2548 * @param cellY Y coordinate of upper left corner expressed as a cell position
Winson Chungaafa03c2010-06-11 17:34:16 -07002549 * @param cellHSpan Width in cells
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002550 * @param cellVSpan Height in cells
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002551 * @param resultRect Rect into which to put the results
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002552 */
Adam Cohend41fbf52012-02-16 23:53:59 -08002553 public void cellToRect(int cellX, int cellY, int cellHSpan, int cellVSpan, Rect resultRect) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002554 final int cellWidth = mCellWidth;
2555 final int cellHeight = mCellHeight;
Winson Chungaafa03c2010-06-11 17:34:16 -07002556
Winson Chung4b825dcd2011-06-19 12:41:22 -07002557 final int hStartPadding = getPaddingLeft();
2558 final int vStartPadding = getPaddingTop();
Winson Chungaafa03c2010-06-11 17:34:16 -07002559
Sunny Goyalaa8a8712016-11-20 15:26:01 +05302560 int width = cellHSpan * cellWidth;
2561 int height = cellVSpan * cellHeight;
2562 int x = hStartPadding + cellX * cellWidth;
2563 int y = vStartPadding + cellY * cellHeight;
Winson Chungaafa03c2010-06-11 17:34:16 -07002564
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002565 resultRect.set(x, y, x + width, y + height);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002566 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002567
Adam Cohend4844c32011-02-18 19:25:06 -08002568 public void markCellsAsOccupiedForView(View view) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002569 if (view == null || view.getParent() != mShortcutsAndWidgets) return;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002570 LayoutParams lp = (LayoutParams) view.getLayoutParams();
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002571 mOccupied.markCells(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan, true);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002572 }
2573
Adam Cohend4844c32011-02-18 19:25:06 -08002574 public void markCellsAsUnoccupiedForView(View view) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002575 if (view == null || view.getParent() != mShortcutsAndWidgets) return;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002576 LayoutParams lp = (LayoutParams) view.getLayoutParams();
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002577 mOccupied.markCells(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002578 }
2579
Adam Cohen2801caf2011-05-13 20:57:39 -07002580 public int getDesiredWidth() {
Sunny Goyalaa8a8712016-11-20 15:26:01 +05302581 return getPaddingLeft() + getPaddingRight() + (mCountX * mCellWidth);
Adam Cohen2801caf2011-05-13 20:57:39 -07002582 }
2583
2584 public int getDesiredHeight() {
Sunny Goyalaa8a8712016-11-20 15:26:01 +05302585 return getPaddingTop() + getPaddingBottom() + (mCountY * mCellHeight);
Adam Cohen2801caf2011-05-13 20:57:39 -07002586 }
2587
Michael Jurka66d72172011-04-12 16:29:25 -07002588 public boolean isOccupied(int x, int y) {
2589 if (x < mCountX && y < mCountY) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002590 return mOccupied.cells[x][y];
Michael Jurka66d72172011-04-12 16:29:25 -07002591 } else {
2592 throw new RuntimeException("Position exceeds the bound of this CellLayout");
2593 }
2594 }
2595
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002596 @Override
2597 public ViewGroup.LayoutParams generateLayoutParams(AttributeSet attrs) {
2598 return new CellLayout.LayoutParams(getContext(), attrs);
2599 }
2600
2601 @Override
2602 protected boolean checkLayoutParams(ViewGroup.LayoutParams p) {
2603 return p instanceof CellLayout.LayoutParams;
2604 }
2605
2606 @Override
2607 protected ViewGroup.LayoutParams generateLayoutParams(ViewGroup.LayoutParams p) {
2608 return new CellLayout.LayoutParams(p);
2609 }
2610
2611 public static class LayoutParams extends ViewGroup.MarginLayoutParams {
2612 /**
2613 * Horizontal location of the item in the grid.
2614 */
2615 @ViewDebug.ExportedProperty
2616 public int cellX;
2617
2618 /**
2619 * Vertical location of the item in the grid.
2620 */
2621 @ViewDebug.ExportedProperty
2622 public int cellY;
2623
2624 /**
Adam Cohen482ed822012-03-02 14:15:13 -08002625 * Temporary horizontal location of the item in the grid during reorder
2626 */
2627 public int tmpCellX;
2628
2629 /**
2630 * Temporary vertical location of the item in the grid during reorder
2631 */
2632 public int tmpCellY;
2633
2634 /**
2635 * Indicates that the temporary coordinates should be used to layout the items
2636 */
2637 public boolean useTmpCoords;
2638
2639 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002640 * Number of cells spanned horizontally by the item.
2641 */
2642 @ViewDebug.ExportedProperty
2643 public int cellHSpan;
2644
2645 /**
2646 * Number of cells spanned vertically by the item.
2647 */
2648 @ViewDebug.ExportedProperty
2649 public int cellVSpan;
Winson Chungaafa03c2010-06-11 17:34:16 -07002650
Adam Cohen1b607ed2011-03-03 17:26:50 -08002651 /**
2652 * Indicates whether the item will set its x, y, width and height parameters freely,
2653 * or whether these will be computed based on cellX, cellY, cellHSpan and cellVSpan.
2654 */
Adam Cohend4844c32011-02-18 19:25:06 -08002655 public boolean isLockedToGrid = true;
2656
Adam Cohen482ed822012-03-02 14:15:13 -08002657 /**
Adam Cohenec40b2b2013-07-23 15:52:40 -07002658 * Indicates that this item should use the full extents of its parent.
2659 */
2660 public boolean isFullscreen = false;
2661
2662 /**
Adam Cohen482ed822012-03-02 14:15:13 -08002663 * Indicates whether this item can be reordered. Always true except in the case of the
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07002664 * the AllApps button and QSB place holder.
Adam Cohen482ed822012-03-02 14:15:13 -08002665 */
2666 public boolean canReorder = true;
2667
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002668 // X coordinate of the view in the layout.
2669 @ViewDebug.ExportedProperty
Vadim Tryshevfedca432015-08-19 17:55:02 -07002670 public int x;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002671 // Y coordinate of the view in the layout.
2672 @ViewDebug.ExportedProperty
Vadim Tryshevfedca432015-08-19 17:55:02 -07002673 public int y;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002674
Romain Guy84f296c2009-11-04 15:00:44 -08002675 boolean dropped;
Romain Guyfcb9e712009-10-02 16:06:52 -07002676
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002677 public LayoutParams(Context c, AttributeSet attrs) {
2678 super(c, attrs);
2679 cellHSpan = 1;
2680 cellVSpan = 1;
2681 }
2682
2683 public LayoutParams(ViewGroup.LayoutParams source) {
2684 super(source);
2685 cellHSpan = 1;
2686 cellVSpan = 1;
2687 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002688
2689 public LayoutParams(LayoutParams source) {
2690 super(source);
2691 this.cellX = source.cellX;
2692 this.cellY = source.cellY;
2693 this.cellHSpan = source.cellHSpan;
2694 this.cellVSpan = source.cellVSpan;
2695 }
2696
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002697 public LayoutParams(int cellX, int cellY, int cellHSpan, int cellVSpan) {
Romain Guy8f19cdd2010-01-08 15:07:00 -08002698 super(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002699 this.cellX = cellX;
2700 this.cellY = cellY;
2701 this.cellHSpan = cellHSpan;
2702 this.cellVSpan = cellVSpan;
2703 }
2704
Sunny Goyalaa8a8712016-11-20 15:26:01 +05302705 public void setup(int cellWidth, int cellHeight, boolean invertHorizontally, int colCount) {
Jon Miranda7ae64ff2016-11-21 16:18:46 -08002706 setup(cellWidth, cellHeight, invertHorizontally, colCount, 1.0f, 1.0f);
2707 }
2708
2709 /**
2710 * Use this method, as opposed to {@link #setup(int, int, boolean, int)}, if the view needs
2711 * to be scaled.
2712 *
2713 * ie. In multi-window mode, we setup widgets so that they are measured and laid out
2714 * using their full/invariant device profile sizes.
2715 */
2716 public void setup(int cellWidth, int cellHeight, boolean invertHorizontally, int colCount,
2717 float cellScaleX, float cellScaleY) {
Adam Cohend4844c32011-02-18 19:25:06 -08002718 if (isLockedToGrid) {
2719 final int myCellHSpan = cellHSpan;
2720 final int myCellVSpan = cellVSpan;
Adam Cohen2374abf2013-04-16 14:56:57 -07002721 int myCellX = useTmpCoords ? tmpCellX : cellX;
2722 int myCellY = useTmpCoords ? tmpCellY : cellY;
2723
2724 if (invertHorizontally) {
2725 myCellX = colCount - myCellX - cellHSpan;
2726 }
Adam Cohen1b607ed2011-03-03 17:26:50 -08002727
Jon Miranda7ae64ff2016-11-21 16:18:46 -08002728 width = (int) (myCellHSpan * cellWidth / cellScaleX - leftMargin - rightMargin);
2729 height = (int) (myCellVSpan * cellHeight / cellScaleY - topMargin - bottomMargin);
Sunny Goyalaa8a8712016-11-20 15:26:01 +05302730 x = (myCellX * cellWidth + leftMargin);
2731 y = (myCellY * cellHeight + topMargin);
Adam Cohend4844c32011-02-18 19:25:06 -08002732 }
2733 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002734
Winson Chungaafa03c2010-06-11 17:34:16 -07002735 public String toString() {
2736 return "(" + this.cellX + ", " + this.cellY + ")";
2737 }
Adam Cohen7f4eabe2011-04-21 16:19:16 -07002738
2739 public void setWidth(int width) {
2740 this.width = width;
2741 }
2742
2743 public int getWidth() {
2744 return width;
2745 }
2746
2747 public void setHeight(int height) {
2748 this.height = height;
2749 }
2750
2751 public int getHeight() {
2752 return height;
2753 }
2754
2755 public void setX(int x) {
2756 this.x = x;
2757 }
2758
2759 public int getX() {
2760 return x;
2761 }
2762
2763 public void setY(int y) {
2764 this.y = y;
2765 }
2766
2767 public int getY() {
2768 return y;
2769 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002770 }
2771
Michael Jurka0280c3b2010-09-17 15:00:07 -07002772 // This class stores info for two purposes:
2773 // 1. When dragging items (mDragInfo in Workspace), we store the View, its cellX & cellY,
2774 // its spanX, spanY, and the screen it is on
2775 // 2. When long clicking on an empty cell in a CellLayout, we save information about the
2776 // cellX and cellY coordinates and which page was clicked. We then set this as a tag on
2777 // the CellLayout that was long clicked
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002778 public static final class CellInfo extends CellAndSpan {
Rajeev Kumar9962dbe2017-06-12 12:16:20 -07002779 public final View cell;
2780 final long screenId;
2781 final long container;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002782
Sunny Goyal83a8f042015-05-19 12:52:12 -07002783 public CellInfo(View v, ItemInfo info) {
Adam Cohene0aaa0d2014-05-12 12:44:22 -07002784 cellX = info.cellX;
2785 cellY = info.cellY;
2786 spanX = info.spanX;
2787 spanY = info.spanY;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002788 cell = v;
Adam Cohene0aaa0d2014-05-12 12:44:22 -07002789 screenId = info.screenId;
2790 container = info.container;
2791 }
2792
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002793 @Override
2794 public String toString() {
Winson Chungaafa03c2010-06-11 17:34:16 -07002795 return "Cell[view=" + (cell == null ? "null" : cell.getClass())
2796 + ", x=" + cellX + ", y=" + cellY + "]";
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002797 }
2798 }
Michael Jurkad771c962011-08-09 15:00:48 -07002799
Tony Wickham86930612015-09-09 13:50:40 -07002800 /**
2801 * Returns whether an item can be placed in this CellLayout (after rearranging and/or resizing
2802 * if necessary).
2803 */
2804 public boolean hasReorderSolution(ItemInfo itemInfo) {
2805 int[] cellPoint = new int[2];
2806 // Check for a solution starting at every cell.
2807 for (int cellX = 0; cellX < getCountX(); cellX++) {
2808 for (int cellY = 0; cellY < getCountY(); cellY++) {
2809 cellToPoint(cellX, cellY, cellPoint);
2810 if (findReorderSolution(cellPoint[0], cellPoint[1], itemInfo.minSpanX,
2811 itemInfo.minSpanY, itemInfo.spanX, itemInfo.spanY, mDirectionVector, null,
2812 true, new ItemConfiguration()).isSolution) {
2813 return true;
2814 }
2815 }
2816 }
2817 return false;
2818 }
2819
Sunny Goyal9ca9c132015-04-29 14:57:22 -07002820 public boolean isRegionVacant(int x, int y, int spanX, int spanY) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002821 return mOccupied.isRegionVacant(x, y, spanX, spanY);
Sunny Goyal9ca9c132015-04-29 14:57:22 -07002822 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002823}