blob: 7e17a54f38e1c3ce02e83b605a828a05414f3cef [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
Joe Onoratoa5902522009-07-30 13:37:37 -070017package com.android.launcher2;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080018
Michael Jurka8edd75c2010-12-17 20:15:06 -080019import com.android.launcher.R;
20import com.android.launcher2.InstallWidgetReceiver.WidgetMimeTypeHandlerData;
Adam Powell495f2892010-04-16 16:40:55 -070021
Michael Jurka0280c3b2010-09-17 15:00:07 -070022import android.animation.Animator;
Michael Jurka8edd75c2010-12-17 20:15:06 -080023import android.animation.AnimatorListenerAdapter;
Chet Haaseb1254a62010-09-07 13:35:00 -070024import android.animation.AnimatorSet;
Michael Jurka0280c3b2010-09-17 15:00:07 -070025import android.animation.ObjectAnimator;
Patrick Dubroycd68ff52010-10-28 17:57:05 -070026import android.animation.TimeInterpolator;
27import android.animation.ValueAnimator;
Michael Jurka8edd75c2010-12-17 20:15:06 -080028import android.animation.Animator.AnimatorListener;
Patrick Dubroycd68ff52010-10-28 17:57:05 -070029import android.animation.ValueAnimator.AnimatorUpdateListener;
Winson Chung68846fd2010-10-29 11:00:27 -070030import android.app.AlertDialog;
Dianne Hackborn8f573952009-08-10 23:21:09 -070031import android.app.WallpaperManager;
Romain Guy629de3e2010-01-13 12:20:59 -080032import android.appwidget.AppWidgetManager;
33import android.appwidget.AppWidgetProviderInfo;
Winson Chunga9abd0e2010-10-27 17:18:37 -070034import android.content.ClipData;
35import android.content.ClipDescription;
Adam Powell495f2892010-04-16 16:40:55 -070036import android.content.ComponentName;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080037import android.content.Context;
38import android.content.Intent;
Adam Powell495f2892010-04-16 16:40:55 -070039import android.content.pm.PackageManager;
Romain Guy5c16f3e2010-01-12 17:24:58 -080040import android.content.pm.ProviderInfo;
Patrick Dubroy7247f632010-08-04 16:02:59 -070041import android.content.res.Resources;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080042import android.content.res.TypedArray;
Joe Onorato4be866d2010-10-10 11:26:02 -070043import android.graphics.Bitmap;
Adam Lesinski6b879f02010-11-04 16:15:23 -070044import android.graphics.Camera;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080045import android.graphics.Canvas;
Michael Jurkaa63c4522010-08-19 13:52:27 -070046import android.graphics.Matrix;
Winson Chunga9abd0e2010-10-27 17:18:37 -070047import android.graphics.Paint;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080048import android.graphics.Rect;
Winson Chunga9abd0e2010-10-27 17:18:37 -070049import android.graphics.RectF;
Joe Onorato4be866d2010-10-10 11:26:02 -070050import android.graphics.Region.Op;
The Android Open Source Projectf96811c2009-03-18 17:39:48 -070051import android.graphics.drawable.Drawable;
Romain Guy5c16f3e2010-01-12 17:24:58 -080052import android.net.Uri;
Joe Onorato956091b2010-02-19 12:47:40 -080053import android.os.IBinder;
Adam Powell495f2892010-04-16 16:40:55 -070054import android.os.Parcelable;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080055import android.util.AttributeSet;
Daniel Sandler291ad122010-05-24 16:03:53 -040056import android.util.Log;
Winson Chung580e2772010-11-10 16:03:00 -080057import android.util.Pair;
Winson Chunga34abf82010-11-12 12:10:35 -080058import android.view.Display;
Winson Chunga9abd0e2010-10-27 17:18:37 -070059import android.view.DragEvent;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080060import android.view.MotionEvent;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080061import android.view.View;
Winson Chung6e314082011-01-27 16:46:51 -080062import android.view.ViewGroup;
Patrick Dubroycd68ff52010-10-28 17:57:05 -070063import android.view.animation.DecelerateInterpolator;
Michael Jurka3c38d562011-02-18 19:22:12 -080064import android.widget.TabHost;
65import android.widget.TabWidget;
The Android Open Source Projectf96811c2009-03-18 17:39:48 -070066import android.widget.TextView;
Winson Chunga9abd0e2010-10-27 17:18:37 -070067import android.widget.Toast;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080068
Michael Jurka8edd75c2010-12-17 20:15:06 -080069import java.util.ArrayList;
70import java.util.HashSet;
71import java.util.List;
Romain Guyedcce092010-03-04 13:03:17 -080072
The Android Open Source Project31dd5032009-03-03 19:32:27 -080073/**
Michael Jurka0142d492010-08-25 17:46:15 -070074 * The workspace is a wide area with a wallpaper and a finite number of pages.
75 * Each page contains a number of icons, folders or widgets the user can
Winson Chungaafa03c2010-06-11 17:34:16 -070076 * interact with. A workspace is meant to be used with a fixed width only.
The Android Open Source Project31dd5032009-03-03 19:32:27 -080077 */
Michael Jurka0142d492010-08-25 17:46:15 -070078public class Workspace extends SmoothPagedView
Patrick Dubroye708c522011-03-01 16:03:43 -080079 implements DropTarget, DragSource, DragScroller, View.OnTouchListener,
80 View.OnClickListener {
Romain Guye47f55c2009-11-11 19:21:22 -080081 @SuppressWarnings({"UnusedDeclaration"})
Joe Onorato3a8820b2009-11-10 15:06:42 -080082 private static final String TAG = "Launcher.Workspace";
Michael Jurka0142d492010-08-25 17:46:15 -070083
Michael Jurkadee05892010-07-27 10:01:56 -070084 // This is how much the workspace shrinks when we enter all apps or
85 // customization mode
86 private static final float SHRINK_FACTOR = 0.16f;
Adam Cohena985e592010-09-09 11:23:48 -070087
Michael Jurkad3ef3062010-11-23 16:23:58 -080088 // How much the screens shrink when we enter spring loaded drag mode
89 private static final float SPRING_LOADED_DRAG_SHRINK_FACTOR = 0.7f;
90
Adam Cohenf34bab52010-09-30 14:11:56 -070091 // Y rotation to apply to the workspace screens
92 private static final float WORKSPACE_ROTATION = 12.5f;
Adam Cohena985e592010-09-09 11:23:48 -070093
94 // These are extra scale factors to apply to the mini home screens
95 // so as to achieve the desired transform
Adam Cohen1b0aaac2010-10-28 11:11:18 -070096 private static final float EXTRA_SCALE_FACTOR_0 = 0.972f;
Adam Cohena985e592010-09-09 11:23:48 -070097 private static final float EXTRA_SCALE_FACTOR_1 = 1.0f;
Adam Cohen1b0aaac2010-10-28 11:11:18 -070098 private static final float EXTRA_SCALE_FACTOR_2 = 1.10f;
Adam Cohena985e592010-09-09 11:23:48 -070099
Adam Cohen68d73932010-11-15 10:50:58 -0800100 private static final int CHILDREN_OUTLINE_FADE_OUT_DELAY = 0;
101 private static final int CHILDREN_OUTLINE_FADE_OUT_DURATION = 375;
Winson Chung9171e6d2010-11-17 17:39:27 -0800102 private static final int CHILDREN_OUTLINE_FADE_IN_DURATION = 100;
Adam Cohenf34bab52010-09-30 14:11:56 -0700103
Winson Chungf135c6c2010-11-18 16:32:08 -0800104 private static final int BACKGROUND_FADE_OUT_DURATION = 350;
Winson Chung9171e6d2010-11-17 17:39:27 -0800105 private static final int BACKGROUND_FADE_IN_DURATION = 350;
106
107 // These animators are used to fade the children's outlines
108 private ObjectAnimator mChildrenOutlineFadeInAnimation;
109 private ObjectAnimator mChildrenOutlineFadeOutAnimation;
110 private float mChildrenOutlineAlpha = 0;
111
112 // These properties refer to the background protection gradient used for AllApps and Customize
Michael Jurkae0f5a612011-02-07 16:45:41 -0800113 private ValueAnimator mBackgroundFadeInAnimation;
114 private ValueAnimator mBackgroundFadeOutAnimation;
Winson Chung9171e6d2010-11-17 17:39:27 -0800115 private Drawable mBackground;
Winson Chung8d006d52010-11-29 15:55:29 -0800116 private Drawable mCustomizeTrayBackground;
Michael Jurka25356e72011-03-03 14:53:11 -0800117 boolean mDrawBackground = true;
Winson Chung8d006d52010-11-29 15:55:29 -0800118 private boolean mDrawCustomizeTrayBackground;
Adam Cohenf34bab52010-09-30 14:11:56 -0700119 private float mBackgroundAlpha = 0;
Adam Cohen68d73932010-11-15 10:50:58 -0800120 private float mOverScrollMaxBackgroundAlpha = 0.0f;
Adam Cohene0f66b52010-11-23 15:06:07 -0800121 private int mOverScrollPageIndex = -1;
Adam Cohenf34bab52010-09-30 14:11:56 -0700122
Winson Chung88127032010-12-13 12:11:33 -0800123 private View mCustomizationDrawer;
124 private View mCustomizationDrawerContent;
125 private int[] mCustomizationDrawerPos = new int[2];
126 private float[] mCustomizationDrawerTransformedPos = new float[2];
127
Dianne Hackborn8f573952009-08-10 23:21:09 -0700128 private final WallpaperManager mWallpaperManager;
Michael Jurka9c6fbed2011-03-02 17:41:34 -0800129 private IBinder mWindowToken;
Winson Chungaafa03c2010-06-11 17:34:16 -0700130
Michael Jurka0142d492010-08-25 17:46:15 -0700131 private int mDefaultPage;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800132
Michael Jurkad3ef3062010-11-23 16:23:58 -0800133 private boolean mIsDragInProcess = false;
Adam Cohen21f12b52010-10-07 17:15:37 -0700134
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800135 /**
136 * CellInfo for the cell that is currently being dragged
137 */
138 private CellLayout.CellInfo mDragInfo;
Winson Chungaafa03c2010-06-11 17:34:16 -0700139
Jeff Sharkey70864282009-04-07 21:08:40 -0700140 /**
141 * Target drop area calculated during last acceptDrop call.
142 */
143 private int[] mTargetCell = null;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800144
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700145 /**
146 * The CellLayout that is currently being dragged over
147 */
148 private CellLayout mDragTargetLayout = null;
149
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800150 private Launcher mLauncher;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800151 private IconCache mIconCache;
Joe Onorato00acb122009-08-04 16:04:30 -0400152 private DragController mDragController;
Winson Chungaafa03c2010-06-11 17:34:16 -0700153
Michael Jurka4516c112010-10-07 15:13:47 -0700154 // These are temporary variables to prevent having to allocate a new object just to
155 // return an (x, y) value from helper functions. Do NOT use them to maintain other state.
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800156 private int[] mTempCell = new int[2];
Jeff Sharkey70864282009-04-07 21:08:40 -0700157 private int[] mTempEstimate = new int[2];
Michael Jurka0280c3b2010-09-17 15:00:07 -0700158 private float[] mTempOriginXY = new float[2];
Michael Jurkaa63c4522010-08-19 13:52:27 -0700159 private float[] mTempDragCoordinates = new float[2];
Michael Jurka4516c112010-10-07 15:13:47 -0700160 private float[] mTempTouchCoordinates = new float[2];
161 private float[] mTempCellLayoutCenterCoordinates = new float[2];
Michael Jurkaa63c4522010-08-19 13:52:27 -0700162 private float[] mTempDragBottomRightCoordinates = new float[2];
Michael Jurka0280c3b2010-09-17 15:00:07 -0700163 private Matrix mTempInverseMatrix = new Matrix();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800164
Michael Jurkac2f7f472010-12-14 15:34:42 -0800165 private SpringLoadedDragController mSpringLoadedDragController;
Michael Jurkad3ef3062010-11-23 16:23:58 -0800166
Adam Cohend22015c2010-07-26 22:02:18 -0700167 private static final int DEFAULT_CELL_COUNT_X = 4;
168 private static final int DEFAULT_CELL_COUNT_Y = 4;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800169
Romain Guy8a73c512009-11-09 19:19:59 -0800170 private Drawable mPreviousIndicator;
171 private Drawable mNextIndicator;
Winson Chungaafa03c2010-06-11 17:34:16 -0700172
Patrick Dubroy1262e362010-10-06 15:49:50 -0700173 // State variable that indicates whether the pages are small (ie when you're
Michael Jurkadee05892010-07-27 10:01:56 -0700174 // in all apps or customize mode)
Michael Jurkac0e8fca2010-10-06 16:41:29 -0700175 private boolean mIsSmall = false;
176 private boolean mIsInUnshrinkAnimation = false;
Michael Jurkabea15192010-11-17 12:33:46 -0800177 private AnimatorListener mShrinkAnimationListener;
Michael Jurkab8e14472010-12-20 16:06:10 -0800178 private AnimatorListener mUnshrinkAnimationListener;
Michael Jurkaaf91de02010-11-23 16:23:58 -0800179 enum ShrinkState { TOP, SPRING_LOADED, MIDDLE, BOTTOM_HIDDEN, BOTTOM_VISIBLE };
180 private ShrinkState mShrinkState;
Michael Jurkad3ef3062010-11-23 16:23:58 -0800181 private boolean mWasSpringLoadedOnDragExit = false;
Michael Jurka883f55b2010-10-21 15:47:14 -0700182 private boolean mWaitingToShrink = false;
Michael Jurkaaf91de02010-11-23 16:23:58 -0800183 private ShrinkState mWaitingToShrinkState;
Michael Jurka3c4c20f2010-10-28 15:36:06 -0700184 private AnimatorSet mAnimator;
Michael Jurkadee05892010-07-27 10:01:56 -0700185
Patrick Dubroy54fa3b92010-11-17 12:18:45 -0800186 /** Is the user is dragging an item near the edge of a page? */
Patrick Dubroy1262e362010-10-06 15:49:50 -0700187 private boolean mInScrollArea = false;
188
Patrick Dubroy54fa3b92010-11-17 12:18:45 -0800189 /** If mInScrollArea is true, the direction of the scroll. */
190 private int mPendingScrollDirection = DragController.SCROLL_NONE;
191
Patrick Dubroy8e58e912010-10-14 13:21:48 -0700192 private final HolographicOutlineHelper mOutlineHelper = new HolographicOutlineHelper();
Joe Onorato4be866d2010-10-10 11:26:02 -0700193 private Bitmap mDragOutline = null;
Patrick Dubroy8e58e912010-10-14 13:21:48 -0700194 private final Rect mTempRect = new Rect();
195 private final int[] mTempXY = new int[2];
Joe Onorato4be866d2010-10-10 11:26:02 -0700196
Patrick Dubroycd68ff52010-10-28 17:57:05 -0700197 private ValueAnimator mDropAnim = null;
198 private TimeInterpolator mQuintEaseOutInterpolator = new DecelerateInterpolator(2.5f);
199 private View mDropView = null;
200 private int[] mDropViewPos = new int[] { -1, -1 };
201
Winson Chunga9abd0e2010-10-27 17:18:37 -0700202 // Paint used to draw external drop outline
203 private final Paint mExternalDragOutlinePaint = new Paint();
204
Adam Lesinski6b879f02010-11-04 16:15:23 -0700205 // Camera and Matrix used to determine the final position of a neighboring CellLayout
206 private final Matrix mMatrix = new Matrix();
207 private final Camera mCamera = new Camera();
208 private final float mTempFloat2[] = new float[2];
209
Michael Jurkac5b262c2011-01-12 20:24:50 -0800210 enum WallpaperVerticalOffset { TOP, MIDDLE, BOTTOM };
211 int mWallpaperWidth;
212 int mWallpaperHeight;
Michael Jurkaab1983f2011-01-18 15:50:17 -0800213 WallpaperOffsetInterpolator mWallpaperOffset;
Michael Jurkac5b262c2011-01-12 20:24:50 -0800214 boolean mUpdateWallpaperOffsetImmediately = false;
Michael Jurkaab1983f2011-01-18 15:50:17 -0800215 boolean mSyncWallpaperOffsetWithScroll = true;
Adam Cohen26976d92011-03-22 15:33:33 -0700216 private Runnable mDelayedResizeRunnable;
Michael Jurkac5b262c2011-01-12 20:24:50 -0800217
Michael Jurka0bb85632011-01-26 00:00:44 -0800218 // info about the last drag
219 private DragView mLastDragView;
220 private int mLastDragOriginX;
221 private int mLastDragOriginY;
222 private int mLastDragXOffset;
223 private int mLastDragYOffset;
224
Adam Cohenf8d28232011-02-01 21:47:00 -0800225 // Variables relating to touch disambiguation (scrolling workspace vs. scrolling a widget)
226 private float mXDown;
227 private float mYDown;
228 final static float START_DAMPING_TOUCH_SLOP_ANGLE = (float) Math.PI / 6;
229 final static float MAX_SWIPE_ANGLE = (float) Math.PI / 3;
230 final static float TOUCH_SLOP_DAMPING_FACTOR = 4;
231
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800232 /**
233 * Used to inflate the Workspace from XML.
234 *
235 * @param context The application's context.
Michael Jurka0142d492010-08-25 17:46:15 -0700236 * @param attrs The attributes set containing the Workspace's customization values.
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800237 */
238 public Workspace(Context context, AttributeSet attrs) {
239 this(context, attrs, 0);
240 }
241
242 /**
243 * Used to inflate the Workspace from XML.
244 *
245 * @param context The application's context.
Michael Jurka0142d492010-08-25 17:46:15 -0700246 * @param attrs The attributes set containing the Workspace's customization values.
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800247 * @param defStyle Unused.
248 */
249 public Workspace(Context context, AttributeSet attrs, int defStyle) {
250 super(context, attrs, defStyle);
Michael Jurka0142d492010-08-25 17:46:15 -0700251 mContentIsRefreshable = false;
Michael Jurka5f1c5092010-09-03 14:15:02 -0700252
253 if (!LauncherApplication.isScreenXLarge()) {
254 mFadeInAdjacentScreens = false;
255 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800256
Dianne Hackborn8f573952009-08-10 23:21:09 -0700257 mWallpaperManager = WallpaperManager.getInstance(context);
Winson Chungaafa03c2010-06-11 17:34:16 -0700258
259 TypedArray a = context.obtainStyledAttributes(attrs,
260 R.styleable.Workspace, defStyle, 0);
Adam Cohend22015c2010-07-26 22:02:18 -0700261 int cellCountX = a.getInt(R.styleable.Workspace_cellCountX, DEFAULT_CELL_COUNT_X);
262 int cellCountY = a.getInt(R.styleable.Workspace_cellCountY, DEFAULT_CELL_COUNT_Y);
Michael Jurka0142d492010-08-25 17:46:15 -0700263 mDefaultPage = a.getInt(R.styleable.Workspace_defaultScreen, 1);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800264 a.recycle();
265
Adam Cohend22015c2010-07-26 22:02:18 -0700266 LauncherModel.updateWorkspaceLayoutCells(cellCountX, cellCountY);
Joe Onorato0d44e942009-11-16 18:20:51 -0800267 setHapticFeedbackEnabled(false);
Michael Jurka0142d492010-08-25 17:46:15 -0700268
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800269 initWorkspace();
Winson Chungc35afb22011-02-23 13:01:49 -0800270
271 // Disable multitouch across the workspace/all apps/customize tray
272 setMotionEventSplittingEnabled(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800273 }
274
275 /**
276 * Initializes various states for this workspace.
277 */
Michael Jurka0142d492010-08-25 17:46:15 -0700278 protected void initWorkspace() {
Joe Onorato0589f0f2010-02-08 13:44:00 -0800279 Context context = getContext();
Michael Jurka0142d492010-08-25 17:46:15 -0700280 mCurrentPage = mDefaultPage;
281 Launcher.setScreen(mCurrentPage);
Joe Onorato0589f0f2010-02-08 13:44:00 -0800282 LauncherApplication app = (LauncherApplication)context.getApplicationContext();
283 mIconCache = app.getIconCache();
Winson Chunga9abd0e2010-10-27 17:18:37 -0700284 mExternalDragOutlinePaint.setAntiAlias(true);
Patrick Dubroycd68ff52010-10-28 17:57:05 -0700285 setWillNotDraw(false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800286
Winson Chungb4b7fa72010-11-18 14:38:53 -0800287 try {
288 final Resources res = getResources();
289 mBackground = res.getDrawable(R.drawable.all_apps_bg_gradient);
Winson Chung8d006d52010-11-29 15:55:29 -0800290 mCustomizeTrayBackground = res.getDrawable(R.drawable.customize_bg_gradient);
Winson Chungb4b7fa72010-11-18 14:38:53 -0800291 } catch (Resources.NotFoundException e) {
292 // In this case, we will skip drawing background protection
293 }
Winson Chung9171e6d2010-11-17 17:39:27 -0800294
Michael Jurka8edd75c2010-12-17 20:15:06 -0800295 mUnshrinkAnimationListener = new AnimatorListenerAdapter() {
Michael Jurka3c4c20f2010-10-28 15:36:06 -0700296 @Override
Michael Jurkac0e8fca2010-10-06 16:41:29 -0700297 public void onAnimationStart(Animator animation) {
298 mIsInUnshrinkAnimation = true;
299 }
Michael Jurka0bb85632011-01-26 00:00:44 -0800300
Michael Jurka3c4c20f2010-10-28 15:36:06 -0700301 @Override
Michael Jurka8edd75c2010-12-17 20:15:06 -0800302 public void onAnimationEnd(Animator animation) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -0700303 mIsInUnshrinkAnimation = false;
Michael Jurkaab1983f2011-01-18 15:50:17 -0800304 mSyncWallpaperOffsetWithScroll = true;
Michael Jurka0bb85632011-01-26 00:00:44 -0800305 if (mShrinkState == ShrinkState.SPRING_LOADED) {
306 View layout = null;
307 if (mLastDragView != null) {
308 layout = findMatchingPageForDragOver(mLastDragView, mLastDragOriginX,
309 mLastDragOriginY, mLastDragXOffset, mLastDragYOffset);
310 }
311 mSpringLoadedDragController.onEnterSpringLoadedMode(layout == null);
312 } else {
Winson Chunga58f8bb2010-12-14 18:18:05 -0800313 mDrawCustomizeTrayBackground = false;
314 }
Michael Jurkaca5b8362011-01-27 13:23:26 -0800315 mWallpaperOffset.setOverrideHorizontalCatchupConstant(false);
Patrick Dubroy60b7c532011-01-16 17:19:32 -0800316 mAnimator = null;
Michael Jurkace7e05f2011-02-01 22:02:35 -0800317 enableChildrenLayers(false);
Michael Jurkabea15192010-11-17 12:33:46 -0800318 }
319 };
320 mShrinkAnimationListener = new AnimatorListenerAdapter() {
321 @Override
Michael Jurkace7e05f2011-02-01 22:02:35 -0800322 public void onAnimationStart(Animator animation) {
323 enableChildrenLayers(true);
324 }
325 @Override
Michael Jurkabea15192010-11-17 12:33:46 -0800326 public void onAnimationEnd(Animator animation) {
Michael Jurkaca5b8362011-01-27 13:23:26 -0800327 mWallpaperOffset.setOverrideHorizontalCatchupConstant(false);
Patrick Dubroy60b7c532011-01-16 17:19:32 -0800328 mAnimator = null;
Michael Jurkadee05892010-07-27 10:01:56 -0700329 }
Michael Jurkadee05892010-07-27 10:01:56 -0700330 };
Michael Jurka0142d492010-08-25 17:46:15 -0700331 mSnapVelocity = 600;
Michael Jurkaab1983f2011-01-18 15:50:17 -0800332 mWallpaperOffset = new WallpaperOffsetInterpolator();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800333 }
334
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800335 @Override
Adam Cohenf34bab52010-09-30 14:11:56 -0700336 protected int getScrollMode() {
337 if (LauncherApplication.isScreenXLarge()) {
Adam Cohene0f66b52010-11-23 15:06:07 -0800338 return SmoothPagedView.X_LARGE_MODE;
Adam Cohenf34bab52010-09-30 14:11:56 -0700339 } else {
Adam Cohene0f66b52010-11-23 15:06:07 -0800340 return SmoothPagedView.DEFAULT_MODE;
Adam Cohenf34bab52010-09-30 14:11:56 -0700341 }
342 }
343
344 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800345 public void addView(View child, int index, LayoutParams params) {
346 if (!(child instanceof CellLayout)) {
347 throw new IllegalArgumentException("A Workspace can only have CellLayout children.");
348 }
Adam Cohen21f12b52010-10-07 17:15:37 -0700349 ((CellLayout) child).setOnInterceptTouchListener(this);
Patrick Dubroye708c522011-03-01 16:03:43 -0800350 child.setOnClickListener(this);
351 child.setClickable(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800352 super.addView(child, index, params);
353 }
354
355 @Override
356 public void addView(View child) {
357 if (!(child instanceof CellLayout)) {
358 throw new IllegalArgumentException("A Workspace can only have CellLayout children.");
359 }
Adam Cohen21f12b52010-10-07 17:15:37 -0700360 ((CellLayout) child).setOnInterceptTouchListener(this);
Patrick Dubroye708c522011-03-01 16:03:43 -0800361 child.setOnClickListener(this);
362 child.setClickable(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800363 super.addView(child);
364 }
365
366 @Override
367 public void addView(View child, int index) {
368 if (!(child instanceof CellLayout)) {
369 throw new IllegalArgumentException("A Workspace can only have CellLayout children.");
370 }
Adam Cohen21f12b52010-10-07 17:15:37 -0700371 ((CellLayout) child).setOnInterceptTouchListener(this);
Patrick Dubroye708c522011-03-01 16:03:43 -0800372 child.setOnClickListener(this);
373 child.setClickable(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800374 super.addView(child, index);
375 }
376
377 @Override
378 public void addView(View child, int width, int height) {
379 if (!(child instanceof CellLayout)) {
380 throw new IllegalArgumentException("A Workspace can only have CellLayout children.");
381 }
Adam Cohen21f12b52010-10-07 17:15:37 -0700382 ((CellLayout) child).setOnInterceptTouchListener(this);
Patrick Dubroye708c522011-03-01 16:03:43 -0800383 child.setOnClickListener(this);
384 child.setClickable(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800385 super.addView(child, width, height);
386 }
387
388 @Override
389 public void addView(View child, LayoutParams params) {
390 if (!(child instanceof CellLayout)) {
391 throw new IllegalArgumentException("A Workspace can only have CellLayout children.");
392 }
Adam Cohen21f12b52010-10-07 17:15:37 -0700393 ((CellLayout) child).setOnInterceptTouchListener(this);
Patrick Dubroye708c522011-03-01 16:03:43 -0800394 child.setOnClickListener(this);
395 child.setClickable(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800396 super.addView(child, params);
397 }
398
399 /**
400 * @return The open folder on the current screen, or null if there is none
401 */
402 Folder getOpenFolder() {
Winson Chung6e314082011-01-27 16:46:51 -0800403 ViewGroup currentPage = ((CellLayout) getChildAt(mCurrentPage)).getChildrenLayout();
Michael Jurka0142d492010-08-25 17:46:15 -0700404 int count = currentPage.getChildCount();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800405 for (int i = 0; i < count; i++) {
Michael Jurka0142d492010-08-25 17:46:15 -0700406 View child = currentPage.getChildAt(i);
Winson Chungaafa03c2010-06-11 17:34:16 -0700407 if (child instanceof Folder) {
408 Folder folder = (Folder) child;
409 if (folder.getInfo().opened)
410 return folder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800411 }
412 }
413 return null;
414 }
415
416 ArrayList<Folder> getOpenFolders() {
Michael Jurkadee05892010-07-27 10:01:56 -0700417 final int screenCount = getChildCount();
418 ArrayList<Folder> folders = new ArrayList<Folder>(screenCount);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800419
Michael Jurkadee05892010-07-27 10:01:56 -0700420 for (int screen = 0; screen < screenCount; screen++) {
Winson Chung6e314082011-01-27 16:46:51 -0800421 ViewGroup currentPage = ((CellLayout) getChildAt(screen)).getChildrenLayout();
Michael Jurka0142d492010-08-25 17:46:15 -0700422 int count = currentPage.getChildCount();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800423 for (int i = 0; i < count; i++) {
Michael Jurka0142d492010-08-25 17:46:15 -0700424 View child = currentPage.getChildAt(i);
Winson Chungaafa03c2010-06-11 17:34:16 -0700425 if (child instanceof Folder) {
426 Folder folder = (Folder) child;
427 if (folder.getInfo().opened)
428 folders.add(folder);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800429 break;
430 }
431 }
432 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800433 return folders;
434 }
435
Patrick Dubroya0aa0122011-02-24 11:42:23 -0800436 boolean isTouchActive() {
437 return mTouchState != TOUCH_STATE_REST;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800438 }
439
440 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800441 * Adds the specified child in the specified screen. The position and dimension of
442 * the child are defined by x, y, spanX and spanY.
443 *
444 * @param child The child to add in one of the workspace's screens.
445 * @param screen The screen in which to add the child.
446 * @param x The X position of the child in the screen's grid.
447 * @param y The Y position of the child in the screen's grid.
448 * @param spanX The number of cells spanned horizontally by the child.
449 * @param spanY The number of cells spanned vertically by the child.
450 */
451 void addInScreen(View child, int screen, int x, int y, int spanX, int spanY) {
452 addInScreen(child, screen, x, y, spanX, spanY, false);
453 }
454
Winson Chungaafa03c2010-06-11 17:34:16 -0700455 void addInFullScreen(View child, int screen) {
456 addInScreen(child, screen, 0, 0, -1, -1);
457 }
458
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800459 /**
460 * Adds the specified child in the specified screen. The position and dimension of
461 * the child are defined by x, y, spanX and spanY.
462 *
463 * @param child The child to add in one of the workspace's screens.
464 * @param screen The screen in which to add the child.
465 * @param x The X position of the child in the screen's grid.
466 * @param y The Y position of the child in the screen's grid.
467 * @param spanX The number of cells spanned horizontally by the child.
468 * @param spanY The number of cells spanned vertically by the child.
469 * @param insert When true, the child is inserted at the beginning of the children list.
470 */
471 void addInScreen(View child, int screen, int x, int y, int spanX, int spanY, boolean insert) {
472 if (screen < 0 || screen >= getChildCount()) {
Daniel Sandler291ad122010-05-24 16:03:53 -0400473 Log.e(TAG, "The screen must be >= 0 and < " + getChildCount()
474 + " (was " + screen + "); skipping child");
475 return;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800476 }
477
478 final CellLayout group = (CellLayout) getChildAt(screen);
479 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams();
480 if (lp == null) {
481 lp = new CellLayout.LayoutParams(x, y, spanX, spanY);
482 } else {
483 lp.cellX = x;
484 lp.cellY = y;
485 lp.cellHSpan = spanX;
486 lp.cellVSpan = spanY;
487 }
Winson Chungaafa03c2010-06-11 17:34:16 -0700488
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700489 // Get the canonical child id to uniquely represent this view in this screen
Michael Jurka845ba3b2010-09-28 17:09:46 -0700490 int childId = LauncherModel.getCellLayoutChildId(-1, screen, x, y, spanX, spanY);
Michael Jurkaf3ca3ab2010-10-20 17:08:24 -0700491 boolean markCellsAsOccupied = !(child instanceof Folder);
492 if (!group.addViewToCellLayout(child, insert ? 0 : -1, childId, lp, markCellsAsOccupied)) {
Winson Chungaafa03c2010-06-11 17:34:16 -0700493 // TODO: This branch occurs when the workspace is adding views
494 // outside of the defined grid
Patrick Dubroy6569f2c2010-07-12 14:25:18 -0700495 // maybe we should be deleting these items from the LauncherModel?
Winson Chungaafa03c2010-06-11 17:34:16 -0700496 Log.w(TAG, "Failed to add to item at (" + lp.cellX + "," + lp.cellY + ") to CellLayout");
497 }
498
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800499 if (!(child instanceof Folder)) {
Joe Onorato0d44e942009-11-16 18:20:51 -0800500 child.setHapticFeedbackEnabled(false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800501 child.setOnLongClickListener(mLongClickListener);
502 }
Joe Onorato00acb122009-08-04 16:04:30 -0400503 if (child instanceof DropTarget) {
Winson Chungaafa03c2010-06-11 17:34:16 -0700504 mDragController.addDropTarget((DropTarget) child);
Joe Onorato00acb122009-08-04 16:04:30 -0400505 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800506 }
507
Patrick Dubroyd0ce1ec2011-01-19 18:47:27 -0800508 /**
509 * Check if the point (x, y) hits a given page.
510 */
511 private boolean hitsPage(int index, float x, float y) {
512 final View page = getChildAt(index);
513 if (page != null) {
514 float[] localXY = { x, y };
515 mapPointFromSelfToChild(page, localXY);
516 return (localXY[0] >= 0 && localXY[0] < page.getWidth()
517 && localXY[1] >= 0 && localXY[1] < page.getHeight());
518 }
519 return false;
520 }
521
522 @Override
523 protected boolean hitsPreviousPage(float x, float y) {
524 // mNextPage is set to INVALID_PAGE whenever we are stationary.
525 // Calculating "next page" this way ensures that you scroll to whatever page you tap on
526 final int current = (mNextPage == INVALID_PAGE) ? mCurrentPage : mNextPage;
527 return hitsPage(current - 1, x, y);
528 }
529
530 @Override
531 protected boolean hitsNextPage(float x, float y) {
532 // mNextPage is set to INVALID_PAGE whenever we are stationary.
533 // Calculating "next page" this way ensures that you scroll to whatever page you tap on
534 final int current = (mNextPage == INVALID_PAGE) ? mCurrentPage : mNextPage;
535 return hitsPage(current + 1, x, y);
536 }
537
Patrick Dubroye708c522011-03-01 16:03:43 -0800538 /**
539 * Called directly from a CellLayout (not by the framework), after we've been added as a
540 * listener via setOnInterceptTouchEventListener(). This allows us to tell the CellLayout
541 * that it should intercept touch events, which is not something that is normally supported.
542 */
543 @Override
Michael Jurkadee05892010-07-27 10:01:56 -0700544 public boolean onTouch(View v, MotionEvent event) {
Patrick Dubroye708c522011-03-01 16:03:43 -0800545 return (mIsSmall || mIsInUnshrinkAnimation);
546 }
547
548 /**
549 * Handle a click event on a CellLayout.
550 */
551 @Override
552 public void onClick(View cellLayout) {
553 // Only allow clicks on a CellLayout if it is shrunken and visible.
554 if ((mIsSmall || mIsInUnshrinkAnimation) && mShrinkState != ShrinkState.BOTTOM_HIDDEN) {
555 mLauncher.onWorkspaceClick((CellLayout) cellLayout);
Michael Jurkadee05892010-07-27 10:01:56 -0700556 }
Michael Jurka0e260592010-06-30 17:07:39 -0700557 }
558
Adam Cohended9f8d2010-11-03 13:25:16 -0700559 protected void onWindowVisibilityChanged (int visibility) {
560 mLauncher.onWindowVisibilityChanged(visibility);
561 }
562
Michael Jurka5f1c5092010-09-03 14:15:02 -0700563 @Override
564 public boolean dispatchUnhandledMove(View focused, int direction) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -0700565 if (mIsSmall || mIsInUnshrinkAnimation) {
Michael Jurka5f1c5092010-09-03 14:15:02 -0700566 // when the home screens are shrunken, shouldn't allow side-scrolling
567 return false;
568 }
569 return super.dispatchUnhandledMove(focused, direction);
570 }
571
572 @Override
573 public boolean onInterceptTouchEvent(MotionEvent ev) {
Adam Cohenf8d28232011-02-01 21:47:00 -0800574 if (ev.getAction() == MotionEvent.ACTION_DOWN) {
575 mXDown = ev.getX();
576 mYDown = ev.getY();
577 }
578
Michael Jurkac0e8fca2010-10-06 16:41:29 -0700579 if (mIsSmall || mIsInUnshrinkAnimation) {
Patrick Dubroye708c522011-03-01 16:03:43 -0800580 if (mLauncher.isAllAppsVisible() && mShrinkState == ShrinkState.BOTTOM_HIDDEN) {
Adam Lesinski6b879f02010-11-04 16:15:23 -0700581 // Intercept this event so we can show the workspace in full view
582 // when it is clicked on and it is small
Adam Cohenbe909342011-01-28 17:02:58 -0800583 AllAppsPagedView allApps = (AllAppsPagedView)
584 mLauncher.findViewById(R.id.all_apps_paged_view);
585 if (allApps != null) {
586 allApps.onInterceptTouchEvent(ev);
587 }
Adam Lesinski6b879f02010-11-04 16:15:23 -0700588 return true;
589 }
Michael Jurka5f1c5092010-09-03 14:15:02 -0700590 return false;
591 }
592 return super.onInterceptTouchEvent(ev);
593 }
594
Michael Jurka1adf5392010-10-18 18:10:22 -0700595 @Override
596 protected void determineScrollingStart(MotionEvent ev) {
Adam Cohen69c42da2011-02-03 16:38:07 -0800597 if (!mIsSmall && !mIsInUnshrinkAnimation) {
598 float deltaX = Math.abs(ev.getX() - mXDown);
599 float deltaY = Math.abs(ev.getY() - mYDown);
Adam Cohenf8d28232011-02-01 21:47:00 -0800600
Adam Cohen69c42da2011-02-03 16:38:07 -0800601 if (Float.compare(deltaX, 0f) == 0) return;
Adam Cohenf8d28232011-02-01 21:47:00 -0800602
Adam Cohen69c42da2011-02-03 16:38:07 -0800603 float slope = deltaY / deltaX;
604 float theta = (float) Math.atan(slope);
Adam Cohenf8d28232011-02-01 21:47:00 -0800605
Adam Cohen69c42da2011-02-03 16:38:07 -0800606 if (deltaX > mTouchSlop || deltaY > mTouchSlop) {
607 cancelCurrentPageLongPress();
608 }
Adam Cohenf8d28232011-02-01 21:47:00 -0800609
Adam Cohen69c42da2011-02-03 16:38:07 -0800610 if (theta > MAX_SWIPE_ANGLE) {
611 // Above MAX_SWIPE_ANGLE, we don't want to ever start scrolling the workspace
612 return;
613 } else if (theta > START_DAMPING_TOUCH_SLOP_ANGLE) {
614 // Above START_DAMPING_TOUCH_SLOP_ANGLE and below MAX_SWIPE_ANGLE, we want to
615 // increase the touch slop to make it harder to begin scrolling the workspace. This
616 // results in vertically scrolling widgets to more easily. The higher the angle, the
617 // more we increase touch slop.
618 theta -= START_DAMPING_TOUCH_SLOP_ANGLE;
619 float extraRatio = (float)
620 Math.sqrt((theta / (MAX_SWIPE_ANGLE - START_DAMPING_TOUCH_SLOP_ANGLE)));
621 super.determineScrollingStart(ev, 1 + TOUCH_SLOP_DAMPING_FACTOR * extraRatio);
622 } else {
623 // Below START_DAMPING_TOUCH_SLOP_ANGLE, we don't do anything special
624 super.determineScrollingStart(ev);
625 }
Adam Cohenf8d28232011-02-01 21:47:00 -0800626 }
Michael Jurka1adf5392010-10-18 18:10:22 -0700627 }
628
Patrick Dubroy1262e362010-10-06 15:49:50 -0700629 protected void onPageBeginMoving() {
Michael Jurka0142d492010-08-25 17:46:15 -0700630 if (mNextPage != INVALID_PAGE) {
631 // we're snapping to a particular screen
Michael Jurka16fed412010-10-01 16:12:03 -0700632 enableChildrenCache(mCurrentPage, mNextPage);
Michael Jurka0142d492010-08-25 17:46:15 -0700633 } else {
634 // this is when user is actively dragging a particular screen, they might
635 // swipe it either left or right (but we won't advance by more than one screen)
Michael Jurka16fed412010-10-01 16:12:03 -0700636 enableChildrenCache(mCurrentPage - 1, mCurrentPage + 1);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800637 }
Adam Cohenf34bab52010-09-30 14:11:56 -0700638 showOutlines();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800639 }
640
Patrick Dubroy1262e362010-10-06 15:49:50 -0700641 protected void onPageEndMoving() {
Michael Jurka16fed412010-10-01 16:12:03 -0700642 clearChildrenCache();
Patrick Dubroy1262e362010-10-06 15:49:50 -0700643 // Hide the outlines, as long as we're not dragging
644 if (!mDragController.dragging()) {
645 hideOutlines();
646 }
Adam Cohen68d73932010-11-15 10:50:58 -0800647 mOverScrollMaxBackgroundAlpha = 0.0f;
Adam Cohene0f66b52010-11-23 15:06:07 -0800648 mOverScrollPageIndex = -1;
Adam Cohen26976d92011-03-22 15:33:33 -0700649
650 if (mDelayedResizeRunnable != null) {
651 mDelayedResizeRunnable.run();
652 mDelayedResizeRunnable = null;
653 }
Michael Jurka0142d492010-08-25 17:46:15 -0700654 }
655
656 @Override
657 protected void notifyPageSwitchListener() {
658 super.notifyPageSwitchListener();
659
660 if (mPreviousIndicator != null) {
661 // if we know the next page, we show the indication for it right away; it looks
662 // weird if the indicators are lagging
663 int page = mNextPage;
664 if (page == INVALID_PAGE) {
665 page = mCurrentPage;
666 }
667 mPreviousIndicator.setLevel(page);
668 mNextIndicator.setLevel(page);
669 }
670 Launcher.setScreen(mCurrentPage);
671 };
672
Michael Jurkac5b262c2011-01-12 20:24:50 -0800673 // As a ratio of screen height, the total distance we want the parallax effect to span
674 // vertically
675 private float wallpaperTravelToScreenHeightRatio(int width, int height) {
676 return 1.1f;
677 }
678
679 // As a ratio of screen height, the total distance we want the parallax effect to span
680 // horizontally
681 private float wallpaperTravelToScreenWidthRatio(int width, int height) {
682 float aspectRatio = width / (float) height;
683
684 // At an aspect ratio of 16/10, the wallpaper parallax effect should span 1.5 * screen width
685 // At an aspect ratio of 10/16, the wallpaper parallax effect should span 1.2 * screen width
686 // We will use these two data points to extrapolate how much the wallpaper parallax effect
687 // to span (ie travel) at any aspect ratio:
688
689 final float ASPECT_RATIO_LANDSCAPE = 16/10f;
690 final float ASPECT_RATIO_PORTRAIT = 10/16f;
691 final float WALLPAPER_WIDTH_TO_SCREEN_RATIO_LANDSCAPE = 1.5f;
692 final float WALLPAPER_WIDTH_TO_SCREEN_RATIO_PORTRAIT = 1.2f;
693
694 // To find out the desired width at different aspect ratios, we use the following two
695 // formulas, where the coefficient on x is the aspect ratio (width/height):
696 // (16/10)x + y = 1.5
697 // (10/16)x + y = 1.2
698 // We solve for x and y and end up with a final formula:
699 final float x =
700 (WALLPAPER_WIDTH_TO_SCREEN_RATIO_LANDSCAPE - WALLPAPER_WIDTH_TO_SCREEN_RATIO_PORTRAIT) /
701 (ASPECT_RATIO_LANDSCAPE - ASPECT_RATIO_PORTRAIT);
702 final float y = WALLPAPER_WIDTH_TO_SCREEN_RATIO_PORTRAIT - x * ASPECT_RATIO_PORTRAIT;
703 return x * aspectRatio + y;
704 }
705
706 // The range of scroll values for Workspace
707 private int getScrollRange() {
708 return getChildOffset(getChildCount() - 1) - getChildOffset(0);
709 }
710
711 protected void setWallpaperDimension() {
Michael Jurkac5b262c2011-01-12 20:24:50 -0800712 Display display = mLauncher.getWindowManager().getDefaultDisplay();
713 final int maxDim = Math.max(display.getWidth(), display.getHeight());
714 final int minDim = Math.min(display.getWidth(), display.getHeight());
715
716 // We need to ensure that there is enough extra space in the wallpaper for the intended
717 // parallax effects
718 mWallpaperWidth = (int) (maxDim * wallpaperTravelToScreenWidthRatio(maxDim, minDim));
719 mWallpaperHeight = (int)(maxDim * wallpaperTravelToScreenHeightRatio(maxDim, minDim));
Winson Chungf7640c82011-02-28 13:47:29 -0800720 new Thread("setWallpaperDimension") {
721 public void run() {
722 mWallpaperManager.suggestDesiredDimensions(mWallpaperWidth, mWallpaperHeight);
723 }
724 }.start();
Michael Jurkac5b262c2011-01-12 20:24:50 -0800725 }
726
Michael Jurkaab1983f2011-01-18 15:50:17 -0800727 public void setVerticalWallpaperOffset(float offset) {
728 mWallpaperOffset.setFinalY(offset);
729 }
730 public float getVerticalWallpaperOffset() {
731 return mWallpaperOffset.getCurrY();
732 }
733 public void setHorizontalWallpaperOffset(float offset) {
734 mWallpaperOffset.setFinalX(offset);
735 }
736 public float getHorizontalWallpaperOffset() {
737 return mWallpaperOffset.getCurrX();
Michael Jurkac5b262c2011-01-12 20:24:50 -0800738 }
739
Michael Jurkaab1983f2011-01-18 15:50:17 -0800740 private float wallpaperOffsetForCurrentScroll() {
741 Display display = mLauncher.getWindowManager().getDefaultDisplay();
Michael Jurkaf70c7812011-03-07 16:53:12 -0800742 final boolean isStaticWallpaper = (mWallpaperManager.getWallpaperInfo() == null);
Michael Jurkaab1983f2011-01-18 15:50:17 -0800743 // The wallpaper travel width is how far, from left to right, the wallpaper will move
744 // at this orientation (for example, in portrait mode we don't move all the way to the
745 // edges of the wallpaper, or otherwise the parallax effect would be too strong)
746 int wallpaperTravelWidth = (int) (display.getWidth() *
747 wallpaperTravelToScreenWidthRatio(display.getWidth(), display.getHeight()));
Michael Jurkaf70c7812011-03-07 16:53:12 -0800748 if (!isStaticWallpaper) {
749 wallpaperTravelWidth = mWallpaperWidth;
750 }
Michael Jurkaab1983f2011-01-18 15:50:17 -0800751
Michael Jurkaab1983f2011-01-18 15:50:17 -0800752 // Set wallpaper offset steps (1 / (number of screens - 1))
753 // We have 3 vertical offset states (centered, and then top/bottom aligned
754 // for all apps/customize)
755 mWallpaperManager.setWallpaperOffsetSteps(1.0f / (getChildCount() - 1), 1.0f / (3 - 1));
756
Michael Jurka09d6eb02011-01-28 16:05:09 -0800757 int scrollRange = getScrollRange();
758 float scrollProgressOffset = 0;
759
760 // Account for overscroll: you only see the absolute edge of the wallpaper if
761 // you overscroll as far as you can in landscape mode. Only do this for static wallpapers
762 // because live wallpapers (and probably 3rd party wallpaper providers) rely on the offset
763 // being even intervals from 0 to 1 (eg [0, 0.25, 0.5, 0.75, 1])
Michael Jurka09d6eb02011-01-28 16:05:09 -0800764 if (isStaticWallpaper) {
765 int overscrollOffset = (int) (maxOverScroll() * display.getWidth());
766 scrollProgressOffset += overscrollOffset / (float) getScrollRange();
767 scrollRange += 2 * overscrollOffset;
768 }
769
Michael Jurkaab1983f2011-01-18 15:50:17 -0800770 float scrollProgress =
Michael Jurka09d6eb02011-01-28 16:05:09 -0800771 mScrollX / (float) scrollRange + scrollProgressOffset;
Michael Jurkaab1983f2011-01-18 15:50:17 -0800772 float offsetInDips = wallpaperTravelWidth * scrollProgress +
Michael Jurkaf70c7812011-03-07 16:53:12 -0800773 (mWallpaperWidth - wallpaperTravelWidth) / 2; // center it
Michael Jurkaab1983f2011-01-18 15:50:17 -0800774 float offset = offsetInDips / (float) mWallpaperWidth;
775 return offset;
776 }
777 private void syncWallpaperOffsetWithScroll() {
Michael Jurkac5b262c2011-01-12 20:24:50 -0800778 if (LauncherApplication.isScreenXLarge()) {
Michael Jurkaab1983f2011-01-18 15:50:17 -0800779 mWallpaperOffset.setFinalX(wallpaperOffsetForCurrentScroll());
Michael Jurkac5b262c2011-01-12 20:24:50 -0800780 }
781 }
782
783 public void updateWallpaperOffsetImmediately() {
784 mUpdateWallpaperOffsetImmediately = true;
785 }
786
Michael Jurkaab1983f2011-01-18 15:50:17 -0800787 private void updateWallpaperOffsets() {
788 boolean updateNow = false;
789 boolean keepUpdating = true;
790 if (mUpdateWallpaperOffsetImmediately) {
791 updateNow = true;
792 keepUpdating = false;
793 mWallpaperOffset.jumpToFinal();
794 mUpdateWallpaperOffsetImmediately = false;
Michael Jurkac5b262c2011-01-12 20:24:50 -0800795 } else {
Michael Jurkaab1983f2011-01-18 15:50:17 -0800796 updateNow = keepUpdating = mWallpaperOffset.computeScrollOffset();
Michael Jurkac5b262c2011-01-12 20:24:50 -0800797 }
Michael Jurkaab1983f2011-01-18 15:50:17 -0800798 if (updateNow) {
Michael Jurka9c6fbed2011-03-02 17:41:34 -0800799 if (mWindowToken != null) {
800 mWallpaperManager.setWallpaperOffsets(mWindowToken,
Michael Jurkaab1983f2011-01-18 15:50:17 -0800801 mWallpaperOffset.getCurrX(), mWallpaperOffset.getCurrY());
802 }
Michael Jurkac5b262c2011-01-12 20:24:50 -0800803 }
Michael Jurkaab1983f2011-01-18 15:50:17 -0800804 if (keepUpdating) {
Michael Jurka2763be32011-02-24 11:19:57 -0800805 fastInvalidate();
Michael Jurkac5b262c2011-01-12 20:24:50 -0800806 }
Michael Jurkaab1983f2011-01-18 15:50:17 -0800807 }
808
809 class WallpaperOffsetInterpolator {
810 float mFinalHorizontalWallpaperOffset = 0.0f;
811 float mFinalVerticalWallpaperOffset = 0.5f;
812 float mHorizontalWallpaperOffset = 0.0f;
813 float mVerticalWallpaperOffset = 0.5f;
814 long mLastWallpaperOffsetUpdateTime;
Michael Jurkaca5b8362011-01-27 13:23:26 -0800815 boolean mIsMovingFast;
816 boolean mOverrideHorizontalCatchupConstant;
817 float mHorizontalCatchupConstant = 0.35f;
818 float mVerticalCatchupConstant = 0.35f;
Michael Jurkaab1983f2011-01-18 15:50:17 -0800819
820 public WallpaperOffsetInterpolator() {
821 }
822
Michael Jurkaca5b8362011-01-27 13:23:26 -0800823 public void setOverrideHorizontalCatchupConstant(boolean override) {
824 mOverrideHorizontalCatchupConstant = override;
825 }
826
827 public void setHorizontalCatchupConstant(float f) {
828 mHorizontalCatchupConstant = f;
829 }
830
831 public void setVerticalCatchupConstant(float f) {
832 mVerticalCatchupConstant = f;
833 }
834
Michael Jurkaab1983f2011-01-18 15:50:17 -0800835 public boolean computeScrollOffset() {
836 if (Float.compare(mHorizontalWallpaperOffset, mFinalHorizontalWallpaperOffset) == 0 &&
837 Float.compare(mVerticalWallpaperOffset, mFinalVerticalWallpaperOffset) == 0) {
Michael Jurkaca5b8362011-01-27 13:23:26 -0800838 mIsMovingFast = false;
Michael Jurkaab1983f2011-01-18 15:50:17 -0800839 return false;
840 }
841 Display display = mLauncher.getWindowManager().getDefaultDisplay();
842 boolean isLandscape = display.getWidth() > display.getHeight();
843
844 long currentTime = System.currentTimeMillis();
845 long timeSinceLastUpdate = currentTime - mLastWallpaperOffsetUpdateTime;
846 timeSinceLastUpdate = Math.min((long) (1000/30f), timeSinceLastUpdate);
847 timeSinceLastUpdate = Math.max(1L, timeSinceLastUpdate);
Michael Jurkaca5b8362011-01-27 13:23:26 -0800848
849 float xdiff = Math.abs(mFinalHorizontalWallpaperOffset - mHorizontalWallpaperOffset);
850 if (!mIsMovingFast && xdiff > 0.07) {
851 mIsMovingFast = true;
852 }
853
854 float fractionToCatchUpIn1MsHorizontal;
855 if (mOverrideHorizontalCatchupConstant) {
856 fractionToCatchUpIn1MsHorizontal = mHorizontalCatchupConstant;
857 } else if (mIsMovingFast) {
858 fractionToCatchUpIn1MsHorizontal = isLandscape ? 0.5f : 0.75f;
859 } else {
860 // slow
861 fractionToCatchUpIn1MsHorizontal = isLandscape ? 0.27f : 0.5f;
862 }
863 float fractionToCatchUpIn1MsVertical = mVerticalCatchupConstant;
864
865
866 fractionToCatchUpIn1MsHorizontal /= 33f;
867 fractionToCatchUpIn1MsVertical /= 33f;
Michael Jurkaab1983f2011-01-18 15:50:17 -0800868
869 final float UPDATE_THRESHOLD = 0.00001f;
870 float hOffsetDelta = mFinalHorizontalWallpaperOffset - mHorizontalWallpaperOffset;
871 float vOffsetDelta = mFinalVerticalWallpaperOffset - mVerticalWallpaperOffset;
Michael Jurkaca5b8362011-01-27 13:23:26 -0800872 boolean jumpToFinalValue = Math.abs(hOffsetDelta) < UPDATE_THRESHOLD &&
873 Math.abs(vOffsetDelta) < UPDATE_THRESHOLD;
Michael Jurkaab1983f2011-01-18 15:50:17 -0800874 if (jumpToFinalValue) {
875 mHorizontalWallpaperOffset = mFinalHorizontalWallpaperOffset;
876 mVerticalWallpaperOffset = mFinalVerticalWallpaperOffset;
877 } else {
878 float percentToCatchUpVertical =
Michael Jurkaca5b8362011-01-27 13:23:26 -0800879 Math.min(1.0f, timeSinceLastUpdate * fractionToCatchUpIn1MsVertical);
Michael Jurkaab1983f2011-01-18 15:50:17 -0800880 float percentToCatchUpHorizontal =
Michael Jurkaca5b8362011-01-27 13:23:26 -0800881 Math.min(1.0f, timeSinceLastUpdate * fractionToCatchUpIn1MsHorizontal);
Michael Jurkaab1983f2011-01-18 15:50:17 -0800882 mHorizontalWallpaperOffset += percentToCatchUpHorizontal * hOffsetDelta;
883 mVerticalWallpaperOffset += percentToCatchUpVertical * vOffsetDelta;
884 }
Michael Jurkaca5b8362011-01-27 13:23:26 -0800885
Michael Jurkaab1983f2011-01-18 15:50:17 -0800886 mLastWallpaperOffsetUpdateTime = System.currentTimeMillis();
887 return true;
888 }
889
890 public float getCurrX() {
891 return mHorizontalWallpaperOffset;
892 }
893
894 public float getFinalX() {
895 return mFinalHorizontalWallpaperOffset;
896 }
897
898 public float getCurrY() {
899 return mVerticalWallpaperOffset;
900 }
901
902 public float getFinalY() {
903 return mFinalVerticalWallpaperOffset;
904 }
905
906 public void setFinalX(float x) {
907 mFinalHorizontalWallpaperOffset = Math.max(0f, Math.min(x, 1.0f));
908 }
909
910 public void setFinalY(float y) {
911 mFinalVerticalWallpaperOffset = Math.max(0f, Math.min(y, 1.0f));
912 }
913
914 public void jumpToFinal() {
915 mHorizontalWallpaperOffset = mFinalHorizontalWallpaperOffset;
916 mVerticalWallpaperOffset = mFinalVerticalWallpaperOffset;
917 }
Dianne Hackborn8f573952009-08-10 23:21:09 -0700918 }
Winson Chungaafa03c2010-06-11 17:34:16 -0700919
Michael Jurka340c5f32010-10-21 16:49:19 -0700920 @Override
921 public void computeScroll() {
922 super.computeScroll();
Michael Jurkaab1983f2011-01-18 15:50:17 -0800923 if (mSyncWallpaperOffsetWithScroll) {
924 syncWallpaperOffsetWithScroll();
925 }
Michael Jurka340c5f32010-10-21 16:49:19 -0700926 }
927
Patrick Dubroy94f78a52011-02-28 17:39:16 -0800928 void showOutlines() {
Michael Jurka3e7c7632010-10-02 16:01:03 -0700929 if (!mIsSmall && !mIsInUnshrinkAnimation) {
Winson Chung9171e6d2010-11-17 17:39:27 -0800930 if (mChildrenOutlineFadeOutAnimation != null) mChildrenOutlineFadeOutAnimation.cancel();
931 if (mChildrenOutlineFadeInAnimation != null) mChildrenOutlineFadeInAnimation.cancel();
932 mChildrenOutlineFadeInAnimation = ObjectAnimator.ofFloat(this, "childrenOutlineAlpha", 1.0f);
933 mChildrenOutlineFadeInAnimation.setDuration(CHILDREN_OUTLINE_FADE_IN_DURATION);
934 mChildrenOutlineFadeInAnimation.start();
Michael Jurka3e7c7632010-10-02 16:01:03 -0700935 }
Adam Cohenf34bab52010-09-30 14:11:56 -0700936 }
937
Patrick Dubroy94f78a52011-02-28 17:39:16 -0800938 void hideOutlines() {
Michael Jurka3e7c7632010-10-02 16:01:03 -0700939 if (!mIsSmall && !mIsInUnshrinkAnimation) {
Winson Chung9171e6d2010-11-17 17:39:27 -0800940 if (mChildrenOutlineFadeInAnimation != null) mChildrenOutlineFadeInAnimation.cancel();
941 if (mChildrenOutlineFadeOutAnimation != null) mChildrenOutlineFadeOutAnimation.cancel();
942 mChildrenOutlineFadeOutAnimation = ObjectAnimator.ofFloat(this, "childrenOutlineAlpha", 0.0f);
943 mChildrenOutlineFadeOutAnimation.setDuration(CHILDREN_OUTLINE_FADE_OUT_DURATION);
944 mChildrenOutlineFadeOutAnimation.setStartDelay(CHILDREN_OUTLINE_FADE_OUT_DELAY);
945 mChildrenOutlineFadeOutAnimation.start();
Michael Jurka3e7c7632010-10-02 16:01:03 -0700946 }
Adam Cohenf34bab52010-09-30 14:11:56 -0700947 }
948
Patrick Dubroy94f78a52011-02-28 17:39:16 -0800949 public void showOutlinesTemporarily() {
950 if (!mIsPageMoving && !isTouchActive()) {
951 snapToPage(mCurrentPage);
952 }
953 }
954
Winson Chung9171e6d2010-11-17 17:39:27 -0800955 public void setChildrenOutlineAlpha(float alpha) {
956 mChildrenOutlineAlpha = alpha;
Adam Cohenf34bab52010-09-30 14:11:56 -0700957 for (int i = 0; i < getChildCount(); i++) {
958 CellLayout cl = (CellLayout) getChildAt(i);
959 cl.setBackgroundAlpha(alpha);
960 }
961 }
962
Winson Chung9171e6d2010-11-17 17:39:27 -0800963 public float getChildrenOutlineAlpha() {
964 return mChildrenOutlineAlpha;
965 }
966
Michael Jurka9c6fbed2011-03-02 17:41:34 -0800967 void disableBackground() {
968 mDrawBackground = false;
969 }
970 void enableBackground() {
971 mDrawBackground = true;
972 }
973
Winson Chung760e5372010-12-15 13:14:23 -0800974 private void showBackgroundGradientForAllApps() {
975 showBackgroundGradient();
976 mDrawCustomizeTrayBackground = false;
977 }
978
Winson Chung8d006d52010-11-29 15:55:29 -0800979 private void showBackgroundGradientForCustomizeTray() {
980 showBackgroundGradient();
981 mDrawCustomizeTrayBackground = true;
982 }
983
984 private void showBackgroundGradient() {
Winson Chungb4b7fa72010-11-18 14:38:53 -0800985 if (mBackground == null) return;
Winson Chung9171e6d2010-11-17 17:39:27 -0800986 if (mBackgroundFadeOutAnimation != null) mBackgroundFadeOutAnimation.cancel();
987 if (mBackgroundFadeInAnimation != null) mBackgroundFadeInAnimation.cancel();
Michael Jurkae0f5a612011-02-07 16:45:41 -0800988 mBackgroundFadeInAnimation = ValueAnimator.ofFloat(getBackgroundAlpha(), 1f);
989 mBackgroundFadeInAnimation.addUpdateListener(new AnimatorUpdateListener() {
990 public void onAnimationUpdate(ValueAnimator animation) {
991 setBackgroundAlpha(((Float) animation.getAnimatedValue()).floatValue());
992 }
993 });
Winson Chungf135c6c2010-11-18 16:32:08 -0800994 mBackgroundFadeInAnimation.setInterpolator(new DecelerateInterpolator(1.5f));
Winson Chung9171e6d2010-11-17 17:39:27 -0800995 mBackgroundFadeInAnimation.setDuration(BACKGROUND_FADE_IN_DURATION);
996 mBackgroundFadeInAnimation.start();
997 }
998
Winson Chung8d006d52010-11-29 15:55:29 -0800999 private void hideBackgroundGradient() {
Winson Chungb4b7fa72010-11-18 14:38:53 -08001000 if (mBackground == null) return;
Winson Chung9171e6d2010-11-17 17:39:27 -08001001 if (mBackgroundFadeInAnimation != null) mBackgroundFadeInAnimation.cancel();
1002 if (mBackgroundFadeOutAnimation != null) mBackgroundFadeOutAnimation.cancel();
Michael Jurkae0f5a612011-02-07 16:45:41 -08001003 mBackgroundFadeOutAnimation = ValueAnimator.ofFloat(getBackgroundAlpha(), 0f);
1004 mBackgroundFadeOutAnimation.addUpdateListener(new AnimatorUpdateListener() {
1005 public void onAnimationUpdate(ValueAnimator animation) {
1006 setBackgroundAlpha(((Float) animation.getAnimatedValue()).floatValue());
1007 }
1008 });
Winson Chungf135c6c2010-11-18 16:32:08 -08001009 mBackgroundFadeOutAnimation.setInterpolator(new DecelerateInterpolator(1.5f));
Winson Chung9171e6d2010-11-17 17:39:27 -08001010 mBackgroundFadeOutAnimation.setDuration(BACKGROUND_FADE_OUT_DURATION);
1011 mBackgroundFadeOutAnimation.start();
1012 }
1013
1014 public void setBackgroundAlpha(float alpha) {
Michael Jurka9c6fbed2011-03-02 17:41:34 -08001015 if (alpha != mBackgroundAlpha) {
1016 mBackgroundAlpha = alpha;
1017 invalidate();
1018 }
Winson Chung9171e6d2010-11-17 17:39:27 -08001019 }
1020
Adam Cohenf34bab52010-09-30 14:11:56 -07001021 public float getBackgroundAlpha() {
1022 return mBackgroundAlpha;
1023 }
1024
Adam Lesinski6b879f02010-11-04 16:15:23 -07001025 /**
1026 * Due to 3D transformations, if two CellLayouts are theoretically touching each other,
1027 * on the xy plane, when one is rotated along the y-axis, the gap between them is perceived
1028 * as being larger. This method computes what offset the rotated view should be translated
1029 * in order to minimize this perceived gap.
1030 * @param degrees Angle of the view
1031 * @param width Width of the view
1032 * @param height Height of the view
1033 * @return Offset to be used in a View.setTranslationX() call
1034 */
1035 private float getOffsetXForRotation(float degrees, int width, int height) {
1036 mMatrix.reset();
1037 mCamera.save();
1038 mCamera.rotateY(Math.abs(degrees));
1039 mCamera.getMatrix(mMatrix);
1040 mCamera.restore();
1041
1042 mMatrix.preTranslate(-width * 0.5f, -height * 0.5f);
1043 mMatrix.postTranslate(width * 0.5f, height * 0.5f);
1044 mTempFloat2[0] = width;
1045 mTempFloat2[1] = height;
1046 mMatrix.mapPoints(mTempFloat2);
1047 return (width - mTempFloat2[0]) * (degrees > 0.0f ? 1.0f : -1.0f);
1048 }
1049
Adam Cohen68d73932010-11-15 10:50:58 -08001050 float backgroundAlphaInterpolator(float r) {
1051 float pivotA = 0.1f;
1052 float pivotB = 0.4f;
1053 if (r < pivotA) {
1054 return 0;
1055 } else if (r > pivotB) {
1056 return 1.0f;
1057 } else {
1058 return (r - pivotA)/(pivotB - pivotA);
1059 }
1060 }
1061
1062 float overScrollBackgroundAlphaInterpolator(float r) {
Adam Cohene0f66b52010-11-23 15:06:07 -08001063 float threshold = 0.08f;
Adam Cohen68d73932010-11-15 10:50:58 -08001064
1065 if (r > mOverScrollMaxBackgroundAlpha) {
1066 mOverScrollMaxBackgroundAlpha = r;
1067 } else if (r < mOverScrollMaxBackgroundAlpha) {
1068 r = mOverScrollMaxBackgroundAlpha;
1069 }
1070
1071 return Math.min(r / threshold, 1.0f);
1072 }
1073
Adam Cohenf34bab52010-09-30 14:11:56 -07001074 @Override
1075 protected void screenScrolled(int screenCenter) {
Adam Cohenc3bc2602011-03-30 11:49:12 -07001076 // If the screen is not xlarge, then don't rotate the CellLayouts
1077 if (!LauncherApplication.isScreenXLarge()) return;
1078
Adam Cohen21f12b52010-10-07 17:15:37 -07001079 final int halfScreenSize = getMeasuredWidth() / 2;
Adam Cohen68d73932010-11-15 10:50:58 -08001080
Adam Cohen21f12b52010-10-07 17:15:37 -07001081 for (int i = 0; i < getChildCount(); i++) {
Adam Cohen1b0aaac2010-10-28 11:11:18 -07001082 CellLayout cl = (CellLayout) getChildAt(i);
1083 if (cl != null) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08001084 int totalDistance = getScaledMeasuredWidth(cl) + mPageSpacing;
Adam Cohen21f12b52010-10-07 17:15:37 -07001085 int delta = screenCenter - (getChildOffset(i) -
1086 getRelativeChildOffset(i) + halfScreenSize);
Adam Cohenf34bab52010-09-30 14:11:56 -07001087
Adam Cohenddb82192010-11-10 16:32:54 -08001088 float scrollProgress = delta / (totalDistance * 1.0f);
Adam Cohen21f12b52010-10-07 17:15:37 -07001089 scrollProgress = Math.min(scrollProgress, 1.0f);
1090 scrollProgress = Math.max(scrollProgress, -1.0f);
Adam Cohenf34bab52010-09-30 14:11:56 -07001091
Adam Cohene0f66b52010-11-23 15:06:07 -08001092 // If the current page (i) is being overscrolled, we use a different
1093 // set of rules for setting the background alpha multiplier.
1094 if ((mScrollX < 0 && i == 0) || (mScrollX > mMaxScrollX &&
1095 i == getChildCount() -1 )) {
1096 cl.setBackgroundAlphaMultiplier(
1097 overScrollBackgroundAlphaInterpolator(Math.abs(scrollProgress)));
1098 mOverScrollPageIndex = i;
1099 } else if (mOverScrollPageIndex != i) {
1100 cl.setBackgroundAlphaMultiplier(
1101 backgroundAlphaInterpolator(Math.abs(scrollProgress)));
Adam Cohene0f66b52010-11-23 15:06:07 -08001102 }
Adam Cohen1b0aaac2010-10-28 11:11:18 -07001103
Adam Cohen21f12b52010-10-07 17:15:37 -07001104 float rotation = WORKSPACE_ROTATION * scrollProgress;
Adam Lesinski6b879f02010-11-04 16:15:23 -07001105 float translationX = getOffsetXForRotation(rotation, cl.getWidth(), cl.getHeight());
1106 cl.setTranslationX(translationX);
Adam Cohen68d73932010-11-15 10:50:58 -08001107
Adam Cohen1b0aaac2010-10-28 11:11:18 -07001108 cl.setRotationY(rotation);
Adam Cohenf34bab52010-09-30 14:11:56 -07001109 }
1110 }
1111 }
1112
Joe Onorato00acb122009-08-04 16:04:30 -04001113 protected void onAttachedToWindow() {
1114 super.onAttachedToWindow();
Michael Jurka9c6fbed2011-03-02 17:41:34 -08001115 mWindowToken = getWindowToken();
Joe Onorato956091b2010-02-19 12:47:40 -08001116 computeScroll();
Michael Jurka9c6fbed2011-03-02 17:41:34 -08001117 mDragController.setWindowToken(mWindowToken);
1118 }
1119
1120 protected void onDetachedFromWindow() {
1121 mWindowToken = null;
Joe Onorato00acb122009-08-04 16:04:30 -04001122 }
1123
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001124 @Override
Michael Jurka28750fb2010-09-24 17:43:49 -07001125 protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
Michael Jurkac5b262c2011-01-12 20:24:50 -08001126 if (mFirstLayout && mCurrentPage >= 0 && mCurrentPage < getChildCount()) {
1127 mUpdateWallpaperOffsetImmediately = true;
1128 }
Michael Jurka0142d492010-08-25 17:46:15 -07001129 super.onLayout(changed, left, top, right, bottom);
Winson Chungaafa03c2010-06-11 17:34:16 -07001130
Michael Jurka79212d82010-07-30 16:36:20 -07001131 // if shrinkToBottom() is called on initialization, it has to be deferred
1132 // until after the first call to onLayout so that it has the correct width
Michael Jurka883f55b2010-10-21 15:47:14 -07001133 if (mWaitingToShrink) {
Adam Cohen696a6792010-12-09 11:46:38 -08001134 // shrink can trigger a synchronous onLayout call, so we
1135 // post this to avoid a stack overflow / tangled onLayout calls
1136 post(new Runnable() {
1137 public void run() {
1138 shrink(mWaitingToShrinkState, false);
1139 mWaitingToShrink = false;
1140 }
1141 });
Michael Jurka79212d82010-07-30 16:36:20 -07001142 }
1143
Winson Chungaafa03c2010-06-11 17:34:16 -07001144 if (LauncherApplication.isInPlaceRotationEnabled()) {
1145 // When the device is rotated, the scroll position of the current screen
1146 // needs to be refreshed
Michael Jurka0142d492010-08-25 17:46:15 -07001147 setCurrentPage(getCurrentPage());
Winson Chungaafa03c2010-06-11 17:34:16 -07001148 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001149 }
1150
1151 @Override
Winson Chung9171e6d2010-11-17 17:39:27 -08001152 protected void onDraw(Canvas canvas) {
Michael Jurkaab1983f2011-01-18 15:50:17 -08001153 updateWallpaperOffsets();
Michael Jurkac5b262c2011-01-12 20:24:50 -08001154
Winson Chung9171e6d2010-11-17 17:39:27 -08001155 // Draw the background gradient if necessary
Michael Jurka9c6fbed2011-03-02 17:41:34 -08001156 if (mBackground != null && mBackgroundAlpha > 0.0f && mDrawBackground) {
Winson Chung8d006d52010-11-29 15:55:29 -08001157 int alpha = (int) (mBackgroundAlpha * 255);
Winson Chung8d006d52010-11-29 15:55:29 -08001158 if (mDrawCustomizeTrayBackground) {
Winson Chung88127032010-12-13 12:11:33 -08001159 // Find out where to offset the gradient for the customization tray content
1160 mCustomizationDrawer.getLocationOnScreen(mCustomizationDrawerPos);
1161 final Matrix m = mCustomizationDrawer.getMatrix();
1162 mCustomizationDrawerTransformedPos[0] = 0.0f;
1163 mCustomizationDrawerTransformedPos[1] = mCustomizationDrawerContent.getTop();
1164 m.mapPoints(mCustomizationDrawerTransformedPos);
1165
Winson Chung760e5372010-12-15 13:14:23 -08001166 // Draw the bg glow behind the gradient
1167 mCustomizeTrayBackground.setAlpha(alpha);
1168 mCustomizeTrayBackground.setBounds(mScrollX, 0, mScrollX + getMeasuredWidth(),
1169 getMeasuredHeight());
1170 mCustomizeTrayBackground.draw(canvas);
1171
Winson Chung88127032010-12-13 12:11:33 -08001172 // Draw the bg gradient
1173 final int offset = (int) (mCustomizationDrawerPos[1] +
1174 mCustomizationDrawerTransformedPos[1]);
Winson Chungce93f7e2011-01-11 09:53:27 -08001175 mBackground.setAlpha(alpha);
Winson Chung88127032010-12-13 12:11:33 -08001176 mBackground.setBounds(mScrollX, offset, mScrollX + getMeasuredWidth(),
1177 offset + getMeasuredHeight());
1178 mBackground.draw(canvas);
Winson Chungce93f7e2011-01-11 09:53:27 -08001179 } else {
1180 mBackground.setAlpha(alpha);
1181 mBackground.setBounds(mScrollX, 0, mScrollX + getMeasuredWidth(),
1182 getMeasuredHeight());
1183 mBackground.draw(canvas);
Winson Chung8d006d52010-11-29 15:55:29 -08001184 }
Winson Chung9171e6d2010-11-17 17:39:27 -08001185 }
Winson Chung9171e6d2010-11-17 17:39:27 -08001186 super.onDraw(canvas);
1187 }
1188
1189 @Override
Michael Jurka0142d492010-08-25 17:46:15 -07001190 protected void dispatchDraw(Canvas canvas) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001191 if (mIsSmall || mIsInUnshrinkAnimation) {
Michael Jurka0142d492010-08-25 17:46:15 -07001192 // Draw all the workspaces if we're small
1193 final int pageCount = getChildCount();
1194 final long drawingTime = getDrawingTime();
1195 for (int i = 0; i < pageCount; i++) {
Michael Jurkaa4b40162011-03-09 14:53:27 -08001196 final CellLayout page = (CellLayout) getChildAt(i);
1197 if (page.getVisibility() == VISIBLE
1198 && (page.getAlpha() != 0f || page.getBackgroundAlpha() != 0f)) {
Michael Jurka2763be32011-02-24 11:19:57 -08001199 drawChild(canvas, page, drawingTime);
1200 }
Michael Jurka0142d492010-08-25 17:46:15 -07001201 }
1202 } else {
1203 super.dispatchDraw(canvas);
Patrick Dubroycd68ff52010-10-28 17:57:05 -07001204
Patrick Dubroy0207c522010-11-03 22:12:02 -07001205 final int width = getWidth();
1206 final int height = getHeight();
1207
1208 // In portrait orientation, draw the glowing edge when dragging to adjacent screens
1209 if (mInScrollArea && (height > width)) {
1210 final int pageHeight = getChildAt(0).getHeight();
1211
1212 // This determines the height of the glowing edge: 90% of the page height
1213 final int padding = (int) ((height - pageHeight) * 0.5f + pageHeight * 0.1f);
1214
1215 final CellLayout leftPage = (CellLayout) getChildAt(mCurrentPage - 1);
1216 final CellLayout rightPage = (CellLayout) getChildAt(mCurrentPage + 1);
1217
Michael Jurka33945b22010-12-21 18:19:38 -08001218 if (leftPage != null && leftPage.getIsDragOverlapping()) {
Patrick Dubroy0207c522010-11-03 22:12:02 -07001219 final Drawable d = getResources().getDrawable(R.drawable.page_hover_left);
1220 d.setBounds(mScrollX, padding, mScrollX + d.getIntrinsicWidth(), height - padding);
1221 d.draw(canvas);
Michael Jurka33945b22010-12-21 18:19:38 -08001222 } else if (rightPage != null && rightPage.getIsDragOverlapping()) {
Patrick Dubroy0207c522010-11-03 22:12:02 -07001223 final Drawable d = getResources().getDrawable(R.drawable.page_hover_right);
1224 d.setBounds(mScrollX + width - d.getIntrinsicWidth(), padding, mScrollX + width, height - padding);
1225 d.draw(canvas);
1226 }
1227 }
1228
Patrick Dubroycd68ff52010-10-28 17:57:05 -07001229 if (mDropView != null) {
Patrick Dubroy8ae3a622010-11-01 13:49:51 -07001230 // We are animating an item that was just dropped on the home screen.
1231 // Render its View in the current animation position.
Patrick Dubroycd68ff52010-10-28 17:57:05 -07001232 canvas.save(Canvas.MATRIX_SAVE_FLAG);
1233 final int xPos = mDropViewPos[0] - mDropView.getScrollX();
1234 final int yPos = mDropViewPos[1] - mDropView.getScrollY();
1235 canvas.translate(xPos, yPos);
1236 mDropView.draw(canvas);
1237 canvas.restore();
1238 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001239 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001240 }
1241
1242 @Override
1243 protected boolean onRequestFocusInDescendants(int direction, Rect previouslyFocusedRect) {
Joe Onorato67886212009-09-14 19:05:05 -04001244 if (!mLauncher.isAllAppsVisible()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001245 final Folder openFolder = getOpenFolder();
1246 if (openFolder != null) {
1247 return openFolder.requestFocus(direction, previouslyFocusedRect);
1248 } else {
Michael Jurka0142d492010-08-25 17:46:15 -07001249 return super.onRequestFocusInDescendants(direction, previouslyFocusedRect);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001250 }
1251 }
1252 return false;
1253 }
1254
1255 @Override
Romain Guyc2e24c02009-06-01 16:11:41 -07001256 public void addFocusables(ArrayList<View> views, int direction, int focusableMode) {
Joe Onorato67886212009-09-14 19:05:05 -04001257 if (!mLauncher.isAllAppsVisible()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001258 final Folder openFolder = getOpenFolder();
Michael Jurka0142d492010-08-25 17:46:15 -07001259 if (openFolder != null) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001260 openFolder.addFocusables(views, direction);
Michael Jurka0142d492010-08-25 17:46:15 -07001261 } else {
1262 super.addFocusables(views, direction, focusableMode);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001263 }
1264 }
1265 }
1266
1267 @Override
Joe Onorato7bb17492009-09-24 17:51:01 -07001268 public boolean dispatchTouchEvent(MotionEvent ev) {
1269 if (ev.getAction() == MotionEvent.ACTION_DOWN) {
Michael Jurka54dd7542010-07-30 14:47:52 -07001270 // (In XLarge mode, the workspace is shrunken below all apps, and responds to taps
1271 // ie when you click on a mini-screen, it zooms back to that screen)
Joe Onorato6b4adbc2010-09-01 12:13:25 -07001272 if (!LauncherApplication.isScreenXLarge() && mLauncher.isAllAppsVisible()) {
Joe Onorato7bb17492009-09-24 17:51:01 -07001273 return false;
1274 }
1275 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07001276
Joe Onorato7bb17492009-09-24 17:51:01 -07001277 return super.dispatchTouchEvent(ev);
1278 }
1279
Michael Jurka0142d492010-08-25 17:46:15 -07001280 void enableChildrenCache(int fromPage, int toPage) {
1281 if (fromPage > toPage) {
1282 final int temp = fromPage;
1283 fromPage = toPage;
1284 toPage = temp;
Mike Cleron3a2b3f22009-11-05 17:17:42 -08001285 }
Winson Chungaafa03c2010-06-11 17:34:16 -07001286
Michael Jurkadee05892010-07-27 10:01:56 -07001287 final int screenCount = getChildCount();
Adam Powellfea5d022010-04-29 11:42:45 -07001288
Michael Jurka0142d492010-08-25 17:46:15 -07001289 fromPage = Math.max(fromPage, 0);
1290 toPage = Math.min(toPage, screenCount - 1);
Adam Powellfea5d022010-04-29 11:42:45 -07001291
Michael Jurka0142d492010-08-25 17:46:15 -07001292 for (int i = fromPage; i <= toPage; i++) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001293 final CellLayout layout = (CellLayout) getChildAt(i);
1294 layout.setChildrenDrawnWithCacheEnabled(true);
1295 layout.setChildrenDrawingCacheEnabled(true);
1296 }
1297 }
1298
1299 void clearChildrenCache() {
Michael Jurkadee05892010-07-27 10:01:56 -07001300 final int screenCount = getChildCount();
1301 for (int i = 0; i < screenCount; i++) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001302 final CellLayout layout = (CellLayout) getChildAt(i);
1303 layout.setChildrenDrawnWithCacheEnabled(false);
1304 }
1305 }
1306
1307 @Override
1308 public boolean onTouchEvent(MotionEvent ev) {
Adam Cohenbe909342011-01-28 17:02:58 -08001309 AllAppsPagedView allApps = (AllAppsPagedView)
1310 mLauncher.findViewById(R.id.all_apps_paged_view);
Adam Lesinski6b879f02010-11-04 16:15:23 -07001311
Adam Cohenbe909342011-01-28 17:02:58 -08001312 if (mLauncher.isAllAppsVisible() && mShrinkState == ShrinkState.BOTTOM_HIDDEN
1313 && allApps != null) {
1314 if (ev.getAction() == MotionEvent.ACTION_UP &&
1315 allApps.getTouchState() == TOUCH_STATE_REST) {
Adam Lesinski6b879f02010-11-04 16:15:23 -07001316
Adam Cohenbe909342011-01-28 17:02:58 -08001317 // Cancel any scrolling that is in progress.
1318 if (!mScroller.isFinished()) {
1319 mScroller.abortAnimation();
1320 }
1321 setCurrentPage(mCurrentPage);
1322
1323 if (mShrinkState == ShrinkState.BOTTOM_HIDDEN) {
1324 mLauncher.showWorkspace(true);
1325 }
1326 allApps.onTouchEvent(ev);
1327 return true;
1328 } else {
1329 return allApps.onTouchEvent(ev);
1330 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001331 }
Michael Jurka0142d492010-08-25 17:46:15 -07001332 return super.onTouchEvent(ev);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001333 }
Winson Chungaafa03c2010-06-11 17:34:16 -07001334
Michael Jurkace7e05f2011-02-01 22:02:35 -08001335 protected void enableChildrenLayers(boolean enable) {
1336 for (int i = 0; i < getPageCount(); i++) {
Michael Jurkaa7f801f2011-02-02 20:54:07 -08001337 ((ViewGroup)getChildAt(i)).setChildrenLayersEnabled(enable);
Michael Jurkace7e05f2011-02-01 22:02:35 -08001338 }
1339 }
1340 @Override
1341 protected void pageBeginMoving() {
1342 enableChildrenLayers(true);
1343 super.pageBeginMoving();
1344 }
1345
1346 @Override
1347 protected void pageEndMoving() {
1348 if (!mIsSmall && !mIsInUnshrinkAnimation) {
1349 enableChildrenLayers(false);
1350 }
1351 super.pageEndMoving();
1352 }
1353
Jeff Brown1d0867c2010-12-02 18:27:39 -08001354 @Override
1355 protected void onWallpaperTap(MotionEvent ev) {
1356 final int[] position = mTempCell;
1357 getLocationOnScreen(position);
1358
1359 int pointerIndex = ev.getActionIndex();
1360 position[0] += (int) ev.getX(pointerIndex);
1361 position[1] += (int) ev.getY(pointerIndex);
1362
1363 mWallpaperManager.sendWallpaperCommand(getWindowToken(),
1364 ev.getAction() == MotionEvent.ACTION_UP
1365 ? WallpaperManager.COMMAND_TAP : WallpaperManager.COMMAND_SECONDARY_TAP,
1366 position[0], position[1], 0, null);
1367 }
1368
Michael Jurka01f0ed42010-08-20 00:41:17 -07001369 public boolean isSmall() {
1370 return mIsSmall;
1371 }
1372
Adam Cohena985e592010-09-09 11:23:48 -07001373 private float getYScaleForScreen(int screen) {
1374 int x = Math.abs(screen - 2);
1375
1376 // TODO: This should be generalized for use with arbitrary rotation angles.
1377 switch(x) {
1378 case 0: return EXTRA_SCALE_FACTOR_0;
1379 case 1: return EXTRA_SCALE_FACTOR_1;
1380 case 2: return EXTRA_SCALE_FACTOR_2;
1381 }
1382 return 1.0f;
1383 }
1384
Michael Jurkaaf91de02010-11-23 16:23:58 -08001385 public void shrink(ShrinkState shrinkState) {
1386 shrink(shrinkState, true);
1387 }
Winson Chung9171e6d2010-11-17 17:39:27 -08001388
Michael Jurka3c38d562011-02-18 19:22:12 -08001389 private int getCustomizeDrawerHeight() {
1390 TabHost customizationDrawer = mLauncher.getCustomizationDrawer();
1391 int height = customizationDrawer.getHeight();
1392 TabWidget tabWidget = (TabWidget)
1393 customizationDrawer.findViewById(com.android.internal.R.id.tabs);
1394 if (tabWidget.getTabCount() > 0) {
1395 TextView tabText = (TextView) tabWidget.getChildTabViewAt(0);
1396 // subtract the empty space above the tab text
1397 height -= ((tabWidget.getHeight() - tabText.getLineHeight())) / 2;
1398 }
1399 return height;
1400 }
1401
Michael Jurkaaf91de02010-11-23 16:23:58 -08001402 // we use this to shrink the workspace for the all apps view and the customize view
1403 public void shrink(ShrinkState shrinkState, boolean animated) {
Michael Jurka4c1085f2011-02-04 03:13:41 -08001404 // In the launcher interaction model, we're never in the state where we're shrunken and
1405 // visible in the bottom of the screen, and then want to fade to being invisible.
1406 // After spring loaded mode ends, this method was getting called twice, the first time
1407 // with BOTTOM_VISIBLE (what we want) and a second time with BOTTOM_INVISIBLE (not
1408 // what we want). As a temporary solution, we just change the second call to BOTTOM_VISIBLE
1409 if (mIsSmall && mShrinkState == ShrinkState.BOTTOM_VISIBLE) {
1410 shrinkState = ShrinkState.BOTTOM_VISIBLE;
1411 }
Michael Jurka883f55b2010-10-21 15:47:14 -07001412 if (mFirstLayout) {
1413 // (mFirstLayout == "first layout has not happened yet")
1414 // if we get a call to shrink() as part of our initialization (for example, if
1415 // Launcher is started in All Apps mode) then we need to wait for a layout call
1416 // to get our width so we can layout the mini-screen views correctly
1417 mWaitingToShrink = true;
Michael Jurkaaf91de02010-11-23 16:23:58 -08001418 mWaitingToShrinkState = shrinkState;
Michael Jurka883f55b2010-10-21 15:47:14 -07001419 return;
1420 }
Michael Jurka3e7c7632010-10-02 16:01:03 -07001421 // Stop any scrolling, move to the current page right away
Michael Jurkaa997ac22010-10-27 18:10:55 -07001422 setCurrentPage((mNextPage != INVALID_PAGE) ? mNextPage : mCurrentPage);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001423 if (!mIsDragInProcess) {
Patrick Dubroy0dfcf682011-01-18 17:08:11 -08001424 updateWhichPagesAcceptDrops(shrinkState);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001425 }
Michael Jurka3e7c7632010-10-02 16:01:03 -07001426
Adam Cohen1b0aaac2010-10-28 11:11:18 -07001427 CellLayout currentPage = (CellLayout) getChildAt(mCurrentPage);
Patrick Dubroy0dfcf682011-01-18 17:08:11 -08001428 if (currentPage == null) {
1429 Log.w(TAG, "currentPage is NULL! mCurrentPage " + mCurrentPage
1430 + " mNextPage " + mNextPage);
1431 return;
1432 }
Adam Cohenddb82192010-11-10 16:32:54 -08001433 if (currentPage.getBackgroundAlphaMultiplier() < 1.0f) {
1434 currentPage.setBackgroundAlpha(0.0f);
1435 }
Adam Cohen1b0aaac2010-10-28 11:11:18 -07001436 currentPage.setBackgroundAlphaMultiplier(1.0f);
1437
Patrick Dubroy0dfcf682011-01-18 17:08:11 -08001438 mIsSmall = true;
1439 mShrinkState = shrinkState;
1440
1441 // we intercept and reject all touch events when we're small, so be sure to reset the state
1442 mTouchState = TOUCH_STATE_REST;
1443 mActivePointerId = INVALID_POINTER;
1444
Patrick Dubroy7247f632010-08-04 16:02:59 -07001445 final Resources res = getResources();
Michael Jurkadee05892010-07-27 10:01:56 -07001446 final int screenWidth = getWidth();
Michael Jurka213d9632010-07-28 11:29:25 -07001447 final int screenHeight = getHeight();
Michael Jurka0142d492010-08-25 17:46:15 -07001448
1449 // Making the assumption that all pages have the same width as the 0th
1450 final int pageWidth = getChildAt(0).getMeasuredWidth();
1451 final int pageHeight = getChildAt(0).getMeasuredHeight();
1452
1453 final int scaledPageWidth = (int) (SHRINK_FACTOR * pageWidth);
1454 final int scaledPageHeight = (int) (SHRINK_FACTOR * pageHeight);
Adam Cohena985e592010-09-09 11:23:48 -07001455 final float extraScaledSpacing = res.getDimension(R.dimen.smallScreenExtraSpacing);
Michael Jurkadee05892010-07-27 10:01:56 -07001456
1457 final int screenCount = getChildCount();
Adam Cohena985e592010-09-09 11:23:48 -07001458 float totalWidth = screenCount * scaledPageWidth + (screenCount - 1) * extraScaledSpacing;
Michael Jurka213d9632010-07-28 11:29:25 -07001459
Winson Chungdf4b83d2010-10-20 17:49:27 -07001460 boolean isPortrait = getMeasuredHeight() > getMeasuredWidth();
Michael Jurka742574b2011-02-02 23:51:01 -08001461 float y = (isPortrait ?
Winson Chungef0066b2010-10-21 11:55:00 -07001462 getResources().getDimension(R.dimen.allAppsSmallScreenVerticalMarginPortrait) :
1463 getResources().getDimension(R.dimen.allAppsSmallScreenVerticalMarginLandscape));
Michael Jurka3e7c7632010-10-02 16:01:03 -07001464 float finalAlpha = 1.0f;
1465 float extraShrinkFactor = 1.0f;
Adam Cohenf16e5712011-01-13 13:31:45 -08001466
Michael Jurkaaf91de02010-11-23 16:23:58 -08001467 if (shrinkState == ShrinkState.BOTTOM_VISIBLE) {
Michael Jurka742574b2011-02-02 23:51:01 -08001468 y = screenHeight - y - scaledPageHeight;
Michael Jurkaaf91de02010-11-23 16:23:58 -08001469 } else if (shrinkState == ShrinkState.BOTTOM_HIDDEN) {
Michael Jurka3e7c7632010-10-02 16:01:03 -07001470 // We shrink and disappear to nothing in the case of all apps
1471 // (which is when we shrink to the bottom)
Michael Jurka742574b2011-02-02 23:51:01 -08001472 y = screenHeight - y - scaledPageHeight;
Adam Lesinski6b879f02010-11-04 16:15:23 -07001473 finalAlpha = 0.0f;
Michael Jurkaaf91de02010-11-23 16:23:58 -08001474 } else if (shrinkState == ShrinkState.MIDDLE) {
Michael Jurka742574b2011-02-02 23:51:01 -08001475 y = screenHeight / 2 - scaledPageHeight / 2;
Winson Chungb0b2e6f2010-10-12 17:49:56 -07001476 finalAlpha = 1.0f;
Michael Jurkaaf91de02010-11-23 16:23:58 -08001477 } else if (shrinkState == ShrinkState.TOP) {
Michael Jurka3c38d562011-02-18 19:22:12 -08001478 y = (screenHeight - getCustomizeDrawerHeight() - scaledPageHeight) / 2;
Michael Jurka213d9632010-07-28 11:29:25 -07001479 }
Michael Jurkadee05892010-07-27 10:01:56 -07001480
Adam Cohenf16e5712011-01-13 13:31:45 -08001481 int duration;
1482 if (shrinkState == ShrinkState.BOTTOM_HIDDEN || shrinkState == ShrinkState.BOTTOM_VISIBLE) {
1483 duration = res.getInteger(R.integer.config_allAppsWorkspaceShrinkTime);
1484 } else {
1485 duration = res.getInteger(R.integer.config_customizeWorkspaceShrinkTime);
1486 }
1487
Michael Jurkadee05892010-07-27 10:01:56 -07001488 // We animate all the screens to the centered position in workspace
1489 // At the same time, the screens become greyed/dimmed
1490
1491 // newX is initialized to the left-most position of the centered screens
Michael Jurka742574b2011-02-02 23:51:01 -08001492 float x = mScroller.getFinalX() + screenWidth / 2 - totalWidth / 2;
Adam Cohena985e592010-09-09 11:23:48 -07001493
1494 // We are going to scale about the center of the view, so we need to adjust the positions
1495 // of the views accordingly
Michael Jurka742574b2011-02-02 23:51:01 -08001496 x -= (pageWidth - scaledPageWidth) / 2.0f;
1497 y -= (pageHeight - scaledPageHeight) / 2.0f;
Michael Jurka3c4c20f2010-10-28 15:36:06 -07001498
1499 if (mAnimator != null) {
1500 mAnimator.cancel();
1501 }
Adam Cohenf16e5712011-01-13 13:31:45 -08001502
Michael Jurka3c4c20f2010-10-28 15:36:06 -07001503 mAnimator = new AnimatorSet();
Michael Jurka742574b2011-02-02 23:51:01 -08001504
1505 final float[] oldXs = new float[getChildCount()];
1506 final float[] oldYs = new float[getChildCount()];
1507 final float[] oldScaleXs = new float[getChildCount()];
1508 final float[] oldScaleYs = new float[getChildCount()];
1509 final float[] oldBackgroundAlphas = new float[getChildCount()];
1510 final float[] oldAlphas = new float[getChildCount()];
1511 final float[] oldRotationYs = new float[getChildCount()];
1512 final float[] newXs = new float[getChildCount()];
1513 final float[] newYs = new float[getChildCount()];
1514 final float[] newScaleXs = new float[getChildCount()];
1515 final float[] newScaleYs = new float[getChildCount()];
1516 final float[] newBackgroundAlphas = new float[getChildCount()];
1517 final float[] newAlphas = new float[getChildCount()];
1518 final float[] newRotationYs = new float[getChildCount()];
1519
Michael Jurkadee05892010-07-27 10:01:56 -07001520 for (int i = 0; i < screenCount; i++) {
Adam Cohenf16e5712011-01-13 13:31:45 -08001521 final CellLayout cl = (CellLayout) getChildAt(i);
Adam Cohena985e592010-09-09 11:23:48 -07001522
Adam Cohenf34bab52010-09-30 14:11:56 -07001523 float rotation = (-i + 2) * WORKSPACE_ROTATION;
Adam Cohena985e592010-09-09 11:23:48 -07001524 float rotationScaleX = (float) (1.0f / Math.cos(Math.PI * rotation / 180.0f));
1525 float rotationScaleY = getYScaleForScreen(i);
1526
Michael Jurka742574b2011-02-02 23:51:01 -08001527 oldAlphas[i] = cl.getAlpha();
1528 newAlphas[i] = finalAlpha;
Michael Jurkaabded662011-03-04 12:06:57 -08001529 if (animated && (oldAlphas[i] != 0f || newAlphas[i] != 0f)) {
1530 // if the CellLayout will be visible during the animation, force building its
1531 // hardware layer immediately so we don't see a blip later in the animation
1532 cl.buildChildrenLayer();
1533 }
Michael Jurka3e5ad582011-02-03 22:46:34 -08001534 if (animated) {
Michael Jurka742574b2011-02-02 23:51:01 -08001535 oldXs[i] = cl.getX();
1536 oldYs[i] = cl.getY();
1537 oldScaleXs[i] = cl.getScaleX();
1538 oldScaleYs[i] = cl.getScaleY();
1539 oldBackgroundAlphas[i] = cl.getBackgroundAlpha();
1540 oldRotationYs[i] = cl.getRotationY();
1541 newXs[i] = x;
1542 newYs[i] = y;
1543 newScaleXs[i] = SHRINK_FACTOR * rotationScaleX * extraShrinkFactor;
1544 newScaleYs[i] = SHRINK_FACTOR * rotationScaleY * extraShrinkFactor;
1545 newBackgroundAlphas[i] = finalAlpha;
1546 newRotationYs[i] = rotation;
Michael Jurka79212d82010-07-30 16:36:20 -07001547 } else {
Michael Jurka742574b2011-02-02 23:51:01 -08001548 cl.setX((int)x);
1549 cl.setY((int)y);
Michael Jurka883f55b2010-10-21 15:47:14 -07001550 cl.setScaleX(SHRINK_FACTOR * rotationScaleX * extraShrinkFactor);
1551 cl.setScaleY(SHRINK_FACTOR * rotationScaleY * extraShrinkFactor);
1552 cl.setBackgroundAlpha(finalAlpha);
Michael Jurka3e7c7632010-10-02 16:01:03 -07001553 cl.setAlpha(finalAlpha);
Adam Cohena985e592010-09-09 11:23:48 -07001554 cl.setRotationY(rotation);
Michael Jurka3e5ad582011-02-03 22:46:34 -08001555 mShrinkAnimationListener.onAnimationEnd(null);
Michael Jurka79212d82010-07-30 16:36:20 -07001556 }
Michael Jurkadee05892010-07-27 10:01:56 -07001557 // increment newX for the next screen
Michael Jurka742574b2011-02-02 23:51:01 -08001558 x += scaledPageWidth + extraScaledSpacing;
Michael Jurkadee05892010-07-27 10:01:56 -07001559 }
Michael Jurkaab1983f2011-01-18 15:50:17 -08001560
1561 float wallpaperOffset = 0.5f;
1562 Display display = mLauncher.getWindowManager().getDefaultDisplay();
1563 int wallpaperTravelHeight = (int) (display.getHeight() *
1564 wallpaperTravelToScreenHeightRatio(display.getWidth(), display.getHeight()));
1565 float offsetFromCenter = (wallpaperTravelHeight / (float) mWallpaperHeight) / 2f;
Michael Jurkaca5b8362011-01-27 13:23:26 -08001566 boolean isLandscape = display.getWidth() > display.getHeight();
1567
Michael Jurkaab1983f2011-01-18 15:50:17 -08001568 switch (shrinkState) {
Michael Jurkaca5b8362011-01-27 13:23:26 -08001569 // animating in
Michael Jurkaab1983f2011-01-18 15:50:17 -08001570 case TOP:
Michael Jurkaca5b8362011-01-27 13:23:26 -08001571 // customize
Michael Jurkaab1983f2011-01-18 15:50:17 -08001572 wallpaperOffset = 0.5f + offsetFromCenter;
Michael Jurkaca5b8362011-01-27 13:23:26 -08001573 mWallpaperOffset.setVerticalCatchupConstant(isLandscape ? 0.46f : 0.44f);
Michael Jurkaab1983f2011-01-18 15:50:17 -08001574 break;
1575 case MIDDLE:
1576 case SPRING_LOADED:
1577 wallpaperOffset = 0.5f;
Michael Jurkaca5b8362011-01-27 13:23:26 -08001578 mWallpaperOffset.setVerticalCatchupConstant(isLandscape ? 0.34f : 0.32f);
Michael Jurkaab1983f2011-01-18 15:50:17 -08001579 break;
1580 case BOTTOM_HIDDEN:
1581 case BOTTOM_VISIBLE:
Michael Jurkaca5b8362011-01-27 13:23:26 -08001582 // allapps
Michael Jurkaab1983f2011-01-18 15:50:17 -08001583 wallpaperOffset = 0.5f - offsetFromCenter;
Michael Jurkaca5b8362011-01-27 13:23:26 -08001584 mWallpaperOffset.setVerticalCatchupConstant(isLandscape ? 0.34f : 0.32f);
Michael Jurkaab1983f2011-01-18 15:50:17 -08001585 break;
1586 }
1587
Michael Jurka742574b2011-02-02 23:51:01 -08001588 setLayoutScale(1.0f);
Michael Jurkaca5b8362011-01-27 13:23:26 -08001589 if (animated) {
1590 mWallpaperOffset.setHorizontalCatchupConstant(0.46f);
1591 mWallpaperOffset.setOverrideHorizontalCatchupConstant(true);
Michael Jurkaca5b8362011-01-27 13:23:26 -08001592
Michael Jurkaab1983f2011-01-18 15:50:17 -08001593 mSyncWallpaperOffsetWithScroll = false;
Michael Jurkaab1983f2011-01-18 15:50:17 -08001594
Michael Jurka742574b2011-02-02 23:51:01 -08001595 ValueAnimator animWithInterpolator =
1596 ValueAnimator.ofFloat(0f, 1f).setDuration(duration);
1597 animWithInterpolator.setInterpolator(mZoomOutInterpolator);
1598
1599 final float oldHorizontalWallpaperOffset = getHorizontalWallpaperOffset();
1600 final float oldVerticalWallpaperOffset = getVerticalWallpaperOffset();
1601 final float newHorizontalWallpaperOffset = 0.5f;
1602 final float newVerticalWallpaperOffset = wallpaperOffset;
Michael Jurkac2e26a02011-03-24 15:20:26 -07001603 animWithInterpolator.addUpdateListener(new LauncherAnimatorUpdateListener() {
1604 public void onAnimationUpdate(float a, float b) {
Michael Jurkac4e772e2011-02-10 13:32:01 -08001605 if (b == 0f) {
1606 // an optimization, and required for correct behavior.
1607 return;
1608 }
1609 fastInvalidate();
Michael Jurka742574b2011-02-02 23:51:01 -08001610 setHorizontalWallpaperOffset(
1611 a * oldHorizontalWallpaperOffset + b * newHorizontalWallpaperOffset);
1612 setVerticalWallpaperOffset(
1613 a * oldVerticalWallpaperOffset + b * newVerticalWallpaperOffset);
1614 for (int i = 0; i < screenCount; i++) {
Michael Jurka742574b2011-02-02 23:51:01 -08001615 final CellLayout cl = (CellLayout) getChildAt(i);
1616 cl.fastInvalidate();
1617 cl.setFastX(a * oldXs[i] + b * newXs[i]);
1618 cl.setFastY(a * oldYs[i] + b * newYs[i]);
1619 cl.setFastScaleX(a * oldScaleXs[i] + b * newScaleXs[i]);
1620 cl.setFastScaleY(a * oldScaleYs[i] + b * newScaleYs[i]);
1621 cl.setFastBackgroundAlpha(
1622 a * oldBackgroundAlphas[i] + b * newBackgroundAlphas[i]);
1623 cl.setFastAlpha(a * oldAlphas[i] + b * newAlphas[i]);
1624 cl.setFastRotationY(a * oldRotationYs[i] + b * newRotationYs[i]);
1625 }
1626 }
1627 });
1628 mAnimator.playTogether(animWithInterpolator);
Michael Jurkabea15192010-11-17 12:33:46 -08001629 mAnimator.addListener(mShrinkAnimationListener);
Michael Jurka3c4c20f2010-10-28 15:36:06 -07001630 mAnimator.start();
Michael Jurkaab1983f2011-01-18 15:50:17 -08001631 } else {
1632 setVerticalWallpaperOffset(wallpaperOffset);
1633 setHorizontalWallpaperOffset(0.5f);
1634 updateWallpaperOffsetImmediately();
Michael Jurka3c4c20f2010-10-28 15:36:06 -07001635 }
Michael Jurkadee05892010-07-27 10:01:56 -07001636 setChildrenDrawnWithCacheEnabled(true);
Winson Chung8d006d52010-11-29 15:55:29 -08001637
Michael Jurkaaf91de02010-11-23 16:23:58 -08001638 if (shrinkState == ShrinkState.TOP) {
Winson Chung8d006d52010-11-29 15:55:29 -08001639 showBackgroundGradientForCustomizeTray();
1640 } else {
Winson Chung760e5372010-12-15 13:14:23 -08001641 showBackgroundGradientForAllApps();
Winson Chung8d006d52010-11-29 15:55:29 -08001642 }
Michael Jurkadee05892010-07-27 10:01:56 -07001643 }
1644
Adam Cohen61033d32010-11-15 18:29:44 -08001645 /*
1646 * This interpolator emulates the rate at which the perceived scale of an object changes
1647 * as its distance from a camera increases. When this interpolator is applied to a scale
1648 * animation on a view, it evokes the sense that the object is shrinking due to moving away
1649 * from the camera.
1650 */
1651 static class ZInterpolator implements TimeInterpolator {
1652 private float focalLength;
1653
1654 public ZInterpolator(float foc) {
1655 focalLength = foc;
1656 }
1657
Adam Coheneed565d2010-11-15 11:30:05 -08001658 public float getInterpolation(float input) {
1659 return (1.0f - focalLength / (focalLength + input)) /
Adam Cohen61033d32010-11-15 18:29:44 -08001660 (1.0f - focalLength / (focalLength + 1.0f));
Adam Cohencbbaf982010-11-12 14:50:33 -08001661 }
1662 }
1663
Adam Cohen61033d32010-11-15 18:29:44 -08001664 /*
1665 * The exact reverse of ZInterpolator.
1666 */
1667 static class InverseZInterpolator implements TimeInterpolator {
1668 private ZInterpolator zInterpolator;
1669 public InverseZInterpolator(float foc) {
1670 zInterpolator = new ZInterpolator(foc);
1671 }
Adam Cohencbbaf982010-11-12 14:50:33 -08001672 public float getInterpolation(float input) {
Adam Cohen61033d32010-11-15 18:29:44 -08001673 return 1 - zInterpolator.getInterpolation(1 - input);
Adam Cohencbbaf982010-11-12 14:50:33 -08001674 }
1675 }
1676
Adam Cohen61033d32010-11-15 18:29:44 -08001677 /*
1678 * ZInterpolator compounded with an ease-out.
1679 */
1680 static class ZoomOutInterpolator implements TimeInterpolator {
1681 private final ZInterpolator zInterpolator = new ZInterpolator(0.2f);
Michael Jurkaea573482011-02-03 19:48:18 -08001682 private final DecelerateInterpolator decelerate = new DecelerateInterpolator(1.8f);
Adam Cohen61033d32010-11-15 18:29:44 -08001683
1684 public float getInterpolation(float input) {
1685 return decelerate.getInterpolation(zInterpolator.getInterpolation(input));
1686 }
1687 }
1688
1689 /*
1690 * InvereZInterpolator compounded with an ease-out.
1691 */
1692 static class ZoomInInterpolator implements TimeInterpolator {
1693 private final InverseZInterpolator inverseZInterpolator = new InverseZInterpolator(0.35f);
1694 private final DecelerateInterpolator decelerate = new DecelerateInterpolator(3.0f);
1695
1696 public float getInterpolation(float input) {
1697 return decelerate.getInterpolation(inverseZInterpolator.getInterpolation(input));
1698 }
1699 }
1700
1701 private final ZoomOutInterpolator mZoomOutInterpolator = new ZoomOutInterpolator();
1702 private final ZoomInInterpolator mZoomInInterpolator = new ZoomInInterpolator();
Michael Jurka3e7c7632010-10-02 16:01:03 -07001703
Michael Jurkaaf91de02010-11-23 16:23:58 -08001704 private void updateWhichPagesAcceptDrops(ShrinkState state) {
Michael Jurka3e7c7632010-10-02 16:01:03 -07001705 updateWhichPagesAcceptDropsHelper(state, false, 1, 1);
1706 }
1707
Michael Jurkaaf91de02010-11-23 16:23:58 -08001708 private void updateWhichPagesAcceptDropsDuringDrag(ShrinkState state, int spanX, int spanY) {
Michael Jurka3e7c7632010-10-02 16:01:03 -07001709 updateWhichPagesAcceptDropsHelper(state, true, spanX, spanY);
1710 }
1711
1712 private void updateWhichPagesAcceptDropsHelper(
Michael Jurkaaf91de02010-11-23 16:23:58 -08001713 ShrinkState state, boolean isDragHappening, int spanX, int spanY) {
Michael Jurka3e7c7632010-10-02 16:01:03 -07001714 final int screenCount = getChildCount();
1715 for (int i = 0; i < screenCount; i++) {
1716 CellLayout cl = (CellLayout) getChildAt(i);
Michael Jurka33945b22010-12-21 18:19:38 -08001717 cl.setIsDragOccuring(isDragHappening);
Winson Chung097eb0a2011-03-18 16:56:08 -07001718 if (state == null) {
1719 // If we are not in a shrunken state, mark all cell layouts as droppable (if they
1720 // have the space)
1721 cl.setAcceptsDrops(cl.findCellForSpan(null, spanX, spanY));
1722 } else {
1723 switch (state) {
1724 case TOP:
1725 cl.setIsDefaultDropTarget(i == mCurrentPage);
1726 case BOTTOM_HIDDEN:
1727 case BOTTOM_VISIBLE:
1728 case SPRING_LOADED:
1729 if (state != ShrinkState.TOP) {
1730 cl.setIsDefaultDropTarget(false);
1731 }
1732 if (!isDragHappening) {
1733 // even if a drag isn't happening, we don't want to show a screen as
1734 // accepting drops if it doesn't have at least one free cell
1735 spanX = 1;
1736 spanY = 1;
1737 }
1738 // the page accepts drops if we can find at least one empty spot
1739 cl.setAcceptsDrops(cl.findCellForSpan(null, spanX, spanY));
1740 break;
1741 default:
1742 throw new RuntimeException("Unhandled ShrinkState " + state);
1743 }
Michael Jurka3e7c7632010-10-02 16:01:03 -07001744 }
1745 }
1746 }
1747
1748 /*
1749 *
1750 * We call these methods (onDragStartedWithItemSpans/onDragStartedWithItemMinSize) whenever we
1751 * start a drag in Launcher, regardless of whether the drag has ever entered the Workspace
1752 *
1753 * These methods mark the appropriate pages as accepting drops (which alters their visual
Adam Lesinski6b879f02010-11-04 16:15:23 -07001754 * appearance).
Michael Jurka3e7c7632010-10-02 16:01:03 -07001755 *
1756 */
Michael Jurkad3ef3062010-11-23 16:23:58 -08001757 public void onDragStartedWithItemSpans(int spanX, int spanY, Bitmap b) {
1758 mIsDragInProcess = true;
Michael Jurka3e7c7632010-10-02 16:01:03 -07001759
Michael Jurkad3ef3062010-11-23 16:23:58 -08001760 final Canvas canvas = new Canvas();
1761
1762 // We need to add extra padding to the bitmap to make room for the glow effect
Michael Jurka38b4f7c2010-12-14 16:46:39 -08001763 final int bitmapPadding = HolographicOutlineHelper.MAX_OUTER_BLUR_RADIUS;
Michael Jurkad3ef3062010-11-23 16:23:58 -08001764
Michael Jurkaf12c75c2011-01-25 22:41:40 -08001765 CellLayout cl = (CellLayout) getChildAt(0);
1766 int[] desiredSize = cl.cellSpansToSize(spanX, spanY);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001767 // The outline is used to visualize where the item will land if dropped
Michael Jurkaf12c75c2011-01-25 22:41:40 -08001768 mDragOutline = createDragOutline(b, canvas, bitmapPadding, desiredSize[0], desiredSize[1]);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001769
1770 updateWhichPagesAcceptDropsDuringDrag(mShrinkState, spanX, spanY);
Michael Jurka3e7c7632010-10-02 16:01:03 -07001771 }
1772
1773 // we call this method whenever a drag and drop in Launcher finishes, even if Workspace was
1774 // never dragged over
Patrick Dubroy7bccb422011-01-20 14:50:55 -08001775 public void onDragStopped(boolean success) {
Michael Jurka0bb85632011-01-26 00:00:44 -08001776 mLastDragView = null;
Patrick Dubroy7bccb422011-01-20 14:50:55 -08001777 // In the success case, DragController has already called onDragExit()
1778 if (!success) {
1779 doDragExit();
1780 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08001781 mIsDragInProcess = false;
Michael Jurkaaf91de02010-11-23 16:23:58 -08001782 updateWhichPagesAcceptDrops(mShrinkState);
Michael Jurka3e7c7632010-10-02 16:01:03 -07001783 }
1784
Michael Jurka9c6de3d2010-11-23 16:23:58 -08001785 // We call this when we trigger an unshrink by clicking on the CellLayout cl
1786 public void unshrink(CellLayout clThatWasClicked) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08001787 unshrink(clThatWasClicked, false);
1788 }
1789
1790 public void unshrink(CellLayout clThatWasClicked, boolean springLoaded) {
Michael Jurka9c6de3d2010-11-23 16:23:58 -08001791 int newCurrentPage = indexOfChild(clThatWasClicked);
Michael Jurka4cb37242010-08-09 21:05:32 -07001792 if (mIsSmall) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08001793 if (springLoaded) {
1794 setLayoutScale(SPRING_LOADED_DRAG_SHRINK_FACTOR);
1795 }
Michael Jurka8c920dd2011-01-20 14:16:56 -08001796 scrollToNewPageWithoutMovingPages(newCurrentPage);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001797 unshrink(true, springLoaded);
1798 }
1799 }
1800
1801
1802 public void enterSpringLoadedDragMode(CellLayout clThatWasClicked) {
1803 mShrinkState = ShrinkState.SPRING_LOADED;
1804 unshrink(clThatWasClicked, true);
1805 mDragTargetLayout.onDragEnter();
1806 }
1807
1808 public void exitSpringLoadedDragMode(ShrinkState shrinkState) {
1809 shrink(shrinkState);
1810 if (mDragTargetLayout != null) {
1811 mDragTargetLayout.onDragExit();
Michael Jurkab0f28bd2010-07-30 11:58:59 -07001812 }
Michael Jurkadee05892010-07-27 10:01:56 -07001813 }
1814
Patrick Dubroy758a9232011-03-03 19:54:56 -08001815 public void exitWidgetResizeMode() {
Adam Cohen67882692011-03-11 15:29:03 -08001816 DragLayer dragLayer = (DragLayer) mLauncher.findViewById(R.id.drag_layer);
1817 dragLayer.clearAllResizeFrames();
Patrick Dubroy758a9232011-03-03 19:54:56 -08001818 }
1819
Michael Jurka4cb37242010-08-09 21:05:32 -07001820 void unshrink(boolean animated) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08001821 unshrink(animated, false);
1822 }
1823
1824 void unshrink(boolean animated, boolean springLoaded) {
Michael Jurkab7e0e882011-01-16 18:43:41 -08001825 mWaitingToShrink = false;
Michael Jurkab0f28bd2010-07-30 11:58:59 -07001826 if (mIsSmall) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08001827 float finalScaleFactor = 1.0f;
1828 float finalBackgroundAlpha = 0.0f;
1829 if (springLoaded) {
1830 finalScaleFactor = SPRING_LOADED_DRAG_SHRINK_FACTOR;
1831 finalBackgroundAlpha = 1.0f;
1832 } else {
1833 mIsSmall = false;
1834 }
Michael Jurka3c4c20f2010-10-28 15:36:06 -07001835 if (mAnimator != null) {
1836 mAnimator.cancel();
1837 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07001838
Michael Jurka3c4c20f2010-10-28 15:36:06 -07001839 mAnimator = new AnimatorSet();
Michael Jurkab0f28bd2010-07-30 11:58:59 -07001840 final int screenCount = getChildCount();
Michael Jurka4cb37242010-08-09 21:05:32 -07001841
1842 final int duration = getResources().getInteger(R.integer.config_workspaceUnshrinkTime);
Michael Jurkaca5b8362011-01-27 13:23:26 -08001843
Michael Jurka742574b2011-02-02 23:51:01 -08001844 final float[] oldTranslationXs = new float[getChildCount()];
1845 final float[] oldTranslationYs = new float[getChildCount()];
1846 final float[] oldScaleXs = new float[getChildCount()];
1847 final float[] oldScaleYs = new float[getChildCount()];
1848 final float[] oldBackgroundAlphas = new float[getChildCount()];
1849 final float[] oldBackgroundAlphaMultipliers = new float[getChildCount()];
1850 final float[] oldAlphas = new float[getChildCount()];
1851 final float[] oldRotationYs = new float[getChildCount()];
1852 final float[] newTranslationXs = new float[getChildCount()];
1853 final float[] newTranslationYs = new float[getChildCount()];
1854 final float[] newScaleXs = new float[getChildCount()];
1855 final float[] newScaleYs = new float[getChildCount()];
1856 final float[] newBackgroundAlphas = new float[getChildCount()];
1857 final float[] newBackgroundAlphaMultipliers = new float[getChildCount()];
1858 final float[] newAlphas = new float[getChildCount()];
1859 final float[] newRotationYs = new float[getChildCount()];
1860
Michael Jurkab0f28bd2010-07-30 11:58:59 -07001861 for (int i = 0; i < screenCount; i++) {
Patrick Dubroy7247f632010-08-04 16:02:59 -07001862 final CellLayout cl = (CellLayout)getChildAt(i);
Michael Jurka5f1c5092010-09-03 14:15:02 -07001863 float finalAlphaValue = (i == mCurrentPage) ? 1.0f : 0.0f;
Winson Chungae222ab2011-01-10 11:45:27 -08001864 float finalAlphaMultiplierValue =
1865 ((i == mCurrentPage) && (mShrinkState != ShrinkState.SPRING_LOADED)) ?
1866 0.0f : 1.0f;
Adam Cohenf34bab52010-09-30 14:11:56 -07001867 float rotation = 0.0f;
1868
1869 if (i < mCurrentPage) {
1870 rotation = WORKSPACE_ROTATION;
1871 } else if (i > mCurrentPage) {
1872 rotation = -WORKSPACE_ROTATION;
1873 }
1874
Adam Lesinski6b879f02010-11-04 16:15:23 -07001875 float translation = getOffsetXForRotation(rotation, cl.getWidth(), cl.getHeight());
Adam Cohencbbaf982010-11-12 14:50:33 -08001876
Michael Jurka742574b2011-02-02 23:51:01 -08001877 oldAlphas[i] = cl.getAlpha();
1878 newAlphas[i] = finalAlphaValue;
Michael Jurka3e5ad582011-02-03 22:46:34 -08001879 if (animated) {
Michael Jurka742574b2011-02-02 23:51:01 -08001880 oldTranslationXs[i] = cl.getTranslationX();
1881 oldTranslationYs[i] = cl.getTranslationY();
1882 oldScaleXs[i] = cl.getScaleX();
1883 oldScaleYs[i] = cl.getScaleY();
1884 oldBackgroundAlphas[i] = cl.getBackgroundAlpha();
1885 oldBackgroundAlphaMultipliers[i] = cl.getBackgroundAlphaMultiplier();
1886 oldRotationYs[i] = cl.getRotationY();
Adam Cohen4904f662011-01-17 16:50:28 -08001887
Michael Jurka742574b2011-02-02 23:51:01 -08001888 newTranslationXs[i] = translation;
1889 newTranslationYs[i] = 0f;
1890 newScaleXs[i] = finalScaleFactor;
1891 newScaleYs[i] = finalScaleFactor;
1892 newBackgroundAlphas[i] = finalBackgroundAlpha;
1893 newBackgroundAlphaMultipliers[i] = finalAlphaMultiplierValue;
1894 newRotationYs[i] = rotation;
Michael Jurka4cb37242010-08-09 21:05:32 -07001895 } else {
Adam Lesinski6b879f02010-11-04 16:15:23 -07001896 cl.setTranslationX(translation);
Michael Jurka4cb37242010-08-09 21:05:32 -07001897 cl.setTranslationY(0.0f);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001898 cl.setScaleX(finalScaleFactor);
1899 cl.setScaleY(finalScaleFactor);
Michael Jurka5f1c5092010-09-03 14:15:02 -07001900 cl.setBackgroundAlpha(0.0f);
Winson Chungae222ab2011-01-10 11:45:27 -08001901 cl.setBackgroundAlphaMultiplier(finalAlphaMultiplierValue);
Adam Cohenf34bab52010-09-30 14:11:56 -07001902 cl.setAlpha(finalAlphaValue);
1903 cl.setRotationY(rotation);
Michael Jurka3e5ad582011-02-03 22:46:34 -08001904 mUnshrinkAnimationListener.onAnimationEnd(null);
Michael Jurka4cb37242010-08-09 21:05:32 -07001905 }
Michael Jurkab0f28bd2010-07-30 11:58:59 -07001906 }
Michael Jurkaca5b8362011-01-27 13:23:26 -08001907 Display display = mLauncher.getWindowManager().getDefaultDisplay();
1908 boolean isLandscape = display.getWidth() > display.getHeight();
1909 switch (mShrinkState) {
1910 // animating out
1911 case TOP:
1912 // customize
1913 if (animated) {
1914 mWallpaperOffset.setHorizontalCatchupConstant(isLandscape ? 0.65f : 0.62f);
1915 mWallpaperOffset.setVerticalCatchupConstant(isLandscape ? 0.65f : 0.62f);
1916 mWallpaperOffset.setOverrideHorizontalCatchupConstant(true);
1917 }
1918 break;
1919 case MIDDLE:
1920 case SPRING_LOADED:
1921 if (animated) {
1922 mWallpaperOffset.setHorizontalCatchupConstant(isLandscape ? 0.49f : 0.46f);
1923 mWallpaperOffset.setVerticalCatchupConstant(isLandscape ? 0.49f : 0.46f);
1924 mWallpaperOffset.setOverrideHorizontalCatchupConstant(true);
1925 }
1926 break;
1927 case BOTTOM_HIDDEN:
1928 case BOTTOM_VISIBLE:
1929 // all apps
1930 if (animated) {
Michael Jurkaea573482011-02-03 19:48:18 -08001931 mWallpaperOffset.setHorizontalCatchupConstant(isLandscape ? 0.65f : 0.65f);
1932 mWallpaperOffset.setVerticalCatchupConstant(isLandscape ? 0.65f : 0.65f);
Michael Jurkaca5b8362011-01-27 13:23:26 -08001933 mWallpaperOffset.setOverrideHorizontalCatchupConstant(true);
1934 }
1935 break;
1936 }
Michael Jurkaab1983f2011-01-18 15:50:17 -08001937 if (animated) {
Michael Jurka742574b2011-02-02 23:51:01 -08001938 ValueAnimator animWithInterpolator =
1939 ValueAnimator.ofFloat(0f, 1f).setDuration(duration);
1940 animWithInterpolator.setInterpolator(mZoomInInterpolator);
Adam Lesinski6b879f02010-11-04 16:15:23 -07001941
Michael Jurka742574b2011-02-02 23:51:01 -08001942 final float oldHorizontalWallpaperOffset = getHorizontalWallpaperOffset();
1943 final float oldVerticalWallpaperOffset = getVerticalWallpaperOffset();
1944 final float newHorizontalWallpaperOffset = wallpaperOffsetForCurrentScroll();
1945 final float newVerticalWallpaperOffset = 0.5f;
Michael Jurkac2e26a02011-03-24 15:20:26 -07001946 animWithInterpolator.addUpdateListener(new LauncherAnimatorUpdateListener() {
1947 public void onAnimationUpdate(float a, float b) {
Michael Jurkac4e772e2011-02-10 13:32:01 -08001948 if (b == 0f) {
1949 // an optimization, but not required
1950 return;
1951 }
1952 fastInvalidate();
Michael Jurka742574b2011-02-02 23:51:01 -08001953 setHorizontalWallpaperOffset(
1954 a * oldHorizontalWallpaperOffset + b * newHorizontalWallpaperOffset);
1955 setVerticalWallpaperOffset(
1956 a * oldVerticalWallpaperOffset + b * newVerticalWallpaperOffset);
1957 for (int i = 0; i < screenCount; i++) {
Michael Jurka742574b2011-02-02 23:51:01 -08001958 final CellLayout cl = (CellLayout) getChildAt(i);
1959 cl.fastInvalidate();
1960 cl.setFastTranslationX(
1961 a * oldTranslationXs[i] + b * newTranslationXs[i]);
1962 cl.setFastTranslationY(
1963 a * oldTranslationYs[i] + b * newTranslationYs[i]);
1964 cl.setFastScaleX(a * oldScaleXs[i] + b * newScaleXs[i]);
1965 cl.setFastScaleY(a * oldScaleYs[i] + b * newScaleYs[i]);
1966 cl.setFastBackgroundAlpha(
1967 a * oldBackgroundAlphas[i] + b * newBackgroundAlphas[i]);
1968 cl.setBackgroundAlphaMultiplier(a * oldBackgroundAlphaMultipliers[i] +
1969 b * newBackgroundAlphaMultipliers[i]);
1970 cl.setFastAlpha(a * oldAlphas[i] + b * newAlphas[i]);
1971 }
1972 }
1973 });
1974
1975 ValueAnimator rotationAnim =
1976 ValueAnimator.ofFloat(0f, 1f).setDuration(duration);
1977 rotationAnim.setInterpolator(new DecelerateInterpolator(2.0f));
Michael Jurkac2e26a02011-03-24 15:20:26 -07001978 rotationAnim.addUpdateListener(new LauncherAnimatorUpdateListener() {
1979 public void onAnimationUpdate(float a, float b) {
Michael Jurka742574b2011-02-02 23:51:01 -08001980 // don't invalidate workspace because we did it above
Michael Jurkac4e772e2011-02-10 13:32:01 -08001981 if (b == 0f) {
1982 // an optimization, but not required
1983 return;
1984 }
Michael Jurka742574b2011-02-02 23:51:01 -08001985 for (int i = 0; i < screenCount; i++) {
Michael Jurka742574b2011-02-02 23:51:01 -08001986 final CellLayout cl = (CellLayout) getChildAt(i);
1987 cl.setFastRotationY(a * oldRotationYs[i] + b * newRotationYs[i]);
1988 }
1989 }
1990 });
1991
1992 mAnimator.playTogether(animWithInterpolator, rotationAnim);
Michael Jurkac86756c2010-10-10 15:15:47 -07001993 // If we call this when we're not animated, onAnimationEnd is never called on
1994 // the listener; make sure we only use the listener when we're actually animating
Michael Jurka3c4c20f2010-10-28 15:36:06 -07001995 mAnimator.addListener(mUnshrinkAnimationListener);
1996 mAnimator.start();
Michael Jurkaca5b8362011-01-27 13:23:26 -08001997 } else {
1998 setHorizontalWallpaperOffset(wallpaperOffsetForCurrentScroll());
1999 setVerticalWallpaperOffset(0.5f);
2000 updateWallpaperOffsetImmediately();
Michael Jurkac86756c2010-10-10 15:15:47 -07002001 }
Michael Jurkadee05892010-07-27 10:01:56 -07002002 }
Winson Chung8d006d52010-11-29 15:55:29 -08002003
Winson Chunga58f8bb2010-12-14 18:18:05 -08002004 if (!springLoaded) {
2005 hideBackgroundGradient();
2006 }
Michael Jurkadee05892010-07-27 10:01:56 -07002007 }
2008
Joe Onorato4be866d2010-10-10 11:26:02 -07002009 /**
2010 * Draw the View v into the given Canvas.
2011 *
2012 * @param v the view to draw
2013 * @param destCanvas the canvas to draw on
2014 * @param padding the horizontal and vertical padding to use when drawing
2015 */
2016 private void drawDragView(View v, Canvas destCanvas, int padding) {
2017 final Rect clipRect = mTempRect;
2018 v.getDrawingRect(clipRect);
2019
2020 // For a TextView, adjust the clip rect so that we don't include the text label
Winson Chung656d11c2010-11-29 17:15:47 -08002021 if (v instanceof BubbleTextView) {
2022 final BubbleTextView tv = (BubbleTextView) v;
2023 clipRect.bottom = tv.getExtendedPaddingTop() - (int) BubbleTextView.PADDING_V +
2024 tv.getLayout().getLineTop(0);
2025 } else if (v instanceof TextView) {
Winson Chungbbc60d82010-11-11 16:34:41 -08002026 final TextView tv = (TextView) v;
Winson Chung656d11c2010-11-29 17:15:47 -08002027 clipRect.bottom = tv.getExtendedPaddingTop() - tv.getCompoundDrawablePadding() +
2028 tv.getLayout().getLineTop(0);
Joe Onorato4be866d2010-10-10 11:26:02 -07002029 }
2030
2031 // Draw the View into the bitmap.
2032 // The translate of scrollX and scrollY is necessary when drawing TextViews, because
2033 // they set scrollX and scrollY to large values to achieve centered text
2034
2035 destCanvas.save();
2036 destCanvas.translate(-v.getScrollX() + padding / 2, -v.getScrollY() + padding / 2);
2037 destCanvas.clipRect(clipRect, Op.REPLACE);
2038 v.draw(destCanvas);
2039 destCanvas.restore();
2040 }
2041
2042 /**
2043 * Returns a new bitmap to be used as the object outline, e.g. to visualize the drop location.
2044 * Responsibility for the bitmap is transferred to the caller.
2045 */
2046 private Bitmap createDragOutline(View v, Canvas canvas, int padding) {
2047 final int outlineColor = getResources().getColor(R.color.drag_outline_color);
2048 final Bitmap b = Bitmap.createBitmap(
2049 v.getWidth() + padding, v.getHeight() + padding, Bitmap.Config.ARGB_8888);
2050
2051 canvas.setBitmap(b);
2052 drawDragView(v, canvas, padding);
Adam Cohen5bb50bd2010-12-03 11:39:55 -08002053 mOutlineHelper.applyMediumExpensiveOutlineWithBlur(b, canvas, outlineColor, outlineColor);
Joe Onorato4be866d2010-10-10 11:26:02 -07002054 return b;
2055 }
2056
2057 /**
Michael Jurkad3ef3062010-11-23 16:23:58 -08002058 * Returns a new bitmap to be used as the object outline, e.g. to visualize the drop location.
2059 * Responsibility for the bitmap is transferred to the caller.
2060 */
Michael Jurkaf12c75c2011-01-25 22:41:40 -08002061 private Bitmap createDragOutline(Bitmap orig, Canvas canvas, int padding, int w, int h) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08002062 final int outlineColor = getResources().getColor(R.color.drag_outline_color);
Michael Jurkaf12c75c2011-01-25 22:41:40 -08002063 final Bitmap b = Bitmap.createBitmap(w, h, Bitmap.Config.ARGB_8888);
Michael Jurkad3ef3062010-11-23 16:23:58 -08002064 canvas.setBitmap(b);
Michael Jurkaf12c75c2011-01-25 22:41:40 -08002065
2066 Rect src = new Rect(0, 0, orig.getWidth(), orig.getHeight());
2067 float scaleFactor = Math.min((w - padding) / (float) orig.getWidth(),
2068 (h - padding) / (float) orig.getHeight());
2069 int scaledWidth = (int) (scaleFactor * orig.getWidth());
2070 int scaledHeight = (int) (scaleFactor * orig.getHeight());
2071 Rect dst = new Rect(0, 0, scaledWidth, scaledHeight);
2072
2073 // center the image
2074 dst.offset((w - scaledWidth) / 2, (h - scaledHeight) / 2);
2075
2076 Paint p = new Paint();
2077 p.setFilterBitmap(true);
2078 canvas.drawBitmap(orig, src, dst, p);
Michael Jurkad3ef3062010-11-23 16:23:58 -08002079 mOutlineHelper.applyMediumExpensiveOutlineWithBlur(b, canvas, outlineColor, outlineColor);
2080
2081 return b;
2082 }
2083
2084 /**
Winson Chunga9abd0e2010-10-27 17:18:37 -07002085 * Creates a drag outline to represent a drop (that we don't have the actual information for
2086 * yet). May be changed in the future to alter the drop outline slightly depending on the
2087 * clip description mime data.
2088 */
2089 private Bitmap createExternalDragOutline(Canvas canvas, int padding) {
2090 Resources r = getResources();
2091 final int outlineColor = r.getColor(R.color.drag_outline_color);
2092 final int iconWidth = r.getDimensionPixelSize(R.dimen.workspace_cell_width);
2093 final int iconHeight = r.getDimensionPixelSize(R.dimen.workspace_cell_height);
2094 final int rectRadius = r.getDimensionPixelSize(R.dimen.external_drop_icon_rect_radius);
2095 final int inset = (int) (Math.min(iconWidth, iconHeight) * 0.2f);
2096 final Bitmap b = Bitmap.createBitmap(
2097 iconWidth + padding, iconHeight + padding, Bitmap.Config.ARGB_8888);
2098
2099 canvas.setBitmap(b);
2100 canvas.drawRoundRect(new RectF(inset, inset, iconWidth - inset, iconHeight - inset),
2101 rectRadius, rectRadius, mExternalDragOutlinePaint);
Adam Cohen5bb50bd2010-12-03 11:39:55 -08002102 mOutlineHelper.applyMediumExpensiveOutlineWithBlur(b, canvas, outlineColor, outlineColor);
Winson Chunga9abd0e2010-10-27 17:18:37 -07002103 return b;
2104 }
2105
2106 /**
Joe Onorato4be866d2010-10-10 11:26:02 -07002107 * Returns a new bitmap to show when the given View is being dragged around.
2108 * Responsibility for the bitmap is transferred to the caller.
2109 */
2110 private Bitmap createDragBitmap(View v, Canvas canvas, int padding) {
2111 final int outlineColor = getResources().getColor(R.color.drag_outline_color);
2112 final Bitmap b = Bitmap.createBitmap(
2113 mDragOutline.getWidth(), mDragOutline.getHeight(), Bitmap.Config.ARGB_8888);
2114
2115 canvas.setBitmap(b);
2116 canvas.drawBitmap(mDragOutline, 0, 0, null);
2117 drawDragView(v, canvas, padding);
Patrick Dubroy8e58e912010-10-14 13:21:48 -07002118 mOutlineHelper.applyOuterBlur(b, canvas, outlineColor);
Joe Onorato4be866d2010-10-10 11:26:02 -07002119
2120 return b;
2121 }
2122
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002123 void startDrag(CellLayout.CellInfo cellInfo) {
2124 View child = cellInfo.cell;
Winson Chungaafa03c2010-06-11 17:34:16 -07002125
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002126 // Make sure the drag was started by a long press as opposed to a long click.
Bjorn Bringert7984c942009-12-09 15:38:25 +00002127 if (!child.isInTouchMode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002128 return;
2129 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002130
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002131 mDragInfo = cellInfo;
Winson Chungaafa03c2010-06-11 17:34:16 -07002132
Patrick Dubroy0c10bb42011-01-14 18:20:08 -08002133 CellLayout current = (CellLayout) getChildAt(cellInfo.screen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002134 current.onDragChild(child);
Joe Onorato4be866d2010-10-10 11:26:02 -07002135
2136 child.clearFocus();
2137 child.setPressed(false);
2138
2139 final Canvas canvas = new Canvas();
2140
Patrick Dubroy8e58e912010-10-14 13:21:48 -07002141 // We need to add extra padding to the bitmap to make room for the glow effect
Michael Jurka38b4f7c2010-12-14 16:46:39 -08002142 final int bitmapPadding = HolographicOutlineHelper.MAX_OUTER_BLUR_RADIUS;
Patrick Dubroy8e58e912010-10-14 13:21:48 -07002143
Joe Onorato4be866d2010-10-10 11:26:02 -07002144 // The outline is used to visualize where the item will land if dropped
Patrick Dubroy8e58e912010-10-14 13:21:48 -07002145 mDragOutline = createDragOutline(child, canvas, bitmapPadding);
Joe Onorato4be866d2010-10-10 11:26:02 -07002146
2147 // The drag bitmap follows the touch point around on the screen
Patrick Dubroy8e58e912010-10-14 13:21:48 -07002148 final Bitmap b = createDragBitmap(child, canvas, bitmapPadding);
Joe Onorato4be866d2010-10-10 11:26:02 -07002149
2150 final int bmpWidth = b.getWidth();
2151 final int bmpHeight = b.getHeight();
2152 child.getLocationOnScreen(mTempXY);
2153 final int screenX = (int) mTempXY[0] + (child.getWidth() - bmpWidth) / 2;
2154 final int screenY = (int) mTempXY[1] + (child.getHeight() - bmpHeight) / 2;
Winson Chung400438b2011-01-16 17:53:48 -08002155 mLauncher.lockScreenOrientation();
Patrick Dubroy5f445422011-02-18 14:35:21 -08002156 mDragController.startDrag(
2157 b, screenX, screenY, this, child.getTag(), DragController.DRAG_ACTION_MOVE);
Joe Onorato4be866d2010-10-10 11:26:02 -07002158 b.recycle();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002159 }
2160
Michael Jurka0280c3b2010-09-17 15:00:07 -07002161 void addApplicationShortcut(ShortcutInfo info, int screen, int cellX, int cellY,
2162 boolean insertAtFirst, int intersectX, int intersectY) {
2163 final CellLayout cellLayout = (CellLayout) getChildAt(screen);
2164 View view = mLauncher.createShortcut(R.layout.application, cellLayout, (ShortcutInfo) info);
2165
2166 final int[] cellXY = new int[2];
2167 cellLayout.findCellForSpanThatIntersects(cellXY, 1, 1, intersectX, intersectY);
2168 addInScreen(view, screen, cellXY[0], cellXY[1], 1, 1, insertAtFirst);
2169 LauncherModel.addOrMoveItemInDatabase(mLauncher, info,
2170 LauncherSettings.Favorites.CONTAINER_DESKTOP, screen,
2171 cellXY[0], cellXY[1]);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002172 }
2173
Patrick Dubroyce34a972010-10-19 10:34:32 -07002174 private void setPositionForDropAnimation(
2175 View dragView, int dragViewX, int dragViewY, View parent, View child) {
2176 final CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams();
2177
2178 // Based on the position of the drag view, find the top left of the original view
Adam Cohend5e42732011-03-28 17:33:39 -07002179 int viewX = dragViewX + (dragView.getWidth() - child.getMeasuredWidth()) / 2;
2180 int viewY = dragViewY + (dragView.getHeight() - child.getMeasuredHeight()) / 2;
Adam Cohen8878a322011-03-28 13:18:42 -07002181 viewX += getResources().getDimensionPixelSize(R.dimen.dragViewOffsetX);
2182 viewY += getResources().getDimensionPixelSize(R.dimen.dragViewOffsetY);
Patrick Dubroyce34a972010-10-19 10:34:32 -07002183
Patrick Dubroycd68ff52010-10-28 17:57:05 -07002184 // Set its old pos (in the new parent's coordinates); it will be animated
2185 // in animateViewIntoPosition after the next layout pass
Patrick Dubroyce34a972010-10-19 10:34:32 -07002186 lp.oldX = viewX - (parent.getLeft() - mScrollX);
2187 lp.oldY = viewY - (parent.getTop() - mScrollY);
2188 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002189
Adam Cohendf9de0b2011-01-10 11:01:49 -08002190 /*
2191 * We should be careful that this method cannot result in any synchronous requestLayout()
2192 * calls, as it is called from onLayout().
2193 */
Patrick Dubroycd68ff52010-10-28 17:57:05 -07002194 public void animateViewIntoPosition(final View view) {
Michael Jurka8c920dd2011-01-20 14:16:56 -08002195 final CellLayout parent = (CellLayout) view.getParent().getParent();
Patrick Dubroycd68ff52010-10-28 17:57:05 -07002196 final CellLayout.LayoutParams lp = (CellLayout.LayoutParams) view.getLayoutParams();
2197
Patrick Dubroycd68ff52010-10-28 17:57:05 -07002198 // Convert the animation params to be relative to the Workspace, not the CellLayout
2199 final int fromX = lp.oldX + parent.getLeft();
2200 final int fromY = lp.oldY + parent.getTop();
2201
2202 final int dx = lp.x - lp.oldX;
2203 final int dy = lp.y - lp.oldY;
2204
2205 // Calculate the duration of the animation based on the object's distance
2206 final float dist = (float) Math.sqrt(dx*dx + dy*dy);
2207 final Resources res = getResources();
2208 final float maxDist = (float) res.getInteger(R.integer.config_dropAnimMaxDist);
Patrick Dubroy8ae3a622010-11-01 13:49:51 -07002209 int duration = res.getInteger(R.integer.config_dropAnimMaxDuration);
2210 if (dist < maxDist) {
2211 duration *= mQuintEaseOutInterpolator.getInterpolation(dist / maxDist);
2212 }
Patrick Dubroycd68ff52010-10-28 17:57:05 -07002213
Patrick Dubroyf2431282010-11-02 14:46:20 -07002214 if (mDropAnim != null) {
Michael Jurka8edd75c2010-12-17 20:15:06 -08002215 mDropAnim.end();
Patrick Dubroycd68ff52010-10-28 17:57:05 -07002216 }
Patrick Dubroyf2431282010-11-02 14:46:20 -07002217 mDropAnim = new ValueAnimator();
2218 mDropAnim.setInterpolator(mQuintEaseOutInterpolator);
2219
2220 // The view is invisible during the animation; we render it manually.
Michael Jurka8edd75c2010-12-17 20:15:06 -08002221 mDropAnim.addListener(new AnimatorListenerAdapter() {
Patrick Dubroyf2431282010-11-02 14:46:20 -07002222 public void onAnimationStart(Animator animation) {
2223 // Set this here so that we don't render it until the animation begins
2224 mDropView = view;
2225 }
2226
Michael Jurka8edd75c2010-12-17 20:15:06 -08002227 public void onAnimationEnd(Animator animation) {
Patrick Dubroyf2431282010-11-02 14:46:20 -07002228 if (mDropView != null) {
2229 mDropView.setVisibility(View.VISIBLE);
2230 mDropView = null;
2231 }
2232 }
2233 });
Patrick Dubroy8ae3a622010-11-01 13:49:51 -07002234
Patrick Dubroycd68ff52010-10-28 17:57:05 -07002235 mDropAnim.setDuration(duration);
2236 mDropAnim.setFloatValues(0.0f, 1.0f);
2237 mDropAnim.removeAllUpdateListeners();
2238 mDropAnim.addUpdateListener(new AnimatorUpdateListener() {
2239 public void onAnimationUpdate(ValueAnimator animation) {
2240 final float percent = (Float) animation.getAnimatedValue();
2241 // Invalidate the old position
2242 invalidate(mDropViewPos[0], mDropViewPos[1],
2243 mDropViewPos[0] + view.getWidth(), mDropViewPos[1] + view.getHeight());
2244
2245 mDropViewPos[0] = fromX + (int) (percent * dx + 0.5f);
2246 mDropViewPos[1] = fromY + (int) (percent * dy + 0.5f);
2247 invalidate(mDropViewPos[0], mDropViewPos[1],
2248 mDropViewPos[0] + view.getWidth(), mDropViewPos[1] + view.getHeight());
2249 }
2250 });
Patrick Dubroy8ae3a622010-11-01 13:49:51 -07002251
Patrick Dubroy6920c2c2010-12-19 20:24:40 -08002252 mDropAnim.start();
Patrick Dubroycd68ff52010-10-28 17:57:05 -07002253 }
2254
2255 /**
2256 * {@inheritDoc}
2257 */
2258 public boolean acceptDrop(DragSource source, int x, int y,
2259 int xOffset, int yOffset, DragView dragView, Object dragInfo) {
2260
2261 // If it's an external drop (e.g. from All Apps), check if it should be accepted
2262 if (source != this) {
2263 // Don't accept the drop if we're not over a screen at time of drop
Michael Jurka3d791922010-11-24 13:35:32 -08002264 if (mDragTargetLayout == null || !mDragTargetLayout.getAcceptsDrops()) {
Patrick Dubroycd68ff52010-10-28 17:57:05 -07002265 return false;
2266 }
2267
2268 final CellLayout.CellInfo dragCellInfo = mDragInfo;
2269 final int spanX = dragCellInfo == null ? 1 : dragCellInfo.spanX;
2270 final int spanY = dragCellInfo == null ? 1 : dragCellInfo.spanY;
2271
2272 final View ignoreView = dragCellInfo == null ? null : dragCellInfo.cell;
2273
2274 // Don't accept the drop if there's no room for the item
2275 if (!mDragTargetLayout.findCellForSpanIgnoring(null, spanX, spanY, ignoreView)) {
2276 mLauncher.showOutOfSpaceMessage();
2277 return false;
2278 }
2279 }
2280 return true;
2281 }
2282
Joe Onorato00acb122009-08-04 16:04:30 -04002283 public void onDrop(DragSource source, int x, int y, int xOffset, int yOffset,
2284 DragView dragView, Object dragInfo) {
Michael Jurkac4e772e2011-02-10 13:32:01 -08002285 boolean largeOrSpringLoaded = !mIsSmall || mWasSpringLoadedOnDragExit;
2286 int originX = largeOrSpringLoaded ? x - xOffset : x - xOffset + dragView.getWidth() / 2;
2287 int originY = largeOrSpringLoaded ? y - yOffset : y - yOffset + dragView.getHeight() / 2;
Patrick Dubroyce34a972010-10-19 10:34:32 -07002288
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002289 if (mIsSmall || mIsInUnshrinkAnimation) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002290 // get originX and originY in the local coordinate system of the screen
2291 mTempOriginXY[0] = originX;
2292 mTempOriginXY[1] = originY;
Michael Jurkad718d6a2010-10-14 15:35:17 -07002293 mapPointFromSelfToChild(mDragTargetLayout, mTempOriginXY);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002294 originX = (int)mTempOriginXY[0];
2295 originY = (int)mTempOriginXY[1];
Michael Jurkac4e772e2011-02-10 13:32:01 -08002296 if (!largeOrSpringLoaded) {
2297 originX -= mDragTargetLayout.getCellWidth() / 2;
2298 originY -= mDragTargetLayout.getCellHeight() / 2;
2299 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07002300 }
Michael Jurkac6ee42e2010-09-30 12:04:50 -07002301
Michael Jurka3e5ad582011-02-03 22:46:34 -08002302 // When you are in customization mode and drag to a particular screen, make that the
2303 // new current/default screen, so any subsequent taps add items to that screen
2304 if (!mLauncher.isAllAppsVisible()) {
2305 int dragTargetIndex = indexOfChild(mDragTargetLayout);
2306 if (mCurrentPage != dragTargetIndex && (mIsSmall || mIsInUnshrinkAnimation)) {
2307 scrollToNewPageWithoutMovingPages(dragTargetIndex);
2308 }
Michael Jurkab09cac52011-01-05 20:23:39 -08002309 }
2310
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002311 if (source != this) {
Patrick Dubroybbaa75c2011-03-08 18:47:40 -08002312 final int[] touchXY = new int[] { originX, originY };
Patrick Dubroy5f445422011-02-18 14:35:21 -08002313 if ((mIsSmall || mIsInUnshrinkAnimation) && !mLauncher.isAllAppsVisible()) {
2314 // When the workspace is shrunk and the drop comes from customize, don't actually
2315 // add the item to the screen -- customize will do this itself
Patrick Dubroybbaa75c2011-03-08 18:47:40 -08002316 ((ItemInfo) dragInfo).dropPos = touchXY;
Patrick Dubroy5f445422011-02-18 14:35:21 -08002317 return;
2318 }
Adam Cohend5e42732011-03-28 17:33:39 -07002319 onDropExternal(touchXY, dragInfo, mDragTargetLayout, false, dragView, originX, originY);
Patrick Dubroyce34a972010-10-19 10:34:32 -07002320 } else if (mDragInfo != null) {
Patrick Dubroyce34a972010-10-19 10:34:32 -07002321 final View cell = mDragInfo.cell;
Patrick Dubroy54fa3b92010-11-17 12:18:45 -08002322 CellLayout dropTargetLayout = mDragTargetLayout;
2323
2324 // Handle the case where the user drops when in the scroll area.
2325 // This is treated as a drop on the adjacent page.
2326 if (dropTargetLayout == null && mInScrollArea) {
2327 if (mPendingScrollDirection == DragController.SCROLL_LEFT) {
2328 dropTargetLayout = (CellLayout) getChildAt(mCurrentPage - 1);
2329 } else if (mPendingScrollDirection == DragController.SCROLL_RIGHT) {
2330 dropTargetLayout = (CellLayout) getChildAt(mCurrentPage + 1);
2331 }
2332 }
2333
2334 if (dropTargetLayout != null) {
Patrick Dubroycd68ff52010-10-28 17:57:05 -07002335 // Move internally
2336 mTargetCell = findNearestVacantArea(originX, originY,
Patrick Dubroy54fa3b92010-11-17 12:18:45 -08002337 mDragInfo.spanX, mDragInfo.spanY, cell, dropTargetLayout,
Patrick Dubroycd68ff52010-10-28 17:57:05 -07002338 mTargetCell);
Michael Jurkaa63c4522010-08-19 13:52:27 -07002339
Patrick Dubroy54fa3b92010-11-17 12:18:45 -08002340 final int screen = (mTargetCell == null) ?
2341 mDragInfo.screen : indexOfChild(dropTargetLayout);
2342
2343 if (screen != mCurrentPage) {
2344 snapToPage(screen);
2345 }
2346
2347 if (mTargetCell != null) {
Patrick Dubroy94383362010-10-29 15:03:24 -07002348 if (screen != mDragInfo.screen) {
2349 // Reparent the view
2350 ((CellLayout) getChildAt(mDragInfo.screen)).removeView(cell);
2351 addInScreen(cell, screen, mTargetCell[0], mTargetCell[1],
2352 mDragInfo.spanX, mDragInfo.spanY);
2353 }
2354
2355 // update the item's position after drop
2356 final ItemInfo info = (ItemInfo) cell.getTag();
2357 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) cell.getLayoutParams();
Patrick Dubroy54fa3b92010-11-17 12:18:45 -08002358 dropTargetLayout.onMove(cell, mTargetCell[0], mTargetCell[1]);
Patrick Dubroy94383362010-10-29 15:03:24 -07002359 lp.cellX = mTargetCell[0];
2360 lp.cellY = mTargetCell[1];
2361 cell.setId(LauncherModel.getCellLayoutChildId(-1, mDragInfo.screen,
2362 mTargetCell[0], mTargetCell[1], mDragInfo.spanX, mDragInfo.spanY));
2363
Adam Cohend4844c32011-02-18 19:25:06 -08002364 if (cell instanceof LauncherAppWidgetHostView) {
Adam Cohend4844c32011-02-18 19:25:06 -08002365 final CellLayout cellLayout = dropTargetLayout;
2366 // We post this call so that the widget has a chance to be placed
2367 // in its final location
2368
2369 final LauncherAppWidgetHostView hostView = (LauncherAppWidgetHostView) cell;
2370 AppWidgetProviderInfo pinfo = hostView.getAppWidgetInfo();
Adam Cohen27c09b02011-02-28 14:45:11 -08002371 if (pinfo.resizeMode != AppWidgetProviderInfo.RESIZE_NONE) {
Adam Cohen26976d92011-03-22 15:33:33 -07002372 final Runnable resizeRunnable = new Runnable() {
Adam Cohend4844c32011-02-18 19:25:06 -08002373 public void run() {
Adam Cohen67882692011-03-11 15:29:03 -08002374 DragLayer dragLayer = (DragLayer)
2375 mLauncher.findViewById(R.id.drag_layer);
2376 dragLayer.addResizeFrame(info, hostView,
Adam Cohend4844c32011-02-18 19:25:06 -08002377 cellLayout);
2378 }
Adam Cohen26976d92011-03-22 15:33:33 -07002379 };
2380 post(new Runnable() {
2381 public void run() {
2382 if (!isPageMoving()) {
2383 resizeRunnable.run();
2384 } else {
2385 mDelayedResizeRunnable = resizeRunnable;
2386 }
2387 }
Adam Cohend4844c32011-02-18 19:25:06 -08002388 });
2389 }
2390 }
2391
Patrick Dubroy94383362010-10-29 15:03:24 -07002392 LauncherModel.moveItemInDatabase(mLauncher, info,
2393 LauncherSettings.Favorites.CONTAINER_DESKTOP, screen,
2394 lp.cellX, lp.cellY);
Patrick Dubroycd68ff52010-10-28 17:57:05 -07002395 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002396 }
Patrick Dubroyce34a972010-10-19 10:34:32 -07002397
Michael Jurka8c920dd2011-01-20 14:16:56 -08002398 final CellLayout parent = (CellLayout) cell.getParent().getParent();
Patrick Dubroyce34a972010-10-19 10:34:32 -07002399
2400 // Prepare it to be animated into its new position
2401 // This must be called after the view has been re-parented
Patrick Dubroycd68ff52010-10-28 17:57:05 -07002402 setPositionForDropAnimation(dragView, originX, originY, parent, cell);
Michael Jurkad3ef3062010-11-23 16:23:58 -08002403 boolean animateDrop = !mWasSpringLoadedOnDragExit;
2404 parent.onDropChild(cell, animateDrop);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002405 }
2406 }
2407
Winson Chungaafa03c2010-06-11 17:34:16 -07002408 public void onDragEnter(DragSource source, int x, int y, int xOffset,
2409 int yOffset, DragView dragView, Object dragInfo) {
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07002410 mDragTargetLayout = null; // Reset the drag state
2411
Michael Jurkad718d6a2010-10-14 15:35:17 -07002412 if (!mIsSmall) {
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07002413 mDragTargetLayout = getCurrentDropLayout();
Winson Chunga9abd0e2010-10-27 17:18:37 -07002414 mDragTargetLayout.onDragEnter();
Michael Jurkad718d6a2010-10-14 15:35:17 -07002415 showOutlines();
2416 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002417 }
2418
Michael Jurka18014792010-10-14 09:01:34 -07002419 public DropTarget getDropTargetDelegate(DragSource source, int x, int y,
2420 int xOffset, int yOffset, DragView dragView, Object dragInfo) {
Patrick Dubroy440c3602010-07-13 17:50:32 -07002421
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002422 if (mIsSmall || mIsInUnshrinkAnimation) {
Michael Jurkad718d6a2010-10-14 15:35:17 -07002423 // If we're shrunken, don't let anyone drag on folders/etc that are on the mini-screens
Michael Jurka0280c3b2010-09-17 15:00:07 -07002424 return null;
2425 }
Patrick Dubroy440c3602010-07-13 17:50:32 -07002426 // We may need to delegate the drag to a child view. If a 1x1 item
2427 // would land in a cell occupied by a DragTarget (e.g. a Folder),
2428 // then drag events should be handled by that child.
2429
Adam Cohend4844c32011-02-18 19:25:06 -08002430 ItemInfo item = (ItemInfo) dragInfo;
Patrick Dubroy440c3602010-07-13 17:50:32 -07002431 CellLayout currentLayout = getCurrentDropLayout();
2432
2433 int dragPointX, dragPointY;
2434 if (item.spanX == 1 && item.spanY == 1) {
2435 // For a 1x1, calculate the drop cell exactly as in onDragOver
2436 dragPointX = x - xOffset;
2437 dragPointY = y - yOffset;
2438 } else {
2439 // Otherwise, use the exact drag coordinates
2440 dragPointX = x;
2441 dragPointY = y;
2442 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002443 dragPointX += mScrollX - currentLayout.getLeft();
2444 dragPointY += mScrollY - currentLayout.getTop();
Patrick Dubroy440c3602010-07-13 17:50:32 -07002445
2446 // If we are dragging over a cell that contains a DropTarget that will
2447 // accept the drop, delegate to that DropTarget.
2448 final int[] cellXY = mTempCell;
2449 currentLayout.estimateDropCell(dragPointX, dragPointY, item.spanX, item.spanY, cellXY);
2450 View child = currentLayout.getChildAt(cellXY[0], cellXY[1]);
2451 if (child instanceof DropTarget) {
2452 DropTarget target = (DropTarget)child;
2453 if (target.acceptDrop(source, x, y, xOffset, yOffset, dragView, dragInfo)) {
2454 return target;
2455 }
2456 }
2457 return null;
2458 }
2459
Winson Chunga9abd0e2010-10-27 17:18:37 -07002460 /**
Winson Chung580e2772010-11-10 16:03:00 -08002461 * Tests to see if the drop will be accepted by Launcher, and if so, includes additional data
2462 * in the returned structure related to the widgets that match the drop (or a null list if it is
2463 * a shortcut drop). If the drop is not accepted then a null structure is returned.
2464 */
2465 private Pair<Integer, List<WidgetMimeTypeHandlerData>> validateDrag(DragEvent event) {
2466 final LauncherModel model = mLauncher.getModel();
2467 final ClipDescription desc = event.getClipDescription();
2468 final int mimeTypeCount = desc.getMimeTypeCount();
2469 for (int i = 0; i < mimeTypeCount; ++i) {
2470 final String mimeType = desc.getMimeType(i);
2471 if (mimeType.equals(InstallShortcutReceiver.SHORTCUT_MIMETYPE)) {
2472 return new Pair<Integer, List<WidgetMimeTypeHandlerData>>(i, null);
2473 } else {
2474 final List<WidgetMimeTypeHandlerData> widgets =
2475 model.resolveWidgetsForMimeType(mContext, mimeType);
2476 if (widgets.size() > 0) {
2477 return new Pair<Integer, List<WidgetMimeTypeHandlerData>>(i, widgets);
2478 }
2479 }
2480 }
2481 return null;
2482 }
2483
2484 /**
Winson Chunga9abd0e2010-10-27 17:18:37 -07002485 * Global drag and drop handler
2486 */
2487 @Override
2488 public boolean onDragEvent(DragEvent event) {
Winson Chung68846fd2010-10-29 11:00:27 -07002489 final ClipDescription desc = event.getClipDescription();
Winson Chunga9abd0e2010-10-27 17:18:37 -07002490 final CellLayout layout = (CellLayout) getChildAt(mCurrentPage);
2491 final int[] pos = new int[2];
2492 layout.getLocationOnScreen(pos);
2493 // We need to offset the drag coordinates to layout coordinate space
2494 final int x = (int) event.getX() - pos[0];
2495 final int y = (int) event.getY() - pos[1];
2496
2497 switch (event.getAction()) {
Winson Chung580e2772010-11-10 16:03:00 -08002498 case DragEvent.ACTION_DRAG_STARTED: {
2499 // Validate this drag
2500 Pair<Integer, List<WidgetMimeTypeHandlerData>> test = validateDrag(event);
2501 if (test != null) {
2502 boolean isShortcut = (test.second == null);
2503 if (isShortcut) {
2504 // Check if we have enough space on this screen to add a new shortcut
2505 if (!layout.findCellForSpan(pos, 1, 1)) {
2506 Toast.makeText(mContext, mContext.getString(R.string.out_of_space),
2507 Toast.LENGTH_SHORT).show();
2508 return false;
2509 }
2510 }
2511 } else {
2512 // Show error message if we couldn't accept any of the items
2513 Toast.makeText(mContext, mContext.getString(R.string.external_drop_widget_error),
Winson Chunga9abd0e2010-10-27 17:18:37 -07002514 Toast.LENGTH_SHORT).show();
2515 return false;
2516 }
2517
Winson Chung68846fd2010-10-29 11:00:27 -07002518 // Create the drag outline
2519 // We need to add extra padding to the bitmap to make room for the glow effect
2520 final Canvas canvas = new Canvas();
Michael Jurka38b4f7c2010-12-14 16:46:39 -08002521 final int bitmapPadding = HolographicOutlineHelper.MAX_OUTER_BLUR_RADIUS;
Winson Chung68846fd2010-10-29 11:00:27 -07002522 mDragOutline = createExternalDragOutline(canvas, bitmapPadding);
Winson Chunga9abd0e2010-10-27 17:18:37 -07002523
Winson Chung68846fd2010-10-29 11:00:27 -07002524 // Show the current page outlines to indicate that we can accept this drop
2525 showOutlines();
Michael Jurka33945b22010-12-21 18:19:38 -08002526 layout.setIsDragOccuring(true);
Winson Chung68846fd2010-10-29 11:00:27 -07002527 layout.onDragEnter();
2528 layout.visualizeDropLocation(null, mDragOutline, x, y, 1, 1);
Winson Chunga9abd0e2010-10-27 17:18:37 -07002529
Winson Chung68846fd2010-10-29 11:00:27 -07002530 return true;
Winson Chung580e2772010-11-10 16:03:00 -08002531 }
Winson Chunga9abd0e2010-10-27 17:18:37 -07002532 case DragEvent.ACTION_DRAG_LOCATION:
2533 // Visualize the drop location
2534 layout.visualizeDropLocation(null, mDragOutline, x, y, 1, 1);
2535 return true;
Winson Chung580e2772010-11-10 16:03:00 -08002536 case DragEvent.ACTION_DROP: {
Winson Chunga9abd0e2010-10-27 17:18:37 -07002537 // Try and add any shortcuts
Winson Chunga9abd0e2010-10-27 17:18:37 -07002538 final LauncherModel model = mLauncher.getModel();
2539 final ClipData data = event.getClipData();
Winson Chung55cef262010-10-28 14:14:18 -07002540
Winson Chung68846fd2010-10-29 11:00:27 -07002541 // We assume that the mime types are ordered in descending importance of
2542 // representation. So we enumerate the list of mime types and alert the
2543 // user if any widgets can handle the drop. Only the most preferred
2544 // representation will be handled.
2545 pos[0] = x;
2546 pos[1] = y;
Winson Chung580e2772010-11-10 16:03:00 -08002547 Pair<Integer, List<WidgetMimeTypeHandlerData>> test = validateDrag(event);
2548 if (test != null) {
2549 final int index = test.first;
2550 final List<WidgetMimeTypeHandlerData> widgets = test.second;
2551 final boolean isShortcut = (widgets == null);
2552 final String mimeType = desc.getMimeType(index);
2553 if (isShortcut) {
Dianne Hackborn0d5aad72011-01-17 15:28:58 -08002554 final Intent intent = data.getItemAt(index).getIntent();
Winson Chung68846fd2010-10-29 11:00:27 -07002555 Object info = model.infoFromShortcutIntent(mContext, intent, data.getIcon());
Michael Jurkac4e772e2011-02-10 13:32:01 -08002556 onDropExternal(new int[] { x, y }, info, layout, false);
Winson Chung68846fd2010-10-29 11:00:27 -07002557 } else {
Winson Chung580e2772010-11-10 16:03:00 -08002558 if (widgets.size() == 1) {
Winson Chung68846fd2010-10-29 11:00:27 -07002559 // If there is only one item, then go ahead and add and configure
2560 // that widget
2561 final AppWidgetProviderInfo widgetInfo = widgets.get(0).widgetInfo;
2562 final PendingAddWidgetInfo createInfo =
2563 new PendingAddWidgetInfo(widgetInfo, mimeType, data);
2564 mLauncher.addAppWidgetFromDrop(createInfo, mCurrentPage, pos);
Winson Chung580e2772010-11-10 16:03:00 -08002565 } else {
Winson Chung68846fd2010-10-29 11:00:27 -07002566 // Show the widget picker dialog if there is more than one widget
2567 // that can handle this data type
2568 final InstallWidgetReceiver.WidgetListAdapter adapter =
2569 new InstallWidgetReceiver.WidgetListAdapter(mLauncher, mimeType,
2570 data, widgets, layout, mCurrentPage, pos);
2571 final AlertDialog.Builder builder =
2572 new AlertDialog.Builder(mContext);
2573 builder.setAdapter(adapter, adapter);
2574 builder.setCancelable(true);
2575 builder.setTitle(mContext.getString(
2576 R.string.external_drop_widget_pick_title));
2577 builder.setIcon(R.drawable.ic_no_applications);
2578 builder.show();
Winson Chung55cef262010-10-28 14:14:18 -07002579 }
Winson Chunga9abd0e2010-10-27 17:18:37 -07002580 }
2581 }
Winson Chunga9abd0e2010-10-27 17:18:37 -07002582 return true;
Winson Chung580e2772010-11-10 16:03:00 -08002583 }
Winson Chunga9abd0e2010-10-27 17:18:37 -07002584 case DragEvent.ACTION_DRAG_ENDED:
2585 // Hide the page outlines after the drop
Michael Jurka33945b22010-12-21 18:19:38 -08002586 layout.setIsDragOccuring(false);
Winson Chunga9abd0e2010-10-27 17:18:37 -07002587 layout.onDragExit();
2588 hideOutlines();
2589 return true;
2590 }
2591 return super.onDragEvent(event);
2592 }
2593
Michael Jurka4516c112010-10-07 15:13:47 -07002594 /*
2595 *
2596 * Convert the 2D coordinate xy from the parent View's coordinate space to this CellLayout's
2597 * coordinate space. The argument xy is modified with the return result.
2598 *
2599 */
2600 void mapPointFromSelfToChild(View v, float[] xy) {
2601 mapPointFromSelfToChild(v, xy, null);
2602 }
2603
2604 /*
2605 *
2606 * Convert the 2D coordinate xy from the parent View's coordinate space to this CellLayout's
2607 * coordinate space. The argument xy is modified with the return result.
2608 *
2609 * if cachedInverseMatrix is not null, this method will just use that matrix instead of
Michael Jurkad718d6a2010-10-14 15:35:17 -07002610 * computing it itself; we use this to avoid redundant matrix inversions in
Michael Jurka4516c112010-10-07 15:13:47 -07002611 * findMatchingPageForDragOver
2612 *
2613 */
2614 void mapPointFromSelfToChild(View v, float[] xy, Matrix cachedInverseMatrix) {
2615 if (cachedInverseMatrix == null) {
2616 v.getMatrix().invert(mTempInverseMatrix);
2617 cachedInverseMatrix = mTempInverseMatrix;
2618 }
2619 xy[0] = xy[0] + mScrollX - v.getLeft();
2620 xy[1] = xy[1] + mScrollY - v.getTop();
2621 cachedInverseMatrix.mapPoints(xy);
2622 }
2623
2624 /*
2625 *
2626 * Convert the 2D coordinate xy from this CellLayout's coordinate space to
2627 * the parent View's coordinate space. The argument xy is modified with the return result.
2628 *
2629 */
2630 void mapPointFromChildToSelf(View v, float[] xy) {
2631 v.getMatrix().mapPoints(xy);
2632 xy[0] -= (mScrollX - v.getLeft());
2633 xy[1] -= (mScrollY - v.getTop());
2634 }
2635
2636 static private float squaredDistance(float[] point1, float[] point2) {
2637 float distanceX = point1[0] - point2[0];
2638 float distanceY = point2[1] - point2[1];
2639 return distanceX * distanceX + distanceY * distanceY;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002640 }
2641
Michael Jurka4516c112010-10-07 15:13:47 -07002642 /*
2643 *
2644 * Returns true if the passed CellLayout cl overlaps with dragView
2645 *
2646 */
2647 boolean overlaps(CellLayout cl, DragView dragView,
2648 int dragViewX, int dragViewY, Matrix cachedInverseMatrix) {
2649 // Transform the coordinates of the item being dragged to the CellLayout's coordinates
2650 final float[] draggedItemTopLeft = mTempDragCoordinates;
Michael Jurkaf12c75c2011-01-25 22:41:40 -08002651 draggedItemTopLeft[0] = dragViewX;
2652 draggedItemTopLeft[1] = dragViewY;
Michael Jurka4516c112010-10-07 15:13:47 -07002653 final float[] draggedItemBottomRight = mTempDragBottomRightCoordinates;
Michael Jurkaf12c75c2011-01-25 22:41:40 -08002654 draggedItemBottomRight[0] = draggedItemTopLeft[0] + dragView.getDragRegionWidth();
2655 draggedItemBottomRight[1] = draggedItemTopLeft[1] + dragView.getDragRegionHeight();
Michael Jurkaa63c4522010-08-19 13:52:27 -07002656
Michael Jurka4516c112010-10-07 15:13:47 -07002657 // Transform the dragged item's top left coordinates
2658 // to the CellLayout's local coordinates
2659 mapPointFromSelfToChild(cl, draggedItemTopLeft, cachedInverseMatrix);
2660 float overlapRegionLeft = Math.max(0f, draggedItemTopLeft[0]);
2661 float overlapRegionTop = Math.max(0f, draggedItemTopLeft[1]);
2662
2663 if (overlapRegionLeft <= cl.getWidth() && overlapRegionTop >= 0) {
2664 // Transform the dragged item's bottom right coordinates
2665 // to the CellLayout's local coordinates
2666 mapPointFromSelfToChild(cl, draggedItemBottomRight, cachedInverseMatrix);
2667 float overlapRegionRight = Math.min(cl.getWidth(), draggedItemBottomRight[0]);
2668 float overlapRegionBottom = Math.min(cl.getHeight(), draggedItemBottomRight[1]);
2669
2670 if (overlapRegionRight >= 0 && overlapRegionBottom <= cl.getHeight()) {
2671 float overlap = (overlapRegionRight - overlapRegionLeft) *
2672 (overlapRegionBottom - overlapRegionTop);
2673 if (overlap > 0) {
2674 return true;
2675 }
2676 }
2677 }
2678 return false;
2679 }
2680
2681 /*
2682 *
2683 * This method returns the CellLayout that is currently being dragged to. In order to drag
2684 * to a CellLayout, either the touch point must be directly over the CellLayout, or as a second
2685 * strategy, we see if the dragView is overlapping any CellLayout and choose the closest one
2686 *
2687 * Return null if no CellLayout is currently being dragged over
2688 *
2689 */
2690 private CellLayout findMatchingPageForDragOver(
2691 DragView dragView, int originX, int originY, int offsetX, int offsetY) {
2692 // We loop through all the screens (ie CellLayouts) and see which ones overlap
2693 // with the item being dragged and then choose the one that's closest to the touch point
Michael Jurkaa63c4522010-08-19 13:52:27 -07002694 final int screenCount = getChildCount();
2695 CellLayout bestMatchingScreen = null;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002696 float smallestDistSoFar = Float.MAX_VALUE;
Michael Jurka4516c112010-10-07 15:13:47 -07002697
Michael Jurkaa63c4522010-08-19 13:52:27 -07002698 for (int i = 0; i < screenCount; i++) {
2699 CellLayout cl = (CellLayout)getChildAt(i);
Michael Jurkaa63c4522010-08-19 13:52:27 -07002700
Michael Jurka4516c112010-10-07 15:13:47 -07002701 final float[] touchXy = mTempTouchCoordinates;
2702 touchXy[0] = originX + offsetX;
2703 touchXy[1] = originY + offsetY;
Michael Jurkaa63c4522010-08-19 13:52:27 -07002704
Michael Jurka4516c112010-10-07 15:13:47 -07002705 // Transform the touch coordinates to the CellLayout's local coordinates
2706 // If the touch point is within the bounds of the cell layout, we can return immediately
Michael Jurka0280c3b2010-09-17 15:00:07 -07002707 cl.getMatrix().invert(mTempInverseMatrix);
Michael Jurka4516c112010-10-07 15:13:47 -07002708 mapPointFromSelfToChild(cl, touchXy, mTempInverseMatrix);
Michael Jurkaa63c4522010-08-19 13:52:27 -07002709
Michael Jurka4516c112010-10-07 15:13:47 -07002710 if (touchXy[0] >= 0 && touchXy[0] <= cl.getWidth() &&
2711 touchXy[1] >= 0 && touchXy[1] <= cl.getHeight()) {
2712 return cl;
2713 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07002714
Michael Jurka4516c112010-10-07 15:13:47 -07002715 if (overlaps(cl, dragView, originX, originY, mTempInverseMatrix)) {
2716 // Get the center of the cell layout in screen coordinates
2717 final float[] cellLayoutCenter = mTempCellLayoutCenterCoordinates;
2718 cellLayoutCenter[0] = cl.getWidth()/2;
2719 cellLayoutCenter[1] = cl.getHeight()/2;
2720 mapPointFromChildToSelf(cl, cellLayoutCenter);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002721
Michael Jurka4516c112010-10-07 15:13:47 -07002722 touchXy[0] = originX + offsetX;
2723 touchXy[1] = originY + offsetY;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002724
Michael Jurka4516c112010-10-07 15:13:47 -07002725 // Calculate the distance between the center of the CellLayout
2726 // and the touch point
2727 float dist = squaredDistance(touchXy, cellLayoutCenter);
2728
2729 if (dist < smallestDistSoFar) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002730 smallestDistSoFar = dist;
Michael Jurkaa63c4522010-08-19 13:52:27 -07002731 bestMatchingScreen = cl;
Michael Jurkaa63c4522010-08-19 13:52:27 -07002732 }
Michael Jurka4516c112010-10-07 15:13:47 -07002733 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07002734 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07002735 return bestMatchingScreen;
2736 }
2737
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002738 public void onDragOver(DragSource source, int x, int y, int xOffset, int yOffset,
2739 DragView dragView, Object dragInfo) {
Patrick Dubroy1262e362010-10-06 15:49:50 -07002740 // When touch is inside the scroll area, skip dragOver actions for the current screen
2741 if (!mInScrollArea) {
Michael Jurkad718d6a2010-10-14 15:35:17 -07002742 CellLayout layout;
2743 int originX = x - xOffset;
2744 int originY = y - yOffset;
Michael Jurkad3ef3062010-11-23 16:23:58 -08002745 boolean shrunken = mIsSmall || mIsInUnshrinkAnimation;
2746 if (shrunken) {
Michael Jurka0bb85632011-01-26 00:00:44 -08002747 mLastDragView = dragView;
2748 mLastDragOriginX = originX;
2749 mLastDragOriginY = originY;
2750 mLastDragXOffset = xOffset;
2751 mLastDragYOffset = yOffset;
2752 layout = findMatchingPageForDragOver(dragView, originX, originY, xOffset, yOffset);
Patrick Dubroy1262e362010-10-06 15:49:50 -07002753
Michael Jurkad718d6a2010-10-14 15:35:17 -07002754 if (layout != mDragTargetLayout) {
2755 if (mDragTargetLayout != null) {
Michael Jurka33945b22010-12-21 18:19:38 -08002756 mDragTargetLayout.setIsDragOverlapping(false);
Michael Jurkac2f7f472010-12-14 15:34:42 -08002757 mSpringLoadedDragController.onDragExit();
Michael Jurkad718d6a2010-10-14 15:35:17 -07002758 }
2759 mDragTargetLayout = layout;
Winson Chung707de282011-03-02 12:29:10 -08002760 // In spring-loaded mode, we still want the user to be able to hover over a
2761 // full screen (which is traditionally set to not accept drops) if they want to
2762 // get to pages beyond the screen that is full.
2763 boolean allowDragOver = (mDragTargetLayout != null) &&
2764 (mDragTargetLayout.getAcceptsDrops() ||
2765 (mShrinkState == ShrinkState.SPRING_LOADED));
2766 if (allowDragOver) {
Michael Jurka33945b22010-12-21 18:19:38 -08002767 mDragTargetLayout.setIsDragOverlapping(true);
Michael Jurka0bb85632011-01-26 00:00:44 -08002768 mSpringLoadedDragController.onDragEnter(
2769 mDragTargetLayout, mShrinkState == ShrinkState.SPRING_LOADED);
Michael Jurkad718d6a2010-10-14 15:35:17 -07002770 }
2771 }
2772 } else {
2773 layout = getCurrentDropLayout();
Michael Jurkad3ef3062010-11-23 16:23:58 -08002774 if (layout != mDragTargetLayout) {
2775 if (mDragTargetLayout != null) {
2776 mDragTargetLayout.onDragExit();
2777 }
2778 layout.onDragEnter();
2779 mDragTargetLayout = layout;
2780 }
2781 }
2782 if (!shrunken || mShrinkState == ShrinkState.SPRING_LOADED) {
2783 layout = getCurrentDropLayout();
Michael Jurkad718d6a2010-10-14 15:35:17 -07002784
2785 final ItemInfo item = (ItemInfo)dragInfo;
2786 if (dragInfo instanceof LauncherAppWidgetInfo) {
2787 LauncherAppWidgetInfo widgetInfo = (LauncherAppWidgetInfo)dragInfo;
2788
2789 if (widgetInfo.spanX == -1) {
2790 // Calculate the grid spans needed to fit this widget
2791 int[] spans = layout.rectToCell(
2792 widgetInfo.minWidth, widgetInfo.minHeight, null);
2793 item.spanX = spans[0];
2794 item.spanY = spans[1];
2795 }
2796 }
2797
2798 if (source instanceof AllAppsPagedView) {
2799 // This is a hack to fix the point used to determine which cell an icon from
2800 // the all apps screen is over
2801 if (item != null && item.spanX == 1 && layout != null) {
2802 int dragRegionLeft = (dragView.getWidth() - layout.getCellWidth()) / 2;
2803
2804 originX += dragRegionLeft - dragView.getDragRegionLeft();
2805 if (dragView.getDragRegionWidth() != layout.getCellWidth()) {
2806 dragView.setDragRegion(dragView.getDragRegionLeft(),
2807 dragView.getDragRegionTop(),
2808 layout.getCellWidth(),
2809 dragView.getDragRegionHeight());
2810 }
2811 }
Patrick Dubroy62bbb3c2011-01-17 15:29:27 -08002812 } else if (source == this) {
2813 // When dragging from the workspace, the drag view is slightly bigger than
2814 // the original view, and offset vertically. Adjust to account for this.
2815 final View origView = mDragInfo.cell;
2816 originX += (dragView.getMeasuredWidth() - origView.getWidth()) / 2;
2817 originY += (dragView.getMeasuredHeight() - origView.getHeight()) / 2
2818 + dragView.getOffsetY();
Michael Jurkad718d6a2010-10-14 15:35:17 -07002819 }
2820
Michael Jurkad3ef3062010-11-23 16:23:58 -08002821 if (mDragTargetLayout != null) {
Michael Jurkad718d6a2010-10-14 15:35:17 -07002822 final View child = (mDragInfo == null) ? null : mDragInfo.cell;
Michael Jurkad3ef3062010-11-23 16:23:58 -08002823 float[] localOrigin = { originX, originY };
2824 mapPointFromSelfToChild(mDragTargetLayout, localOrigin, null);
Michael Jurkad718d6a2010-10-14 15:35:17 -07002825 mDragTargetLayout.visualizeDropLocation(child, mDragOutline,
Michael Jurkad3ef3062010-11-23 16:23:58 -08002826 (int) localOrigin[0], (int) localOrigin[1], item.spanX, item.spanY);
Michael Jurkad718d6a2010-10-14 15:35:17 -07002827 }
Patrick Dubroy1262e362010-10-06 15:49:50 -07002828 }
Patrick Dubroy976ebec2010-08-04 20:03:37 -07002829 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002830 }
2831
Patrick Dubroye3887cc2011-01-20 10:43:40 -08002832 private void doDragExit() {
Michael Jurkad3ef3062010-11-23 16:23:58 -08002833 mWasSpringLoadedOnDragExit = mShrinkState == ShrinkState.SPRING_LOADED;
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002834 if (mDragTargetLayout != null) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002835 mDragTargetLayout.onDragExit();
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002836 }
Patrick Dubroy1262e362010-10-06 15:49:50 -07002837 if (!mIsPageMoving) {
2838 hideOutlines();
2839 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08002840 if (mShrinkState == ShrinkState.SPRING_LOADED) {
2841 mLauncher.exitSpringLoadedDragMode();
2842 }
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07002843 clearAllHovers();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002844 }
2845
Patrick Dubroye3887cc2011-01-20 10:43:40 -08002846 public void onDragExit(DragSource source, int x, int y, int xOffset,
2847 int yOffset, DragView dragView, Object dragInfo) {
2848 doDragExit();
2849 }
2850
Winson Chunga34abf82010-11-12 12:10:35 -08002851 @Override
2852 public void getHitRect(Rect outRect) {
2853 // We want the workspace to have the whole area of the display (it will find the correct
2854 // cell layout to drop to in the existing drag/drop logic.
2855 final Display d = mLauncher.getWindowManager().getDefaultDisplay();
2856 outRect.set(0, 0, d.getWidth(), d.getHeight());
2857 }
2858
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07002859 /**
2860 * Add the item specified by dragInfo to the given layout.
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07002861 * @return true if successful
2862 */
Adam Cohen120980b2010-12-08 11:05:37 -08002863 public boolean addExternalItemToScreen(ItemInfo dragInfo, CellLayout layout) {
2864 if (layout.findCellForSpan(mTempEstimate, dragInfo.spanX, dragInfo.spanY)) {
Patrick Dubroybbaa75c2011-03-08 18:47:40 -08002865 onDropExternal(dragInfo.dropPos, (ItemInfo) dragInfo, (CellLayout) layout, false);
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07002866 return true;
2867 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002868 mLauncher.showOutOfSpaceMessage();
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07002869 return false;
2870 }
2871
Adam Cohend5e42732011-03-28 17:33:39 -07002872 private void onDropExternal(int[] touchXY, Object dragInfo,
2873 CellLayout cellLayout, boolean insertAtFirst) {
2874 onDropExternal(touchXY, dragInfo, cellLayout, insertAtFirst, null, 0, 0);
2875 }
2876
Adam Cohen120980b2010-12-08 11:05:37 -08002877 /**
2878 * Drop an item that didn't originate on one of the workspace screens.
2879 * It may have come from Launcher (e.g. from all apps or customize), or it may have
2880 * come from another app altogether.
2881 *
2882 * NOTE: This can also be called when we are outside of a drag event, when we want
2883 * to add an item to one of the workspace screens.
2884 */
Michael Jurkac4e772e2011-02-10 13:32:01 -08002885 private void onDropExternal(int[] touchXY, Object dragInfo,
Adam Cohend5e42732011-03-28 17:33:39 -07002886 CellLayout cellLayout, boolean insertAtFirst, DragView dragView,
2887 int dragViewX, int dragViewY) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002888 int screen = indexOfChild(cellLayout);
2889 if (dragInfo instanceof PendingAddItemInfo) {
2890 PendingAddItemInfo info = (PendingAddItemInfo) dragInfo;
2891 // When dragging and dropping from customization tray, we deal with creating
2892 // widgets/shortcuts/folders in a slightly different way
Michael Jurka0280c3b2010-09-17 15:00:07 -07002893 switch (info.itemType) {
2894 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
Winson Chung55cef262010-10-28 14:14:18 -07002895 mLauncher.addAppWidgetFromDrop((PendingAddWidgetInfo) info, screen, touchXY);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002896 break;
2897 case LauncherSettings.Favorites.ITEM_TYPE_LIVE_FOLDER:
2898 mLauncher.addLiveFolderFromDrop(info.componentName, screen, touchXY);
2899 break;
2900 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
2901 mLauncher.processShortcutFromDrop(info.componentName, screen, touchXY);
2902 break;
2903 default:
2904 throw new IllegalStateException("Unknown item type: " + info.itemType);
2905 }
2906 cellLayout.onDragExit();
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002907 } else {
Michael Jurka9c6de3d2010-11-23 16:23:58 -08002908 // This is for other drag/drop cases, like dragging from All Apps
2909 ItemInfo info = (ItemInfo) dragInfo;
Michael Jurka9c6de3d2010-11-23 16:23:58 -08002910 View view = null;
2911
2912 switch (info.itemType) {
2913 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
2914 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
2915 if (info.container == NO_ID && info instanceof ApplicationInfo) {
2916 // Came from all apps -- make a copy
2917 info = new ShortcutInfo((ApplicationInfo) info);
2918 }
2919 view = mLauncher.createShortcut(R.layout.application, cellLayout,
2920 (ShortcutInfo) info);
2921 break;
2922 case LauncherSettings.Favorites.ITEM_TYPE_USER_FOLDER:
2923 view = FolderIcon.fromXml(R.layout.folder_icon, mLauncher,
2924 cellLayout, (UserFolderInfo) info, mIconCache);
2925 break;
2926 default:
2927 throw new IllegalStateException("Unknown item type: " + info.itemType);
2928 }
2929
2930 mTargetCell = new int[2];
Michael Jurkac4e772e2011-02-10 13:32:01 -08002931 if (touchXY != null) {
Michael Jurka9c6de3d2010-11-23 16:23:58 -08002932 // when dragging and dropping, just find the closest free spot
Michael Jurkac4e772e2011-02-10 13:32:01 -08002933 cellLayout.findNearestVacantArea(touchXY[0], touchXY[1], 1, 1, mTargetCell);
Michael Jurka9c6de3d2010-11-23 16:23:58 -08002934 } else {
2935 cellLayout.findCellForSpan(mTargetCell, 1, 1);
2936 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002937 addInScreen(view, indexOfChild(cellLayout), mTargetCell[0],
2938 mTargetCell[1], info.spanX, info.spanY, insertAtFirst);
Michael Jurkad3ef3062010-11-23 16:23:58 -08002939 boolean animateDrop = !mWasSpringLoadedOnDragExit;
2940 cellLayout.onDropChild(view, animateDrop);
2941 cellLayout.animateDrop();
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002942 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) view.getLayoutParams();
Adam Cohend5e42732011-03-28 17:33:39 -07002943 cellLayout.getChildrenLayout().measureChild(view);
2944
2945 if (dragView != null) {
2946 setPositionForDropAnimation(dragView, dragViewX, dragViewY, cellLayout, view);
2947 }
Michael Jurkaaf442092010-06-10 17:01:57 -07002948
2949 LauncherModel.addOrMoveItemInDatabase(mLauncher, info,
Michael Jurka0280c3b2010-09-17 15:00:07 -07002950 LauncherSettings.Favorites.CONTAINER_DESKTOP, screen,
Winson Chungaafa03c2010-06-11 17:34:16 -07002951 lp.cellX, lp.cellY);
Joe Onorato00acb122009-08-04 16:04:30 -04002952 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002953 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002954
Jeff Sharkey70864282009-04-07 21:08:40 -07002955 /**
2956 * Return the current {@link CellLayout}, correctly picking the destination
2957 * screen while a scroll is in progress.
2958 */
Patrick Dubroy5f445422011-02-18 14:35:21 -08002959 public CellLayout getCurrentDropLayout() {
2960 return (CellLayout) getChildAt(mNextPage == INVALID_PAGE ? mCurrentPage : mNextPage);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002961 }
2962
Jeff Sharkey70864282009-04-07 21:08:40 -07002963 /**
Michael Jurka0280c3b2010-09-17 15:00:07 -07002964 * Return the current CellInfo describing our current drag; this method exists
2965 * so that Launcher can sync this object with the correct info when the activity is created/
2966 * destroyed
2967 *
2968 */
2969 public CellLayout.CellInfo getDragInfo() {
2970 return mDragInfo;
2971 }
2972
2973 /**
Jeff Sharkey70864282009-04-07 21:08:40 -07002974 * Calculate the nearest cell where the given object would be dropped.
2975 */
Michael Jurka6a1435d2010-09-27 17:35:12 -07002976 private int[] findNearestVacantArea(int pixelX, int pixelY,
Jeff Sharkey70864282009-04-07 21:08:40 -07002977 int spanX, int spanY, View ignoreView, CellLayout layout, int[] recycle) {
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002978
Michael Jurka5f1c5092010-09-03 14:15:02 -07002979 int localPixelX = pixelX - (layout.getLeft() - mScrollX);
2980 int localPixelY = pixelY - (layout.getTop() - mScrollY);
Patrick Dubroy6569f2c2010-07-12 14:25:18 -07002981
Jeff Sharkey70864282009-04-07 21:08:40 -07002982 // Find the best target drop location
Michael Jurka0280c3b2010-09-17 15:00:07 -07002983 return layout.findNearestVacantArea(
Michael Jurkafc9f07d2010-09-30 13:22:31 -07002984 localPixelX, localPixelY, spanX, spanY, ignoreView, recycle);
Jeff Sharkey70864282009-04-07 21:08:40 -07002985 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002986
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002987 void setLauncher(Launcher launcher) {
2988 mLauncher = launcher;
Michael Jurkac2f7f472010-12-14 15:34:42 -08002989 mSpringLoadedDragController = new SpringLoadedDragController(mLauncher);
Winson Chung88127032010-12-13 12:11:33 -08002990
2991 mCustomizationDrawer = mLauncher.findViewById(R.id.customization_drawer);
Winson Chung760e5372010-12-15 13:14:23 -08002992 if (mCustomizationDrawer != null) {
2993 mCustomizationDrawerContent =
2994 mCustomizationDrawer.findViewById(com.android.internal.R.id.tabcontent);
2995 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002996 }
2997
Joe Onorato00acb122009-08-04 16:04:30 -04002998 public void setDragController(DragController dragController) {
2999 mDragController = dragController;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003000 }
3001
Patrick Dubroye3887cc2011-01-20 10:43:40 -08003002 /**
3003 * Called at the end of a drag which originated on the workspace.
3004 */
Patrick Dubroy5f445422011-02-18 14:35:21 -08003005 public void onDropCompleted(View target, Object dragInfo, boolean success) {
Winson Chungaafa03c2010-06-11 17:34:16 -07003006 if (success) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003007 if (target != this && mDragInfo != null) {
3008 final CellLayout cellLayout = (CellLayout) getChildAt(mDragInfo.screen);
3009 cellLayout.removeView(mDragInfo.cell);
Joe Onorato00acb122009-08-04 16:04:30 -04003010 if (mDragInfo.cell instanceof DropTarget) {
3011 mDragController.removeDropTarget((DropTarget)mDragInfo.cell);
3012 }
Winson Chungaafa03c2010-06-11 17:34:16 -07003013 // final Object tag = mDragInfo.cell.getTag();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003014 }
Patrick Dubroyce34a972010-10-19 10:34:32 -07003015 } else if (mDragInfo != null) {
Patrick Dubroye3887cc2011-01-20 10:43:40 -08003016 // NOTE: When 'success' is true, onDragExit is called by the DragController before
3017 // calling onDropCompleted(). We call it ourselves here, but maybe this should be
3018 // moved into DragController.cancelDrag().
3019 doDragExit();
3020 ((CellLayout) getChildAt(mDragInfo.screen)).onDropChild(mDragInfo.cell, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003021 }
Winson Chung400438b2011-01-16 17:53:48 -08003022 mLauncher.unlockScreenOrientation();
Joe Onorato4be866d2010-10-10 11:26:02 -07003023 mDragOutline = null;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003024 mDragInfo = null;
3025 }
3026
Patrick Dubroya669d792010-11-23 14:40:33 -08003027 @Override
3028 public void onDragViewVisible() {
3029 ((View) mDragInfo.cell).setVisibility(View.GONE);
3030 }
3031
Michael Jurka0280c3b2010-09-17 15:00:07 -07003032 public boolean isDropEnabled() {
3033 return true;
3034 }
3035
Michael Jurka0142d492010-08-25 17:46:15 -07003036 @Override
3037 protected void onRestoreInstanceState(Parcelable state) {
3038 super.onRestoreInstanceState(state);
3039 Launcher.setScreen(mCurrentPage);
3040 }
3041
3042 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003043 public void scrollLeft() {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003044 if (!mIsSmall && !mIsInUnshrinkAnimation) {
Michael Jurka0142d492010-08-25 17:46:15 -07003045 super.scrollLeft();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003046 }
3047 }
3048
Michael Jurka0142d492010-08-25 17:46:15 -07003049 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003050 public void scrollRight() {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003051 if (!mIsSmall && !mIsInUnshrinkAnimation) {
Michael Jurka0142d492010-08-25 17:46:15 -07003052 super.scrollRight();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003053 }
3054 }
3055
Patrick Dubroy1262e362010-10-06 15:49:50 -07003056 @Override
3057 public void onEnterScrollArea(int direction) {
Michael Jurkad718d6a2010-10-14 15:35:17 -07003058 if (!mIsSmall && !mIsInUnshrinkAnimation) {
3059 mInScrollArea = true;
Patrick Dubroy54fa3b92010-11-17 12:18:45 -08003060 mPendingScrollDirection = direction;
3061
3062 final int page = mCurrentPage + (direction == DragController.SCROLL_LEFT ? -1 : 1);
3063 final CellLayout layout = (CellLayout) getChildAt(page);
3064
3065 if (layout != null) {
Michael Jurka33945b22010-12-21 18:19:38 -08003066 layout.setIsDragOverlapping(true);
Patrick Dubroy1262e362010-10-06 15:49:50 -07003067
Patrick Dubroy0207c522010-11-03 22:12:02 -07003068 if (mDragTargetLayout != null) {
3069 mDragTargetLayout.onDragExit();
3070 mDragTargetLayout = null;
3071 }
Patrick Dubroy70b95302011-02-11 09:32:59 -08003072 // In portrait, need to redraw the edge glow when entering the scroll area
3073 if (getHeight() > getWidth()) {
3074 invalidate();
3075 }
Michael Jurkad718d6a2010-10-14 15:35:17 -07003076 }
Patrick Dubroy1262e362010-10-06 15:49:50 -07003077 }
3078 }
3079
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07003080 private void clearAllHovers() {
3081 final int childCount = getChildCount();
3082 for (int i = 0; i < childCount; i++) {
Michael Jurka33945b22010-12-21 18:19:38 -08003083 ((CellLayout) getChildAt(i)).setIsDragOverlapping(false);
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07003084 }
Michael Jurkac2f7f472010-12-14 15:34:42 -08003085 mSpringLoadedDragController.onDragExit();
Patrick Dubroy70b95302011-02-11 09:32:59 -08003086
3087 // In portrait, workspace is responsible for drawing the edge glow on adjacent pages,
3088 // so we need to redraw the workspace when this may have changed.
3089 if (getHeight() > getWidth()) {
3090 invalidate();
3091 }
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07003092 }
3093
Patrick Dubroy1262e362010-10-06 15:49:50 -07003094 @Override
3095 public void onExitScrollArea() {
Michael Jurkad718d6a2010-10-14 15:35:17 -07003096 if (mInScrollArea) {
3097 mInScrollArea = false;
Patrick Dubroy54fa3b92010-11-17 12:18:45 -08003098 mPendingScrollDirection = DragController.SCROLL_NONE;
Patrick Dubroy08ae2ec2010-10-14 23:54:22 -07003099 clearAllHovers();
Patrick Dubroy1262e362010-10-06 15:49:50 -07003100 }
3101 }
3102
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003103 public Folder getFolderForTag(Object tag) {
Michael Jurkadee05892010-07-27 10:01:56 -07003104 final int screenCount = getChildCount();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003105 for (int screen = 0; screen < screenCount; screen++) {
Winson Chung6e314082011-01-27 16:46:51 -08003106 ViewGroup currentScreen = ((CellLayout) getChildAt(screen)).getChildrenLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003107 int count = currentScreen.getChildCount();
3108 for (int i = 0; i < count; i++) {
3109 View child = currentScreen.getChildAt(i);
3110 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams();
3111 if (lp.cellHSpan == 4 && lp.cellVSpan == 4 && child instanceof Folder) {
3112 Folder f = (Folder) child;
Winson Chungaafa03c2010-06-11 17:34:16 -07003113 if (f.getInfo() == tag && f.getInfo().opened) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003114 return f;
3115 }
3116 }
3117 }
3118 }
3119 return null;
3120 }
3121
3122 public View getViewForTag(Object tag) {
3123 int screenCount = getChildCount();
3124 for (int screen = 0; screen < screenCount; screen++) {
Winson Chung6e314082011-01-27 16:46:51 -08003125 ViewGroup currentScreen = ((CellLayout) getChildAt(screen)).getChildrenLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003126 int count = currentScreen.getChildCount();
3127 for (int i = 0; i < count; i++) {
3128 View child = currentScreen.getChildAt(i);
3129 if (child.getTag() == tag) {
3130 return child;
3131 }
3132 }
3133 }
3134 return null;
3135 }
3136
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003137
Joe Onorato64e6be72010-03-05 15:05:52 -05003138 void removeItems(final ArrayList<ApplicationInfo> apps) {
Michael Jurkadee05892010-07-27 10:01:56 -07003139 final int screenCount = getChildCount();
Romain Guy5c16f3e2010-01-12 17:24:58 -08003140 final PackageManager manager = getContext().getPackageManager();
Romain Guy629de3e2010-01-13 12:20:59 -08003141 final AppWidgetManager widgets = AppWidgetManager.getInstance(getContext());
Romain Guy574d20e2009-06-01 15:34:04 -07003142
Joe Onorato64e6be72010-03-05 15:05:52 -05003143 final HashSet<String> packageNames = new HashSet<String>();
3144 final int appCount = apps.size();
3145 for (int i = 0; i < appCount; i++) {
3146 packageNames.add(apps.get(i).componentName.getPackageName());
3147 }
3148
Michael Jurkadee05892010-07-27 10:01:56 -07003149 for (int i = 0; i < screenCount; i++) {
Winson Chung7a25a9e2011-01-30 13:33:56 -08003150 final CellLayout layoutParent = (CellLayout) getChildAt(i);
3151 final ViewGroup layout = layoutParent.getChildrenLayout();
Romain Guy574d20e2009-06-01 15:34:04 -07003152
Romain Guy629de3e2010-01-13 12:20:59 -08003153 // Avoid ANRs by treating each screen separately
3154 post(new Runnable() {
3155 public void run() {
3156 final ArrayList<View> childrenToRemove = new ArrayList<View>();
3157 childrenToRemove.clear();
Winson Chungaafa03c2010-06-11 17:34:16 -07003158
Romain Guy629de3e2010-01-13 12:20:59 -08003159 int childCount = layout.getChildCount();
3160 for (int j = 0; j < childCount; j++) {
3161 final View view = layout.getChildAt(j);
3162 Object tag = view.getTag();
Winson Chungaafa03c2010-06-11 17:34:16 -07003163
Joe Onorato0589f0f2010-02-08 13:44:00 -08003164 if (tag instanceof ShortcutInfo) {
3165 final ShortcutInfo info = (ShortcutInfo) tag;
Romain Guy629de3e2010-01-13 12:20:59 -08003166 final Intent intent = info.intent;
3167 final ComponentName name = intent.getComponent();
Winson Chungaafa03c2010-06-11 17:34:16 -07003168
Joe Onorato64e6be72010-03-05 15:05:52 -05003169 if (Intent.ACTION_MAIN.equals(intent.getAction()) && name != null) {
3170 for (String packageName: packageNames) {
3171 if (packageName.equals(name.getPackageName())) {
Joe Onorato64e6be72010-03-05 15:05:52 -05003172 LauncherModel.deleteItemFromDatabase(mLauncher, info);
3173 childrenToRemove.add(view);
3174 }
3175 }
Romain Guy629de3e2010-01-13 12:20:59 -08003176 }
3177 } else if (tag instanceof UserFolderInfo) {
3178 final UserFolderInfo info = (UserFolderInfo) tag;
Joe Onorato0589f0f2010-02-08 13:44:00 -08003179 final ArrayList<ShortcutInfo> contents = info.contents;
3180 final ArrayList<ShortcutInfo> toRemove = new ArrayList<ShortcutInfo>(1);
Romain Guy629de3e2010-01-13 12:20:59 -08003181 final int contentsCount = contents.size();
3182 boolean removedFromFolder = false;
Winson Chungaafa03c2010-06-11 17:34:16 -07003183
Romain Guy629de3e2010-01-13 12:20:59 -08003184 for (int k = 0; k < contentsCount; k++) {
Joe Onorato0589f0f2010-02-08 13:44:00 -08003185 final ShortcutInfo appInfo = contents.get(k);
Romain Guy629de3e2010-01-13 12:20:59 -08003186 final Intent intent = appInfo.intent;
3187 final ComponentName name = intent.getComponent();
Winson Chungaafa03c2010-06-11 17:34:16 -07003188
Joe Onorato64e6be72010-03-05 15:05:52 -05003189 if (Intent.ACTION_MAIN.equals(intent.getAction()) && name != null) {
3190 for (String packageName: packageNames) {
3191 if (packageName.equals(name.getPackageName())) {
3192 toRemove.add(appInfo);
Brad Fitzpatrick73013bf2010-09-14 12:15:32 -07003193 LauncherModel.deleteItemFromDatabase(mLauncher, appInfo);
Joe Onorato64e6be72010-03-05 15:05:52 -05003194 removedFromFolder = true;
3195 }
3196 }
Romain Guy629de3e2010-01-13 12:20:59 -08003197 }
3198 }
Winson Chungaafa03c2010-06-11 17:34:16 -07003199
Romain Guy629de3e2010-01-13 12:20:59 -08003200 contents.removeAll(toRemove);
3201 if (removedFromFolder) {
3202 final Folder folder = getOpenFolder();
Winson Chungaafa03c2010-06-11 17:34:16 -07003203 if (folder != null)
3204 folder.notifyDataSetChanged();
Romain Guy629de3e2010-01-13 12:20:59 -08003205 }
3206 } else if (tag instanceof LiveFolderInfo) {
3207 final LiveFolderInfo info = (LiveFolderInfo) tag;
3208 final Uri uri = info.uri;
3209 final ProviderInfo providerInfo = manager.resolveContentProvider(
3210 uri.getAuthority(), 0);
Romain Guy574d20e2009-06-01 15:34:04 -07003211
Joe Onoratof11079b2010-04-15 11:47:28 -07003212 if (providerInfo != null) {
Joe Onorato64e6be72010-03-05 15:05:52 -05003213 for (String packageName: packageNames) {
3214 if (packageName.equals(providerInfo.packageName)) {
Joe Onorato64e6be72010-03-05 15:05:52 -05003215 LauncherModel.deleteItemFromDatabase(mLauncher, info);
Winson Chungaafa03c2010-06-11 17:34:16 -07003216 childrenToRemove.add(view);
Joe Onorato64e6be72010-03-05 15:05:52 -05003217 }
3218 }
Romain Guy629de3e2010-01-13 12:20:59 -08003219 }
3220 } else if (tag instanceof LauncherAppWidgetInfo) {
3221 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) tag;
3222 final AppWidgetProviderInfo provider =
3223 widgets.getAppWidgetInfo(info.appWidgetId);
Daniel Sandlere1cc6c32010-05-07 11:49:29 -04003224 if (provider != null) {
Joe Onorato64e6be72010-03-05 15:05:52 -05003225 for (String packageName: packageNames) {
3226 if (packageName.equals(provider.provider.getPackageName())) {
Joe Onorato64e6be72010-03-05 15:05:52 -05003227 LauncherModel.deleteItemFromDatabase(mLauncher, info);
Winson Chungaafa03c2010-06-11 17:34:16 -07003228 childrenToRemove.add(view);
Joe Onorato64e6be72010-03-05 15:05:52 -05003229 }
3230 }
Romain Guy629de3e2010-01-13 12:20:59 -08003231 }
Romain Guy574d20e2009-06-01 15:34:04 -07003232 }
3233 }
Winson Chungaafa03c2010-06-11 17:34:16 -07003234
Romain Guy629de3e2010-01-13 12:20:59 -08003235 childCount = childrenToRemove.size();
3236 for (int j = 0; j < childCount; j++) {
3237 View child = childrenToRemove.get(j);
Winson Chung7a25a9e2011-01-30 13:33:56 -08003238 // Note: We can not remove the view directly from CellLayoutChildren as this
3239 // does not re-mark the spaces as unoccupied.
3240 layoutParent.removeViewInLayout(child);
Romain Guy629de3e2010-01-13 12:20:59 -08003241 if (child instanceof DropTarget) {
3242 mDragController.removeDropTarget((DropTarget)child);
3243 }
Romain Guy574d20e2009-06-01 15:34:04 -07003244 }
Winson Chungaafa03c2010-06-11 17:34:16 -07003245
Romain Guy629de3e2010-01-13 12:20:59 -08003246 if (childCount > 0) {
3247 layout.requestLayout();
3248 layout.invalidate();
Romain Guy5c16f3e2010-01-12 17:24:58 -08003249 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003250 }
Romain Guy629de3e2010-01-13 12:20:59 -08003251 });
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003252 }
3253 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003254
Joe Onorato64e6be72010-03-05 15:05:52 -05003255 void updateShortcuts(ArrayList<ApplicationInfo> apps) {
Michael Jurkadee05892010-07-27 10:01:56 -07003256 final int screenCount = getChildCount();
3257 for (int i = 0; i < screenCount; i++) {
Winson Chung6e314082011-01-27 16:46:51 -08003258 final ViewGroup layout = ((CellLayout) getChildAt(i)).getChildrenLayout();
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003259 int childCount = layout.getChildCount();
3260 for (int j = 0; j < childCount; j++) {
3261 final View view = layout.getChildAt(j);
3262 Object tag = view.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08003263 if (tag instanceof ShortcutInfo) {
3264 ShortcutInfo info = (ShortcutInfo)tag;
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003265 // We need to check for ACTION_MAIN otherwise getComponent() might
3266 // return null for some shortcuts (for instance, for shortcuts to
3267 // web pages.)
3268 final Intent intent = info.intent;
3269 final ComponentName name = intent.getComponent();
3270 if (info.itemType == LauncherSettings.Favorites.ITEM_TYPE_APPLICATION &&
Joe Onorato64e6be72010-03-05 15:05:52 -05003271 Intent.ACTION_MAIN.equals(intent.getAction()) && name != null) {
3272 final int appCount = apps.size();
Winson Chungaafa03c2010-06-11 17:34:16 -07003273 for (int k = 0; k < appCount; k++) {
Joe Onorato64e6be72010-03-05 15:05:52 -05003274 ApplicationInfo app = apps.get(k);
3275 if (app.componentName.equals(name)) {
3276 info.setIcon(mIconCache.getIcon(info.intent));
3277 ((TextView)view).setCompoundDrawablesWithIntrinsicBounds(null,
3278 new FastBitmapDrawable(info.getIcon(mIconCache)),
3279 null, null);
3280 }
3281 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003282 }
3283 }
3284 }
3285 }
3286 }
3287
Joe Onorato14f122b2009-11-19 14:06:36 -08003288 void moveToDefaultScreen(boolean animate) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003289 if (mIsSmall || mIsInUnshrinkAnimation) {
3290 mLauncher.showWorkspace(animate, (CellLayout)getChildAt(mDefaultPage));
3291 } else if (animate) {
3292 snapToPage(mDefaultPage);
Joe Onoratoc45b1682010-01-11 18:48:40 -05003293 } else {
Michael Jurka0142d492010-08-25 17:46:15 -07003294 setCurrentPage(mDefaultPage);
Joe Onoratoc45b1682010-01-11 18:48:40 -05003295 }
Michael Jurka0142d492010-08-25 17:46:15 -07003296 getChildAt(mDefaultPage).requestFocus();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003297 }
3298
Romain Guy8a73c512009-11-09 19:19:59 -08003299 void setIndicators(Drawable previous, Drawable next) {
3300 mPreviousIndicator = previous;
3301 mNextIndicator = next;
Michael Jurka0142d492010-08-25 17:46:15 -07003302 previous.setLevel(mCurrentPage);
3303 next.setLevel(mCurrentPage);
Romain Guy8a73c512009-11-09 19:19:59 -08003304 }
3305
Michael Jurka0142d492010-08-25 17:46:15 -07003306 @Override
3307 public void syncPages() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003308 }
Michael Jurka0142d492010-08-25 17:46:15 -07003309
3310 @Override
3311 public void syncPageItems(int page) {
3312 }
3313
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003314}