blob: 3564cecee018fed9c3272883a5d3d58046bac2ad [file] [log] [blame]
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Daniel Sandler325dc232013-06-05 22:57:57 -040017package com.android.launcher3;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080018
Joe Onorato4be866d2010-10-10 11:26:02 -070019import android.animation.Animator;
Michael Jurka629758f2012-06-14 16:18:21 -070020import android.animation.AnimatorListenerAdapter;
Chet Haase00397b12010-10-07 11:13:10 -070021import android.animation.TimeInterpolator;
Patrick Dubroyde7658b2010-09-27 11:15:43 -070022import android.animation.ValueAnimator;
23import android.animation.ValueAnimator.AnimatorUpdateListener;
Adam Cohenc9735cf2015-01-23 16:11:55 -080024import android.annotation.TargetApi;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080025import android.content.Context;
Joe Onorato79e56262009-09-21 15:23:04 -040026import android.content.res.Resources;
Joe Onorato4be866d2010-10-10 11:26:02 -070027import android.graphics.Bitmap;
Winson Chungaafa03c2010-06-11 17:34:16 -070028import android.graphics.Canvas;
Andrew Flynn0dca1ec2012-02-29 13:33:22 -080029import android.graphics.Color;
Joe Onorato4be866d2010-10-10 11:26:02 -070030import android.graphics.Paint;
Patrick Dubroyde7658b2010-09-27 11:15:43 -070031import android.graphics.Point;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080032import android.graphics.Rect;
Adam Cohen482ed822012-03-02 14:15:13 -080033import android.graphics.drawable.ColorDrawable;
Patrick Dubroy6569f2c2010-07-12 14:25:18 -070034import android.graphics.drawable.Drawable;
Sunny Goyal2805e632015-05-20 15:35:32 -070035import android.graphics.drawable.TransitionDrawable;
Adam Cohenc9735cf2015-01-23 16:11:55 -080036import android.os.Build;
Adam Cohen1462de32012-07-24 22:34:36 -070037import android.os.Parcelable;
Adam Cohenc9735cf2015-01-23 16:11:55 -080038import android.support.v4.view.ViewCompat;
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;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080048
Sunny Goyal4b6eb262015-05-14 19:24:40 -070049import com.android.launcher3.BubbleTextView.BubbleTextShadowHandler;
Sunny Goyalaa8ef112015-06-12 20:04:41 -070050import com.android.launcher3.LauncherSettings.Favorites;
Sunny Goyale9b651e2015-04-24 11:44:51 -070051import com.android.launcher3.accessibility.DragAndDropAccessibilityDelegate;
52import com.android.launcher3.accessibility.FolderAccessibilityHelper;
53import com.android.launcher3.accessibility.WorkspaceAccessibilityHelper;
Tony Wickhame0c33232016-02-08 11:37:04 -080054import com.android.launcher3.config.FeatureFlags;
Sunny Goyal6c56c682015-07-16 14:09:05 -070055import com.android.launcher3.config.ProviderConfig;
Sunny Goyal26119432016-02-18 22:09:23 +000056import com.android.launcher3.folder.FolderIcon;
Sunny Goyal06e21a22016-08-11 16:02:02 -070057import com.android.launcher3.graphics.DragPreviewProvider;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -070058import com.android.launcher3.util.CellAndSpan;
59import com.android.launcher3.util.GridOccupancy;
Sunny Goyale2fd14b2015-08-27 17:45:46 -070060import com.android.launcher3.util.ParcelableSparseArray;
Adam Cohen091440a2015-03-18 14:16:05 -070061import com.android.launcher3.util.Thunk;
Patrick Dubroy8e58e912010-10-14 13:21:48 -070062
Adam Cohen69ce2e52011-07-03 19:25:21 -070063import java.util.ArrayList;
Adam Cohenc0dcf592011-06-01 15:30:43 -070064import java.util.Arrays;
Adam Cohenf3900c22012-11-16 18:28:11 -080065import java.util.Collections;
66import java.util.Comparator;
Adam Cohenbfbfd262011-06-13 16:55:12 -070067import java.util.HashMap;
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
Adam Cohen2acce882012-03-28 19:03:19 -070077 private 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;
Mady Melloref044dd2015-06-02 15:35:07 -0700103 private StylusEventHelper mStylusEventHelper;
Michael Jurkadee05892010-07-27 10:01:56 -0700104
Adam Cohenefca0272016-02-24 19:19:06 -0800105 private ArrayList<FolderIcon.PreviewBackground> mFolderBackgrounds = new ArrayList<FolderIcon.PreviewBackground>();
106 FolderIcon.PreviewBackground mFolderLeaveBehind = new FolderIcon.PreviewBackground();
107 Paint mFolderBgPaint = new Paint();
Adam Cohen69ce2e52011-07-03 19:25:21 -0700108
Michael Jurka5f1c5092010-09-03 14:15:02 -0700109 private float mBackgroundAlpha;
Adam Cohenf34bab52010-09-30 14:11:56 -0700110
Tony Wickham33326072016-04-04 15:05:49 -0700111 private static final int BACKGROUND_ACTIVATE_DURATION =
112 FeatureFlags.LAUNCHER3_LEGACY_WORKSPACE_DND ? 120 : 0;
Sunny Goyal2805e632015-05-20 15:35:32 -0700113 private final TransitionDrawable mBackground;
114
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700115 // These values allow a fixed measurement to be set on the CellLayout.
116 private int mFixedWidth = -1;
117 private int mFixedHeight = -1;
118
Michael Jurka33945b22010-12-21 18:19:38 -0800119 // If we're actively dragging something over this screen, mIsDragOverlapping is true
120 private boolean mIsDragOverlapping = false;
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700121
Winson Chung150fbab2010-09-29 17:14:26 -0700122 // These arrays are used to implement the drag visualization on x-large screens.
Joe Onorato4be866d2010-10-10 11:26:02 -0700123 // They are used as circular arrays, indexed by mDragOutlineCurrent.
Adam Cohen091440a2015-03-18 14:16:05 -0700124 @Thunk Rect[] mDragOutlines = new Rect[4];
125 @Thunk float[] mDragOutlineAlphas = new float[mDragOutlines.length];
Joe Onorato4be866d2010-10-10 11:26:02 -0700126 private InterruptibleInOutAnimator[] mDragOutlineAnims =
127 new InterruptibleInOutAnimator[mDragOutlines.length];
Winson Chung150fbab2010-09-29 17:14:26 -0700128
129 // Used as an index into the above 3 arrays; indicates which is the most current value.
Joe Onorato4be866d2010-10-10 11:26:02 -0700130 private int mDragOutlineCurrent = 0;
Patrick Dubroy8e58e912010-10-14 13:21:48 -0700131 private final Paint mDragOutlinePaint = new Paint();
Winson Chung150fbab2010-09-29 17:14:26 -0700132
Sunny Goyal4fe5a372015-05-14 19:55:10 -0700133 private final ClickShadowView mTouchFeedbackView;
Patrick Dubroy96864c32011-03-10 17:17:23 -0800134
Sunny Goyal316490e2015-06-02 09:38:28 -0700135 @Thunk HashMap<CellLayout.LayoutParams, Animator> mReorderAnimators = new HashMap<>();
136 @Thunk HashMap<View, ReorderPreviewAnimation> mShakeAnimators = new HashMap<>();
Adam Cohen19f37922012-03-21 11:59:11 -0700137
138 private boolean mItemPlacementDirty = false;
Adam Cohenbfbfd262011-06-13 16:55:12 -0700139
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700140 // When a drag operation is in progress, holds the nearest cell to the touch point
141 private final int[] mDragCell = new int[2];
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800142
Joe Onorato4be866d2010-10-10 11:26:02 -0700143 private boolean mDragging = false;
144
Patrick Dubroyce34a972010-10-19 10:34:32 -0700145 private TimeInterpolator mEaseOutInterpolator;
Michael Jurkaa52570f2012-03-20 03:18:20 -0700146 private ShortcutAndWidgetContainer mShortcutsAndWidgets;
Patrick Dubroyce34a972010-10-19 10:34:32 -0700147
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800148 private boolean mIsHotseat = false;
Adam Cohen307fe232012-08-16 17:55:58 -0700149 private float mHotseatScale = 1f;
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800150
Adam Cohenfa3c58f2013-12-06 16:10:55 -0800151 public static final int MODE_SHOW_REORDER_HINT = 0;
152 public static final int MODE_DRAG_OVER = 1;
153 public static final int MODE_ON_DROP = 2;
154 public static final int MODE_ON_DROP_EXTERNAL = 3;
155 public static final int MODE_ACCEPT_DROP = 4;
Adam Cohen19f37922012-03-21 11:59:11 -0700156 private static final boolean DESTRUCTIVE_REORDER = false;
Adam Cohen482ed822012-03-02 14:15:13 -0800157 private static final boolean DEBUG_VISUALIZE_OCCUPIED = false;
158
Adam Cohenfa3c58f2013-12-06 16:10:55 -0800159 private static final float REORDER_PREVIEW_MAGNITUDE = 0.12f;
Adam Cohen19f37922012-03-21 11:59:11 -0700160 private static final int REORDER_ANIMATION_DURATION = 150;
Adam Cohen091440a2015-03-18 14:16:05 -0700161 @Thunk float mReorderPreviewAnimationMagnitude;
Adam Cohen19f37922012-03-21 11:59:11 -0700162
Adam Cohen482ed822012-03-02 14:15:13 -0800163 private ArrayList<View> mIntersectingViews = new ArrayList<View>();
164 private Rect mOccupiedRect = new Rect();
165 private int[] mDirectionVector = new int[2];
Adam Cohen19f37922012-03-21 11:59:11 -0700166 int[] mPreviousReorderDirection = new int[2];
Adam Cohenb209e632012-03-27 17:09:36 -0700167 private static final int INVALID_DIRECTION = -100;
Adam Cohen482ed822012-03-02 14:15:13 -0800168
Sunny Goyal2805e632015-05-20 15:35:32 -0700169 private final Rect mTempRect = new Rect();
Winson Chung3a6e7f32013-10-09 15:50:52 -0700170
Michael Jurkaca993832012-06-29 15:17:04 -0700171 private final static Paint sPaint = new Paint();
Romain Guy8a0bff52012-05-06 13:14:33 -0700172
Adam Cohenc9735cf2015-01-23 16:11:55 -0800173 // Related to accessible drag and drop
Sunny Goyale9b651e2015-04-24 11:44:51 -0700174 private DragAndDropAccessibilityDelegate mTouchHelper;
Adam Cohenc9735cf2015-01-23 16:11:55 -0800175 private boolean mUseTouchHelper = false;
Adam Cohenc9735cf2015-01-23 16:11:55 -0800176
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800177 public CellLayout(Context context) {
178 this(context, null);
179 }
180
181 public CellLayout(Context context, AttributeSet attrs) {
182 this(context, attrs, 0);
183 }
184
185 public CellLayout(Context context, AttributeSet attrs, int defStyle) {
186 super(context, attrs, defStyle);
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700187
188 // A ViewGroup usually does not draw, but CellLayout needs to draw a rectangle to show
189 // the user where a dragged item will land when dropped.
190 setWillNotDraw(false);
Romain Guyce3cbd12013-02-25 15:00:36 -0800191 setClipToPadding(false);
Tony2fd02082016-10-07 12:50:01 -0700192 mLauncher = Launcher.getLauncher(context);
Michael Jurkaa63c4522010-08-19 13:52:27 -0700193
Adam Cohen2e6da152015-05-06 11:42:25 -0700194 DeviceProfile grid = mLauncher.getDeviceProfile();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800195
Winson Chung11a1a532013-09-13 11:14:45 -0700196 mCellWidth = mCellHeight = -1;
Nilesh Agrawal5f7099a2014-01-02 15:54:57 -0800197 mFixedCellWidth = mFixedCellHeight = -1;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -0700198
199 mCountX = grid.inv.numColumns;
200 mCountY = grid.inv.numRows;
201 mOccupied = new GridOccupancy(mCountX, mCountY);
202 mTmpOccupied = new GridOccupancy(mCountX, mCountY);
203
Adam Cohen5b53f292012-03-29 14:30:35 -0700204 mPreviousReorderDirection[0] = INVALID_DIRECTION;
205 mPreviousReorderDirection[1] = INVALID_DIRECTION;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800206
Adam Cohenefca0272016-02-24 19:19:06 -0800207 mFolderLeaveBehind.delegateCellX = -1;
208 mFolderLeaveBehind.delegateCellY = -1;
209
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800210 setAlwaysDrawnWithCacheEnabled(false);
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700211 final Resources res = getResources();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700212 mHotseatScale = (float) grid.hotseatIconSizePx / grid.iconSizePx;
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700213
Tony Wickhame0c33232016-02-08 11:37:04 -0800214 mBackground = (TransitionDrawable) res.getDrawable(
215 FeatureFlags.LAUNCHER3_LEGACY_WORKSPACE_DND ? R.drawable.bg_screenpanel
216 : R.drawable.bg_celllayout);
Sunny Goyal2805e632015-05-20 15:35:32 -0700217 mBackground.setCallback(this);
Winson Chunge8f1d042015-07-31 12:39:57 -0700218 mBackground.setAlpha((int) (mBackgroundAlpha * 255));
Michael Jurka33945b22010-12-21 18:19:38 -0800219
Adam Cohenfa3c58f2013-12-06 16:10:55 -0800220 mReorderPreviewAnimationMagnitude = (REORDER_PREVIEW_MAGNITUDE *
Winson Chung5f8afe62013-08-12 16:19:28 -0700221 grid.iconSizePx);
Adam Cohen19f37922012-03-21 11:59:11 -0700222
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700223 // Initialize the data structures used for the drag visualization.
Patrick Dubroyce34a972010-10-19 10:34:32 -0700224 mEaseOutInterpolator = new DecelerateInterpolator(2.5f); // Quint ease out
Winson Chungb8c69f32011-10-19 21:36:08 -0700225 mDragCell[0] = mDragCell[1] = -1;
Joe Onorato4be866d2010-10-10 11:26:02 -0700226 for (int i = 0; i < mDragOutlines.length; i++) {
Adam Cohend41fbf52012-02-16 23:53:59 -0800227 mDragOutlines[i] = new Rect(-1, -1, -1, -1);
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700228 }
Sunny Goyalf28e6af2016-08-31 16:02:40 -0700229 mDragOutlinePaint.setColor(getResources().getColor(R.color.outline_color));
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700230
231 // When dragging things around the home screens, we show a green outline of
232 // where the item will land. The outlines gradually fade out, leaving a trail
233 // behind the drag path.
234 // Set up all the animations that are used to implement this fading.
235 final int duration = res.getInteger(R.integer.config_dragOutlineFadeTime);
Chet Haase472b2812010-10-14 07:02:04 -0700236 final float fromAlphaValue = 0;
237 final float toAlphaValue = (float)res.getInteger(R.integer.config_dragOutlineMaxAlpha);
Joe Onorato4be866d2010-10-10 11:26:02 -0700238
Patrick Dubroy8e58e912010-10-14 13:21:48 -0700239 Arrays.fill(mDragOutlineAlphas, fromAlphaValue);
Joe Onorato4be866d2010-10-10 11:26:02 -0700240
241 for (int i = 0; i < mDragOutlineAnims.length; i++) {
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700242 final InterruptibleInOutAnimator anim =
Michael Jurkaf1ad6082013-03-13 12:55:46 +0100243 new InterruptibleInOutAnimator(this, duration, fromAlphaValue, toAlphaValue);
Patrick Dubroyce34a972010-10-19 10:34:32 -0700244 anim.getAnimator().setInterpolator(mEaseOutInterpolator);
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700245 final int thisIndex = i;
Chet Haase472b2812010-10-14 07:02:04 -0700246 anim.getAnimator().addUpdateListener(new AnimatorUpdateListener() {
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700247 public void onAnimationUpdate(ValueAnimator animation) {
Joe Onorato4be866d2010-10-10 11:26:02 -0700248 final Bitmap outline = (Bitmap)anim.getTag();
249
250 // If an animation is started and then stopped very quickly, we can still
251 // get spurious updates we've cleared the tag. Guard against this.
252 if (outline == null) {
Tony Wickhama0628cc2015-10-14 15:23:04 -0700253 if (LOGD) {
Patrick Dubroyfe6bd872010-10-13 17:32:10 -0700254 Object val = animation.getAnimatedValue();
255 Log.d(TAG, "anim " + thisIndex + " update: " + val +
256 ", isStopped " + anim.isStopped());
257 }
Joe Onorato4be866d2010-10-10 11:26:02 -0700258 // Try to prevent it from continuing to run
259 animation.cancel();
260 } else {
Chet Haase472b2812010-10-14 07:02:04 -0700261 mDragOutlineAlphas[thisIndex] = (Float) animation.getAnimatedValue();
Adam Cohend41fbf52012-02-16 23:53:59 -0800262 CellLayout.this.invalidate(mDragOutlines[thisIndex]);
Joe Onorato4be866d2010-10-10 11:26:02 -0700263 }
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700264 }
265 });
Joe Onorato4be866d2010-10-10 11:26:02 -0700266 // The animation holds a reference to the drag outline bitmap as long is it's
267 // running. This way the bitmap can be GCed when the animations are complete.
Chet Haase472b2812010-10-14 07:02:04 -0700268 anim.getAnimator().addListener(new AnimatorListenerAdapter() {
Michael Jurka3c4c20f2010-10-28 15:36:06 -0700269 @Override
Joe Onorato4be866d2010-10-10 11:26:02 -0700270 public void onAnimationEnd(Animator animation) {
Chet Haase472b2812010-10-14 07:02:04 -0700271 if ((Float) ((ValueAnimator) animation).getAnimatedValue() == 0f) {
Joe Onorato4be866d2010-10-10 11:26:02 -0700272 anim.setTag(null);
273 }
274 }
275 });
276 mDragOutlineAnims[i] = anim;
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700277 }
Patrick Dubroyce34a972010-10-19 10:34:32 -0700278
Michael Jurkaa52570f2012-03-20 03:18:20 -0700279 mShortcutsAndWidgets = new ShortcutAndWidgetContainer(context);
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530280 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mCountX, mCountY);
Adam Cohen2374abf2013-04-16 14:56:57 -0700281
Mady Mellorbb835202015-07-15 16:34:34 -0700282 mStylusEventHelper = new StylusEventHelper(new SimpleOnStylusPressListener(this), this);
Mady Melloref044dd2015-06-02 15:35:07 -0700283
Sunny Goyal4fe5a372015-05-14 19:55:10 -0700284 mTouchFeedbackView = new ClickShadowView(context);
285 addView(mTouchFeedbackView);
Michael Jurkaa52570f2012-03-20 03:18:20 -0700286 addView(mShortcutsAndWidgets);
Michael Jurka18014792010-10-14 09:01:34 -0700287 }
288
Adam Cohenc9735cf2015-01-23 16:11:55 -0800289 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Sunny Goyale9b651e2015-04-24 11:44:51 -0700290 public void enableAccessibleDrag(boolean enable, int dragType) {
Adam Cohenc9735cf2015-01-23 16:11:55 -0800291 mUseTouchHelper = enable;
292 if (!enable) {
293 ViewCompat.setAccessibilityDelegate(this, null);
294 setImportantForAccessibility(IMPORTANT_FOR_ACCESSIBILITY_NO);
295 getShortcutsAndWidgets().setImportantForAccessibility(IMPORTANT_FOR_ACCESSIBILITY_NO);
296 setOnClickListener(mLauncher);
297 } else {
Sunny Goyale9b651e2015-04-24 11:44:51 -0700298 if (dragType == WORKSPACE_ACCESSIBILITY_DRAG &&
299 !(mTouchHelper instanceof WorkspaceAccessibilityHelper)) {
300 mTouchHelper = new WorkspaceAccessibilityHelper(this);
301 } else if (dragType == FOLDER_ACCESSIBILITY_DRAG &&
302 !(mTouchHelper instanceof FolderAccessibilityHelper)) {
303 mTouchHelper = new FolderAccessibilityHelper(this);
304 }
Adam Cohenc9735cf2015-01-23 16:11:55 -0800305 ViewCompat.setAccessibilityDelegate(this, mTouchHelper);
306 setImportantForAccessibility(IMPORTANT_FOR_ACCESSIBILITY_YES);
307 getShortcutsAndWidgets().setImportantForAccessibility(IMPORTANT_FOR_ACCESSIBILITY_YES);
308 setOnClickListener(mTouchHelper);
309 }
310
311 // Invalidate the accessibility hierarchy
312 if (getParent() != null) {
313 getParent().notifySubtreeAccessibilityStateChanged(
314 this, this, AccessibilityEvent.CONTENT_CHANGE_TYPE_SUBTREE);
315 }
316 }
317
318 @Override
319 public boolean dispatchHoverEvent(MotionEvent event) {
320 // Always attempt to dispatch hover events to accessibility first.
321 if (mUseTouchHelper && mTouchHelper.dispatchHoverEvent(event)) {
322 return true;
323 }
324 return super.dispatchHoverEvent(event);
325 }
326
327 @Override
Adam Cohenc9735cf2015-01-23 16:11:55 -0800328 public boolean onInterceptTouchEvent(MotionEvent ev) {
329 if (mUseTouchHelper ||
330 (mInterceptTouchListener != null && mInterceptTouchListener.onTouch(this, ev))) {
331 return true;
332 }
333 return false;
334 }
335
Mady Melloref044dd2015-06-02 15:35:07 -0700336 @Override
337 public boolean onTouchEvent(MotionEvent ev) {
338 boolean handled = super.onTouchEvent(ev);
339 // Stylus button press on a home screen should not switch between overview mode and
340 // the home screen mode, however, once in overview mode stylus button press should be
341 // enabled to allow rearranging the different home screens. So check what mode
342 // the workspace is in, and only perform stylus button presses while in overview mode.
343 if (mLauncher.mWorkspace.isInOverviewMode()
Mady Mellorbb835202015-07-15 16:34:34 -0700344 && mStylusEventHelper.onMotionEvent(ev)) {
Mady Melloref044dd2015-06-02 15:35:07 -0700345 return true;
346 }
347 return handled;
348 }
349
Chris Craik01f2d7f2013-10-01 14:41:56 -0700350 public void enableHardwareLayer(boolean hasLayer) {
351 mShortcutsAndWidgets.setLayerType(hasLayer ? LAYER_TYPE_HARDWARE : LAYER_TYPE_NONE, sPaint);
Michael Jurkad51f33a2012-06-28 15:35:26 -0700352 }
353
354 public void buildHardwareLayer() {
355 mShortcutsAndWidgets.buildLayer();
Adam Cohen2801caf2011-05-13 20:57:39 -0700356 }
357
Adam Cohen307fe232012-08-16 17:55:58 -0700358 public float getChildrenScale() {
359 return mIsHotseat ? mHotseatScale : 1.0f;
360 }
361
Winson Chung5f8afe62013-08-12 16:19:28 -0700362 public void setCellDimensions(int width, int height) {
Winson Chung11a1a532013-09-13 11:14:45 -0700363 mFixedCellWidth = mCellWidth = width;
364 mFixedCellHeight = mCellHeight = height;
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530365 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mCountX, mCountY);
Winson Chung5f8afe62013-08-12 16:19:28 -0700366 }
367
Adam Cohen2801caf2011-05-13 20:57:39 -0700368 public void setGridSize(int x, int y) {
369 mCountX = x;
370 mCountY = y;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -0700371 mOccupied = new GridOccupancy(mCountX, mCountY);
372 mTmpOccupied = new GridOccupancy(mCountX, mCountY);
Adam Cohen7fbec102012-03-27 12:42:19 -0700373 mTempRectStack.clear();
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530374 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mCountX, mCountY);
Adam Cohen76fc0852011-06-17 13:26:23 -0700375 requestLayout();
Adam Cohen2801caf2011-05-13 20:57:39 -0700376 }
377
Adam Cohen2374abf2013-04-16 14:56:57 -0700378 // Set whether or not to invert the layout horizontally if the layout is in RTL mode.
379 public void setInvertIfRtl(boolean invert) {
380 mShortcutsAndWidgets.setInvertIfRtl(invert);
381 }
382
Adam Cohen917e3882013-10-31 15:03:35 -0700383 public void setDropPending(boolean pending) {
384 mDropPending = pending;
385 }
386
387 public boolean isDropPending() {
388 return mDropPending;
389 }
390
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700391 @Override
392 public void setPressedIcon(BubbleTextView icon, Bitmap background) {
Sunny Goyal508da152014-08-14 10:53:27 -0700393 if (icon == null || background == null) {
394 mTouchFeedbackView.setBitmap(null);
395 mTouchFeedbackView.animate().cancel();
396 } else {
Sunny Goyal508da152014-08-14 10:53:27 -0700397 if (mTouchFeedbackView.setBitmap(background)) {
Winsonbe9798b2016-07-20 12:55:49 -0700398 mTouchFeedbackView.alignWithIconView(icon, mShortcutsAndWidgets,
399 null /* clipAgainstView */);
Sunny Goyal4fe5a372015-05-14 19:55:10 -0700400 mTouchFeedbackView.animateShadow();
Sunny Goyal508da152014-08-14 10:53:27 -0700401 }
Patrick Dubroy96864c32011-03-10 17:17:23 -0800402 }
403 }
404
Adam Cohenc50438c2014-08-19 17:43:05 -0700405 void disableDragTarget() {
406 mIsDragTarget = false;
407 }
408
Tony Wickham0f97b782015-12-02 17:55:07 -0800409 public boolean isDragTarget() {
410 return mIsDragTarget;
411 }
412
Adam Cohenc50438c2014-08-19 17:43:05 -0700413 void setIsDragOverlapping(boolean isDragOverlapping) {
414 if (mIsDragOverlapping != isDragOverlapping) {
415 mIsDragOverlapping = isDragOverlapping;
Sunny Goyal2805e632015-05-20 15:35:32 -0700416 if (mIsDragOverlapping) {
417 mBackground.startTransition(BACKGROUND_ACTIVATE_DURATION);
418 } else {
Winson Chunge8f1d042015-07-31 12:39:57 -0700419 if (mBackgroundAlpha > 0f) {
420 mBackground.reverseTransition(BACKGROUND_ACTIVATE_DURATION);
421 } else {
422 mBackground.resetTransition();
423 }
Sunny Goyal2805e632015-05-20 15:35:32 -0700424 }
Adam Cohenc50438c2014-08-19 17:43:05 -0700425 invalidate();
426 }
427 }
428
Sunny Goyale2fd14b2015-08-27 17:45:46 -0700429 public void disableJailContent() {
430 mJailContent = false;
431 }
432
433 @Override
434 protected void dispatchSaveInstanceState(SparseArray<Parcelable> container) {
435 if (mJailContent) {
436 ParcelableSparseArray jail = getJailedArray(container);
437 super.dispatchSaveInstanceState(jail);
438 container.put(R.id.cell_layout_jail_id, jail);
439 } else {
440 super.dispatchSaveInstanceState(container);
441 }
442 }
443
444 @Override
445 protected void dispatchRestoreInstanceState(SparseArray<Parcelable> container) {
446 super.dispatchRestoreInstanceState(mJailContent ? getJailedArray(container) : container);
447 }
448
449 private ParcelableSparseArray getJailedArray(SparseArray<Parcelable> container) {
450 final Parcelable parcelable = container.get(R.id.cell_layout_jail_id);
451 return parcelable instanceof ParcelableSparseArray ?
452 (ParcelableSparseArray) parcelable : new ParcelableSparseArray();
453 }
454
Tony Wickham0f97b782015-12-02 17:55:07 -0800455 public boolean getIsDragOverlapping() {
456 return mIsDragOverlapping;
457 }
458
Jeff Sharkey83f111d2009-04-20 21:03:13 -0700459 @Override
Patrick Dubroy1262e362010-10-06 15:49:50 -0700460 protected void onDraw(Canvas canvas) {
Sunny Goyal05739772015-05-19 19:59:09 -0700461 if (!mIsDragTarget) {
462 return;
463 }
464
Michael Jurka3e7c7632010-10-02 16:01:03 -0700465 // When we're large, we are either drawn in a "hover" state (ie when dragging an item to
466 // a neighboring page) or with just a normal background (if backgroundAlpha > 0.0f)
467 // When we're small, we are either drawn normally or in the "accepts drops" state (during
468 // a drag). However, we also drag the mini hover background *over* one of those two
469 // backgrounds
Sunny Goyal05739772015-05-19 19:59:09 -0700470 if (mBackgroundAlpha > 0.0f) {
Sunny Goyal2805e632015-05-20 15:35:32 -0700471 mBackground.draw(canvas);
Michael Jurkaa63c4522010-08-19 13:52:27 -0700472 }
Romain Guya6abce82009-11-10 02:54:41 -0800473
Patrick Dubroy8e58e912010-10-14 13:21:48 -0700474 final Paint paint = mDragOutlinePaint;
Joe Onorato4be866d2010-10-10 11:26:02 -0700475 for (int i = 0; i < mDragOutlines.length; i++) {
Chet Haase472b2812010-10-14 07:02:04 -0700476 final float alpha = mDragOutlineAlphas[i];
Joe Onorato4be866d2010-10-10 11:26:02 -0700477 if (alpha > 0) {
Joe Onorato4be866d2010-10-10 11:26:02 -0700478 final Bitmap b = (Bitmap) mDragOutlineAnims[i].getTag();
Chet Haase472b2812010-10-14 07:02:04 -0700479 paint.setAlpha((int)(alpha + .5f));
Sunny Goyal106bf642015-07-16 12:18:06 -0700480 canvas.drawBitmap(b, null, mDragOutlines[i], paint);
Winson Chung150fbab2010-09-29 17:14:26 -0700481 }
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700482 }
Patrick Dubroy96864c32011-03-10 17:17:23 -0800483
Adam Cohen482ed822012-03-02 14:15:13 -0800484 if (DEBUG_VISUALIZE_OCCUPIED) {
485 int[] pt = new int[2];
486 ColorDrawable cd = new ColorDrawable(Color.RED);
Adam Cohene7587d22012-05-24 18:50:02 -0700487 cd.setBounds(0, 0, mCellWidth, mCellHeight);
Adam Cohen482ed822012-03-02 14:15:13 -0800488 for (int i = 0; i < mCountX; i++) {
489 for (int j = 0; j < mCountY; j++) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -0700490 if (mOccupied.cells[i][j]) {
Adam Cohen482ed822012-03-02 14:15:13 -0800491 cellToPoint(i, j, pt);
492 canvas.save();
493 canvas.translate(pt[0], pt[1]);
494 cd.draw(canvas);
495 canvas.restore();
496 }
497 }
498 }
499 }
500
Adam Cohenefca0272016-02-24 19:19:06 -0800501 for (int i = 0; i < mFolderBackgrounds.size(); i++) {
502 FolderIcon.PreviewBackground bg = mFolderBackgrounds.get(i);
503 cellToPoint(bg.delegateCellX, bg.delegateCellY, mTempLocation);
504 canvas.save();
505 canvas.translate(mTempLocation[0], mTempLocation[1]);
506 bg.drawBackground(canvas, mFolderBgPaint);
Adam Cohenf172b742016-03-30 19:28:34 -0700507 if (!bg.isClipping) {
508 bg.drawBackgroundStroke(canvas, mFolderBgPaint);
509 }
Adam Cohenefca0272016-02-24 19:19:06 -0800510 canvas.restore();
Adam Cohen69ce2e52011-07-03 19:25:21 -0700511 }
Adam Cohenc51934b2011-07-26 21:07:43 -0700512
Adam Cohenefca0272016-02-24 19:19:06 -0800513 if (mFolderLeaveBehind.delegateCellX >= 0 && mFolderLeaveBehind.delegateCellY >= 0) {
514 cellToPoint(mFolderLeaveBehind.delegateCellX,
515 mFolderLeaveBehind.delegateCellY, mTempLocation);
516 canvas.save();
517 canvas.translate(mTempLocation[0], mTempLocation[1]);
518 mFolderLeaveBehind.drawLeaveBehind(canvas, mFolderBgPaint);
519 canvas.restore();
Adam Cohenc51934b2011-07-26 21:07:43 -0700520 }
Adam Cohen69ce2e52011-07-03 19:25:21 -0700521 }
522
Adam Cohenefca0272016-02-24 19:19:06 -0800523 @Override
524 protected void dispatchDraw(Canvas canvas) {
525 super.dispatchDraw(canvas);
526
527 for (int i = 0; i < mFolderBackgrounds.size(); i++) {
528 FolderIcon.PreviewBackground bg = mFolderBackgrounds.get(i);
Adam Cohenf172b742016-03-30 19:28:34 -0700529 if (bg.isClipping) {
530 cellToPoint(bg.delegateCellX, bg.delegateCellY, mTempLocation);
531 canvas.save();
532 canvas.translate(mTempLocation[0], mTempLocation[1]);
533 bg.drawBackgroundStroke(canvas, mFolderBgPaint);
534 canvas.restore();
535 }
Adam Cohenefca0272016-02-24 19:19:06 -0800536 }
Adam Cohen69ce2e52011-07-03 19:25:21 -0700537 }
538
Adam Cohenefca0272016-02-24 19:19:06 -0800539 public void addFolderBackground(FolderIcon.PreviewBackground bg) {
540 mFolderBackgrounds.add(bg);
541 }
542 public void removeFolderBackground(FolderIcon.PreviewBackground bg) {
543 mFolderBackgrounds.remove(bg);
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700544 }
545
Adam Cohenc51934b2011-07-26 21:07:43 -0700546 public void setFolderLeaveBehindCell(int x, int y) {
Adam Cohenefca0272016-02-24 19:19:06 -0800547
548 DeviceProfile grid = mLauncher.getDeviceProfile();
549 View child = getChildAt(x, y);
550
551 mFolderLeaveBehind.setup(getResources().getDisplayMetrics(), grid, null,
552 child.getMeasuredWidth(), child.getPaddingTop());
553
554 mFolderLeaveBehind.delegateCellX = x;
555 mFolderLeaveBehind.delegateCellY = y;
Adam Cohenc51934b2011-07-26 21:07:43 -0700556 invalidate();
557 }
558
559 public void clearFolderLeaveBehind() {
Adam Cohenefca0272016-02-24 19:19:06 -0800560 mFolderLeaveBehind.delegateCellX = -1;
561 mFolderLeaveBehind.delegateCellY = -1;
Adam Cohenc51934b2011-07-26 21:07:43 -0700562 invalidate();
563 }
564
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700565 @Override
Michael Jurkae6235dd2011-10-04 15:02:05 -0700566 public boolean shouldDelayChildPressedState() {
567 return false;
568 }
569
Adam Cohen1462de32012-07-24 22:34:36 -0700570 public void restoreInstanceState(SparseArray<Parcelable> states) {
Sunny Goyal33a152f2014-07-22 12:13:14 -0700571 try {
572 dispatchRestoreInstanceState(states);
573 } catch (IllegalArgumentException ex) {
Sunny Goyal6c56c682015-07-16 14:09:05 -0700574 if (ProviderConfig.IS_DOGFOOD_BUILD) {
Sunny Goyal33a152f2014-07-22 12:13:14 -0700575 throw ex;
576 }
577 // Mismatched viewId / viewType preventing restore. Skip restore on production builds.
578 Log.e(TAG, "Ignoring an error while restoring a view instance state", ex);
579 }
Adam Cohen1462de32012-07-24 22:34:36 -0700580 }
581
Michael Jurkae6235dd2011-10-04 15:02:05 -0700582 @Override
Jeff Sharkey83f111d2009-04-20 21:03:13 -0700583 public void cancelLongPress() {
584 super.cancelLongPress();
585
586 // Cancel long press for all children
587 final int count = getChildCount();
588 for (int i = 0; i < count; i++) {
589 final View child = getChildAt(i);
590 child.cancelLongPress();
591 }
592 }
593
Michael Jurkadee05892010-07-27 10:01:56 -0700594 public void setOnInterceptTouchListener(View.OnTouchListener listener) {
595 mInterceptTouchListener = listener;
596 }
597
Hyunyoung Songee3e6a72015-02-20 14:25:27 -0800598 public int getCountX() {
Adam Cohend22015c2010-07-26 22:02:18 -0700599 return mCountX;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800600 }
601
Hyunyoung Songee3e6a72015-02-20 14:25:27 -0800602 public int getCountY() {
Adam Cohend22015c2010-07-26 22:02:18 -0700603 return mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800604 }
605
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800606 public void setIsHotseat(boolean isHotseat) {
607 mIsHotseat = isHotseat;
Jon Miranda93e1f042016-11-11 14:13:04 -0800608 mShortcutsAndWidgets.setContainerType(isHotseat
609 ? ShortcutAndWidgetContainer.HOTSEAT
610 : ShortcutAndWidgetContainer.DEFAULT);
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800611 }
612
Sunny Goyale9b651e2015-04-24 11:44:51 -0700613 public boolean isHotseat() {
614 return mIsHotseat;
615 }
616
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800617 public boolean addViewToCellLayout(View child, int index, int childId, LayoutParams params,
Sunny Goyalf7a29e82015-04-24 15:20:43 -0700618 boolean markCells) {
Winson Chungaafa03c2010-06-11 17:34:16 -0700619 final LayoutParams lp = params;
620
Andrew Flynnde38e422012-05-08 11:22:15 -0700621 // Hotseat icons - remove text
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800622 if (child instanceof BubbleTextView) {
623 BubbleTextView bubbleChild = (BubbleTextView) child;
Winson Chung5f8afe62013-08-12 16:19:28 -0700624 bubbleChild.setTextVisibility(!mIsHotseat);
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800625 }
626
Adam Cohen307fe232012-08-16 17:55:58 -0700627 child.setScaleX(getChildrenScale());
628 child.setScaleY(getChildrenScale());
629
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800630 // Generate an id for each view, this assumes we have at most 256x256 cells
631 // per workspace screen
Adam Cohend22015c2010-07-26 22:02:18 -0700632 if (lp.cellX >= 0 && lp.cellX <= mCountX - 1 && lp.cellY >= 0 && lp.cellY <= mCountY - 1) {
Winson Chungaafa03c2010-06-11 17:34:16 -0700633 // If the horizontal or vertical span is set to -1, it is taken to
634 // mean that it spans the extent of the CellLayout
Adam Cohend22015c2010-07-26 22:02:18 -0700635 if (lp.cellHSpan < 0) lp.cellHSpan = mCountX;
636 if (lp.cellVSpan < 0) lp.cellVSpan = mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800637
Winson Chungaafa03c2010-06-11 17:34:16 -0700638 child.setId(childId);
Tony Wickhama0628cc2015-10-14 15:23:04 -0700639 if (LOGD) {
640 Log.d(TAG, "Adding view to ShortcutsAndWidgetsContainer: " + child);
641 }
Sunny Goyalf7a29e82015-04-24 15:20:43 -0700642 mShortcutsAndWidgets.addView(child, index, lp);
Michael Jurkadee05892010-07-27 10:01:56 -0700643
Michael Jurkaf3ca3ab2010-10-20 17:08:24 -0700644 if (markCells) markCellsAsOccupiedForView(child);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700645
Winson Chungaafa03c2010-06-11 17:34:16 -0700646 return true;
647 }
648 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800649 }
Michael Jurka3e7c7632010-10-02 16:01:03 -0700650
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800651 @Override
Michael Jurka0280c3b2010-09-17 15:00:07 -0700652 public void removeAllViews() {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -0700653 mOccupied.clear();
Michael Jurkaa52570f2012-03-20 03:18:20 -0700654 mShortcutsAndWidgets.removeAllViews();
Michael Jurka0280c3b2010-09-17 15:00:07 -0700655 }
656
657 @Override
658 public void removeAllViewsInLayout() {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700659 if (mShortcutsAndWidgets.getChildCount() > 0) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -0700660 mOccupied.clear();
Michael Jurkaa52570f2012-03-20 03:18:20 -0700661 mShortcutsAndWidgets.removeAllViewsInLayout();
Michael Jurka7cfc2822011-08-02 20:19:24 -0700662 }
Michael Jurka0280c3b2010-09-17 15:00:07 -0700663 }
664
665 @Override
666 public void removeView(View view) {
667 markCellsAsUnoccupiedForView(view);
Michael Jurkaa52570f2012-03-20 03:18:20 -0700668 mShortcutsAndWidgets.removeView(view);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700669 }
670
671 @Override
672 public void removeViewAt(int index) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700673 markCellsAsUnoccupiedForView(mShortcutsAndWidgets.getChildAt(index));
674 mShortcutsAndWidgets.removeViewAt(index);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700675 }
676
677 @Override
678 public void removeViewInLayout(View view) {
679 markCellsAsUnoccupiedForView(view);
Michael Jurkaa52570f2012-03-20 03:18:20 -0700680 mShortcutsAndWidgets.removeViewInLayout(view);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700681 }
682
683 @Override
684 public void removeViews(int start, int count) {
685 for (int i = start; i < start + count; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700686 markCellsAsUnoccupiedForView(mShortcutsAndWidgets.getChildAt(i));
Michael Jurka0280c3b2010-09-17 15:00:07 -0700687 }
Michael Jurkaa52570f2012-03-20 03:18:20 -0700688 mShortcutsAndWidgets.removeViews(start, count);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700689 }
690
691 @Override
692 public void removeViewsInLayout(int start, int count) {
693 for (int i = start; i < start + count; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700694 markCellsAsUnoccupiedForView(mShortcutsAndWidgets.getChildAt(i));
Michael Jurka0280c3b2010-09-17 15:00:07 -0700695 }
Michael Jurkaa52570f2012-03-20 03:18:20 -0700696 mShortcutsAndWidgets.removeViewsInLayout(start, count);
Michael Jurkaabded662011-03-04 12:06:57 -0800697 }
698
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700699 /**
Winson Chungaafa03c2010-06-11 17:34:16 -0700700 * Given a point, return the cell that strictly encloses that point
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800701 * @param x X coordinate of the point
702 * @param y Y coordinate of the point
703 * @param result Array of 2 ints to hold the x and y coordinate of the cell
704 */
Sunny Goyale9b651e2015-04-24 11:44:51 -0700705 public void pointToCellExact(int x, int y, int[] result) {
Winson Chung4b825dcd2011-06-19 12:41:22 -0700706 final int hStartPadding = getPaddingLeft();
707 final int vStartPadding = getPaddingTop();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800708
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530709 result[0] = (x - hStartPadding) / mCellWidth;
710 result[1] = (y - vStartPadding) / mCellHeight;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800711
Adam Cohend22015c2010-07-26 22:02:18 -0700712 final int xAxis = mCountX;
713 final int yAxis = mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800714
715 if (result[0] < 0) result[0] = 0;
716 if (result[0] >= xAxis) result[0] = xAxis - 1;
717 if (result[1] < 0) result[1] = 0;
718 if (result[1] >= yAxis) result[1] = yAxis - 1;
719 }
Winson Chungaafa03c2010-06-11 17:34:16 -0700720
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800721 /**
722 * Given a point, return the cell that most closely encloses that point
723 * @param x X coordinate of the point
724 * @param y Y coordinate of the point
725 * @param result Array of 2 ints to hold the x and y coordinate of the cell
726 */
727 void pointToCellRounded(int x, int y, int[] result) {
728 pointToCellExact(x + (mCellWidth / 2), y + (mCellHeight / 2), result);
729 }
730
731 /**
732 * Given a cell coordinate, return the point that represents the upper left corner of that cell
Winson Chungaafa03c2010-06-11 17:34:16 -0700733 *
734 * @param cellX X coordinate of the cell
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800735 * @param cellY Y coordinate of the cell
Winson Chungaafa03c2010-06-11 17:34:16 -0700736 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800737 * @param result Array of 2 ints to hold the x and y coordinate of the point
738 */
739 void cellToPoint(int cellX, int cellY, int[] result) {
Winson Chung4b825dcd2011-06-19 12:41:22 -0700740 final int hStartPadding = getPaddingLeft();
741 final int vStartPadding = getPaddingTop();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800742
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530743 result[0] = hStartPadding + cellX * mCellWidth;
744 result[1] = vStartPadding + cellY * mCellHeight;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800745 }
746
Adam Cohene3e27a82011-04-15 12:07:39 -0700747 /**
Adam Cohen482ed822012-03-02 14:15:13 -0800748 * Given a cell coordinate, return the point that represents the center of the cell
Adam Cohene3e27a82011-04-15 12:07:39 -0700749 *
750 * @param cellX X coordinate of the cell
751 * @param cellY Y coordinate of the cell
752 *
753 * @param result Array of 2 ints to hold the x and y coordinate of the point
754 */
755 void cellToCenterPoint(int cellX, int cellY, int[] result) {
Adam Cohen47a876d2012-03-19 13:21:41 -0700756 regionToCenterPoint(cellX, cellY, 1, 1, result);
757 }
758
759 /**
760 * Given a cell coordinate and span return the point that represents the center of the regio
761 *
762 * @param cellX X coordinate of the cell
763 * @param cellY Y coordinate of the cell
764 *
765 * @param result Array of 2 ints to hold the x and y coordinate of the point
766 */
767 void regionToCenterPoint(int cellX, int cellY, int spanX, int spanY, int[] result) {
Winson Chung4b825dcd2011-06-19 12:41:22 -0700768 final int hStartPadding = getPaddingLeft();
769 final int vStartPadding = getPaddingTop();
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530770 result[0] = hStartPadding + cellX * mCellWidth + (spanX * mCellWidth) / 2;
771 result[1] = vStartPadding + cellY * mCellHeight + (spanY * mCellHeight) / 2;
Adam Cohene3e27a82011-04-15 12:07:39 -0700772 }
773
Adam Cohen19f37922012-03-21 11:59:11 -0700774 /**
775 * Given a cell coordinate and span fills out a corresponding pixel rect
776 *
777 * @param cellX X coordinate of the cell
778 * @param cellY Y coordinate of the cell
779 * @param result Rect in which to write the result
780 */
781 void regionToRect(int cellX, int cellY, int spanX, int spanY, Rect result) {
782 final int hStartPadding = getPaddingLeft();
783 final int vStartPadding = getPaddingTop();
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530784 final int left = hStartPadding + cellX * mCellWidth;
785 final int top = vStartPadding + cellY * mCellHeight;
786 result.set(left, top, left + (spanX * mCellWidth), top + (spanY * mCellHeight));
Adam Cohen19f37922012-03-21 11:59:11 -0700787 }
788
Adam Cohen482ed822012-03-02 14:15:13 -0800789 public float getDistanceFromCell(float x, float y, int[] cell) {
790 cellToCenterPoint(cell[0], cell[1], mTmpPoint);
Sunny Goyalf7a29e82015-04-24 15:20:43 -0700791 return (float) Math.hypot(x - mTmpPoint[0], y - mTmpPoint[1]);
Adam Cohen482ed822012-03-02 14:15:13 -0800792 }
793
Adam Cohenf9c184a2016-01-15 16:47:43 -0800794 public int getCellWidth() {
Romain Guy84f296c2009-11-04 15:00:44 -0800795 return mCellWidth;
796 }
797
798 int getCellHeight() {
799 return mCellHeight;
800 }
801
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700802 public void setFixedSize(int width, int height) {
803 mFixedWidth = width;
804 mFixedHeight = height;
805 }
806
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800807 @Override
808 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800809 int widthSpecMode = MeasureSpec.getMode(widthMeasureSpec);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800810 int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec);
Winson Chung5f8afe62013-08-12 16:19:28 -0700811 int widthSize = MeasureSpec.getSize(widthMeasureSpec);
812 int heightSize = MeasureSpec.getSize(heightMeasureSpec);
Winson Chung2d75f122013-09-23 16:53:31 -0700813 int childWidthSize = widthSize - (getPaddingLeft() + getPaddingRight());
814 int childHeightSize = heightSize - (getPaddingTop() + getPaddingBottom());
Winson Chung11a1a532013-09-13 11:14:45 -0700815 if (mFixedCellWidth < 0 || mFixedCellHeight < 0) {
Sunny Goyalc6205602015-05-21 20:46:33 -0700816 int cw = DeviceProfile.calculateCellWidth(childWidthSize, mCountX);
817 int ch = DeviceProfile.calculateCellHeight(childHeightSize, mCountY);
Winson Chung11a1a532013-09-13 11:14:45 -0700818 if (cw != mCellWidth || ch != mCellHeight) {
819 mCellWidth = cw;
820 mCellHeight = ch;
Sunny Goyalaa8a8712016-11-20 15:26:01 +0530821 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mCountX, mCountY);
Winson Chung11a1a532013-09-13 11:14:45 -0700822 }
Winson Chung5f8afe62013-08-12 16:19:28 -0700823 }
Winson Chungaafa03c2010-06-11 17:34:16 -0700824
Winson Chung2d75f122013-09-23 16:53:31 -0700825 int newWidth = childWidthSize;
826 int newHeight = childHeightSize;
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700827 if (mFixedWidth > 0 && mFixedHeight > 0) {
828 newWidth = mFixedWidth;
829 newHeight = mFixedHeight;
830 } else if (widthSpecMode == MeasureSpec.UNSPECIFIED || heightSpecMode == MeasureSpec.UNSPECIFIED) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800831 throw new RuntimeException("CellLayout cannot have UNSPECIFIED dimensions");
832 }
833
Sunny Goyal4fe5a372015-05-14 19:55:10 -0700834 // Make the feedback view large enough to hold the blur bitmap.
835 mTouchFeedbackView.measure(
836 MeasureSpec.makeMeasureSpec(mCellWidth + mTouchFeedbackView.getExtraSize(),
837 MeasureSpec.EXACTLY),
838 MeasureSpec.makeMeasureSpec(mCellHeight + mTouchFeedbackView.getExtraSize(),
839 MeasureSpec.EXACTLY));
840
841 mShortcutsAndWidgets.measure(
842 MeasureSpec.makeMeasureSpec(newWidth, MeasureSpec.EXACTLY),
843 MeasureSpec.makeMeasureSpec(newHeight, MeasureSpec.EXACTLY));
844
845 int maxWidth = mShortcutsAndWidgets.getMeasuredWidth();
846 int maxHeight = mShortcutsAndWidgets.getMeasuredHeight();
Winson Chung2d75f122013-09-23 16:53:31 -0700847 if (mFixedWidth > 0 && mFixedHeight > 0) {
848 setMeasuredDimension(maxWidth, maxHeight);
849 } else {
850 setMeasuredDimension(widthSize, heightSize);
851 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800852 }
853
854 @Override
Michael Jurka28750fb2010-09-24 17:43:49 -0700855 protected void onLayout(boolean changed, int l, int t, int r, int b) {
Tony Wickham26b01422015-11-10 14:44:32 -0800856 boolean isFullscreen = mShortcutsAndWidgets.getChildCount() > 0 &&
857 ((LayoutParams) mShortcutsAndWidgets.getChildAt(0).getLayoutParams()).isFullscreen;
858 int left = getPaddingLeft();
859 if (!isFullscreen) {
Tony Wickhama501d492015-11-03 18:05:01 -0800860 left += (int) Math.ceil(getUnusedHorizontalSpace() / 2f);
Tony Wickham26b01422015-11-10 14:44:32 -0800861 }
Sunny Goyal7c786f72016-06-01 14:08:21 -0700862 int right = r - l - getPaddingRight();
863 if (!isFullscreen) {
864 right -= (int) Math.ceil(getUnusedHorizontalSpace() / 2f);
865 }
866
Winson Chung38848ca2013-10-08 12:03:44 -0700867 int top = getPaddingTop();
Sunny Goyal7c786f72016-06-01 14:08:21 -0700868 int bottom = b - t - getPaddingBottom();
Sunny Goyal4fe5a372015-05-14 19:55:10 -0700869
870 mTouchFeedbackView.layout(left, top,
871 left + mTouchFeedbackView.getMeasuredWidth(),
872 top + mTouchFeedbackView.getMeasuredHeight());
Sunny Goyal7c786f72016-06-01 14:08:21 -0700873 mShortcutsAndWidgets.layout(left, top, right, bottom);
874
875 // Expand the background drawing bounds by the padding baked into the background drawable
876 mBackground.getPadding(mTempRect);
877 mBackground.setBounds(
878 left - mTempRect.left,
879 top - mTempRect.top,
880 right + mTempRect.right,
881 bottom + mTempRect.bottom);
882 }
883
Tony Wickhama501d492015-11-03 18:05:01 -0800884 /**
885 * Returns the amount of space left over after subtracting padding and cells. This space will be
886 * very small, a few pixels at most, and is a result of rounding down when calculating the cell
887 * width in {@link DeviceProfile#calculateCellWidth(int, int)}.
888 */
889 public int getUnusedHorizontalSpace() {
890 return getMeasuredWidth() - getPaddingLeft() - getPaddingRight() - (mCountX * mCellWidth);
891 }
892
Michael Jurka5f1c5092010-09-03 14:15:02 -0700893 public float getBackgroundAlpha() {
894 return mBackgroundAlpha;
Michael Jurkadee05892010-07-27 10:01:56 -0700895 }
896
Michael Jurka5f1c5092010-09-03 14:15:02 -0700897 public void setBackgroundAlpha(float alpha) {
Michael Jurkaafaa0502011-12-13 18:22:50 -0800898 if (mBackgroundAlpha != alpha) {
899 mBackgroundAlpha = alpha;
Sunny Goyal2805e632015-05-20 15:35:32 -0700900 mBackground.setAlpha((int) (mBackgroundAlpha * 255));
Michael Jurkaafaa0502011-12-13 18:22:50 -0800901 }
Michael Jurkadee05892010-07-27 10:01:56 -0700902 }
903
Sunny Goyal2805e632015-05-20 15:35:32 -0700904 @Override
905 protected boolean verifyDrawable(Drawable who) {
906 return super.verifyDrawable(who) || (mIsDragTarget && who == mBackground);
907 }
908
Michael Jurkaa52570f2012-03-20 03:18:20 -0700909 public void setShortcutAndWidgetAlpha(float alpha) {
Sunny Goyal02b50812014-09-10 15:44:42 -0700910 mShortcutsAndWidgets.setAlpha(alpha);
Michael Jurkadee05892010-07-27 10:01:56 -0700911 }
912
Michael Jurkaa52570f2012-03-20 03:18:20 -0700913 public ShortcutAndWidgetContainer getShortcutsAndWidgets() {
Sunny Goyaldcbcc862014-08-12 15:58:36 -0700914 return mShortcutsAndWidgets;
Michael Jurkaa52570f2012-03-20 03:18:20 -0700915 }
916
Patrick Dubroy440c3602010-07-13 17:50:32 -0700917 public View getChildAt(int x, int y) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700918 return mShortcutsAndWidgets.getChildAt(x, y);
Patrick Dubroy440c3602010-07-13 17:50:32 -0700919 }
920
Adam Cohen76fc0852011-06-17 13:26:23 -0700921 public boolean animateChildToPosition(final View child, int cellX, int cellY, int duration,
Adam Cohen482ed822012-03-02 14:15:13 -0800922 int delay, boolean permanent, boolean adjustOccupied) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700923 ShortcutAndWidgetContainer clc = getShortcutsAndWidgets();
Adam Cohen482ed822012-03-02 14:15:13 -0800924
Adam Cohen19f37922012-03-21 11:59:11 -0700925 if (clc.indexOfChild(child) != -1) {
Adam Cohenbfbfd262011-06-13 16:55:12 -0700926 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
927 final ItemInfo info = (ItemInfo) child.getTag();
928
929 // We cancel any existing animations
930 if (mReorderAnimators.containsKey(lp)) {
931 mReorderAnimators.get(lp).cancel();
932 mReorderAnimators.remove(lp);
933 }
934
Adam Cohen482ed822012-03-02 14:15:13 -0800935 final int oldX = lp.x;
936 final int oldY = lp.y;
937 if (adjustOccupied) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -0700938 GridOccupancy occupied = permanent ? mOccupied : mTmpOccupied;
939 occupied.markCells(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan, false);
940 occupied.markCells(cellX, cellY, lp.cellHSpan, lp.cellVSpan, true);
Adam Cohen482ed822012-03-02 14:15:13 -0800941 }
Adam Cohenbfbfd262011-06-13 16:55:12 -0700942 lp.isLockedToGrid = true;
Adam Cohen482ed822012-03-02 14:15:13 -0800943 if (permanent) {
944 lp.cellX = info.cellX = cellX;
945 lp.cellY = info.cellY = cellY;
946 } else {
947 lp.tmpCellX = cellX;
948 lp.tmpCellY = cellY;
949 }
Adam Cohenbfbfd262011-06-13 16:55:12 -0700950 clc.setupLp(lp);
951 lp.isLockedToGrid = false;
Adam Cohen482ed822012-03-02 14:15:13 -0800952 final int newX = lp.x;
953 final int newY = lp.y;
Adam Cohenbfbfd262011-06-13 16:55:12 -0700954
Adam Cohen76fc0852011-06-17 13:26:23 -0700955 lp.x = oldX;
956 lp.y = oldY;
Adam Cohen76fc0852011-06-17 13:26:23 -0700957
Adam Cohen482ed822012-03-02 14:15:13 -0800958 // Exit early if we're not actually moving the view
959 if (oldX == newX && oldY == newY) {
960 lp.isLockedToGrid = true;
961 return true;
962 }
963
Michael Jurkaf1ad6082013-03-13 12:55:46 +0100964 ValueAnimator va = LauncherAnimUtils.ofFloat(child, 0f, 1f);
Adam Cohen482ed822012-03-02 14:15:13 -0800965 va.setDuration(duration);
966 mReorderAnimators.put(lp, va);
967
968 va.addUpdateListener(new AnimatorUpdateListener() {
969 @Override
Adam Cohenbfbfd262011-06-13 16:55:12 -0700970 public void onAnimationUpdate(ValueAnimator animation) {
Adam Cohen482ed822012-03-02 14:15:13 -0800971 float r = ((Float) animation.getAnimatedValue()).floatValue();
Adam Cohen19f37922012-03-21 11:59:11 -0700972 lp.x = (int) ((1 - r) * oldX + r * newX);
973 lp.y = (int) ((1 - r) * oldY + r * newY);
Adam Cohen6b8a02d2012-03-22 15:13:40 -0700974 child.requestLayout();
Adam Cohenbfbfd262011-06-13 16:55:12 -0700975 }
976 });
Adam Cohen482ed822012-03-02 14:15:13 -0800977 va.addListener(new AnimatorListenerAdapter() {
Adam Cohenbfbfd262011-06-13 16:55:12 -0700978 boolean cancelled = false;
979 public void onAnimationEnd(Animator animation) {
980 // If the animation was cancelled, it means that another animation
981 // has interrupted this one, and we don't want to lock the item into
982 // place just yet.
983 if (!cancelled) {
984 lp.isLockedToGrid = true;
Adam Cohen482ed822012-03-02 14:15:13 -0800985 child.requestLayout();
Adam Cohenbfbfd262011-06-13 16:55:12 -0700986 }
987 if (mReorderAnimators.containsKey(lp)) {
988 mReorderAnimators.remove(lp);
989 }
990 }
991 public void onAnimationCancel(Animator animation) {
992 cancelled = true;
993 }
994 });
Adam Cohen482ed822012-03-02 14:15:13 -0800995 va.setStartDelay(delay);
996 va.start();
Adam Cohenbfbfd262011-06-13 16:55:12 -0700997 return true;
998 }
999 return false;
1000 }
1001
Sunny Goyal06e21a22016-08-11 16:02:02 -07001002 void visualizeDropLocation(View v, DragPreviewProvider outlineProvider, int cellX, int cellY,
1003 int spanX, int spanY, boolean resize, DropTarget.DragObject dragObject) {
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07001004 final int oldDragCellX = mDragCell[0];
1005 final int oldDragCellY = mDragCell[1];
Adam Cohen482ed822012-03-02 14:15:13 -08001006
Hyunyoung Song0de01172016-10-05 16:27:48 -07001007 if (outlineProvider == null || outlineProvider.generatedDragOutline == null) {
Adam Cohen2801caf2011-05-13 20:57:39 -07001008 return;
1009 }
1010
Hyunyoung Song0de01172016-10-05 16:27:48 -07001011 Bitmap dragOutline = outlineProvider.generatedDragOutline;
Adam Cohen482ed822012-03-02 14:15:13 -08001012 if (cellX != oldDragCellX || cellY != oldDragCellY) {
Sunny Goyale78e3d72015-09-24 11:23:31 -07001013 Point dragOffset = dragObject.dragView.getDragVisualizeOffset();
1014 Rect dragRegion = dragObject.dragView.getDragRegion();
1015
Adam Cohen482ed822012-03-02 14:15:13 -08001016 mDragCell[0] = cellX;
1017 mDragCell[1] = cellY;
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001018
Joe Onorato4be866d2010-10-10 11:26:02 -07001019 final int oldIndex = mDragOutlineCurrent;
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07001020 mDragOutlineAnims[oldIndex].animateOut();
1021 mDragOutlineCurrent = (oldIndex + 1) % mDragOutlines.length;
Adam Cohend41fbf52012-02-16 23:53:59 -08001022 Rect r = mDragOutlines[mDragOutlineCurrent];
Sunny Goyal106bf642015-07-16 12:18:06 -07001023
Adam Cohend41fbf52012-02-16 23:53:59 -08001024 if (resize) {
Adam Cohen482ed822012-03-02 14:15:13 -08001025 cellToRect(cellX, cellY, spanX, spanY, r);
Sunny Goyal106bf642015-07-16 12:18:06 -07001026 } else {
1027 // Find the top left corner of the rect the object will occupy
1028 final int[] topLeft = mTmpPoint;
1029 cellToPoint(cellX, cellY, topLeft);
1030
1031 int left = topLeft[0];
1032 int top = topLeft[1];
1033
1034 if (v != null && dragOffset == null) {
1035 // When drawing the drag outline, it did not account for margin offsets
1036 // added by the view's parent.
1037 MarginLayoutParams lp = (MarginLayoutParams) v.getLayoutParams();
1038 left += lp.leftMargin;
1039 top += lp.topMargin;
1040
1041 // Offsets due to the size difference between the View and the dragOutline.
1042 // There is a size difference to account for the outer blur, which may lie
1043 // outside the bounds of the view.
1044 top += (v.getHeight() - dragOutline.getHeight()) / 2;
1045 // We center about the x axis
Sunny Goyalaa8a8712016-11-20 15:26:01 +05301046 left += ((mCellWidth * spanX) - dragOutline.getWidth()) / 2;
Sunny Goyal106bf642015-07-16 12:18:06 -07001047 } else {
1048 if (dragOffset != null && dragRegion != null) {
1049 // Center the drag region *horizontally* in the cell and apply a drag
1050 // outline offset
Sunny Goyalaa8a8712016-11-20 15:26:01 +05301051 left += dragOffset.x + ((mCellWidth * spanX) - dragRegion.width()) / 2;
Sunny Goyal106bf642015-07-16 12:18:06 -07001052 int cHeight = getShortcutsAndWidgets().getCellContentHeight();
1053 int cellPaddingY = (int) Math.max(0, ((mCellHeight - cHeight) / 2f));
1054 top += dragOffset.y + cellPaddingY;
1055 } else {
1056 // Center the drag outline in the cell
Sunny Goyalaa8a8712016-11-20 15:26:01 +05301057 left += ((mCellWidth * spanX) - dragOutline.getWidth()) / 2;
1058 top += ((mCellHeight * spanY) - dragOutline.getHeight()) / 2;
Sunny Goyal106bf642015-07-16 12:18:06 -07001059 }
1060 }
1061 r.set(left, top, left + dragOutline.getWidth(), top + dragOutline.getHeight());
Adam Cohend41fbf52012-02-16 23:53:59 -08001062 }
Winson Chung150fbab2010-09-29 17:14:26 -07001063
Sunny Goyal106bf642015-07-16 12:18:06 -07001064 Utilities.scaleRectAboutCenter(r, getChildrenScale());
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07001065 mDragOutlineAnims[mDragOutlineCurrent].setTag(dragOutline);
1066 mDragOutlineAnims[mDragOutlineCurrent].animateIn();
Sunny Goyale78e3d72015-09-24 11:23:31 -07001067
1068 if (dragObject.stateAnnouncer != null) {
1069 String msg;
1070 if (isHotseat()) {
1071 msg = getContext().getString(R.string.move_to_hotseat_position,
1072 Math.max(cellX, cellY) + 1);
1073 } else {
1074 msg = getContext().getString(R.string.move_to_empty_cell,
1075 cellY + 1, cellX + 1);
1076 }
1077 dragObject.stateAnnouncer.announce(msg);
1078 }
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07001079 }
1080 }
1081
Adam Cohene0310962011-04-18 16:15:31 -07001082 public void clearDragOutlines() {
1083 final int oldIndex = mDragOutlineCurrent;
1084 mDragOutlineAnims[oldIndex].animateOut();
Adam Cohend41fbf52012-02-16 23:53:59 -08001085 mDragCell[0] = mDragCell[1] = -1;
Adam Cohene0310962011-04-18 16:15:31 -07001086 }
1087
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001088 /**
Jeff Sharkey70864282009-04-07 21:08:40 -07001089 * Find a vacant area that will fit the given bounds nearest the requested
1090 * cell location. Uses Euclidean distance to score multiple vacant areas.
Winson Chungaafa03c2010-06-11 17:34:16 -07001091 *
Romain Guy51afc022009-05-04 18:03:43 -07001092 * @param pixelX The X location at which you want to search for a vacant area.
1093 * @param pixelY The Y location at which you want to search for a vacant area.
Adam Cohend41fbf52012-02-16 23:53:59 -08001094 * @param minSpanX The minimum horizontal span required
1095 * @param minSpanY The minimum vertical span required
1096 * @param spanX Horizontal span of the object.
1097 * @param spanY Vertical span of the object.
1098 * @param result Array in which to place the result, or null (in which case a new array will
1099 * be allocated)
1100 * @return The X, Y cell of a vacant area that can contain this object,
1101 * nearest the requested location.
1102 */
1103 int[] findNearestVacantArea(int pixelX, int pixelY, int minSpanX, int minSpanY, int spanX,
1104 int spanY, int[] result, int[] resultSpan) {
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001105 return findNearestArea(pixelX, pixelY, minSpanX, minSpanY, spanX, spanY, true,
Adam Cohend41fbf52012-02-16 23:53:59 -08001106 result, resultSpan);
1107 }
1108
Adam Cohend41fbf52012-02-16 23:53:59 -08001109 private final Stack<Rect> mTempRectStack = new Stack<Rect>();
1110 private void lazyInitTempRectStack() {
1111 if (mTempRectStack.isEmpty()) {
1112 for (int i = 0; i < mCountX * mCountY; i++) {
1113 mTempRectStack.push(new Rect());
1114 }
1115 }
1116 }
Adam Cohen482ed822012-03-02 14:15:13 -08001117
Adam Cohend41fbf52012-02-16 23:53:59 -08001118 private void recycleTempRects(Stack<Rect> used) {
1119 while (!used.isEmpty()) {
1120 mTempRectStack.push(used.pop());
1121 }
1122 }
1123
1124 /**
1125 * Find a vacant area that will fit the given bounds nearest the requested
1126 * cell location. Uses Euclidean distance to score multiple vacant areas.
1127 *
1128 * @param pixelX The X location at which you want to search for a vacant area.
1129 * @param pixelY The Y location at which you want to search for a vacant area.
1130 * @param minSpanX The minimum horizontal span required
1131 * @param minSpanY The minimum vertical span required
1132 * @param spanX Horizontal span of the object.
1133 * @param spanY Vertical span of the object.
1134 * @param ignoreOccupied If true, the result can be an occupied cell
1135 * @param result Array in which to place the result, or null (in which case a new array will
1136 * be allocated)
1137 * @return The X, Y cell of a vacant area that can contain this object,
1138 * nearest the requested location.
1139 */
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001140 private int[] findNearestArea(int pixelX, int pixelY, int minSpanX, int minSpanY, int spanX,
1141 int spanY, boolean ignoreOccupied, int[] result, int[] resultSpan) {
Adam Cohend41fbf52012-02-16 23:53:59 -08001142 lazyInitTempRectStack();
Michael Jurkac6ee42e2010-09-30 12:04:50 -07001143
Adam Cohene3e27a82011-04-15 12:07:39 -07001144 // For items with a spanX / spanY > 1, the passed in point (pixelX, pixelY) corresponds
1145 // to the center of the item, but we are searching based on the top-left cell, so
1146 // we translate the point over to correspond to the top-left.
Sunny Goyalaa8a8712016-11-20 15:26:01 +05301147 pixelX -= mCellWidth * (spanX - 1) / 2f;
1148 pixelY -= mCellHeight * (spanY - 1) / 2f;
Adam Cohene3e27a82011-04-15 12:07:39 -07001149
Jeff Sharkey70864282009-04-07 21:08:40 -07001150 // Keep track of best-scoring drop area
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001151 final int[] bestXY = result != null ? result : new int[2];
Jeff Sharkey70864282009-04-07 21:08:40 -07001152 double bestDistance = Double.MAX_VALUE;
Adam Cohend41fbf52012-02-16 23:53:59 -08001153 final Rect bestRect = new Rect(-1, -1, -1, -1);
1154 final Stack<Rect> validRegions = new Stack<Rect>();
Winson Chungaafa03c2010-06-11 17:34:16 -07001155
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001156 final int countX = mCountX;
1157 final int countY = mCountY;
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001158
Adam Cohend41fbf52012-02-16 23:53:59 -08001159 if (minSpanX <= 0 || minSpanY <= 0 || spanX <= 0 || spanY <= 0 ||
1160 spanX < minSpanX || spanY < minSpanY) {
1161 return bestXY;
1162 }
1163
1164 for (int y = 0; y < countY - (minSpanY - 1); y++) {
Michael Jurkac28de512010-08-13 11:27:44 -07001165 inner:
Adam Cohend41fbf52012-02-16 23:53:59 -08001166 for (int x = 0; x < countX - (minSpanX - 1); x++) {
1167 int ySize = -1;
1168 int xSize = -1;
Adam Cohendf035382011-04-11 17:22:04 -07001169 if (ignoreOccupied) {
Adam Cohend41fbf52012-02-16 23:53:59 -08001170 // First, let's see if this thing fits anywhere
1171 for (int i = 0; i < minSpanX; i++) {
1172 for (int j = 0; j < minSpanY; j++) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001173 if (mOccupied.cells[x + i][y + j]) {
Adam Cohendf035382011-04-11 17:22:04 -07001174 continue inner;
1175 }
Michael Jurkac28de512010-08-13 11:27:44 -07001176 }
1177 }
Adam Cohend41fbf52012-02-16 23:53:59 -08001178 xSize = minSpanX;
1179 ySize = minSpanY;
1180
1181 // We know that the item will fit at _some_ acceptable size, now let's see
1182 // how big we can make it. We'll alternate between incrementing x and y spans
1183 // until we hit a limit.
1184 boolean incX = true;
1185 boolean hitMaxX = xSize >= spanX;
1186 boolean hitMaxY = ySize >= spanY;
1187 while (!(hitMaxX && hitMaxY)) {
1188 if (incX && !hitMaxX) {
1189 for (int j = 0; j < ySize; j++) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001190 if (x + xSize > countX -1 || mOccupied.cells[x + xSize][y + j]) {
Adam Cohend41fbf52012-02-16 23:53:59 -08001191 // We can't move out horizontally
1192 hitMaxX = true;
1193 }
1194 }
1195 if (!hitMaxX) {
1196 xSize++;
1197 }
1198 } else if (!hitMaxY) {
1199 for (int i = 0; i < xSize; i++) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001200 if (y + ySize > countY - 1 || mOccupied.cells[x + i][y + ySize]) {
Adam Cohend41fbf52012-02-16 23:53:59 -08001201 // We can't move out vertically
1202 hitMaxY = true;
1203 }
1204 }
1205 if (!hitMaxY) {
1206 ySize++;
1207 }
1208 }
1209 hitMaxX |= xSize >= spanX;
1210 hitMaxY |= ySize >= spanY;
1211 incX = !incX;
1212 }
1213 incX = true;
1214 hitMaxX = xSize >= spanX;
1215 hitMaxY = ySize >= spanY;
Michael Jurkac28de512010-08-13 11:27:44 -07001216 }
Sunny Goyal2805e632015-05-20 15:35:32 -07001217 final int[] cellXY = mTmpPoint;
Adam Cohene3e27a82011-04-15 12:07:39 -07001218 cellToCenterPoint(x, y, cellXY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001219
Adam Cohend41fbf52012-02-16 23:53:59 -08001220 // We verify that the current rect is not a sub-rect of any of our previous
1221 // candidates. In this case, the current rect is disqualified in favour of the
1222 // containing rect.
1223 Rect currentRect = mTempRectStack.pop();
1224 currentRect.set(x, y, x + xSize, y + ySize);
1225 boolean contained = false;
1226 for (Rect r : validRegions) {
1227 if (r.contains(currentRect)) {
1228 contained = true;
1229 break;
1230 }
1231 }
1232 validRegions.push(currentRect);
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001233 double distance = Math.hypot(cellXY[0] - pixelX, cellXY[1] - pixelY);
Adam Cohen482ed822012-03-02 14:15:13 -08001234
Adam Cohend41fbf52012-02-16 23:53:59 -08001235 if ((distance <= bestDistance && !contained) ||
1236 currentRect.contains(bestRect)) {
Michael Jurkac28de512010-08-13 11:27:44 -07001237 bestDistance = distance;
1238 bestXY[0] = x;
1239 bestXY[1] = y;
Adam Cohend41fbf52012-02-16 23:53:59 -08001240 if (resultSpan != null) {
1241 resultSpan[0] = xSize;
1242 resultSpan[1] = ySize;
1243 }
1244 bestRect.set(currentRect);
Michael Jurkac28de512010-08-13 11:27:44 -07001245 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001246 }
1247 }
1248
Adam Cohenc0dcf592011-06-01 15:30:43 -07001249 // Return -1, -1 if no suitable location found
1250 if (bestDistance == Double.MAX_VALUE) {
1251 bestXY[0] = -1;
1252 bestXY[1] = -1;
Jeff Sharkey70864282009-04-07 21:08:40 -07001253 }
Adam Cohend41fbf52012-02-16 23:53:59 -08001254 recycleTempRects(validRegions);
Adam Cohenc0dcf592011-06-01 15:30:43 -07001255 return bestXY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001256 }
Winson Chungaafa03c2010-06-11 17:34:16 -07001257
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001258 /**
Adam Cohen482ed822012-03-02 14:15:13 -08001259 * Find a vacant area that will fit the given bounds nearest the requested
1260 * cell location, and will also weigh in a suggested direction vector of the
1261 * desired location. This method computers distance based on unit grid distances,
1262 * not pixel distances.
1263 *
Adam Cohen47a876d2012-03-19 13:21:41 -07001264 * @param cellX The X cell nearest to which you want to search for a vacant area.
1265 * @param cellY The Y cell nearest which you want to search for a vacant area.
Adam Cohen482ed822012-03-02 14:15:13 -08001266 * @param spanX Horizontal span of the object.
1267 * @param spanY Vertical span of the object.
Adam Cohen47a876d2012-03-19 13:21:41 -07001268 * @param direction The favored direction in which the views should move from x, y
Sunny Goyal9eba1fd2015-10-16 08:58:57 -07001269 * @param occupied The array which represents which cells in the CellLayout are occupied
Adam Cohen47a876d2012-03-19 13:21:41 -07001270 * @param blockOccupied The array which represents which cells in the specified block (cellX,
Winson Chung5f8afe62013-08-12 16:19:28 -07001271 * cellY, spanX, spanY) are occupied. This is used when try to move a group of views.
Adam Cohen482ed822012-03-02 14:15:13 -08001272 * @param result Array in which to place the result, or null (in which case a new array will
1273 * be allocated)
1274 * @return The X, Y cell of a vacant area that can contain this object,
1275 * nearest the requested location.
1276 */
1277 private int[] findNearestArea(int cellX, int cellY, int spanX, int spanY, int[] direction,
Adam Cohen47a876d2012-03-19 13:21:41 -07001278 boolean[][] occupied, boolean blockOccupied[][], int[] result) {
Adam Cohen482ed822012-03-02 14:15:13 -08001279 // Keep track of best-scoring drop area
1280 final int[] bestXY = result != null ? result : new int[2];
1281 float bestDistance = Float.MAX_VALUE;
1282 int bestDirectionScore = Integer.MIN_VALUE;
1283
1284 final int countX = mCountX;
1285 final int countY = mCountY;
1286
1287 for (int y = 0; y < countY - (spanY - 1); y++) {
1288 inner:
1289 for (int x = 0; x < countX - (spanX - 1); x++) {
1290 // First, let's see if this thing fits anywhere
1291 for (int i = 0; i < spanX; i++) {
1292 for (int j = 0; j < spanY; j++) {
Adam Cohen47a876d2012-03-19 13:21:41 -07001293 if (occupied[x + i][y + j] && (blockOccupied == null || blockOccupied[i][j])) {
Adam Cohen482ed822012-03-02 14:15:13 -08001294 continue inner;
1295 }
1296 }
1297 }
1298
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001299 float distance = (float) Math.hypot(x - cellX, y - cellY);
Adam Cohen482ed822012-03-02 14:15:13 -08001300 int[] curDirection = mTmpPoint;
Adam Cohen47a876d2012-03-19 13:21:41 -07001301 computeDirectionVector(x - cellX, y - cellY, curDirection);
1302 // The direction score is just the dot product of the two candidate direction
1303 // and that passed in.
Adam Cohen482ed822012-03-02 14:15:13 -08001304 int curDirectionScore = direction[0] * curDirection[0] +
1305 direction[1] * curDirection[1];
Sunny Goyal8f90dcf2016-08-18 15:01:11 -07001306 if (Float.compare(distance, bestDistance) < 0 ||
1307 (Float.compare(distance, bestDistance) == 0
1308 && curDirectionScore > bestDirectionScore)) {
Adam Cohen482ed822012-03-02 14:15:13 -08001309 bestDistance = distance;
1310 bestDirectionScore = curDirectionScore;
1311 bestXY[0] = x;
1312 bestXY[1] = y;
1313 }
1314 }
1315 }
1316
1317 // Return -1, -1 if no suitable location found
1318 if (bestDistance == Float.MAX_VALUE) {
1319 bestXY[0] = -1;
1320 bestXY[1] = -1;
1321 }
1322 return bestXY;
1323 }
1324
1325 private boolean addViewToTempLocation(View v, Rect rectOccupiedByPotentialDrop,
Adam Cohen8baab352012-03-20 17:39:21 -07001326 int[] direction, ItemConfiguration currentState) {
1327 CellAndSpan c = currentState.map.get(v);
Adam Cohen482ed822012-03-02 14:15:13 -08001328 boolean success = false;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001329 mTmpOccupied.markCells(c, false);
1330 mTmpOccupied.markCells(rectOccupiedByPotentialDrop, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001331
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001332 findNearestArea(c.cellX, c.cellY, c.spanX, c.spanY, direction,
1333 mTmpOccupied.cells, null, mTempLocation);
Adam Cohen482ed822012-03-02 14:15:13 -08001334
1335 if (mTempLocation[0] >= 0 && mTempLocation[1] >= 0) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001336 c.cellX = mTempLocation[0];
1337 c.cellY = mTempLocation[1];
Adam Cohen482ed822012-03-02 14:15:13 -08001338 success = true;
Adam Cohen482ed822012-03-02 14:15:13 -08001339 }
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001340 mTmpOccupied.markCells(c, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001341 return success;
1342 }
1343
Adam Cohenf3900c22012-11-16 18:28:11 -08001344 /**
1345 * This helper class defines a cluster of views. It helps with defining complex edges
1346 * of the cluster and determining how those edges interact with other views. The edges
1347 * essentially define a fine-grained boundary around the cluster of views -- like a more
1348 * precise version of a bounding box.
1349 */
1350 private class ViewCluster {
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001351 final static int LEFT = 1 << 0;
1352 final static int TOP = 1 << 1;
1353 final static int RIGHT = 1 << 2;
1354 final static int BOTTOM = 1 << 3;
Adam Cohen47a876d2012-03-19 13:21:41 -07001355
Adam Cohenf3900c22012-11-16 18:28:11 -08001356 ArrayList<View> views;
1357 ItemConfiguration config;
1358 Rect boundingRect = new Rect();
Adam Cohen47a876d2012-03-19 13:21:41 -07001359
Adam Cohenf3900c22012-11-16 18:28:11 -08001360 int[] leftEdge = new int[mCountY];
1361 int[] rightEdge = new int[mCountY];
1362 int[] topEdge = new int[mCountX];
1363 int[] bottomEdge = new int[mCountX];
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001364 int dirtyEdges;
1365 boolean boundingRectDirty;
Adam Cohenf3900c22012-11-16 18:28:11 -08001366
1367 @SuppressWarnings("unchecked")
1368 public ViewCluster(ArrayList<View> views, ItemConfiguration config) {
1369 this.views = (ArrayList<View>) views.clone();
1370 this.config = config;
1371 resetEdges();
Adam Cohen47a876d2012-03-19 13:21:41 -07001372 }
1373
Adam Cohenf3900c22012-11-16 18:28:11 -08001374 void resetEdges() {
1375 for (int i = 0; i < mCountX; i++) {
1376 topEdge[i] = -1;
1377 bottomEdge[i] = -1;
1378 }
1379 for (int i = 0; i < mCountY; i++) {
1380 leftEdge[i] = -1;
1381 rightEdge[i] = -1;
1382 }
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001383 dirtyEdges = LEFT | TOP | RIGHT | BOTTOM;
Adam Cohenf3900c22012-11-16 18:28:11 -08001384 boundingRectDirty = true;
1385 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001386
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001387 void computeEdge(int which) {
Adam Cohenf3900c22012-11-16 18:28:11 -08001388 int count = views.size();
1389 for (int i = 0; i < count; i++) {
1390 CellAndSpan cs = config.map.get(views.get(i));
1391 switch (which) {
1392 case LEFT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001393 int left = cs.cellX;
1394 for (int j = cs.cellY; j < cs.cellY + cs.spanY; j++) {
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001395 if (left < leftEdge[j] || leftEdge[j] < 0) {
1396 leftEdge[j] = left;
Adam Cohena56dc102012-07-13 13:41:42 -07001397 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001398 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001399 break;
1400 case RIGHT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001401 int right = cs.cellX + cs.spanX;
1402 for (int j = cs.cellY; j < cs.cellY + cs.spanY; j++) {
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001403 if (right > rightEdge[j]) {
1404 rightEdge[j] = right;
Adam Cohenf3900c22012-11-16 18:28:11 -08001405 }
1406 }
1407 break;
1408 case TOP:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001409 int top = cs.cellY;
1410 for (int j = cs.cellX; j < cs.cellX + cs.spanX; j++) {
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001411 if (top < topEdge[j] || topEdge[j] < 0) {
1412 topEdge[j] = top;
Adam Cohenf3900c22012-11-16 18:28:11 -08001413 }
1414 }
1415 break;
1416 case BOTTOM:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001417 int bottom = cs.cellY + cs.spanY;
1418 for (int j = cs.cellX; j < cs.cellX + cs.spanX; j++) {
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001419 if (bottom > bottomEdge[j]) {
1420 bottomEdge[j] = bottom;
Adam Cohenf3900c22012-11-16 18:28:11 -08001421 }
1422 }
1423 break;
Adam Cohen47a876d2012-03-19 13:21:41 -07001424 }
1425 }
1426 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001427
1428 boolean isViewTouchingEdge(View v, int whichEdge) {
1429 CellAndSpan cs = config.map.get(v);
1430
Sunny Goyal6dc98b92016-04-03 15:25:29 -07001431 if ((dirtyEdges & whichEdge) == whichEdge) {
1432 computeEdge(whichEdge);
1433 dirtyEdges &= ~whichEdge;
1434 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001435
1436 switch (whichEdge) {
1437 case LEFT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001438 for (int i = cs.cellY; i < cs.cellY + cs.spanY; i++) {
1439 if (leftEdge[i] == cs.cellX + cs.spanX) {
Adam Cohenf3900c22012-11-16 18:28:11 -08001440 return true;
1441 }
1442 }
1443 break;
1444 case RIGHT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001445 for (int i = cs.cellY; i < cs.cellY + cs.spanY; i++) {
1446 if (rightEdge[i] == cs.cellX) {
Adam Cohenf3900c22012-11-16 18:28:11 -08001447 return true;
1448 }
1449 }
1450 break;
1451 case TOP:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001452 for (int i = cs.cellX; i < cs.cellX + cs.spanX; i++) {
1453 if (topEdge[i] == cs.cellY + cs.spanY) {
Adam Cohenf3900c22012-11-16 18:28:11 -08001454 return true;
1455 }
1456 }
1457 break;
1458 case BOTTOM:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001459 for (int i = cs.cellX; i < cs.cellX + cs.spanX; i++) {
1460 if (bottomEdge[i] == cs.cellY) {
Adam Cohenf3900c22012-11-16 18:28:11 -08001461 return true;
1462 }
1463 }
1464 break;
1465 }
1466 return false;
1467 }
1468
1469 void shift(int whichEdge, int delta) {
1470 for (View v: views) {
1471 CellAndSpan c = config.map.get(v);
1472 switch (whichEdge) {
1473 case LEFT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001474 c.cellX -= delta;
Adam Cohenf3900c22012-11-16 18:28:11 -08001475 break;
1476 case RIGHT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001477 c.cellX += delta;
Adam Cohenf3900c22012-11-16 18:28:11 -08001478 break;
1479 case TOP:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001480 c.cellY -= delta;
Adam Cohenf3900c22012-11-16 18:28:11 -08001481 break;
1482 case BOTTOM:
1483 default:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001484 c.cellY += delta;
Adam Cohenf3900c22012-11-16 18:28:11 -08001485 break;
1486 }
1487 }
1488 resetEdges();
1489 }
1490
1491 public void addView(View v) {
1492 views.add(v);
1493 resetEdges();
1494 }
1495
1496 public Rect getBoundingRect() {
1497 if (boundingRectDirty) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001498 config.getBoundingRectForViews(views, boundingRect);
Adam Cohenf3900c22012-11-16 18:28:11 -08001499 }
1500 return boundingRect;
1501 }
1502
Adam Cohenf3900c22012-11-16 18:28:11 -08001503 PositionComparator comparator = new PositionComparator();
1504 class PositionComparator implements Comparator<View> {
1505 int whichEdge = 0;
1506 public int compare(View left, View right) {
1507 CellAndSpan l = config.map.get(left);
1508 CellAndSpan r = config.map.get(right);
1509 switch (whichEdge) {
1510 case LEFT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001511 return (r.cellX + r.spanX) - (l.cellX + l.spanX);
Adam Cohenf3900c22012-11-16 18:28:11 -08001512 case RIGHT:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001513 return l.cellX - r.cellX;
Adam Cohenf3900c22012-11-16 18:28:11 -08001514 case TOP:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001515 return (r.cellY + r.spanY) - (l.cellY + l.spanY);
Adam Cohenf3900c22012-11-16 18:28:11 -08001516 case BOTTOM:
1517 default:
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001518 return l.cellY - r.cellY;
Adam Cohenf3900c22012-11-16 18:28:11 -08001519 }
1520 }
1521 }
1522
1523 public void sortConfigurationForEdgePush(int edge) {
1524 comparator.whichEdge = edge;
1525 Collections.sort(config.sortedViews, comparator);
1526 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001527 }
1528
Adam Cohenf3900c22012-11-16 18:28:11 -08001529 private boolean pushViewsToTempLocation(ArrayList<View> views, Rect rectOccupiedByPotentialDrop,
1530 int[] direction, View dragView, ItemConfiguration currentState) {
Adam Cohene0489502012-08-27 15:18:53 -07001531
Adam Cohenf3900c22012-11-16 18:28:11 -08001532 ViewCluster cluster = new ViewCluster(views, currentState);
1533 Rect clusterRect = cluster.getBoundingRect();
1534 int whichEdge;
1535 int pushDistance;
1536 boolean fail = false;
1537
1538 // Determine the edge of the cluster that will be leading the push and how far
1539 // the cluster must be shifted.
1540 if (direction[0] < 0) {
1541 whichEdge = ViewCluster.LEFT;
1542 pushDistance = clusterRect.right - rectOccupiedByPotentialDrop.left;
Adam Cohene0489502012-08-27 15:18:53 -07001543 } else if (direction[0] > 0) {
Adam Cohenf3900c22012-11-16 18:28:11 -08001544 whichEdge = ViewCluster.RIGHT;
1545 pushDistance = rectOccupiedByPotentialDrop.right - clusterRect.left;
1546 } else if (direction[1] < 0) {
1547 whichEdge = ViewCluster.TOP;
1548 pushDistance = clusterRect.bottom - rectOccupiedByPotentialDrop.top;
1549 } else {
1550 whichEdge = ViewCluster.BOTTOM;
1551 pushDistance = rectOccupiedByPotentialDrop.bottom - clusterRect.top;
Adam Cohene0489502012-08-27 15:18:53 -07001552 }
1553
Adam Cohenf3900c22012-11-16 18:28:11 -08001554 // Break early for invalid push distance.
1555 if (pushDistance <= 0) {
1556 return false;
Adam Cohene0489502012-08-27 15:18:53 -07001557 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001558
1559 // Mark the occupied state as false for the group of views we want to move.
1560 for (View v: views) {
1561 CellAndSpan c = currentState.map.get(v);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001562 mTmpOccupied.markCells(c, false);
Adam Cohenf3900c22012-11-16 18:28:11 -08001563 }
1564
1565 // We save the current configuration -- if we fail to find a solution we will revert
1566 // to the initial state. The process of finding a solution modifies the configuration
1567 // in place, hence the need for revert in the failure case.
1568 currentState.save();
1569
1570 // The pushing algorithm is simplified by considering the views in the order in which
1571 // they would be pushed by the cluster. For example, if the cluster is leading with its
1572 // left edge, we consider sort the views by their right edge, from right to left.
1573 cluster.sortConfigurationForEdgePush(whichEdge);
1574
1575 while (pushDistance > 0 && !fail) {
1576 for (View v: currentState.sortedViews) {
1577 // For each view that isn't in the cluster, we see if the leading edge of the
1578 // cluster is contacting the edge of that view. If so, we add that view to the
1579 // cluster.
1580 if (!cluster.views.contains(v) && v != dragView) {
1581 if (cluster.isViewTouchingEdge(v, whichEdge)) {
1582 LayoutParams lp = (LayoutParams) v.getLayoutParams();
1583 if (!lp.canReorder) {
1584 // The push solution includes the all apps button, this is not viable.
1585 fail = true;
1586 break;
1587 }
1588 cluster.addView(v);
1589 CellAndSpan c = currentState.map.get(v);
1590
1591 // Adding view to cluster, mark it as not occupied.
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001592 mTmpOccupied.markCells(c, false);
Adam Cohenf3900c22012-11-16 18:28:11 -08001593 }
1594 }
1595 }
1596 pushDistance--;
1597
1598 // The cluster has been completed, now we move the whole thing over in the appropriate
1599 // direction.
1600 cluster.shift(whichEdge, 1);
1601 }
1602
1603 boolean foundSolution = false;
1604 clusterRect = cluster.getBoundingRect();
1605
1606 // Due to the nature of the algorithm, the only check required to verify a valid solution
1607 // is to ensure that completed shifted cluster lies completely within the cell layout.
1608 if (!fail && clusterRect.left >= 0 && clusterRect.right <= mCountX && clusterRect.top >= 0 &&
1609 clusterRect.bottom <= mCountY) {
1610 foundSolution = true;
1611 } else {
1612 currentState.restore();
1613 }
1614
1615 // In either case, we set the occupied array as marked for the location of the views
1616 for (View v: cluster.views) {
1617 CellAndSpan c = currentState.map.get(v);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001618 mTmpOccupied.markCells(c, true);
Adam Cohenf3900c22012-11-16 18:28:11 -08001619 }
1620
1621 return foundSolution;
Adam Cohene0489502012-08-27 15:18:53 -07001622 }
1623
Adam Cohen482ed822012-03-02 14:15:13 -08001624 private boolean addViewsToTempLocation(ArrayList<View> views, Rect rectOccupiedByPotentialDrop,
Adam Cohenf3900c22012-11-16 18:28:11 -08001625 int[] direction, View dragView, ItemConfiguration currentState) {
Adam Cohen482ed822012-03-02 14:15:13 -08001626 if (views.size() == 0) return true;
Adam Cohen482ed822012-03-02 14:15:13 -08001627
Adam Cohen8baab352012-03-20 17:39:21 -07001628 boolean success = false;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001629 Rect boundingRect = new Rect();
Adam Cohen8baab352012-03-20 17:39:21 -07001630 // We construct a rect which represents the entire group of views passed in
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001631 currentState.getBoundingRectForViews(views, boundingRect);
Adam Cohen8baab352012-03-20 17:39:21 -07001632
Adam Cohen8baab352012-03-20 17:39:21 -07001633 // Mark the occupied state as false for the group of views we want to move.
Adam Cohenf3900c22012-11-16 18:28:11 -08001634 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001635 CellAndSpan c = currentState.map.get(v);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001636 mTmpOccupied.markCells(c, false);
Adam Cohen8baab352012-03-20 17:39:21 -07001637 }
1638
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001639 GridOccupancy blockOccupied = new GridOccupancy(boundingRect.width(), boundingRect.height());
Adam Cohen47a876d2012-03-19 13:21:41 -07001640 int top = boundingRect.top;
1641 int left = boundingRect.left;
Adam Cohen8baab352012-03-20 17:39:21 -07001642 // We mark more precisely which parts of the bounding rect are truly occupied, allowing
Adam Cohena56dc102012-07-13 13:41:42 -07001643 // for interlocking.
Adam Cohenf3900c22012-11-16 18:28:11 -08001644 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001645 CellAndSpan c = currentState.map.get(v);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001646 blockOccupied.markCells(c.cellX - left, c.cellY - top, c.spanX, c.spanY, true);
Adam Cohen47a876d2012-03-19 13:21:41 -07001647 }
1648
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001649 mTmpOccupied.markCells(rectOccupiedByPotentialDrop, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001650
Adam Cohenf3900c22012-11-16 18:28:11 -08001651 findNearestArea(boundingRect.left, boundingRect.top, boundingRect.width(),
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001652 boundingRect.height(), direction,
1653 mTmpOccupied.cells, blockOccupied.cells, mTempLocation);
Adam Cohen482ed822012-03-02 14:15:13 -08001654
Adam Cohen8baab352012-03-20 17:39:21 -07001655 // If we successfuly found a location by pushing the block of views, we commit it
Adam Cohen482ed822012-03-02 14:15:13 -08001656 if (mTempLocation[0] >= 0 && mTempLocation[1] >= 0) {
Adam Cohen8baab352012-03-20 17:39:21 -07001657 int deltaX = mTempLocation[0] - boundingRect.left;
1658 int deltaY = mTempLocation[1] - boundingRect.top;
Adam Cohenf3900c22012-11-16 18:28:11 -08001659 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001660 CellAndSpan c = currentState.map.get(v);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001661 c.cellX += deltaX;
1662 c.cellY += deltaY;
Adam Cohen482ed822012-03-02 14:15:13 -08001663 }
1664 success = true;
1665 }
Adam Cohen8baab352012-03-20 17:39:21 -07001666
1667 // In either case, we set the occupied array as marked for the location of the views
Adam Cohenf3900c22012-11-16 18:28:11 -08001668 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001669 CellAndSpan c = currentState.map.get(v);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001670 mTmpOccupied.markCells(c, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001671 }
1672 return success;
1673 }
1674
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001675 // This method tries to find a reordering solution which satisfies the push mechanic by trying
1676 // to push items in each of the cardinal directions, in an order based on the direction vector
1677 // passed.
1678 private boolean attemptPushInDirection(ArrayList<View> intersectingViews, Rect occupied,
1679 int[] direction, View ignoreView, ItemConfiguration solution) {
1680 if ((Math.abs(direction[0]) + Math.abs(direction[1])) > 1) {
Winson Chung5f8afe62013-08-12 16:19:28 -07001681 // If the direction vector has two non-zero components, we try pushing
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001682 // separately in each of the components.
1683 int temp = direction[1];
1684 direction[1] = 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 direction[1] = temp;
1691 temp = direction[0];
1692 direction[0] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08001693
1694 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001695 ignoreView, solution)) {
1696 return true;
1697 }
1698 // Revert the direction
1699 direction[0] = temp;
1700
1701 // Now we try pushing in each component of the opposite direction
1702 direction[0] *= -1;
1703 direction[1] *= -1;
1704 temp = direction[1];
1705 direction[1] = 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
1711 direction[1] = temp;
1712 temp = direction[0];
1713 direction[0] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08001714 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001715 ignoreView, solution)) {
1716 return true;
1717 }
1718 // revert the direction
1719 direction[0] = temp;
1720 direction[0] *= -1;
1721 direction[1] *= -1;
Winson Chung5f8afe62013-08-12 16:19:28 -07001722
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001723 } else {
1724 // If the direction vector has a single non-zero component, we push first in the
1725 // direction of the vector
Adam Cohenf3900c22012-11-16 18:28:11 -08001726 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001727 ignoreView, solution)) {
1728 return true;
1729 }
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001730 // Then we try the opposite direction
1731 direction[0] *= -1;
1732 direction[1] *= -1;
Adam Cohenf3900c22012-11-16 18:28:11 -08001733 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001734 ignoreView, solution)) {
1735 return true;
1736 }
1737 // Switch the direction back
1738 direction[0] *= -1;
1739 direction[1] *= -1;
Winson Chung5f8afe62013-08-12 16:19:28 -07001740
1741 // If we have failed to find a push solution with the above, then we try
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001742 // to find a solution by pushing along the perpendicular axis.
1743
1744 // Swap the components
1745 int temp = direction[1];
1746 direction[1] = direction[0];
1747 direction[0] = temp;
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
1753 // Then we try the opposite direction
1754 direction[0] *= -1;
1755 direction[1] *= -1;
Adam Cohenf3900c22012-11-16 18:28:11 -08001756 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001757 ignoreView, solution)) {
1758 return true;
1759 }
1760 // Switch the direction back
1761 direction[0] *= -1;
1762 direction[1] *= -1;
1763
1764 // Swap the components back
1765 temp = direction[1];
1766 direction[1] = direction[0];
1767 direction[0] = temp;
1768 }
1769 return false;
1770 }
1771
Adam Cohen482ed822012-03-02 14:15:13 -08001772 private boolean rearrangementExists(int cellX, int cellY, int spanX, int spanY, int[] direction,
Adam Cohen8baab352012-03-20 17:39:21 -07001773 View ignoreView, ItemConfiguration solution) {
Winson Chunge3e03bc2012-05-01 15:10:11 -07001774 // Return early if get invalid cell positions
1775 if (cellX < 0 || cellY < 0) return false;
Adam Cohen482ed822012-03-02 14:15:13 -08001776
Adam Cohen8baab352012-03-20 17:39:21 -07001777 mIntersectingViews.clear();
Adam Cohen482ed822012-03-02 14:15:13 -08001778 mOccupiedRect.set(cellX, cellY, cellX + spanX, cellY + spanY);
Adam Cohen482ed822012-03-02 14:15:13 -08001779
Adam Cohen8baab352012-03-20 17:39:21 -07001780 // Mark the desired location of the view currently being dragged.
Adam Cohen482ed822012-03-02 14:15:13 -08001781 if (ignoreView != null) {
Adam Cohen8baab352012-03-20 17:39:21 -07001782 CellAndSpan c = solution.map.get(ignoreView);
Adam Cohen19f37922012-03-21 11:59:11 -07001783 if (c != null) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001784 c.cellX = cellX;
1785 c.cellY = cellY;
Adam Cohen19f37922012-03-21 11:59:11 -07001786 }
Adam Cohen482ed822012-03-02 14:15:13 -08001787 }
Adam Cohen482ed822012-03-02 14:15:13 -08001788 Rect r0 = new Rect(cellX, cellY, cellX + spanX, cellY + spanY);
1789 Rect r1 = new Rect();
Adam Cohen8baab352012-03-20 17:39:21 -07001790 for (View child: solution.map.keySet()) {
Adam Cohen482ed822012-03-02 14:15:13 -08001791 if (child == ignoreView) continue;
Adam Cohen8baab352012-03-20 17:39:21 -07001792 CellAndSpan c = solution.map.get(child);
Adam Cohen482ed822012-03-02 14:15:13 -08001793 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001794 r1.set(c.cellX, c.cellY, c.cellX + c.spanX, c.cellY + c.spanY);
Adam Cohen482ed822012-03-02 14:15:13 -08001795 if (Rect.intersects(r0, r1)) {
1796 if (!lp.canReorder) {
1797 return false;
1798 }
1799 mIntersectingViews.add(child);
1800 }
1801 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001802
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001803 solution.intersectingViews = new ArrayList<View>(mIntersectingViews);
1804
Winson Chung5f8afe62013-08-12 16:19:28 -07001805 // First we try to find a solution which respects the push mechanic. That is,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001806 // we try to find a solution such that no displaced item travels through another item
1807 // without also displacing that item.
1808 if (attemptPushInDirection(mIntersectingViews, mOccupiedRect, direction, ignoreView,
Adam Cohen19f37922012-03-21 11:59:11 -07001809 solution)) {
Adam Cohen47a876d2012-03-19 13:21:41 -07001810 return true;
1811 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001812
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001813 // Next we try moving the views as a block, but without requiring the push mechanic.
Adam Cohenf3900c22012-11-16 18:28:11 -08001814 if (addViewsToTempLocation(mIntersectingViews, mOccupiedRect, direction, ignoreView,
Adam Cohen19f37922012-03-21 11:59:11 -07001815 solution)) {
Adam Cohen482ed822012-03-02 14:15:13 -08001816 return true;
1817 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001818
Adam Cohen482ed822012-03-02 14:15:13 -08001819 // Ok, they couldn't move as a block, let's move them individually
1820 for (View v : mIntersectingViews) {
Adam Cohen8baab352012-03-20 17:39:21 -07001821 if (!addViewToTempLocation(v, mOccupiedRect, direction, solution)) {
Adam Cohen482ed822012-03-02 14:15:13 -08001822 return false;
1823 }
1824 }
1825 return true;
1826 }
1827
1828 /*
1829 * Returns a pair (x, y), where x,y are in {-1, 0, 1} corresponding to vector between
1830 * the provided point and the provided cell
1831 */
Adam Cohen47a876d2012-03-19 13:21:41 -07001832 private void computeDirectionVector(float deltaX, float deltaY, int[] result) {
Adam Cohen482ed822012-03-02 14:15:13 -08001833 double angle = Math.atan(((float) deltaY) / deltaX);
1834
1835 result[0] = 0;
1836 result[1] = 0;
1837 if (Math.abs(Math.cos(angle)) > 0.5f) {
1838 result[0] = (int) Math.signum(deltaX);
1839 }
1840 if (Math.abs(Math.sin(angle)) > 0.5f) {
1841 result[1] = (int) Math.signum(deltaY);
1842 }
1843 }
1844
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001845 private ItemConfiguration findReorderSolution(int pixelX, int pixelY, int minSpanX, int minSpanY,
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001846 int spanX, int spanY, int[] direction, View dragView, boolean decX,
1847 ItemConfiguration solution) {
Adam Cohen8baab352012-03-20 17:39:21 -07001848 // Copy the current state into the solution. This solution will be manipulated as necessary.
1849 copyCurrentStateToSolution(solution, false);
1850 // Copy the current occupied array into the temporary occupied array. This array will be
1851 // manipulated as necessary to find a solution.
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001852 mOccupied.copyTo(mTmpOccupied);
Adam Cohen482ed822012-03-02 14:15:13 -08001853
1854 // We find the nearest cell into which we would place the dragged item, assuming there's
1855 // nothing in its way.
1856 int result[] = new int[2];
1857 result = findNearestArea(pixelX, pixelY, spanX, spanY, result);
1858
1859 boolean success = false;
1860 // First we try the exact nearest position of the item being dragged,
1861 // we will then want to try to move this around to other neighbouring positions
Adam Cohen8baab352012-03-20 17:39:21 -07001862 success = rearrangementExists(result[0], result[1], spanX, spanY, direction, dragView,
1863 solution);
Adam Cohen482ed822012-03-02 14:15:13 -08001864
1865 if (!success) {
1866 // We try shrinking the widget down to size in an alternating pattern, shrink 1 in
1867 // x, then 1 in y etc.
1868 if (spanX > minSpanX && (minSpanY == spanY || decX)) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001869 return findReorderSolution(pixelX, pixelY, minSpanX, minSpanY, spanX - 1, spanY,
1870 direction, dragView, false, solution);
Adam Cohen482ed822012-03-02 14:15:13 -08001871 } else if (spanY > minSpanY) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001872 return findReorderSolution(pixelX, pixelY, minSpanX, minSpanY, spanX, spanY - 1,
1873 direction, dragView, true, solution);
Adam Cohen482ed822012-03-02 14:15:13 -08001874 }
1875 solution.isSolution = false;
1876 } else {
1877 solution.isSolution = true;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001878 solution.cellX = result[0];
1879 solution.cellY = result[1];
1880 solution.spanX = spanX;
1881 solution.spanY = spanY;
Adam Cohen482ed822012-03-02 14:15:13 -08001882 }
1883 return solution;
1884 }
1885
1886 private void copyCurrentStateToSolution(ItemConfiguration solution, boolean temp) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07001887 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08001888 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07001889 View child = mShortcutsAndWidgets.getChildAt(i);
Adam Cohen482ed822012-03-02 14:15:13 -08001890 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Adam Cohen8baab352012-03-20 17:39:21 -07001891 CellAndSpan c;
Adam Cohen482ed822012-03-02 14:15:13 -08001892 if (temp) {
Adam Cohen8baab352012-03-20 17:39:21 -07001893 c = new CellAndSpan(lp.tmpCellX, lp.tmpCellY, lp.cellHSpan, lp.cellVSpan);
Adam Cohen482ed822012-03-02 14:15:13 -08001894 } else {
Adam Cohen8baab352012-03-20 17:39:21 -07001895 c = new CellAndSpan(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan);
Adam Cohen482ed822012-03-02 14:15:13 -08001896 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001897 solution.add(child, c);
Adam Cohen482ed822012-03-02 14:15:13 -08001898 }
1899 }
1900
1901 private void copySolutionToTempState(ItemConfiguration solution, View dragView) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001902 mTmpOccupied.clear();
Adam Cohen482ed822012-03-02 14:15:13 -08001903
Michael Jurkaa52570f2012-03-20 03:18:20 -07001904 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08001905 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07001906 View child = mShortcutsAndWidgets.getChildAt(i);
Adam Cohen482ed822012-03-02 14:15:13 -08001907 if (child == dragView) continue;
1908 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Adam Cohen8baab352012-03-20 17:39:21 -07001909 CellAndSpan c = solution.map.get(child);
1910 if (c != null) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001911 lp.tmpCellX = c.cellX;
1912 lp.tmpCellY = c.cellY;
Adam Cohen8baab352012-03-20 17:39:21 -07001913 lp.cellHSpan = c.spanX;
1914 lp.cellVSpan = c.spanY;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001915 mTmpOccupied.markCells(c, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001916 }
1917 }
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001918 mTmpOccupied.markCells(solution, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001919 }
1920
1921 private void animateItemsToSolution(ItemConfiguration solution, View dragView, boolean
1922 commitDragView) {
1923
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001924 GridOccupancy occupied = DESTRUCTIVE_REORDER ? mOccupied : mTmpOccupied;
1925 occupied.clear();
Adam Cohen482ed822012-03-02 14:15:13 -08001926
Michael Jurkaa52570f2012-03-20 03:18:20 -07001927 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08001928 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07001929 View child = mShortcutsAndWidgets.getChildAt(i);
Adam Cohen482ed822012-03-02 14:15:13 -08001930 if (child == dragView) continue;
Adam Cohen8baab352012-03-20 17:39:21 -07001931 CellAndSpan c = solution.map.get(child);
1932 if (c != null) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001933 animateChildToPosition(child, c.cellX, c.cellY, REORDER_ANIMATION_DURATION, 0,
Adam Cohen19f37922012-03-21 11:59:11 -07001934 DESTRUCTIVE_REORDER, false);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001935 occupied.markCells(c, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001936 }
1937 }
1938 if (commitDragView) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001939 occupied.markCells(solution, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001940 }
1941 }
1942
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001943
1944 // This method starts or changes the reorder preview animations
1945 private void beginOrAdjustReorderPreviewAnimations(ItemConfiguration solution,
1946 View dragView, int delay, int mode) {
Adam Cohen19f37922012-03-21 11:59:11 -07001947 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen19f37922012-03-21 11:59:11 -07001948 for (int i = 0; i < childCount; i++) {
1949 View child = mShortcutsAndWidgets.getChildAt(i);
1950 if (child == dragView) continue;
1951 CellAndSpan c = solution.map.get(child);
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001952 boolean skip = mode == ReorderPreviewAnimation.MODE_HINT && solution.intersectingViews
1953 != null && !solution.intersectingViews.contains(child);
1954
Adam Cohen19f37922012-03-21 11:59:11 -07001955 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001956 if (c != null && !skip) {
1957 ReorderPreviewAnimation rha = new ReorderPreviewAnimation(child, mode, lp.cellX,
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07001958 lp.cellY, c.cellX, c.cellY, c.spanX, c.spanY);
Adam Cohend024f982012-05-23 18:26:45 -07001959 rha.animate();
Adam Cohen19f37922012-03-21 11:59:11 -07001960 }
1961 }
1962 }
1963
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001964 // Class which represents the reorder preview animations. These animations show that an item is
Adam Cohen19f37922012-03-21 11:59:11 -07001965 // in a temporary state, and hint at where the item will return to.
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001966 class ReorderPreviewAnimation {
Adam Cohen19f37922012-03-21 11:59:11 -07001967 View child;
Adam Cohend024f982012-05-23 18:26:45 -07001968 float finalDeltaX;
1969 float finalDeltaY;
1970 float initDeltaX;
1971 float initDeltaY;
1972 float finalScale;
1973 float initScale;
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001974 int mode;
1975 boolean repeating = false;
1976 private static final int PREVIEW_DURATION = 300;
1977 private static final int HINT_DURATION = Workspace.REORDER_TIMEOUT;
1978
1979 public static final int MODE_HINT = 0;
1980 public static final int MODE_PREVIEW = 1;
1981
Adam Cohene7587d22012-05-24 18:50:02 -07001982 Animator a;
Adam Cohen19f37922012-03-21 11:59:11 -07001983
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001984 public ReorderPreviewAnimation(View child, int mode, int cellX0, int cellY0, int cellX1,
1985 int cellY1, int spanX, int spanY) {
Adam Cohen19f37922012-03-21 11:59:11 -07001986 regionToCenterPoint(cellX0, cellY0, spanX, spanY, mTmpPoint);
1987 final int x0 = mTmpPoint[0];
1988 final int y0 = mTmpPoint[1];
1989 regionToCenterPoint(cellX1, cellY1, spanX, spanY, mTmpPoint);
1990 final int x1 = mTmpPoint[0];
1991 final int y1 = mTmpPoint[1];
1992 final int dX = x1 - x0;
1993 final int dY = y1 - y0;
Adam Cohend024f982012-05-23 18:26:45 -07001994 finalDeltaX = 0;
1995 finalDeltaY = 0;
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001996 int dir = mode == MODE_HINT ? -1 : 1;
Adam Cohen19f37922012-03-21 11:59:11 -07001997 if (dX == dY && dX == 0) {
1998 } else {
1999 if (dY == 0) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002000 finalDeltaX = - dir * Math.signum(dX) * mReorderPreviewAnimationMagnitude;
Adam Cohen19f37922012-03-21 11:59:11 -07002001 } else if (dX == 0) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002002 finalDeltaY = - dir * Math.signum(dY) * mReorderPreviewAnimationMagnitude;
Adam Cohen19f37922012-03-21 11:59:11 -07002003 } else {
2004 double angle = Math.atan( (float) (dY) / dX);
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002005 finalDeltaX = (int) (- dir * Math.signum(dX) *
2006 Math.abs(Math.cos(angle) * mReorderPreviewAnimationMagnitude));
2007 finalDeltaY = (int) (- dir * Math.signum(dY) *
2008 Math.abs(Math.sin(angle) * mReorderPreviewAnimationMagnitude));
Adam Cohen19f37922012-03-21 11:59:11 -07002009 }
2010 }
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002011 this.mode = mode;
Adam Cohend024f982012-05-23 18:26:45 -07002012 initDeltaX = child.getTranslationX();
2013 initDeltaY = child.getTranslationY();
Adam Cohen307fe232012-08-16 17:55:58 -07002014 finalScale = getChildrenScale() - 4.0f / child.getWidth();
Adam Cohend024f982012-05-23 18:26:45 -07002015 initScale = child.getScaleX();
Adam Cohen19f37922012-03-21 11:59:11 -07002016 this.child = child;
2017 }
2018
Adam Cohend024f982012-05-23 18:26:45 -07002019 void animate() {
Adam Cohen19f37922012-03-21 11:59:11 -07002020 if (mShakeAnimators.containsKey(child)) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002021 ReorderPreviewAnimation oldAnimation = mShakeAnimators.get(child);
Adam Cohend024f982012-05-23 18:26:45 -07002022 oldAnimation.cancel();
Adam Cohen19f37922012-03-21 11:59:11 -07002023 mShakeAnimators.remove(child);
Adam Cohene7587d22012-05-24 18:50:02 -07002024 if (finalDeltaX == 0 && finalDeltaY == 0) {
2025 completeAnimationImmediately();
2026 return;
2027 }
Adam Cohen19f37922012-03-21 11:59:11 -07002028 }
Adam Cohend024f982012-05-23 18:26:45 -07002029 if (finalDeltaX == 0 && finalDeltaY == 0) {
Adam Cohen19f37922012-03-21 11:59:11 -07002030 return;
2031 }
Michael Jurkaf1ad6082013-03-13 12:55:46 +01002032 ValueAnimator va = LauncherAnimUtils.ofFloat(child, 0f, 1f);
Adam Cohene7587d22012-05-24 18:50:02 -07002033 a = va;
Tony Wickham9e0702f2015-09-02 14:45:39 -07002034
2035 // Animations are disabled in power save mode, causing the repeated animation to jump
2036 // spastically between beginning and end states. Since this looks bad, we don't repeat
2037 // the animation in power save mode.
Tony Wickham112ac952015-11-12 12:31:50 -08002038 if (!Utilities.isPowerSaverOn(getContext())) {
Tony Wickham9e0702f2015-09-02 14:45:39 -07002039 va.setRepeatMode(ValueAnimator.REVERSE);
2040 va.setRepeatCount(ValueAnimator.INFINITE);
2041 }
2042
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002043 va.setDuration(mode == MODE_HINT ? HINT_DURATION : PREVIEW_DURATION);
Adam Cohend024f982012-05-23 18:26:45 -07002044 va.setStartDelay((int) (Math.random() * 60));
Adam Cohen19f37922012-03-21 11:59:11 -07002045 va.addUpdateListener(new AnimatorUpdateListener() {
2046 @Override
2047 public void onAnimationUpdate(ValueAnimator animation) {
2048 float r = ((Float) animation.getAnimatedValue()).floatValue();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002049 float r1 = (mode == MODE_HINT && repeating) ? 1.0f : r;
2050 float x = r1 * finalDeltaX + (1 - r1) * initDeltaX;
2051 float y = r1 * finalDeltaY + (1 - r1) * initDeltaY;
Adam Cohen19f37922012-03-21 11:59:11 -07002052 child.setTranslationX(x);
2053 child.setTranslationY(y);
Adam Cohend024f982012-05-23 18:26:45 -07002054 float s = r * finalScale + (1 - r) * initScale;
Brandon Keely50e6e562012-05-08 16:28:49 -07002055 child.setScaleX(s);
2056 child.setScaleY(s);
Adam Cohen19f37922012-03-21 11:59:11 -07002057 }
2058 });
2059 va.addListener(new AnimatorListenerAdapter() {
2060 public void onAnimationRepeat(Animator animation) {
Adam Cohen19f37922012-03-21 11:59:11 -07002061 // We make sure to end only after a full period
Adam Cohend024f982012-05-23 18:26:45 -07002062 initDeltaX = 0;
2063 initDeltaY = 0;
Adam Cohen307fe232012-08-16 17:55:58 -07002064 initScale = getChildrenScale();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002065 repeating = true;
Adam Cohen19f37922012-03-21 11:59:11 -07002066 }
2067 });
Adam Cohen19f37922012-03-21 11:59:11 -07002068 mShakeAnimators.put(child, this);
2069 va.start();
2070 }
2071
Adam Cohend024f982012-05-23 18:26:45 -07002072 private void cancel() {
Adam Cohene7587d22012-05-24 18:50:02 -07002073 if (a != null) {
2074 a.cancel();
2075 }
Adam Cohen19f37922012-03-21 11:59:11 -07002076 }
Adam Cohene7587d22012-05-24 18:50:02 -07002077
Adam Cohen091440a2015-03-18 14:16:05 -07002078 @Thunk void completeAnimationImmediately() {
Adam Cohene7587d22012-05-24 18:50:02 -07002079 if (a != null) {
2080 a.cancel();
2081 }
Brandon Keely50e6e562012-05-08 16:28:49 -07002082
Sunny Goyal5d2fc322015-07-06 22:52:49 -07002083 a = new LauncherViewPropertyAnimator(child)
2084 .scaleX(getChildrenScale())
2085 .scaleY(getChildrenScale())
2086 .translationX(0)
2087 .translationY(0)
2088 .setDuration(REORDER_ANIMATION_DURATION);
2089 a.setInterpolator(new android.view.animation.DecelerateInterpolator(1.5f));
2090 a.start();
Brandon Keely50e6e562012-05-08 16:28:49 -07002091 }
Adam Cohen19f37922012-03-21 11:59:11 -07002092 }
2093
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002094 private void completeAndClearReorderPreviewAnimations() {
2095 for (ReorderPreviewAnimation a: mShakeAnimators.values()) {
Brandon Keely50e6e562012-05-08 16:28:49 -07002096 a.completeAnimationImmediately();
Adam Cohen19f37922012-03-21 11:59:11 -07002097 }
2098 mShakeAnimators.clear();
2099 }
2100
Adam Cohen482ed822012-03-02 14:15:13 -08002101 private void commitTempPlacement() {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002102 mTmpOccupied.copyTo(mOccupied);
Sunny Goyalaa8ef112015-06-12 20:04:41 -07002103
2104 long screenId = mLauncher.getWorkspace().getIdForScreen(this);
2105 int container = Favorites.CONTAINER_DESKTOP;
2106
2107 if (mLauncher.isHotseatLayout(this)) {
2108 screenId = -1;
2109 container = Favorites.CONTAINER_HOTSEAT;
2110 }
2111
Michael Jurkaa52570f2012-03-20 03:18:20 -07002112 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08002113 for (int i = 0; i < childCount; i++) {
Adam Cohenea889a22012-03-27 16:45:39 -07002114 View child = mShortcutsAndWidgets.getChildAt(i);
2115 LayoutParams lp = (LayoutParams) child.getLayoutParams();
2116 ItemInfo info = (ItemInfo) child.getTag();
Adam Cohen2acce882012-03-28 19:03:19 -07002117 // We do a null check here because the item info can be null in the case of the
2118 // AllApps button in the hotseat.
2119 if (info != null) {
Sunny Goyalaa8ef112015-06-12 20:04:41 -07002120 final boolean requiresDbUpdate = (info.cellX != lp.tmpCellX
2121 || info.cellY != lp.tmpCellY || info.spanX != lp.cellHSpan
2122 || info.spanY != lp.cellVSpan);
2123
Adam Cohen2acce882012-03-28 19:03:19 -07002124 info.cellX = lp.cellX = lp.tmpCellX;
2125 info.cellY = lp.cellY = lp.tmpCellY;
Adam Cohenbebf0422012-04-11 18:06:28 -07002126 info.spanX = lp.cellHSpan;
2127 info.spanY = lp.cellVSpan;
Sunny Goyalaa8ef112015-06-12 20:04:41 -07002128
2129 if (requiresDbUpdate) {
2130 LauncherModel.modifyItemInDatabase(mLauncher, info, container, screenId,
2131 info.cellX, info.cellY, info.spanX, info.spanY);
2132 }
Adam Cohen2acce882012-03-28 19:03:19 -07002133 }
Adam Cohen482ed822012-03-02 14:15:13 -08002134 }
2135 }
2136
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002137 private void setUseTempCoords(boolean useTempCoords) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002138 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08002139 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002140 LayoutParams lp = (LayoutParams) mShortcutsAndWidgets.getChildAt(i).getLayoutParams();
Adam Cohen482ed822012-03-02 14:15:13 -08002141 lp.useTmpCoords = useTempCoords;
2142 }
2143 }
2144
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002145 private ItemConfiguration findConfigurationNoShuffle(int pixelX, int pixelY, int minSpanX, int minSpanY,
Adam Cohen482ed822012-03-02 14:15:13 -08002146 int spanX, int spanY, View dragView, ItemConfiguration solution) {
2147 int[] result = new int[2];
2148 int[] resultSpan = new int[2];
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002149 findNearestVacantArea(pixelX, pixelY, minSpanX, minSpanY, spanX, spanY, result,
Adam Cohen482ed822012-03-02 14:15:13 -08002150 resultSpan);
2151 if (result[0] >= 0 && result[1] >= 0) {
2152 copyCurrentStateToSolution(solution, false);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002153 solution.cellX = result[0];
2154 solution.cellY = result[1];
2155 solution.spanX = resultSpan[0];
2156 solution.spanY = resultSpan[1];
Adam Cohen482ed822012-03-02 14:15:13 -08002157 solution.isSolution = true;
2158 } else {
2159 solution.isSolution = false;
2160 }
2161 return solution;
2162 }
2163
Adam Cohen19f37922012-03-21 11:59:11 -07002164 /* This seems like it should be obvious and straight-forward, but when the direction vector
2165 needs to match with the notion of the dragView pushing other views, we have to employ
2166 a slightly more subtle notion of the direction vector. The question is what two points is
2167 the vector between? The center of the dragView and its desired destination? Not quite, as
2168 this doesn't necessarily coincide with the interaction of the dragView and items occupying
2169 those cells. Instead we use some heuristics to often lock the vector to up, down, left
2170 or right, which helps make pushing feel right.
2171 */
2172 private void getDirectionVectorForDrop(int dragViewCenterX, int dragViewCenterY, int spanX,
2173 int spanY, View dragView, int[] resultDirection) {
2174 int[] targetDestination = new int[2];
2175
2176 findNearestArea(dragViewCenterX, dragViewCenterY, spanX, spanY, targetDestination);
2177 Rect dragRect = new Rect();
2178 regionToRect(targetDestination[0], targetDestination[1], spanX, spanY, dragRect);
2179 dragRect.offset(dragViewCenterX - dragRect.centerX(), dragViewCenterY - dragRect.centerY());
2180
2181 Rect dropRegionRect = new Rect();
2182 getViewsIntersectingRegion(targetDestination[0], targetDestination[1], spanX, spanY,
2183 dragView, dropRegionRect, mIntersectingViews);
2184
2185 int dropRegionSpanX = dropRegionRect.width();
2186 int dropRegionSpanY = dropRegionRect.height();
2187
2188 regionToRect(dropRegionRect.left, dropRegionRect.top, dropRegionRect.width(),
2189 dropRegionRect.height(), dropRegionRect);
2190
2191 int deltaX = (dropRegionRect.centerX() - dragViewCenterX) / spanX;
2192 int deltaY = (dropRegionRect.centerY() - dragViewCenterY) / spanY;
2193
2194 if (dropRegionSpanX == mCountX || spanX == mCountX) {
2195 deltaX = 0;
2196 }
2197 if (dropRegionSpanY == mCountY || spanY == mCountY) {
2198 deltaY = 0;
2199 }
2200
2201 if (deltaX == 0 && deltaY == 0) {
2202 // No idea what to do, give a random direction.
2203 resultDirection[0] = 1;
2204 resultDirection[1] = 0;
2205 } else {
2206 computeDirectionVector(deltaX, deltaY, resultDirection);
2207 }
2208 }
2209
2210 // For a given cell and span, fetch the set of views intersecting the region.
2211 private void getViewsIntersectingRegion(int cellX, int cellY, int spanX, int spanY,
2212 View dragView, Rect boundingRect, ArrayList<View> intersectingViews) {
2213 if (boundingRect != null) {
2214 boundingRect.set(cellX, cellY, cellX + spanX, cellY + spanY);
2215 }
2216 intersectingViews.clear();
2217 Rect r0 = new Rect(cellX, cellY, cellX + spanX, cellY + spanY);
2218 Rect r1 = new Rect();
2219 final int count = mShortcutsAndWidgets.getChildCount();
2220 for (int i = 0; i < count; i++) {
2221 View child = mShortcutsAndWidgets.getChildAt(i);
2222 if (child == dragView) continue;
2223 LayoutParams lp = (LayoutParams) child.getLayoutParams();
2224 r1.set(lp.cellX, lp.cellY, lp.cellX + lp.cellHSpan, lp.cellY + lp.cellVSpan);
2225 if (Rect.intersects(r0, r1)) {
2226 mIntersectingViews.add(child);
2227 if (boundingRect != null) {
2228 boundingRect.union(r1);
2229 }
2230 }
2231 }
2232 }
2233
2234 boolean isNearestDropLocationOccupied(int pixelX, int pixelY, int spanX, int spanY,
2235 View dragView, int[] result) {
2236 result = findNearestArea(pixelX, pixelY, spanX, spanY, result);
2237 getViewsIntersectingRegion(result[0], result[1], spanX, spanY, dragView, null,
2238 mIntersectingViews);
2239 return !mIntersectingViews.isEmpty();
2240 }
2241
2242 void revertTempState() {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002243 completeAndClearReorderPreviewAnimations();
2244 if (isItemPlacementDirty() && !DESTRUCTIVE_REORDER) {
2245 final int count = mShortcutsAndWidgets.getChildCount();
2246 for (int i = 0; i < count; i++) {
2247 View child = mShortcutsAndWidgets.getChildAt(i);
2248 LayoutParams lp = (LayoutParams) child.getLayoutParams();
2249 if (lp.tmpCellX != lp.cellX || lp.tmpCellY != lp.cellY) {
2250 lp.tmpCellX = lp.cellX;
2251 lp.tmpCellY = lp.cellY;
2252 animateChildToPosition(child, lp.cellX, lp.cellY, REORDER_ANIMATION_DURATION,
2253 0, false, false);
2254 }
Adam Cohen19f37922012-03-21 11:59:11 -07002255 }
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002256 setItemPlacementDirty(false);
Adam Cohen19f37922012-03-21 11:59:11 -07002257 }
Adam Cohen19f37922012-03-21 11:59:11 -07002258 }
2259
Adam Cohenbebf0422012-04-11 18:06:28 -07002260 boolean createAreaForResize(int cellX, int cellY, int spanX, int spanY,
2261 View dragView, int[] direction, boolean commit) {
2262 int[] pixelXY = new int[2];
2263 regionToCenterPoint(cellX, cellY, spanX, spanY, pixelXY);
2264
2265 // First we determine if things have moved enough to cause a different layout
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002266 ItemConfiguration swapSolution = findReorderSolution(pixelXY[0], pixelXY[1], spanX, spanY,
Adam Cohenbebf0422012-04-11 18:06:28 -07002267 spanX, spanY, direction, dragView, true, new ItemConfiguration());
2268
2269 setUseTempCoords(true);
2270 if (swapSolution != null && swapSolution.isSolution) {
2271 // If we're just testing for a possible location (MODE_ACCEPT_DROP), we don't bother
2272 // committing anything or animating anything as we just want to determine if a solution
2273 // exists
2274 copySolutionToTempState(swapSolution, dragView);
2275 setItemPlacementDirty(true);
2276 animateItemsToSolution(swapSolution, dragView, commit);
2277
2278 if (commit) {
2279 commitTempPlacement();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002280 completeAndClearReorderPreviewAnimations();
Adam Cohenbebf0422012-04-11 18:06:28 -07002281 setItemPlacementDirty(false);
2282 } else {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002283 beginOrAdjustReorderPreviewAnimations(swapSolution, dragView,
2284 REORDER_ANIMATION_DURATION, ReorderPreviewAnimation.MODE_PREVIEW);
Adam Cohenbebf0422012-04-11 18:06:28 -07002285 }
2286 mShortcutsAndWidgets.requestLayout();
2287 }
2288 return swapSolution.isSolution;
2289 }
2290
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002291 int[] performReorder(int pixelX, int pixelY, int minSpanX, int minSpanY, int spanX, int spanY,
Adam Cohen482ed822012-03-02 14:15:13 -08002292 View dragView, int[] result, int resultSpan[], int mode) {
Adam Cohen482ed822012-03-02 14:15:13 -08002293 // First we determine if things have moved enough to cause a different layout
Adam Cohen47a876d2012-03-19 13:21:41 -07002294 result = findNearestArea(pixelX, pixelY, spanX, spanY, result);
Adam Cohen482ed822012-03-02 14:15:13 -08002295
2296 if (resultSpan == null) {
2297 resultSpan = new int[2];
2298 }
2299
Adam Cohen19f37922012-03-21 11:59:11 -07002300 // When we are checking drop validity or actually dropping, we don't recompute the
2301 // direction vector, since we want the solution to match the preview, and it's possible
2302 // that the exact position of the item has changed to result in a new reordering outcome.
Adam Cohenb209e632012-03-27 17:09:36 -07002303 if ((mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL || mode == MODE_ACCEPT_DROP)
2304 && mPreviousReorderDirection[0] != INVALID_DIRECTION) {
Adam Cohen19f37922012-03-21 11:59:11 -07002305 mDirectionVector[0] = mPreviousReorderDirection[0];
2306 mDirectionVector[1] = mPreviousReorderDirection[1];
2307 // We reset this vector after drop
Adam Cohenb209e632012-03-27 17:09:36 -07002308 if (mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL) {
2309 mPreviousReorderDirection[0] = INVALID_DIRECTION;
2310 mPreviousReorderDirection[1] = INVALID_DIRECTION;
Adam Cohen19f37922012-03-21 11:59:11 -07002311 }
2312 } else {
2313 getDirectionVectorForDrop(pixelX, pixelY, spanX, spanY, dragView, mDirectionVector);
2314 mPreviousReorderDirection[0] = mDirectionVector[0];
2315 mPreviousReorderDirection[1] = mDirectionVector[1];
2316 }
2317
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002318 // Find a solution involving pushing / displacing any items in the way
2319 ItemConfiguration swapSolution = findReorderSolution(pixelX, pixelY, minSpanX, minSpanY,
Adam Cohen482ed822012-03-02 14:15:13 -08002320 spanX, spanY, mDirectionVector, dragView, true, new ItemConfiguration());
2321
2322 // We attempt the approach which doesn't shuffle views at all
2323 ItemConfiguration noShuffleSolution = findConfigurationNoShuffle(pixelX, pixelY, minSpanX,
2324 minSpanY, spanX, spanY, dragView, new ItemConfiguration());
2325
2326 ItemConfiguration finalSolution = null;
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002327
2328 // If the reorder solution requires resizing (shrinking) the item being dropped, we instead
2329 // favor a solution in which the item is not resized, but
Adam Cohen482ed822012-03-02 14:15:13 -08002330 if (swapSolution.isSolution && swapSolution.area() >= noShuffleSolution.area()) {
2331 finalSolution = swapSolution;
2332 } else if (noShuffleSolution.isSolution) {
2333 finalSolution = noShuffleSolution;
2334 }
2335
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002336 if (mode == MODE_SHOW_REORDER_HINT) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002337 if (finalSolution != null) {
Adam Cohenfe692872013-12-11 14:47:23 -08002338 beginOrAdjustReorderPreviewAnimations(finalSolution, dragView, 0,
2339 ReorderPreviewAnimation.MODE_HINT);
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002340 result[0] = finalSolution.cellX;
2341 result[1] = finalSolution.cellY;
2342 resultSpan[0] = finalSolution.spanX;
2343 resultSpan[1] = finalSolution.spanY;
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002344 } else {
2345 result[0] = result[1] = resultSpan[0] = resultSpan[1] = -1;
2346 }
2347 return result;
2348 }
2349
Adam Cohen482ed822012-03-02 14:15:13 -08002350 boolean foundSolution = true;
2351 if (!DESTRUCTIVE_REORDER) {
2352 setUseTempCoords(true);
2353 }
2354
2355 if (finalSolution != null) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002356 result[0] = finalSolution.cellX;
2357 result[1] = finalSolution.cellY;
2358 resultSpan[0] = finalSolution.spanX;
2359 resultSpan[1] = finalSolution.spanY;
Adam Cohen482ed822012-03-02 14:15:13 -08002360
2361 // If we're just testing for a possible location (MODE_ACCEPT_DROP), we don't bother
2362 // committing anything or animating anything as we just want to determine if a solution
2363 // exists
2364 if (mode == MODE_DRAG_OVER || mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL) {
2365 if (!DESTRUCTIVE_REORDER) {
2366 copySolutionToTempState(finalSolution, dragView);
2367 }
2368 setItemPlacementDirty(true);
2369 animateItemsToSolution(finalSolution, dragView, mode == MODE_ON_DROP);
2370
Adam Cohen19f37922012-03-21 11:59:11 -07002371 if (!DESTRUCTIVE_REORDER &&
2372 (mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL)) {
Adam Cohen482ed822012-03-02 14:15:13 -08002373 commitTempPlacement();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002374 completeAndClearReorderPreviewAnimations();
Adam Cohen19f37922012-03-21 11:59:11 -07002375 setItemPlacementDirty(false);
2376 } else {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002377 beginOrAdjustReorderPreviewAnimations(finalSolution, dragView,
2378 REORDER_ANIMATION_DURATION, ReorderPreviewAnimation.MODE_PREVIEW);
Adam Cohen482ed822012-03-02 14:15:13 -08002379 }
2380 }
2381 } else {
2382 foundSolution = false;
2383 result[0] = result[1] = resultSpan[0] = resultSpan[1] = -1;
2384 }
2385
2386 if ((mode == MODE_ON_DROP || !foundSolution) && !DESTRUCTIVE_REORDER) {
2387 setUseTempCoords(false);
2388 }
Adam Cohen482ed822012-03-02 14:15:13 -08002389
Michael Jurkaa52570f2012-03-20 03:18:20 -07002390 mShortcutsAndWidgets.requestLayout();
Adam Cohen482ed822012-03-02 14:15:13 -08002391 return result;
2392 }
2393
Adam Cohen19f37922012-03-21 11:59:11 -07002394 void setItemPlacementDirty(boolean dirty) {
2395 mItemPlacementDirty = dirty;
Adam Cohen482ed822012-03-02 14:15:13 -08002396 }
Adam Cohen19f37922012-03-21 11:59:11 -07002397 boolean isItemPlacementDirty() {
2398 return mItemPlacementDirty;
Adam Cohen482ed822012-03-02 14:15:13 -08002399 }
2400
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002401 private static class ItemConfiguration extends CellAndSpan {
Adam Cohen8baab352012-03-20 17:39:21 -07002402 HashMap<View, CellAndSpan> map = new HashMap<View, CellAndSpan>();
Adam Cohenf3900c22012-11-16 18:28:11 -08002403 private HashMap<View, CellAndSpan> savedMap = new HashMap<View, CellAndSpan>();
2404 ArrayList<View> sortedViews = new ArrayList<View>();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002405 ArrayList<View> intersectingViews;
Adam Cohen482ed822012-03-02 14:15:13 -08002406 boolean isSolution = false;
Adam Cohen482ed822012-03-02 14:15:13 -08002407
Adam Cohenf3900c22012-11-16 18:28:11 -08002408 void save() {
2409 // Copy current state into savedMap
2410 for (View v: map.keySet()) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002411 savedMap.get(v).copyFrom(map.get(v));
Adam Cohenf3900c22012-11-16 18:28:11 -08002412 }
2413 }
2414
2415 void restore() {
2416 // Restore current state from savedMap
2417 for (View v: savedMap.keySet()) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002418 map.get(v).copyFrom(savedMap.get(v));
Adam Cohenf3900c22012-11-16 18:28:11 -08002419 }
2420 }
2421
2422 void add(View v, CellAndSpan cs) {
2423 map.put(v, cs);
2424 savedMap.put(v, new CellAndSpan());
2425 sortedViews.add(v);
2426 }
2427
Adam Cohen482ed822012-03-02 14:15:13 -08002428 int area() {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002429 return spanX * spanY;
Adam Cohenf3900c22012-11-16 18:28:11 -08002430 }
2431
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002432 void getBoundingRectForViews(ArrayList<View> views, Rect outRect) {
2433 boolean first = true;
2434 for (View v: views) {
2435 CellAndSpan c = map.get(v);
2436 if (first) {
2437 outRect.set(c.cellX, c.cellY, c.cellX + c.spanX, c.cellY + c.spanY);
2438 first = false;
2439 } else {
2440 outRect.union(c.cellX, c.cellY, c.cellX + c.spanX, c.cellY + c.spanY);
2441 }
2442 }
Adam Cohenf3900c22012-11-16 18:28:11 -08002443 }
Adam Cohen482ed822012-03-02 14:15:13 -08002444 }
2445
Adam Cohendf035382011-04-11 17:22:04 -07002446 /**
Adam Cohendf035382011-04-11 17:22:04 -07002447 * Find a starting cell position that will fit the given bounds nearest the requested
2448 * cell location. Uses Euclidean distance to score multiple vacant areas.
2449 *
2450 * @param pixelX The X location at which you want to search for a vacant area.
2451 * @param pixelY The Y location at which you want to search for a vacant area.
2452 * @param spanX Horizontal span of the object.
2453 * @param spanY Vertical span of the object.
2454 * @param ignoreView Considers space occupied by this view as unoccupied
2455 * @param result Previously returned value to possibly recycle.
2456 * @return The X, Y cell of a vacant area that can contain this object,
2457 * nearest the requested location.
2458 */
Adam Cohenf9c184a2016-01-15 16:47:43 -08002459 public int[] findNearestArea(int pixelX, int pixelY, int spanX, int spanY, int[] result) {
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002460 return findNearestArea(pixelX, pixelY, spanX, spanY, spanX, spanY, false, result, null);
Adam Cohendf035382011-04-11 17:22:04 -07002461 }
2462
Michael Jurka0280c3b2010-09-17 15:00:07 -07002463 boolean existsEmptyCell() {
2464 return findCellForSpan(null, 1, 1);
2465 }
2466
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002467 /**
Michael Jurka0280c3b2010-09-17 15:00:07 -07002468 * Finds the upper-left coordinate of the first rectangle in the grid that can
2469 * hold a cell of the specified dimensions. If intersectX and intersectY are not -1,
2470 * then this method will only return coordinates for rectangles that contain the cell
2471 * (intersectX, intersectY)
2472 *
2473 * @param cellXY The array that will contain the position of a vacant cell if such a cell
2474 * can be found.
2475 * @param spanX The horizontal span of the cell we want to find.
2476 * @param spanY The vertical span of the cell we want to find.
2477 *
2478 * @return True if a vacant cell of the specified dimension was found, false otherwise.
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002479 */
Hyunyoung Song3f471442015-04-08 19:01:34 -07002480 public boolean findCellForSpan(int[] cellXY, int spanX, int spanY) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002481 if (cellXY == null) {
2482 cellXY = new int[2];
Michael Jurka0280c3b2010-09-17 15:00:07 -07002483 }
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002484 return mOccupied.findVacantCell(cellXY, spanX, spanY);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002485 }
2486
2487 /**
Winson Chungc07918d2011-07-01 15:35:26 -07002488 * A drag event has begun over this layout.
2489 * It may have begun over this layout (in which case onDragChild is called first),
2490 * or it may have begun on another layout.
2491 */
2492 void onDragEnter() {
Winson Chungc07918d2011-07-01 15:35:26 -07002493 mDragging = true;
2494 }
2495
2496 /**
Michael Jurka0280c3b2010-09-17 15:00:07 -07002497 * Called when drag has left this CellLayout or has been completed (successfully or not)
2498 */
2499 void onDragExit() {
Joe Onorato4be866d2010-10-10 11:26:02 -07002500 // This can actually be called when we aren't in a drag, e.g. when adding a new
2501 // item to this layout via the customize drawer.
2502 // Guard against that case.
2503 if (mDragging) {
2504 mDragging = false;
Patrick Dubroyde7658b2010-09-27 11:15:43 -07002505 }
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07002506
2507 // Invalidate the drag data
Adam Cohend41fbf52012-02-16 23:53:59 -08002508 mDragCell[0] = mDragCell[1] = -1;
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07002509 mDragOutlineAnims[mDragOutlineCurrent].animateOut();
2510 mDragOutlineCurrent = (mDragOutlineCurrent + 1) % mDragOutlineAnims.length;
Adam Cohen19f37922012-03-21 11:59:11 -07002511 revertTempState();
Michael Jurka33945b22010-12-21 18:19:38 -08002512 setIsDragOverlapping(false);
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002513 }
2514
2515 /**
Winson Chungaafa03c2010-06-11 17:34:16 -07002516 * Mark a child as having been dropped.
Patrick Dubroyde7658b2010-09-27 11:15:43 -07002517 * At the beginning of the drag operation, the child may have been on another
Patrick Dubroyce34a972010-10-19 10:34:32 -07002518 * screen, but it is re-parented before this method is called.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002519 *
2520 * @param child The child that is being dropped
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002521 */
Adam Cohen716b51e2011-06-30 12:09:54 -07002522 void onDropChild(View child) {
Romain Guyd94533d2009-08-17 10:01:15 -07002523 if (child != null) {
2524 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Romain Guy84f296c2009-11-04 15:00:44 -08002525 lp.dropped = true;
Romain Guyd94533d2009-08-17 10:01:15 -07002526 child.requestLayout();
Tony Wickham1cdb6d02015-09-17 11:08:27 -07002527 markCellsAsOccupiedForView(child);
Romain Guyd94533d2009-08-17 10:01:15 -07002528 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002529 }
2530
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002531 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002532 * Computes a bounding rectangle for a range of cells
Winson Chungaafa03c2010-06-11 17:34:16 -07002533 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002534 * @param cellX X coordinate of upper left corner expressed as a cell position
2535 * @param cellY Y coordinate of upper left corner expressed as a cell position
Winson Chungaafa03c2010-06-11 17:34:16 -07002536 * @param cellHSpan Width in cells
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002537 * @param cellVSpan Height in cells
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002538 * @param resultRect Rect into which to put the results
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002539 */
Adam Cohend41fbf52012-02-16 23:53:59 -08002540 public void cellToRect(int cellX, int cellY, int cellHSpan, int cellVSpan, Rect resultRect) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002541 final int cellWidth = mCellWidth;
2542 final int cellHeight = mCellHeight;
Winson Chungaafa03c2010-06-11 17:34:16 -07002543
Winson Chung4b825dcd2011-06-19 12:41:22 -07002544 final int hStartPadding = getPaddingLeft();
2545 final int vStartPadding = getPaddingTop();
Winson Chungaafa03c2010-06-11 17:34:16 -07002546
Sunny Goyalaa8a8712016-11-20 15:26:01 +05302547 int width = cellHSpan * cellWidth;
2548 int height = cellVSpan * cellHeight;
2549 int x = hStartPadding + cellX * cellWidth;
2550 int y = vStartPadding + cellY * cellHeight;
Winson Chungaafa03c2010-06-11 17:34:16 -07002551
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002552 resultRect.set(x, y, x + width, y + height);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002553 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002554
Adam Cohend4844c32011-02-18 19:25:06 -08002555 public void markCellsAsOccupiedForView(View view) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002556 if (view == null || view.getParent() != mShortcutsAndWidgets) return;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002557 LayoutParams lp = (LayoutParams) view.getLayoutParams();
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002558 mOccupied.markCells(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan, true);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002559 }
2560
Adam Cohend4844c32011-02-18 19:25:06 -08002561 public void markCellsAsUnoccupiedForView(View view) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002562 if (view == null || view.getParent() != mShortcutsAndWidgets) return;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002563 LayoutParams lp = (LayoutParams) view.getLayoutParams();
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002564 mOccupied.markCells(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002565 }
2566
Adam Cohen2801caf2011-05-13 20:57:39 -07002567 public int getDesiredWidth() {
Sunny Goyalaa8a8712016-11-20 15:26:01 +05302568 return getPaddingLeft() + getPaddingRight() + (mCountX * mCellWidth);
Adam Cohen2801caf2011-05-13 20:57:39 -07002569 }
2570
2571 public int getDesiredHeight() {
Sunny Goyalaa8a8712016-11-20 15:26:01 +05302572 return getPaddingTop() + getPaddingBottom() + (mCountY * mCellHeight);
Adam Cohen2801caf2011-05-13 20:57:39 -07002573 }
2574
Michael Jurka66d72172011-04-12 16:29:25 -07002575 public boolean isOccupied(int x, int y) {
2576 if (x < mCountX && y < mCountY) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002577 return mOccupied.cells[x][y];
Michael Jurka66d72172011-04-12 16:29:25 -07002578 } else {
2579 throw new RuntimeException("Position exceeds the bound of this CellLayout");
2580 }
2581 }
2582
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002583 @Override
2584 public ViewGroup.LayoutParams generateLayoutParams(AttributeSet attrs) {
2585 return new CellLayout.LayoutParams(getContext(), attrs);
2586 }
2587
2588 @Override
2589 protected boolean checkLayoutParams(ViewGroup.LayoutParams p) {
2590 return p instanceof CellLayout.LayoutParams;
2591 }
2592
2593 @Override
2594 protected ViewGroup.LayoutParams generateLayoutParams(ViewGroup.LayoutParams p) {
2595 return new CellLayout.LayoutParams(p);
2596 }
2597
2598 public static class LayoutParams extends ViewGroup.MarginLayoutParams {
2599 /**
2600 * Horizontal location of the item in the grid.
2601 */
2602 @ViewDebug.ExportedProperty
2603 public int cellX;
2604
2605 /**
2606 * Vertical location of the item in the grid.
2607 */
2608 @ViewDebug.ExportedProperty
2609 public int cellY;
2610
2611 /**
Adam Cohen482ed822012-03-02 14:15:13 -08002612 * Temporary horizontal location of the item in the grid during reorder
2613 */
2614 public int tmpCellX;
2615
2616 /**
2617 * Temporary vertical location of the item in the grid during reorder
2618 */
2619 public int tmpCellY;
2620
2621 /**
2622 * Indicates that the temporary coordinates should be used to layout the items
2623 */
2624 public boolean useTmpCoords;
2625
2626 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002627 * Number of cells spanned horizontally by the item.
2628 */
2629 @ViewDebug.ExportedProperty
2630 public int cellHSpan;
2631
2632 /**
2633 * Number of cells spanned vertically by the item.
2634 */
2635 @ViewDebug.ExportedProperty
2636 public int cellVSpan;
Winson Chungaafa03c2010-06-11 17:34:16 -07002637
Adam Cohen1b607ed2011-03-03 17:26:50 -08002638 /**
2639 * Indicates whether the item will set its x, y, width and height parameters freely,
2640 * or whether these will be computed based on cellX, cellY, cellHSpan and cellVSpan.
2641 */
Adam Cohend4844c32011-02-18 19:25:06 -08002642 public boolean isLockedToGrid = true;
2643
Adam Cohen482ed822012-03-02 14:15:13 -08002644 /**
Adam Cohenec40b2b2013-07-23 15:52:40 -07002645 * Indicates that this item should use the full extents of its parent.
2646 */
2647 public boolean isFullscreen = false;
2648
2649 /**
Adam Cohen482ed822012-03-02 14:15:13 -08002650 * Indicates whether this item can be reordered. Always true except in the case of the
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07002651 * the AllApps button and QSB place holder.
Adam Cohen482ed822012-03-02 14:15:13 -08002652 */
2653 public boolean canReorder = true;
2654
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002655 // X coordinate of the view in the layout.
2656 @ViewDebug.ExportedProperty
Vadim Tryshevfedca432015-08-19 17:55:02 -07002657 public int x;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002658 // Y coordinate of the view in the layout.
2659 @ViewDebug.ExportedProperty
Vadim Tryshevfedca432015-08-19 17:55:02 -07002660 public int y;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002661
Romain Guy84f296c2009-11-04 15:00:44 -08002662 boolean dropped;
Romain Guyfcb9e712009-10-02 16:06:52 -07002663
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002664 public LayoutParams(Context c, AttributeSet attrs) {
2665 super(c, attrs);
2666 cellHSpan = 1;
2667 cellVSpan = 1;
2668 }
2669
2670 public LayoutParams(ViewGroup.LayoutParams source) {
2671 super(source);
2672 cellHSpan = 1;
2673 cellVSpan = 1;
2674 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002675
2676 public LayoutParams(LayoutParams source) {
2677 super(source);
2678 this.cellX = source.cellX;
2679 this.cellY = source.cellY;
2680 this.cellHSpan = source.cellHSpan;
2681 this.cellVSpan = source.cellVSpan;
2682 }
2683
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002684 public LayoutParams(int cellX, int cellY, int cellHSpan, int cellVSpan) {
Romain Guy8f19cdd2010-01-08 15:07:00 -08002685 super(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002686 this.cellX = cellX;
2687 this.cellY = cellY;
2688 this.cellHSpan = cellHSpan;
2689 this.cellVSpan = cellVSpan;
2690 }
2691
Sunny Goyalaa8a8712016-11-20 15:26:01 +05302692 public void setup(int cellWidth, int cellHeight, boolean invertHorizontally, int colCount) {
Adam Cohend4844c32011-02-18 19:25:06 -08002693 if (isLockedToGrid) {
2694 final int myCellHSpan = cellHSpan;
2695 final int myCellVSpan = cellVSpan;
Adam Cohen2374abf2013-04-16 14:56:57 -07002696 int myCellX = useTmpCoords ? tmpCellX : cellX;
2697 int myCellY = useTmpCoords ? tmpCellY : cellY;
2698
2699 if (invertHorizontally) {
2700 myCellX = colCount - myCellX - cellHSpan;
2701 }
Adam Cohen1b607ed2011-03-03 17:26:50 -08002702
Sunny Goyalaa8a8712016-11-20 15:26:01 +05302703 width = myCellHSpan * cellWidth - leftMargin - rightMargin;
2704 height = myCellVSpan * cellHeight - topMargin - bottomMargin;
2705 x = (myCellX * cellWidth + leftMargin);
2706 y = (myCellY * cellHeight + topMargin);
Adam Cohend4844c32011-02-18 19:25:06 -08002707 }
2708 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002709
Winson Chungaafa03c2010-06-11 17:34:16 -07002710 public String toString() {
2711 return "(" + this.cellX + ", " + this.cellY + ")";
2712 }
Adam Cohen7f4eabe2011-04-21 16:19:16 -07002713
2714 public void setWidth(int width) {
2715 this.width = width;
2716 }
2717
2718 public int getWidth() {
2719 return width;
2720 }
2721
2722 public void setHeight(int height) {
2723 this.height = height;
2724 }
2725
2726 public int getHeight() {
2727 return height;
2728 }
2729
2730 public void setX(int x) {
2731 this.x = x;
2732 }
2733
2734 public int getX() {
2735 return x;
2736 }
2737
2738 public void setY(int y) {
2739 this.y = y;
2740 }
2741
2742 public int getY() {
2743 return y;
2744 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002745 }
2746
Michael Jurka0280c3b2010-09-17 15:00:07 -07002747 // This class stores info for two purposes:
2748 // 1. When dragging items (mDragInfo in Workspace), we store the View, its cellX & cellY,
2749 // its spanX, spanY, and the screen it is on
2750 // 2. When long clicking on an empty cell in a CellLayout, we save information about the
2751 // cellX and cellY coordinates and which page was clicked. We then set this as a tag on
2752 // the CellLayout that was long clicked
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002753 public static final class CellInfo extends CellAndSpan {
Adam Cohenf9c184a2016-01-15 16:47:43 -08002754 public View cell;
Adam Cohendcd297f2013-06-18 13:13:40 -07002755 long screenId;
Winson Chung3d503fb2011-07-13 17:25:49 -07002756 long container;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002757
Sunny Goyal83a8f042015-05-19 12:52:12 -07002758 public CellInfo(View v, ItemInfo info) {
Adam Cohene0aaa0d2014-05-12 12:44:22 -07002759 cellX = info.cellX;
2760 cellY = info.cellY;
2761 spanX = info.spanX;
2762 spanY = info.spanY;
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002763 cell = v;
Adam Cohene0aaa0d2014-05-12 12:44:22 -07002764 screenId = info.screenId;
2765 container = info.container;
2766 }
2767
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002768 @Override
2769 public String toString() {
Winson Chungaafa03c2010-06-11 17:34:16 -07002770 return "Cell[view=" + (cell == null ? "null" : cell.getClass())
2771 + ", x=" + cellX + ", y=" + cellY + "]";
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002772 }
2773 }
Michael Jurkad771c962011-08-09 15:00:48 -07002774
Tony Wickham86930612015-09-09 13:50:40 -07002775 /**
2776 * Returns whether an item can be placed in this CellLayout (after rearranging and/or resizing
2777 * if necessary).
2778 */
2779 public boolean hasReorderSolution(ItemInfo itemInfo) {
2780 int[] cellPoint = new int[2];
2781 // Check for a solution starting at every cell.
2782 for (int cellX = 0; cellX < getCountX(); cellX++) {
2783 for (int cellY = 0; cellY < getCountY(); cellY++) {
2784 cellToPoint(cellX, cellY, cellPoint);
2785 if (findReorderSolution(cellPoint[0], cellPoint[1], itemInfo.minSpanX,
2786 itemInfo.minSpanY, itemInfo.spanX, itemInfo.spanY, mDirectionVector, null,
2787 true, new ItemConfiguration()).isSolution) {
2788 return true;
2789 }
2790 }
2791 }
2792 return false;
2793 }
2794
Sunny Goyal9ca9c132015-04-29 14:57:22 -07002795 public boolean isRegionVacant(int x, int y, int spanX, int spanY) {
Sunny Goyalff4ba2d2016-04-02 14:12:34 -07002796 return mOccupied.isRegionVacant(x, y, spanX, spanY);
Sunny Goyal9ca9c132015-04-29 14:57:22 -07002797 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002798}