blob: 85653bef77da9709de2376eb7e918636962d8da9 [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;
Brandon Keely50e6e562012-05-08 16:28:49 -070021import android.animation.AnimatorSet;
Chet Haase00397b12010-10-07 11:13:10 -070022import android.animation.TimeInterpolator;
Patrick Dubroyde7658b2010-09-27 11:15:43 -070023import android.animation.ValueAnimator;
24import android.animation.ValueAnimator.AnimatorUpdateListener;
Adam Cohenc9735cf2015-01-23 16:11:55 -080025import android.annotation.TargetApi;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080026import android.content.Context;
Joe Onorato79e56262009-09-21 15:23:04 -040027import android.content.res.Resources;
Winson Chungaafa03c2010-06-11 17:34:16 -070028import android.content.res.TypedArray;
Joe Onorato4be866d2010-10-10 11:26:02 -070029import android.graphics.Bitmap;
Winson Chungaafa03c2010-06-11 17:34:16 -070030import android.graphics.Canvas;
Andrew Flynn0dca1ec2012-02-29 13:33:22 -080031import android.graphics.Color;
Joe Onorato4be866d2010-10-10 11:26:02 -070032import android.graphics.Paint;
Patrick Dubroyde7658b2010-09-27 11:15:43 -070033import android.graphics.Point;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080034import android.graphics.Rect;
Adam Cohen482ed822012-03-02 14:15:13 -080035import android.graphics.drawable.ColorDrawable;
Patrick Dubroy6569f2c2010-07-12 14:25:18 -070036import android.graphics.drawable.Drawable;
Adam Cohenc9735cf2015-01-23 16:11:55 -080037import android.os.Build;
38import android.os.Bundle;
Adam Cohen1462de32012-07-24 22:34:36 -070039import android.os.Parcelable;
Adam Cohenc9735cf2015-01-23 16:11:55 -080040import android.support.v4.view.ViewCompat;
41import android.support.v4.view.accessibility.AccessibilityNodeInfoCompat;
42import android.support.v4.widget.ExploreByTouchHelper;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080043import android.util.AttributeSet;
Joe Onorato4be866d2010-10-10 11:26:02 -070044import android.util.Log;
Adam Cohen1462de32012-07-24 22:34:36 -070045import android.util.SparseArray;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080046import android.view.MotionEvent;
47import android.view.View;
48import android.view.ViewDebug;
49import android.view.ViewGroup;
Adam Cohenc9735cf2015-01-23 16:11:55 -080050import android.view.accessibility.AccessibilityEvent;
Winson Chung150fbab2010-09-29 17:14:26 -070051import android.view.animation.DecelerateInterpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080052
Daniel Sandler325dc232013-06-05 22:57:57 -040053import com.android.launcher3.FolderIcon.FolderRingAnimator;
Adam Cohenc9735cf2015-01-23 16:11:55 -080054import com.android.launcher3.LauncherAccessibilityDelegate.DragType;
Adam Cohen091440a2015-03-18 14:16:05 -070055import com.android.launcher3.util.Thunk;
Hyunyoung Song3f471442015-04-08 19:01:34 -070056import com.android.launcher3.widget.PendingAddWidgetInfo;
Patrick Dubroy8e58e912010-10-14 13:21:48 -070057
Adam Cohen69ce2e52011-07-03 19:25:21 -070058import java.util.ArrayList;
Adam Cohenc0dcf592011-06-01 15:30:43 -070059import java.util.Arrays;
Adam Cohenf3900c22012-11-16 18:28:11 -080060import java.util.Collections;
61import java.util.Comparator;
Adam Cohenbfbfd262011-06-13 16:55:12 -070062import java.util.HashMap;
Adam Cohenc9735cf2015-01-23 16:11:55 -080063import java.util.List;
Adam Cohend41fbf52012-02-16 23:53:59 -080064import java.util.Stack;
Adam Cohenc0dcf592011-06-01 15:30:43 -070065
Michael Jurkabdb5c532011-02-01 15:05:06 -080066public class CellLayout extends ViewGroup {
Winson Chungaafa03c2010-06-11 17:34:16 -070067 static final String TAG = "CellLayout";
68
Adam Cohen2acce882012-03-28 19:03:19 -070069 private Launcher mLauncher;
Adam Cohen091440a2015-03-18 14:16:05 -070070 @Thunk int mCellWidth;
71 @Thunk int mCellHeight;
Winson Chung11a1a532013-09-13 11:14:45 -070072 private int mFixedCellWidth;
73 private int mFixedCellHeight;
Winson Chungaafa03c2010-06-11 17:34:16 -070074
Adam Cohen091440a2015-03-18 14:16:05 -070075 @Thunk int mCountX;
76 @Thunk int mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080077
Adam Cohen234c4cd2011-07-17 21:03:04 -070078 private int mOriginalWidthGap;
79 private int mOriginalHeightGap;
Adam Cohen091440a2015-03-18 14:16:05 -070080 @Thunk int mWidthGap;
81 @Thunk int mHeightGap;
Winson Chung4b825dcd2011-06-19 12:41:22 -070082 private int mMaxGap;
Adam Cohen917e3882013-10-31 15:03:35 -070083 private boolean mDropPending = false;
Adam Cohenc50438c2014-08-19 17:43:05 -070084 private boolean mIsDragTarget = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080085
Patrick Dubroyde7658b2010-09-27 11:15:43 -070086 // These are temporary variables to prevent having to allocate a new object just to
87 // return an (x, y) value from helper functions. Do NOT use them to maintain other state.
Winson Chung0be025d2011-05-23 17:45:09 -070088 private final int[] mTmpXY = new int[2];
Adam Cohen091440a2015-03-18 14:16:05 -070089 @Thunk final int[] mTmpPoint = new int[2];
Adam Cohen69ce2e52011-07-03 19:25:21 -070090 int[] mTempLocation = new int[2];
Patrick Dubroy6569f2c2010-07-12 14:25:18 -070091
The Android Open Source Project31dd5032009-03-03 19:32:27 -080092 boolean[][] mOccupied;
Adam Cohen482ed822012-03-02 14:15:13 -080093 boolean[][] mTmpOccupied;
Michael Jurkad771c962011-08-09 15:00:48 -070094 private boolean mLastDownOnOccupiedCell = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080095
Michael Jurkadee05892010-07-27 10:01:56 -070096 private OnTouchListener mInterceptTouchListener;
97
Adam Cohen69ce2e52011-07-03 19:25:21 -070098 private ArrayList<FolderRingAnimator> mFolderOuterRings = new ArrayList<FolderRingAnimator>();
Adam Cohenc51934b2011-07-26 21:07:43 -070099 private int[] mFolderLeaveBehindCell = {-1, -1};
Adam Cohen69ce2e52011-07-03 19:25:21 -0700100
Adam Cohen02dcfcc2013-10-01 12:37:33 -0700101 private float FOREGROUND_ALPHA_DAMPER = 0.65f;
Adam Cohenb5ba0972011-09-07 18:02:31 -0700102 private int mForegroundAlpha = 0;
Michael Jurka5f1c5092010-09-03 14:15:02 -0700103 private float mBackgroundAlpha;
Adam Cohen1b0aaac2010-10-28 11:11:18 -0700104 private float mBackgroundAlphaMultiplier = 1.0f;
Winson Chung59a488a2013-12-10 12:32:14 -0800105 private boolean mDrawBackground = true;
Adam Cohenf34bab52010-09-30 14:11:56 -0700106
Michael Jurka33945b22010-12-21 18:19:38 -0800107 private Drawable mNormalBackground;
Michael Jurka33945b22010-12-21 18:19:38 -0800108 private Drawable mActiveGlowBackground;
Adam Cohenb5ba0972011-09-07 18:02:31 -0700109 private Drawable mOverScrollForegroundDrawable;
110 private Drawable mOverScrollLeft;
111 private Drawable mOverScrollRight;
Michael Jurka18014792010-10-14 09:01:34 -0700112 private Rect mBackgroundRect;
Adam Cohenb5ba0972011-09-07 18:02:31 -0700113 private Rect mForegroundRect;
Adam Cohenb5ba0972011-09-07 18:02:31 -0700114 private int mForegroundPadding;
Patrick Dubroy1262e362010-10-06 15:49:50 -0700115
Adam Cohenf0f4eda2013-06-06 21:27:03 -0700116 // These values allow a fixed measurement to be set on the CellLayout.
117 private int mFixedWidth = -1;
118 private int mFixedHeight = -1;
119
Michael Jurka33945b22010-12-21 18:19:38 -0800120 // If we're actively dragging something over this screen, mIsDragOverlapping is true
121 private boolean mIsDragOverlapping = false;
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700122
Winson Chung150fbab2010-09-29 17:14:26 -0700123 // These arrays are used to implement the drag visualization on x-large screens.
Joe Onorato4be866d2010-10-10 11:26:02 -0700124 // They are used as circular arrays, indexed by mDragOutlineCurrent.
Adam Cohen091440a2015-03-18 14:16:05 -0700125 @Thunk Rect[] mDragOutlines = new Rect[4];
126 @Thunk float[] mDragOutlineAlphas = new float[mDragOutlines.length];
Joe Onorato4be866d2010-10-10 11:26:02 -0700127 private InterruptibleInOutAnimator[] mDragOutlineAnims =
128 new InterruptibleInOutAnimator[mDragOutlines.length];
Winson Chung150fbab2010-09-29 17:14:26 -0700129
130 // Used as an index into the above 3 arrays; indicates which is the most current value.
Joe Onorato4be866d2010-10-10 11:26:02 -0700131 private int mDragOutlineCurrent = 0;
Patrick Dubroy8e58e912010-10-14 13:21:48 -0700132 private final Paint mDragOutlinePaint = new Paint();
Winson Chung150fbab2010-09-29 17:14:26 -0700133
Sunny Goyal508da152014-08-14 10:53:27 -0700134 private final FastBitmapView mTouchFeedbackView;
Patrick Dubroy96864c32011-03-10 17:17:23 -0800135
Adam Cohen091440a2015-03-18 14:16:05 -0700136 @Thunk HashMap<CellLayout.LayoutParams, Animator> mReorderAnimators = new
Adam Cohen482ed822012-03-02 14:15:13 -0800137 HashMap<CellLayout.LayoutParams, Animator>();
Adam Cohenfa3c58f2013-12-06 16:10:55 -0800138 private HashMap<View, ReorderPreviewAnimation>
139 mShakeAnimators = new HashMap<View, ReorderPreviewAnimation>();
Adam Cohen19f37922012-03-21 11:59:11 -0700140
141 private boolean mItemPlacementDirty = false;
Adam Cohenbfbfd262011-06-13 16:55:12 -0700142
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700143 // When a drag operation is in progress, holds the nearest cell to the touch point
144 private final int[] mDragCell = new int[2];
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800145
Joe Onorato4be866d2010-10-10 11:26:02 -0700146 private boolean mDragging = false;
147
Patrick Dubroyce34a972010-10-19 10:34:32 -0700148 private TimeInterpolator mEaseOutInterpolator;
Michael Jurkaa52570f2012-03-20 03:18:20 -0700149 private ShortcutAndWidgetContainer mShortcutsAndWidgets;
Patrick Dubroyce34a972010-10-19 10:34:32 -0700150
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800151 private boolean mIsHotseat = false;
Adam Cohen307fe232012-08-16 17:55:58 -0700152 private float mHotseatScale = 1f;
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800153
Adam Cohenfa3c58f2013-12-06 16:10:55 -0800154 public static final int MODE_SHOW_REORDER_HINT = 0;
155 public static final int MODE_DRAG_OVER = 1;
156 public static final int MODE_ON_DROP = 2;
157 public static final int MODE_ON_DROP_EXTERNAL = 3;
158 public static final int MODE_ACCEPT_DROP = 4;
Adam Cohen19f37922012-03-21 11:59:11 -0700159 private static final boolean DESTRUCTIVE_REORDER = false;
Adam Cohen482ed822012-03-02 14:15:13 -0800160 private static final boolean DEBUG_VISUALIZE_OCCUPIED = false;
161
Adam Cohena897f392012-04-27 18:12:05 -0700162 static final int LANDSCAPE = 0;
163 static final int PORTRAIT = 1;
164
Adam Cohenfa3c58f2013-12-06 16:10:55 -0800165 private static final float REORDER_PREVIEW_MAGNITUDE = 0.12f;
Adam Cohen19f37922012-03-21 11:59:11 -0700166 private static final int REORDER_ANIMATION_DURATION = 150;
Adam Cohen091440a2015-03-18 14:16:05 -0700167 @Thunk float mReorderPreviewAnimationMagnitude;
Adam Cohen19f37922012-03-21 11:59:11 -0700168
Adam Cohen482ed822012-03-02 14:15:13 -0800169 private ArrayList<View> mIntersectingViews = new ArrayList<View>();
170 private Rect mOccupiedRect = new Rect();
171 private int[] mDirectionVector = new int[2];
Adam Cohen19f37922012-03-21 11:59:11 -0700172 int[] mPreviousReorderDirection = new int[2];
Adam Cohenb209e632012-03-27 17:09:36 -0700173 private static final int INVALID_DIRECTION = -100;
Adam Cohenc6cc61d2012-04-04 12:47:08 -0700174 private DropTarget.DragEnforcer mDragEnforcer;
Adam Cohen482ed822012-03-02 14:15:13 -0800175
Winson Chung3a6e7f32013-10-09 15:50:52 -0700176 private Rect mTempRect = new Rect();
177
Michael Jurkaca993832012-06-29 15:17:04 -0700178 private final static Paint sPaint = new Paint();
Romain Guy8a0bff52012-05-06 13:14:33 -0700179
Adam Cohenc9735cf2015-01-23 16:11:55 -0800180 // Related to accessible drag and drop
181 DragAndDropAccessibilityDelegate mTouchHelper = new DragAndDropAccessibilityDelegate(this);
182 private boolean mUseTouchHelper = false;
183 OnClickListener mOldClickListener = null;
184 OnClickListener mOldWorkspaceListener = null;
Adam Cohen091440a2015-03-18 14:16:05 -0700185 @Thunk int mDownX = 0;
186 @Thunk int mDownY = 0;
Adam Cohenc9735cf2015-01-23 16:11:55 -0800187
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800188 public CellLayout(Context context) {
189 this(context, null);
190 }
191
192 public CellLayout(Context context, AttributeSet attrs) {
193 this(context, attrs, 0);
194 }
195
196 public CellLayout(Context context, AttributeSet attrs, int defStyle) {
197 super(context, attrs, defStyle);
Michael Jurka8b805b12012-04-18 14:23:14 -0700198 mDragEnforcer = new DropTarget.DragEnforcer(context);
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700199
200 // A ViewGroup usually does not draw, but CellLayout needs to draw a rectangle to show
201 // the user where a dragged item will land when dropped.
202 setWillNotDraw(false);
Romain Guyce3cbd12013-02-25 15:00:36 -0800203 setClipToPadding(false);
Adam Cohen2acce882012-03-28 19:03:19 -0700204 mLauncher = (Launcher) context;
Michael Jurkaa63c4522010-08-19 13:52:27 -0700205
Winson Chung892c74d2013-08-22 16:15:50 -0700206 LauncherAppState app = LauncherAppState.getInstance();
207 DeviceProfile grid = app.getDynamicGrid().getDeviceProfile();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800208 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.CellLayout, defStyle, 0);
209
Winson Chung11a1a532013-09-13 11:14:45 -0700210 mCellWidth = mCellHeight = -1;
Nilesh Agrawal5f7099a2014-01-02 15:54:57 -0800211 mFixedCellWidth = mFixedCellHeight = -1;
Winson Chung5f8afe62013-08-12 16:19:28 -0700212 mWidthGap = mOriginalWidthGap = 0;
213 mHeightGap = mOriginalHeightGap = 0;
214 mMaxGap = Integer.MAX_VALUE;
Winson Chung892c74d2013-08-22 16:15:50 -0700215 mCountX = (int) grid.numColumns;
216 mCountY = (int) grid.numRows;
Michael Jurka0280c3b2010-09-17 15:00:07 -0700217 mOccupied = new boolean[mCountX][mCountY];
Adam Cohen482ed822012-03-02 14:15:13 -0800218 mTmpOccupied = new boolean[mCountX][mCountY];
Adam Cohen5b53f292012-03-29 14:30:35 -0700219 mPreviousReorderDirection[0] = INVALID_DIRECTION;
220 mPreviousReorderDirection[1] = INVALID_DIRECTION;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800221
222 a.recycle();
223
224 setAlwaysDrawnWithCacheEnabled(false);
225
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700226 final Resources res = getResources();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700227 mHotseatScale = (float) grid.hotseatIconSizePx / grid.iconSizePx;
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700228
Adam Cohen410f3cd2013-09-22 12:09:32 -0700229 mNormalBackground = res.getDrawable(R.drawable.screenpanel);
230 mActiveGlowBackground = res.getDrawable(R.drawable.screenpanel_hover);
Michael Jurka33945b22010-12-21 18:19:38 -0800231
Adam Cohenb5ba0972011-09-07 18:02:31 -0700232 mOverScrollLeft = res.getDrawable(R.drawable.overscroll_glow_left);
233 mOverScrollRight = res.getDrawable(R.drawable.overscroll_glow_right);
234 mForegroundPadding =
235 res.getDimensionPixelSize(R.dimen.workspace_overscroll_drawable_padding);
Michael Jurka33945b22010-12-21 18:19:38 -0800236
Adam Cohenfa3c58f2013-12-06 16:10:55 -0800237 mReorderPreviewAnimationMagnitude = (REORDER_PREVIEW_MAGNITUDE *
Winson Chung5f8afe62013-08-12 16:19:28 -0700238 grid.iconSizePx);
Adam Cohen19f37922012-03-21 11:59:11 -0700239
Winson Chungb26f3d62011-06-02 10:49:29 -0700240 mNormalBackground.setFilterBitmap(true);
Winson Chungb26f3d62011-06-02 10:49:29 -0700241 mActiveGlowBackground.setFilterBitmap(true);
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700242
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700243 // Initialize the data structures used for the drag visualization.
Patrick Dubroyce34a972010-10-19 10:34:32 -0700244 mEaseOutInterpolator = new DecelerateInterpolator(2.5f); // Quint ease out
Winson Chungb8c69f32011-10-19 21:36:08 -0700245 mDragCell[0] = mDragCell[1] = -1;
Joe Onorato4be866d2010-10-10 11:26:02 -0700246 for (int i = 0; i < mDragOutlines.length; i++) {
Adam Cohend41fbf52012-02-16 23:53:59 -0800247 mDragOutlines[i] = new Rect(-1, -1, -1, -1);
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700248 }
249
250 // When dragging things around the home screens, we show a green outline of
251 // where the item will land. The outlines gradually fade out, leaving a trail
252 // behind the drag path.
253 // Set up all the animations that are used to implement this fading.
254 final int duration = res.getInteger(R.integer.config_dragOutlineFadeTime);
Chet Haase472b2812010-10-14 07:02:04 -0700255 final float fromAlphaValue = 0;
256 final float toAlphaValue = (float)res.getInteger(R.integer.config_dragOutlineMaxAlpha);
Joe Onorato4be866d2010-10-10 11:26:02 -0700257
Patrick Dubroy8e58e912010-10-14 13:21:48 -0700258 Arrays.fill(mDragOutlineAlphas, fromAlphaValue);
Joe Onorato4be866d2010-10-10 11:26:02 -0700259
260 for (int i = 0; i < mDragOutlineAnims.length; i++) {
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700261 final InterruptibleInOutAnimator anim =
Michael Jurkaf1ad6082013-03-13 12:55:46 +0100262 new InterruptibleInOutAnimator(this, duration, fromAlphaValue, toAlphaValue);
Patrick Dubroyce34a972010-10-19 10:34:32 -0700263 anim.getAnimator().setInterpolator(mEaseOutInterpolator);
Patrick Dubroy046e7eb2010-10-06 12:14:43 -0700264 final int thisIndex = i;
Chet Haase472b2812010-10-14 07:02:04 -0700265 anim.getAnimator().addUpdateListener(new AnimatorUpdateListener() {
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700266 public void onAnimationUpdate(ValueAnimator animation) {
Joe Onorato4be866d2010-10-10 11:26:02 -0700267 final Bitmap outline = (Bitmap)anim.getTag();
268
269 // If an animation is started and then stopped very quickly, we can still
270 // get spurious updates we've cleared the tag. Guard against this.
271 if (outline == null) {
Michael Jurka3a9fced2012-04-13 14:44:29 -0700272 @SuppressWarnings("all") // suppress dead code warning
273 final boolean debug = false;
274 if (debug) {
Patrick Dubroyfe6bd872010-10-13 17:32:10 -0700275 Object val = animation.getAnimatedValue();
276 Log.d(TAG, "anim " + thisIndex + " update: " + val +
277 ", isStopped " + anim.isStopped());
278 }
Joe Onorato4be866d2010-10-10 11:26:02 -0700279 // Try to prevent it from continuing to run
280 animation.cancel();
281 } else {
Chet Haase472b2812010-10-14 07:02:04 -0700282 mDragOutlineAlphas[thisIndex] = (Float) animation.getAnimatedValue();
Adam Cohend41fbf52012-02-16 23:53:59 -0800283 CellLayout.this.invalidate(mDragOutlines[thisIndex]);
Joe Onorato4be866d2010-10-10 11:26:02 -0700284 }
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700285 }
286 });
Joe Onorato4be866d2010-10-10 11:26:02 -0700287 // The animation holds a reference to the drag outline bitmap as long is it's
288 // running. This way the bitmap can be GCed when the animations are complete.
Chet Haase472b2812010-10-14 07:02:04 -0700289 anim.getAnimator().addListener(new AnimatorListenerAdapter() {
Michael Jurka3c4c20f2010-10-28 15:36:06 -0700290 @Override
Joe Onorato4be866d2010-10-10 11:26:02 -0700291 public void onAnimationEnd(Animator animation) {
Chet Haase472b2812010-10-14 07:02:04 -0700292 if ((Float) ((ValueAnimator) animation).getAnimatedValue() == 0f) {
Joe Onorato4be866d2010-10-10 11:26:02 -0700293 anim.setTag(null);
294 }
295 }
296 });
297 mDragOutlineAnims[i] = anim;
Patrick Dubroyde7658b2010-09-27 11:15:43 -0700298 }
Patrick Dubroyce34a972010-10-19 10:34:32 -0700299
Michael Jurka18014792010-10-14 09:01:34 -0700300 mBackgroundRect = new Rect();
Adam Cohenb5ba0972011-09-07 18:02:31 -0700301 mForegroundRect = new Rect();
Michael Jurkabea15192010-11-17 12:33:46 -0800302
Michael Jurkaa52570f2012-03-20 03:18:20 -0700303 mShortcutsAndWidgets = new ShortcutAndWidgetContainer(context);
Adam Cohen2374abf2013-04-16 14:56:57 -0700304 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap, mHeightGap,
Winson Chung5f8afe62013-08-12 16:19:28 -0700305 mCountX, mCountY);
Adam Cohen2374abf2013-04-16 14:56:57 -0700306
Sunny Goyal508da152014-08-14 10:53:27 -0700307 mTouchFeedbackView = new FastBitmapView(context);
308 // Make the feedback view large enough to hold the blur bitmap.
309 addView(mTouchFeedbackView, (int) (grid.cellWidthPx * 1.5), (int) (grid.cellHeightPx * 1.5));
Michael Jurkaa52570f2012-03-20 03:18:20 -0700310 addView(mShortcutsAndWidgets);
Michael Jurka18014792010-10-14 09:01:34 -0700311 }
312
Adam Cohenc9735cf2015-01-23 16:11:55 -0800313 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
314 public void enableAccessibleDrag(boolean enable) {
315 mUseTouchHelper = enable;
316 if (!enable) {
317 ViewCompat.setAccessibilityDelegate(this, null);
318 setImportantForAccessibility(IMPORTANT_FOR_ACCESSIBILITY_NO);
319 getShortcutsAndWidgets().setImportantForAccessibility(IMPORTANT_FOR_ACCESSIBILITY_NO);
320 setOnClickListener(mLauncher);
321 } else {
322 ViewCompat.setAccessibilityDelegate(this, mTouchHelper);
323 setImportantForAccessibility(IMPORTANT_FOR_ACCESSIBILITY_YES);
324 getShortcutsAndWidgets().setImportantForAccessibility(IMPORTANT_FOR_ACCESSIBILITY_YES);
325 setOnClickListener(mTouchHelper);
326 }
327
328 // Invalidate the accessibility hierarchy
329 if (getParent() != null) {
330 getParent().notifySubtreeAccessibilityStateChanged(
331 this, this, AccessibilityEvent.CONTENT_CHANGE_TYPE_SUBTREE);
332 }
333 }
334
335 @Override
336 public boolean dispatchHoverEvent(MotionEvent event) {
337 // Always attempt to dispatch hover events to accessibility first.
338 if (mUseTouchHelper && mTouchHelper.dispatchHoverEvent(event)) {
339 return true;
340 }
341 return super.dispatchHoverEvent(event);
342 }
343
344 @Override
345 public boolean dispatchTouchEvent(MotionEvent event) {
346 if (event.getAction() == MotionEvent.ACTION_DOWN) {
347 mDownX = (int) event.getX();
348 mDownY = (int) event.getY();
349 }
350 return super.dispatchTouchEvent(event);
351 }
352
353 @Override
354 public boolean onInterceptTouchEvent(MotionEvent ev) {
355 if (mUseTouchHelper ||
356 (mInterceptTouchListener != null && mInterceptTouchListener.onTouch(this, ev))) {
357 return true;
358 }
359 return false;
360 }
361
362 class DragAndDropAccessibilityDelegate extends ExploreByTouchHelper implements OnClickListener {
363 private final Rect mTempRect = new Rect();
364
365 public DragAndDropAccessibilityDelegate(View forView) {
366 super(forView);
367 }
368
369 private int getViewIdAt(float x, float y) {
370 if (x < 0 || y < 0 || x > getMeasuredWidth() || y > getMeasuredHeight()) {
371 return ExploreByTouchHelper.INVALID_ID;
372 }
373
374 // Map coords to cell
375 int cellX = (int) Math.floor(x / (mCellWidth + mWidthGap));
376 int cellY = (int) Math.floor(y / (mCellHeight + mHeightGap));
377
378 // Map cell to id
379 int id = cellX * mCountY + cellY;
380 return id;
381 }
382
383 @Override
384 protected int getVirtualViewAt(float x, float y) {
385 return nearestDropLocation(getViewIdAt(x, y));
386 }
387
388 protected int nearestDropLocation(int id) {
389 int count = mCountX * mCountY;
390 for (int delta = 0; delta < count; delta++) {
391 if (id + delta <= (count - 1)) {
392 int target = intersectsValidDropTarget(id + delta);
393 if (target >= 0) {
394 return target;
395 }
396 } else if (id - delta >= 0) {
397 int target = intersectsValidDropTarget(id - delta);
398 if (target >= 0) {
399 return target;
400 }
401 }
402 }
403 return ExploreByTouchHelper.INVALID_ID;
404 }
405
406 /**
407 * Find the virtual view id corresponding to the top left corner of any drop region by which
408 * the passed id is contained. For an icon, this is simply
409 *
410 * @param id the id we're interested examining (ie. does it fit there?)
411 * @return the view id of the top left corner of a valid drop region or -1 if there is no
412 * such valid region. For the icon, this can just be -1 or id.
413 */
414 protected int intersectsValidDropTarget(int id) {
415 LauncherAccessibilityDelegate delegate =
416 LauncherAppState.getInstance().getAccessibilityDelegate();
Winson Chung3d9490a2015-03-24 17:38:42 -0700417 if (delegate == null) {
418 return -1;
419 }
Adam Cohenc9735cf2015-01-23 16:11:55 -0800420
421 int y = id % mCountY;
422 int x = id / mCountY;
Winson Chung3d9490a2015-03-24 17:38:42 -0700423 LauncherAccessibilityDelegate.DragInfo dragInfo = delegate.getDragInfo();
Adam Cohenc9735cf2015-01-23 16:11:55 -0800424
425 if (dragInfo.dragType == DragType.WIDGET) {
426 // For a widget, every cell must be vacant. In addition, we will return any valid
427 // drop target by which the passed id is contained.
428 boolean fits = false;
429
430 // These represent the amount that we can back off if we hit a problem. They
431 // get consumed as we move up and to the right, trying new regions.
432 int spanX = dragInfo.info.spanX;
433 int spanY = dragInfo.info.spanY;
434
435 for (int m = 0; m < spanX; m++) {
436 for (int n = 0; n < spanY; n++) {
437
438 fits = true;
439 int x0 = x - m;
440 int y0 = y - n;
441
442 if (x0 < 0 || y0 < 0) continue;
443
444 for (int i = x0; i < x0 + spanX; i++) {
445 if (!fits) break;
446 for (int j = y0; j < y0 + spanY; j++) {
447 if (i >= mCountX || j >= mCountY || mOccupied[i][j]) {
448 fits = false;
449 break;
450 }
451 }
452 }
453 if (fits) {
454 return x0 * mCountY + y0;
455 }
456 }
457 }
458 return -1;
459 } else {
460 // For an icon, we simply check the view directly below
461 View child = getChildAt(x, y);
462 if (child == null || child == dragInfo.item) {
463 // Empty cell. Good for an icon or folder.
464 return id;
465 } else if (dragInfo.dragType != DragType.FOLDER) {
466 // For icons, we can consider cells that have another icon or a folder.
467 ItemInfo info = (ItemInfo) child.getTag();
468 if (info instanceof AppInfo || info instanceof FolderInfo ||
469 info instanceof ShortcutInfo) {
470 return id;
471 }
472 }
473 return -1;
474 }
475 }
476
477 @Override
478 protected void getVisibleVirtualViews(List<Integer> virtualViews) {
479 // We create a virtual view for each cell of the grid
480 // The cell ids correspond to cells in reading order.
481 int nCells = mCountX * mCountY;
482
483 for (int i = 0; i < nCells; i++) {
484 if (intersectsValidDropTarget(i) >= 0) {
485 virtualViews.add(i);
486 }
487 }
488 }
489
490 @Override
491 protected boolean onPerformActionForVirtualView(int viewId, int action, Bundle args) {
Winson Chung3d9490a2015-03-24 17:38:42 -0700492 LauncherAccessibilityDelegate delegate =
493 LauncherAppState.getInstance().getAccessibilityDelegate();
494 if (delegate == null) {
495 return false;
496 }
497
Adam Cohenc9735cf2015-01-23 16:11:55 -0800498 if (action == AccessibilityNodeInfoCompat.ACTION_CLICK) {
499 String confirmation = getConfirmationForIconDrop(viewId);
Winson Chung3d9490a2015-03-24 17:38:42 -0700500 delegate.handleAccessibleDrop(CellLayout.this, getItemBounds(viewId), confirmation);
Adam Cohenc9735cf2015-01-23 16:11:55 -0800501 return true;
502 }
503 return false;
504 }
505
506 @Override
507 public void onClick(View arg0) {
Winson Chung3d9490a2015-03-24 17:38:42 -0700508 LauncherAccessibilityDelegate delegate =
509 LauncherAppState.getInstance().getAccessibilityDelegate();
510 if (delegate == null) {
511 return;
512 }
513
Adam Cohenc9735cf2015-01-23 16:11:55 -0800514 int viewId = getViewIdAt(mDownX, mDownY);
515
516 String confirmation = getConfirmationForIconDrop(viewId);
Winson Chung3d9490a2015-03-24 17:38:42 -0700517 delegate.handleAccessibleDrop(CellLayout.this, getItemBounds(viewId), confirmation);
Adam Cohenc9735cf2015-01-23 16:11:55 -0800518 }
519
520 @Override
521 protected void onPopulateEventForVirtualView(int id, AccessibilityEvent event) {
522 if (id == ExploreByTouchHelper.INVALID_ID) {
523 throw new IllegalArgumentException("Invalid virtual view id");
524 }
525 // We're required to set something here.
526 event.setContentDescription("");
527 }
528
529 @Override
530 protected void onPopulateNodeForVirtualView(int id, AccessibilityNodeInfoCompat node) {
531 if (id == ExploreByTouchHelper.INVALID_ID) {
532 throw new IllegalArgumentException("Invalid virtual view id");
533 }
534
535 node.setContentDescription(getLocationDescriptionForIconDrop(id));
536 node.setBoundsInParent(getItemBounds(id));
537
538 node.addAction(AccessibilityNodeInfoCompat.ACTION_CLICK);
539 node.setClickable(true);
540 node.setFocusable(true);
541 }
542
543 private String getLocationDescriptionForIconDrop(int id) {
544 LauncherAccessibilityDelegate delegate =
545 LauncherAppState.getInstance().getAccessibilityDelegate();
Winson Chung3d9490a2015-03-24 17:38:42 -0700546 if (delegate == null) {
547 return "";
548 }
Adam Cohenc9735cf2015-01-23 16:11:55 -0800549
550 int y = id % mCountY;
551 int x = id / mCountY;
Winson Chung3d9490a2015-03-24 17:38:42 -0700552 LauncherAccessibilityDelegate.DragInfo dragInfo = delegate.getDragInfo();
Adam Cohenc9735cf2015-01-23 16:11:55 -0800553
554 Resources res = getContext().getResources();
555 View child = getChildAt(x, y);
556 if (child == null || child == dragInfo.item) {
Sunny Goyal1a70cef2015-04-22 11:29:51 -0700557 return res.getString(R.string.move_to_empty_cell, x + 1, y + 1);
Adam Cohenc9735cf2015-01-23 16:11:55 -0800558 } else {
559 ItemInfo info = (ItemInfo) child.getTag();
560 if (info instanceof AppInfo || info instanceof ShortcutInfo) {
561 return res.getString(R.string.create_folder_with, info.title);
562 } else if (info instanceof FolderInfo) {
563 return res.getString(R.string.add_to_folder, info.title);
564 }
565 }
566 return "";
567 }
568
569 private String getConfirmationForIconDrop(int id) {
570 LauncherAccessibilityDelegate delegate =
Winson Chung3d9490a2015-03-24 17:38:42 -0700571 LauncherAppState.getInstance().getAccessibilityDelegate();
572 if (delegate == null) {
573 return "";
574 }
Adam Cohenc9735cf2015-01-23 16:11:55 -0800575
576 int y = id % mCountY;
577 int x = id / mCountY;
Winson Chung3d9490a2015-03-24 17:38:42 -0700578 LauncherAccessibilityDelegate.DragInfo dragInfo = delegate.getDragInfo();
Adam Cohenc9735cf2015-01-23 16:11:55 -0800579
580 Resources res = getContext().getResources();
581 View child = getChildAt(x, y);
582 if (child == null || child == dragInfo.item) {
583 return res.getString(R.string.item_moved);
584 } else {
585 ItemInfo info = (ItemInfo) child.getTag();
586 if (info instanceof AppInfo || info instanceof ShortcutInfo) {
587 return res.getString(R.string.folder_created);
588
589 } else if (info instanceof FolderInfo) {
590 return res.getString(R.string.added_to_folder);
591 }
592 }
593 return "";
594 }
595
596 private Rect getItemBounds(int id) {
597 int cellY = id % mCountY;
598 int cellX = id / mCountY;
599 int x = getPaddingLeft() + (int) (cellX * (mCellWidth + mWidthGap));
600 int y = getPaddingTop() + (int) (cellY * (mCellHeight + mHeightGap));
601
602 Rect bounds = mTempRect;
603 bounds.set(x, y, x + mCellWidth, y + mCellHeight);
604 return bounds;
605 }
606 }
607
Chris Craik01f2d7f2013-10-01 14:41:56 -0700608 public void enableHardwareLayer(boolean hasLayer) {
609 mShortcutsAndWidgets.setLayerType(hasLayer ? LAYER_TYPE_HARDWARE : LAYER_TYPE_NONE, sPaint);
Michael Jurkad51f33a2012-06-28 15:35:26 -0700610 }
611
612 public void buildHardwareLayer() {
613 mShortcutsAndWidgets.buildLayer();
Adam Cohen2801caf2011-05-13 20:57:39 -0700614 }
615
Adam Cohen307fe232012-08-16 17:55:58 -0700616 public float getChildrenScale() {
617 return mIsHotseat ? mHotseatScale : 1.0f;
618 }
619
Winson Chung5f8afe62013-08-12 16:19:28 -0700620 public void setCellDimensions(int width, int height) {
Winson Chung11a1a532013-09-13 11:14:45 -0700621 mFixedCellWidth = mCellWidth = width;
622 mFixedCellHeight = mCellHeight = height;
Winson Chung5f8afe62013-08-12 16:19:28 -0700623 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap, mHeightGap,
624 mCountX, mCountY);
625 }
626
Adam Cohen2801caf2011-05-13 20:57:39 -0700627 public void setGridSize(int x, int y) {
628 mCountX = x;
629 mCountY = y;
630 mOccupied = new boolean[mCountX][mCountY];
Adam Cohen482ed822012-03-02 14:15:13 -0800631 mTmpOccupied = new boolean[mCountX][mCountY];
Adam Cohen7fbec102012-03-27 12:42:19 -0700632 mTempRectStack.clear();
Adam Cohen2374abf2013-04-16 14:56:57 -0700633 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap, mHeightGap,
Winson Chung5f8afe62013-08-12 16:19:28 -0700634 mCountX, mCountY);
Adam Cohen76fc0852011-06-17 13:26:23 -0700635 requestLayout();
Adam Cohen2801caf2011-05-13 20:57:39 -0700636 }
637
Adam Cohen2374abf2013-04-16 14:56:57 -0700638 // Set whether or not to invert the layout horizontally if the layout is in RTL mode.
639 public void setInvertIfRtl(boolean invert) {
640 mShortcutsAndWidgets.setInvertIfRtl(invert);
641 }
642
Adam Cohen917e3882013-10-31 15:03:35 -0700643 public void setDropPending(boolean pending) {
644 mDropPending = pending;
645 }
646
647 public boolean isDropPending() {
648 return mDropPending;
649 }
650
Adam Cohenb5ba0972011-09-07 18:02:31 -0700651 void setOverScrollAmount(float r, boolean left) {
652 if (left && mOverScrollForegroundDrawable != mOverScrollLeft) {
653 mOverScrollForegroundDrawable = mOverScrollLeft;
654 } else if (!left && mOverScrollForegroundDrawable != mOverScrollRight) {
655 mOverScrollForegroundDrawable = mOverScrollRight;
656 }
657
Adam Cohen02dcfcc2013-10-01 12:37:33 -0700658 r *= FOREGROUND_ALPHA_DAMPER;
Adam Cohenb5ba0972011-09-07 18:02:31 -0700659 mForegroundAlpha = (int) Math.round((r * 255));
660 mOverScrollForegroundDrawable.setAlpha(mForegroundAlpha);
661 invalidate();
662 }
663
Sunny Goyal508da152014-08-14 10:53:27 -0700664 void setPressedIcon(BubbleTextView icon, Bitmap background, int padding) {
665 if (icon == null || background == null) {
666 mTouchFeedbackView.setBitmap(null);
667 mTouchFeedbackView.animate().cancel();
668 } else {
669 int offset = getMeasuredWidth() - getPaddingLeft() - getPaddingRight()
670 - (mCountX * mCellWidth);
671 mTouchFeedbackView.setTranslationX(icon.getLeft() + (int) Math.ceil(offset / 2f)
672 - padding);
673 mTouchFeedbackView.setTranslationY(icon.getTop() - padding);
674 if (mTouchFeedbackView.setBitmap(background)) {
675 mTouchFeedbackView.setAlpha(0);
676 mTouchFeedbackView.animate().alpha(1)
677 .setDuration(FastBitmapDrawable.CLICK_FEEDBACK_DURATION)
678 .setInterpolator(FastBitmapDrawable.CLICK_FEEDBACK_INTERPOLATOR)
679 .start();
680 }
Patrick Dubroy96864c32011-03-10 17:17:23 -0800681 }
682 }
683
Winson Chung59a488a2013-12-10 12:32:14 -0800684 void disableBackground() {
685 mDrawBackground = false;
686 }
687
Adam Cohenc50438c2014-08-19 17:43:05 -0700688 void disableDragTarget() {
689 mIsDragTarget = false;
690 }
691
692 boolean isDragTarget() {
693 return mIsDragTarget;
694 }
695
696 void setIsDragOverlapping(boolean isDragOverlapping) {
697 if (mIsDragOverlapping != isDragOverlapping) {
698 mIsDragOverlapping = isDragOverlapping;
Adam Cohenc50438c2014-08-19 17:43:05 -0700699 invalidate();
700 }
701 }
702
Michael Jurka33945b22010-12-21 18:19:38 -0800703 boolean getIsDragOverlapping() {
704 return mIsDragOverlapping;
705 }
706
Jeff Sharkey83f111d2009-04-20 21:03:13 -0700707 @Override
Patrick Dubroy1262e362010-10-06 15:49:50 -0700708 protected void onDraw(Canvas canvas) {
Michael Jurka3e7c7632010-10-02 16:01:03 -0700709 // When we're large, we are either drawn in a "hover" state (ie when dragging an item to
710 // a neighboring page) or with just a normal background (if backgroundAlpha > 0.0f)
711 // When we're small, we are either drawn normally or in the "accepts drops" state (during
712 // a drag). However, we also drag the mini hover background *over* one of those two
713 // backgrounds
Winson Chung59a488a2013-12-10 12:32:14 -0800714 if (mDrawBackground && mBackgroundAlpha > 0.0f) {
Adam Cohenf34bab52010-09-30 14:11:56 -0700715 Drawable bg;
Michael Jurka33945b22010-12-21 18:19:38 -0800716
Sunny Goyalf7a29e82015-04-24 15:20:43 -0700717 if (mIsDragOverlapping) {
Michael Jurka33945b22010-12-21 18:19:38 -0800718 // In the mini case, we draw the active_glow bg *over* the active background
Michael Jurkabdf78552011-10-31 14:34:25 -0700719 bg = mActiveGlowBackground;
Adam Cohenf34bab52010-09-30 14:11:56 -0700720 } else {
Michael Jurkabdf78552011-10-31 14:34:25 -0700721 bg = mNormalBackground;
Adam Cohenf34bab52010-09-30 14:11:56 -0700722 }
Michael Jurka33945b22010-12-21 18:19:38 -0800723
724 bg.setAlpha((int) (mBackgroundAlpha * mBackgroundAlphaMultiplier * 255));
725 bg.setBounds(mBackgroundRect);
726 bg.draw(canvas);
Michael Jurkaa63c4522010-08-19 13:52:27 -0700727 }
Romain Guya6abce82009-11-10 02:54:41 -0800728
Patrick Dubroy8e58e912010-10-14 13:21:48 -0700729 final Paint paint = mDragOutlinePaint;
Joe Onorato4be866d2010-10-10 11:26:02 -0700730 for (int i = 0; i < mDragOutlines.length; i++) {
Chet Haase472b2812010-10-14 07:02:04 -0700731 final float alpha = mDragOutlineAlphas[i];
Joe Onorato4be866d2010-10-10 11:26:02 -0700732 if (alpha > 0) {
Adam Cohend41fbf52012-02-16 23:53:59 -0800733 final Rect r = mDragOutlines[i];
Winson Chung3a6e7f32013-10-09 15:50:52 -0700734 mTempRect.set(r);
735 Utilities.scaleRectAboutCenter(mTempRect, getChildrenScale());
Joe Onorato4be866d2010-10-10 11:26:02 -0700736 final Bitmap b = (Bitmap) mDragOutlineAnims[i].getTag();
Chet Haase472b2812010-10-14 07:02:04 -0700737 paint.setAlpha((int)(alpha + .5f));
Winson Chung3a6e7f32013-10-09 15:50:52 -0700738 canvas.drawBitmap(b, null, mTempRect, paint);
Winson Chung150fbab2010-09-29 17:14:26 -0700739 }
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700740 }
Patrick Dubroy96864c32011-03-10 17:17:23 -0800741
Adam Cohen482ed822012-03-02 14:15:13 -0800742 if (DEBUG_VISUALIZE_OCCUPIED) {
743 int[] pt = new int[2];
744 ColorDrawable cd = new ColorDrawable(Color.RED);
Adam Cohene7587d22012-05-24 18:50:02 -0700745 cd.setBounds(0, 0, mCellWidth, mCellHeight);
Adam Cohen482ed822012-03-02 14:15:13 -0800746 for (int i = 0; i < mCountX; i++) {
747 for (int j = 0; j < mCountY; j++) {
748 if (mOccupied[i][j]) {
749 cellToPoint(i, j, pt);
750 canvas.save();
751 canvas.translate(pt[0], pt[1]);
752 cd.draw(canvas);
753 canvas.restore();
754 }
755 }
756 }
757 }
758
Andrew Flynn850d2e72012-04-26 16:51:20 -0700759 int previewOffset = FolderRingAnimator.sPreviewSize;
760
Adam Cohen69ce2e52011-07-03 19:25:21 -0700761 // The folder outer / inner ring image(s)
Winson Chung5f8afe62013-08-12 16:19:28 -0700762 LauncherAppState app = LauncherAppState.getInstance();
763 DeviceProfile grid = app.getDynamicGrid().getDeviceProfile();
Adam Cohen69ce2e52011-07-03 19:25:21 -0700764 for (int i = 0; i < mFolderOuterRings.size(); i++) {
765 FolderRingAnimator fra = mFolderOuterRings.get(i);
766
Adam Cohen5108bc02013-09-20 17:04:51 -0700767 Drawable d;
768 int width, height;
Adam Cohen69ce2e52011-07-03 19:25:21 -0700769 cellToPoint(fra.mCellX, fra.mCellY, mTempLocation);
Winson Chung5f8afe62013-08-12 16:19:28 -0700770 View child = getChildAt(fra.mCellX, fra.mCellY);
Adam Cohen558f1c22013-10-09 15:15:24 -0700771
Winson Chung89f97052013-09-20 11:32:26 -0700772 if (child != null) {
Adam Cohen558f1c22013-10-09 15:15:24 -0700773 int centerX = mTempLocation[0] + mCellWidth / 2;
774 int centerY = mTempLocation[1] + previewOffset / 2 +
775 child.getPaddingTop() + grid.folderBackgroundOffset;
776
Adam Cohen5108bc02013-09-20 17:04:51 -0700777 // Draw outer ring, if it exists
778 if (FolderIcon.HAS_OUTER_RING) {
779 d = FolderRingAnimator.sSharedOuterRingDrawable;
780 width = (int) (fra.getOuterRingSize() * getChildrenScale());
781 height = width;
782 canvas.save();
783 canvas.translate(centerX - width / 2, centerY - height / 2);
784 d.setBounds(0, 0, width, height);
785 d.draw(canvas);
786 canvas.restore();
787 }
Adam Cohen69ce2e52011-07-03 19:25:21 -0700788
Winson Chung89f97052013-09-20 11:32:26 -0700789 // Draw inner ring
790 d = FolderRingAnimator.sSharedInnerRingDrawable;
791 width = (int) (fra.getInnerRingSize() * getChildrenScale());
792 height = width;
Winson Chung89f97052013-09-20 11:32:26 -0700793 canvas.save();
794 canvas.translate(centerX - width / 2, centerY - width / 2);
795 d.setBounds(0, 0, width, height);
796 d.draw(canvas);
797 canvas.restore();
798 }
Adam Cohen69ce2e52011-07-03 19:25:21 -0700799 }
Adam Cohenc51934b2011-07-26 21:07:43 -0700800
801 if (mFolderLeaveBehindCell[0] >= 0 && mFolderLeaveBehindCell[1] >= 0) {
802 Drawable d = FolderIcon.sSharedFolderLeaveBehind;
803 int width = d.getIntrinsicWidth();
804 int height = d.getIntrinsicHeight();
805
806 cellToPoint(mFolderLeaveBehindCell[0], mFolderLeaveBehindCell[1], mTempLocation);
Winson Chung5f8afe62013-08-12 16:19:28 -0700807 View child = getChildAt(mFolderLeaveBehindCell[0], mFolderLeaveBehindCell[1]);
Winson Chung89f97052013-09-20 11:32:26 -0700808 if (child != null) {
809 int centerX = mTempLocation[0] + mCellWidth / 2;
810 int centerY = mTempLocation[1] + previewOffset / 2 +
811 child.getPaddingTop() + grid.folderBackgroundOffset;
Adam Cohenc51934b2011-07-26 21:07:43 -0700812
Winson Chung89f97052013-09-20 11:32:26 -0700813 canvas.save();
814 canvas.translate(centerX - width / 2, centerY - width / 2);
815 d.setBounds(0, 0, width, height);
816 d.draw(canvas);
817 canvas.restore();
818 }
Adam Cohenc51934b2011-07-26 21:07:43 -0700819 }
Adam Cohen69ce2e52011-07-03 19:25:21 -0700820 }
821
Adam Cohenb5ba0972011-09-07 18:02:31 -0700822 @Override
823 protected void dispatchDraw(Canvas canvas) {
824 super.dispatchDraw(canvas);
825 if (mForegroundAlpha > 0) {
826 mOverScrollForegroundDrawable.setBounds(mForegroundRect);
Adam Cohenb5ba0972011-09-07 18:02:31 -0700827 mOverScrollForegroundDrawable.draw(canvas);
Adam Cohenb5ba0972011-09-07 18:02:31 -0700828 }
829 }
830
Adam Cohen69ce2e52011-07-03 19:25:21 -0700831 public void showFolderAccept(FolderRingAnimator fra) {
832 mFolderOuterRings.add(fra);
833 }
834
835 public void hideFolderAccept(FolderRingAnimator fra) {
836 if (mFolderOuterRings.contains(fra)) {
837 mFolderOuterRings.remove(fra);
838 }
839 invalidate();
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700840 }
841
Adam Cohenc51934b2011-07-26 21:07:43 -0700842 public void setFolderLeaveBehindCell(int x, int y) {
843 mFolderLeaveBehindCell[0] = x;
844 mFolderLeaveBehindCell[1] = y;
845 invalidate();
846 }
847
848 public void clearFolderLeaveBehind() {
849 mFolderLeaveBehindCell[0] = -1;
850 mFolderLeaveBehindCell[1] = -1;
851 invalidate();
852 }
853
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700854 @Override
Michael Jurkae6235dd2011-10-04 15:02:05 -0700855 public boolean shouldDelayChildPressedState() {
856 return false;
857 }
858
Adam Cohen1462de32012-07-24 22:34:36 -0700859 public void restoreInstanceState(SparseArray<Parcelable> states) {
Sunny Goyal33a152f2014-07-22 12:13:14 -0700860 try {
861 dispatchRestoreInstanceState(states);
862 } catch (IllegalArgumentException ex) {
863 if (LauncherAppState.isDogfoodBuild()) {
864 throw ex;
865 }
866 // Mismatched viewId / viewType preventing restore. Skip restore on production builds.
867 Log.e(TAG, "Ignoring an error while restoring a view instance state", ex);
868 }
Adam Cohen1462de32012-07-24 22:34:36 -0700869 }
870
Michael Jurkae6235dd2011-10-04 15:02:05 -0700871 @Override
Jeff Sharkey83f111d2009-04-20 21:03:13 -0700872 public void cancelLongPress() {
873 super.cancelLongPress();
874
875 // Cancel long press for all children
876 final int count = getChildCount();
877 for (int i = 0; i < count; i++) {
878 final View child = getChildAt(i);
879 child.cancelLongPress();
880 }
881 }
882
Michael Jurkadee05892010-07-27 10:01:56 -0700883 public void setOnInterceptTouchListener(View.OnTouchListener listener) {
884 mInterceptTouchListener = listener;
885 }
886
Hyunyoung Songee3e6a72015-02-20 14:25:27 -0800887 public int getCountX() {
Adam Cohend22015c2010-07-26 22:02:18 -0700888 return mCountX;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800889 }
890
Hyunyoung Songee3e6a72015-02-20 14:25:27 -0800891 public int getCountY() {
Adam Cohend22015c2010-07-26 22:02:18 -0700892 return mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800893 }
894
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800895 public void setIsHotseat(boolean isHotseat) {
896 mIsHotseat = isHotseat;
Winson Chung5f8afe62013-08-12 16:19:28 -0700897 mShortcutsAndWidgets.setIsHotseat(isHotseat);
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800898 }
899
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800900 public boolean addViewToCellLayout(View child, int index, int childId, LayoutParams params,
Sunny Goyalf7a29e82015-04-24 15:20:43 -0700901 boolean markCells) {
Winson Chungaafa03c2010-06-11 17:34:16 -0700902 final LayoutParams lp = params;
903
Andrew Flynnde38e422012-05-08 11:22:15 -0700904 // Hotseat icons - remove text
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800905 if (child instanceof BubbleTextView) {
906 BubbleTextView bubbleChild = (BubbleTextView) child;
Winson Chung5f8afe62013-08-12 16:19:28 -0700907 bubbleChild.setTextVisibility(!mIsHotseat);
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800908 }
909
Adam Cohen307fe232012-08-16 17:55:58 -0700910 child.setScaleX(getChildrenScale());
911 child.setScaleY(getChildrenScale());
912
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800913 // Generate an id for each view, this assumes we have at most 256x256 cells
914 // per workspace screen
Adam Cohend22015c2010-07-26 22:02:18 -0700915 if (lp.cellX >= 0 && lp.cellX <= mCountX - 1 && lp.cellY >= 0 && lp.cellY <= mCountY - 1) {
Winson Chungaafa03c2010-06-11 17:34:16 -0700916 // If the horizontal or vertical span is set to -1, it is taken to
917 // mean that it spans the extent of the CellLayout
Adam Cohend22015c2010-07-26 22:02:18 -0700918 if (lp.cellHSpan < 0) lp.cellHSpan = mCountX;
919 if (lp.cellVSpan < 0) lp.cellVSpan = mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800920
Winson Chungaafa03c2010-06-11 17:34:16 -0700921 child.setId(childId);
Sunny Goyalf7a29e82015-04-24 15:20:43 -0700922 mShortcutsAndWidgets.addView(child, index, lp);
Michael Jurkadee05892010-07-27 10:01:56 -0700923
Michael Jurkaf3ca3ab2010-10-20 17:08:24 -0700924 if (markCells) markCellsAsOccupiedForView(child);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700925
Winson Chungaafa03c2010-06-11 17:34:16 -0700926 return true;
927 }
928 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800929 }
Michael Jurka3e7c7632010-10-02 16:01:03 -0700930
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800931 @Override
Michael Jurka0280c3b2010-09-17 15:00:07 -0700932 public void removeAllViews() {
933 clearOccupiedCells();
Michael Jurkaa52570f2012-03-20 03:18:20 -0700934 mShortcutsAndWidgets.removeAllViews();
Michael Jurka0280c3b2010-09-17 15:00:07 -0700935 }
936
937 @Override
938 public void removeAllViewsInLayout() {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700939 if (mShortcutsAndWidgets.getChildCount() > 0) {
Michael Jurka7cfc2822011-08-02 20:19:24 -0700940 clearOccupiedCells();
Michael Jurkaa52570f2012-03-20 03:18:20 -0700941 mShortcutsAndWidgets.removeAllViewsInLayout();
Michael Jurka7cfc2822011-08-02 20:19:24 -0700942 }
Michael Jurka0280c3b2010-09-17 15:00:07 -0700943 }
944
945 @Override
946 public void removeView(View view) {
947 markCellsAsUnoccupiedForView(view);
Michael Jurkaa52570f2012-03-20 03:18:20 -0700948 mShortcutsAndWidgets.removeView(view);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700949 }
950
951 @Override
952 public void removeViewAt(int index) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700953 markCellsAsUnoccupiedForView(mShortcutsAndWidgets.getChildAt(index));
954 mShortcutsAndWidgets.removeViewAt(index);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700955 }
956
957 @Override
958 public void removeViewInLayout(View view) {
959 markCellsAsUnoccupiedForView(view);
Michael Jurkaa52570f2012-03-20 03:18:20 -0700960 mShortcutsAndWidgets.removeViewInLayout(view);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700961 }
962
963 @Override
964 public void removeViews(int start, int count) {
965 for (int i = start; i < start + count; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700966 markCellsAsUnoccupiedForView(mShortcutsAndWidgets.getChildAt(i));
Michael Jurka0280c3b2010-09-17 15:00:07 -0700967 }
Michael Jurkaa52570f2012-03-20 03:18:20 -0700968 mShortcutsAndWidgets.removeViews(start, count);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700969 }
970
971 @Override
972 public void removeViewsInLayout(int start, int count) {
973 for (int i = start; i < start + count; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -0700974 markCellsAsUnoccupiedForView(mShortcutsAndWidgets.getChildAt(i));
Michael Jurka0280c3b2010-09-17 15:00:07 -0700975 }
Michael Jurkaa52570f2012-03-20 03:18:20 -0700976 mShortcutsAndWidgets.removeViewsInLayout(start, count);
Michael Jurkaabded662011-03-04 12:06:57 -0800977 }
978
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700979 /**
Winson Chungaafa03c2010-06-11 17:34:16 -0700980 * Given a point, return the cell that strictly encloses that point
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800981 * @param x X coordinate of the point
982 * @param y Y coordinate of the point
983 * @param result Array of 2 ints to hold the x and y coordinate of the cell
984 */
985 void pointToCellExact(int x, int y, int[] result) {
Winson Chung4b825dcd2011-06-19 12:41:22 -0700986 final int hStartPadding = getPaddingLeft();
987 final int vStartPadding = getPaddingTop();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800988
989 result[0] = (x - hStartPadding) / (mCellWidth + mWidthGap);
990 result[1] = (y - vStartPadding) / (mCellHeight + mHeightGap);
991
Adam Cohend22015c2010-07-26 22:02:18 -0700992 final int xAxis = mCountX;
993 final int yAxis = mCountY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800994
995 if (result[0] < 0) result[0] = 0;
996 if (result[0] >= xAxis) result[0] = xAxis - 1;
997 if (result[1] < 0) result[1] = 0;
998 if (result[1] >= yAxis) result[1] = yAxis - 1;
999 }
Winson Chungaafa03c2010-06-11 17:34:16 -07001000
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001001 /**
1002 * Given a point, return the cell that most closely encloses that point
1003 * @param x X coordinate of the point
1004 * @param y Y coordinate of the point
1005 * @param result Array of 2 ints to hold the x and y coordinate of the cell
1006 */
1007 void pointToCellRounded(int x, int y, int[] result) {
1008 pointToCellExact(x + (mCellWidth / 2), y + (mCellHeight / 2), result);
1009 }
1010
1011 /**
1012 * Given a cell coordinate, return the point that represents the upper left corner of that cell
Winson Chungaafa03c2010-06-11 17:34:16 -07001013 *
1014 * @param cellX X coordinate of the cell
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001015 * @param cellY Y coordinate of the cell
Winson Chungaafa03c2010-06-11 17:34:16 -07001016 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001017 * @param result Array of 2 ints to hold the x and y coordinate of the point
1018 */
1019 void cellToPoint(int cellX, int cellY, int[] result) {
Winson Chung4b825dcd2011-06-19 12:41:22 -07001020 final int hStartPadding = getPaddingLeft();
1021 final int vStartPadding = getPaddingTop();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001022
1023 result[0] = hStartPadding + cellX * (mCellWidth + mWidthGap);
1024 result[1] = vStartPadding + cellY * (mCellHeight + mHeightGap);
1025 }
1026
Adam Cohene3e27a82011-04-15 12:07:39 -07001027 /**
Adam Cohen482ed822012-03-02 14:15:13 -08001028 * Given a cell coordinate, return the point that represents the center of the cell
Adam Cohene3e27a82011-04-15 12:07:39 -07001029 *
1030 * @param cellX X coordinate of the cell
1031 * @param cellY Y coordinate of the cell
1032 *
1033 * @param result Array of 2 ints to hold the x and y coordinate of the point
1034 */
1035 void cellToCenterPoint(int cellX, int cellY, int[] result) {
Adam Cohen47a876d2012-03-19 13:21:41 -07001036 regionToCenterPoint(cellX, cellY, 1, 1, result);
1037 }
1038
1039 /**
1040 * Given a cell coordinate and span return the point that represents the center of the regio
1041 *
1042 * @param cellX X coordinate of the cell
1043 * @param cellY Y coordinate of the cell
1044 *
1045 * @param result Array of 2 ints to hold the x and y coordinate of the point
1046 */
1047 void regionToCenterPoint(int cellX, int cellY, int spanX, int spanY, int[] result) {
Winson Chung4b825dcd2011-06-19 12:41:22 -07001048 final int hStartPadding = getPaddingLeft();
1049 final int vStartPadding = getPaddingTop();
Adam Cohen47a876d2012-03-19 13:21:41 -07001050 result[0] = hStartPadding + cellX * (mCellWidth + mWidthGap) +
1051 (spanX * mCellWidth + (spanX - 1) * mWidthGap) / 2;
1052 result[1] = vStartPadding + cellY * (mCellHeight + mHeightGap) +
1053 (spanY * mCellHeight + (spanY - 1) * mHeightGap) / 2;
Adam Cohene3e27a82011-04-15 12:07:39 -07001054 }
1055
Adam Cohen19f37922012-03-21 11:59:11 -07001056 /**
1057 * Given a cell coordinate and span fills out a corresponding pixel rect
1058 *
1059 * @param cellX X coordinate of the cell
1060 * @param cellY Y coordinate of the cell
1061 * @param result Rect in which to write the result
1062 */
1063 void regionToRect(int cellX, int cellY, int spanX, int spanY, Rect result) {
1064 final int hStartPadding = getPaddingLeft();
1065 final int vStartPadding = getPaddingTop();
1066 final int left = hStartPadding + cellX * (mCellWidth + mWidthGap);
1067 final int top = vStartPadding + cellY * (mCellHeight + mHeightGap);
1068 result.set(left, top, left + (spanX * mCellWidth + (spanX - 1) * mWidthGap),
1069 top + (spanY * mCellHeight + (spanY - 1) * mHeightGap));
1070 }
1071
Adam Cohen482ed822012-03-02 14:15:13 -08001072 public float getDistanceFromCell(float x, float y, int[] cell) {
1073 cellToCenterPoint(cell[0], cell[1], mTmpPoint);
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001074 return (float) Math.hypot(x - mTmpPoint[0], y - mTmpPoint[1]);
Adam Cohen482ed822012-03-02 14:15:13 -08001075 }
1076
Romain Guy84f296c2009-11-04 15:00:44 -08001077 int getCellWidth() {
1078 return mCellWidth;
1079 }
1080
1081 int getCellHeight() {
1082 return mCellHeight;
1083 }
1084
Adam Cohend4844c32011-02-18 19:25:06 -08001085 int getWidthGap() {
1086 return mWidthGap;
1087 }
1088
1089 int getHeightGap() {
1090 return mHeightGap;
1091 }
1092
Adam Cohenf0f4eda2013-06-06 21:27:03 -07001093 public void setFixedSize(int width, int height) {
1094 mFixedWidth = width;
1095 mFixedHeight = height;
1096 }
1097
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001098 @Override
1099 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
Winson Chung5f8afe62013-08-12 16:19:28 -07001100 LauncherAppState app = LauncherAppState.getInstance();
1101 DeviceProfile grid = app.getDynamicGrid().getDeviceProfile();
1102
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001103 int widthSpecMode = MeasureSpec.getMode(widthMeasureSpec);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001104 int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec);
Winson Chung5f8afe62013-08-12 16:19:28 -07001105 int widthSize = MeasureSpec.getSize(widthMeasureSpec);
1106 int heightSize = MeasureSpec.getSize(heightMeasureSpec);
Winson Chung2d75f122013-09-23 16:53:31 -07001107 int childWidthSize = widthSize - (getPaddingLeft() + getPaddingRight());
1108 int childHeightSize = heightSize - (getPaddingTop() + getPaddingBottom());
Winson Chung11a1a532013-09-13 11:14:45 -07001109 if (mFixedCellWidth < 0 || mFixedCellHeight < 0) {
Winson Chung2d75f122013-09-23 16:53:31 -07001110 int cw = grid.calculateCellWidth(childWidthSize, mCountX);
1111 int ch = grid.calculateCellHeight(childHeightSize, mCountY);
Winson Chung11a1a532013-09-13 11:14:45 -07001112 if (cw != mCellWidth || ch != mCellHeight) {
1113 mCellWidth = cw;
1114 mCellHeight = ch;
1115 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap,
1116 mHeightGap, mCountX, mCountY);
1117 }
Winson Chung5f8afe62013-08-12 16:19:28 -07001118 }
Winson Chungaafa03c2010-06-11 17:34:16 -07001119
Winson Chung2d75f122013-09-23 16:53:31 -07001120 int newWidth = childWidthSize;
1121 int newHeight = childHeightSize;
Adam Cohenf0f4eda2013-06-06 21:27:03 -07001122 if (mFixedWidth > 0 && mFixedHeight > 0) {
1123 newWidth = mFixedWidth;
1124 newHeight = mFixedHeight;
1125 } else if (widthSpecMode == MeasureSpec.UNSPECIFIED || heightSpecMode == MeasureSpec.UNSPECIFIED) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001126 throw new RuntimeException("CellLayout cannot have UNSPECIFIED dimensions");
1127 }
1128
Adam Cohend22015c2010-07-26 22:02:18 -07001129 int numWidthGaps = mCountX - 1;
1130 int numHeightGaps = mCountY - 1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001131
Adam Cohen234c4cd2011-07-17 21:03:04 -07001132 if (mOriginalWidthGap < 0 || mOriginalHeightGap < 0) {
Winson Chung2d75f122013-09-23 16:53:31 -07001133 int hSpace = childWidthSize;
1134 int vSpace = childHeightSize;
Adam Cohenf4bd5792012-04-27 11:35:29 -07001135 int hFreeSpace = hSpace - (mCountX * mCellWidth);
1136 int vFreeSpace = vSpace - (mCountY * mCellHeight);
Winson Chung4b825dcd2011-06-19 12:41:22 -07001137 mWidthGap = Math.min(mMaxGap, numWidthGaps > 0 ? (hFreeSpace / numWidthGaps) : 0);
1138 mHeightGap = Math.min(mMaxGap,numHeightGaps > 0 ? (vFreeSpace / numHeightGaps) : 0);
Winson Chung5f8afe62013-08-12 16:19:28 -07001139 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap,
1140 mHeightGap, mCountX, mCountY);
Adam Cohen234c4cd2011-07-17 21:03:04 -07001141 } else {
1142 mWidthGap = mOriginalWidthGap;
1143 mHeightGap = mOriginalHeightGap;
Winson Chungece7f5b2010-10-22 14:54:12 -07001144 }
Michael Jurka8c920dd2011-01-20 14:16:56 -08001145 int count = getChildCount();
Winson Chung5f8afe62013-08-12 16:19:28 -07001146 int maxWidth = 0;
1147 int maxHeight = 0;
Michael Jurka8c920dd2011-01-20 14:16:56 -08001148 for (int i = 0; i < count; i++) {
1149 View child = getChildAt(i);
Winson Chung2d75f122013-09-23 16:53:31 -07001150 int childWidthMeasureSpec = MeasureSpec.makeMeasureSpec(newWidth,
1151 MeasureSpec.EXACTLY);
1152 int childheightMeasureSpec = MeasureSpec.makeMeasureSpec(newHeight,
1153 MeasureSpec.EXACTLY);
Michael Jurka8c920dd2011-01-20 14:16:56 -08001154 child.measure(childWidthMeasureSpec, childheightMeasureSpec);
Winson Chung5f8afe62013-08-12 16:19:28 -07001155 maxWidth = Math.max(maxWidth, child.getMeasuredWidth());
1156 maxHeight = Math.max(maxHeight, child.getMeasuredHeight());
Michael Jurka8c920dd2011-01-20 14:16:56 -08001157 }
Winson Chung2d75f122013-09-23 16:53:31 -07001158 if (mFixedWidth > 0 && mFixedHeight > 0) {
1159 setMeasuredDimension(maxWidth, maxHeight);
1160 } else {
1161 setMeasuredDimension(widthSize, heightSize);
1162 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001163 }
1164
1165 @Override
Michael Jurka28750fb2010-09-24 17:43:49 -07001166 protected void onLayout(boolean changed, int l, int t, int r, int b) {
Winson Chung38848ca2013-10-08 12:03:44 -07001167 int offset = getMeasuredWidth() - getPaddingLeft() - getPaddingRight() -
1168 (mCountX * mCellWidth);
1169 int left = getPaddingLeft() + (int) Math.ceil(offset / 2f);
1170 int top = getPaddingTop();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001171 int count = getChildCount();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001172 for (int i = 0; i < count; i++) {
Michael Jurka8c920dd2011-01-20 14:16:56 -08001173 View child = getChildAt(i);
Winson Chung2d75f122013-09-23 16:53:31 -07001174 child.layout(left, top,
1175 left + r - l,
1176 top + b - t);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001177 }
1178 }
1179
1180 @Override
Michael Jurkadee05892010-07-27 10:01:56 -07001181 protected void onSizeChanged(int w, int h, int oldw, int oldh) {
1182 super.onSizeChanged(w, h, oldw, oldh);
Winson Chung82a9bd22013-10-08 16:02:34 -07001183
1184 // Expand the background drawing bounds by the padding baked into the background drawable
1185 Rect padding = new Rect();
1186 mNormalBackground.getPadding(padding);
1187 mBackgroundRect.set(-padding.left, -padding.top, w + padding.right, h + padding.bottom);
1188
Adam Cohenb5ba0972011-09-07 18:02:31 -07001189 mForegroundRect.set(mForegroundPadding, mForegroundPadding,
Adam Cohen215b4162012-08-30 13:14:08 -07001190 w - mForegroundPadding, h - mForegroundPadding);
Michael Jurkadee05892010-07-27 10:01:56 -07001191 }
1192
1193 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001194 protected void setChildrenDrawingCacheEnabled(boolean enabled) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07001195 mShortcutsAndWidgets.setChildrenDrawingCacheEnabled(enabled);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001196 }
1197
1198 @Override
1199 protected void setChildrenDrawnWithCacheEnabled(boolean enabled) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07001200 mShortcutsAndWidgets.setChildrenDrawnWithCacheEnabled(enabled);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001201 }
1202
Michael Jurka5f1c5092010-09-03 14:15:02 -07001203 public float getBackgroundAlpha() {
1204 return mBackgroundAlpha;
Michael Jurkadee05892010-07-27 10:01:56 -07001205 }
1206
Adam Cohen1b0aaac2010-10-28 11:11:18 -07001207 public void setBackgroundAlphaMultiplier(float multiplier) {
Michael Jurkaa3d30ad2012-05-08 13:43:43 -07001208 if (mBackgroundAlphaMultiplier != multiplier) {
1209 mBackgroundAlphaMultiplier = multiplier;
1210 invalidate();
1211 }
Adam Cohen1b0aaac2010-10-28 11:11:18 -07001212 }
1213
Adam Cohenddb82192010-11-10 16:32:54 -08001214 public float getBackgroundAlphaMultiplier() {
1215 return mBackgroundAlphaMultiplier;
1216 }
1217
Michael Jurka5f1c5092010-09-03 14:15:02 -07001218 public void setBackgroundAlpha(float alpha) {
Michael Jurkaafaa0502011-12-13 18:22:50 -08001219 if (mBackgroundAlpha != alpha) {
1220 mBackgroundAlpha = alpha;
1221 invalidate();
1222 }
Michael Jurkadee05892010-07-27 10:01:56 -07001223 }
1224
Michael Jurkaa52570f2012-03-20 03:18:20 -07001225 public void setShortcutAndWidgetAlpha(float alpha) {
Sunny Goyal02b50812014-09-10 15:44:42 -07001226 mShortcutsAndWidgets.setAlpha(alpha);
Michael Jurkadee05892010-07-27 10:01:56 -07001227 }
1228
Michael Jurkaa52570f2012-03-20 03:18:20 -07001229 public ShortcutAndWidgetContainer getShortcutsAndWidgets() {
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001230 return mShortcutsAndWidgets;
Michael Jurkaa52570f2012-03-20 03:18:20 -07001231 }
1232
Patrick Dubroy440c3602010-07-13 17:50:32 -07001233 public View getChildAt(int x, int y) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07001234 return mShortcutsAndWidgets.getChildAt(x, y);
Patrick Dubroy440c3602010-07-13 17:50:32 -07001235 }
1236
Adam Cohen76fc0852011-06-17 13:26:23 -07001237 public boolean animateChildToPosition(final View child, int cellX, int cellY, int duration,
Adam Cohen482ed822012-03-02 14:15:13 -08001238 int delay, boolean permanent, boolean adjustOccupied) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07001239 ShortcutAndWidgetContainer clc = getShortcutsAndWidgets();
Adam Cohen482ed822012-03-02 14:15:13 -08001240 boolean[][] occupied = mOccupied;
1241 if (!permanent) {
1242 occupied = mTmpOccupied;
1243 }
1244
Adam Cohen19f37922012-03-21 11:59:11 -07001245 if (clc.indexOfChild(child) != -1) {
Adam Cohenbfbfd262011-06-13 16:55:12 -07001246 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
1247 final ItemInfo info = (ItemInfo) child.getTag();
1248
1249 // We cancel any existing animations
1250 if (mReorderAnimators.containsKey(lp)) {
1251 mReorderAnimators.get(lp).cancel();
1252 mReorderAnimators.remove(lp);
1253 }
1254
Adam Cohen482ed822012-03-02 14:15:13 -08001255 final int oldX = lp.x;
1256 final int oldY = lp.y;
1257 if (adjustOccupied) {
1258 occupied[lp.cellX][lp.cellY] = false;
1259 occupied[cellX][cellY] = true;
1260 }
Adam Cohenbfbfd262011-06-13 16:55:12 -07001261 lp.isLockedToGrid = true;
Adam Cohen482ed822012-03-02 14:15:13 -08001262 if (permanent) {
1263 lp.cellX = info.cellX = cellX;
1264 lp.cellY = info.cellY = cellY;
1265 } else {
1266 lp.tmpCellX = cellX;
1267 lp.tmpCellY = cellY;
1268 }
Adam Cohenbfbfd262011-06-13 16:55:12 -07001269 clc.setupLp(lp);
1270 lp.isLockedToGrid = false;
Adam Cohen482ed822012-03-02 14:15:13 -08001271 final int newX = lp.x;
1272 final int newY = lp.y;
Adam Cohenbfbfd262011-06-13 16:55:12 -07001273
Adam Cohen76fc0852011-06-17 13:26:23 -07001274 lp.x = oldX;
1275 lp.y = oldY;
Adam Cohen76fc0852011-06-17 13:26:23 -07001276
Adam Cohen482ed822012-03-02 14:15:13 -08001277 // Exit early if we're not actually moving the view
1278 if (oldX == newX && oldY == newY) {
1279 lp.isLockedToGrid = true;
1280 return true;
1281 }
1282
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001283 ValueAnimator va = LauncherAnimUtils.ofFloat(child, 0f, 1f);
Adam Cohen482ed822012-03-02 14:15:13 -08001284 va.setDuration(duration);
1285 mReorderAnimators.put(lp, va);
1286
1287 va.addUpdateListener(new AnimatorUpdateListener() {
1288 @Override
Adam Cohenbfbfd262011-06-13 16:55:12 -07001289 public void onAnimationUpdate(ValueAnimator animation) {
Adam Cohen482ed822012-03-02 14:15:13 -08001290 float r = ((Float) animation.getAnimatedValue()).floatValue();
Adam Cohen19f37922012-03-21 11:59:11 -07001291 lp.x = (int) ((1 - r) * oldX + r * newX);
1292 lp.y = (int) ((1 - r) * oldY + r * newY);
Adam Cohen6b8a02d2012-03-22 15:13:40 -07001293 child.requestLayout();
Adam Cohenbfbfd262011-06-13 16:55:12 -07001294 }
1295 });
Adam Cohen482ed822012-03-02 14:15:13 -08001296 va.addListener(new AnimatorListenerAdapter() {
Adam Cohenbfbfd262011-06-13 16:55:12 -07001297 boolean cancelled = false;
1298 public void onAnimationEnd(Animator animation) {
1299 // If the animation was cancelled, it means that another animation
1300 // has interrupted this one, and we don't want to lock the item into
1301 // place just yet.
1302 if (!cancelled) {
1303 lp.isLockedToGrid = true;
Adam Cohen482ed822012-03-02 14:15:13 -08001304 child.requestLayout();
Adam Cohenbfbfd262011-06-13 16:55:12 -07001305 }
1306 if (mReorderAnimators.containsKey(lp)) {
1307 mReorderAnimators.remove(lp);
1308 }
1309 }
1310 public void onAnimationCancel(Animator animation) {
1311 cancelled = true;
1312 }
1313 });
Adam Cohen482ed822012-03-02 14:15:13 -08001314 va.setStartDelay(delay);
1315 va.start();
Adam Cohenbfbfd262011-06-13 16:55:12 -07001316 return true;
1317 }
1318 return false;
1319 }
1320
Adam Cohen482ed822012-03-02 14:15:13 -08001321 void visualizeDropLocation(View v, Bitmap dragOutline, int originX, int originY, int cellX,
1322 int cellY, int spanX, int spanY, boolean resize, Point dragOffset, Rect dragRegion) {
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07001323 final int oldDragCellX = mDragCell[0];
1324 final int oldDragCellY = mDragCell[1];
Adam Cohen482ed822012-03-02 14:15:13 -08001325
Adam Cohen2801caf2011-05-13 20:57:39 -07001326 if (dragOutline == null && v == null) {
Adam Cohen2801caf2011-05-13 20:57:39 -07001327 return;
1328 }
1329
Adam Cohen482ed822012-03-02 14:15:13 -08001330 if (cellX != oldDragCellX || cellY != oldDragCellY) {
1331 mDragCell[0] = cellX;
1332 mDragCell[1] = cellY;
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07001333 // Find the top left corner of the rect the object will occupy
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001334 final int[] topLeft = mTmpPoint;
Adam Cohen482ed822012-03-02 14:15:13 -08001335 cellToPoint(cellX, cellY, topLeft);
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001336
Joe Onorato4be866d2010-10-10 11:26:02 -07001337 int left = topLeft[0];
1338 int top = topLeft[1];
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07001339
Winson Chungb8c69f32011-10-19 21:36:08 -07001340 if (v != null && dragOffset == null) {
Adam Cohen99e8b402011-03-25 19:23:43 -07001341 // When drawing the drag outline, it did not account for margin offsets
1342 // added by the view's parent.
1343 MarginLayoutParams lp = (MarginLayoutParams) v.getLayoutParams();
1344 left += lp.leftMargin;
1345 top += lp.topMargin;
Winson Chung150fbab2010-09-29 17:14:26 -07001346
Adam Cohen99e8b402011-03-25 19:23:43 -07001347 // Offsets due to the size difference between the View and the dragOutline.
1348 // There is a size difference to account for the outer blur, which may lie
1349 // outside the bounds of the view.
Winson Chunga9abd0e2010-10-27 17:18:37 -07001350 top += (v.getHeight() - dragOutline.getHeight()) / 2;
Adam Cohenae915ce2011-08-25 13:47:22 -07001351 // We center about the x axis
1352 left += ((mCellWidth * spanX) + ((spanX - 1) * mWidthGap)
1353 - dragOutline.getWidth()) / 2;
Adam Cohen66396872011-04-15 17:50:36 -07001354 } else {
Winson Chungb8c69f32011-10-19 21:36:08 -07001355 if (dragOffset != null && dragRegion != null) {
1356 // Center the drag region *horizontally* in the cell and apply a drag
1357 // outline offset
1358 left += dragOffset.x + ((mCellWidth * spanX) + ((spanX - 1) * mWidthGap)
1359 - dragRegion.width()) / 2;
Winson Chung69737c32013-10-08 17:00:19 -07001360 int cHeight = getShortcutsAndWidgets().getCellContentHeight();
1361 int cellPaddingY = (int) Math.max(0, ((mCellHeight - cHeight) / 2f));
1362 top += dragOffset.y + cellPaddingY;
Winson Chungb8c69f32011-10-19 21:36:08 -07001363 } else {
1364 // Center the drag outline in the cell
1365 left += ((mCellWidth * spanX) + ((spanX - 1) * mWidthGap)
1366 - dragOutline.getWidth()) / 2;
1367 top += ((mCellHeight * spanY) + ((spanY - 1) * mHeightGap)
1368 - dragOutline.getHeight()) / 2;
1369 }
Winson Chunga9abd0e2010-10-27 17:18:37 -07001370 }
Joe Onorato4be866d2010-10-10 11:26:02 -07001371 final int oldIndex = mDragOutlineCurrent;
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07001372 mDragOutlineAnims[oldIndex].animateOut();
1373 mDragOutlineCurrent = (oldIndex + 1) % mDragOutlines.length;
Adam Cohend41fbf52012-02-16 23:53:59 -08001374 Rect r = mDragOutlines[mDragOutlineCurrent];
1375 r.set(left, top, left + dragOutline.getWidth(), top + dragOutline.getHeight());
1376 if (resize) {
Adam Cohen482ed822012-03-02 14:15:13 -08001377 cellToRect(cellX, cellY, spanX, spanY, r);
Adam Cohend41fbf52012-02-16 23:53:59 -08001378 }
Winson Chung150fbab2010-09-29 17:14:26 -07001379
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07001380 mDragOutlineAnims[mDragOutlineCurrent].setTag(dragOutline);
1381 mDragOutlineAnims[mDragOutlineCurrent].animateIn();
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07001382 }
1383 }
1384
Adam Cohene0310962011-04-18 16:15:31 -07001385 public void clearDragOutlines() {
1386 final int oldIndex = mDragOutlineCurrent;
1387 mDragOutlineAnims[oldIndex].animateOut();
Adam Cohend41fbf52012-02-16 23:53:59 -08001388 mDragCell[0] = mDragCell[1] = -1;
Adam Cohene0310962011-04-18 16:15:31 -07001389 }
1390
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001391 /**
Jeff Sharkey70864282009-04-07 21:08:40 -07001392 * Find a vacant area that will fit the given bounds nearest the requested
1393 * cell location. Uses Euclidean distance to score multiple vacant areas.
Winson Chungaafa03c2010-06-11 17:34:16 -07001394 *
Romain Guy51afc022009-05-04 18:03:43 -07001395 * @param pixelX The X location at which you want to search for a vacant area.
1396 * @param pixelY The Y location at which you want to search for a vacant area.
Jeff Sharkey70864282009-04-07 21:08:40 -07001397 * @param spanX Horizontal span of the object.
1398 * @param spanY Vertical span of the object.
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001399 * @param result Array in which to place the result, or null (in which case a new array will
1400 * be allocated)
Jeff Sharkey70864282009-04-07 21:08:40 -07001401 * @return The X, Y cell of a vacant area that can contain this object,
1402 * nearest the requested location.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001403 */
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001404 int[] findNearestVacantArea(int pixelX, int pixelY, int spanX, int spanY, int[] result) {
1405 return findNearestVacantArea(pixelX, pixelY, spanX, spanY, spanX, spanY, result, null);
Michael Jurka6a1435d2010-09-27 17:35:12 -07001406 }
Winson Chungaafa03c2010-06-11 17:34:16 -07001407
Michael Jurka6a1435d2010-09-27 17:35:12 -07001408 /**
1409 * Find a vacant area that will fit the given bounds nearest the requested
1410 * cell location. Uses Euclidean distance to score multiple vacant areas.
1411 *
1412 * @param pixelX The X location at which you want to search for a vacant area.
1413 * @param pixelY The Y location at which you want to search for a vacant area.
Adam Cohend41fbf52012-02-16 23:53:59 -08001414 * @param minSpanX The minimum horizontal span required
1415 * @param minSpanY The minimum vertical span required
1416 * @param spanX Horizontal span of the object.
1417 * @param spanY Vertical span of the object.
1418 * @param result Array in which to place the result, or null (in which case a new array will
1419 * be allocated)
1420 * @return The X, Y cell of a vacant area that can contain this object,
1421 * nearest the requested location.
1422 */
1423 int[] findNearestVacantArea(int pixelX, int pixelY, int minSpanX, int minSpanY, int spanX,
1424 int spanY, int[] result, int[] resultSpan) {
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001425 return findNearestArea(pixelX, pixelY, minSpanX, minSpanY, spanX, spanY, true,
Adam Cohend41fbf52012-02-16 23:53:59 -08001426 result, resultSpan);
1427 }
1428
Adam Cohend41fbf52012-02-16 23:53:59 -08001429 private final Stack<Rect> mTempRectStack = new Stack<Rect>();
1430 private void lazyInitTempRectStack() {
1431 if (mTempRectStack.isEmpty()) {
1432 for (int i = 0; i < mCountX * mCountY; i++) {
1433 mTempRectStack.push(new Rect());
1434 }
1435 }
1436 }
Adam Cohen482ed822012-03-02 14:15:13 -08001437
Adam Cohend41fbf52012-02-16 23:53:59 -08001438 private void recycleTempRects(Stack<Rect> used) {
1439 while (!used.isEmpty()) {
1440 mTempRectStack.push(used.pop());
1441 }
1442 }
1443
1444 /**
1445 * Find a vacant area that will fit the given bounds nearest the requested
1446 * cell location. Uses Euclidean distance to score multiple vacant areas.
1447 *
1448 * @param pixelX The X location at which you want to search for a vacant area.
1449 * @param pixelY The Y location at which you want to search for a vacant area.
1450 * @param minSpanX The minimum horizontal span required
1451 * @param minSpanY The minimum vertical span required
1452 * @param spanX Horizontal span of the object.
1453 * @param spanY Vertical span of the object.
1454 * @param ignoreOccupied If true, the result can be an occupied cell
1455 * @param result Array in which to place the result, or null (in which case a new array will
1456 * be allocated)
1457 * @return The X, Y cell of a vacant area that can contain this object,
1458 * nearest the requested location.
1459 */
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001460 private int[] findNearestArea(int pixelX, int pixelY, int minSpanX, int minSpanY, int spanX,
1461 int spanY, boolean ignoreOccupied, int[] result, int[] resultSpan) {
Adam Cohend41fbf52012-02-16 23:53:59 -08001462 lazyInitTempRectStack();
Michael Jurkac6ee42e2010-09-30 12:04:50 -07001463
Adam Cohene3e27a82011-04-15 12:07:39 -07001464 // For items with a spanX / spanY > 1, the passed in point (pixelX, pixelY) corresponds
1465 // to the center of the item, but we are searching based on the top-left cell, so
1466 // we translate the point over to correspond to the top-left.
1467 pixelX -= (mCellWidth + mWidthGap) * (spanX - 1) / 2f;
1468 pixelY -= (mCellHeight + mHeightGap) * (spanY - 1) / 2f;
1469
Jeff Sharkey70864282009-04-07 21:08:40 -07001470 // Keep track of best-scoring drop area
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001471 final int[] bestXY = result != null ? result : new int[2];
Jeff Sharkey70864282009-04-07 21:08:40 -07001472 double bestDistance = Double.MAX_VALUE;
Adam Cohend41fbf52012-02-16 23:53:59 -08001473 final Rect bestRect = new Rect(-1, -1, -1, -1);
1474 final Stack<Rect> validRegions = new Stack<Rect>();
Winson Chungaafa03c2010-06-11 17:34:16 -07001475
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001476 final int countX = mCountX;
1477 final int countY = mCountY;
Patrick Dubroyde7658b2010-09-27 11:15:43 -07001478
Adam Cohend41fbf52012-02-16 23:53:59 -08001479 if (minSpanX <= 0 || minSpanY <= 0 || spanX <= 0 || spanY <= 0 ||
1480 spanX < minSpanX || spanY < minSpanY) {
1481 return bestXY;
1482 }
1483
1484 for (int y = 0; y < countY - (minSpanY - 1); y++) {
Michael Jurkac28de512010-08-13 11:27:44 -07001485 inner:
Adam Cohend41fbf52012-02-16 23:53:59 -08001486 for (int x = 0; x < countX - (minSpanX - 1); x++) {
1487 int ySize = -1;
1488 int xSize = -1;
Adam Cohendf035382011-04-11 17:22:04 -07001489 if (ignoreOccupied) {
Adam Cohend41fbf52012-02-16 23:53:59 -08001490 // First, let's see if this thing fits anywhere
1491 for (int i = 0; i < minSpanX; i++) {
1492 for (int j = 0; j < minSpanY; j++) {
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001493 if (mOccupied[x + i][y + j]) {
Adam Cohendf035382011-04-11 17:22:04 -07001494 continue inner;
1495 }
Michael Jurkac28de512010-08-13 11:27:44 -07001496 }
1497 }
Adam Cohend41fbf52012-02-16 23:53:59 -08001498 xSize = minSpanX;
1499 ySize = minSpanY;
1500
1501 // We know that the item will fit at _some_ acceptable size, now let's see
1502 // how big we can make it. We'll alternate between incrementing x and y spans
1503 // until we hit a limit.
1504 boolean incX = true;
1505 boolean hitMaxX = xSize >= spanX;
1506 boolean hitMaxY = ySize >= spanY;
1507 while (!(hitMaxX && hitMaxY)) {
1508 if (incX && !hitMaxX) {
1509 for (int j = 0; j < ySize; j++) {
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001510 if (x + xSize > countX -1 || mOccupied[x + xSize][y + j]) {
Adam Cohend41fbf52012-02-16 23:53:59 -08001511 // We can't move out horizontally
1512 hitMaxX = true;
1513 }
1514 }
1515 if (!hitMaxX) {
1516 xSize++;
1517 }
1518 } else if (!hitMaxY) {
1519 for (int i = 0; i < xSize; i++) {
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001520 if (y + ySize > countY - 1 || mOccupied[x + i][y + ySize]) {
Adam Cohend41fbf52012-02-16 23:53:59 -08001521 // We can't move out vertically
1522 hitMaxY = true;
1523 }
1524 }
1525 if (!hitMaxY) {
1526 ySize++;
1527 }
1528 }
1529 hitMaxX |= xSize >= spanX;
1530 hitMaxY |= ySize >= spanY;
1531 incX = !incX;
1532 }
1533 incX = true;
1534 hitMaxX = xSize >= spanX;
1535 hitMaxY = ySize >= spanY;
Michael Jurkac28de512010-08-13 11:27:44 -07001536 }
Winson Chung0be025d2011-05-23 17:45:09 -07001537 final int[] cellXY = mTmpXY;
Adam Cohene3e27a82011-04-15 12:07:39 -07001538 cellToCenterPoint(x, y, cellXY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001539
Adam Cohend41fbf52012-02-16 23:53:59 -08001540 // We verify that the current rect is not a sub-rect of any of our previous
1541 // candidates. In this case, the current rect is disqualified in favour of the
1542 // containing rect.
1543 Rect currentRect = mTempRectStack.pop();
1544 currentRect.set(x, y, x + xSize, y + ySize);
1545 boolean contained = false;
1546 for (Rect r : validRegions) {
1547 if (r.contains(currentRect)) {
1548 contained = true;
1549 break;
1550 }
1551 }
1552 validRegions.push(currentRect);
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001553 double distance = Math.hypot(cellXY[0] - pixelX, cellXY[1] - pixelY);
Adam Cohen482ed822012-03-02 14:15:13 -08001554
Adam Cohend41fbf52012-02-16 23:53:59 -08001555 if ((distance <= bestDistance && !contained) ||
1556 currentRect.contains(bestRect)) {
Michael Jurkac28de512010-08-13 11:27:44 -07001557 bestDistance = distance;
1558 bestXY[0] = x;
1559 bestXY[1] = y;
Adam Cohend41fbf52012-02-16 23:53:59 -08001560 if (resultSpan != null) {
1561 resultSpan[0] = xSize;
1562 resultSpan[1] = ySize;
1563 }
1564 bestRect.set(currentRect);
Michael Jurkac28de512010-08-13 11:27:44 -07001565 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001566 }
1567 }
1568
Adam Cohenc0dcf592011-06-01 15:30:43 -07001569 // Return -1, -1 if no suitable location found
1570 if (bestDistance == Double.MAX_VALUE) {
1571 bestXY[0] = -1;
1572 bestXY[1] = -1;
Jeff Sharkey70864282009-04-07 21:08:40 -07001573 }
Adam Cohend41fbf52012-02-16 23:53:59 -08001574 recycleTempRects(validRegions);
Adam Cohenc0dcf592011-06-01 15:30:43 -07001575 return bestXY;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001576 }
Winson Chungaafa03c2010-06-11 17:34:16 -07001577
Adam Cohen482ed822012-03-02 14:15:13 -08001578 /**
1579 * Find a vacant area that will fit the given bounds nearest the requested
1580 * cell location, and will also weigh in a suggested direction vector of the
1581 * desired location. This method computers distance based on unit grid distances,
1582 * not pixel distances.
1583 *
Adam Cohen47a876d2012-03-19 13:21:41 -07001584 * @param cellX The X cell nearest to which you want to search for a vacant area.
1585 * @param cellY The Y cell nearest which you want to search for a vacant area.
Adam Cohen482ed822012-03-02 14:15:13 -08001586 * @param spanX Horizontal span of the object.
1587 * @param spanY Vertical span of the object.
Adam Cohen47a876d2012-03-19 13:21:41 -07001588 * @param direction The favored direction in which the views should move from x, y
1589 * @param exactDirectionOnly If this parameter is true, then only solutions where the direction
1590 * matches exactly. Otherwise we find the best matching direction.
1591 * @param occoupied The array which represents which cells in the CellLayout are occupied
1592 * @param blockOccupied The array which represents which cells in the specified block (cellX,
Winson Chung5f8afe62013-08-12 16:19:28 -07001593 * cellY, spanX, spanY) are occupied. This is used when try to move a group of views.
Adam Cohen482ed822012-03-02 14:15:13 -08001594 * @param result Array in which to place the result, or null (in which case a new array will
1595 * be allocated)
1596 * @return The X, Y cell of a vacant area that can contain this object,
1597 * nearest the requested location.
1598 */
1599 private int[] findNearestArea(int cellX, int cellY, int spanX, int spanY, int[] direction,
Adam Cohen47a876d2012-03-19 13:21:41 -07001600 boolean[][] occupied, boolean blockOccupied[][], int[] result) {
Adam Cohen482ed822012-03-02 14:15:13 -08001601 // Keep track of best-scoring drop area
1602 final int[] bestXY = result != null ? result : new int[2];
1603 float bestDistance = Float.MAX_VALUE;
1604 int bestDirectionScore = Integer.MIN_VALUE;
1605
1606 final int countX = mCountX;
1607 final int countY = mCountY;
1608
1609 for (int y = 0; y < countY - (spanY - 1); y++) {
1610 inner:
1611 for (int x = 0; x < countX - (spanX - 1); x++) {
1612 // First, let's see if this thing fits anywhere
1613 for (int i = 0; i < spanX; i++) {
1614 for (int j = 0; j < spanY; j++) {
Adam Cohen47a876d2012-03-19 13:21:41 -07001615 if (occupied[x + i][y + j] && (blockOccupied == null || blockOccupied[i][j])) {
Adam Cohen482ed822012-03-02 14:15:13 -08001616 continue inner;
1617 }
1618 }
1619 }
1620
Sunny Goyalf7a29e82015-04-24 15:20:43 -07001621 float distance = (float) Math.hypot(x - cellX, y - cellY);
Adam Cohen482ed822012-03-02 14:15:13 -08001622 int[] curDirection = mTmpPoint;
Adam Cohen47a876d2012-03-19 13:21:41 -07001623 computeDirectionVector(x - cellX, y - cellY, curDirection);
1624 // The direction score is just the dot product of the two candidate direction
1625 // and that passed in.
Adam Cohen482ed822012-03-02 14:15:13 -08001626 int curDirectionScore = direction[0] * curDirection[0] +
1627 direction[1] * curDirection[1];
Adam Cohen47a876d2012-03-19 13:21:41 -07001628 boolean exactDirectionOnly = false;
1629 boolean directionMatches = direction[0] == curDirection[0] &&
1630 direction[0] == curDirection[0];
1631 if ((directionMatches || !exactDirectionOnly) &&
1632 Float.compare(distance, bestDistance) < 0 || (Float.compare(distance,
Adam Cohen482ed822012-03-02 14:15:13 -08001633 bestDistance) == 0 && curDirectionScore > bestDirectionScore)) {
1634 bestDistance = distance;
1635 bestDirectionScore = curDirectionScore;
1636 bestXY[0] = x;
1637 bestXY[1] = y;
1638 }
1639 }
1640 }
1641
1642 // Return -1, -1 if no suitable location found
1643 if (bestDistance == Float.MAX_VALUE) {
1644 bestXY[0] = -1;
1645 bestXY[1] = -1;
1646 }
1647 return bestXY;
1648 }
1649
1650 private boolean addViewToTempLocation(View v, Rect rectOccupiedByPotentialDrop,
Adam Cohen8baab352012-03-20 17:39:21 -07001651 int[] direction, ItemConfiguration currentState) {
1652 CellAndSpan c = currentState.map.get(v);
Adam Cohen482ed822012-03-02 14:15:13 -08001653 boolean success = false;
Adam Cohen8baab352012-03-20 17:39:21 -07001654 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, false);
Adam Cohen482ed822012-03-02 14:15:13 -08001655 markCellsForRect(rectOccupiedByPotentialDrop, mTmpOccupied, true);
1656
Adam Cohen8baab352012-03-20 17:39:21 -07001657 findNearestArea(c.x, c.y, c.spanX, c.spanY, direction, mTmpOccupied, null, mTempLocation);
Adam Cohen482ed822012-03-02 14:15:13 -08001658
1659 if (mTempLocation[0] >= 0 && mTempLocation[1] >= 0) {
Adam Cohen8baab352012-03-20 17:39:21 -07001660 c.x = mTempLocation[0];
1661 c.y = mTempLocation[1];
Adam Cohen482ed822012-03-02 14:15:13 -08001662 success = true;
Adam Cohen482ed822012-03-02 14:15:13 -08001663 }
Adam Cohen8baab352012-03-20 17:39:21 -07001664 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, true);
Adam Cohen482ed822012-03-02 14:15:13 -08001665 return success;
1666 }
1667
Adam Cohenf3900c22012-11-16 18:28:11 -08001668 /**
1669 * This helper class defines a cluster of views. It helps with defining complex edges
1670 * of the cluster and determining how those edges interact with other views. The edges
1671 * essentially define a fine-grained boundary around the cluster of views -- like a more
1672 * precise version of a bounding box.
1673 */
1674 private class ViewCluster {
1675 final static int LEFT = 0;
1676 final static int TOP = 1;
1677 final static int RIGHT = 2;
1678 final static int BOTTOM = 3;
Adam Cohen47a876d2012-03-19 13:21:41 -07001679
Adam Cohenf3900c22012-11-16 18:28:11 -08001680 ArrayList<View> views;
1681 ItemConfiguration config;
1682 Rect boundingRect = new Rect();
Adam Cohen47a876d2012-03-19 13:21:41 -07001683
Adam Cohenf3900c22012-11-16 18:28:11 -08001684 int[] leftEdge = new int[mCountY];
1685 int[] rightEdge = new int[mCountY];
1686 int[] topEdge = new int[mCountX];
1687 int[] bottomEdge = new int[mCountX];
1688 boolean leftEdgeDirty, rightEdgeDirty, topEdgeDirty, bottomEdgeDirty, boundingRectDirty;
1689
1690 @SuppressWarnings("unchecked")
1691 public ViewCluster(ArrayList<View> views, ItemConfiguration config) {
1692 this.views = (ArrayList<View>) views.clone();
1693 this.config = config;
1694 resetEdges();
Adam Cohen47a876d2012-03-19 13:21:41 -07001695 }
1696
Adam Cohenf3900c22012-11-16 18:28:11 -08001697 void resetEdges() {
1698 for (int i = 0; i < mCountX; i++) {
1699 topEdge[i] = -1;
1700 bottomEdge[i] = -1;
1701 }
1702 for (int i = 0; i < mCountY; i++) {
1703 leftEdge[i] = -1;
1704 rightEdge[i] = -1;
1705 }
1706 leftEdgeDirty = true;
1707 rightEdgeDirty = true;
1708 bottomEdgeDirty = true;
1709 topEdgeDirty = true;
1710 boundingRectDirty = true;
1711 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001712
Adam Cohenf3900c22012-11-16 18:28:11 -08001713 void computeEdge(int which, int[] edge) {
1714 int count = views.size();
1715 for (int i = 0; i < count; i++) {
1716 CellAndSpan cs = config.map.get(views.get(i));
1717 switch (which) {
1718 case LEFT:
1719 int left = cs.x;
1720 for (int j = cs.y; j < cs.y + cs.spanY; j++) {
1721 if (left < edge[j] || edge[j] < 0) {
1722 edge[j] = left;
Adam Cohena56dc102012-07-13 13:41:42 -07001723 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001724 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001725 break;
1726 case RIGHT:
1727 int right = cs.x + cs.spanX;
1728 for (int j = cs.y; j < cs.y + cs.spanY; j++) {
1729 if (right > edge[j]) {
1730 edge[j] = right;
1731 }
1732 }
1733 break;
1734 case TOP:
1735 int top = cs.y;
1736 for (int j = cs.x; j < cs.x + cs.spanX; j++) {
1737 if (top < edge[j] || edge[j] < 0) {
1738 edge[j] = top;
1739 }
1740 }
1741 break;
1742 case BOTTOM:
1743 int bottom = cs.y + cs.spanY;
1744 for (int j = cs.x; j < cs.x + cs.spanX; j++) {
1745 if (bottom > edge[j]) {
1746 edge[j] = bottom;
1747 }
1748 }
1749 break;
Adam Cohen47a876d2012-03-19 13:21:41 -07001750 }
1751 }
1752 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001753
1754 boolean isViewTouchingEdge(View v, int whichEdge) {
1755 CellAndSpan cs = config.map.get(v);
1756
1757 int[] edge = getEdge(whichEdge);
1758
1759 switch (whichEdge) {
1760 case LEFT:
1761 for (int i = cs.y; i < cs.y + cs.spanY; i++) {
1762 if (edge[i] == cs.x + cs.spanX) {
1763 return true;
1764 }
1765 }
1766 break;
1767 case RIGHT:
1768 for (int i = cs.y; i < cs.y + cs.spanY; i++) {
1769 if (edge[i] == cs.x) {
1770 return true;
1771 }
1772 }
1773 break;
1774 case TOP:
1775 for (int i = cs.x; i < cs.x + cs.spanX; i++) {
1776 if (edge[i] == cs.y + cs.spanY) {
1777 return true;
1778 }
1779 }
1780 break;
1781 case BOTTOM:
1782 for (int i = cs.x; i < cs.x + cs.spanX; i++) {
1783 if (edge[i] == cs.y) {
1784 return true;
1785 }
1786 }
1787 break;
1788 }
1789 return false;
1790 }
1791
1792 void shift(int whichEdge, int delta) {
1793 for (View v: views) {
1794 CellAndSpan c = config.map.get(v);
1795 switch (whichEdge) {
1796 case LEFT:
1797 c.x -= delta;
1798 break;
1799 case RIGHT:
1800 c.x += delta;
1801 break;
1802 case TOP:
1803 c.y -= delta;
1804 break;
1805 case BOTTOM:
1806 default:
1807 c.y += delta;
1808 break;
1809 }
1810 }
1811 resetEdges();
1812 }
1813
1814 public void addView(View v) {
1815 views.add(v);
1816 resetEdges();
1817 }
1818
1819 public Rect getBoundingRect() {
1820 if (boundingRectDirty) {
1821 boolean first = true;
1822 for (View v: views) {
1823 CellAndSpan c = config.map.get(v);
1824 if (first) {
1825 boundingRect.set(c.x, c.y, c.x + c.spanX, c.y + c.spanY);
1826 first = false;
1827 } else {
1828 boundingRect.union(c.x, c.y, c.x + c.spanX, c.y + c.spanY);
1829 }
1830 }
1831 }
1832 return boundingRect;
1833 }
1834
1835 public int[] getEdge(int which) {
1836 switch (which) {
1837 case LEFT:
1838 return getLeftEdge();
1839 case RIGHT:
1840 return getRightEdge();
1841 case TOP:
1842 return getTopEdge();
1843 case BOTTOM:
1844 default:
1845 return getBottomEdge();
1846 }
1847 }
1848
1849 public int[] getLeftEdge() {
1850 if (leftEdgeDirty) {
1851 computeEdge(LEFT, leftEdge);
1852 }
1853 return leftEdge;
1854 }
1855
1856 public int[] getRightEdge() {
1857 if (rightEdgeDirty) {
1858 computeEdge(RIGHT, rightEdge);
1859 }
1860 return rightEdge;
1861 }
1862
1863 public int[] getTopEdge() {
1864 if (topEdgeDirty) {
1865 computeEdge(TOP, topEdge);
1866 }
1867 return topEdge;
1868 }
1869
1870 public int[] getBottomEdge() {
1871 if (bottomEdgeDirty) {
1872 computeEdge(BOTTOM, bottomEdge);
1873 }
1874 return bottomEdge;
1875 }
1876
1877 PositionComparator comparator = new PositionComparator();
1878 class PositionComparator implements Comparator<View> {
1879 int whichEdge = 0;
1880 public int compare(View left, View right) {
1881 CellAndSpan l = config.map.get(left);
1882 CellAndSpan r = config.map.get(right);
1883 switch (whichEdge) {
1884 case LEFT:
1885 return (r.x + r.spanX) - (l.x + l.spanX);
1886 case RIGHT:
1887 return l.x - r.x;
1888 case TOP:
1889 return (r.y + r.spanY) - (l.y + l.spanY);
1890 case BOTTOM:
1891 default:
1892 return l.y - r.y;
1893 }
1894 }
1895 }
1896
1897 public void sortConfigurationForEdgePush(int edge) {
1898 comparator.whichEdge = edge;
1899 Collections.sort(config.sortedViews, comparator);
1900 }
Adam Cohen47a876d2012-03-19 13:21:41 -07001901 }
1902
Adam Cohenf3900c22012-11-16 18:28:11 -08001903 private boolean pushViewsToTempLocation(ArrayList<View> views, Rect rectOccupiedByPotentialDrop,
1904 int[] direction, View dragView, ItemConfiguration currentState) {
Adam Cohene0489502012-08-27 15:18:53 -07001905
Adam Cohenf3900c22012-11-16 18:28:11 -08001906 ViewCluster cluster = new ViewCluster(views, currentState);
1907 Rect clusterRect = cluster.getBoundingRect();
1908 int whichEdge;
1909 int pushDistance;
1910 boolean fail = false;
1911
1912 // Determine the edge of the cluster that will be leading the push and how far
1913 // the cluster must be shifted.
1914 if (direction[0] < 0) {
1915 whichEdge = ViewCluster.LEFT;
1916 pushDistance = clusterRect.right - rectOccupiedByPotentialDrop.left;
Adam Cohene0489502012-08-27 15:18:53 -07001917 } else if (direction[0] > 0) {
Adam Cohenf3900c22012-11-16 18:28:11 -08001918 whichEdge = ViewCluster.RIGHT;
1919 pushDistance = rectOccupiedByPotentialDrop.right - clusterRect.left;
1920 } else if (direction[1] < 0) {
1921 whichEdge = ViewCluster.TOP;
1922 pushDistance = clusterRect.bottom - rectOccupiedByPotentialDrop.top;
1923 } else {
1924 whichEdge = ViewCluster.BOTTOM;
1925 pushDistance = rectOccupiedByPotentialDrop.bottom - clusterRect.top;
Adam Cohene0489502012-08-27 15:18:53 -07001926 }
1927
Adam Cohenf3900c22012-11-16 18:28:11 -08001928 // Break early for invalid push distance.
1929 if (pushDistance <= 0) {
1930 return false;
Adam Cohene0489502012-08-27 15:18:53 -07001931 }
Adam Cohenf3900c22012-11-16 18:28:11 -08001932
1933 // Mark the occupied state as false for the group of views we want to move.
1934 for (View v: views) {
1935 CellAndSpan c = currentState.map.get(v);
1936 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, false);
1937 }
1938
1939 // We save the current configuration -- if we fail to find a solution we will revert
1940 // to the initial state. The process of finding a solution modifies the configuration
1941 // in place, hence the need for revert in the failure case.
1942 currentState.save();
1943
1944 // The pushing algorithm is simplified by considering the views in the order in which
1945 // they would be pushed by the cluster. For example, if the cluster is leading with its
1946 // left edge, we consider sort the views by their right edge, from right to left.
1947 cluster.sortConfigurationForEdgePush(whichEdge);
1948
1949 while (pushDistance > 0 && !fail) {
1950 for (View v: currentState.sortedViews) {
1951 // For each view that isn't in the cluster, we see if the leading edge of the
1952 // cluster is contacting the edge of that view. If so, we add that view to the
1953 // cluster.
1954 if (!cluster.views.contains(v) && v != dragView) {
1955 if (cluster.isViewTouchingEdge(v, whichEdge)) {
1956 LayoutParams lp = (LayoutParams) v.getLayoutParams();
1957 if (!lp.canReorder) {
1958 // The push solution includes the all apps button, this is not viable.
1959 fail = true;
1960 break;
1961 }
1962 cluster.addView(v);
1963 CellAndSpan c = currentState.map.get(v);
1964
1965 // Adding view to cluster, mark it as not occupied.
1966 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, false);
1967 }
1968 }
1969 }
1970 pushDistance--;
1971
1972 // The cluster has been completed, now we move the whole thing over in the appropriate
1973 // direction.
1974 cluster.shift(whichEdge, 1);
1975 }
1976
1977 boolean foundSolution = false;
1978 clusterRect = cluster.getBoundingRect();
1979
1980 // Due to the nature of the algorithm, the only check required to verify a valid solution
1981 // is to ensure that completed shifted cluster lies completely within the cell layout.
1982 if (!fail && clusterRect.left >= 0 && clusterRect.right <= mCountX && clusterRect.top >= 0 &&
1983 clusterRect.bottom <= mCountY) {
1984 foundSolution = true;
1985 } else {
1986 currentState.restore();
1987 }
1988
1989 // In either case, we set the occupied array as marked for the location of the views
1990 for (View v: cluster.views) {
1991 CellAndSpan c = currentState.map.get(v);
1992 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, true);
1993 }
1994
1995 return foundSolution;
Adam Cohene0489502012-08-27 15:18:53 -07001996 }
1997
Adam Cohen482ed822012-03-02 14:15:13 -08001998 private boolean addViewsToTempLocation(ArrayList<View> views, Rect rectOccupiedByPotentialDrop,
Adam Cohenf3900c22012-11-16 18:28:11 -08001999 int[] direction, View dragView, ItemConfiguration currentState) {
Adam Cohen482ed822012-03-02 14:15:13 -08002000 if (views.size() == 0) return true;
Adam Cohen482ed822012-03-02 14:15:13 -08002001
Adam Cohen8baab352012-03-20 17:39:21 -07002002 boolean success = false;
Adam Cohen482ed822012-03-02 14:15:13 -08002003 Rect boundingRect = null;
Adam Cohen8baab352012-03-20 17:39:21 -07002004 // We construct a rect which represents the entire group of views passed in
Adam Cohen482ed822012-03-02 14:15:13 -08002005 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07002006 CellAndSpan c = currentState.map.get(v);
Adam Cohen482ed822012-03-02 14:15:13 -08002007 if (boundingRect == null) {
Adam Cohen8baab352012-03-20 17:39:21 -07002008 boundingRect = new Rect(c.x, c.y, c.x + c.spanX, c.y + c.spanY);
Adam Cohen482ed822012-03-02 14:15:13 -08002009 } else {
Adam Cohen8baab352012-03-20 17:39:21 -07002010 boundingRect.union(c.x, c.y, c.x + c.spanX, c.y + c.spanY);
Adam Cohen482ed822012-03-02 14:15:13 -08002011 }
2012 }
Adam Cohen8baab352012-03-20 17:39:21 -07002013
Adam Cohen8baab352012-03-20 17:39:21 -07002014 // Mark the occupied state as false for the group of views we want to move.
Adam Cohenf3900c22012-11-16 18:28:11 -08002015 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07002016 CellAndSpan c = currentState.map.get(v);
2017 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, false);
2018 }
2019
Adam Cohen47a876d2012-03-19 13:21:41 -07002020 boolean[][] blockOccupied = new boolean[boundingRect.width()][boundingRect.height()];
2021 int top = boundingRect.top;
2022 int left = boundingRect.left;
Adam Cohen8baab352012-03-20 17:39:21 -07002023 // We mark more precisely which parts of the bounding rect are truly occupied, allowing
Adam Cohena56dc102012-07-13 13:41:42 -07002024 // for interlocking.
Adam Cohenf3900c22012-11-16 18:28:11 -08002025 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07002026 CellAndSpan c = currentState.map.get(v);
2027 markCellsForView(c.x - left, c.y - top, c.spanX, c.spanY, blockOccupied, true);
Adam Cohen47a876d2012-03-19 13:21:41 -07002028 }
2029
Adam Cohen482ed822012-03-02 14:15:13 -08002030 markCellsForRect(rectOccupiedByPotentialDrop, mTmpOccupied, true);
2031
Adam Cohenf3900c22012-11-16 18:28:11 -08002032 findNearestArea(boundingRect.left, boundingRect.top, boundingRect.width(),
2033 boundingRect.height(), direction, mTmpOccupied, blockOccupied, mTempLocation);
Adam Cohen482ed822012-03-02 14:15:13 -08002034
Adam Cohen8baab352012-03-20 17:39:21 -07002035 // If we successfuly found a location by pushing the block of views, we commit it
Adam Cohen482ed822012-03-02 14:15:13 -08002036 if (mTempLocation[0] >= 0 && mTempLocation[1] >= 0) {
Adam Cohen8baab352012-03-20 17:39:21 -07002037 int deltaX = mTempLocation[0] - boundingRect.left;
2038 int deltaY = mTempLocation[1] - boundingRect.top;
Adam Cohenf3900c22012-11-16 18:28:11 -08002039 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07002040 CellAndSpan c = currentState.map.get(v);
2041 c.x += deltaX;
2042 c.y += deltaY;
Adam Cohen482ed822012-03-02 14:15:13 -08002043 }
2044 success = true;
2045 }
Adam Cohen8baab352012-03-20 17:39:21 -07002046
2047 // In either case, we set the occupied array as marked for the location of the views
Adam Cohenf3900c22012-11-16 18:28:11 -08002048 for (View v: views) {
Adam Cohen8baab352012-03-20 17:39:21 -07002049 CellAndSpan c = currentState.map.get(v);
2050 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, true);
Adam Cohen482ed822012-03-02 14:15:13 -08002051 }
2052 return success;
2053 }
2054
2055 private void markCellsForRect(Rect r, boolean[][] occupied, boolean value) {
2056 markCellsForView(r.left, r.top, r.width(), r.height(), occupied, value);
2057 }
2058
Adam Cohen4abc5bd2012-05-29 21:06:03 -07002059 // This method tries to find a reordering solution which satisfies the push mechanic by trying
2060 // to push items in each of the cardinal directions, in an order based on the direction vector
2061 // passed.
2062 private boolean attemptPushInDirection(ArrayList<View> intersectingViews, Rect occupied,
2063 int[] direction, View ignoreView, ItemConfiguration solution) {
2064 if ((Math.abs(direction[0]) + Math.abs(direction[1])) > 1) {
Winson Chung5f8afe62013-08-12 16:19:28 -07002065 // If the direction vector has two non-zero components, we try pushing
Adam Cohen4abc5bd2012-05-29 21:06:03 -07002066 // separately in each of the components.
2067 int temp = direction[1];
2068 direction[1] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08002069
2070 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07002071 ignoreView, solution)) {
2072 return true;
2073 }
2074 direction[1] = temp;
2075 temp = direction[0];
2076 direction[0] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08002077
2078 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07002079 ignoreView, solution)) {
2080 return true;
2081 }
2082 // Revert the direction
2083 direction[0] = temp;
2084
2085 // Now we try pushing in each component of the opposite direction
2086 direction[0] *= -1;
2087 direction[1] *= -1;
2088 temp = direction[1];
2089 direction[1] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08002090 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07002091 ignoreView, solution)) {
2092 return true;
2093 }
2094
2095 direction[1] = temp;
2096 temp = direction[0];
2097 direction[0] = 0;
Adam Cohenf3900c22012-11-16 18:28:11 -08002098 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07002099 ignoreView, solution)) {
2100 return true;
2101 }
2102 // revert the direction
2103 direction[0] = temp;
2104 direction[0] *= -1;
2105 direction[1] *= -1;
Winson Chung5f8afe62013-08-12 16:19:28 -07002106
Adam Cohen4abc5bd2012-05-29 21:06:03 -07002107 } else {
2108 // If the direction vector has a single non-zero component, we push first in the
2109 // direction of the vector
Adam Cohenf3900c22012-11-16 18:28:11 -08002110 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07002111 ignoreView, solution)) {
2112 return true;
2113 }
Adam Cohen4abc5bd2012-05-29 21:06:03 -07002114 // Then we try the opposite direction
2115 direction[0] *= -1;
2116 direction[1] *= -1;
Adam Cohenf3900c22012-11-16 18:28:11 -08002117 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07002118 ignoreView, solution)) {
2119 return true;
2120 }
2121 // Switch the direction back
2122 direction[0] *= -1;
2123 direction[1] *= -1;
Winson Chung5f8afe62013-08-12 16:19:28 -07002124
2125 // If we have failed to find a push solution with the above, then we try
Adam Cohen4abc5bd2012-05-29 21:06:03 -07002126 // to find a solution by pushing along the perpendicular axis.
2127
2128 // Swap the components
2129 int temp = direction[1];
2130 direction[1] = direction[0];
2131 direction[0] = temp;
Adam Cohenf3900c22012-11-16 18:28:11 -08002132 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07002133 ignoreView, solution)) {
2134 return true;
2135 }
2136
2137 // Then we try the opposite direction
2138 direction[0] *= -1;
2139 direction[1] *= -1;
Adam Cohenf3900c22012-11-16 18:28:11 -08002140 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07002141 ignoreView, solution)) {
2142 return true;
2143 }
2144 // Switch the direction back
2145 direction[0] *= -1;
2146 direction[1] *= -1;
2147
2148 // Swap the components back
2149 temp = direction[1];
2150 direction[1] = direction[0];
2151 direction[0] = temp;
2152 }
2153 return false;
2154 }
2155
Adam Cohen482ed822012-03-02 14:15:13 -08002156 private boolean rearrangementExists(int cellX, int cellY, int spanX, int spanY, int[] direction,
Adam Cohen8baab352012-03-20 17:39:21 -07002157 View ignoreView, ItemConfiguration solution) {
Winson Chunge3e03bc2012-05-01 15:10:11 -07002158 // Return early if get invalid cell positions
2159 if (cellX < 0 || cellY < 0) return false;
Adam Cohen482ed822012-03-02 14:15:13 -08002160
Adam Cohen8baab352012-03-20 17:39:21 -07002161 mIntersectingViews.clear();
Adam Cohen482ed822012-03-02 14:15:13 -08002162 mOccupiedRect.set(cellX, cellY, cellX + spanX, cellY + spanY);
Adam Cohen482ed822012-03-02 14:15:13 -08002163
Adam Cohen8baab352012-03-20 17:39:21 -07002164 // Mark the desired location of the view currently being dragged.
Adam Cohen482ed822012-03-02 14:15:13 -08002165 if (ignoreView != null) {
Adam Cohen8baab352012-03-20 17:39:21 -07002166 CellAndSpan c = solution.map.get(ignoreView);
Adam Cohen19f37922012-03-21 11:59:11 -07002167 if (c != null) {
2168 c.x = cellX;
2169 c.y = cellY;
2170 }
Adam Cohen482ed822012-03-02 14:15:13 -08002171 }
Adam Cohen482ed822012-03-02 14:15:13 -08002172 Rect r0 = new Rect(cellX, cellY, cellX + spanX, cellY + spanY);
2173 Rect r1 = new Rect();
Adam Cohen8baab352012-03-20 17:39:21 -07002174 for (View child: solution.map.keySet()) {
Adam Cohen482ed822012-03-02 14:15:13 -08002175 if (child == ignoreView) continue;
Adam Cohen8baab352012-03-20 17:39:21 -07002176 CellAndSpan c = solution.map.get(child);
Adam Cohen482ed822012-03-02 14:15:13 -08002177 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Adam Cohen8baab352012-03-20 17:39:21 -07002178 r1.set(c.x, c.y, c.x + c.spanX, c.y + c.spanY);
Adam Cohen482ed822012-03-02 14:15:13 -08002179 if (Rect.intersects(r0, r1)) {
2180 if (!lp.canReorder) {
2181 return false;
2182 }
2183 mIntersectingViews.add(child);
2184 }
2185 }
Adam Cohen47a876d2012-03-19 13:21:41 -07002186
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002187 solution.intersectingViews = new ArrayList<View>(mIntersectingViews);
2188
Winson Chung5f8afe62013-08-12 16:19:28 -07002189 // First we try to find a solution which respects the push mechanic. That is,
Adam Cohen4abc5bd2012-05-29 21:06:03 -07002190 // we try to find a solution such that no displaced item travels through another item
2191 // without also displacing that item.
2192 if (attemptPushInDirection(mIntersectingViews, mOccupiedRect, direction, ignoreView,
Adam Cohen19f37922012-03-21 11:59:11 -07002193 solution)) {
Adam Cohen47a876d2012-03-19 13:21:41 -07002194 return true;
2195 }
Adam Cohen47a876d2012-03-19 13:21:41 -07002196
Adam Cohen4abc5bd2012-05-29 21:06:03 -07002197 // Next we try moving the views as a block, but without requiring the push mechanic.
Adam Cohenf3900c22012-11-16 18:28:11 -08002198 if (addViewsToTempLocation(mIntersectingViews, mOccupiedRect, direction, ignoreView,
Adam Cohen19f37922012-03-21 11:59:11 -07002199 solution)) {
Adam Cohen482ed822012-03-02 14:15:13 -08002200 return true;
2201 }
Adam Cohen47a876d2012-03-19 13:21:41 -07002202
Adam Cohen482ed822012-03-02 14:15:13 -08002203 // Ok, they couldn't move as a block, let's move them individually
2204 for (View v : mIntersectingViews) {
Adam Cohen8baab352012-03-20 17:39:21 -07002205 if (!addViewToTempLocation(v, mOccupiedRect, direction, solution)) {
Adam Cohen482ed822012-03-02 14:15:13 -08002206 return false;
2207 }
2208 }
2209 return true;
2210 }
2211
2212 /*
2213 * Returns a pair (x, y), where x,y are in {-1, 0, 1} corresponding to vector between
2214 * the provided point and the provided cell
2215 */
Adam Cohen47a876d2012-03-19 13:21:41 -07002216 private void computeDirectionVector(float deltaX, float deltaY, int[] result) {
Adam Cohen482ed822012-03-02 14:15:13 -08002217 double angle = Math.atan(((float) deltaY) / deltaX);
2218
2219 result[0] = 0;
2220 result[1] = 0;
2221 if (Math.abs(Math.cos(angle)) > 0.5f) {
2222 result[0] = (int) Math.signum(deltaX);
2223 }
2224 if (Math.abs(Math.sin(angle)) > 0.5f) {
2225 result[1] = (int) Math.signum(deltaY);
2226 }
2227 }
2228
Adam Cohen8baab352012-03-20 17:39:21 -07002229 private void copyOccupiedArray(boolean[][] occupied) {
2230 for (int i = 0; i < mCountX; i++) {
2231 for (int j = 0; j < mCountY; j++) {
2232 occupied[i][j] = mOccupied[i][j];
2233 }
2234 }
2235 }
2236
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002237 private ItemConfiguration findReorderSolution(int pixelX, int pixelY, int minSpanX, int minSpanY,
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002238 int spanX, int spanY, int[] direction, View dragView, boolean decX,
2239 ItemConfiguration solution) {
Adam Cohen8baab352012-03-20 17:39:21 -07002240 // Copy the current state into the solution. This solution will be manipulated as necessary.
2241 copyCurrentStateToSolution(solution, false);
2242 // Copy the current occupied array into the temporary occupied array. This array will be
2243 // manipulated as necessary to find a solution.
2244 copyOccupiedArray(mTmpOccupied);
Adam Cohen482ed822012-03-02 14:15:13 -08002245
2246 // We find the nearest cell into which we would place the dragged item, assuming there's
2247 // nothing in its way.
2248 int result[] = new int[2];
2249 result = findNearestArea(pixelX, pixelY, spanX, spanY, result);
2250
2251 boolean success = false;
2252 // First we try the exact nearest position of the item being dragged,
2253 // we will then want to try to move this around to other neighbouring positions
Adam Cohen8baab352012-03-20 17:39:21 -07002254 success = rearrangementExists(result[0], result[1], spanX, spanY, direction, dragView,
2255 solution);
Adam Cohen482ed822012-03-02 14:15:13 -08002256
2257 if (!success) {
2258 // We try shrinking the widget down to size in an alternating pattern, shrink 1 in
2259 // x, then 1 in y etc.
2260 if (spanX > minSpanX && (minSpanY == spanY || decX)) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002261 return findReorderSolution(pixelX, pixelY, minSpanX, minSpanY, spanX - 1, spanY,
2262 direction, dragView, false, solution);
Adam Cohen482ed822012-03-02 14:15:13 -08002263 } else if (spanY > minSpanY) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002264 return findReorderSolution(pixelX, pixelY, minSpanX, minSpanY, spanX, spanY - 1,
2265 direction, dragView, true, solution);
Adam Cohen482ed822012-03-02 14:15:13 -08002266 }
2267 solution.isSolution = false;
2268 } else {
2269 solution.isSolution = true;
2270 solution.dragViewX = result[0];
2271 solution.dragViewY = result[1];
2272 solution.dragViewSpanX = spanX;
2273 solution.dragViewSpanY = spanY;
Adam Cohen482ed822012-03-02 14:15:13 -08002274 }
2275 return solution;
2276 }
2277
2278 private void copyCurrentStateToSolution(ItemConfiguration solution, boolean temp) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002279 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08002280 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002281 View child = mShortcutsAndWidgets.getChildAt(i);
Adam Cohen482ed822012-03-02 14:15:13 -08002282 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Adam Cohen8baab352012-03-20 17:39:21 -07002283 CellAndSpan c;
Adam Cohen482ed822012-03-02 14:15:13 -08002284 if (temp) {
Adam Cohen8baab352012-03-20 17:39:21 -07002285 c = new CellAndSpan(lp.tmpCellX, lp.tmpCellY, lp.cellHSpan, lp.cellVSpan);
Adam Cohen482ed822012-03-02 14:15:13 -08002286 } else {
Adam Cohen8baab352012-03-20 17:39:21 -07002287 c = new CellAndSpan(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan);
Adam Cohen482ed822012-03-02 14:15:13 -08002288 }
Adam Cohenf3900c22012-11-16 18:28:11 -08002289 solution.add(child, c);
Adam Cohen482ed822012-03-02 14:15:13 -08002290 }
2291 }
2292
2293 private void copySolutionToTempState(ItemConfiguration solution, View dragView) {
2294 for (int i = 0; i < mCountX; i++) {
2295 for (int j = 0; j < mCountY; j++) {
2296 mTmpOccupied[i][j] = false;
2297 }
2298 }
2299
Michael Jurkaa52570f2012-03-20 03:18:20 -07002300 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08002301 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002302 View child = mShortcutsAndWidgets.getChildAt(i);
Adam Cohen482ed822012-03-02 14:15:13 -08002303 if (child == dragView) continue;
2304 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Adam Cohen8baab352012-03-20 17:39:21 -07002305 CellAndSpan c = solution.map.get(child);
2306 if (c != null) {
2307 lp.tmpCellX = c.x;
2308 lp.tmpCellY = c.y;
2309 lp.cellHSpan = c.spanX;
2310 lp.cellVSpan = c.spanY;
2311 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, true);
Adam Cohen482ed822012-03-02 14:15:13 -08002312 }
2313 }
2314 markCellsForView(solution.dragViewX, solution.dragViewY, solution.dragViewSpanX,
2315 solution.dragViewSpanY, mTmpOccupied, true);
2316 }
2317
2318 private void animateItemsToSolution(ItemConfiguration solution, View dragView, boolean
2319 commitDragView) {
2320
2321 boolean[][] occupied = DESTRUCTIVE_REORDER ? mOccupied : mTmpOccupied;
2322 for (int i = 0; i < mCountX; i++) {
2323 for (int j = 0; j < mCountY; j++) {
2324 occupied[i][j] = false;
2325 }
2326 }
2327
Michael Jurkaa52570f2012-03-20 03:18:20 -07002328 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08002329 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002330 View child = mShortcutsAndWidgets.getChildAt(i);
Adam Cohen482ed822012-03-02 14:15:13 -08002331 if (child == dragView) continue;
Adam Cohen8baab352012-03-20 17:39:21 -07002332 CellAndSpan c = solution.map.get(child);
2333 if (c != null) {
Adam Cohen19f37922012-03-21 11:59:11 -07002334 animateChildToPosition(child, c.x, c.y, REORDER_ANIMATION_DURATION, 0,
2335 DESTRUCTIVE_REORDER, false);
Adam Cohen8baab352012-03-20 17:39:21 -07002336 markCellsForView(c.x, c.y, c.spanX, c.spanY, occupied, true);
Adam Cohen482ed822012-03-02 14:15:13 -08002337 }
2338 }
2339 if (commitDragView) {
2340 markCellsForView(solution.dragViewX, solution.dragViewY, solution.dragViewSpanX,
2341 solution.dragViewSpanY, occupied, true);
2342 }
2343 }
2344
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002345
2346 // This method starts or changes the reorder preview animations
2347 private void beginOrAdjustReorderPreviewAnimations(ItemConfiguration solution,
2348 View dragView, int delay, int mode) {
Adam Cohen19f37922012-03-21 11:59:11 -07002349 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen19f37922012-03-21 11:59:11 -07002350 for (int i = 0; i < childCount; i++) {
2351 View child = mShortcutsAndWidgets.getChildAt(i);
2352 if (child == dragView) continue;
2353 CellAndSpan c = solution.map.get(child);
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002354 boolean skip = mode == ReorderPreviewAnimation.MODE_HINT && solution.intersectingViews
2355 != null && !solution.intersectingViews.contains(child);
2356
Adam Cohen19f37922012-03-21 11:59:11 -07002357 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002358 if (c != null && !skip) {
2359 ReorderPreviewAnimation rha = new ReorderPreviewAnimation(child, mode, lp.cellX,
2360 lp.cellY, c.x, c.y, c.spanX, c.spanY);
Adam Cohend024f982012-05-23 18:26:45 -07002361 rha.animate();
Adam Cohen19f37922012-03-21 11:59:11 -07002362 }
2363 }
2364 }
2365
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002366 // Class which represents the reorder preview animations. These animations show that an item is
Adam Cohen19f37922012-03-21 11:59:11 -07002367 // in a temporary state, and hint at where the item will return to.
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002368 class ReorderPreviewAnimation {
Adam Cohen19f37922012-03-21 11:59:11 -07002369 View child;
Adam Cohend024f982012-05-23 18:26:45 -07002370 float finalDeltaX;
2371 float finalDeltaY;
2372 float initDeltaX;
2373 float initDeltaY;
2374 float finalScale;
2375 float initScale;
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002376 int mode;
2377 boolean repeating = false;
2378 private static final int PREVIEW_DURATION = 300;
2379 private static final int HINT_DURATION = Workspace.REORDER_TIMEOUT;
2380
2381 public static final int MODE_HINT = 0;
2382 public static final int MODE_PREVIEW = 1;
2383
Adam Cohene7587d22012-05-24 18:50:02 -07002384 Animator a;
Adam Cohen19f37922012-03-21 11:59:11 -07002385
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002386 public ReorderPreviewAnimation(View child, int mode, int cellX0, int cellY0, int cellX1,
2387 int cellY1, int spanX, int spanY) {
Adam Cohen19f37922012-03-21 11:59:11 -07002388 regionToCenterPoint(cellX0, cellY0, spanX, spanY, mTmpPoint);
2389 final int x0 = mTmpPoint[0];
2390 final int y0 = mTmpPoint[1];
2391 regionToCenterPoint(cellX1, cellY1, spanX, spanY, mTmpPoint);
2392 final int x1 = mTmpPoint[0];
2393 final int y1 = mTmpPoint[1];
2394 final int dX = x1 - x0;
2395 final int dY = y1 - y0;
Adam Cohend024f982012-05-23 18:26:45 -07002396 finalDeltaX = 0;
2397 finalDeltaY = 0;
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002398 int dir = mode == MODE_HINT ? -1 : 1;
Adam Cohen19f37922012-03-21 11:59:11 -07002399 if (dX == dY && dX == 0) {
2400 } else {
2401 if (dY == 0) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002402 finalDeltaX = - dir * Math.signum(dX) * mReorderPreviewAnimationMagnitude;
Adam Cohen19f37922012-03-21 11:59:11 -07002403 } else if (dX == 0) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002404 finalDeltaY = - dir * Math.signum(dY) * mReorderPreviewAnimationMagnitude;
Adam Cohen19f37922012-03-21 11:59:11 -07002405 } else {
2406 double angle = Math.atan( (float) (dY) / dX);
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002407 finalDeltaX = (int) (- dir * Math.signum(dX) *
2408 Math.abs(Math.cos(angle) * mReorderPreviewAnimationMagnitude));
2409 finalDeltaY = (int) (- dir * Math.signum(dY) *
2410 Math.abs(Math.sin(angle) * mReorderPreviewAnimationMagnitude));
Adam Cohen19f37922012-03-21 11:59:11 -07002411 }
2412 }
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002413 this.mode = mode;
Adam Cohend024f982012-05-23 18:26:45 -07002414 initDeltaX = child.getTranslationX();
2415 initDeltaY = child.getTranslationY();
Adam Cohen307fe232012-08-16 17:55:58 -07002416 finalScale = getChildrenScale() - 4.0f / child.getWidth();
Adam Cohend024f982012-05-23 18:26:45 -07002417 initScale = child.getScaleX();
Adam Cohen19f37922012-03-21 11:59:11 -07002418 this.child = child;
2419 }
2420
Adam Cohend024f982012-05-23 18:26:45 -07002421 void animate() {
Adam Cohen19f37922012-03-21 11:59:11 -07002422 if (mShakeAnimators.containsKey(child)) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002423 ReorderPreviewAnimation oldAnimation = mShakeAnimators.get(child);
Adam Cohend024f982012-05-23 18:26:45 -07002424 oldAnimation.cancel();
Adam Cohen19f37922012-03-21 11:59:11 -07002425 mShakeAnimators.remove(child);
Adam Cohene7587d22012-05-24 18:50:02 -07002426 if (finalDeltaX == 0 && finalDeltaY == 0) {
2427 completeAnimationImmediately();
2428 return;
2429 }
Adam Cohen19f37922012-03-21 11:59:11 -07002430 }
Adam Cohend024f982012-05-23 18:26:45 -07002431 if (finalDeltaX == 0 && finalDeltaY == 0) {
Adam Cohen19f37922012-03-21 11:59:11 -07002432 return;
2433 }
Michael Jurkaf1ad6082013-03-13 12:55:46 +01002434 ValueAnimator va = LauncherAnimUtils.ofFloat(child, 0f, 1f);
Adam Cohene7587d22012-05-24 18:50:02 -07002435 a = va;
Adam Cohen19f37922012-03-21 11:59:11 -07002436 va.setRepeatMode(ValueAnimator.REVERSE);
2437 va.setRepeatCount(ValueAnimator.INFINITE);
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002438 va.setDuration(mode == MODE_HINT ? HINT_DURATION : PREVIEW_DURATION);
Adam Cohend024f982012-05-23 18:26:45 -07002439 va.setStartDelay((int) (Math.random() * 60));
Adam Cohen19f37922012-03-21 11:59:11 -07002440 va.addUpdateListener(new AnimatorUpdateListener() {
2441 @Override
2442 public void onAnimationUpdate(ValueAnimator animation) {
2443 float r = ((Float) animation.getAnimatedValue()).floatValue();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002444 float r1 = (mode == MODE_HINT && repeating) ? 1.0f : r;
2445 float x = r1 * finalDeltaX + (1 - r1) * initDeltaX;
2446 float y = r1 * finalDeltaY + (1 - r1) * initDeltaY;
Adam Cohen19f37922012-03-21 11:59:11 -07002447 child.setTranslationX(x);
2448 child.setTranslationY(y);
Adam Cohend024f982012-05-23 18:26:45 -07002449 float s = r * finalScale + (1 - r) * initScale;
Brandon Keely50e6e562012-05-08 16:28:49 -07002450 child.setScaleX(s);
2451 child.setScaleY(s);
Adam Cohen19f37922012-03-21 11:59:11 -07002452 }
2453 });
2454 va.addListener(new AnimatorListenerAdapter() {
2455 public void onAnimationRepeat(Animator animation) {
Adam Cohen19f37922012-03-21 11:59:11 -07002456 // We make sure to end only after a full period
Adam Cohend024f982012-05-23 18:26:45 -07002457 initDeltaX = 0;
2458 initDeltaY = 0;
Adam Cohen307fe232012-08-16 17:55:58 -07002459 initScale = getChildrenScale();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002460 repeating = true;
Adam Cohen19f37922012-03-21 11:59:11 -07002461 }
2462 });
Adam Cohen19f37922012-03-21 11:59:11 -07002463 mShakeAnimators.put(child, this);
2464 va.start();
2465 }
2466
Adam Cohend024f982012-05-23 18:26:45 -07002467 private void cancel() {
Adam Cohene7587d22012-05-24 18:50:02 -07002468 if (a != null) {
2469 a.cancel();
2470 }
Adam Cohen19f37922012-03-21 11:59:11 -07002471 }
Adam Cohene7587d22012-05-24 18:50:02 -07002472
Adam Cohen091440a2015-03-18 14:16:05 -07002473 @Thunk void completeAnimationImmediately() {
Adam Cohene7587d22012-05-24 18:50:02 -07002474 if (a != null) {
2475 a.cancel();
2476 }
Brandon Keely50e6e562012-05-08 16:28:49 -07002477
Michael Jurka2ecf9952012-06-18 12:52:28 -07002478 AnimatorSet s = LauncherAnimUtils.createAnimatorSet();
Adam Cohene7587d22012-05-24 18:50:02 -07002479 a = s;
Brandon Keely50e6e562012-05-08 16:28:49 -07002480 s.playTogether(
Adam Cohen307fe232012-08-16 17:55:58 -07002481 LauncherAnimUtils.ofFloat(child, "scaleX", getChildrenScale()),
2482 LauncherAnimUtils.ofFloat(child, "scaleY", getChildrenScale()),
Michael Jurka2ecf9952012-06-18 12:52:28 -07002483 LauncherAnimUtils.ofFloat(child, "translationX", 0f),
2484 LauncherAnimUtils.ofFloat(child, "translationY", 0f)
Brandon Keely50e6e562012-05-08 16:28:49 -07002485 );
2486 s.setDuration(REORDER_ANIMATION_DURATION);
2487 s.setInterpolator(new android.view.animation.DecelerateInterpolator(1.5f));
2488 s.start();
2489 }
Adam Cohen19f37922012-03-21 11:59:11 -07002490 }
2491
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002492 private void completeAndClearReorderPreviewAnimations() {
2493 for (ReorderPreviewAnimation a: mShakeAnimators.values()) {
Brandon Keely50e6e562012-05-08 16:28:49 -07002494 a.completeAnimationImmediately();
Adam Cohen19f37922012-03-21 11:59:11 -07002495 }
2496 mShakeAnimators.clear();
2497 }
2498
Adam Cohen482ed822012-03-02 14:15:13 -08002499 private void commitTempPlacement() {
2500 for (int i = 0; i < mCountX; i++) {
2501 for (int j = 0; j < mCountY; j++) {
2502 mOccupied[i][j] = mTmpOccupied[i][j];
2503 }
2504 }
Michael Jurkaa52570f2012-03-20 03:18:20 -07002505 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08002506 for (int i = 0; i < childCount; i++) {
Adam Cohenea889a22012-03-27 16:45:39 -07002507 View child = mShortcutsAndWidgets.getChildAt(i);
2508 LayoutParams lp = (LayoutParams) child.getLayoutParams();
2509 ItemInfo info = (ItemInfo) child.getTag();
Adam Cohen2acce882012-03-28 19:03:19 -07002510 // We do a null check here because the item info can be null in the case of the
2511 // AllApps button in the hotseat.
2512 if (info != null) {
Adam Cohen487f7dd2012-06-28 18:12:10 -07002513 if (info.cellX != lp.tmpCellX || info.cellY != lp.tmpCellY ||
2514 info.spanX != lp.cellHSpan || info.spanY != lp.cellVSpan) {
2515 info.requiresDbUpdate = true;
2516 }
Adam Cohen2acce882012-03-28 19:03:19 -07002517 info.cellX = lp.cellX = lp.tmpCellX;
2518 info.cellY = lp.cellY = lp.tmpCellY;
Adam Cohenbebf0422012-04-11 18:06:28 -07002519 info.spanX = lp.cellHSpan;
2520 info.spanY = lp.cellVSpan;
Adam Cohen2acce882012-03-28 19:03:19 -07002521 }
Adam Cohen482ed822012-03-02 14:15:13 -08002522 }
Adam Cohen2acce882012-03-28 19:03:19 -07002523 mLauncher.getWorkspace().updateItemLocationsInDatabase(this);
Adam Cohen482ed822012-03-02 14:15:13 -08002524 }
2525
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002526 private void setUseTempCoords(boolean useTempCoords) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002527 int childCount = mShortcutsAndWidgets.getChildCount();
Adam Cohen482ed822012-03-02 14:15:13 -08002528 for (int i = 0; i < childCount; i++) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07002529 LayoutParams lp = (LayoutParams) mShortcutsAndWidgets.getChildAt(i).getLayoutParams();
Adam Cohen482ed822012-03-02 14:15:13 -08002530 lp.useTmpCoords = useTempCoords;
2531 }
2532 }
2533
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002534 private ItemConfiguration findConfigurationNoShuffle(int pixelX, int pixelY, int minSpanX, int minSpanY,
Adam Cohen482ed822012-03-02 14:15:13 -08002535 int spanX, int spanY, View dragView, ItemConfiguration solution) {
2536 int[] result = new int[2];
2537 int[] resultSpan = new int[2];
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002538 findNearestVacantArea(pixelX, pixelY, minSpanX, minSpanY, spanX, spanY, result,
Adam Cohen482ed822012-03-02 14:15:13 -08002539 resultSpan);
2540 if (result[0] >= 0 && result[1] >= 0) {
2541 copyCurrentStateToSolution(solution, false);
2542 solution.dragViewX = result[0];
2543 solution.dragViewY = result[1];
2544 solution.dragViewSpanX = resultSpan[0];
2545 solution.dragViewSpanY = resultSpan[1];
2546 solution.isSolution = true;
2547 } else {
2548 solution.isSolution = false;
2549 }
2550 return solution;
2551 }
2552
2553 public void prepareChildForDrag(View child) {
2554 markCellsAsUnoccupiedForView(child);
Adam Cohen482ed822012-03-02 14:15:13 -08002555 }
2556
Adam Cohen19f37922012-03-21 11:59:11 -07002557 /* This seems like it should be obvious and straight-forward, but when the direction vector
2558 needs to match with the notion of the dragView pushing other views, we have to employ
2559 a slightly more subtle notion of the direction vector. The question is what two points is
2560 the vector between? The center of the dragView and its desired destination? Not quite, as
2561 this doesn't necessarily coincide with the interaction of the dragView and items occupying
2562 those cells. Instead we use some heuristics to often lock the vector to up, down, left
2563 or right, which helps make pushing feel right.
2564 */
2565 private void getDirectionVectorForDrop(int dragViewCenterX, int dragViewCenterY, int spanX,
2566 int spanY, View dragView, int[] resultDirection) {
2567 int[] targetDestination = new int[2];
2568
2569 findNearestArea(dragViewCenterX, dragViewCenterY, spanX, spanY, targetDestination);
2570 Rect dragRect = new Rect();
2571 regionToRect(targetDestination[0], targetDestination[1], spanX, spanY, dragRect);
2572 dragRect.offset(dragViewCenterX - dragRect.centerX(), dragViewCenterY - dragRect.centerY());
2573
2574 Rect dropRegionRect = new Rect();
2575 getViewsIntersectingRegion(targetDestination[0], targetDestination[1], spanX, spanY,
2576 dragView, dropRegionRect, mIntersectingViews);
2577
2578 int dropRegionSpanX = dropRegionRect.width();
2579 int dropRegionSpanY = dropRegionRect.height();
2580
2581 regionToRect(dropRegionRect.left, dropRegionRect.top, dropRegionRect.width(),
2582 dropRegionRect.height(), dropRegionRect);
2583
2584 int deltaX = (dropRegionRect.centerX() - dragViewCenterX) / spanX;
2585 int deltaY = (dropRegionRect.centerY() - dragViewCenterY) / spanY;
2586
2587 if (dropRegionSpanX == mCountX || spanX == mCountX) {
2588 deltaX = 0;
2589 }
2590 if (dropRegionSpanY == mCountY || spanY == mCountY) {
2591 deltaY = 0;
2592 }
2593
2594 if (deltaX == 0 && deltaY == 0) {
2595 // No idea what to do, give a random direction.
2596 resultDirection[0] = 1;
2597 resultDirection[1] = 0;
2598 } else {
2599 computeDirectionVector(deltaX, deltaY, resultDirection);
2600 }
2601 }
2602
2603 // For a given cell and span, fetch the set of views intersecting the region.
2604 private void getViewsIntersectingRegion(int cellX, int cellY, int spanX, int spanY,
2605 View dragView, Rect boundingRect, ArrayList<View> intersectingViews) {
2606 if (boundingRect != null) {
2607 boundingRect.set(cellX, cellY, cellX + spanX, cellY + spanY);
2608 }
2609 intersectingViews.clear();
2610 Rect r0 = new Rect(cellX, cellY, cellX + spanX, cellY + spanY);
2611 Rect r1 = new Rect();
2612 final int count = mShortcutsAndWidgets.getChildCount();
2613 for (int i = 0; i < count; i++) {
2614 View child = mShortcutsAndWidgets.getChildAt(i);
2615 if (child == dragView) continue;
2616 LayoutParams lp = (LayoutParams) child.getLayoutParams();
2617 r1.set(lp.cellX, lp.cellY, lp.cellX + lp.cellHSpan, lp.cellY + lp.cellVSpan);
2618 if (Rect.intersects(r0, r1)) {
2619 mIntersectingViews.add(child);
2620 if (boundingRect != null) {
2621 boundingRect.union(r1);
2622 }
2623 }
2624 }
2625 }
2626
2627 boolean isNearestDropLocationOccupied(int pixelX, int pixelY, int spanX, int spanY,
2628 View dragView, int[] result) {
2629 result = findNearestArea(pixelX, pixelY, spanX, spanY, result);
2630 getViewsIntersectingRegion(result[0], result[1], spanX, spanY, dragView, null,
2631 mIntersectingViews);
2632 return !mIntersectingViews.isEmpty();
2633 }
2634
2635 void revertTempState() {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002636 completeAndClearReorderPreviewAnimations();
2637 if (isItemPlacementDirty() && !DESTRUCTIVE_REORDER) {
2638 final int count = mShortcutsAndWidgets.getChildCount();
2639 for (int i = 0; i < count; i++) {
2640 View child = mShortcutsAndWidgets.getChildAt(i);
2641 LayoutParams lp = (LayoutParams) child.getLayoutParams();
2642 if (lp.tmpCellX != lp.cellX || lp.tmpCellY != lp.cellY) {
2643 lp.tmpCellX = lp.cellX;
2644 lp.tmpCellY = lp.cellY;
2645 animateChildToPosition(child, lp.cellX, lp.cellY, REORDER_ANIMATION_DURATION,
2646 0, false, false);
2647 }
Adam Cohen19f37922012-03-21 11:59:11 -07002648 }
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002649 setItemPlacementDirty(false);
Adam Cohen19f37922012-03-21 11:59:11 -07002650 }
Adam Cohen19f37922012-03-21 11:59:11 -07002651 }
2652
Adam Cohenbebf0422012-04-11 18:06:28 -07002653 boolean createAreaForResize(int cellX, int cellY, int spanX, int spanY,
2654 View dragView, int[] direction, boolean commit) {
2655 int[] pixelXY = new int[2];
2656 regionToCenterPoint(cellX, cellY, spanX, spanY, pixelXY);
2657
2658 // First we determine if things have moved enough to cause a different layout
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002659 ItemConfiguration swapSolution = findReorderSolution(pixelXY[0], pixelXY[1], spanX, spanY,
Adam Cohenbebf0422012-04-11 18:06:28 -07002660 spanX, spanY, direction, dragView, true, new ItemConfiguration());
2661
2662 setUseTempCoords(true);
2663 if (swapSolution != null && swapSolution.isSolution) {
2664 // If we're just testing for a possible location (MODE_ACCEPT_DROP), we don't bother
2665 // committing anything or animating anything as we just want to determine if a solution
2666 // exists
2667 copySolutionToTempState(swapSolution, dragView);
2668 setItemPlacementDirty(true);
2669 animateItemsToSolution(swapSolution, dragView, commit);
2670
2671 if (commit) {
2672 commitTempPlacement();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002673 completeAndClearReorderPreviewAnimations();
Adam Cohenbebf0422012-04-11 18:06:28 -07002674 setItemPlacementDirty(false);
2675 } else {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002676 beginOrAdjustReorderPreviewAnimations(swapSolution, dragView,
2677 REORDER_ANIMATION_DURATION, ReorderPreviewAnimation.MODE_PREVIEW);
Adam Cohenbebf0422012-04-11 18:06:28 -07002678 }
2679 mShortcutsAndWidgets.requestLayout();
2680 }
2681 return swapSolution.isSolution;
2682 }
2683
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002684 int[] performReorder(int pixelX, int pixelY, int minSpanX, int minSpanY, int spanX, int spanY,
Adam Cohen482ed822012-03-02 14:15:13 -08002685 View dragView, int[] result, int resultSpan[], int mode) {
Adam Cohen482ed822012-03-02 14:15:13 -08002686 // First we determine if things have moved enough to cause a different layout
Adam Cohen47a876d2012-03-19 13:21:41 -07002687 result = findNearestArea(pixelX, pixelY, spanX, spanY, result);
Adam Cohen482ed822012-03-02 14:15:13 -08002688
2689 if (resultSpan == null) {
2690 resultSpan = new int[2];
2691 }
2692
Adam Cohen19f37922012-03-21 11:59:11 -07002693 // When we are checking drop validity or actually dropping, we don't recompute the
2694 // direction vector, since we want the solution to match the preview, and it's possible
2695 // that the exact position of the item has changed to result in a new reordering outcome.
Adam Cohenb209e632012-03-27 17:09:36 -07002696 if ((mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL || mode == MODE_ACCEPT_DROP)
2697 && mPreviousReorderDirection[0] != INVALID_DIRECTION) {
Adam Cohen19f37922012-03-21 11:59:11 -07002698 mDirectionVector[0] = mPreviousReorderDirection[0];
2699 mDirectionVector[1] = mPreviousReorderDirection[1];
2700 // We reset this vector after drop
Adam Cohenb209e632012-03-27 17:09:36 -07002701 if (mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL) {
2702 mPreviousReorderDirection[0] = INVALID_DIRECTION;
2703 mPreviousReorderDirection[1] = INVALID_DIRECTION;
Adam Cohen19f37922012-03-21 11:59:11 -07002704 }
2705 } else {
2706 getDirectionVectorForDrop(pixelX, pixelY, spanX, spanY, dragView, mDirectionVector);
2707 mPreviousReorderDirection[0] = mDirectionVector[0];
2708 mPreviousReorderDirection[1] = mDirectionVector[1];
2709 }
2710
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002711 // Find a solution involving pushing / displacing any items in the way
2712 ItemConfiguration swapSolution = findReorderSolution(pixelX, pixelY, minSpanX, minSpanY,
Adam Cohen482ed822012-03-02 14:15:13 -08002713 spanX, spanY, mDirectionVector, dragView, true, new ItemConfiguration());
2714
2715 // We attempt the approach which doesn't shuffle views at all
2716 ItemConfiguration noShuffleSolution = findConfigurationNoShuffle(pixelX, pixelY, minSpanX,
2717 minSpanY, spanX, spanY, dragView, new ItemConfiguration());
2718
2719 ItemConfiguration finalSolution = null;
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002720
2721 // If the reorder solution requires resizing (shrinking) the item being dropped, we instead
2722 // favor a solution in which the item is not resized, but
Adam Cohen482ed822012-03-02 14:15:13 -08002723 if (swapSolution.isSolution && swapSolution.area() >= noShuffleSolution.area()) {
2724 finalSolution = swapSolution;
2725 } else if (noShuffleSolution.isSolution) {
2726 finalSolution = noShuffleSolution;
2727 }
2728
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002729 if (mode == MODE_SHOW_REORDER_HINT) {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002730 if (finalSolution != null) {
Adam Cohenfe692872013-12-11 14:47:23 -08002731 beginOrAdjustReorderPreviewAnimations(finalSolution, dragView, 0,
2732 ReorderPreviewAnimation.MODE_HINT);
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002733 result[0] = finalSolution.dragViewX;
2734 result[1] = finalSolution.dragViewY;
2735 resultSpan[0] = finalSolution.dragViewSpanX;
2736 resultSpan[1] = finalSolution.dragViewSpanY;
2737 } else {
2738 result[0] = result[1] = resultSpan[0] = resultSpan[1] = -1;
2739 }
2740 return result;
2741 }
2742
Adam Cohen482ed822012-03-02 14:15:13 -08002743 boolean foundSolution = true;
2744 if (!DESTRUCTIVE_REORDER) {
2745 setUseTempCoords(true);
2746 }
2747
2748 if (finalSolution != null) {
2749 result[0] = finalSolution.dragViewX;
2750 result[1] = finalSolution.dragViewY;
2751 resultSpan[0] = finalSolution.dragViewSpanX;
2752 resultSpan[1] = finalSolution.dragViewSpanY;
2753
2754 // If we're just testing for a possible location (MODE_ACCEPT_DROP), we don't bother
2755 // committing anything or animating anything as we just want to determine if a solution
2756 // exists
2757 if (mode == MODE_DRAG_OVER || mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL) {
2758 if (!DESTRUCTIVE_REORDER) {
2759 copySolutionToTempState(finalSolution, dragView);
2760 }
2761 setItemPlacementDirty(true);
2762 animateItemsToSolution(finalSolution, dragView, mode == MODE_ON_DROP);
2763
Adam Cohen19f37922012-03-21 11:59:11 -07002764 if (!DESTRUCTIVE_REORDER &&
2765 (mode == MODE_ON_DROP || mode == MODE_ON_DROP_EXTERNAL)) {
Adam Cohen482ed822012-03-02 14:15:13 -08002766 commitTempPlacement();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002767 completeAndClearReorderPreviewAnimations();
Adam Cohen19f37922012-03-21 11:59:11 -07002768 setItemPlacementDirty(false);
2769 } else {
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002770 beginOrAdjustReorderPreviewAnimations(finalSolution, dragView,
2771 REORDER_ANIMATION_DURATION, ReorderPreviewAnimation.MODE_PREVIEW);
Adam Cohen482ed822012-03-02 14:15:13 -08002772 }
2773 }
2774 } else {
2775 foundSolution = false;
2776 result[0] = result[1] = resultSpan[0] = resultSpan[1] = -1;
2777 }
2778
2779 if ((mode == MODE_ON_DROP || !foundSolution) && !DESTRUCTIVE_REORDER) {
2780 setUseTempCoords(false);
2781 }
Adam Cohen482ed822012-03-02 14:15:13 -08002782
Michael Jurkaa52570f2012-03-20 03:18:20 -07002783 mShortcutsAndWidgets.requestLayout();
Adam Cohen482ed822012-03-02 14:15:13 -08002784 return result;
2785 }
2786
Adam Cohen19f37922012-03-21 11:59:11 -07002787 void setItemPlacementDirty(boolean dirty) {
2788 mItemPlacementDirty = dirty;
Adam Cohen482ed822012-03-02 14:15:13 -08002789 }
Adam Cohen19f37922012-03-21 11:59:11 -07002790 boolean isItemPlacementDirty() {
2791 return mItemPlacementDirty;
Adam Cohen482ed822012-03-02 14:15:13 -08002792 }
2793
Adam Cohen091440a2015-03-18 14:16:05 -07002794 @Thunk class ItemConfiguration {
Adam Cohen8baab352012-03-20 17:39:21 -07002795 HashMap<View, CellAndSpan> map = new HashMap<View, CellAndSpan>();
Adam Cohenf3900c22012-11-16 18:28:11 -08002796 private HashMap<View, CellAndSpan> savedMap = new HashMap<View, CellAndSpan>();
2797 ArrayList<View> sortedViews = new ArrayList<View>();
Adam Cohenfa3c58f2013-12-06 16:10:55 -08002798 ArrayList<View> intersectingViews;
Adam Cohen482ed822012-03-02 14:15:13 -08002799 boolean isSolution = false;
2800 int dragViewX, dragViewY, dragViewSpanX, dragViewSpanY;
2801
Adam Cohenf3900c22012-11-16 18:28:11 -08002802 void save() {
2803 // Copy current state into savedMap
2804 for (View v: map.keySet()) {
2805 map.get(v).copy(savedMap.get(v));
2806 }
2807 }
2808
2809 void restore() {
2810 // Restore current state from savedMap
2811 for (View v: savedMap.keySet()) {
2812 savedMap.get(v).copy(map.get(v));
2813 }
2814 }
2815
2816 void add(View v, CellAndSpan cs) {
2817 map.put(v, cs);
2818 savedMap.put(v, new CellAndSpan());
2819 sortedViews.add(v);
2820 }
2821
Adam Cohen482ed822012-03-02 14:15:13 -08002822 int area() {
2823 return dragViewSpanX * dragViewSpanY;
2824 }
Adam Cohen8baab352012-03-20 17:39:21 -07002825 }
2826
2827 private class CellAndSpan {
2828 int x, y;
2829 int spanX, spanY;
2830
Adam Cohenf3900c22012-11-16 18:28:11 -08002831 public CellAndSpan() {
2832 }
2833
2834 public void copy(CellAndSpan copy) {
2835 copy.x = x;
2836 copy.y = y;
2837 copy.spanX = spanX;
2838 copy.spanY = spanY;
2839 }
2840
Adam Cohen8baab352012-03-20 17:39:21 -07002841 public CellAndSpan(int x, int y, int spanX, int spanY) {
2842 this.x = x;
2843 this.y = y;
2844 this.spanX = spanX;
2845 this.spanY = spanY;
Adam Cohen482ed822012-03-02 14:15:13 -08002846 }
Adam Cohenf3900c22012-11-16 18:28:11 -08002847
2848 public String toString() {
2849 return "(" + x + ", " + y + ": " + spanX + ", " + spanY + ")";
2850 }
2851
Adam Cohen482ed822012-03-02 14:15:13 -08002852 }
2853
Adam Cohendf035382011-04-11 17:22:04 -07002854 /**
Adam Cohendf035382011-04-11 17:22:04 -07002855 * Find a starting cell position that will fit the given bounds nearest the requested
2856 * cell location. Uses Euclidean distance to score multiple vacant areas.
2857 *
2858 * @param pixelX The X location at which you want to search for a vacant area.
2859 * @param pixelY The Y location at which you want to search for a vacant area.
2860 * @param spanX Horizontal span of the object.
2861 * @param spanY Vertical span of the object.
2862 * @param ignoreView Considers space occupied by this view as unoccupied
2863 * @param result Previously returned value to possibly recycle.
2864 * @return The X, Y cell of a vacant area that can contain this object,
2865 * nearest the requested location.
2866 */
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002867 int[] findNearestArea(int pixelX, int pixelY, int spanX, int spanY, int[] result) {
2868 return findNearestArea(pixelX, pixelY, spanX, spanY, spanX, spanY, false, result, null);
Adam Cohendf035382011-04-11 17:22:04 -07002869 }
2870
Michael Jurka0280c3b2010-09-17 15:00:07 -07002871 boolean existsEmptyCell() {
2872 return findCellForSpan(null, 1, 1);
2873 }
2874
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002875 /**
Michael Jurka0280c3b2010-09-17 15:00:07 -07002876 * Finds the upper-left coordinate of the first rectangle in the grid that can
2877 * hold a cell of the specified dimensions. If intersectX and intersectY are not -1,
2878 * then this method will only return coordinates for rectangles that contain the cell
2879 * (intersectX, intersectY)
2880 *
2881 * @param cellXY The array that will contain the position of a vacant cell if such a cell
2882 * can be found.
2883 * @param spanX The horizontal span of the cell we want to find.
2884 * @param spanY The vertical span of the cell we want to find.
2885 *
2886 * @return True if a vacant cell of the specified dimension was found, false otherwise.
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002887 */
Hyunyoung Song3f471442015-04-08 19:01:34 -07002888 public boolean findCellForSpan(int[] cellXY, int spanX, int spanY) {
Michael Jurka28750fb2010-09-24 17:43:49 -07002889 boolean foundCell = false;
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002890 final int endX = mCountX - (spanX - 1);
2891 final int endY = mCountY - (spanY - 1);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002892
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002893 for (int y = 0; y < endY && !foundCell; y++) {
2894 inner:
2895 for (int x = 0; x < endX; x++) {
2896 for (int i = 0; i < spanX; i++) {
2897 for (int j = 0; j < spanY; j++) {
2898 if (mOccupied[x + i][y + j]) {
2899 // small optimization: we can skip to after the column we just found
2900 // an occupied cell
2901 x += i;
2902 continue inner;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002903 }
2904 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002905 }
Sunny Goyalf7a29e82015-04-24 15:20:43 -07002906 if (cellXY != null) {
2907 cellXY[0] = x;
2908 cellXY[1] = y;
2909 }
2910 foundCell = true;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002911 break;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002912 }
2913 }
2914
Michael Jurka28750fb2010-09-24 17:43:49 -07002915 return foundCell;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002916 }
2917
2918 /**
Winson Chungc07918d2011-07-01 15:35:26 -07002919 * A drag event has begun over this layout.
2920 * It may have begun over this layout (in which case onDragChild is called first),
2921 * or it may have begun on another layout.
2922 */
2923 void onDragEnter() {
Adam Cohenc6cc61d2012-04-04 12:47:08 -07002924 mDragEnforcer.onDragEnter();
Winson Chungc07918d2011-07-01 15:35:26 -07002925 mDragging = true;
2926 }
2927
2928 /**
Michael Jurka0280c3b2010-09-17 15:00:07 -07002929 * Called when drag has left this CellLayout or has been completed (successfully or not)
2930 */
2931 void onDragExit() {
Adam Cohenc6cc61d2012-04-04 12:47:08 -07002932 mDragEnforcer.onDragExit();
Joe Onorato4be866d2010-10-10 11:26:02 -07002933 // This can actually be called when we aren't in a drag, e.g. when adding a new
2934 // item to this layout via the customize drawer.
2935 // Guard against that case.
2936 if (mDragging) {
2937 mDragging = false;
Patrick Dubroyde7658b2010-09-27 11:15:43 -07002938 }
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07002939
2940 // Invalidate the drag data
Adam Cohend41fbf52012-02-16 23:53:59 -08002941 mDragCell[0] = mDragCell[1] = -1;
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07002942 mDragOutlineAnims[mDragOutlineCurrent].animateOut();
2943 mDragOutlineCurrent = (mDragOutlineCurrent + 1) % mDragOutlineAnims.length;
Adam Cohen19f37922012-03-21 11:59:11 -07002944 revertTempState();
Michael Jurka33945b22010-12-21 18:19:38 -08002945 setIsDragOverlapping(false);
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002946 }
2947
2948 /**
Winson Chungaafa03c2010-06-11 17:34:16 -07002949 * Mark a child as having been dropped.
Patrick Dubroyde7658b2010-09-27 11:15:43 -07002950 * At the beginning of the drag operation, the child may have been on another
Patrick Dubroyce34a972010-10-19 10:34:32 -07002951 * screen, but it is re-parented before this method is called.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002952 *
2953 * @param child The child that is being dropped
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002954 */
Adam Cohen716b51e2011-06-30 12:09:54 -07002955 void onDropChild(View child) {
Romain Guyd94533d2009-08-17 10:01:15 -07002956 if (child != null) {
2957 LayoutParams lp = (LayoutParams) child.getLayoutParams();
Romain Guy84f296c2009-11-04 15:00:44 -08002958 lp.dropped = true;
Romain Guyd94533d2009-08-17 10:01:15 -07002959 child.requestLayout();
Romain Guyd94533d2009-08-17 10:01:15 -07002960 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002961 }
2962
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002963 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002964 * Computes a bounding rectangle for a range of cells
Winson Chungaafa03c2010-06-11 17:34:16 -07002965 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002966 * @param cellX X coordinate of upper left corner expressed as a cell position
2967 * @param cellY Y coordinate of upper left corner expressed as a cell position
Winson Chungaafa03c2010-06-11 17:34:16 -07002968 * @param cellHSpan Width in cells
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002969 * @param cellVSpan Height in cells
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002970 * @param resultRect Rect into which to put the results
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002971 */
Adam Cohend41fbf52012-02-16 23:53:59 -08002972 public void cellToRect(int cellX, int cellY, int cellHSpan, int cellVSpan, Rect resultRect) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002973 final int cellWidth = mCellWidth;
2974 final int cellHeight = mCellHeight;
2975 final int widthGap = mWidthGap;
2976 final int heightGap = mHeightGap;
Winson Chungaafa03c2010-06-11 17:34:16 -07002977
Winson Chung4b825dcd2011-06-19 12:41:22 -07002978 final int hStartPadding = getPaddingLeft();
2979 final int vStartPadding = getPaddingTop();
Winson Chungaafa03c2010-06-11 17:34:16 -07002980
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002981 int width = cellHSpan * cellWidth + ((cellHSpan - 1) * widthGap);
2982 int height = cellVSpan * cellHeight + ((cellVSpan - 1) * heightGap);
2983
2984 int x = hStartPadding + cellX * (cellWidth + widthGap);
2985 int y = vStartPadding + cellY * (cellHeight + heightGap);
Winson Chungaafa03c2010-06-11 17:34:16 -07002986
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002987 resultRect.set(x, y, x + width, y + height);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002988 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002989
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002990 /**
Winson Chungaafa03c2010-06-11 17:34:16 -07002991 * Computes the required horizontal and vertical cell spans to always
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002992 * fit the given rectangle.
Winson Chungaafa03c2010-06-11 17:34:16 -07002993 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002994 * @param width Width in pixels
2995 * @param height Height in pixels
Patrick Dubroy8f86ddc2010-07-16 13:55:32 -07002996 * @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 -08002997 */
Winson Chung66700732013-08-20 16:56:15 -07002998 public static int[] rectToCell(int width, int height, int[] result) {
Winson Chung5f8afe62013-08-12 16:19:28 -07002999 LauncherAppState app = LauncherAppState.getInstance();
3000 DeviceProfile grid = app.getDynamicGrid().getDeviceProfile();
Winson Chung66700732013-08-20 16:56:15 -07003001 Rect padding = grid.getWorkspacePadding(grid.isLandscape ?
3002 CellLayout.LANDSCAPE : CellLayout.PORTRAIT);
Winson Chung5f8afe62013-08-12 16:19:28 -07003003
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003004 // Always assume we're working with the smallest span to make sure we
3005 // reserve enough space in both orientations.
Winson Chung66700732013-08-20 16:56:15 -07003006 int parentWidth = grid.calculateCellWidth(grid.widthPx
3007 - padding.left - padding.right, (int) grid.numColumns);
3008 int parentHeight = grid.calculateCellHeight(grid.heightPx
3009 - padding.top - padding.bottom, (int) grid.numRows);
3010 int smallerSize = Math.min(parentWidth, parentHeight);
Joe Onorato79e56262009-09-21 15:23:04 -04003011
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003012 // Always round up to next largest cell
Winson Chung54c725c2011-08-03 12:03:40 -07003013 int spanX = (int) Math.ceil(width / (float) smallerSize);
3014 int spanY = (int) Math.ceil(height / (float) smallerSize);
Joe Onorato79e56262009-09-21 15:23:04 -04003015
Patrick Dubroy8f86ddc2010-07-16 13:55:32 -07003016 if (result == null) {
3017 return new int[] { spanX, spanY };
3018 }
3019 result[0] = spanX;
3020 result[1] = spanY;
3021 return result;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003022 }
3023
3024 /**
Patrick Dubroy047379a2010-12-19 22:02:04 -08003025 * Calculate the grid spans needed to fit given item
3026 */
3027 public void calculateSpans(ItemInfo info) {
3028 final int minWidth;
3029 final int minHeight;
3030
3031 if (info instanceof LauncherAppWidgetInfo) {
3032 minWidth = ((LauncherAppWidgetInfo) info).minWidth;
3033 minHeight = ((LauncherAppWidgetInfo) info).minHeight;
3034 } else if (info instanceof PendingAddWidgetInfo) {
3035 minWidth = ((PendingAddWidgetInfo) info).minWidth;
3036 minHeight = ((PendingAddWidgetInfo) info).minHeight;
3037 } else {
3038 // It's not a widget, so it must be 1x1
3039 info.spanX = info.spanY = 1;
3040 return;
3041 }
3042 int[] spans = rectToCell(minWidth, minHeight, null);
3043 info.spanX = spans[0];
3044 info.spanY = spans[1];
3045 }
3046
Michael Jurka0280c3b2010-09-17 15:00:07 -07003047 private void clearOccupiedCells() {
3048 for (int x = 0; x < mCountX; x++) {
3049 for (int y = 0; y < mCountY; y++) {
3050 mOccupied[x][y] = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003051 }
3052 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07003053 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003054
Adam Cohend4844c32011-02-18 19:25:06 -08003055 public void markCellsAsOccupiedForView(View view) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07003056 if (view == null || view.getParent() != mShortcutsAndWidgets) return;
Michael Jurka0280c3b2010-09-17 15:00:07 -07003057 LayoutParams lp = (LayoutParams) view.getLayoutParams();
Sunny Goyalf7a29e82015-04-24 15:20:43 -07003058 markCellsForView(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan, mOccupied, true);
Michael Jurka0280c3b2010-09-17 15:00:07 -07003059 }
3060
Adam Cohend4844c32011-02-18 19:25:06 -08003061 public void markCellsAsUnoccupiedForView(View view) {
Michael Jurkaa52570f2012-03-20 03:18:20 -07003062 if (view == null || view.getParent() != mShortcutsAndWidgets) return;
Michael Jurka0280c3b2010-09-17 15:00:07 -07003063 LayoutParams lp = (LayoutParams) view.getLayoutParams();
Sunny Goyalf7a29e82015-04-24 15:20:43 -07003064 markCellsForView(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan, mOccupied, false);
Michael Jurka0280c3b2010-09-17 15:00:07 -07003065 }
3066
Adam Cohen482ed822012-03-02 14:15:13 -08003067 private void markCellsForView(int cellX, int cellY, int spanX, int spanY, boolean[][] occupied,
3068 boolean value) {
3069 if (cellX < 0 || cellY < 0) return;
Michael Jurka0280c3b2010-09-17 15:00:07 -07003070 for (int x = cellX; x < cellX + spanX && x < mCountX; x++) {
3071 for (int y = cellY; y < cellY + spanY && y < mCountY; y++) {
Adam Cohen482ed822012-03-02 14:15:13 -08003072 occupied[x][y] = value;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003073 }
3074 }
3075 }
3076
Adam Cohen2801caf2011-05-13 20:57:39 -07003077 public int getDesiredWidth() {
Michael Jurka8b805b12012-04-18 14:23:14 -07003078 return getPaddingLeft() + getPaddingRight() + (mCountX * mCellWidth) +
Adam Cohen2801caf2011-05-13 20:57:39 -07003079 (Math.max((mCountX - 1), 0) * mWidthGap);
3080 }
3081
3082 public int getDesiredHeight() {
Michael Jurka8b805b12012-04-18 14:23:14 -07003083 return getPaddingTop() + getPaddingBottom() + (mCountY * mCellHeight) +
Adam Cohen2801caf2011-05-13 20:57:39 -07003084 (Math.max((mCountY - 1), 0) * mHeightGap);
3085 }
3086
Michael Jurka66d72172011-04-12 16:29:25 -07003087 public boolean isOccupied(int x, int y) {
3088 if (x < mCountX && y < mCountY) {
3089 return mOccupied[x][y];
3090 } else {
3091 throw new RuntimeException("Position exceeds the bound of this CellLayout");
3092 }
3093 }
3094
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003095 @Override
3096 public ViewGroup.LayoutParams generateLayoutParams(AttributeSet attrs) {
3097 return new CellLayout.LayoutParams(getContext(), attrs);
3098 }
3099
3100 @Override
3101 protected boolean checkLayoutParams(ViewGroup.LayoutParams p) {
3102 return p instanceof CellLayout.LayoutParams;
3103 }
3104
3105 @Override
3106 protected ViewGroup.LayoutParams generateLayoutParams(ViewGroup.LayoutParams p) {
3107 return new CellLayout.LayoutParams(p);
3108 }
3109
3110 public static class LayoutParams extends ViewGroup.MarginLayoutParams {
3111 /**
3112 * Horizontal location of the item in the grid.
3113 */
3114 @ViewDebug.ExportedProperty
3115 public int cellX;
3116
3117 /**
3118 * Vertical location of the item in the grid.
3119 */
3120 @ViewDebug.ExportedProperty
3121 public int cellY;
3122
3123 /**
Adam Cohen482ed822012-03-02 14:15:13 -08003124 * Temporary horizontal location of the item in the grid during reorder
3125 */
3126 public int tmpCellX;
3127
3128 /**
3129 * Temporary vertical location of the item in the grid during reorder
3130 */
3131 public int tmpCellY;
3132
3133 /**
3134 * Indicates that the temporary coordinates should be used to layout the items
3135 */
3136 public boolean useTmpCoords;
3137
3138 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003139 * Number of cells spanned horizontally by the item.
3140 */
3141 @ViewDebug.ExportedProperty
3142 public int cellHSpan;
3143
3144 /**
3145 * Number of cells spanned vertically by the item.
3146 */
3147 @ViewDebug.ExportedProperty
3148 public int cellVSpan;
Winson Chungaafa03c2010-06-11 17:34:16 -07003149
Adam Cohen1b607ed2011-03-03 17:26:50 -08003150 /**
3151 * Indicates whether the item will set its x, y, width and height parameters freely,
3152 * or whether these will be computed based on cellX, cellY, cellHSpan and cellVSpan.
3153 */
Adam Cohend4844c32011-02-18 19:25:06 -08003154 public boolean isLockedToGrid = true;
3155
Adam Cohen482ed822012-03-02 14:15:13 -08003156 /**
Adam Cohenec40b2b2013-07-23 15:52:40 -07003157 * Indicates that this item should use the full extents of its parent.
3158 */
3159 public boolean isFullscreen = false;
3160
3161 /**
Adam Cohen482ed822012-03-02 14:15:13 -08003162 * Indicates whether this item can be reordered. Always true except in the case of the
3163 * the AllApps button.
3164 */
3165 public boolean canReorder = true;
3166
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003167 // X coordinate of the view in the layout.
3168 @ViewDebug.ExportedProperty
3169 int x;
3170 // Y coordinate of the view in the layout.
3171 @ViewDebug.ExportedProperty
3172 int y;
3173
Romain Guy84f296c2009-11-04 15:00:44 -08003174 boolean dropped;
Romain Guyfcb9e712009-10-02 16:06:52 -07003175
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003176 public LayoutParams(Context c, AttributeSet attrs) {
3177 super(c, attrs);
3178 cellHSpan = 1;
3179 cellVSpan = 1;
3180 }
3181
3182 public LayoutParams(ViewGroup.LayoutParams source) {
3183 super(source);
3184 cellHSpan = 1;
3185 cellVSpan = 1;
3186 }
Winson Chungaafa03c2010-06-11 17:34:16 -07003187
3188 public LayoutParams(LayoutParams source) {
3189 super(source);
3190 this.cellX = source.cellX;
3191 this.cellY = source.cellY;
3192 this.cellHSpan = source.cellHSpan;
3193 this.cellVSpan = source.cellVSpan;
3194 }
3195
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003196 public LayoutParams(int cellX, int cellY, int cellHSpan, int cellVSpan) {
Romain Guy8f19cdd2010-01-08 15:07:00 -08003197 super(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003198 this.cellX = cellX;
3199 this.cellY = cellY;
3200 this.cellHSpan = cellHSpan;
3201 this.cellVSpan = cellVSpan;
3202 }
3203
Adam Cohen2374abf2013-04-16 14:56:57 -07003204 public void setup(int cellWidth, int cellHeight, int widthGap, int heightGap,
3205 boolean invertHorizontally, int colCount) {
Adam Cohend4844c32011-02-18 19:25:06 -08003206 if (isLockedToGrid) {
3207 final int myCellHSpan = cellHSpan;
3208 final int myCellVSpan = cellVSpan;
Adam Cohen2374abf2013-04-16 14:56:57 -07003209 int myCellX = useTmpCoords ? tmpCellX : cellX;
3210 int myCellY = useTmpCoords ? tmpCellY : cellY;
3211
3212 if (invertHorizontally) {
3213 myCellX = colCount - myCellX - cellHSpan;
3214 }
Adam Cohen1b607ed2011-03-03 17:26:50 -08003215
Adam Cohend4844c32011-02-18 19:25:06 -08003216 width = myCellHSpan * cellWidth + ((myCellHSpan - 1) * widthGap) -
3217 leftMargin - rightMargin;
3218 height = myCellVSpan * cellHeight + ((myCellVSpan - 1) * heightGap) -
3219 topMargin - bottomMargin;
Winson Chungeecf02d2012-03-02 17:14:58 -08003220 x = (int) (myCellX * (cellWidth + widthGap) + leftMargin);
3221 y = (int) (myCellY * (cellHeight + heightGap) + topMargin);
Adam Cohend4844c32011-02-18 19:25:06 -08003222 }
3223 }
Winson Chungaafa03c2010-06-11 17:34:16 -07003224
Winson Chungaafa03c2010-06-11 17:34:16 -07003225 public String toString() {
3226 return "(" + this.cellX + ", " + this.cellY + ")";
3227 }
Adam Cohen7f4eabe2011-04-21 16:19:16 -07003228
3229 public void setWidth(int width) {
3230 this.width = width;
3231 }
3232
3233 public int getWidth() {
3234 return width;
3235 }
3236
3237 public void setHeight(int height) {
3238 this.height = height;
3239 }
3240
3241 public int getHeight() {
3242 return height;
3243 }
3244
3245 public void setX(int x) {
3246 this.x = x;
3247 }
3248
3249 public int getX() {
3250 return x;
3251 }
3252
3253 public void setY(int y) {
3254 this.y = y;
3255 }
3256
3257 public int getY() {
3258 return y;
3259 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003260 }
3261
Michael Jurka0280c3b2010-09-17 15:00:07 -07003262 // This class stores info for two purposes:
3263 // 1. When dragging items (mDragInfo in Workspace), we store the View, its cellX & cellY,
3264 // its spanX, spanY, and the screen it is on
3265 // 2. When long clicking on an empty cell in a CellLayout, we save information about the
3266 // cellX and cellY coordinates and which page was clicked. We then set this as a tag on
3267 // the CellLayout that was long clicked
Michael Jurkae5fb0f22011-04-11 13:27:46 -07003268 static final class CellInfo {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003269 View cell;
Michael Jurkaa63c4522010-08-19 13:52:27 -07003270 int cellX = -1;
3271 int cellY = -1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003272 int spanX;
3273 int spanY;
Adam Cohendcd297f2013-06-18 13:13:40 -07003274 long screenId;
Winson Chung3d503fb2011-07-13 17:25:49 -07003275 long container;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003276
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003277 CellInfo(View v, ItemInfo info) {
3278 cell = v;
3279 cellX = info.cellX;
3280 cellY = info.cellY;
3281 spanX = info.spanX;
3282 spanY = info.spanY;
3283 screenId = info.screenId;
3284 container = info.container;
3285 }
3286
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003287 @Override
3288 public String toString() {
Winson Chungaafa03c2010-06-11 17:34:16 -07003289 return "Cell[view=" + (cell == null ? "null" : cell.getClass())
3290 + ", x=" + cellX + ", y=" + cellY + "]";
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003291 }
3292 }
Michael Jurkad771c962011-08-09 15:00:48 -07003293
3294 public boolean lastDownOnOccupiedCell() {
3295 return mLastDownOnOccupiedCell;
3296 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003297}