blob: 078d480062827359522f405e375a75a17cc8e302 [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;
Winson Chungaafa03c2010-06-11 17:34:16 -070027import android.content.res.TypedArray;
Joe Onorato4be866d2010-10-10 11:26:02 -070028import android.graphics.Bitmap;
Winson Chungaafa03c2010-06-11 17:34:16 -070029import android.graphics.Canvas;
Andrew Flynn0dca1ec2012-02-29 13:33:22 -080030import android.graphics.Color;
Joe Onorato4be866d2010-10-10 11:26:02 -070031import android.graphics.Paint;
Patrick Dubroyde7658b2010-09-27 11:15:43 -070032import android.graphics.Point;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080033import android.graphics.Rect;
Adam Cohen482ed822012-03-02 14:15:13 -080034import android.graphics.drawable.ColorDrawable;
Patrick Dubroy6569f2c2010-07-12 14:25:18 -070035import android.graphics.drawable.Drawable;
Sunny Goyal2805e632015-05-20 15:35:32 -070036import android.graphics.drawable.TransitionDrawable;
Adam Cohenc9735cf2015-01-23 16:11:55 -080037import android.os.Build;
Adam Cohen1462de32012-07-24 22:34:36 -070038import android.os.Parcelable;
Adam Cohenc9735cf2015-01-23 16:11:55 -080039import android.support.v4.view.ViewCompat;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080040import android.util.AttributeSet;
Joe Onorato4be866d2010-10-10 11:26:02 -070041import android.util.Log;
Adam Cohen1462de32012-07-24 22:34:36 -070042import android.util.SparseArray;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080043import android.view.MotionEvent;
44import android.view.View;
45import android.view.ViewDebug;
46import android.view.ViewGroup;
Adam Cohenc9735cf2015-01-23 16:11:55 -080047import android.view.accessibility.AccessibilityEvent;
Winson Chung150fbab2010-09-29 17:14:26 -070048import android.view.animation.DecelerateInterpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080049
Sunny Goyal4b6eb262015-05-14 19:24:40 -070050import com.android.launcher3.BubbleTextView.BubbleTextShadowHandler;
Daniel Sandler325dc232013-06-05 22:57:57 -040051import com.android.launcher3.FolderIcon.FolderRingAnimator;
Sunny Goyalaa8ef112015-06-12 20:04:41 -070052import com.android.launcher3.LauncherSettings.Favorites;
Sunny Goyale9b651e2015-04-24 11:44:51 -070053import com.android.launcher3.accessibility.DragAndDropAccessibilityDelegate;
54import com.android.launcher3.accessibility.FolderAccessibilityHelper;
55import com.android.launcher3.accessibility.WorkspaceAccessibilityHelper;
Sunny Goyal6c56c682015-07-16 14:09:05 -070056import com.android.launcher3.config.ProviderConfig;
Adam Cohen091440a2015-03-18 14:16:05 -070057import com.android.launcher3.util.Thunk;
Hyunyoung Song3f471442015-04-08 19:01:34 -070058import com.android.launcher3.widget.PendingAddWidgetInfo;
Patrick Dubroy8e58e912010-10-14 13:21:48 -070059
Adam Cohen69ce2e52011-07-03 19:25:21 -070060import java.util.ArrayList;
Adam Cohenc0dcf592011-06-01 15:30:43 -070061import java.util.Arrays;
Adam Cohenf3900c22012-11-16 18:28:11 -080062import java.util.Collections;
63import java.util.Comparator;
Adam Cohenbfbfd262011-06-13 16:55:12 -070064import java.util.HashMap;
Adam Cohend41fbf52012-02-16 23:53:59 -080065import java.util.Stack;
Adam Cohenc0dcf592011-06-01 15:30:43 -070066
Sunny Goyal4b6eb262015-05-14 19:24:40 -070067public class CellLayout extends ViewGroup implements BubbleTextShadowHandler {
Sunny Goyale9b651e2015-04-24 11:44:51 -070068 public static final int WORKSPACE_ACCESSIBILITY_DRAG = 2;
69 public static final int FOLDER_ACCESSIBILITY_DRAG = 1;
70
Winson Chungaafa03c2010-06-11 17:34:16 -070071 static final String TAG = "CellLayout";
72
Adam Cohen2acce882012-03-28 19:03:19 -070073 private Launcher mLauncher;
Adam Cohen091440a2015-03-18 14:16:05 -070074 @Thunk int mCellWidth;
75 @Thunk int mCellHeight;
Winson Chung11a1a532013-09-13 11:14:45 -070076 private int mFixedCellWidth;
77 private int mFixedCellHeight;
Winson Chungaafa03c2010-06-11 17:34:16 -070078
Adam Cohen091440a2015-03-18 14:16:05 -070079 @Thunk int mCountX;
80 @Thunk int mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080081
Adam Cohen234c4cd2011-07-17 21:03:04 -070082 private int mOriginalWidthGap;
83 private int mOriginalHeightGap;
Adam Cohen091440a2015-03-18 14:16:05 -070084 @Thunk int mWidthGap;
85 @Thunk int mHeightGap;
Winson Chung4b825dcd2011-06-19 12:41:22 -070086 private int mMaxGap;
Adam Cohen917e3882013-10-31 15:03:35 -070087 private boolean mDropPending = false;
Adam Cohenc50438c2014-08-19 17:43:05 -070088 private boolean mIsDragTarget = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080089
Patrick Dubroyde7658b2010-09-27 11:15:43 -070090 // These are temporary variables to prevent having to allocate a new object just to
91 // return an (x, y) value from helper functions. Do NOT use them to maintain other state.
Adam Cohen091440a2015-03-18 14:16:05 -070092 @Thunk final int[] mTmpPoint = new int[2];
Sunny Goyal2805e632015-05-20 15:35:32 -070093 @Thunk final int[] mTempLocation = new int[2];
Patrick Dubroy6569f2c2010-07-12 14:25:18 -070094
The Android Open Source Project31dd5032009-03-03 19:32:27 -080095 boolean[][] mOccupied;
Adam Cohen482ed822012-03-02 14:15:13 -080096 boolean[][] mTmpOccupied;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080097
Michael Jurkadee05892010-07-27 10:01:56 -070098 private OnTouchListener mInterceptTouchListener;
Mady Melloref044dd2015-06-02 15:35:07 -070099 private StylusEventHelper mStylusEventHelper;
Michael Jurkadee05892010-07-27 10:01:56 -0700100
Adam Cohen69ce2e52011-07-03 19:25:21 -0700101 private ArrayList<FolderRingAnimator> mFolderOuterRings = new ArrayList<FolderRingAnimator>();
Adam Cohenc51934b2011-07-26 21:07:43 -0700102 private int[] mFolderLeaveBehindCell = {-1, -1};
Adam Cohen69ce2e52011-07-03 19:25:21 -0700103
Michael Jurka5f1c5092010-09-03 14:15:02 -0700104 private float mBackgroundAlpha;
Adam Cohenf34bab52010-09-30 14:11:56 -0700105
Sunny Goyal2805e632015-05-20 15:35:32 -0700106 private static final int BACKGROUND_ACTIVATE_DURATION = 120;
107 private final TransitionDrawable mBackground;
108
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700109 // These values allow a fixed measurement to be set on the CellLayout.
110 private int mFixedWidth = -1;
111 private int mFixedHeight = -1;
112
Michael Jurka33945b22010-12-21 18:19:38 -0800113 // If we're actively dragging something over this screen, mIsDragOverlapping is true
114 private boolean mIsDragOverlapping = false;
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700115
Winson Chung150fbab2010-09-29 17:14:26 -0700116 // These arrays are used to implement the drag visualization on x-large screens.
Joe Onorato4be866d2010-10-10 11:26:02 -0700117 // They are used as circular arrays, indexed by mDragOutlineCurrent.
Adam Cohen091440a2015-03-18 14:16:05 -0700118 @Thunk Rect[] mDragOutlines = new Rect[4];
119 @Thunk float[] mDragOutlineAlphas = new float[mDragOutlines.length];
Joe Onorato4be866d2010-10-10 11:26:02 -0700120 private InterruptibleInOutAnimator[] mDragOutlineAnims =
121 new InterruptibleInOutAnimator[mDragOutlines.length];
Winson Chung150fbab2010-09-29 17:14:26 -0700122
123 // Used as an index into the above 3 arrays; indicates which is the most current value.
Joe Onorato4be866d2010-10-10 11:26:02 -0700124 private int mDragOutlineCurrent = 0;
Patrick Dubroy8e58e912010-10-14 13:21:48 -0700125 private final Paint mDragOutlinePaint = new Paint();
Winson Chung150fbab2010-09-29 17:14:26 -0700126
Sunny Goyal4fe5a372015-05-14 19:55:10 -0700127 private final ClickShadowView mTouchFeedbackView;
Patrick Dubroy96864c32011-03-10 17:17:23 -0800128
Sunny Goyal316490e2015-06-02 09:38:28 -0700129 @Thunk HashMap<CellLayout.LayoutParams, Animator> mReorderAnimators = new HashMap<>();
130 @Thunk HashMap<View, ReorderPreviewAnimation> mShakeAnimators = new HashMap<>();
Adam Cohen19f37922012-03-21 11:59:11 -0700131
132 private boolean mItemPlacementDirty = false;
Adam Cohenbfbfd262011-06-13 16:55:12 -0700133
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700134 // When a drag operation is in progress, holds the nearest cell to the touch point
135 private final int[] mDragCell = new int[2];
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800136
Joe Onorato4be866d2010-10-10 11:26:02 -0700137 private boolean mDragging = false;
138
Patrick Dubroyce34a972010-10-19 10:34:32 -0700139 private TimeInterpolator mEaseOutInterpolator;
Michael Jurkaa52570f2012-03-20 03:18:20 -0700140 private ShortcutAndWidgetContainer mShortcutsAndWidgets;
Patrick Dubroyce34a972010-10-19 10:34:32 -0700141
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800142 private boolean mIsHotseat = false;
Adam Cohen307fe232012-08-16 17:55:58 -0700143 private float mHotseatScale = 1f;
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800144
Adam Cohenfa3c58f2013-12-06 16:10:55 -0800145 public static final int MODE_SHOW_REORDER_HINT = 0;
146 public static final int MODE_DRAG_OVER = 1;
147 public static final int MODE_ON_DROP = 2;
148 public static final int MODE_ON_DROP_EXTERNAL = 3;
149 public static final int MODE_ACCEPT_DROP = 4;
Adam Cohen19f37922012-03-21 11:59:11 -0700150 private static final boolean DESTRUCTIVE_REORDER = false;
Adam Cohen482ed822012-03-02 14:15:13 -0800151 private static final boolean DEBUG_VISUALIZE_OCCUPIED = false;
152
Adam Cohena897f392012-04-27 18:12:05 -0700153 static final int LANDSCAPE = 0;
154 static final int PORTRAIT = 1;
155
Adam Cohenfa3c58f2013-12-06 16:10:55 -0800156 private static final float REORDER_PREVIEW_MAGNITUDE = 0.12f;
Adam Cohen19f37922012-03-21 11:59:11 -0700157 private static final int REORDER_ANIMATION_DURATION = 150;
Adam Cohen091440a2015-03-18 14:16:05 -0700158 @Thunk float mReorderPreviewAnimationMagnitude;
Adam Cohen19f37922012-03-21 11:59:11 -0700159
Adam Cohen482ed822012-03-02 14:15:13 -0800160 private ArrayList<View> mIntersectingViews = new ArrayList<View>();
161 private Rect mOccupiedRect = new Rect();
162 private int[] mDirectionVector = new int[2];
Adam Cohen19f37922012-03-21 11:59:11 -0700163 int[] mPreviousReorderDirection = new int[2];
Adam Cohenb209e632012-03-27 17:09:36 -0700164 private static final int INVALID_DIRECTION = -100;
Adam Cohen482ed822012-03-02 14:15:13 -0800165
Sunny Goyal2805e632015-05-20 15:35:32 -0700166 private final Rect mTempRect = new Rect();
Winson Chung3a6e7f32013-10-09 15:50:52 -0700167
Michael Jurkaca993832012-06-29 15:17:04 -0700168 private final static Paint sPaint = new Paint();
Romain Guy8a0bff52012-05-06 13:14:33 -0700169
Adam Cohenc9735cf2015-01-23 16:11:55 -0800170 // Related to accessible drag and drop
Sunny Goyale9b651e2015-04-24 11:44:51 -0700171 private DragAndDropAccessibilityDelegate mTouchHelper;
Adam Cohenc9735cf2015-01-23 16:11:55 -0800172 private boolean mUseTouchHelper = false;
Adam Cohenc9735cf2015-01-23 16:11:55 -0800173
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800174 public CellLayout(Context context) {
175 this(context, null);
176 }
177
178 public CellLayout(Context context, AttributeSet attrs) {
179 this(context, attrs, 0);
180 }
181
182 public CellLayout(Context context, AttributeSet attrs, int defStyle) {
183 super(context, attrs, defStyle);
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700184
185 // A ViewGroup usually does not draw, but CellLayout needs to draw a rectangle to show
186 // the user where a dragged item will land when dropped.
187 setWillNotDraw(false);
Romain Guyce3cbd12013-02-25 15:00:36 -0800188 setClipToPadding(false);
Adam Cohen2acce882012-03-28 19:03:19 -0700189 mLauncher = (Launcher) context;
Michael Jurkaa63c4522010-08-19 13:52:27 -0700190
Adam Cohen2e6da152015-05-06 11:42:25 -0700191 DeviceProfile grid = mLauncher.getDeviceProfile();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800192 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.CellLayout, defStyle, 0);
193
Winson Chung11a1a532013-09-13 11:14:45 -0700194 mCellWidth = mCellHeight = -1;
Nilesh Agrawal5f7099a2014-01-02 15:54:57 -0800195 mFixedCellWidth = mFixedCellHeight = -1;
Winson Chung5f8afe62013-08-12 16:19:28 -0700196 mWidthGap = mOriginalWidthGap = 0;
197 mHeightGap = mOriginalHeightGap = 0;
198 mMaxGap = Integer.MAX_VALUE;
Adam Cohen2e6da152015-05-06 11:42:25 -0700199 mCountX = (int) grid.inv.numColumns;
200 mCountY = (int) grid.inv.numRows;
Michael Jurka0280c3b2010-09-17 15:00:07 -0700201 mOccupied = new boolean[mCountX][mCountY];
Adam Cohen482ed822012-03-02 14:15:13 -0800202 mTmpOccupied = new boolean[mCountX][mCountY];
Adam Cohen5b53f292012-03-29 14:30:35 -0700203 mPreviousReorderDirection[0] = INVALID_DIRECTION;
204 mPreviousReorderDirection[1] = INVALID_DIRECTION;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800205
206 a.recycle();
207
208 setAlwaysDrawnWithCacheEnabled(false);
209
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700210 final Resources res = getResources();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700211 mHotseatScale = (float) grid.hotseatIconSizePx / grid.iconSizePx;
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700212
Sunny Goyal2805e632015-05-20 15:35:32 -0700213 mBackground = (TransitionDrawable) res.getDrawable(R.drawable.bg_screenpanel);
214 mBackground.setCallback(this);
Michael Jurka33945b22010-12-21 18:19:38 -0800215
Adam Cohenfa3c58f2013-12-06 16:10:55 -0800216 mReorderPreviewAnimationMagnitude = (REORDER_PREVIEW_MAGNITUDE *
Winson Chung5f8afe62013-08-12 16:19:28 -0700217 grid.iconSizePx);
Adam Cohen19f37922012-03-21 11:59:11 -0700218
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700219 // Initialize the data structures used for the drag visualization.
Patrick Dubroyce34a972010-10-19 10:34:32 -0700220 mEaseOutInterpolator = new DecelerateInterpolator(2.5f); // Quint ease out
Winson Chungb8c69f32011-10-19 21:36:08 -0700221 mDragCell[0] = mDragCell[1] = -1;
Joe Onorato4be866d2010-10-10 11:26:02 -0700222 for (int i = 0; i < mDragOutlines.length; i++) {
Adam Cohend41fbf52012-02-16 23:53:59 -0800223 mDragOutlines[i] = new Rect(-1, -1, -1, -1);
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700224 }
225
226 // When dragging things around the home screens, we show a green outline of
227 // where the item will land. The outlines gradually fade out, leaving a trail
228 // behind the drag path.
229 // Set up all the animations that are used to implement this fading.
230 final int duration = res.getInteger(R.integer.config_dragOutlineFadeTime);
Chet Haase472b2812010-10-14 07:02:04 -0700231 final float fromAlphaValue = 0;
232 final float toAlphaValue = (float)res.getInteger(R.integer.config_dragOutlineMaxAlpha);
Joe Onorato4be866d2010-10-10 11:26:02 -0700233
Patrick Dubroy8e58e912010-10-14 13:21:48 -0700234 Arrays.fill(mDragOutlineAlphas, fromAlphaValue);
Joe Onorato4be866d2010-10-10 11:26:02 -0700235
236 for (int i = 0; i < mDragOutlineAnims.length; i++) {
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700237 final InterruptibleInOutAnimator anim =
Michael Jurkaf1ad6082013-03-13 12:55:46 +0100238 new InterruptibleInOutAnimator(this, duration, fromAlphaValue, toAlphaValue);
Patrick Dubroyce34a972010-10-19 10:34:32 -0700239 anim.getAnimator().setInterpolator(mEaseOutInterpolator);
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700240 final int thisIndex = i;
Chet Haase472b2812010-10-14 07:02:04 -0700241 anim.getAnimator().addUpdateListener(new AnimatorUpdateListener() {
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700242 public void onAnimationUpdate(ValueAnimator animation) {
Joe Onorato4be866d2010-10-10 11:26:02 -0700243 final Bitmap outline = (Bitmap)anim.getTag();
244
245 // If an animation is started and then stopped very quickly, we can still
246 // get spurious updates we've cleared the tag. Guard against this.
247 if (outline == null) {
Michael Jurka3a9fced2012-04-13 14:44:29 -0700248 @SuppressWarnings("all") // suppress dead code warning
249 final boolean debug = false;
250 if (debug) {
Patrick Dubroyfe6bd872010-10-13 17:32:10 -0700251 Object val = animation.getAnimatedValue();
252 Log.d(TAG, "anim " + thisIndex + " update: " + val +
253 ", isStopped " + anim.isStopped());
254 }
Joe Onorato4be866d2010-10-10 11:26:02 -0700255 // Try to prevent it from continuing to run
256 animation.cancel();
257 } else {
Chet Haase472b2812010-10-14 07:02:04 -0700258 mDragOutlineAlphas[thisIndex] = (Float) animation.getAnimatedValue();
Adam Cohend41fbf52012-02-16 23:53:59 -0800259 CellLayout.this.invalidate(mDragOutlines[thisIndex]);
Joe Onorato4be866d2010-10-10 11:26:02 -0700260 }
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700261 }
262 });
Joe Onorato4be866d2010-10-10 11:26:02 -0700263 // The animation holds a reference to the drag outline bitmap as long is it's
264 // running. This way the bitmap can be GCed when the animations are complete.
Chet Haase472b2812010-10-14 07:02:04 -0700265 anim.getAnimator().addListener(new AnimatorListenerAdapter() {
Michael Jurka3c4c20f2010-10-28 15:36:06 -0700266 @Override
Joe Onorato4be866d2010-10-10 11:26:02 -0700267 public void onAnimationEnd(Animator animation) {
Chet Haase472b2812010-10-14 07:02:04 -0700268 if ((Float) ((ValueAnimator) animation).getAnimatedValue() == 0f) {
Joe Onorato4be866d2010-10-10 11:26:02 -0700269 anim.setTag(null);
270 }
271 }
272 });
273 mDragOutlineAnims[i] = anim;
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700274 }
Patrick Dubroyce34a972010-10-19 10:34:32 -0700275
Michael Jurkaa52570f2012-03-20 03:18:20 -0700276 mShortcutsAndWidgets = new ShortcutAndWidgetContainer(context);
Adam Cohen2374abf2013-04-16 14:56:57 -0700277 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap, mHeightGap,
Winson Chung5f8afe62013-08-12 16:19:28 -0700278 mCountX, mCountY);
Adam Cohen2374abf2013-04-16 14:56:57 -0700279
Mady Melloref044dd2015-06-02 15:35:07 -0700280 mStylusEventHelper = new StylusEventHelper(this);
281
Sunny Goyal4fe5a372015-05-14 19:55:10 -0700282 mTouchFeedbackView = new ClickShadowView(context);
283 addView(mTouchFeedbackView);
Michael Jurkaa52570f2012-03-20 03:18:20 -0700284 addView(mShortcutsAndWidgets);
Michael Jurka18014792010-10-14 09:01:34 -0700285 }
286
Adam Cohenc9735cf2015-01-23 16:11:55 -0800287 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Sunny Goyale9b651e2015-04-24 11:44:51 -0700288 public void enableAccessibleDrag(boolean enable, int dragType) {
Adam Cohenc9735cf2015-01-23 16:11:55 -0800289 mUseTouchHelper = enable;
290 if (!enable) {
291 ViewCompat.setAccessibilityDelegate(this, null);
292 setImportantForAccessibility(IMPORTANT_FOR_ACCESSIBILITY_NO);
293 getShortcutsAndWidgets().setImportantForAccessibility(IMPORTANT_FOR_ACCESSIBILITY_NO);
294 setOnClickListener(mLauncher);
295 } else {
Sunny Goyale9b651e2015-04-24 11:44:51 -0700296 if (dragType == WORKSPACE_ACCESSIBILITY_DRAG &&
297 !(mTouchHelper instanceof WorkspaceAccessibilityHelper)) {
298 mTouchHelper = new WorkspaceAccessibilityHelper(this);
299 } else if (dragType == FOLDER_ACCESSIBILITY_DRAG &&
300 !(mTouchHelper instanceof FolderAccessibilityHelper)) {
301 mTouchHelper = new FolderAccessibilityHelper(this);
302 }
Adam Cohenc9735cf2015-01-23 16:11:55 -0800303 ViewCompat.setAccessibilityDelegate(this, mTouchHelper);
304 setImportantForAccessibility(IMPORTANT_FOR_ACCESSIBILITY_YES);
305 getShortcutsAndWidgets().setImportantForAccessibility(IMPORTANT_FOR_ACCESSIBILITY_YES);
306 setOnClickListener(mTouchHelper);
307 }
308
309 // Invalidate the accessibility hierarchy
310 if (getParent() != null) {
311 getParent().notifySubtreeAccessibilityStateChanged(
312 this, this, AccessibilityEvent.CONTENT_CHANGE_TYPE_SUBTREE);
313 }
314 }
315
316 @Override
317 public boolean dispatchHoverEvent(MotionEvent event) {
318 // Always attempt to dispatch hover events to accessibility first.
319 if (mUseTouchHelper && mTouchHelper.dispatchHoverEvent(event)) {
320 return true;
321 }
322 return super.dispatchHoverEvent(event);
323 }
324
325 @Override
Adam Cohenc9735cf2015-01-23 16:11:55 -0800326 public boolean onInterceptTouchEvent(MotionEvent ev) {
327 if (mUseTouchHelper ||
328 (mInterceptTouchListener != null && mInterceptTouchListener.onTouch(this, ev))) {
329 return true;
330 }
331 return false;
332 }
333
Mady Melloref044dd2015-06-02 15:35:07 -0700334 @Override
335 public boolean onTouchEvent(MotionEvent ev) {
336 boolean handled = super.onTouchEvent(ev);
337 // Stylus button press on a home screen should not switch between overview mode and
338 // the home screen mode, however, once in overview mode stylus button press should be
339 // enabled to allow rearranging the different home screens. So check what mode
340 // the workspace is in, and only perform stylus button presses while in overview mode.
341 if (mLauncher.mWorkspace.isInOverviewMode()
342 && mStylusEventHelper.checkAndPerformStylusEvent(ev)) {
343 return true;
344 }
345 return handled;
346 }
347
Chris Craik01f2d7f2013-10-01 14:41:56 -0700348 public void enableHardwareLayer(boolean hasLayer) {
349 mShortcutsAndWidgets.setLayerType(hasLayer ? LAYER_TYPE_HARDWARE : LAYER_TYPE_NONE, sPaint);
Michael Jurkad51f33a2012-06-28 15:35:26 -0700350 }
351
352 public void buildHardwareLayer() {
353 mShortcutsAndWidgets.buildLayer();
Adam Cohen2801caf2011-05-13 20:57:39 -0700354 }
355
Adam Cohen307fe232012-08-16 17:55:58 -0700356 public float getChildrenScale() {
357 return mIsHotseat ? mHotseatScale : 1.0f;
358 }
359
Winson Chung5f8afe62013-08-12 16:19:28 -0700360 public void setCellDimensions(int width, int height) {
Winson Chung11a1a532013-09-13 11:14:45 -0700361 mFixedCellWidth = mCellWidth = width;
362 mFixedCellHeight = mCellHeight = height;
Winson Chung5f8afe62013-08-12 16:19:28 -0700363 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap, mHeightGap,
364 mCountX, mCountY);
365 }
366
Adam Cohen2801caf2011-05-13 20:57:39 -0700367 public void setGridSize(int x, int y) {
368 mCountX = x;
369 mCountY = y;
370 mOccupied = new boolean[mCountX][mCountY];
Adam Cohen482ed822012-03-02 14:15:13 -0800371 mTmpOccupied = new boolean[mCountX][mCountY];
Adam Cohen7fbec102012-03-27 12:42:19 -0700372 mTempRectStack.clear();
Adam Cohen2374abf2013-04-16 14:56:57 -0700373 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap, mHeightGap,
Winson Chung5f8afe62013-08-12 16:19:28 -0700374 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)) {
Sunny Goyal4fe5a372015-05-14 19:55:10 -0700398 mTouchFeedbackView.alignWithIconView(icon, mShortcutsAndWidgets);
399 mTouchFeedbackView.animateShadow();
Sunny Goyal508da152014-08-14 10:53:27 -0700400 }
Patrick Dubroy96864c32011-03-10 17:17:23 -0800401 }
402 }
403
Adam Cohenc50438c2014-08-19 17:43:05 -0700404 void disableDragTarget() {
405 mIsDragTarget = false;
406 }
407
408 boolean isDragTarget() {
409 return mIsDragTarget;
410 }
411
412 void setIsDragOverlapping(boolean isDragOverlapping) {
413 if (mIsDragOverlapping != isDragOverlapping) {
414 mIsDragOverlapping = isDragOverlapping;
Sunny Goyal2805e632015-05-20 15:35:32 -0700415 if (mIsDragOverlapping) {
416 mBackground.startTransition(BACKGROUND_ACTIVATE_DURATION);
417 } else {
418 mBackground.reverseTransition(BACKGROUND_ACTIVATE_DURATION);
419 }
Adam Cohenc50438c2014-08-19 17:43:05 -0700420 invalidate();
421 }
422 }
423
Michael Jurka33945b22010-12-21 18:19:38 -0800424 boolean getIsDragOverlapping() {
425 return mIsDragOverlapping;
426 }
427
Jeff Sharkey83f111d2009-04-20 21:03:13 -0700428 @Override
Patrick Dubroy1262e362010-10-06 15:49:50 -0700429 protected void onDraw(Canvas canvas) {
Sunny Goyal05739772015-05-19 19:59:09 -0700430 if (!mIsDragTarget) {
431 return;
432 }
433
Michael Jurka3e7c7632010-10-02 16:01:03 -0700434 // When we're large, we are either drawn in a "hover" state (ie when dragging an item to
435 // a neighboring page) or with just a normal background (if backgroundAlpha > 0.0f)
436 // When we're small, we are either drawn normally or in the "accepts drops" state (during
437 // a drag). However, we also drag the mini hover background *over* one of those two
438 // backgrounds
Sunny Goyal05739772015-05-19 19:59:09 -0700439 if (mBackgroundAlpha > 0.0f) {
Sunny Goyal2805e632015-05-20 15:35:32 -0700440 mBackground.draw(canvas);
Michael Jurkaa63c4522010-08-19 13:52:27 -0700441 }
Romain Guya6abce82009-11-10 02:54:41 -0800442
Patrick Dubroy8e58e912010-10-14 13:21:48 -0700443 final Paint paint = mDragOutlinePaint;
Joe Onorato4be866d2010-10-10 11:26:02 -0700444 for (int i = 0; i < mDragOutlines.length; i++) {
Chet Haase472b2812010-10-14 07:02:04 -0700445 final float alpha = mDragOutlineAlphas[i];
Joe Onorato4be866d2010-10-10 11:26:02 -0700446 if (alpha > 0) {
Adam Cohend41fbf52012-02-16 23:53:59 -0800447 final Rect r = mDragOutlines[i];
Winson Chung3a6e7f32013-10-09 15:50:52 -0700448 mTempRect.set(r);
449 Utilities.scaleRectAboutCenter(mTempRect, getChildrenScale());
Joe Onorato4be866d2010-10-10 11:26:02 -0700450 final Bitmap b = (Bitmap) mDragOutlineAnims[i].getTag();
Chet Haase472b2812010-10-14 07:02:04 -0700451 paint.setAlpha((int)(alpha + .5f));
Winson Chung3a6e7f32013-10-09 15:50:52 -0700452 canvas.drawBitmap(b, null, mTempRect, paint);
Winson Chung150fbab2010-09-29 17:14:26 -0700453 }
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700454 }
Patrick Dubroy96864c32011-03-10 17:17:23 -0800455
Adam Cohen482ed822012-03-02 14:15:13 -0800456 if (DEBUG_VISUALIZE_OCCUPIED) {
457 int[] pt = new int[2];
458 ColorDrawable cd = new ColorDrawable(Color.RED);
Adam Cohene7587d22012-05-24 18:50:02 -0700459 cd.setBounds(0, 0, mCellWidth, mCellHeight);
Adam Cohen482ed822012-03-02 14:15:13 -0800460 for (int i = 0; i < mCountX; i++) {
461 for (int j = 0; j < mCountY; j++) {
462 if (mOccupied[i][j]) {
463 cellToPoint(i, j, pt);
464 canvas.save();
465 canvas.translate(pt[0], pt[1]);
466 cd.draw(canvas);
467 canvas.restore();
468 }
469 }
470 }
471 }
472
Andrew Flynn850d2e72012-04-26 16:51:20 -0700473 int previewOffset = FolderRingAnimator.sPreviewSize;
474
Adam Cohen69ce2e52011-07-03 19:25:21 -0700475 // The folder outer / inner ring image(s)
Adam Cohen2e6da152015-05-06 11:42:25 -0700476 DeviceProfile grid = mLauncher.getDeviceProfile();
Adam Cohen69ce2e52011-07-03 19:25:21 -0700477 for (int i = 0; i < mFolderOuterRings.size(); i++) {
478 FolderRingAnimator fra = mFolderOuterRings.get(i);
479
Adam Cohen5108bc02013-09-20 17:04:51 -0700480 Drawable d;
481 int width, height;
Adam Cohen69ce2e52011-07-03 19:25:21 -0700482 cellToPoint(fra.mCellX, fra.mCellY, mTempLocation);
Winson Chung5f8afe62013-08-12 16:19:28 -0700483 View child = getChildAt(fra.mCellX, fra.mCellY);
Adam Cohen558f1c22013-10-09 15:15:24 -0700484
Winson Chung89f97052013-09-20 11:32:26 -0700485 if (child != null) {
Adam Cohen558f1c22013-10-09 15:15:24 -0700486 int centerX = mTempLocation[0] + mCellWidth / 2;
487 int centerY = mTempLocation[1] + previewOffset / 2 +
488 child.getPaddingTop() + grid.folderBackgroundOffset;
489
Adam Cohen5108bc02013-09-20 17:04:51 -0700490 // Draw outer ring, if it exists
491 if (FolderIcon.HAS_OUTER_RING) {
492 d = FolderRingAnimator.sSharedOuterRingDrawable;
493 width = (int) (fra.getOuterRingSize() * getChildrenScale());
494 height = width;
495 canvas.save();
496 canvas.translate(centerX - width / 2, centerY - height / 2);
497 d.setBounds(0, 0, width, height);
498 d.draw(canvas);
499 canvas.restore();
500 }
Adam Cohen69ce2e52011-07-03 19:25:21 -0700501
Winson Chung89f97052013-09-20 11:32:26 -0700502 // Draw inner ring
503 d = FolderRingAnimator.sSharedInnerRingDrawable;
504 width = (int) (fra.getInnerRingSize() * getChildrenScale());
505 height = width;
Winson Chung89f97052013-09-20 11:32:26 -0700506 canvas.save();
507 canvas.translate(centerX - width / 2, centerY - width / 2);
508 d.setBounds(0, 0, width, height);
509 d.draw(canvas);
510 canvas.restore();
511 }
Adam Cohen69ce2e52011-07-03 19:25:21 -0700512 }
Adam Cohenc51934b2011-07-26 21:07:43 -0700513
514 if (mFolderLeaveBehindCell[0] >= 0 && mFolderLeaveBehindCell[1] >= 0) {
515 Drawable d = FolderIcon.sSharedFolderLeaveBehind;
516 int width = d.getIntrinsicWidth();
517 int height = d.getIntrinsicHeight();
518
519 cellToPoint(mFolderLeaveBehindCell[0], mFolderLeaveBehindCell[1], mTempLocation);
Winson Chung5f8afe62013-08-12 16:19:28 -0700520 View child = getChildAt(mFolderLeaveBehindCell[0], mFolderLeaveBehindCell[1]);
Winson Chung89f97052013-09-20 11:32:26 -0700521 if (child != null) {
522 int centerX = mTempLocation[0] + mCellWidth / 2;
523 int centerY = mTempLocation[1] + previewOffset / 2 +
524 child.getPaddingTop() + grid.folderBackgroundOffset;
Adam Cohenc51934b2011-07-26 21:07:43 -0700525
Winson Chung89f97052013-09-20 11:32:26 -0700526 canvas.save();
527 canvas.translate(centerX - width / 2, centerY - width / 2);
528 d.setBounds(0, 0, width, height);
529 d.draw(canvas);
530 canvas.restore();
531 }
Adam Cohenc51934b2011-07-26 21:07:43 -0700532 }
Adam Cohen69ce2e52011-07-03 19:25:21 -0700533 }
534
535 public void showFolderAccept(FolderRingAnimator fra) {
536 mFolderOuterRings.add(fra);
537 }
538
539 public void hideFolderAccept(FolderRingAnimator fra) {
540 if (mFolderOuterRings.contains(fra)) {
541 mFolderOuterRings.remove(fra);
542 }
543 invalidate();
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700544 }
545
Adam Cohenc51934b2011-07-26 21:07:43 -0700546 public void setFolderLeaveBehindCell(int x, int y) {
547 mFolderLeaveBehindCell[0] = x;
548 mFolderLeaveBehindCell[1] = y;
549 invalidate();
550 }
551
552 public void clearFolderLeaveBehind() {
553 mFolderLeaveBehindCell[0] = -1;
554 mFolderLeaveBehindCell[1] = -1;
555 invalidate();
556 }
557
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700558 @Override
Michael Jurkae6235dd2011-10-04 15:02:05 -0700559 public boolean shouldDelayChildPressedState() {
560 return false;
561 }
562
Adam Cohen1462de32012-07-24 22:34:36 -0700563 public void restoreInstanceState(SparseArray<Parcelable> states) {
Sunny Goyal33a152f2014-07-22 12:13:14 -0700564 try {
565 dispatchRestoreInstanceState(states);
566 } catch (IllegalArgumentException ex) {
Sunny Goyal6c56c682015-07-16 14:09:05 -0700567 if (ProviderConfig.IS_DOGFOOD_BUILD) {
Sunny Goyal33a152f2014-07-22 12:13:14 -0700568 throw ex;
569 }
570 // Mismatched viewId / viewType preventing restore. Skip restore on production builds.
571 Log.e(TAG, "Ignoring an error while restoring a view instance state", ex);
572 }
Adam Cohen1462de32012-07-24 22:34:36 -0700573 }
574
Michael Jurkae6235dd2011-10-04 15:02:05 -0700575 @Override
Jeff Sharkey83f111d2009-04-20 21:03:13 -0700576 public void cancelLongPress() {
577 super.cancelLongPress();
578
579 // Cancel long press for all children
580 final int count = getChildCount();
581 for (int i = 0; i < count; i++) {
582 final View child = getChildAt(i);
583 child.cancelLongPress();
584 }
585 }
586
Michael Jurkadee05892010-07-27 10:01:56 -0700587 public void setOnInterceptTouchListener(View.OnTouchListener listener) {
588 mInterceptTouchListener = listener;
589 }
590
Hyunyoung Songee3e6a72015-02-20 14:25:27 -0800591 public int getCountX() {
Adam Cohend22015c2010-07-26 22:02:18 -0700592 return mCountX;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800593 }
594
Hyunyoung Songee3e6a72015-02-20 14:25:27 -0800595 public int getCountY() {
Adam Cohend22015c2010-07-26 22:02:18 -0700596 return mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800597 }
598
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800599 public void setIsHotseat(boolean isHotseat) {
600 mIsHotseat = isHotseat;
Winson Chung5f8afe62013-08-12 16:19:28 -0700601 mShortcutsAndWidgets.setIsHotseat(isHotseat);
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800602 }
603
Sunny Goyale9b651e2015-04-24 11:44:51 -0700604 public boolean isHotseat() {
605 return mIsHotseat;
606 }
607
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800608 public boolean addViewToCellLayout(View child, int index, int childId, LayoutParams params,
Sunny Goyalf7a29e82015-04-24 15:20:43 -0700609 boolean markCells) {
Winson Chungaafa03c2010-06-11 17:34:16 -0700610 final LayoutParams lp = params;
611
Andrew Flynnde38e422012-05-08 11:22:15 -0700612 // Hotseat icons - remove text
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800613 if (child instanceof BubbleTextView) {
614 BubbleTextView bubbleChild = (BubbleTextView) child;
Winson Chung5f8afe62013-08-12 16:19:28 -0700615 bubbleChild.setTextVisibility(!mIsHotseat);
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800616 }
617
Adam Cohen307fe232012-08-16 17:55:58 -0700618 child.setScaleX(getChildrenScale());
619 child.setScaleY(getChildrenScale());
620
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800621 // Generate an id for each view, this assumes we have at most 256x256 cells
622 // per workspace screen
Adam Cohend22015c2010-07-26 22:02:18 -0700623 if (lp.cellX >= 0 && lp.cellX <= mCountX - 1 && lp.cellY >= 0 && lp.cellY <= mCountY - 1) {
Winson Chungaafa03c2010-06-11 17:34:16 -0700624 // If the horizontal or vertical span is set to -1, it is taken to
625 // mean that it spans the extent of the CellLayout
Adam Cohend22015c2010-07-26 22:02:18 -0700626 if (lp.cellHSpan < 0) lp.cellHSpan = mCountX;
627 if (lp.cellVSpan < 0) lp.cellVSpan = mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800628
Winson Chungaafa03c2010-06-11 17:34:16 -0700629 child.setId(childId);
Sunny Goyalf7a29e82015-04-24 15:20:43 -0700630 mShortcutsAndWidgets.addView(child, index, lp);
Michael Jurkadee05892010-07-27 10:01:56 -0700631
Michael Jurkaf3ca3ab2010-10-20 17:08:24 -0700632 if (markCells) markCellsAsOccupiedForView(child);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700633
Winson Chungaafa03c2010-06-11 17:34:16 -0700634 return true;
635 }
636 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800637 }
Michael Jurka3e7c7632010-10-02 16:01:03 -0700638
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800639 @Override
Michael Jurka0280c3b2010-09-17 15:00:07 -0700640 public void removeAllViews() {
641 clearOccupiedCells();
Michael Jurkaa52570f2012-03-20 03:18:20 -0700642 mShortcutsAndWidgets.removeAllViews();
Michael Jurka0280c3b2010-09-17 15:00:07 -0700643 }
644
645 @Override
646 public void removeAllViewsInLayout() {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700647 if (mShortcutsAndWidgets.getChildCount() > 0) {
Michael Jurka7cfc2822011-08-02 20:19:24 -0700648 clearOccupiedCells();
Michael Jurkaa52570f2012-03-20 03:18:20 -0700649 mShortcutsAndWidgets.removeAllViewsInLayout();
Michael Jurka7cfc2822011-08-02 20:19:24 -0700650 }
Michael Jurka0280c3b2010-09-17 15:00:07 -0700651 }
652
653 @Override
654 public void removeView(View view) {
655 markCellsAsUnoccupiedForView(view);
Michael Jurkaa52570f2012-03-20 03:18:20 -0700656 mShortcutsAndWidgets.removeView(view);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700657 }
658
659 @Override
660 public void removeViewAt(int index) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700661 markCellsAsUnoccupiedForView(mShortcutsAndWidgets.getChildAt(index));
662 mShortcutsAndWidgets.removeViewAt(index);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700663 }
664
665 @Override
666 public void removeViewInLayout(View view) {
667 markCellsAsUnoccupiedForView(view);
Michael Jurkaa52570f2012-03-20 03:18:20 -0700668 mShortcutsAndWidgets.removeViewInLayout(view);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700669 }
670
671 @Override
672 public void removeViews(int start, int count) {
673 for (int i = start; i < start + count; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700674 markCellsAsUnoccupiedForView(mShortcutsAndWidgets.getChildAt(i));
Michael Jurka0280c3b2010-09-17 15:00:07 -0700675 }
Michael Jurkaa52570f2012-03-20 03:18:20 -0700676 mShortcutsAndWidgets.removeViews(start, count);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700677 }
678
679 @Override
680 public void removeViewsInLayout(int start, int count) {
681 for (int i = start; i < start + count; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700682 markCellsAsUnoccupiedForView(mShortcutsAndWidgets.getChildAt(i));
Michael Jurka0280c3b2010-09-17 15:00:07 -0700683 }
Michael Jurkaa52570f2012-03-20 03:18:20 -0700684 mShortcutsAndWidgets.removeViewsInLayout(start, count);
Michael Jurkaabded662011-03-04 12:06:57 -0800685 }
686
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700687 /**
Winson Chungaafa03c2010-06-11 17:34:16 -0700688 * Given a point, return the cell that strictly encloses that point
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800689 * @param x X coordinate of the point
690 * @param y Y coordinate of the point
691 * @param result Array of 2 ints to hold the x and y coordinate of the cell
692 */
Sunny Goyale9b651e2015-04-24 11:44:51 -0700693 public void pointToCellExact(int x, int y, int[] result) {
Winson Chung4b825dcd2011-06-19 12:41:22 -0700694 final int hStartPadding = getPaddingLeft();
695 final int vStartPadding = getPaddingTop();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800696
697 result[0] = (x - hStartPadding) / (mCellWidth + mWidthGap);
698 result[1] = (y - vStartPadding) / (mCellHeight + mHeightGap);
699
Adam Cohend22015c2010-07-26 22:02:18 -0700700 final int xAxis = mCountX;
701 final int yAxis = mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800702
703 if (result[0] < 0) result[0] = 0;
704 if (result[0] >= xAxis) result[0] = xAxis - 1;
705 if (result[1] < 0) result[1] = 0;
706 if (result[1] >= yAxis) result[1] = yAxis - 1;
707 }
Winson Chungaafa03c2010-06-11 17:34:16 -0700708
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800709 /**
710 * Given a point, return the cell that most closely encloses that point
711 * @param x X coordinate of the point
712 * @param y Y coordinate of the point
713 * @param result Array of 2 ints to hold the x and y coordinate of the cell
714 */
715 void pointToCellRounded(int x, int y, int[] result) {
716 pointToCellExact(x + (mCellWidth / 2), y + (mCellHeight / 2), result);
717 }
718
719 /**
720 * Given a cell coordinate, return the point that represents the upper left corner of that cell
Winson Chungaafa03c2010-06-11 17:34:16 -0700721 *
722 * @param cellX X coordinate of the cell
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800723 * @param cellY Y coordinate of the cell
Winson Chungaafa03c2010-06-11 17:34:16 -0700724 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800725 * @param result Array of 2 ints to hold the x and y coordinate of the point
726 */
727 void cellToPoint(int cellX, int cellY, int[] result) {
Winson Chung4b825dcd2011-06-19 12:41:22 -0700728 final int hStartPadding = getPaddingLeft();
729 final int vStartPadding = getPaddingTop();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800730
731 result[0] = hStartPadding + cellX * (mCellWidth + mWidthGap);
732 result[1] = vStartPadding + cellY * (mCellHeight + mHeightGap);
733 }
734
Adam Cohene3e27a82011-04-15 12:07:39 -0700735 /**
Adam Cohen482ed822012-03-02 14:15:13 -0800736 * Given a cell coordinate, return the point that represents the center of the cell
Adam Cohene3e27a82011-04-15 12:07:39 -0700737 *
738 * @param cellX X coordinate of the cell
739 * @param cellY Y coordinate of the cell
740 *
741 * @param result Array of 2 ints to hold the x and y coordinate of the point
742 */
743 void cellToCenterPoint(int cellX, int cellY, int[] result) {
Adam Cohen47a876d2012-03-19 13:21:41 -0700744 regionToCenterPoint(cellX, cellY, 1, 1, result);
745 }
746
747 /**
748 * Given a cell coordinate and span return the point that represents the center of the regio
749 *
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 regionToCenterPoint(int cellX, int cellY, int spanX, int spanY, int[] result) {
Winson Chung4b825dcd2011-06-19 12:41:22 -0700756 final int hStartPadding = getPaddingLeft();
757 final int vStartPadding = getPaddingTop();
Adam Cohen47a876d2012-03-19 13:21:41 -0700758 result[0] = hStartPadding + cellX * (mCellWidth + mWidthGap) +
759 (spanX * mCellWidth + (spanX - 1) * mWidthGap) / 2;
760 result[1] = vStartPadding + cellY * (mCellHeight + mHeightGap) +
761 (spanY * mCellHeight + (spanY - 1) * mHeightGap) / 2;
Adam Cohene3e27a82011-04-15 12:07:39 -0700762 }
763
Adam Cohen19f37922012-03-21 11:59:11 -0700764 /**
765 * Given a cell coordinate and span fills out a corresponding pixel rect
766 *
767 * @param cellX X coordinate of the cell
768 * @param cellY Y coordinate of the cell
769 * @param result Rect in which to write the result
770 */
771 void regionToRect(int cellX, int cellY, int spanX, int spanY, Rect result) {
772 final int hStartPadding = getPaddingLeft();
773 final int vStartPadding = getPaddingTop();
774 final int left = hStartPadding + cellX * (mCellWidth + mWidthGap);
775 final int top = vStartPadding + cellY * (mCellHeight + mHeightGap);
776 result.set(left, top, left + (spanX * mCellWidth + (spanX - 1) * mWidthGap),
777 top + (spanY * mCellHeight + (spanY - 1) * mHeightGap));
778 }
779
Adam Cohen482ed822012-03-02 14:15:13 -0800780 public float getDistanceFromCell(float x, float y, int[] cell) {
781 cellToCenterPoint(cell[0], cell[1], mTmpPoint);
Sunny Goyalf7a29e82015-04-24 15:20:43 -0700782 return (float) Math.hypot(x - mTmpPoint[0], y - mTmpPoint[1]);
Adam Cohen482ed822012-03-02 14:15:13 -0800783 }
784
Romain Guy84f296c2009-11-04 15:00:44 -0800785 int getCellWidth() {
786 return mCellWidth;
787 }
788
789 int getCellHeight() {
790 return mCellHeight;
791 }
792
Adam Cohend4844c32011-02-18 19:25:06 -0800793 int getWidthGap() {
794 return mWidthGap;
795 }
796
797 int getHeightGap() {
798 return mHeightGap;
799 }
800
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700801 public void setFixedSize(int width, int height) {
802 mFixedWidth = width;
803 mFixedHeight = height;
804 }
805
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800806 @Override
807 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800808 int widthSpecMode = MeasureSpec.getMode(widthMeasureSpec);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800809 int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec);
Winson Chung5f8afe62013-08-12 16:19:28 -0700810 int widthSize = MeasureSpec.getSize(widthMeasureSpec);
811 int heightSize = MeasureSpec.getSize(heightMeasureSpec);
Winson Chung2d75f122013-09-23 16:53:31 -0700812 int childWidthSize = widthSize - (getPaddingLeft() + getPaddingRight());
813 int childHeightSize = heightSize - (getPaddingTop() + getPaddingBottom());
Winson Chung11a1a532013-09-13 11:14:45 -0700814 if (mFixedCellWidth < 0 || mFixedCellHeight < 0) {
Sunny Goyalc6205602015-05-21 20:46:33 -0700815 int cw = DeviceProfile.calculateCellWidth(childWidthSize, mCountX);
816 int ch = DeviceProfile.calculateCellHeight(childHeightSize, mCountY);
Winson Chung11a1a532013-09-13 11:14:45 -0700817 if (cw != mCellWidth || ch != mCellHeight) {
818 mCellWidth = cw;
819 mCellHeight = ch;
820 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap,
821 mHeightGap, mCountX, mCountY);
822 }
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
Adam Cohend22015c2010-07-26 22:02:18 -0700834 int numWidthGaps = mCountX - 1;
835 int numHeightGaps = mCountY - 1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800836
Adam Cohen234c4cd2011-07-17 21:03:04 -0700837 if (mOriginalWidthGap < 0 || mOriginalHeightGap < 0) {
Winson Chung2d75f122013-09-23 16:53:31 -0700838 int hSpace = childWidthSize;
839 int vSpace = childHeightSize;
Adam Cohenf4bd5792012-04-27 11:35:29 -0700840 int hFreeSpace = hSpace - (mCountX * mCellWidth);
841 int vFreeSpace = vSpace - (mCountY * mCellHeight);
Winson Chung4b825dcd2011-06-19 12:41:22 -0700842 mWidthGap = Math.min(mMaxGap, numWidthGaps > 0 ? (hFreeSpace / numWidthGaps) : 0);
843 mHeightGap = Math.min(mMaxGap,numHeightGaps > 0 ? (vFreeSpace / numHeightGaps) : 0);
Winson Chung5f8afe62013-08-12 16:19:28 -0700844 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap,
845 mHeightGap, mCountX, mCountY);
Adam Cohen234c4cd2011-07-17 21:03:04 -0700846 } else {
847 mWidthGap = mOriginalWidthGap;
848 mHeightGap = mOriginalHeightGap;
Winson Chungece7f5b2010-10-22 14:54:12 -0700849 }
Sunny Goyal4fe5a372015-05-14 19:55:10 -0700850
851 // Make the feedback view large enough to hold the blur bitmap.
852 mTouchFeedbackView.measure(
853 MeasureSpec.makeMeasureSpec(mCellWidth + mTouchFeedbackView.getExtraSize(),
854 MeasureSpec.EXACTLY),
855 MeasureSpec.makeMeasureSpec(mCellHeight + mTouchFeedbackView.getExtraSize(),
856 MeasureSpec.EXACTLY));
857
858 mShortcutsAndWidgets.measure(
859 MeasureSpec.makeMeasureSpec(newWidth, MeasureSpec.EXACTLY),
860 MeasureSpec.makeMeasureSpec(newHeight, MeasureSpec.EXACTLY));
861
862 int maxWidth = mShortcutsAndWidgets.getMeasuredWidth();
863 int maxHeight = mShortcutsAndWidgets.getMeasuredHeight();
Winson Chung2d75f122013-09-23 16:53:31 -0700864 if (mFixedWidth > 0 && mFixedHeight > 0) {
865 setMeasuredDimension(maxWidth, maxHeight);
866 } else {
867 setMeasuredDimension(widthSize, heightSize);
868 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800869 }
870
871 @Override
Michael Jurka28750fb2010-09-24 17:43:49 -0700872 protected void onLayout(boolean changed, int l, int t, int r, int b) {
Winson Chung38848ca2013-10-08 12:03:44 -0700873 int offset = getMeasuredWidth() - getPaddingLeft() - getPaddingRight() -
874 (mCountX * mCellWidth);
875 int left = getPaddingLeft() + (int) Math.ceil(offset / 2f);
876 int top = getPaddingTop();
Sunny Goyal4fe5a372015-05-14 19:55:10 -0700877
878 mTouchFeedbackView.layout(left, top,
879 left + mTouchFeedbackView.getMeasuredWidth(),
880 top + mTouchFeedbackView.getMeasuredHeight());
881 mShortcutsAndWidgets.layout(left, top,
882 left + r - l,
883 top + b - t);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800884 }
885
886 @Override
Michael Jurkadee05892010-07-27 10:01:56 -0700887 protected void onSizeChanged(int w, int h, int oldw, int oldh) {
888 super.onSizeChanged(w, h, oldw, oldh);
Winson Chung82a9bd22013-10-08 16:02:34 -0700889
890 // Expand the background drawing bounds by the padding baked into the background drawable
Sunny Goyal2805e632015-05-20 15:35:32 -0700891 mBackground.getPadding(mTempRect);
892 mBackground.setBounds(-mTempRect.left, -mTempRect.top,
893 w + mTempRect.right, h + mTempRect.bottom);
Michael Jurkadee05892010-07-27 10:01:56 -0700894 }
895
896 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800897 protected void setChildrenDrawingCacheEnabled(boolean enabled) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700898 mShortcutsAndWidgets.setChildrenDrawingCacheEnabled(enabled);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800899 }
900
901 @Override
902 protected void setChildrenDrawnWithCacheEnabled(boolean enabled) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700903 mShortcutsAndWidgets.setChildrenDrawnWithCacheEnabled(enabled);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800904 }
905
Michael Jurka5f1c5092010-09-03 14:15:02 -0700906 public float getBackgroundAlpha() {
907 return mBackgroundAlpha;
Michael Jurkadee05892010-07-27 10:01:56 -0700908 }
909
Michael Jurka5f1c5092010-09-03 14:15:02 -0700910 public void setBackgroundAlpha(float alpha) {
Michael Jurkaafaa0502011-12-13 18:22:50 -0800911 if (mBackgroundAlpha != alpha) {
912 mBackgroundAlpha = alpha;
Sunny Goyal2805e632015-05-20 15:35:32 -0700913 mBackground.setAlpha((int) (mBackgroundAlpha * 255));
Michael Jurkaafaa0502011-12-13 18:22:50 -0800914 }
Michael Jurkadee05892010-07-27 10:01:56 -0700915 }
916
Sunny Goyal2805e632015-05-20 15:35:32 -0700917 @Override
918 protected boolean verifyDrawable(Drawable who) {
919 return super.verifyDrawable(who) || (mIsDragTarget && who == mBackground);
920 }
921
Michael Jurkaa52570f2012-03-20 03:18:20 -0700922 public void setShortcutAndWidgetAlpha(float alpha) {
Sunny Goyal02b50812014-09-10 15:44:42 -0700923 mShortcutsAndWidgets.setAlpha(alpha);
Michael Jurkadee05892010-07-27 10:01:56 -0700924 }
925
Michael Jurkaa52570f2012-03-20 03:18:20 -0700926 public ShortcutAndWidgetContainer getShortcutsAndWidgets() {
Sunny Goyaldcbcc862014-08-12 15:58:36 -0700927 return mShortcutsAndWidgets;
Michael Jurkaa52570f2012-03-20 03:18:20 -0700928 }
929
Patrick Dubroy440c3602010-07-13 17:50:32 -0700930 public View getChildAt(int x, int y) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700931 return mShortcutsAndWidgets.getChildAt(x, y);
Patrick Dubroy440c3602010-07-13 17:50:32 -0700932 }
933
Adam Cohen76fc0852011-06-17 13:26:23 -0700934 public boolean animateChildToPosition(final View child, int cellX, int cellY, int duration,
Adam Cohen482ed822012-03-02 14:15:13 -0800935 int delay, boolean permanent, boolean adjustOccupied) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700936 ShortcutAndWidgetContainer clc = getShortcutsAndWidgets();
Adam Cohen482ed822012-03-02 14:15:13 -0800937 boolean[][] occupied = mOccupied;
938 if (!permanent) {
939 occupied = mTmpOccupied;
940 }
941
Adam Cohen19f37922012-03-21 11:59:11 -0700942 if (clc.indexOfChild(child) != -1) {
Adam Cohenbfbfd262011-06-13 16:55:12 -0700943 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
944 final ItemInfo info = (ItemInfo) child.getTag();
945
946 // We cancel any existing animations
947 if (mReorderAnimators.containsKey(lp)) {
948 mReorderAnimators.get(lp).cancel();
949 mReorderAnimators.remove(lp);
950 }
951
Adam Cohen482ed822012-03-02 14:15:13 -0800952 final int oldX = lp.x;
953 final int oldY = lp.y;
954 if (adjustOccupied) {
955 occupied[lp.cellX][lp.cellY] = false;
956 occupied[cellX][cellY] = true;
957 }
Adam Cohenbfbfd262011-06-13 16:55:12 -0700958 lp.isLockedToGrid = true;
Adam Cohen482ed822012-03-02 14:15:13 -0800959 if (permanent) {
960 lp.cellX = info.cellX = cellX;
961 lp.cellY = info.cellY = cellY;
962 } else {
963 lp.tmpCellX = cellX;
964 lp.tmpCellY = cellY;
965 }
Adam Cohenbfbfd262011-06-13 16:55:12 -0700966 clc.setupLp(lp);
967 lp.isLockedToGrid = false;
Adam Cohen482ed822012-03-02 14:15:13 -0800968 final int newX = lp.x;
969 final int newY = lp.y;
Adam Cohenbfbfd262011-06-13 16:55:12 -0700970
Adam Cohen76fc0852011-06-17 13:26:23 -0700971 lp.x = oldX;
972 lp.y = oldY;
Adam Cohen76fc0852011-06-17 13:26:23 -0700973
Adam Cohen482ed822012-03-02 14:15:13 -0800974 // Exit early if we're not actually moving the view
975 if (oldX == newX && oldY == newY) {
976 lp.isLockedToGrid = true;
977 return true;
978 }
979
Michael Jurkaf1ad6082013-03-13 12:55:46 +0100980 ValueAnimator va = LauncherAnimUtils.ofFloat(child, 0f, 1f);
Adam Cohen482ed822012-03-02 14:15:13 -0800981 va.setDuration(duration);
982 mReorderAnimators.put(lp, va);
983
984 va.addUpdateListener(new AnimatorUpdateListener() {
985 @Override
Adam Cohenbfbfd262011-06-13 16:55:12 -0700986 public void onAnimationUpdate(ValueAnimator animation) {
Adam Cohen482ed822012-03-02 14:15:13 -0800987 float r = ((Float) animation.getAnimatedValue()).floatValue();
Adam Cohen19f37922012-03-21 11:59:11 -0700988 lp.x = (int) ((1 - r) * oldX + r * newX);
989 lp.y = (int) ((1 - r) * oldY + r * newY);
Adam Cohen6b8a02d2012-03-22 15:13:40 -0700990 child.requestLayout();
Adam Cohenbfbfd262011-06-13 16:55:12 -0700991 }
992 });
Adam Cohen482ed822012-03-02 14:15:13 -0800993 va.addListener(new AnimatorListenerAdapter() {
Adam Cohenbfbfd262011-06-13 16:55:12 -0700994 boolean cancelled = false;
995 public void onAnimationEnd(Animator animation) {
996 // If the animation was cancelled, it means that another animation
997 // has interrupted this one, and we don't want to lock the item into
998 // place just yet.
999 if (!cancelled) {
1000 lp.isLockedToGrid = true;
Adam Cohen482ed822012-03-02 14:15:13 -08001001 child.requestLayout();
Adam Cohenbfbfd262011-06-13 16:55:12 -07001002 }
1003 if (mReorderAnimators.containsKey(lp)) {
1004 mReorderAnimators.remove(lp);
1005 }
1006 }
1007 public void onAnimationCancel(Animator animation) {
1008 cancelled = true;
1009 }
1010 });
Adam Cohen482ed822012-03-02 14:15:13 -08001011 va.setStartDelay(delay);
1012 va.start();
Adam Cohenbfbfd262011-06-13 16:55:12 -07001013 return true;
1014 }
1015 return false;
1016 }
1017
Adam Cohen482ed822012-03-02 14:15:13 -08001018 void visualizeDropLocation(View v, Bitmap dragOutline, int originX, int originY, int cellX,
1019 int cellY, int spanX, int spanY, boolean resize, Point dragOffset, Rect dragRegion) {
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07001020 final int oldDragCellX = mDragCell[0];
1021 final int oldDragCellY = mDragCell[1];
Adam Cohen482ed822012-03-02 14:15:13 -08001022
Adam Cohen2801caf2011-05-13 20:57:39 -07001023 if (dragOutline == null && v == null) {
Adam Cohen2801caf2011-05-13 20:57:39 -07001024 return;
1025 }
1026
Adam Cohen482ed822012-03-02 14:15:13 -08001027 if (cellX != oldDragCellX || cellY != oldDragCellY) {
1028 mDragCell[0] = cellX;
1029 mDragCell[1] = cellY;
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07001030 // Find the top left corner of the rect the object will occupy
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001031 final int[] topLeft = mTmpPoint;
Adam Cohen482ed822012-03-02 14:15:13 -08001032 cellToPoint(cellX, cellY, topLeft);
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001033
Joe Onorato4be866d2010-10-10 11:26:02 -07001034 int left = topLeft[0];
1035 int top = topLeft[1];
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07001036
Winson Chungb8c69f32011-10-19 21:36:08 -07001037 if (v != null && dragOffset == null) {
Adam Cohen99e8b402011-03-25 19:23:43 -07001038 // When drawing the drag outline, it did not account for margin offsets
1039 // added by the view's parent.
1040 MarginLayoutParams lp = (MarginLayoutParams) v.getLayoutParams();
1041 left += lp.leftMargin;
1042 top += lp.topMargin;
Winson Chung150fbab2010-09-29 17:14:26 -07001043
Adam Cohen99e8b402011-03-25 19:23:43 -07001044 // Offsets due to the size difference between the View and the dragOutline.
1045 // There is a size difference to account for the outer blur, which may lie
1046 // outside the bounds of the view.
Winson Chunga9abd0e2010-10-27 17:18:37 -07001047 top += (v.getHeight() - dragOutline.getHeight()) / 2;
Adam Cohenae915ce2011-08-25 13:47:22 -07001048 // We center about the x axis
1049 left += ((mCellWidth * spanX) + ((spanX - 1) * mWidthGap)
1050 - dragOutline.getWidth()) / 2;
Adam Cohen66396872011-04-15 17:50:36 -07001051 } else {
Winson Chungb8c69f32011-10-19 21:36:08 -07001052 if (dragOffset != null && dragRegion != null) {
1053 // Center the drag region *horizontally* in the cell and apply a drag
1054 // outline offset
1055 left += dragOffset.x + ((mCellWidth * spanX) + ((spanX - 1) * mWidthGap)
1056 - dragRegion.width()) / 2;
Winson Chung69737c32013-10-08 17:00:19 -07001057 int cHeight = getShortcutsAndWidgets().getCellContentHeight();
1058 int cellPaddingY = (int) Math.max(0, ((mCellHeight - cHeight) / 2f));
1059 top += dragOffset.y + cellPaddingY;
Winson Chungb8c69f32011-10-19 21:36:08 -07001060 } else {
1061 // Center the drag outline in the cell
1062 left += ((mCellWidth * spanX) + ((spanX - 1) * mWidthGap)
1063 - dragOutline.getWidth()) / 2;
1064 top += ((mCellHeight * spanY) + ((spanY - 1) * mHeightGap)
1065 - dragOutline.getHeight()) / 2;
1066 }
Winson Chunga9abd0e2010-10-27 17:18:37 -07001067 }
Joe Onorato4be866d2010-10-10 11:26:02 -07001068 final int oldIndex = mDragOutlineCurrent;
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07001069 mDragOutlineAnims[oldIndex].animateOut();
1070 mDragOutlineCurrent = (oldIndex + 1) % mDragOutlines.length;
Adam Cohend41fbf52012-02-16 23:53:59 -08001071 Rect r = mDragOutlines[mDragOutlineCurrent];
1072 r.set(left, top, left + dragOutline.getWidth(), top + dragOutline.getHeight());
1073 if (resize) {
Adam Cohen482ed822012-03-02 14:15:13 -08001074 cellToRect(cellX, cellY, spanX, spanY, r);
Adam Cohend41fbf52012-02-16 23:53:59 -08001075 }
Winson Chung150fbab2010-09-29 17:14:26 -07001076
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07001077 mDragOutlineAnims[mDragOutlineCurrent].setTag(dragOutline);
1078 mDragOutlineAnims[mDragOutlineCurrent].animateIn();
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.
1147 pixelX -= (mCellWidth + mWidthGap) * (spanX - 1) / 2f;
1148 pixelY -= (mCellHeight + mHeightGap) * (spanY - 1) / 2f;
1149
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 Goyalf7a29e82015-04-24 15:20:43 -07001173 if (mOccupied[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 Goyalf7a29e82015-04-24 15:20:43 -07001190 if (x + xSize > countX -1 || mOccupied[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 Goyalf7a29e82015-04-24 15:20:43 -07001200 if (y + ySize > countY - 1 || mOccupied[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
Adam Cohen482ed822012-03-02 14:15:13 -08001258 /**
1259 * 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
1269 * @param exactDirectionOnly If this parameter is true, then only solutions where the direction
1270 * matches exactly. Otherwise we find the best matching direction.
1271 * @param occoupied The array which represents which cells in the CellLayout are occupied
1272 * @param blockOccupied The array which represents which cells in the specified block (cellX,
Winson Chung5f8afe62013-08-12 16:19:28 -07001273 * cellY, spanX, spanY) are occupied. This is used when try to move a group of views.
Adam Cohen482ed822012-03-02 14:15:13 -08001274 * @param result Array in which to place the result, or null (in which case a new array will
1275 * be allocated)
1276 * @return The X, Y cell of a vacant area that can contain this object,
1277 * nearest the requested location.
1278 */
1279 private int[] findNearestArea(int cellX, int cellY, int spanX, int spanY, int[] direction,
Adam Cohen47a876d2012-03-19 13:21:41 -07001280 boolean[][] occupied, boolean blockOccupied[][], int[] result) {
Adam Cohen482ed822012-03-02 14:15:13 -08001281 // Keep track of best-scoring drop area
1282 final int[] bestXY = result != null ? result : new int[2];
1283 float bestDistance = Float.MAX_VALUE;
1284 int bestDirectionScore = Integer.MIN_VALUE;
1285
1286 final int countX = mCountX;
1287 final int countY = mCountY;
1288
1289 for (int y = 0; y < countY - (spanY - 1); y++) {
1290 inner:
1291 for (int x = 0; x < countX - (spanX - 1); x++) {
1292 // First, let's see if this thing fits anywhere
1293 for (int i = 0; i < spanX; i++) {
1294 for (int j = 0; j < spanY; j++) {
Adam Cohen47a876d2012-03-19 13:21:41 -07001295 if (occupied[x + i][y + j] && (blockOccupied == null || blockOccupied[i][j])) {
Adam Cohen482ed822012-03-02 14:15:13 -08001296 continue inner;
1297 }
1298 }
1299 }
1300
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001301 float distance = (float) Math.hypot(x - cellX, y - cellY);
Adam Cohen482ed822012-03-02 14:15:13 -08001302 int[] curDirection = mTmpPoint;
Adam Cohen47a876d2012-03-19 13:21:41 -07001303 computeDirectionVector(x - cellX, y - cellY, curDirection);
1304 // The direction score is just the dot product of the two candidate direction
1305 // and that passed in.
Adam Cohen482ed822012-03-02 14:15:13 -08001306 int curDirectionScore = direction[0] * curDirection[0] +
1307 direction[1] * curDirection[1];
Adam Cohen47a876d2012-03-19 13:21:41 -07001308 boolean exactDirectionOnly = false;
1309 boolean directionMatches = direction[0] == curDirection[0] &&
1310 direction[0] == curDirection[0];
1311 if ((directionMatches || !exactDirectionOnly) &&
1312 Float.compare(distance, bestDistance) < 0 || (Float.compare(distance,
Adam Cohen482ed822012-03-02 14:15:13 -08001313 bestDistance) == 0 && curDirectionScore > bestDirectionScore)) {
1314 bestDistance = distance;
1315 bestDirectionScore = curDirectionScore;
1316 bestXY[0] = x;
1317 bestXY[1] = y;
1318 }
1319 }
1320 }
1321
1322 // Return -1, -1 if no suitable location found
1323 if (bestDistance == Float.MAX_VALUE) {
1324 bestXY[0] = -1;
1325 bestXY[1] = -1;
1326 }
1327 return bestXY;
1328 }
1329
1330 private boolean addViewToTempLocation(View v, Rect rectOccupiedByPotentialDrop,
Adam Cohen8baab352012-03-20 17:39:21 -07001331 int[] direction, ItemConfiguration currentState) {
1332 CellAndSpan c = currentState.map.get(v);
Adam Cohen482ed822012-03-02 14:15:13 -08001333 boolean success = false;
Adam Cohen8baab352012-03-20 17:39:21 -07001334 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, false);
Adam Cohen482ed822012-03-02 14:15:13 -08001335 markCellsForRect(rectOccupiedByPotentialDrop, mTmpOccupied, true);
1336
Adam Cohen8baab352012-03-20 17:39:21 -07001337 findNearestArea(c.x, c.y, c.spanX, c.spanY, direction, mTmpOccupied, null, mTempLocation);
Adam Cohen482ed822012-03-02 14:15:13 -08001338
1339 if (mTempLocation[0] >= 0 && mTempLocation[1] >= 0) {
Adam Cohen8baab352012-03-20 17:39:21 -07001340 c.x = mTempLocation[0];
1341 c.y = mTempLocation[1];
Adam Cohen482ed822012-03-02 14:15:13 -08001342 success = true;
Adam Cohen482ed822012-03-02 14:15:13 -08001343 }
Adam Cohen8baab352012-03-20 17:39:21 -07001344 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001345 return success;
1346 }
1347
Adam Cohenf3900c22012-11-16 18:28:11 -08001348 /**
1349 * This helper class defines a cluster of views. It helps with defining complex edges
1350 * of the cluster and determining how those edges interact with other views. The edges
1351 * essentially define a fine-grained boundary around the cluster of views -- like a more
1352 * precise version of a bounding box.
1353 */
1354 private class ViewCluster {
1355 final static int LEFT = 0;
1356 final static int TOP = 1;
1357 final static int RIGHT = 2;
1358 final static int BOTTOM = 3;
Adam Cohen47a876d2012-03-19 13:21:41 -07001359
Adam Cohenf3900c22012-11-16 18:28:11 -08001360 ArrayList<View> views;
1361 ItemConfiguration config;
1362 Rect boundingRect = new Rect();
Adam Cohen47a876d2012-03-19 13:21:41 -07001363
Adam Cohenf3900c22012-11-16 18:28:11 -08001364 int[] leftEdge = new int[mCountY];
1365 int[] rightEdge = new int[mCountY];
1366 int[] topEdge = new int[mCountX];
1367 int[] bottomEdge = new int[mCountX];
1368 boolean leftEdgeDirty, rightEdgeDirty, topEdgeDirty, bottomEdgeDirty, boundingRectDirty;
1369
1370 @SuppressWarnings("unchecked")
1371 public ViewCluster(ArrayList<View> views, ItemConfiguration config) {
1372 this.views = (ArrayList<View>) views.clone();
1373 this.config = config;
1374 resetEdges();
Adam Cohen47a876d2012-03-19 13:21:41 -07001375 }
1376
Adam Cohenf3900c22012-11-16 18:28:11 -08001377 void resetEdges() {
1378 for (int i = 0; i < mCountX; i++) {
1379 topEdge[i] = -1;
1380 bottomEdge[i] = -1;
1381 }
1382 for (int i = 0; i < mCountY; i++) {
1383 leftEdge[i] = -1;
1384 rightEdge[i] = -1;
1385 }
1386 leftEdgeDirty = true;
1387 rightEdgeDirty = true;
1388 bottomEdgeDirty = true;
1389 topEdgeDirty = true;
1390 boundingRectDirty = true;
1391 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001392
Adam Cohenf3900c22012-11-16 18:28:11 -08001393 void computeEdge(int which, int[] edge) {
1394 int count = views.size();
1395 for (int i = 0; i < count; i++) {
1396 CellAndSpan cs = config.map.get(views.get(i));
1397 switch (which) {
1398 case LEFT:
1399 int left = cs.x;
1400 for (int j = cs.y; j < cs.y + cs.spanY; j++) {
1401 if (left < edge[j] || edge[j] < 0) {
1402 edge[j] = left;
Adam Cohena56dc102012-07-13 13:41:42 -07001403 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001404 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001405 break;
1406 case RIGHT:
1407 int right = cs.x + cs.spanX;
1408 for (int j = cs.y; j < cs.y + cs.spanY; j++) {
1409 if (right > edge[j]) {
1410 edge[j] = right;
1411 }
1412 }
1413 break;
1414 case TOP:
1415 int top = cs.y;
1416 for (int j = cs.x; j < cs.x + cs.spanX; j++) {
1417 if (top < edge[j] || edge[j] < 0) {
1418 edge[j] = top;
1419 }
1420 }
1421 break;
1422 case BOTTOM:
1423 int bottom = cs.y + cs.spanY;
1424 for (int j = cs.x; j < cs.x + cs.spanX; j++) {
1425 if (bottom > edge[j]) {
1426 edge[j] = bottom;
1427 }
1428 }
1429 break;
Adam Cohen47a876d2012-03-19 13:21:41 -07001430 }
1431 }
1432 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001433
1434 boolean isViewTouchingEdge(View v, int whichEdge) {
1435 CellAndSpan cs = config.map.get(v);
1436
1437 int[] edge = getEdge(whichEdge);
1438
1439 switch (whichEdge) {
1440 case LEFT:
1441 for (int i = cs.y; i < cs.y + cs.spanY; i++) {
1442 if (edge[i] == cs.x + cs.spanX) {
1443 return true;
1444 }
1445 }
1446 break;
1447 case RIGHT:
1448 for (int i = cs.y; i < cs.y + cs.spanY; i++) {
1449 if (edge[i] == cs.x) {
1450 return true;
1451 }
1452 }
1453 break;
1454 case TOP:
1455 for (int i = cs.x; i < cs.x + cs.spanX; i++) {
1456 if (edge[i] == cs.y + cs.spanY) {
1457 return true;
1458 }
1459 }
1460 break;
1461 case BOTTOM:
1462 for (int i = cs.x; i < cs.x + cs.spanX; i++) {
1463 if (edge[i] == cs.y) {
1464 return true;
1465 }
1466 }
1467 break;
1468 }
1469 return false;
1470 }
1471
1472 void shift(int whichEdge, int delta) {
1473 for (View v: views) {
1474 CellAndSpan c = config.map.get(v);
1475 switch (whichEdge) {
1476 case LEFT:
1477 c.x -= delta;
1478 break;
1479 case RIGHT:
1480 c.x += delta;
1481 break;
1482 case TOP:
1483 c.y -= delta;
1484 break;
1485 case BOTTOM:
1486 default:
1487 c.y += delta;
1488 break;
1489 }
1490 }
1491 resetEdges();
1492 }
1493
1494 public void addView(View v) {
1495 views.add(v);
1496 resetEdges();
1497 }
1498
1499 public Rect getBoundingRect() {
1500 if (boundingRectDirty) {
1501 boolean first = true;
1502 for (View v: views) {
1503 CellAndSpan c = config.map.get(v);
1504 if (first) {
1505 boundingRect.set(c.x, c.y, c.x + c.spanX, c.y + c.spanY);
1506 first = false;
1507 } else {
1508 boundingRect.union(c.x, c.y, c.x + c.spanX, c.y + c.spanY);
1509 }
1510 }
1511 }
1512 return boundingRect;
1513 }
1514
1515 public int[] getEdge(int which) {
1516 switch (which) {
1517 case LEFT:
1518 return getLeftEdge();
1519 case RIGHT:
1520 return getRightEdge();
1521 case TOP:
1522 return getTopEdge();
1523 case BOTTOM:
1524 default:
1525 return getBottomEdge();
1526 }
1527 }
1528
1529 public int[] getLeftEdge() {
1530 if (leftEdgeDirty) {
1531 computeEdge(LEFT, leftEdge);
1532 }
1533 return leftEdge;
1534 }
1535
1536 public int[] getRightEdge() {
1537 if (rightEdgeDirty) {
1538 computeEdge(RIGHT, rightEdge);
1539 }
1540 return rightEdge;
1541 }
1542
1543 public int[] getTopEdge() {
1544 if (topEdgeDirty) {
1545 computeEdge(TOP, topEdge);
1546 }
1547 return topEdge;
1548 }
1549
1550 public int[] getBottomEdge() {
1551 if (bottomEdgeDirty) {
1552 computeEdge(BOTTOM, bottomEdge);
1553 }
1554 return bottomEdge;
1555 }
1556
1557 PositionComparator comparator = new PositionComparator();
1558 class PositionComparator implements Comparator<View> {
1559 int whichEdge = 0;
1560 public int compare(View left, View right) {
1561 CellAndSpan l = config.map.get(left);
1562 CellAndSpan r = config.map.get(right);
1563 switch (whichEdge) {
1564 case LEFT:
1565 return (r.x + r.spanX) - (l.x + l.spanX);
1566 case RIGHT:
1567 return l.x - r.x;
1568 case TOP:
1569 return (r.y + r.spanY) - (l.y + l.spanY);
1570 case BOTTOM:
1571 default:
1572 return l.y - r.y;
1573 }
1574 }
1575 }
1576
1577 public void sortConfigurationForEdgePush(int edge) {
1578 comparator.whichEdge = edge;
1579 Collections.sort(config.sortedViews, comparator);
1580 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001581 }
1582
Adam Cohenf3900c22012-11-16 18:28:11 -08001583 private boolean pushViewsToTempLocation(ArrayList<View> views, Rect rectOccupiedByPotentialDrop,
1584 int[] direction, View dragView, ItemConfiguration currentState) {
Adam Cohene0489502012-08-27 15:18:53 -07001585
Adam Cohenf3900c22012-11-16 18:28:11 -08001586 ViewCluster cluster = new ViewCluster(views, currentState);
1587 Rect clusterRect = cluster.getBoundingRect();
1588 int whichEdge;
1589 int pushDistance;
1590 boolean fail = false;
1591
1592 // Determine the edge of the cluster that will be leading the push and how far
1593 // the cluster must be shifted.
1594 if (direction[0] < 0) {
1595 whichEdge = ViewCluster.LEFT;
1596 pushDistance = clusterRect.right - rectOccupiedByPotentialDrop.left;
Adam Cohene0489502012-08-27 15:18:53 -07001597 } else if (direction[0] > 0) {
Adam Cohenf3900c22012-11-16 18:28:11 -08001598 whichEdge = ViewCluster.RIGHT;
1599 pushDistance = rectOccupiedByPotentialDrop.right - clusterRect.left;
1600 } else if (direction[1] < 0) {
1601 whichEdge = ViewCluster.TOP;
1602 pushDistance = clusterRect.bottom - rectOccupiedByPotentialDrop.top;
1603 } else {
1604 whichEdge = ViewCluster.BOTTOM;
1605 pushDistance = rectOccupiedByPotentialDrop.bottom - clusterRect.top;
Adam Cohene0489502012-08-27 15:18:53 -07001606 }
1607
Adam Cohenf3900c22012-11-16 18:28:11 -08001608 // Break early for invalid push distance.
1609 if (pushDistance <= 0) {
1610 return false;
Adam Cohene0489502012-08-27 15:18:53 -07001611 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001612
1613 // Mark the occupied state as false for the group of views we want to move.
1614 for (View v: views) {
1615 CellAndSpan c = currentState.map.get(v);
1616 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, false);
1617 }
1618
1619 // We save the current configuration -- if we fail to find a solution we will revert
1620 // to the initial state. The process of finding a solution modifies the configuration
1621 // in place, hence the need for revert in the failure case.
1622 currentState.save();
1623
1624 // The pushing algorithm is simplified by considering the views in the order in which
1625 // they would be pushed by the cluster. For example, if the cluster is leading with its
1626 // left edge, we consider sort the views by their right edge, from right to left.
1627 cluster.sortConfigurationForEdgePush(whichEdge);
1628
1629 while (pushDistance > 0 && !fail) {
1630 for (View v: currentState.sortedViews) {
1631 // For each view that isn't in the cluster, we see if the leading edge of the
1632 // cluster is contacting the edge of that view. If so, we add that view to the
1633 // cluster.
1634 if (!cluster.views.contains(v) && v != dragView) {
1635 if (cluster.isViewTouchingEdge(v, whichEdge)) {
1636 LayoutParams lp = (LayoutParams) v.getLayoutParams();
1637 if (!lp.canReorder) {
1638 // The push solution includes the all apps button, this is not viable.
1639 fail = true;
1640 break;
1641 }
1642 cluster.addView(v);
1643 CellAndSpan c = currentState.map.get(v);
1644
1645 // Adding view to cluster, mark it as not occupied.
1646 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, false);
1647 }
1648 }
1649 }
1650 pushDistance--;
1651
1652 // The cluster has been completed, now we move the whole thing over in the appropriate
1653 // direction.
1654 cluster.shift(whichEdge, 1);
1655 }
1656
1657 boolean foundSolution = false;
1658 clusterRect = cluster.getBoundingRect();
1659
1660 // Due to the nature of the algorithm, the only check required to verify a valid solution
1661 // is to ensure that completed shifted cluster lies completely within the cell layout.
1662 if (!fail && clusterRect.left >= 0 && clusterRect.right <= mCountX && clusterRect.top >= 0 &&
1663 clusterRect.bottom <= mCountY) {
1664 foundSolution = true;
1665 } else {
1666 currentState.restore();
1667 }
1668
1669 // In either case, we set the occupied array as marked for the location of the views
1670 for (View v: cluster.views) {
1671 CellAndSpan c = currentState.map.get(v);
1672 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, true);
1673 }
1674
1675 return foundSolution;
Adam Cohene0489502012-08-27 15:18:53 -07001676 }
1677
Adam Cohen482ed822012-03-02 14:15:13 -08001678 private boolean addViewsToTempLocation(ArrayList<View> views, Rect rectOccupiedByPotentialDrop,
Adam Cohenf3900c22012-11-16 18:28:11 -08001679 int[] direction, View dragView, ItemConfiguration currentState) {
Adam Cohen482ed822012-03-02 14:15:13 -08001680 if (views.size() == 0) return true;
Adam Cohen482ed822012-03-02 14:15:13 -08001681
Adam Cohen8baab352012-03-20 17:39:21 -07001682 boolean success = false;
Adam Cohen482ed822012-03-02 14:15:13 -08001683 Rect boundingRect = null;
Adam Cohen8baab352012-03-20 17:39:21 -07001684 // We construct a rect which represents the entire group of views passed in
Adam Cohen482ed822012-03-02 14:15:13 -08001685 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001686 CellAndSpan c = currentState.map.get(v);
Adam Cohen482ed822012-03-02 14:15:13 -08001687 if (boundingRect == null) {
Adam Cohen8baab352012-03-20 17:39:21 -07001688 boundingRect = new Rect(c.x, c.y, c.x + c.spanX, c.y + c.spanY);
Adam Cohen482ed822012-03-02 14:15:13 -08001689 } else {
Adam Cohen8baab352012-03-20 17:39:21 -07001690 boundingRect.union(c.x, c.y, c.x + c.spanX, c.y + c.spanY);
Adam Cohen482ed822012-03-02 14:15:13 -08001691 }
1692 }
Adam Cohen8baab352012-03-20 17:39:21 -07001693
Adam Cohen8baab352012-03-20 17:39:21 -07001694 // Mark the occupied state as false for the group of views we want to move.
Adam Cohenf3900c22012-11-16 18:28:11 -08001695 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001696 CellAndSpan c = currentState.map.get(v);
1697 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, false);
1698 }
1699
Adam Cohen47a876d2012-03-19 13:21:41 -07001700 boolean[][] blockOccupied = new boolean[boundingRect.width()][boundingRect.height()];
1701 int top = boundingRect.top;
1702 int left = boundingRect.left;
Adam Cohen8baab352012-03-20 17:39:21 -07001703 // We mark more precisely which parts of the bounding rect are truly occupied, allowing
Adam Cohena56dc102012-07-13 13:41:42 -07001704 // for interlocking.
Adam Cohenf3900c22012-11-16 18:28:11 -08001705 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001706 CellAndSpan c = currentState.map.get(v);
1707 markCellsForView(c.x - left, c.y - top, c.spanX, c.spanY, blockOccupied, true);
Adam Cohen47a876d2012-03-19 13:21:41 -07001708 }
1709
Adam Cohen482ed822012-03-02 14:15:13 -08001710 markCellsForRect(rectOccupiedByPotentialDrop, mTmpOccupied, true);
1711
Adam Cohenf3900c22012-11-16 18:28:11 -08001712 findNearestArea(boundingRect.left, boundingRect.top, boundingRect.width(),
1713 boundingRect.height(), direction, mTmpOccupied, blockOccupied, mTempLocation);
Adam Cohen482ed822012-03-02 14:15:13 -08001714
Adam Cohen8baab352012-03-20 17:39:21 -07001715 // If we successfuly found a location by pushing the block of views, we commit it
Adam Cohen482ed822012-03-02 14:15:13 -08001716 if (mTempLocation[0] >= 0 && mTempLocation[1] >= 0) {
Adam Cohen8baab352012-03-20 17:39:21 -07001717 int deltaX = mTempLocation[0] - boundingRect.left;
1718 int deltaY = mTempLocation[1] - boundingRect.top;
Adam Cohenf3900c22012-11-16 18:28:11 -08001719 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001720 CellAndSpan c = currentState.map.get(v);
1721 c.x += deltaX;
1722 c.y += deltaY;
Adam Cohen482ed822012-03-02 14:15:13 -08001723 }
1724 success = true;
1725 }
Adam Cohen8baab352012-03-20 17:39:21 -07001726
1727 // In either case, we set the occupied array as marked for the location of the views
Adam Cohenf3900c22012-11-16 18:28:11 -08001728 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07001729 CellAndSpan c = currentState.map.get(v);
1730 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001731 }
1732 return success;
1733 }
1734
1735 private void markCellsForRect(Rect r, boolean[][] occupied, boolean value) {
1736 markCellsForView(r.left, r.top, r.width(), r.height(), occupied, value);
1737 }
1738
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001739 // This method tries to find a reordering solution which satisfies the push mechanic by trying
1740 // to push items in each of the cardinal directions, in an order based on the direction vector
1741 // passed.
1742 private boolean attemptPushInDirection(ArrayList<View> intersectingViews, Rect occupied,
1743 int[] direction, View ignoreView, ItemConfiguration solution) {
1744 if ((Math.abs(direction[0]) + Math.abs(direction[1])) > 1) {
Winson Chung5f8afe62013-08-12 16:19:28 -07001745 // If the direction vector has two non-zero components, we try pushing
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001746 // separately in each of the components.
1747 int temp = direction[1];
1748 direction[1] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08001749
1750 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001751 ignoreView, solution)) {
1752 return true;
1753 }
1754 direction[1] = temp;
1755 temp = direction[0];
1756 direction[0] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08001757
1758 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001759 ignoreView, solution)) {
1760 return true;
1761 }
1762 // Revert the direction
1763 direction[0] = temp;
1764
1765 // Now we try pushing in each component of the opposite direction
1766 direction[0] *= -1;
1767 direction[1] *= -1;
1768 temp = direction[1];
1769 direction[1] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08001770 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001771 ignoreView, solution)) {
1772 return true;
1773 }
1774
1775 direction[1] = temp;
1776 temp = direction[0];
1777 direction[0] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08001778 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001779 ignoreView, solution)) {
1780 return true;
1781 }
1782 // revert the direction
1783 direction[0] = temp;
1784 direction[0] *= -1;
1785 direction[1] *= -1;
Winson Chung5f8afe62013-08-12 16:19:28 -07001786
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001787 } else {
1788 // If the direction vector has a single non-zero component, we push first in the
1789 // direction of the vector
Adam Cohenf3900c22012-11-16 18:28:11 -08001790 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001791 ignoreView, solution)) {
1792 return true;
1793 }
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001794 // Then we try the opposite direction
1795 direction[0] *= -1;
1796 direction[1] *= -1;
Adam Cohenf3900c22012-11-16 18:28:11 -08001797 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001798 ignoreView, solution)) {
1799 return true;
1800 }
1801 // Switch the direction back
1802 direction[0] *= -1;
1803 direction[1] *= -1;
Winson Chung5f8afe62013-08-12 16:19:28 -07001804
1805 // If we have failed to find a push solution with the above, then we try
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001806 // to find a solution by pushing along the perpendicular axis.
1807
1808 // Swap the components
1809 int temp = direction[1];
1810 direction[1] = direction[0];
1811 direction[0] = temp;
Adam Cohenf3900c22012-11-16 18:28:11 -08001812 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001813 ignoreView, solution)) {
1814 return true;
1815 }
1816
1817 // Then we try the opposite direction
1818 direction[0] *= -1;
1819 direction[1] *= -1;
Adam Cohenf3900c22012-11-16 18:28:11 -08001820 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001821 ignoreView, solution)) {
1822 return true;
1823 }
1824 // Switch the direction back
1825 direction[0] *= -1;
1826 direction[1] *= -1;
1827
1828 // Swap the components back
1829 temp = direction[1];
1830 direction[1] = direction[0];
1831 direction[0] = temp;
1832 }
1833 return false;
1834 }
1835
Adam Cohen482ed822012-03-02 14:15:13 -08001836 private boolean rearrangementExists(int cellX, int cellY, int spanX, int spanY, int[] direction,
Adam Cohen8baab352012-03-20 17:39:21 -07001837 View ignoreView, ItemConfiguration solution) {
Winson Chunge3e03bc2012-05-01 15:10:11 -07001838 // Return early if get invalid cell positions
1839 if (cellX < 0 || cellY < 0) return false;
Adam Cohen482ed822012-03-02 14:15:13 -08001840
Adam Cohen8baab352012-03-20 17:39:21 -07001841 mIntersectingViews.clear();
Adam Cohen482ed822012-03-02 14:15:13 -08001842 mOccupiedRect.set(cellX, cellY, cellX + spanX, cellY + spanY);
Adam Cohen482ed822012-03-02 14:15:13 -08001843
Adam Cohen8baab352012-03-20 17:39:21 -07001844 // Mark the desired location of the view currently being dragged.
Adam Cohen482ed822012-03-02 14:15:13 -08001845 if (ignoreView != null) {
Adam Cohen8baab352012-03-20 17:39:21 -07001846 CellAndSpan c = solution.map.get(ignoreView);
Adam Cohen19f37922012-03-21 11:59:11 -07001847 if (c != null) {
1848 c.x = cellX;
1849 c.y = cellY;
1850 }
Adam Cohen482ed822012-03-02 14:15:13 -08001851 }
Adam Cohen482ed822012-03-02 14:15:13 -08001852 Rect r0 = new Rect(cellX, cellY, cellX + spanX, cellY + spanY);
1853 Rect r1 = new Rect();
Adam Cohen8baab352012-03-20 17:39:21 -07001854 for (View child: solution.map.keySet()) {
Adam Cohen482ed822012-03-02 14:15:13 -08001855 if (child == ignoreView) continue;
Adam Cohen8baab352012-03-20 17:39:21 -07001856 CellAndSpan c = solution.map.get(child);
Adam Cohen482ed822012-03-02 14:15:13 -08001857 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Adam Cohen8baab352012-03-20 17:39:21 -07001858 r1.set(c.x, c.y, c.x + c.spanX, c.y + c.spanY);
Adam Cohen482ed822012-03-02 14:15:13 -08001859 if (Rect.intersects(r0, r1)) {
1860 if (!lp.canReorder) {
1861 return false;
1862 }
1863 mIntersectingViews.add(child);
1864 }
1865 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001866
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001867 solution.intersectingViews = new ArrayList<View>(mIntersectingViews);
1868
Winson Chung5f8afe62013-08-12 16:19:28 -07001869 // First we try to find a solution which respects the push mechanic. That is,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001870 // we try to find a solution such that no displaced item travels through another item
1871 // without also displacing that item.
1872 if (attemptPushInDirection(mIntersectingViews, mOccupiedRect, direction, ignoreView,
Adam Cohen19f37922012-03-21 11:59:11 -07001873 solution)) {
Adam Cohen47a876d2012-03-19 13:21:41 -07001874 return true;
1875 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001876
Adam Cohen4abc5bd2012-05-29 21:06:03 -07001877 // Next we try moving the views as a block, but without requiring the push mechanic.
Adam Cohenf3900c22012-11-16 18:28:11 -08001878 if (addViewsToTempLocation(mIntersectingViews, mOccupiedRect, direction, ignoreView,
Adam Cohen19f37922012-03-21 11:59:11 -07001879 solution)) {
Adam Cohen482ed822012-03-02 14:15:13 -08001880 return true;
1881 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001882
Adam Cohen482ed822012-03-02 14:15:13 -08001883 // Ok, they couldn't move as a block, let's move them individually
1884 for (View v : mIntersectingViews) {
Adam Cohen8baab352012-03-20 17:39:21 -07001885 if (!addViewToTempLocation(v, mOccupiedRect, direction, solution)) {
Adam Cohen482ed822012-03-02 14:15:13 -08001886 return false;
1887 }
1888 }
1889 return true;
1890 }
1891
1892 /*
1893 * Returns a pair (x, y), where x,y are in {-1, 0, 1} corresponding to vector between
1894 * the provided point and the provided cell
1895 */
Adam Cohen47a876d2012-03-19 13:21:41 -07001896 private void computeDirectionVector(float deltaX, float deltaY, int[] result) {
Adam Cohen482ed822012-03-02 14:15:13 -08001897 double angle = Math.atan(((float) deltaY) / deltaX);
1898
1899 result[0] = 0;
1900 result[1] = 0;
1901 if (Math.abs(Math.cos(angle)) > 0.5f) {
1902 result[0] = (int) Math.signum(deltaX);
1903 }
1904 if (Math.abs(Math.sin(angle)) > 0.5f) {
1905 result[1] = (int) Math.signum(deltaY);
1906 }
1907 }
1908
Adam Cohen8baab352012-03-20 17:39:21 -07001909 private void copyOccupiedArray(boolean[][] occupied) {
1910 for (int i = 0; i < mCountX; i++) {
1911 for (int j = 0; j < mCountY; j++) {
1912 occupied[i][j] = mOccupied[i][j];
1913 }
1914 }
1915 }
1916
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001917 private ItemConfiguration findReorderSolution(int pixelX, int pixelY, int minSpanX, int minSpanY,
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001918 int spanX, int spanY, int[] direction, View dragView, boolean decX,
1919 ItemConfiguration solution) {
Adam Cohen8baab352012-03-20 17:39:21 -07001920 // Copy the current state into the solution. This solution will be manipulated as necessary.
1921 copyCurrentStateToSolution(solution, false);
1922 // Copy the current occupied array into the temporary occupied array. This array will be
1923 // manipulated as necessary to find a solution.
1924 copyOccupiedArray(mTmpOccupied);
Adam Cohen482ed822012-03-02 14:15:13 -08001925
1926 // We find the nearest cell into which we would place the dragged item, assuming there's
1927 // nothing in its way.
1928 int result[] = new int[2];
1929 result = findNearestArea(pixelX, pixelY, spanX, spanY, result);
1930
1931 boolean success = false;
1932 // First we try the exact nearest position of the item being dragged,
1933 // we will then want to try to move this around to other neighbouring positions
Adam Cohen8baab352012-03-20 17:39:21 -07001934 success = rearrangementExists(result[0], result[1], spanX, spanY, direction, dragView,
1935 solution);
Adam Cohen482ed822012-03-02 14:15:13 -08001936
1937 if (!success) {
1938 // We try shrinking the widget down to size in an alternating pattern, shrink 1 in
1939 // x, then 1 in y etc.
1940 if (spanX > minSpanX && (minSpanY == spanY || decX)) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001941 return findReorderSolution(pixelX, pixelY, minSpanX, minSpanY, spanX - 1, spanY,
1942 direction, dragView, false, solution);
Adam Cohen482ed822012-03-02 14:15:13 -08001943 } else if (spanY > minSpanY) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08001944 return findReorderSolution(pixelX, pixelY, minSpanX, minSpanY, spanX, spanY - 1,
1945 direction, dragView, true, solution);
Adam Cohen482ed822012-03-02 14:15:13 -08001946 }
1947 solution.isSolution = false;
1948 } else {
1949 solution.isSolution = true;
1950 solution.dragViewX = result[0];
1951 solution.dragViewY = result[1];
1952 solution.dragViewSpanX = spanX;
1953 solution.dragViewSpanY = spanY;
Adam Cohen482ed822012-03-02 14:15:13 -08001954 }
1955 return solution;
1956 }
1957
1958 private void copyCurrentStateToSolution(ItemConfiguration solution, boolean temp) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07001959 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08001960 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07001961 View child = mShortcutsAndWidgets.getChildAt(i);
Adam Cohen482ed822012-03-02 14:15:13 -08001962 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Adam Cohen8baab352012-03-20 17:39:21 -07001963 CellAndSpan c;
Adam Cohen482ed822012-03-02 14:15:13 -08001964 if (temp) {
Adam Cohen8baab352012-03-20 17:39:21 -07001965 c = new CellAndSpan(lp.tmpCellX, lp.tmpCellY, lp.cellHSpan, lp.cellVSpan);
Adam Cohen482ed822012-03-02 14:15:13 -08001966 } else {
Adam Cohen8baab352012-03-20 17:39:21 -07001967 c = new CellAndSpan(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan);
Adam Cohen482ed822012-03-02 14:15:13 -08001968 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001969 solution.add(child, c);
Adam Cohen482ed822012-03-02 14:15:13 -08001970 }
1971 }
1972
1973 private void copySolutionToTempState(ItemConfiguration solution, View dragView) {
1974 for (int i = 0; i < mCountX; i++) {
1975 for (int j = 0; j < mCountY; j++) {
1976 mTmpOccupied[i][j] = false;
1977 }
1978 }
1979
Michael Jurkaa52570f2012-03-20 03:18:20 -07001980 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08001981 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07001982 View child = mShortcutsAndWidgets.getChildAt(i);
Adam Cohen482ed822012-03-02 14:15:13 -08001983 if (child == dragView) continue;
1984 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Adam Cohen8baab352012-03-20 17:39:21 -07001985 CellAndSpan c = solution.map.get(child);
1986 if (c != null) {
1987 lp.tmpCellX = c.x;
1988 lp.tmpCellY = c.y;
1989 lp.cellHSpan = c.spanX;
1990 lp.cellVSpan = c.spanY;
1991 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001992 }
1993 }
1994 markCellsForView(solution.dragViewX, solution.dragViewY, solution.dragViewSpanX,
1995 solution.dragViewSpanY, mTmpOccupied, true);
1996 }
1997
1998 private void animateItemsToSolution(ItemConfiguration solution, View dragView, boolean
1999 commitDragView) {
2000
2001 boolean[][] occupied = DESTRUCTIVE_REORDER ? mOccupied : mTmpOccupied;
2002 for (int i = 0; i < mCountX; i++) {
2003 for (int j = 0; j < mCountY; j++) {
2004 occupied[i][j] = false;
2005 }
2006 }
2007
Michael Jurkaa52570f2012-03-20 03:18:20 -07002008 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08002009 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002010 View child = mShortcutsAndWidgets.getChildAt(i);
Adam Cohen482ed822012-03-02 14:15:13 -08002011 if (child == dragView) continue;
Adam Cohen8baab352012-03-20 17:39:21 -07002012 CellAndSpan c = solution.map.get(child);
2013 if (c != null) {
Adam Cohen19f37922012-03-21 11:59:11 -07002014 animateChildToPosition(child, c.x, c.y, REORDER_ANIMATION_DURATION, 0,
2015 DESTRUCTIVE_REORDER, false);
Adam Cohen8baab352012-03-20 17:39:21 -07002016 markCellsForView(c.x, c.y, c.spanX, c.spanY, occupied, true);
Adam Cohen482ed822012-03-02 14:15:13 -08002017 }
2018 }
2019 if (commitDragView) {
2020 markCellsForView(solution.dragViewX, solution.dragViewY, solution.dragViewSpanX,
2021 solution.dragViewSpanY, occupied, true);
2022 }
2023 }
2024
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002025
2026 // This method starts or changes the reorder preview animations
2027 private void beginOrAdjustReorderPreviewAnimations(ItemConfiguration solution,
2028 View dragView, int delay, int mode) {
Adam Cohen19f37922012-03-21 11:59:11 -07002029 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen19f37922012-03-21 11:59:11 -07002030 for (int i = 0; i < childCount; i++) {
2031 View child = mShortcutsAndWidgets.getChildAt(i);
2032 if (child == dragView) continue;
2033 CellAndSpan c = solution.map.get(child);
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002034 boolean skip = mode == ReorderPreviewAnimation.MODE_HINT && solution.intersectingViews
2035 != null && !solution.intersectingViews.contains(child);
2036
Adam Cohen19f37922012-03-21 11:59:11 -07002037 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002038 if (c != null && !skip) {
2039 ReorderPreviewAnimation rha = new ReorderPreviewAnimation(child, mode, lp.cellX,
2040 lp.cellY, c.x, c.y, c.spanX, c.spanY);
Adam Cohend024f982012-05-23 18:26:45 -07002041 rha.animate();
Adam Cohen19f37922012-03-21 11:59:11 -07002042 }
2043 }
2044 }
2045
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002046 // Class which represents the reorder preview animations. These animations show that an item is
Adam Cohen19f37922012-03-21 11:59:11 -07002047 // in a temporary state, and hint at where the item will return to.
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002048 class ReorderPreviewAnimation {
Adam Cohen19f37922012-03-21 11:59:11 -07002049 View child;
Adam Cohend024f982012-05-23 18:26:45 -07002050 float finalDeltaX;
2051 float finalDeltaY;
2052 float initDeltaX;
2053 float initDeltaY;
2054 float finalScale;
2055 float initScale;
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002056 int mode;
2057 boolean repeating = false;
2058 private static final int PREVIEW_DURATION = 300;
2059 private static final int HINT_DURATION = Workspace.REORDER_TIMEOUT;
2060
2061 public static final int MODE_HINT = 0;
2062 public static final int MODE_PREVIEW = 1;
2063
Adam Cohene7587d22012-05-24 18:50:02 -07002064 Animator a;
Adam Cohen19f37922012-03-21 11:59:11 -07002065
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002066 public ReorderPreviewAnimation(View child, int mode, int cellX0, int cellY0, int cellX1,
2067 int cellY1, int spanX, int spanY) {
Adam Cohen19f37922012-03-21 11:59:11 -07002068 regionToCenterPoint(cellX0, cellY0, spanX, spanY, mTmpPoint);
2069 final int x0 = mTmpPoint[0];
2070 final int y0 = mTmpPoint[1];
2071 regionToCenterPoint(cellX1, cellY1, spanX, spanY, mTmpPoint);
2072 final int x1 = mTmpPoint[0];
2073 final int y1 = mTmpPoint[1];
2074 final int dX = x1 - x0;
2075 final int dY = y1 - y0;
Adam Cohend024f982012-05-23 18:26:45 -07002076 finalDeltaX = 0;
2077 finalDeltaY = 0;
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002078 int dir = mode == MODE_HINT ? -1 : 1;
Adam Cohen19f37922012-03-21 11:59:11 -07002079 if (dX == dY && dX == 0) {
2080 } else {
2081 if (dY == 0) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002082 finalDeltaX = - dir * Math.signum(dX) * mReorderPreviewAnimationMagnitude;
Adam Cohen19f37922012-03-21 11:59:11 -07002083 } else if (dX == 0) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002084 finalDeltaY = - dir * Math.signum(dY) * mReorderPreviewAnimationMagnitude;
Adam Cohen19f37922012-03-21 11:59:11 -07002085 } else {
2086 double angle = Math.atan( (float) (dY) / dX);
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002087 finalDeltaX = (int) (- dir * Math.signum(dX) *
2088 Math.abs(Math.cos(angle) * mReorderPreviewAnimationMagnitude));
2089 finalDeltaY = (int) (- dir * Math.signum(dY) *
2090 Math.abs(Math.sin(angle) * mReorderPreviewAnimationMagnitude));
Adam Cohen19f37922012-03-21 11:59:11 -07002091 }
2092 }
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002093 this.mode = mode;
Adam Cohend024f982012-05-23 18:26:45 -07002094 initDeltaX = child.getTranslationX();
2095 initDeltaY = child.getTranslationY();
Adam Cohen307fe232012-08-16 17:55:58 -07002096 finalScale = getChildrenScale() - 4.0f / child.getWidth();
Adam Cohend024f982012-05-23 18:26:45 -07002097 initScale = child.getScaleX();
Adam Cohen19f37922012-03-21 11:59:11 -07002098 this.child = child;
2099 }
2100
Adam Cohend024f982012-05-23 18:26:45 -07002101 void animate() {
Adam Cohen19f37922012-03-21 11:59:11 -07002102 if (mShakeAnimators.containsKey(child)) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002103 ReorderPreviewAnimation oldAnimation = mShakeAnimators.get(child);
Adam Cohend024f982012-05-23 18:26:45 -07002104 oldAnimation.cancel();
Adam Cohen19f37922012-03-21 11:59:11 -07002105 mShakeAnimators.remove(child);
Adam Cohene7587d22012-05-24 18:50:02 -07002106 if (finalDeltaX == 0 && finalDeltaY == 0) {
2107 completeAnimationImmediately();
2108 return;
2109 }
Adam Cohen19f37922012-03-21 11:59:11 -07002110 }
Adam Cohend024f982012-05-23 18:26:45 -07002111 if (finalDeltaX == 0 && finalDeltaY == 0) {
Adam Cohen19f37922012-03-21 11:59:11 -07002112 return;
2113 }
Michael Jurkaf1ad6082013-03-13 12:55:46 +01002114 ValueAnimator va = LauncherAnimUtils.ofFloat(child, 0f, 1f);
Adam Cohene7587d22012-05-24 18:50:02 -07002115 a = va;
Adam Cohen19f37922012-03-21 11:59:11 -07002116 va.setRepeatMode(ValueAnimator.REVERSE);
2117 va.setRepeatCount(ValueAnimator.INFINITE);
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002118 va.setDuration(mode == MODE_HINT ? HINT_DURATION : PREVIEW_DURATION);
Adam Cohend024f982012-05-23 18:26:45 -07002119 va.setStartDelay((int) (Math.random() * 60));
Adam Cohen19f37922012-03-21 11:59:11 -07002120 va.addUpdateListener(new AnimatorUpdateListener() {
2121 @Override
2122 public void onAnimationUpdate(ValueAnimator animation) {
2123 float r = ((Float) animation.getAnimatedValue()).floatValue();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002124 float r1 = (mode == MODE_HINT && repeating) ? 1.0f : r;
2125 float x = r1 * finalDeltaX + (1 - r1) * initDeltaX;
2126 float y = r1 * finalDeltaY + (1 - r1) * initDeltaY;
Adam Cohen19f37922012-03-21 11:59:11 -07002127 child.setTranslationX(x);
2128 child.setTranslationY(y);
Adam Cohend024f982012-05-23 18:26:45 -07002129 float s = r * finalScale + (1 - r) * initScale;
Brandon Keely50e6e562012-05-08 16:28:49 -07002130 child.setScaleX(s);
2131 child.setScaleY(s);
Adam Cohen19f37922012-03-21 11:59:11 -07002132 }
2133 });
2134 va.addListener(new AnimatorListenerAdapter() {
2135 public void onAnimationRepeat(Animator animation) {
Adam Cohen19f37922012-03-21 11:59:11 -07002136 // We make sure to end only after a full period
Adam Cohend024f982012-05-23 18:26:45 -07002137 initDeltaX = 0;
2138 initDeltaY = 0;
Adam Cohen307fe232012-08-16 17:55:58 -07002139 initScale = getChildrenScale();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002140 repeating = true;
Adam Cohen19f37922012-03-21 11:59:11 -07002141 }
2142 });
Adam Cohen19f37922012-03-21 11:59:11 -07002143 mShakeAnimators.put(child, this);
2144 va.start();
2145 }
2146
Adam Cohend024f982012-05-23 18:26:45 -07002147 private void cancel() {
Adam Cohene7587d22012-05-24 18:50:02 -07002148 if (a != null) {
2149 a.cancel();
2150 }
Adam Cohen19f37922012-03-21 11:59:11 -07002151 }
Adam Cohene7587d22012-05-24 18:50:02 -07002152
Adam Cohen091440a2015-03-18 14:16:05 -07002153 @Thunk void completeAnimationImmediately() {
Adam Cohene7587d22012-05-24 18:50:02 -07002154 if (a != null) {
2155 a.cancel();
2156 }
Brandon Keely50e6e562012-05-08 16:28:49 -07002157
Sunny Goyal5d2fc322015-07-06 22:52:49 -07002158 a = new LauncherViewPropertyAnimator(child)
2159 .scaleX(getChildrenScale())
2160 .scaleY(getChildrenScale())
2161 .translationX(0)
2162 .translationY(0)
2163 .setDuration(REORDER_ANIMATION_DURATION);
2164 a.setInterpolator(new android.view.animation.DecelerateInterpolator(1.5f));
2165 a.start();
Brandon Keely50e6e562012-05-08 16:28:49 -07002166 }
Adam Cohen19f37922012-03-21 11:59:11 -07002167 }
2168
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002169 private void completeAndClearReorderPreviewAnimations() {
2170 for (ReorderPreviewAnimation a: mShakeAnimators.values()) {
Brandon Keely50e6e562012-05-08 16:28:49 -07002171 a.completeAnimationImmediately();
Adam Cohen19f37922012-03-21 11:59:11 -07002172 }
2173 mShakeAnimators.clear();
2174 }
2175
Adam Cohen482ed822012-03-02 14:15:13 -08002176 private void commitTempPlacement() {
2177 for (int i = 0; i < mCountX; i++) {
2178 for (int j = 0; j < mCountY; j++) {
2179 mOccupied[i][j] = mTmpOccupied[i][j];
2180 }
2181 }
Sunny Goyalaa8ef112015-06-12 20:04:41 -07002182
2183 long screenId = mLauncher.getWorkspace().getIdForScreen(this);
2184 int container = Favorites.CONTAINER_DESKTOP;
2185
2186 if (mLauncher.isHotseatLayout(this)) {
2187 screenId = -1;
2188 container = Favorites.CONTAINER_HOTSEAT;
2189 }
2190
Michael Jurkaa52570f2012-03-20 03:18:20 -07002191 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08002192 for (int i = 0; i < childCount; i++) {
Adam Cohenea889a22012-03-27 16:45:39 -07002193 View child = mShortcutsAndWidgets.getChildAt(i);
2194 LayoutParams lp = (LayoutParams) child.getLayoutParams();
2195 ItemInfo info = (ItemInfo) child.getTag();
Adam Cohen2acce882012-03-28 19:03:19 -07002196 // We do a null check here because the item info can be null in the case of the
2197 // AllApps button in the hotseat.
2198 if (info != null) {
Sunny Goyalaa8ef112015-06-12 20:04:41 -07002199 final boolean requiresDbUpdate = (info.cellX != lp.tmpCellX
2200 || info.cellY != lp.tmpCellY || info.spanX != lp.cellHSpan
2201 || info.spanY != lp.cellVSpan);
2202
Adam Cohen2acce882012-03-28 19:03:19 -07002203 info.cellX = lp.cellX = lp.tmpCellX;
2204 info.cellY = lp.cellY = lp.tmpCellY;
Adam Cohenbebf0422012-04-11 18:06:28 -07002205 info.spanX = lp.cellHSpan;
2206 info.spanY = lp.cellVSpan;
Sunny Goyalaa8ef112015-06-12 20:04:41 -07002207
2208 if (requiresDbUpdate) {
2209 LauncherModel.modifyItemInDatabase(mLauncher, info, container, screenId,
2210 info.cellX, info.cellY, info.spanX, info.spanY);
2211 }
Adam Cohen2acce882012-03-28 19:03:19 -07002212 }
Adam Cohen482ed822012-03-02 14:15:13 -08002213 }
2214 }
2215
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002216 private void setUseTempCoords(boolean useTempCoords) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002217 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08002218 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002219 LayoutParams lp = (LayoutParams) mShortcutsAndWidgets.getChildAt(i).getLayoutParams();
Adam Cohen482ed822012-03-02 14:15:13 -08002220 lp.useTmpCoords = useTempCoords;
2221 }
2222 }
2223
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002224 private ItemConfiguration findConfigurationNoShuffle(int pixelX, int pixelY, int minSpanX, int minSpanY,
Adam Cohen482ed822012-03-02 14:15:13 -08002225 int spanX, int spanY, View dragView, ItemConfiguration solution) {
2226 int[] result = new int[2];
2227 int[] resultSpan = new int[2];
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002228 findNearestVacantArea(pixelX, pixelY, minSpanX, minSpanY, spanX, spanY, result,
Adam Cohen482ed822012-03-02 14:15:13 -08002229 resultSpan);
2230 if (result[0] >= 0 && result[1] >= 0) {
2231 copyCurrentStateToSolution(solution, false);
2232 solution.dragViewX = result[0];
2233 solution.dragViewY = result[1];
2234 solution.dragViewSpanX = resultSpan[0];
2235 solution.dragViewSpanY = resultSpan[1];
2236 solution.isSolution = true;
2237 } else {
2238 solution.isSolution = false;
2239 }
2240 return solution;
2241 }
2242
2243 public void prepareChildForDrag(View child) {
2244 markCellsAsUnoccupiedForView(child);
Adam Cohen482ed822012-03-02 14:15:13 -08002245 }
2246
Adam Cohen19f37922012-03-21 11:59:11 -07002247 /* This seems like it should be obvious and straight-forward, but when the direction vector
2248 needs to match with the notion of the dragView pushing other views, we have to employ
2249 a slightly more subtle notion of the direction vector. The question is what two points is
2250 the vector between? The center of the dragView and its desired destination? Not quite, as
2251 this doesn't necessarily coincide with the interaction of the dragView and items occupying
2252 those cells. Instead we use some heuristics to often lock the vector to up, down, left
2253 or right, which helps make pushing feel right.
2254 */
2255 private void getDirectionVectorForDrop(int dragViewCenterX, int dragViewCenterY, int spanX,
2256 int spanY, View dragView, int[] resultDirection) {
2257 int[] targetDestination = new int[2];
2258
2259 findNearestArea(dragViewCenterX, dragViewCenterY, spanX, spanY, targetDestination);
2260 Rect dragRect = new Rect();
2261 regionToRect(targetDestination[0], targetDestination[1], spanX, spanY, dragRect);
2262 dragRect.offset(dragViewCenterX - dragRect.centerX(), dragViewCenterY - dragRect.centerY());
2263
2264 Rect dropRegionRect = new Rect();
2265 getViewsIntersectingRegion(targetDestination[0], targetDestination[1], spanX, spanY,
2266 dragView, dropRegionRect, mIntersectingViews);
2267
2268 int dropRegionSpanX = dropRegionRect.width();
2269 int dropRegionSpanY = dropRegionRect.height();
2270
2271 regionToRect(dropRegionRect.left, dropRegionRect.top, dropRegionRect.width(),
2272 dropRegionRect.height(), dropRegionRect);
2273
2274 int deltaX = (dropRegionRect.centerX() - dragViewCenterX) / spanX;
2275 int deltaY = (dropRegionRect.centerY() - dragViewCenterY) / spanY;
2276
2277 if (dropRegionSpanX == mCountX || spanX == mCountX) {
2278 deltaX = 0;
2279 }
2280 if (dropRegionSpanY == mCountY || spanY == mCountY) {
2281 deltaY = 0;
2282 }
2283
2284 if (deltaX == 0 && deltaY == 0) {
2285 // No idea what to do, give a random direction.
2286 resultDirection[0] = 1;
2287 resultDirection[1] = 0;
2288 } else {
2289 computeDirectionVector(deltaX, deltaY, resultDirection);
2290 }
2291 }
2292
2293 // For a given cell and span, fetch the set of views intersecting the region.
2294 private void getViewsIntersectingRegion(int cellX, int cellY, int spanX, int spanY,
2295 View dragView, Rect boundingRect, ArrayList<View> intersectingViews) {
2296 if (boundingRect != null) {
2297 boundingRect.set(cellX, cellY, cellX + spanX, cellY + spanY);
2298 }
2299 intersectingViews.clear();
2300 Rect r0 = new Rect(cellX, cellY, cellX + spanX, cellY + spanY);
2301 Rect r1 = new Rect();
2302 final int count = mShortcutsAndWidgets.getChildCount();
2303 for (int i = 0; i < count; i++) {
2304 View child = mShortcutsAndWidgets.getChildAt(i);
2305 if (child == dragView) continue;
2306 LayoutParams lp = (LayoutParams) child.getLayoutParams();
2307 r1.set(lp.cellX, lp.cellY, lp.cellX + lp.cellHSpan, lp.cellY + lp.cellVSpan);
2308 if (Rect.intersects(r0, r1)) {
2309 mIntersectingViews.add(child);
2310 if (boundingRect != null) {
2311 boundingRect.union(r1);
2312 }
2313 }
2314 }
2315 }
2316
2317 boolean isNearestDropLocationOccupied(int pixelX, int pixelY, int spanX, int spanY,
2318 View dragView, int[] result) {
2319 result = findNearestArea(pixelX, pixelY, spanX, spanY, result);
2320 getViewsIntersectingRegion(result[0], result[1], spanX, spanY, dragView, null,
2321 mIntersectingViews);
2322 return !mIntersectingViews.isEmpty();
2323 }
2324
2325 void revertTempState() {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002326 completeAndClearReorderPreviewAnimations();
2327 if (isItemPlacementDirty() && !DESTRUCTIVE_REORDER) {
2328 final int count = mShortcutsAndWidgets.getChildCount();
2329 for (int i = 0; i < count; i++) {
2330 View child = mShortcutsAndWidgets.getChildAt(i);
2331 LayoutParams lp = (LayoutParams) child.getLayoutParams();
2332 if (lp.tmpCellX != lp.cellX || lp.tmpCellY != lp.cellY) {
2333 lp.tmpCellX = lp.cellX;
2334 lp.tmpCellY = lp.cellY;
2335 animateChildToPosition(child, lp.cellX, lp.cellY, REORDER_ANIMATION_DURATION,
2336 0, false, false);
2337 }
Adam Cohen19f37922012-03-21 11:59:11 -07002338 }
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002339 setItemPlacementDirty(false);
Adam Cohen19f37922012-03-21 11:59:11 -07002340 }
Adam Cohen19f37922012-03-21 11:59:11 -07002341 }
2342
Adam Cohenbebf0422012-04-11 18:06:28 -07002343 boolean createAreaForResize(int cellX, int cellY, int spanX, int spanY,
2344 View dragView, int[] direction, boolean commit) {
2345 int[] pixelXY = new int[2];
2346 regionToCenterPoint(cellX, cellY, spanX, spanY, pixelXY);
2347
2348 // First we determine if things have moved enough to cause a different layout
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002349 ItemConfiguration swapSolution = findReorderSolution(pixelXY[0], pixelXY[1], spanX, spanY,
Adam Cohenbebf0422012-04-11 18:06:28 -07002350 spanX, spanY, direction, dragView, true, new ItemConfiguration());
2351
2352 setUseTempCoords(true);
2353 if (swapSolution != null && swapSolution.isSolution) {
2354 // If we're just testing for a possible location (MODE_ACCEPT_DROP), we don't bother
2355 // committing anything or animating anything as we just want to determine if a solution
2356 // exists
2357 copySolutionToTempState(swapSolution, dragView);
2358 setItemPlacementDirty(true);
2359 animateItemsToSolution(swapSolution, dragView, commit);
2360
2361 if (commit) {
2362 commitTempPlacement();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002363 completeAndClearReorderPreviewAnimations();
Adam Cohenbebf0422012-04-11 18:06:28 -07002364 setItemPlacementDirty(false);
2365 } else {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002366 beginOrAdjustReorderPreviewAnimations(swapSolution, dragView,
2367 REORDER_ANIMATION_DURATION, ReorderPreviewAnimation.MODE_PREVIEW);
Adam Cohenbebf0422012-04-11 18:06:28 -07002368 }
2369 mShortcutsAndWidgets.requestLayout();
2370 }
2371 return swapSolution.isSolution;
2372 }
2373
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002374 int[] performReorder(int pixelX, int pixelY, int minSpanX, int minSpanY, int spanX, int spanY,
Adam Cohen482ed822012-03-02 14:15:13 -08002375 View dragView, int[] result, int resultSpan[], int mode) {
Adam Cohen482ed822012-03-02 14:15:13 -08002376 // First we determine if things have moved enough to cause a different layout
Adam Cohen47a876d2012-03-19 13:21:41 -07002377 result = findNearestArea(pixelX, pixelY, spanX, spanY, result);
Adam Cohen482ed822012-03-02 14:15:13 -08002378
2379 if (resultSpan == null) {
2380 resultSpan = new int[2];
2381 }
2382
Adam Cohen19f37922012-03-21 11:59:11 -07002383 // When we are checking drop validity or actually dropping, we don't recompute the
2384 // direction vector, since we want the solution to match the preview, and it's possible
2385 // that the exact position of the item has changed to result in a new reordering outcome.
Adam Cohenb209e632012-03-27 17:09:36 -07002386 if ((mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL || mode == MODE_ACCEPT_DROP)
2387 && mPreviousReorderDirection[0] != INVALID_DIRECTION) {
Adam Cohen19f37922012-03-21 11:59:11 -07002388 mDirectionVector[0] = mPreviousReorderDirection[0];
2389 mDirectionVector[1] = mPreviousReorderDirection[1];
2390 // We reset this vector after drop
Adam Cohenb209e632012-03-27 17:09:36 -07002391 if (mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL) {
2392 mPreviousReorderDirection[0] = INVALID_DIRECTION;
2393 mPreviousReorderDirection[1] = INVALID_DIRECTION;
Adam Cohen19f37922012-03-21 11:59:11 -07002394 }
2395 } else {
2396 getDirectionVectorForDrop(pixelX, pixelY, spanX, spanY, dragView, mDirectionVector);
2397 mPreviousReorderDirection[0] = mDirectionVector[0];
2398 mPreviousReorderDirection[1] = mDirectionVector[1];
2399 }
2400
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002401 // Find a solution involving pushing / displacing any items in the way
2402 ItemConfiguration swapSolution = findReorderSolution(pixelX, pixelY, minSpanX, minSpanY,
Adam Cohen482ed822012-03-02 14:15:13 -08002403 spanX, spanY, mDirectionVector, dragView, true, new ItemConfiguration());
2404
2405 // We attempt the approach which doesn't shuffle views at all
2406 ItemConfiguration noShuffleSolution = findConfigurationNoShuffle(pixelX, pixelY, minSpanX,
2407 minSpanY, spanX, spanY, dragView, new ItemConfiguration());
2408
2409 ItemConfiguration finalSolution = null;
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002410
2411 // If the reorder solution requires resizing (shrinking) the item being dropped, we instead
2412 // favor a solution in which the item is not resized, but
Adam Cohen482ed822012-03-02 14:15:13 -08002413 if (swapSolution.isSolution && swapSolution.area() >= noShuffleSolution.area()) {
2414 finalSolution = swapSolution;
2415 } else if (noShuffleSolution.isSolution) {
2416 finalSolution = noShuffleSolution;
2417 }
2418
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002419 if (mode == MODE_SHOW_REORDER_HINT) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002420 if (finalSolution != null) {
Adam Cohenfe692872013-12-11 14:47:23 -08002421 beginOrAdjustReorderPreviewAnimations(finalSolution, dragView, 0,
2422 ReorderPreviewAnimation.MODE_HINT);
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002423 result[0] = finalSolution.dragViewX;
2424 result[1] = finalSolution.dragViewY;
2425 resultSpan[0] = finalSolution.dragViewSpanX;
2426 resultSpan[1] = finalSolution.dragViewSpanY;
2427 } else {
2428 result[0] = result[1] = resultSpan[0] = resultSpan[1] = -1;
2429 }
2430 return result;
2431 }
2432
Adam Cohen482ed822012-03-02 14:15:13 -08002433 boolean foundSolution = true;
2434 if (!DESTRUCTIVE_REORDER) {
2435 setUseTempCoords(true);
2436 }
2437
2438 if (finalSolution != null) {
2439 result[0] = finalSolution.dragViewX;
2440 result[1] = finalSolution.dragViewY;
2441 resultSpan[0] = finalSolution.dragViewSpanX;
2442 resultSpan[1] = finalSolution.dragViewSpanY;
2443
2444 // If we're just testing for a possible location (MODE_ACCEPT_DROP), we don't bother
2445 // committing anything or animating anything as we just want to determine if a solution
2446 // exists
2447 if (mode == MODE_DRAG_OVER || mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL) {
2448 if (!DESTRUCTIVE_REORDER) {
2449 copySolutionToTempState(finalSolution, dragView);
2450 }
2451 setItemPlacementDirty(true);
2452 animateItemsToSolution(finalSolution, dragView, mode == MODE_ON_DROP);
2453
Adam Cohen19f37922012-03-21 11:59:11 -07002454 if (!DESTRUCTIVE_REORDER &&
2455 (mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL)) {
Adam Cohen482ed822012-03-02 14:15:13 -08002456 commitTempPlacement();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002457 completeAndClearReorderPreviewAnimations();
Adam Cohen19f37922012-03-21 11:59:11 -07002458 setItemPlacementDirty(false);
2459 } else {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002460 beginOrAdjustReorderPreviewAnimations(finalSolution, dragView,
2461 REORDER_ANIMATION_DURATION, ReorderPreviewAnimation.MODE_PREVIEW);
Adam Cohen482ed822012-03-02 14:15:13 -08002462 }
2463 }
2464 } else {
2465 foundSolution = false;
2466 result[0] = result[1] = resultSpan[0] = resultSpan[1] = -1;
2467 }
2468
2469 if ((mode == MODE_ON_DROP || !foundSolution) && !DESTRUCTIVE_REORDER) {
2470 setUseTempCoords(false);
2471 }
Adam Cohen482ed822012-03-02 14:15:13 -08002472
Michael Jurkaa52570f2012-03-20 03:18:20 -07002473 mShortcutsAndWidgets.requestLayout();
Adam Cohen482ed822012-03-02 14:15:13 -08002474 return result;
2475 }
2476
Adam Cohen19f37922012-03-21 11:59:11 -07002477 void setItemPlacementDirty(boolean dirty) {
2478 mItemPlacementDirty = dirty;
Adam Cohen482ed822012-03-02 14:15:13 -08002479 }
Adam Cohen19f37922012-03-21 11:59:11 -07002480 boolean isItemPlacementDirty() {
2481 return mItemPlacementDirty;
Adam Cohen482ed822012-03-02 14:15:13 -08002482 }
2483
Adam Cohen091440a2015-03-18 14:16:05 -07002484 @Thunk class ItemConfiguration {
Adam Cohen8baab352012-03-20 17:39:21 -07002485 HashMap<View, CellAndSpan> map = new HashMap<View, CellAndSpan>();
Adam Cohenf3900c22012-11-16 18:28:11 -08002486 private HashMap<View, CellAndSpan> savedMap = new HashMap<View, CellAndSpan>();
2487 ArrayList<View> sortedViews = new ArrayList<View>();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002488 ArrayList<View> intersectingViews;
Adam Cohen482ed822012-03-02 14:15:13 -08002489 boolean isSolution = false;
2490 int dragViewX, dragViewY, dragViewSpanX, dragViewSpanY;
2491
Adam Cohenf3900c22012-11-16 18:28:11 -08002492 void save() {
2493 // Copy current state into savedMap
2494 for (View v: map.keySet()) {
2495 map.get(v).copy(savedMap.get(v));
2496 }
2497 }
2498
2499 void restore() {
2500 // Restore current state from savedMap
2501 for (View v: savedMap.keySet()) {
2502 savedMap.get(v).copy(map.get(v));
2503 }
2504 }
2505
2506 void add(View v, CellAndSpan cs) {
2507 map.put(v, cs);
2508 savedMap.put(v, new CellAndSpan());
2509 sortedViews.add(v);
2510 }
2511
Adam Cohen482ed822012-03-02 14:15:13 -08002512 int area() {
2513 return dragViewSpanX * dragViewSpanY;
2514 }
Adam Cohen8baab352012-03-20 17:39:21 -07002515 }
2516
2517 private class CellAndSpan {
2518 int x, y;
2519 int spanX, spanY;
2520
Adam Cohenf3900c22012-11-16 18:28:11 -08002521 public CellAndSpan() {
2522 }
2523
2524 public void copy(CellAndSpan copy) {
2525 copy.x = x;
2526 copy.y = y;
2527 copy.spanX = spanX;
2528 copy.spanY = spanY;
2529 }
2530
Adam Cohen8baab352012-03-20 17:39:21 -07002531 public CellAndSpan(int x, int y, int spanX, int spanY) {
2532 this.x = x;
2533 this.y = y;
2534 this.spanX = spanX;
2535 this.spanY = spanY;
Adam Cohen482ed822012-03-02 14:15:13 -08002536 }
Adam Cohenf3900c22012-11-16 18:28:11 -08002537
2538 public String toString() {
2539 return "(" + x + ", " + y + ": " + spanX + ", " + spanY + ")";
2540 }
2541
Adam Cohen482ed822012-03-02 14:15:13 -08002542 }
2543
Adam Cohendf035382011-04-11 17:22:04 -07002544 /**
Adam Cohendf035382011-04-11 17:22:04 -07002545 * Find a starting cell position that will fit the given bounds nearest the requested
2546 * cell location. Uses Euclidean distance to score multiple vacant areas.
2547 *
2548 * @param pixelX The X location at which you want to search for a vacant area.
2549 * @param pixelY The Y location at which you want to search for a vacant area.
2550 * @param spanX Horizontal span of the object.
2551 * @param spanY Vertical span of the object.
2552 * @param ignoreView Considers space occupied by this view as unoccupied
2553 * @param result Previously returned value to possibly recycle.
2554 * @return The X, Y cell of a vacant area that can contain this object,
2555 * nearest the requested location.
2556 */
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002557 int[] findNearestArea(int pixelX, int pixelY, int spanX, int spanY, int[] result) {
2558 return findNearestArea(pixelX, pixelY, spanX, spanY, spanX, spanY, false, result, null);
Adam Cohendf035382011-04-11 17:22:04 -07002559 }
2560
Michael Jurka0280c3b2010-09-17 15:00:07 -07002561 boolean existsEmptyCell() {
2562 return findCellForSpan(null, 1, 1);
2563 }
2564
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002565 /**
Michael Jurka0280c3b2010-09-17 15:00:07 -07002566 * Finds the upper-left coordinate of the first rectangle in the grid that can
2567 * hold a cell of the specified dimensions. If intersectX and intersectY are not -1,
2568 * then this method will only return coordinates for rectangles that contain the cell
2569 * (intersectX, intersectY)
2570 *
2571 * @param cellXY The array that will contain the position of a vacant cell if such a cell
2572 * can be found.
2573 * @param spanX The horizontal span of the cell we want to find.
2574 * @param spanY The vertical span of the cell we want to find.
2575 *
2576 * @return True if a vacant cell of the specified dimension was found, false otherwise.
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002577 */
Hyunyoung Song3f471442015-04-08 19:01:34 -07002578 public boolean findCellForSpan(int[] cellXY, int spanX, int spanY) {
Michael Jurka28750fb2010-09-24 17:43:49 -07002579 boolean foundCell = false;
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002580 final int endX = mCountX - (spanX - 1);
2581 final int endY = mCountY - (spanY - 1);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002582
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002583 for (int y = 0; y < endY && !foundCell; y++) {
2584 inner:
2585 for (int x = 0; x < endX; x++) {
2586 for (int i = 0; i < spanX; i++) {
2587 for (int j = 0; j < spanY; j++) {
2588 if (mOccupied[x + i][y + j]) {
2589 // small optimization: we can skip to after the column we just found
2590 // an occupied cell
2591 x += i;
2592 continue inner;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002593 }
2594 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002595 }
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002596 if (cellXY != null) {
2597 cellXY[0] = x;
2598 cellXY[1] = y;
2599 }
2600 foundCell = true;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002601 break;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002602 }
2603 }
2604
Michael Jurka28750fb2010-09-24 17:43:49 -07002605 return foundCell;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002606 }
2607
2608 /**
Winson Chungc07918d2011-07-01 15:35:26 -07002609 * A drag event has begun over this layout.
2610 * It may have begun over this layout (in which case onDragChild is called first),
2611 * or it may have begun on another layout.
2612 */
2613 void onDragEnter() {
Winson Chungc07918d2011-07-01 15:35:26 -07002614 mDragging = true;
2615 }
2616
2617 /**
Michael Jurka0280c3b2010-09-17 15:00:07 -07002618 * Called when drag has left this CellLayout or has been completed (successfully or not)
2619 */
2620 void onDragExit() {
Joe Onorato4be866d2010-10-10 11:26:02 -07002621 // This can actually be called when we aren't in a drag, e.g. when adding a new
2622 // item to this layout via the customize drawer.
2623 // Guard against that case.
2624 if (mDragging) {
2625 mDragging = false;
Patrick Dubroyde7658b2010-09-27 11:15:43 -07002626 }
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07002627
2628 // Invalidate the drag data
Adam Cohend41fbf52012-02-16 23:53:59 -08002629 mDragCell[0] = mDragCell[1] = -1;
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07002630 mDragOutlineAnims[mDragOutlineCurrent].animateOut();
2631 mDragOutlineCurrent = (mDragOutlineCurrent + 1) % mDragOutlineAnims.length;
Adam Cohen19f37922012-03-21 11:59:11 -07002632 revertTempState();
Michael Jurka33945b22010-12-21 18:19:38 -08002633 setIsDragOverlapping(false);
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002634 }
2635
2636 /**
Winson Chungaafa03c2010-06-11 17:34:16 -07002637 * Mark a child as having been dropped.
Patrick Dubroyde7658b2010-09-27 11:15:43 -07002638 * At the beginning of the drag operation, the child may have been on another
Patrick Dubroyce34a972010-10-19 10:34:32 -07002639 * screen, but it is re-parented before this method is called.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002640 *
2641 * @param child The child that is being dropped
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002642 */
Adam Cohen716b51e2011-06-30 12:09:54 -07002643 void onDropChild(View child) {
Romain Guyd94533d2009-08-17 10:01:15 -07002644 if (child != null) {
2645 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Romain Guy84f296c2009-11-04 15:00:44 -08002646 lp.dropped = true;
Romain Guyd94533d2009-08-17 10:01:15 -07002647 child.requestLayout();
Romain Guyd94533d2009-08-17 10:01:15 -07002648 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002649 }
2650
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002651 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002652 * Computes a bounding rectangle for a range of cells
Winson Chungaafa03c2010-06-11 17:34:16 -07002653 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002654 * @param cellX X coordinate of upper left corner expressed as a cell position
2655 * @param cellY Y coordinate of upper left corner expressed as a cell position
Winson Chungaafa03c2010-06-11 17:34:16 -07002656 * @param cellHSpan Width in cells
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002657 * @param cellVSpan Height in cells
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002658 * @param resultRect Rect into which to put the results
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002659 */
Adam Cohend41fbf52012-02-16 23:53:59 -08002660 public void cellToRect(int cellX, int cellY, int cellHSpan, int cellVSpan, Rect resultRect) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002661 final int cellWidth = mCellWidth;
2662 final int cellHeight = mCellHeight;
2663 final int widthGap = mWidthGap;
2664 final int heightGap = mHeightGap;
Winson Chungaafa03c2010-06-11 17:34:16 -07002665
Winson Chung4b825dcd2011-06-19 12:41:22 -07002666 final int hStartPadding = getPaddingLeft();
2667 final int vStartPadding = getPaddingTop();
Winson Chungaafa03c2010-06-11 17:34:16 -07002668
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002669 int width = cellHSpan * cellWidth + ((cellHSpan - 1) * widthGap);
2670 int height = cellVSpan * cellHeight + ((cellVSpan - 1) * heightGap);
2671
2672 int x = hStartPadding + cellX * (cellWidth + widthGap);
2673 int y = vStartPadding + cellY * (cellHeight + heightGap);
Winson Chungaafa03c2010-06-11 17:34:16 -07002674
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002675 resultRect.set(x, y, x + width, y + height);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002676 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002677
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002678 /**
Winson Chungaafa03c2010-06-11 17:34:16 -07002679 * Computes the required horizontal and vertical cell spans to always
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002680 * fit the given rectangle.
Winson Chungaafa03c2010-06-11 17:34:16 -07002681 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002682 * @param width Width in pixels
2683 * @param height Height in pixels
Patrick Dubroy8f86ddc2010-07-16 13:55:32 -07002684 * @param result An array of length 2 in which to store the result (may be null).
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002685 */
Adam Cohen2e6da152015-05-06 11:42:25 -07002686 public static int[] rectToCell(Launcher launcher, int width, int height, int[] result) {
Sunny Goyal3a30cfe2015-07-16 17:27:43 -07002687 return rectToCell(launcher.getDeviceProfile(), launcher, width, height, result);
2688 }
2689
2690 public static int[] rectToCell(DeviceProfile grid, Context context, int width, int height,
2691 int[] result) {
2692 Rect padding = grid.getWorkspacePadding(Utilities.isRtl(context.getResources()));
Winson Chung5f8afe62013-08-12 16:19:28 -07002693
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002694 // Always assume we're working with the smallest span to make sure we
2695 // reserve enough space in both orientations.
Sunny Goyalc6205602015-05-21 20:46:33 -07002696 int parentWidth = DeviceProfile.calculateCellWidth(grid.widthPx
Adam Cohen2e6da152015-05-06 11:42:25 -07002697 - padding.left - padding.right, (int) grid.inv.numColumns);
Sunny Goyalc6205602015-05-21 20:46:33 -07002698 int parentHeight = DeviceProfile.calculateCellHeight(grid.heightPx
Adam Cohen2e6da152015-05-06 11:42:25 -07002699 - padding.top - padding.bottom, (int) grid.inv.numRows);
Winson Chung66700732013-08-20 16:56:15 -07002700 int smallerSize = Math.min(parentWidth, parentHeight);
Joe Onorato79e56262009-09-21 15:23:04 -04002701
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002702 // Always round up to next largest cell
Winson Chung54c725c2011-08-03 12:03:40 -07002703 int spanX = (int) Math.ceil(width / (float) smallerSize);
2704 int spanY = (int) Math.ceil(height / (float) smallerSize);
Joe Onorato79e56262009-09-21 15:23:04 -04002705
Patrick Dubroy8f86ddc2010-07-16 13:55:32 -07002706 if (result == null) {
2707 return new int[] { spanX, spanY };
2708 }
2709 result[0] = spanX;
2710 result[1] = spanY;
2711 return result;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002712 }
2713
2714 /**
Patrick Dubroy047379a2010-12-19 22:02:04 -08002715 * Calculate the grid spans needed to fit given item
2716 */
2717 public void calculateSpans(ItemInfo info) {
2718 final int minWidth;
2719 final int minHeight;
2720
2721 if (info instanceof LauncherAppWidgetInfo) {
2722 minWidth = ((LauncherAppWidgetInfo) info).minWidth;
2723 minHeight = ((LauncherAppWidgetInfo) info).minHeight;
2724 } else if (info instanceof PendingAddWidgetInfo) {
2725 minWidth = ((PendingAddWidgetInfo) info).minWidth;
2726 minHeight = ((PendingAddWidgetInfo) info).minHeight;
2727 } else {
2728 // It's not a widget, so it must be 1x1
2729 info.spanX = info.spanY = 1;
2730 return;
2731 }
Adam Cohen2e6da152015-05-06 11:42:25 -07002732 int[] spans = rectToCell(mLauncher, minWidth, minHeight, null);
Patrick Dubroy047379a2010-12-19 22:02:04 -08002733 info.spanX = spans[0];
2734 info.spanY = spans[1];
2735 }
2736
Michael Jurka0280c3b2010-09-17 15:00:07 -07002737 private void clearOccupiedCells() {
2738 for (int x = 0; x < mCountX; x++) {
2739 for (int y = 0; y < mCountY; y++) {
2740 mOccupied[x][y] = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002741 }
2742 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002743 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002744
Adam Cohend4844c32011-02-18 19:25:06 -08002745 public void markCellsAsOccupiedForView(View view) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002746 if (view == null || view.getParent() != mShortcutsAndWidgets) return;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002747 LayoutParams lp = (LayoutParams) view.getLayoutParams();
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002748 markCellsForView(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan, mOccupied, true);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002749 }
2750
Adam Cohend4844c32011-02-18 19:25:06 -08002751 public void markCellsAsUnoccupiedForView(View view) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002752 if (view == null || view.getParent() != mShortcutsAndWidgets) return;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002753 LayoutParams lp = (LayoutParams) view.getLayoutParams();
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002754 markCellsForView(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan, mOccupied, false);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002755 }
2756
Adam Cohen482ed822012-03-02 14:15:13 -08002757 private void markCellsForView(int cellX, int cellY, int spanX, int spanY, boolean[][] occupied,
2758 boolean value) {
2759 if (cellX < 0 || cellY < 0) return;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002760 for (int x = cellX; x < cellX + spanX && x < mCountX; x++) {
2761 for (int y = cellY; y < cellY + spanY && y < mCountY; y++) {
Adam Cohen482ed822012-03-02 14:15:13 -08002762 occupied[x][y] = value;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002763 }
2764 }
2765 }
2766
Adam Cohen2801caf2011-05-13 20:57:39 -07002767 public int getDesiredWidth() {
Michael Jurka8b805b12012-04-18 14:23:14 -07002768 return getPaddingLeft() + getPaddingRight() + (mCountX * mCellWidth) +
Adam Cohen2801caf2011-05-13 20:57:39 -07002769 (Math.max((mCountX - 1), 0) * mWidthGap);
2770 }
2771
2772 public int getDesiredHeight() {
Michael Jurka8b805b12012-04-18 14:23:14 -07002773 return getPaddingTop() + getPaddingBottom() + (mCountY * mCellHeight) +
Adam Cohen2801caf2011-05-13 20:57:39 -07002774 (Math.max((mCountY - 1), 0) * mHeightGap);
2775 }
2776
Michael Jurka66d72172011-04-12 16:29:25 -07002777 public boolean isOccupied(int x, int y) {
2778 if (x < mCountX && y < mCountY) {
2779 return mOccupied[x][y];
2780 } else {
2781 throw new RuntimeException("Position exceeds the bound of this CellLayout");
2782 }
2783 }
2784
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002785 @Override
2786 public ViewGroup.LayoutParams generateLayoutParams(AttributeSet attrs) {
2787 return new CellLayout.LayoutParams(getContext(), attrs);
2788 }
2789
2790 @Override
2791 protected boolean checkLayoutParams(ViewGroup.LayoutParams p) {
2792 return p instanceof CellLayout.LayoutParams;
2793 }
2794
2795 @Override
2796 protected ViewGroup.LayoutParams generateLayoutParams(ViewGroup.LayoutParams p) {
2797 return new CellLayout.LayoutParams(p);
2798 }
2799
2800 public static class LayoutParams extends ViewGroup.MarginLayoutParams {
2801 /**
2802 * Horizontal location of the item in the grid.
2803 */
2804 @ViewDebug.ExportedProperty
2805 public int cellX;
2806
2807 /**
2808 * Vertical location of the item in the grid.
2809 */
2810 @ViewDebug.ExportedProperty
2811 public int cellY;
2812
2813 /**
Adam Cohen482ed822012-03-02 14:15:13 -08002814 * Temporary horizontal location of the item in the grid during reorder
2815 */
2816 public int tmpCellX;
2817
2818 /**
2819 * Temporary vertical location of the item in the grid during reorder
2820 */
2821 public int tmpCellY;
2822
2823 /**
2824 * Indicates that the temporary coordinates should be used to layout the items
2825 */
2826 public boolean useTmpCoords;
2827
2828 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002829 * Number of cells spanned horizontally by the item.
2830 */
2831 @ViewDebug.ExportedProperty
2832 public int cellHSpan;
2833
2834 /**
2835 * Number of cells spanned vertically by the item.
2836 */
2837 @ViewDebug.ExportedProperty
2838 public int cellVSpan;
Winson Chungaafa03c2010-06-11 17:34:16 -07002839
Adam Cohen1b607ed2011-03-03 17:26:50 -08002840 /**
2841 * Indicates whether the item will set its x, y, width and height parameters freely,
2842 * or whether these will be computed based on cellX, cellY, cellHSpan and cellVSpan.
2843 */
Adam Cohend4844c32011-02-18 19:25:06 -08002844 public boolean isLockedToGrid = true;
2845
Adam Cohen482ed822012-03-02 14:15:13 -08002846 /**
Adam Cohenec40b2b2013-07-23 15:52:40 -07002847 * Indicates that this item should use the full extents of its parent.
2848 */
2849 public boolean isFullscreen = false;
2850
2851 /**
Adam Cohen482ed822012-03-02 14:15:13 -08002852 * Indicates whether this item can be reordered. Always true except in the case of the
2853 * the AllApps button.
2854 */
2855 public boolean canReorder = true;
2856
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002857 // X coordinate of the view in the layout.
2858 @ViewDebug.ExportedProperty
2859 int x;
2860 // Y coordinate of the view in the layout.
2861 @ViewDebug.ExportedProperty
2862 int y;
2863
Romain Guy84f296c2009-11-04 15:00:44 -08002864 boolean dropped;
Romain Guyfcb9e712009-10-02 16:06:52 -07002865
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002866 public LayoutParams(Context c, AttributeSet attrs) {
2867 super(c, attrs);
2868 cellHSpan = 1;
2869 cellVSpan = 1;
2870 }
2871
2872 public LayoutParams(ViewGroup.LayoutParams source) {
2873 super(source);
2874 cellHSpan = 1;
2875 cellVSpan = 1;
2876 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002877
2878 public LayoutParams(LayoutParams source) {
2879 super(source);
2880 this.cellX = source.cellX;
2881 this.cellY = source.cellY;
2882 this.cellHSpan = source.cellHSpan;
2883 this.cellVSpan = source.cellVSpan;
2884 }
2885
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002886 public LayoutParams(int cellX, int cellY, int cellHSpan, int cellVSpan) {
Romain Guy8f19cdd2010-01-08 15:07:00 -08002887 super(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002888 this.cellX = cellX;
2889 this.cellY = cellY;
2890 this.cellHSpan = cellHSpan;
2891 this.cellVSpan = cellVSpan;
2892 }
2893
Adam Cohen2374abf2013-04-16 14:56:57 -07002894 public void setup(int cellWidth, int cellHeight, int widthGap, int heightGap,
2895 boolean invertHorizontally, int colCount) {
Adam Cohend4844c32011-02-18 19:25:06 -08002896 if (isLockedToGrid) {
2897 final int myCellHSpan = cellHSpan;
2898 final int myCellVSpan = cellVSpan;
Adam Cohen2374abf2013-04-16 14:56:57 -07002899 int myCellX = useTmpCoords ? tmpCellX : cellX;
2900 int myCellY = useTmpCoords ? tmpCellY : cellY;
2901
2902 if (invertHorizontally) {
2903 myCellX = colCount - myCellX - cellHSpan;
2904 }
Adam Cohen1b607ed2011-03-03 17:26:50 -08002905
Adam Cohend4844c32011-02-18 19:25:06 -08002906 width = myCellHSpan * cellWidth + ((myCellHSpan - 1) * widthGap) -
2907 leftMargin - rightMargin;
2908 height = myCellVSpan * cellHeight + ((myCellVSpan - 1) * heightGap) -
2909 topMargin - bottomMargin;
Winson Chungeecf02d2012-03-02 17:14:58 -08002910 x = (int) (myCellX * (cellWidth + widthGap) + leftMargin);
2911 y = (int) (myCellY * (cellHeight + heightGap) + topMargin);
Adam Cohend4844c32011-02-18 19:25:06 -08002912 }
2913 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002914
Winson Chungaafa03c2010-06-11 17:34:16 -07002915 public String toString() {
2916 return "(" + this.cellX + ", " + this.cellY + ")";
2917 }
Adam Cohen7f4eabe2011-04-21 16:19:16 -07002918
2919 public void setWidth(int width) {
2920 this.width = width;
2921 }
2922
2923 public int getWidth() {
2924 return width;
2925 }
2926
2927 public void setHeight(int height) {
2928 this.height = height;
2929 }
2930
2931 public int getHeight() {
2932 return height;
2933 }
2934
2935 public void setX(int x) {
2936 this.x = x;
2937 }
2938
2939 public int getX() {
2940 return x;
2941 }
2942
2943 public void setY(int y) {
2944 this.y = y;
2945 }
2946
2947 public int getY() {
2948 return y;
2949 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002950 }
2951
Michael Jurka0280c3b2010-09-17 15:00:07 -07002952 // This class stores info for two purposes:
2953 // 1. When dragging items (mDragInfo in Workspace), we store the View, its cellX & cellY,
2954 // its spanX, spanY, and the screen it is on
2955 // 2. When long clicking on an empty cell in a CellLayout, we save information about the
2956 // cellX and cellY coordinates and which page was clicked. We then set this as a tag on
2957 // the CellLayout that was long clicked
Sunny Goyal83a8f042015-05-19 12:52:12 -07002958 public static final class CellInfo {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002959 View cell;
Michael Jurkaa63c4522010-08-19 13:52:27 -07002960 int cellX = -1;
2961 int cellY = -1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002962 int spanX;
2963 int spanY;
Adam Cohendcd297f2013-06-18 13:13:40 -07002964 long screenId;
Winson Chung3d503fb2011-07-13 17:25:49 -07002965 long container;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002966
Sunny Goyal83a8f042015-05-19 12:52:12 -07002967 public CellInfo(View v, ItemInfo info) {
Adam Cohene0aaa0d2014-05-12 12:44:22 -07002968 cell = v;
2969 cellX = info.cellX;
2970 cellY = info.cellY;
2971 spanX = info.spanX;
2972 spanY = info.spanY;
2973 screenId = info.screenId;
2974 container = info.container;
2975 }
2976
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002977 @Override
2978 public String toString() {
Winson Chungaafa03c2010-06-11 17:34:16 -07002979 return "Cell[view=" + (cell == null ? "null" : cell.getClass())
2980 + ", x=" + cellX + ", y=" + cellY + "]";
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002981 }
2982 }
Michael Jurkad771c962011-08-09 15:00:48 -07002983
Sunny Goyala9116722015-04-29 13:55:58 -07002984 public boolean findVacantCell(int spanX, int spanY, int[] outXY) {
2985 return Utilities.findVacantCell(outXY, spanX, spanY, mCountX, mCountY, mOccupied);
2986 }
Sunny Goyal9ca9c132015-04-29 14:57:22 -07002987
2988 public boolean isRegionVacant(int x, int y, int spanX, int spanY) {
2989 int x2 = x + spanX - 1;
2990 int y2 = y + spanY - 1;
2991 if (x < 0 || y < 0 || x2 >= mCountX || y2 >= mCountY) {
2992 return false;
2993 }
2994 for (int i = x; i <= x2; i++) {
2995 for (int j = y; j <= y2; j++) {
2996 if (mOccupied[i][j]) {
2997 return false;
2998 }
2999 }
3000 }
3001
3002 return true;
3003 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003004}