blob: 3f487cd2139495e1f9607c6ce6c7c2d1bebaf1e2 [file] [log] [blame]
Michael Jurka01f0ed42010-08-20 00:41:17 -07001
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002/*
3 * Copyright (C) 2008 The Android Open Source Project
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
Daniel Sandler325dc232013-06-05 22:57:57 -040018package com.android.launcher3;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080019
Michael Jurka974c3862012-05-22 22:00:31 -070020import android.accounts.Account;
21import android.accounts.AccountManager;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070022import android.animation.Animator;
Michael Jurka8edd75c2010-12-17 20:15:06 -080023import android.animation.AnimatorListenerAdapter;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070024import android.animation.AnimatorSet;
Adam Cohen2801caf2011-05-13 20:57:39 -070025import android.animation.ObjectAnimator;
26import android.animation.PropertyValuesHolder;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070027import android.animation.ValueAnimator;
Winson Chung70442722012-02-10 15:43:22 -080028import android.animation.ValueAnimator.AnimatorUpdateListener;
Michael Jurka946ad472010-07-09 18:05:18 -070029import android.app.Activity;
Brett Chabot2a9e2282011-08-23 15:03:13 -070030import android.app.ActivityManager;
Winson Chungc7450e32012-04-17 17:34:08 -070031import android.app.ActivityOptions;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080032import android.app.SearchManager;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080033import android.appwidget.AppWidgetHostView;
Michael Jurkaaf442092010-06-10 17:01:57 -070034import android.appwidget.AppWidgetManager;
35import android.appwidget.AppWidgetProviderInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080036import android.content.ActivityNotFoundException;
Joe Onorato2ca0ae72009-11-10 13:14:13 -080037import android.content.BroadcastReceiver;
Michael Jurkae326f182011-11-21 14:05:46 -080038import android.content.ComponentCallbacks2;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040039import android.content.ComponentName;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080040import android.content.ContentResolver;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080041import android.content.Context;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080042import android.content.Intent;
Winson Chungf0ea4d32011-06-06 14:27:16 -070043import android.content.IntentFilter;
Winson Chung82f55532011-08-09 14:14:23 -070044import android.content.SharedPreferences;
Winson Chungaafa03c2010-06-11 17:34:16 -070045import android.content.pm.ActivityInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080046import android.content.pm.PackageManager;
Adam Cohen716b51e2011-06-30 12:09:54 -070047import android.content.pm.PackageManager.NameNotFoundException;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080048import android.content.res.Configuration;
Karl Rosaen138a0412009-04-23 19:00:21 -070049import android.content.res.Resources;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080050import android.database.ContentObserver;
Adam Cohen268c4752012-06-06 17:47:33 -070051import android.graphics.Bitmap;
52import android.graphics.Canvas;
Craig Mautner360310b2012-10-26 15:13:08 -070053import android.graphics.Color;
Adam Cohen268c4752012-06-06 17:47:33 -070054import android.graphics.PorterDuff;
Michael Jurkaaf442092010-06-10 17:01:57 -070055import android.graphics.Rect;
Craig Mautner360310b2012-10-26 15:13:08 -070056import android.graphics.drawable.ColorDrawable;
Michael Jurkaaf442092010-06-10 17:01:57 -070057import android.graphics.drawable.Drawable;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040058import android.net.Uri;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -070059import android.os.AsyncTask;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080060import android.os.Bundle;
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +020061import android.os.Environment;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080062import android.os.Handler;
Adam Cohended9f8d2010-11-03 13:25:16 -070063import android.os.Message;
Winson Chunga2413752012-04-03 14:22:34 -070064import android.os.StrictMode;
Daniel Sandler843e8602010-06-07 14:59:01 -040065import android.os.SystemClock;
Patrick Dubroy4ed62782010-08-17 15:11:18 -070066import android.provider.Settings;
Amith Yamasani6d7fe502010-11-16 09:05:07 -080067import android.speech.RecognizerIntent;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080068import android.text.Selection;
69import android.text.SpannableStringBuilder;
Michael Jurkaa33411c2012-06-14 16:18:21 -070070import android.text.TextUtils;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080071import android.text.method.TextKeyListener;
Joe Onorato7c312c12009-08-13 21:36:53 -070072import android.util.Log;
Winson Chung400438b2011-01-16 17:53:48 -080073import android.view.Display;
Joe Onorato0d44e942009-11-16 18:20:51 -080074import android.view.HapticFeedbackConstants;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080075import android.view.KeyEvent;
76import android.view.LayoutInflater;
77import android.view.Menu;
78import android.view.MenuItem;
Michael Jurka0e260592010-06-30 17:07:39 -070079import android.view.MotionEvent;
Winson Chung400438b2011-01-16 17:53:48 -080080import android.view.Surface;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080081import android.view.View;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080082import android.view.View.OnLongClickListener;
Winson Chung82f55532011-08-09 14:14:23 -070083import android.view.ViewGroup;
Michael Jurkab737ee62011-11-15 15:57:22 -080084import android.view.ViewTreeObserver;
Michael Jurka2a4b1a82011-12-07 14:00:02 -080085import android.view.ViewTreeObserver.OnGlobalLayoutListener;
Dianne Hackbornbb003a52011-08-30 14:40:07 -070086import android.view.WindowManager;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -080087import android.view.accessibility.AccessibilityEvent;
Adam Cohencff6af82011-09-13 14:51:53 -070088import android.view.animation.AccelerateDecelerateInterpolator;
Winson Chung7a74ac92011-09-20 17:43:51 -070089import android.view.animation.AccelerateInterpolator;
Adam Cohenf16e5712011-01-13 13:31:45 -080090import android.view.animation.DecelerateInterpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080091import android.view.inputmethod.InputMethodManager;
Adam Cohended9f8d2010-11-03 13:25:16 -070092import android.widget.Advanceable;
Michael Jurkaaf442092010-06-10 17:01:57 -070093import android.widget.ImageView;
Winson Chung68846fd2010-10-29 11:00:27 -070094import android.widget.TextView;
95import android.widget.Toast;
Patrick Dubroy4ed62782010-08-17 15:11:18 -070096
Adam Cohendf2cc412011-04-27 16:56:57 -070097import com.android.common.Search;
Daniel Sandler325dc232013-06-05 22:57:57 -040098import com.android.launcher3.R;
99import com.android.launcher3.DropTarget.DragObject;
Romain Guyedcce092010-03-04 13:03:17 -0800100
Adam Cohenc0dcf592011-06-01 15:30:43 -0700101import java.io.DataInputStream;
102import java.io.DataOutputStream;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700103import java.io.FileDescriptor;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700104import java.io.FileNotFoundException;
105import java.io.IOException;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700106import java.io.PrintWriter;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700107import java.util.ArrayList;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700108import java.util.Collection;
109import java.util.Collections;
110import java.util.Comparator;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700111import java.util.HashMap;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700112import java.util.HashSet;
Michael Jurkad7c28052012-04-27 15:43:36 -0700113import java.util.List;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700114import java.util.Set;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700115
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800116/**
117 * Default launcher application.
118 */
Michael Jurka946ad472010-07-09 18:05:18 -0700119public final class Launcher extends Activity
Michael Jurka0e260592010-06-30 17:07:39 -0700120 implements View.OnClickListener, OnLongClickListener, LauncherModel.Callbacks,
Winson Chungcd810732012-06-18 16:45:43 -0700121 View.OnTouchListener {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800122 static final String TAG = "Launcher";
Joe Onoratocc67f472010-06-08 10:54:30 -0700123 static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800124
Joe Onorato9c1289c2009-08-17 11:03:03 -0400125 static final boolean PROFILE_STARTUP = false;
Daniel Sandler843e8602010-06-07 14:59:01 -0400126 static final boolean DEBUG_WIDGETS = false;
Winson Chunga2413752012-04-03 14:22:34 -0700127 static final boolean DEBUG_STRICT_MODE = false;
Michael Jurkac402cd92013-05-20 15:49:32 +0200128 static final boolean DEBUG_RESUME_TIME = false;
Romain Guy6fefcf12009-06-11 13:07:43 -0700129
Winson Chung70d72102011-08-12 11:24:35 -0700130 private static final int MENU_GROUP_WALLPAPER = 1;
131 private static final int MENU_WALLPAPER_SETTINGS = Menu.FIRST + 1;
132 private static final int MENU_MANAGE_APPS = MENU_WALLPAPER_SETTINGS + 1;
Winson Chung236d4312011-08-22 15:12:27 -0700133 private static final int MENU_SYSTEM_SETTINGS = MENU_MANAGE_APPS + 1;
134 private static final int MENU_HELP = MENU_SYSTEM_SETTINGS + 1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800135
136 private static final int REQUEST_CREATE_SHORTCUT = 1;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700137 private static final int REQUEST_CREATE_APPWIDGET = 5;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800138 private static final int REQUEST_PICK_APPLICATION = 6;
139 private static final int REQUEST_PICK_SHORTCUT = 7;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700140 private static final int REQUEST_PICK_APPWIDGET = 9;
Mike Clerona0618e42009-10-22 13:55:21 -0700141 private static final int REQUEST_PICK_WALLPAPER = 10;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800142
Michael Jurka8b805b12012-04-18 14:23:14 -0700143 private static final int REQUEST_BIND_APPWIDGET = 11;
144
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800145 static final String EXTRA_SHORTCUT_DUPLICATE = "duplicate";
146
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800147 static final int SCREEN_COUNT = 5;
148 static final int DEFAULT_SCREEN = 2;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800149
Romain Guy98d01652009-06-30 16:21:04 -0700150 private static final String PREFERENCES = "launcher.preferences";
Michael Jurka0a457bf2012-11-19 14:05:05 -0800151 // To turn on these properties, type
152 // adb shell setprop log.tag.PROPERTY_NAME [VERBOSE | SUPPRESS]
153 static final String FORCE_ENABLE_ROTATION_PROPERTY = "launcher_force_rotate";
154 static final String DUMP_STATE_PROPERTY = "launcher_dump_state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800155
Winson Chung2672ff92012-05-04 16:22:30 -0700156 // The Intent extra that defines whether to ignore the launch animation
157 static final String INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION =
Daniel Sandler325dc232013-06-05 22:57:57 -0400158 "com.android.launcher3.intent.extra.shortcut.INGORE_LAUNCH_ANIMATION";
Winson Chung2672ff92012-05-04 16:22:30 -0700159
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800160 // Type: int
161 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
Michael Jurka883f55b2010-10-21 15:47:14 -0700162 // Type: int
163 private static final String RUNTIME_STATE = "launcher.state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800164 // Type: int
Winson Chung3d503fb2011-07-13 17:25:49 -0700165 private static final String RUNTIME_STATE_PENDING_ADD_CONTAINER = "launcher.add_container";
166 // Type: int
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800167 private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
168 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700169 private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cell_x";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800170 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700171 private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cell_y";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800172 // Type: boolean
173 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME = "launcher.rename_folder";
174 // Type: long
175 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME_ID = "launcher.rename_folder_id";
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700176 // Type: int
177 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_X = "launcher.add_span_x";
178 // Type: int
179 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_Y = "launcher.add_span_y";
180 // Type: parcelable
181 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_INFO = "launcher.add_widget_info";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800182
Daniel Sandler325dc232013-06-05 22:57:57 -0400183 private static final String TOOLBAR_ICON_METADATA_NAME = "com.android.launcher3.toolbar_icon";
Michael Jurkaae65ee32012-04-30 11:45:54 -0700184 private static final String TOOLBAR_SEARCH_ICON_METADATA_NAME =
Daniel Sandler325dc232013-06-05 22:57:57 -0400185 "com.android.launcher3.toolbar_search_icon";
Michael Jurkaae65ee32012-04-30 11:45:54 -0700186 private static final String TOOLBAR_VOICE_SEARCH_ICON_METADATA_NAME =
Daniel Sandler325dc232013-06-05 22:57:57 -0400187 "com.android.launcher3.toolbar_voice_search_icon";
Patrick Dubroyceae05d2010-08-30 10:40:53 -0700188
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700189 /** The different states that Launcher can be in. */
Winson Chung4a2afa32012-07-19 14:53:05 -0700190 private enum State { NONE, WORKSPACE, APPS_CUSTOMIZE, APPS_CUSTOMIZE_SPRING_LOADED };
Michael Jurkac0e8fca2010-10-06 16:41:29 -0700191 private State mState = State.WORKSPACE;
192 private AnimatorSet mStateAnimation;
Michael Jurkab737ee62011-11-15 15:57:22 -0800193 private AnimatorSet mDividerAnimator;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700194
Joe Onorato9c1289c2009-08-17 11:03:03 -0400195 static final int APPWIDGET_HOST_ID = 1024;
Winson Chung557d6ed2011-07-08 15:34:52 -0700196 private static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
197 private static final int EXIT_SPRINGLOADED_MODE_LONG_TIMEOUT = 600;
Winson Chung7a74ac92011-09-20 17:43:51 -0700198 private static final int SHOW_CLING_DURATION = 550;
Winson Chung7d7541e2011-09-16 20:14:36 -0700199 private static final int DISMISS_CLING_DURATION = 250;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800200
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800201 private static final Object sLock = new Object();
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800202 private static int sScreen = DEFAULT_SCREEN;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800203
Winson Chunga2413752012-04-03 14:22:34 -0700204 // How long to wait before the new-shortcut animation automatically pans the workspace
205 private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 10;
206
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800207 private final BroadcastReceiver mCloseSystemDialogsReceiver
208 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800209 private final ContentObserver mWidgetObserver = new AppWidgetResetObserver();
210
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800211 private LayoutInflater mInflater;
212
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800213 private Workspace mWorkspace;
Michael Jurkab737ee62011-11-15 15:57:22 -0800214 private View mQsbDivider;
215 private View mDockDivider;
Craig Mautner360310b2012-10-26 15:13:08 -0700216 private View mLauncherView;
Michael Jurkab737ee62011-11-15 15:57:22 -0800217 private DragLayer mDragLayer;
218 private DragController mDragController;
Romain Guycbb89e42009-06-08 15:52:54 -0700219
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700220 private AppWidgetManager mAppWidgetManager;
221 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700222
Michael Jurkac9d95c52011-08-29 14:03:34 -0700223 private ItemInfo mPendingAddInfo = new ItemInfo();
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700224 private AppWidgetProviderInfo mPendingAddWidgetInfo;
225
Michael Jurka0280c3b2010-09-17 15:00:07 -0700226 private int[] mTmpAddItemCellCoordinates = new int[2];
227
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800228 private FolderInfo mFolderInfo;
229
Winson Chung3d503fb2011-07-13 17:25:49 -0700230 private Hotseat mHotseat;
Michael Jurka838a4ca2011-02-07 13:33:06 -0800231 private View mAllAppsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700232
Winson Chungc51db6a2011-10-05 11:44:49 -0700233 private SearchDropTargetBar mSearchDropTargetBar;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700234 private AppsCustomizeTabHost mAppsCustomizeTabHost;
235 private AppsCustomizePagedView mAppsCustomizeContent;
236 private boolean mAutoAdvanceRunning = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800237
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800238 private Bundle mSavedState;
Winson Chung4a2afa32012-07-19 14:53:05 -0700239 // We set the state in both onCreate and then onNewIntent in some cases, which causes both
240 // scroll issues (because the workspace may not have been measured yet) and extra work.
241 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
242 private State mOnResumeState = State.NONE;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800243
244 private SpannableStringBuilder mDefaultKeySsb = null;
245
Joe Onorato9c1289c2009-08-17 11:03:03 -0400246 private boolean mWorkspaceLoading = true;
247
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800248 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800249 private boolean mRestoring;
250 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700251 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800252
Michael Jurka7607c2f2013-04-03 14:33:19 -0700253 private ArrayList<Runnable> mOnResumeCallbacks = new ArrayList<Runnable>();
254
Winson Chung4a2afa32012-07-19 14:53:05 -0700255 // Keep track of whether the user has left launcher
256 private static boolean sPausedFromUserAction = false;
257
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800258 private Bundle mSavedInstanceState;
259
Joe Onorato9c1289c2009-08-17 11:03:03 -0400260 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800261 private IconCache mIconCache;
Adam Cohend113e0c2010-11-11 10:48:05 -0800262 private boolean mUserPresent = true;
263 private boolean mVisible = false;
264 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400265
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700266 private static LocaleConfiguration sLocaleConfiguration = null;
267
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700268 private static HashMap<Long, FolderInfo> sFolders = new HashMap<Long, FolderInfo>();
Romain Guycbb89e42009-06-08 15:52:54 -0700269
Patrick Dubroyceae05d2010-08-30 10:40:53 -0700270 private Intent mAppMarketIntent = null;
271
Adam Cohended9f8d2010-11-03 13:25:16 -0700272 // Related to the auto-advancing of widgets
273 private final int ADVANCE_MSG = 1;
274 private final int mAdvanceInterval = 20000;
275 private final int mAdvanceStagger = 250;
276 private long mAutoAdvanceSentTime;
277 private long mAutoAdvanceTimeLeft = -1;
278 private HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
279 new HashMap<View, AppWidgetProviderInfo>();
280
Winson Chung400438b2011-01-16 17:53:48 -0800281 // Determines how long to wait after a rotation before restoring the screen orientation to
282 // match the sensor state.
283 private final int mRestoreScreenOrientationDelay = 500;
284
Michael Jurka4ef207b2010-11-29 17:05:45 -0800285 // External icons saved in case of resource changes, orientation, etc.
Winson Chungdff8ebb2011-09-08 17:25:31 -0700286 private static Drawable.ConstantState[] sGlobalSearchIcon = new Drawable.ConstantState[2];
287 private static Drawable.ConstantState[] sVoiceSearchIcon = new Drawable.ConstantState[2];
288 private static Drawable.ConstantState[] sAppMarketIcon = new Drawable.ConstantState[2];
Michael Jurka4ef207b2010-11-29 17:05:45 -0800289
Craig Mautner360310b2012-10-26 15:13:08 -0700290 private Drawable mWorkspaceBackgroundDrawable;
Craig Mautner360310b2012-10-26 15:13:08 -0700291
Adam Cohen1462de32012-07-24 22:34:36 -0700292 private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>();
293
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700294 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
295
Winson Chung46353de2012-02-16 14:05:10 -0800296 // We only want to get the SharedPreferences once since it does an FS stat each time we get
297 // it from the context.
298 private SharedPreferences mSharedPrefs;
299
Winson Chungf0c6ae02012-03-21 16:10:31 -0700300 // Holds the page that we need to animate to, and the icon views that we need to animate up
301 // when we scroll to that page on resume.
302 private int mNewShortcutAnimatePage = -1;
303 private ArrayList<View> mNewShortcutAnimateViews = new ArrayList<View>();
Adam Cohen268c4752012-06-06 17:47:33 -0700304 private ImageView mFolderIconImageView;
305 private Bitmap mFolderIconBitmap;
306 private Canvas mFolderIconCanvas;
307 private Rect mRectForFolderAnimation = new Rect();
Adam Cohen2801caf2011-05-13 20:57:39 -0700308
Michael Jurkaddd62e92011-02-16 17:49:14 -0800309 private BubbleTextView mWaitingForResume;
310
Michael Jurka22143132012-10-04 17:42:38 +0200311 private HideFromAccessibilityHelper mHideFromAccessibilityHelper
312 = new HideFromAccessibilityHelper();
313
Michael Jurkac1f5d262011-09-30 19:32:27 -0700314 private Runnable mBuildLayersRunnable = new Runnable() {
315 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700316 if (mWorkspace != null) {
317 mWorkspace.buildPageHardwareLayers();
318 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700319 }
320 };
321
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800322 private static ArrayList<PendingAddArguments> sPendingAddList
323 = new ArrayList<PendingAddArguments>();
324
Michael Jurka0a457bf2012-11-19 14:05:05 -0800325 private static boolean sForceEnableRotation = isPropertyEnabled(FORCE_ENABLE_ROTATION_PROPERTY);
326
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800327 private static class PendingAddArguments {
328 int requestCode;
329 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700330 long container;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800331 int screen;
332 int cellX;
333 int cellY;
334 }
335
Michael Jurka0a457bf2012-11-19 14:05:05 -0800336 private static boolean isPropertyEnabled(String propertyName) {
337 return Log.isLoggable(propertyName, Log.VERBOSE);
Michael Jurka9bc8eba2012-05-21 20:36:44 -0700338 }
339
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800340 @Override
341 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700342 if (DEBUG_STRICT_MODE) {
343 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
344 .detectDiskReads()
345 .detectDiskWrites()
346 .detectNetwork() // or .detectAll() for all detectable problems
347 .penaltyLog()
348 .build());
349 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
350 .detectLeakedSqlLiteObjects()
351 .detectLeakedClosableObjects()
352 .penaltyLog()
353 .penaltyDeath()
354 .build());
355 }
356
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800357 super.onCreate(savedInstanceState);
Joe Onorato0589f0f2010-02-08 13:44:00 -0800358 LauncherApplication app = ((LauncherApplication)getApplication());
Winson Chungf0c6ae02012-03-21 16:10:31 -0700359 mSharedPrefs = getSharedPreferences(LauncherApplication.getSharedPreferencesKey(),
360 Context.MODE_PRIVATE);
Joe Onorato0589f0f2010-02-08 13:44:00 -0800361 mModel = app.setLauncher(this);
362 mIconCache = app.getIconCache();
Joe Onorato41a12d22009-10-31 18:30:00 -0400363 mDragController = new DragController(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800364 mInflater = getLayoutInflater();
Romain Guycbb89e42009-06-08 15:52:54 -0700365
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700366 mAppWidgetManager = AppWidgetManager.getInstance(this);
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700367 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
368 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700369
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700370 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
371 // this also ensures that any synchronous binding below doesn't re-trigger another
372 // LauncherModel load.
373 mPaused = false;
374
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800375 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200376 android.os.Debug.startMethodTracing(
377 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800378 }
379
380 checkForLocaleChange();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800381 setContentView(R.layout.launcher);
382 setupViews();
Winson Chung7d7541e2011-09-16 20:14:36 -0700383 showFirstRunWorkspaceCling();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800384
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800385 registerContentObservers();
386
Joe Onorato7c312c12009-08-13 21:36:53 -0700387 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700388
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800389 mSavedState = savedInstanceState;
390 restoreState(mSavedState);
391
Winson Chunga12a2502010-12-20 14:41:35 -0800392 // Update customization drawer _after_ restoring the states
Winson Chung785d2eb2011-04-14 16:08:02 -0700393 if (mAppsCustomizeContent != null) {
Michael Jurkac402cd92013-05-20 15:49:32 +0200394 mAppsCustomizeContent.onPackagesUpdated(
395 LauncherModel.getSortedWidgetsAndShortcuts(this));
Winson Chung785d2eb2011-04-14 16:08:02 -0700396 }
Winson Chunga12a2502010-12-20 14:41:35 -0800397
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800398 if (PROFILE_STARTUP) {
399 android.os.Debug.stopMethodTracing();
400 }
401
402 if (!mRestoring) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700403 if (sPausedFromUserAction) {
404 // If the user leaves launcher, then we should just load items asynchronously when
405 // they return.
406 mModel.startLoader(true, -1);
407 } else {
408 // We only load the page synchronously if the user rotates (or triggers a
409 // configuration change) while launcher is in the foreground
410 mModel.startLoader(true, mWorkspace.getCurrentPage());
411 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800412 }
413
Michael Jurkac57b7a82011-08-09 22:02:20 -0700414 if (!mModel.isAllAppsLoaded()) {
415 ViewGroup appsCustomizeContentParent = (ViewGroup) mAppsCustomizeContent.getParent();
416 mInflater.inflate(R.layout.apps_customize_progressbar, appsCustomizeContentParent);
417 }
418
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800419 // For handling default keys
420 mDefaultKeySsb = new SpannableStringBuilder();
421 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800422
423 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
424 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800425
Adam Cohenf9426d52012-06-04 17:26:21 -0700426 updateGlobalIcons();
427
428 // On large interfaces, we want the screen to auto-rotate based on the current orientation
429 unlockScreenOrientation(true);
430 }
431
Winson Chung4a2afa32012-07-19 14:53:05 -0700432 protected void onUserLeaveHint() {
433 super.onUserLeaveHint();
434 sPausedFromUserAction = true;
435 }
436
Adam Cohenf9426d52012-06-04 17:26:21 -0700437 private void updateGlobalIcons() {
Winson Chungc51db6a2011-10-05 11:44:49 -0700438 boolean searchVisible = false;
439 boolean voiceVisible = false;
Michael Jurka4ef207b2010-11-29 17:05:45 -0800440 // If we have a saved version of these external icons, we load them up immediately
Winson Chungdff8ebb2011-09-08 17:25:31 -0700441 int coi = getCurrentOrientationIndexForGlobalIcons();
442 if (sGlobalSearchIcon[coi] == null || sVoiceSearchIcon[coi] == null ||
443 sAppMarketIcon[coi] == null) {
Winson Chungc51db6a2011-10-05 11:44:49 -0700444 updateAppMarketIcon();
445 searchVisible = updateGlobalSearchIcon();
446 voiceVisible = updateVoiceSearchIcon(searchVisible);
Winson Chungf0ea4d32011-06-06 14:27:16 -0700447 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700448 if (sGlobalSearchIcon[coi] != null) {
449 updateGlobalSearchIcon(sGlobalSearchIcon[coi]);
Winson Chungc51db6a2011-10-05 11:44:49 -0700450 searchVisible = true;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700451 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700452 if (sVoiceSearchIcon[coi] != null) {
453 updateVoiceSearchIcon(sVoiceSearchIcon[coi]);
Winson Chungc51db6a2011-10-05 11:44:49 -0700454 voiceVisible = true;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700455 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700456 if (sAppMarketIcon[coi] != null) {
457 updateAppMarketIcon(sAppMarketIcon[coi]);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800458 }
Winson Chungadf0c182012-08-23 14:59:07 -0700459 if (mSearchDropTargetBar != null) {
460 mSearchDropTargetBar.onSearchPackagesChanged(searchVisible, voiceVisible);
461 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800462 }
Romain Guycbb89e42009-06-08 15:52:54 -0700463
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800464 private void checkForLocaleChange() {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700465 if (sLocaleConfiguration == null) {
466 new AsyncTask<Void, Void, LocaleConfiguration>() {
467 @Override
468 protected LocaleConfiguration doInBackground(Void... unused) {
469 LocaleConfiguration localeConfiguration = new LocaleConfiguration();
470 readConfiguration(Launcher.this, localeConfiguration);
471 return localeConfiguration;
472 }
473
474 @Override
475 protected void onPostExecute(LocaleConfiguration result) {
476 sLocaleConfiguration = result;
477 checkForLocaleChange(); // recursive, but now with a locale configuration
478 }
479 }.execute();
480 return;
481 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700482
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800483 final Configuration configuration = getResources().getConfiguration();
484
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700485 final String previousLocale = sLocaleConfiguration.locale;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800486 final String locale = configuration.locale.toString();
487
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700488 final int previousMcc = sLocaleConfiguration.mcc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800489 final int mcc = configuration.mcc;
490
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700491 final int previousMnc = sLocaleConfiguration.mnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800492 final int mnc = configuration.mnc;
493
Romain Guy84f296c2009-11-04 15:00:44 -0800494 boolean localeChanged = !locale.equals(previousLocale) || mcc != previousMcc || mnc != previousMnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800495
Romain Guy84f296c2009-11-04 15:00:44 -0800496 if (localeChanged) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700497 sLocaleConfiguration.locale = locale;
498 sLocaleConfiguration.mcc = mcc;
499 sLocaleConfiguration.mnc = mnc;
Romain Guy98d01652009-06-30 16:21:04 -0700500
Joe Onorato0589f0f2010-02-08 13:44:00 -0800501 mIconCache.flush();
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700502
503 final LocaleConfiguration localeConfiguration = sLocaleConfiguration;
504 new Thread("WriteLocaleConfiguration") {
Gilles Debunnedd6c9922010-10-25 11:23:41 -0700505 @Override
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700506 public void run() {
507 writeConfiguration(Launcher.this, localeConfiguration);
508 }
509 }.start();
Romain Guy98d01652009-06-30 16:21:04 -0700510 }
511 }
512
513 private static class LocaleConfiguration {
514 public String locale;
515 public int mcc = -1;
516 public int mnc = -1;
517 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700518
Romain Guy98d01652009-06-30 16:21:04 -0700519 private static void readConfiguration(Context context, LocaleConfiguration configuration) {
520 DataInputStream in = null;
521 try {
522 in = new DataInputStream(context.openFileInput(PREFERENCES));
523 configuration.locale = in.readUTF();
524 configuration.mcc = in.readInt();
525 configuration.mnc = in.readInt();
526 } catch (FileNotFoundException e) {
527 // Ignore
528 } catch (IOException e) {
529 // Ignore
530 } finally {
531 if (in != null) {
532 try {
533 in.close();
534 } catch (IOException e) {
535 // Ignore
536 }
537 }
538 }
539 }
540
541 private static void writeConfiguration(Context context, LocaleConfiguration configuration) {
542 DataOutputStream out = null;
543 try {
544 out = new DataOutputStream(context.openFileOutput(PREFERENCES, MODE_PRIVATE));
545 out.writeUTF(configuration.locale);
546 out.writeInt(configuration.mcc);
547 out.writeInt(configuration.mnc);
548 out.flush();
549 } catch (FileNotFoundException e) {
550 // Ignore
551 } catch (IOException e) {
552 //noinspection ResultOfMethodCallIgnored
553 context.getFileStreamPath(PREFERENCES).delete();
554 } finally {
555 if (out != null) {
556 try {
557 out.close();
558 } catch (IOException e) {
559 // Ignore
560 }
561 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800562 }
563 }
564
Adam Cohen716b51e2011-06-30 12:09:54 -0700565 public DragLayer getDragLayer() {
566 return mDragLayer;
567 }
568
Winson Chung36a62fe2012-05-06 18:04:42 -0700569 boolean isDraggingEnabled() {
570 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
571 // that is subsequently removed from the workspace in startBinding().
572 return !mModel.isLoadingWorkspace();
573 }
574
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800575 static int getScreen() {
576 synchronized (sLock) {
577 return sScreen;
578 }
579 }
580
581 static void setScreen(int screen) {
582 synchronized (sLock) {
583 sScreen = screen;
584 }
585 }
586
Winson Chung557d6ed2011-07-08 15:34:52 -0700587 /**
588 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
589 * a configuration step, this allows the proper animations to run after other transitions.
590 */
591 private boolean completeAdd(PendingAddArguments args) {
Winson Chungb8472bb2011-08-05 13:49:21 -0700592 boolean result = false;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800593 switch (args.requestCode) {
594 case REQUEST_PICK_APPLICATION:
Winson Chung3d503fb2011-07-13 17:25:49 -0700595 completeAddApplication(args.intent, args.container, args.screen, args.cellX,
596 args.cellY);
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800597 break;
598 case REQUEST_PICK_SHORTCUT:
599 processShortcut(args.intent);
600 break;
601 case REQUEST_CREATE_SHORTCUT:
Winson Chung3d503fb2011-07-13 17:25:49 -0700602 completeAddShortcut(args.intent, args.container, args.screen, args.cellX,
603 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700604 result = true;
605 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800606 case REQUEST_CREATE_APPWIDGET:
607 int appWidgetId = args.intent.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1);
Adam Cohened66b2b2012-01-23 17:28:51 -0800608 completeAddAppWidget(appWidgetId, args.container, args.screen, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700609 result = true;
610 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800611 case REQUEST_PICK_WALLPAPER:
612 // We just wanted the activity result here so we can clear mWaitingForResult
613 break;
614 }
Michael Jurka27614d22012-04-02 06:40:22 -0700615 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
616 // if you turned the screen off and then back while in All Apps, Launcher would not
617 // return to the workspace. Clearing mAddInfo.container here fixes this issue
618 resetAddInfo();
Winson Chungb8472bb2011-08-05 13:49:21 -0700619 return result;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800620 }
621
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800622 @Override
Michael Jurka8b805b12012-04-18 14:23:14 -0700623 protected void onActivityResult(
624 final int requestCode, final int resultCode, final Intent data) {
625 if (requestCode == REQUEST_BIND_APPWIDGET) {
626 int appWidgetId = data != null ?
627 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
628 if (resultCode == RESULT_CANCELED) {
629 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
630 } else if (resultCode == RESULT_OK) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700631 addAppWidgetImpl(appWidgetId, mPendingAddInfo, null, mPendingAddWidgetInfo);
Michael Jurka8b805b12012-04-18 14:23:14 -0700632 }
633 return;
634 }
Winson Chung557d6ed2011-07-08 15:34:52 -0700635 boolean delayExitSpringLoadedMode = false;
Adam Cohened66b2b2012-01-23 17:28:51 -0800636 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
637 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700638 mWaitingForResult = false;
639
Adam Cohened66b2b2012-01-23 17:28:51 -0800640 // We have special handling for widgets
641 if (isWidgetDrop) {
642 int appWidgetId = data != null ?
643 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
Winson Chung5aaab772012-04-27 15:24:02 -0700644 if (appWidgetId < 0) {
645 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not returned from the \\" +
646 "widget configuration activity.");
647 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
648 } else {
649 completeTwoStageWidgetDrop(resultCode, appWidgetId);
650 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800651 return;
652 }
653
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800654 // The pattern used here is that a user PICKs a specific application,
655 // which, depending on the target, might need to CREATE the actual target.
Romain Guycbb89e42009-06-08 15:52:54 -0700656
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800657 // For example, the user would PICK_SHORTCUT for "Music playlist", and we
658 // launch over to the Music app to actually CREATE_SHORTCUT.
Winson Chungc7da5552011-08-10 15:28:45 -0700659 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800660 final PendingAddArguments args = new PendingAddArguments();
661 args.requestCode = requestCode;
662 args.intent = data;
Winson Chung3d503fb2011-07-13 17:25:49 -0700663 args.container = mPendingAddInfo.container;
664 args.screen = mPendingAddInfo.screen;
665 args.cellX = mPendingAddInfo.cellX;
666 args.cellY = mPendingAddInfo.cellY;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800667 if (isWorkspaceLocked()) {
668 sPendingAddList.add(args);
669 } else {
Winson Chung557d6ed2011-07-08 15:34:52 -0700670 delayExitSpringLoadedMode = completeAdd(args);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800671 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800672 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800673 mDragLayer.clearAnimatedView();
Winson Chung557d6ed2011-07-08 15:34:52 -0700674 // Exit spring loaded mode if necessary after cancelling the configuration of a widget
Adam Cohened66b2b2012-01-23 17:28:51 -0800675 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED), delayExitSpringLoadedMode,
676 null);
677 }
678
679 private void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700680 CellLayout cellLayout =
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700681 (CellLayout) mWorkspace.getChildAt(mPendingAddInfo.screen);
Adam Cohened66b2b2012-01-23 17:28:51 -0800682 Runnable onCompleteRunnable = null;
683 int animationType = 0;
684
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700685 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800686 if (resultCode == RESULT_OK) {
687 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
688 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700689 mPendingAddWidgetInfo);
690 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800691 onCompleteRunnable = new Runnable() {
692 @Override
693 public void run() {
694 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
695 mPendingAddInfo.screen, layout, null);
696 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED), false,
697 null);
698 }
699 };
700 } else if (resultCode == RESULT_CANCELED) {
701 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
702 onCompleteRunnable = new Runnable() {
703 @Override
704 public void run() {
705 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED), false,
706 null);
707 }
708 };
709 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700710 if (mDragLayer.getAnimatedView() != null) {
711 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
712 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
713 animationType, boundWidget, true);
714 } else {
715 // The animated view may be null in the case of a rotation during widget configuration
716 onCompleteRunnable.run();
717 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800718 }
719
720 @Override
Michael Jurkacd496d72013-04-11 11:32:45 -0700721 protected void onStop() {
722 super.onStop();
723 FirstFrameAnimatorHelper.setIsVisible(false);
724 }
725
726 @Override
727 protected void onStart() {
728 super.onStart();
729 FirstFrameAnimatorHelper.setIsVisible(true);
730 }
731
732 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800733 protected void onResume() {
Michael Jurka447bf842013-05-15 14:52:15 +0200734 long startTime = 0;
735 if (DEBUG_RESUME_TIME) {
736 startTime = System.currentTimeMillis();
737 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800738 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700739
Winson Chung4a2afa32012-07-19 14:53:05 -0700740 // Restore the previous launcher state
741 if (mOnResumeState == State.WORKSPACE) {
742 showWorkspace(false);
743 } else if (mOnResumeState == State.APPS_CUSTOMIZE) {
744 showAllApps(false);
745 }
746 mOnResumeState = State.NONE;
747
Craig Mautner360310b2012-10-26 15:13:08 -0700748 // Background was set to gradient in onPause(), restore to black if in all apps.
749 setWorkspaceBackground(mState == State.WORKSPACE);
750
Winson Chungde0fb8f2012-05-08 14:37:08 -0700751 // Process any items that were added while Launcher was away
752 InstallShortcutReceiver.flushInstallQueue(this);
753
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800754 mPaused = false;
Winson Chung4a2afa32012-07-19 14:53:05 -0700755 sPausedFromUserAction = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700756 if (mRestoring || mOnResumeNeedsLoad) {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400757 mWorkspaceLoading = true;
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700758 mModel.startLoader(true, -1);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400759 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700760 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800761 }
Michael Jurkac402cd92013-05-20 15:49:32 +0200762 if (mOnResumeCallbacks.size() > 0) {
763 // We might have postponed some bind calls until onResume (see waitUntilResume) --
764 // execute them here
765 long startTimeCallbacks = 0;
766 if (DEBUG_RESUME_TIME) {
767 startTimeCallbacks = System.currentTimeMillis();
768 }
769
770 if (mAppsCustomizeContent != null) {
771 mAppsCustomizeContent.setBulkBind(true);
772 }
773 for (int i = 0; i < mOnResumeCallbacks.size(); i++) {
774 mOnResumeCallbacks.get(i).run();
775 }
776 if (mAppsCustomizeContent != null) {
777 mAppsCustomizeContent.setBulkBind(false);
778 }
779 mOnResumeCallbacks.clear();
780 if (DEBUG_RESUME_TIME) {
781 Log.d(TAG, "Time spent processing callbacks in onResume: " +
782 (System.currentTimeMillis() - startTimeCallbacks));
783 }
Michael Jurka447bf842013-05-15 14:52:15 +0200784 }
Winson Chunge4e50662012-01-23 14:45:13 -0800785
786 // Reset the pressed state of icons that were locked in the press state while activities
787 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -0800788 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -0800789 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -0800790 mWaitingForResume.setStayPressed(false);
791 }
Winson Chunge4e50662012-01-23 14:45:13 -0800792 if (mAppsCustomizeContent != null) {
793 // Resets the previous all apps icon press state
794 mAppsCustomizeContent.resetDrawableState();
795 }
Adam Cohen06dff352012-06-01 17:17:08 -0700796 // It is possible that widgets can receive updates while launcher is not in the foreground.
797 // Consequently, the widgets will be inflated in the orientation of the foreground activity
798 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
799 // orientation.
Adam Cohen3d509322012-06-06 14:10:04 -0700800 getWorkspace().reinflateWidgetsIfNecessary();
Adam Cohenf9426d52012-06-04 17:26:21 -0700801
802 // Again, as with the above scenario, it's possible that one or more of the global icons
803 // were updated in the wrong orientation.
804 updateGlobalIcons();
Michael Jurka447bf842013-05-15 14:52:15 +0200805 if (DEBUG_RESUME_TIME) {
806 Log.d(TAG, "Time spent in onResume: " + (System.currentTimeMillis() - startTime));
807 }
Adam Cohen06dff352012-06-01 17:17:08 -0700808 }
809
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800810 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700811 protected void onPause() {
Winson Chungca889b32012-05-07 15:34:34 -0700812 // NOTE: We want all transitions from launcher to act as if the wallpaper were enabled
813 // to be consistent. So re-enable the flag here, and we will re-disable it as necessary
814 // when Launcher resumes and we are still in AllApps.
815 updateWallpaperVisibility(true);
816
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700817 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700818 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -0800819 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -0700820 mDragController.resetLastGestureUpTime();
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700821 }
Romain Guycbb89e42009-06-08 15:52:54 -0700822
Jeffrey Sharkey99c87582009-03-24 17:59:43 -0700823 @Override
824 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400825 // Flag the loader to stop early before switching
826 mModel.stopLoader();
Winson Chung785d2eb2011-04-14 16:08:02 -0700827 if (mAppsCustomizeContent != null) {
828 mAppsCustomizeContent.surrender();
829 }
Romain Guy13c2e7b2010-03-10 19:45:00 -0800830 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -0700831 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700832
Joe Onorato2d7e7d02010-01-29 15:57:19 -0800833 // We can't hide the IME if it was forced open. So don't bother
834 /*
835 @Override
836 public void onWindowFocusChanged(boolean hasFocus) {
837 super.onWindowFocusChanged(hasFocus);
838
839 if (hasFocus) {
840 final InputMethodManager inputManager = (InputMethodManager)
841 getSystemService(Context.INPUT_METHOD_SERVICE);
842 WindowManager.LayoutParams lp = getWindow().getAttributes();
843 inputManager.hideSoftInputFromWindow(lp.token, 0, new android.os.ResultReceiver(new
844 android.os.Handler()) {
845 protected void onReceiveResult(int resultCode, Bundle resultData) {
846 Log.d(TAG, "ResultReceiver got resultCode=" + resultCode);
847 }
848 });
849 Log.d(TAG, "called hideSoftInputFromWindow from onWindowFocusChanged");
850 }
851 }
852 */
853
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800854 private boolean acceptFilter() {
855 final InputMethodManager inputManager = (InputMethodManager)
856 getSystemService(Context.INPUT_METHOD_SERVICE);
857 return !inputManager.isFullscreenMode();
858 }
859
860 @Override
861 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -0700862 final int uniChar = event.getUnicodeChar();
863 final boolean handled = super.onKeyDown(keyCode, event);
864 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
865 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800866 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
867 keyCode, event);
868 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -0700869 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -0700870 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -0700871 // showSearchDialog()
872 // If there are multiple keystrokes before the search dialog takes focus,
873 // onSearchRequested() will be called for every keystroke,
874 // but it is idempotent, so it's fine.
875 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800876 }
877 }
878
Joe Onorato8a9625e2010-01-28 15:55:35 -0800879 // Eat the long press event so the keyboard doesn't come up.
880 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
881 return true;
882 }
883
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800884 return handled;
885 }
886
Karl Rosaen138a0412009-04-23 19:00:21 -0700887 private String getTypedText() {
888 return mDefaultKeySsb.toString();
889 }
890
891 private void clearTypedText() {
892 mDefaultKeySsb.clear();
893 mDefaultKeySsb.clearSpans();
894 Selection.setSelection(mDefaultKeySsb, 0);
895 }
896
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800897 /**
Michael Jurka883f55b2010-10-21 15:47:14 -0700898 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
899 * State
900 */
901 private static State intToState(int stateOrdinal) {
902 State state = State.WORKSPACE;
903 final State[] stateValues = State.values();
904 for (int i = 0; i < stateValues.length; i++) {
905 if (stateValues[i].ordinal() == stateOrdinal) {
906 state = stateValues[i];
907 break;
908 }
909 }
910 return state;
911 }
912
913 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800914 * Restores the previous state, if it exists.
915 *
916 * @param savedState The previous state.
917 */
918 private void restoreState(Bundle savedState) {
919 if (savedState == null) {
920 return;
921 }
922
Michael Jurka883f55b2010-10-21 15:47:14 -0700923 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungf0ea4d32011-06-06 14:27:16 -0700924 if (state == State.APPS_CUSTOMIZE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700925 mOnResumeState = State.APPS_CUSTOMIZE;
Joe Onorato3a8820b2009-11-10 15:06:42 -0800926 }
927
Winson Chungf0c6ae02012-03-21 16:10:31 -0700928 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN, -1);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800929 if (currentScreen > -1) {
Michael Jurka0142d492010-08-25 17:46:15 -0700930 mWorkspace.setCurrentPage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800931 }
932
Winson Chung3d503fb2011-07-13 17:25:49 -0700933 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
934 final int pendingAddScreen = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700935
Winson Chung3d503fb2011-07-13 17:25:49 -0700936 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
937 mPendingAddInfo.container = pendingAddContainer;
938 mPendingAddInfo.screen = pendingAddScreen;
939 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
940 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700941 mPendingAddInfo.spanX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_X);
942 mPendingAddInfo.spanY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y);
943 mPendingAddWidgetInfo = savedState.getParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO);
Adam Cohen87a9f5b2012-05-29 16:16:51 -0700944 mWaitingForResult = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800945 mRestoring = true;
946 }
947
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700948
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800949 boolean renameFolder = savedState.getBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, false);
950 if (renameFolder) {
951 long id = savedState.getLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700952 mFolderInfo = mModel.getFolderById(this, sFolders, id);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800953 mRestoring = true;
954 }
Winson Chunga12a2502010-12-20 14:41:35 -0800955
Winson Chung785d2eb2011-04-14 16:08:02 -0700956
957 // Restore the AppsCustomize tab
958 if (mAppsCustomizeTabHost != null) {
959 String curTab = savedState.getString("apps_customize_currentTab");
960 if (curTab != null) {
Winson Chungc93e5ae2012-07-23 20:48:26 -0700961 mAppsCustomizeTabHost.setContentTypeImmediate(
Winson Chung785d2eb2011-04-14 16:08:02 -0700962 mAppsCustomizeTabHost.getContentTypeForTabTag(curTab));
Winson Chungf314b0e2011-08-16 11:54:27 -0700963 mAppsCustomizeContent.loadAssociatedPages(
964 mAppsCustomizeContent.getCurrentPage());
Winson Chung785d2eb2011-04-14 16:08:02 -0700965 }
966
Winson Chung5afbf7b2011-07-25 11:53:08 -0700967 int currentIndex = savedState.getInt("apps_customize_currentIndex");
968 mAppsCustomizeContent.restorePageForIndex(currentIndex);
Winson Chung785d2eb2011-04-14 16:08:02 -0700969 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800970 }
971
972 /**
973 * Finds all the views we need and configure them properly.
974 */
975 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -0700976 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -0400977
Craig Mautner360310b2012-10-26 15:13:08 -0700978 mLauncherView = findViewById(R.id.launcher);
Winson Chung4c98d922011-05-31 16:50:48 -0700979 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
980 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Craig Mautner360310b2012-10-26 15:13:08 -0700981 mQsbDivider = findViewById(R.id.qsb_divider);
982 mDockDivider = findViewById(R.id.dock_divider);
983
984 mLauncherView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN);
985 mWorkspaceBackgroundDrawable = getResources().getDrawable(R.drawable.workspace_bg);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800986
Winson Chung4c98d922011-05-31 16:50:48 -0700987 // Setup the drag layer
988 mDragLayer.setup(this, dragController);
989
Winson Chung3d503fb2011-07-13 17:25:49 -0700990 // Setup the hotseat
991 mHotseat = (Hotseat) findViewById(R.id.hotseat);
992 if (mHotseat != null) {
993 mHotseat.setup(this);
994 }
995
Winson Chung4c98d922011-05-31 16:50:48 -0700996 // Setup the workspace
997 mWorkspace.setHapticFeedbackEnabled(false);
998 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -0700999 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -07001000 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001001
Winson Chungf0ea4d32011-06-06 14:27:16 -07001002 // Get the search/delete bar
Winson Chungc51db6a2011-10-05 11:44:49 -07001003 mSearchDropTargetBar = (SearchDropTargetBar) mDragLayer.findViewById(R.id.qsb_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001004
Winson Chungf0ea4d32011-06-06 14:27:16 -07001005 // Setup AppsCustomize
Craig Mautner360310b2012-10-26 15:13:08 -07001006 mAppsCustomizeTabHost = (AppsCustomizeTabHost) findViewById(R.id.apps_customize_pane);
Winson Chungf0ea4d32011-06-06 14:27:16 -07001007 mAppsCustomizeContent = (AppsCustomizePagedView)
1008 mAppsCustomizeTabHost.findViewById(R.id.apps_customize_pane_content);
1009 mAppsCustomizeContent.setup(this, dragController);
Craig Mautner360310b2012-10-26 15:13:08 -07001010
Winson Chung3d503fb2011-07-13 17:25:49 -07001011 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -07001012 dragController.setDragScoller(mWorkspace);
1013 dragController.setScrollView(mDragLayer);
1014 dragController.setMoveTarget(mWorkspace);
1015 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -07001016 if (mSearchDropTargetBar != null) {
1017 mSearchDropTargetBar.setup(this, dragController);
Michael Jurkae0f5a612011-02-07 16:45:41 -08001018 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001019 }
1020
1021 /**
1022 * Creates a view representing a shortcut.
1023 *
1024 * @param info The data structure describing the shortcut.
1025 *
1026 * @return A View inflated from R.layout.application.
1027 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001028 View createShortcut(ShortcutInfo info) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001029 return createShortcut(R.layout.application,
Michael Jurka0142d492010-08-25 17:46:15 -07001030 (ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001031 }
1032
1033 /**
1034 * Creates a view representing a shortcut inflated from the specified resource.
1035 *
1036 * @param layoutResId The id of the XML layout used to create the shortcut.
1037 * @param parent The group the shortcut belongs to.
1038 * @param info The data structure describing the shortcut.
1039 *
1040 * @return A View inflated from layoutResId.
1041 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001042 View createShortcut(int layoutResId, ViewGroup parent, ShortcutInfo info) {
Michael Jurka67b2f6c2010-11-17 12:33:46 -08001043 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(layoutResId, parent, false);
1044 favorite.applyFromShortcutInfo(info, mIconCache);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001045 favorite.setOnClickListener(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001046 return favorite;
1047 }
1048
1049 /**
1050 * Add an application shortcut to the workspace.
1051 *
1052 * @param data The intent describing the application.
1053 * @param cellInfo The position on screen where to create the shortcut.
1054 */
Winson Chung3d503fb2011-07-13 17:25:49 -07001055 void completeAddApplication(Intent data, long container, int screen, int cellX, int cellY) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001056 final int[] cellXY = mTmpAddItemCellCoordinates;
Winson Chung3d503fb2011-07-13 17:25:49 -07001057 final CellLayout layout = getCellLayout(container, screen);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001058
Adam Cohenfbba09b2011-07-18 21:43:05 -07001059 // First we check if we already know the exact location where we want to add this item.
1060 if (cellX >= 0 && cellY >= 0) {
1061 cellXY[0] = cellX;
1062 cellXY[1] = cellY;
1063 } else if (!layout.findCellForSpan(cellXY, 1, 1)) {
Winson Chung93eef082012-03-23 15:59:27 -07001064 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001065 return;
1066 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001067
Patrick Dubroy002cbf42011-03-03 16:36:21 -08001068 final ShortcutInfo info = mModel.getShortcutInfo(getPackageManager(), data, this);
Joe Onorato0589f0f2010-02-08 13:44:00 -08001069
Romain Guy73b979d2009-06-09 12:57:21 -07001070 if (info != null) {
Joe Onorato0589f0f2010-02-08 13:44:00 -08001071 info.setActivity(data.getComponent(), Intent.FLAG_ACTIVITY_NEW_TASK |
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001072 Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Joe Onorato0589f0f2010-02-08 13:44:00 -08001073 info.container = ItemInfo.NO_ID;
Winson Chung3d503fb2011-07-13 17:25:49 -07001074 mWorkspace.addApplicationShortcut(info, layout, container, screen, cellXY[0], cellXY[1],
Adam Cohenfbba09b2011-07-18 21:43:05 -07001075 isWorkspaceLocked(), cellX, cellY);
Joe Onorato0589f0f2010-02-08 13:44:00 -08001076 } else {
1077 Log.e(TAG, "Couldn't find ActivityInfo for selected application: " + data);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001078 }
1079 }
Romain Guycbb89e42009-06-08 15:52:54 -07001080
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001081 /**
1082 * Add a shortcut to the workspace.
1083 *
1084 * @param data The intent describing the shortcut.
1085 * @param cellInfo The position on screen where to create the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001086 */
Winson Chung3d503fb2011-07-13 17:25:49 -07001087 private void completeAddShortcut(Intent data, long container, int screen, int cellX,
1088 int cellY) {
1089 int[] cellXY = mTmpAddItemCellCoordinates;
1090 int[] touchXY = mPendingAddInfo.dropPos;
1091 CellLayout layout = getCellLayout(container, screen);
Romain Guycbb89e42009-06-08 15:52:54 -07001092
Michael Jurkad3ef3062010-11-23 16:23:58 -08001093 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001094
Adam Cohen558baaf2011-08-15 15:22:57 -07001095 ShortcutInfo info = mModel.infoFromShortcutIntent(this, data, null);
Adam Cohend9198822011-11-22 16:42:47 -08001096 if (info == null) {
1097 return;
1098 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001099 final View view = createShortcut(info);
1100
Adam Cohenfbba09b2011-07-18 21:43:05 -07001101 // First we check if we already know the exact location where we want to add this item.
1102 if (cellX >= 0 && cellY >= 0) {
1103 cellXY[0] = cellX;
1104 cellXY[1] = cellY;
1105 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001106
1107 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001108 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001109 true, null,null)) {
1110 return;
1111 }
1112 DragObject dragObject = new DragObject();
1113 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001114 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1115 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001116 return;
1117 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001118 } else if (touchXY != null) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08001119 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001120 int[] result = layout.findNearestVacantArea(touchXY[0], touchXY[1], 1, 1, cellXY);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001121 foundCellSpan = (result != null);
1122 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001123 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001124 }
1125
1126 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001127 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001128 return;
1129 }
1130
Adam Cohen558baaf2011-08-15 15:22:57 -07001131 LauncherModel.addItemToDatabase(this, info, container, screen, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001132
1133 if (!mRestoring) {
Winson Chung3d503fb2011-07-13 17:25:49 -07001134 mWorkspace.addInScreen(view, container, screen, cellXY[0], cellXY[1], 1, 1,
1135 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001136 }
1137 }
1138
Adam Cohen2f093b62012-04-30 18:59:53 -07001139 static int[] getSpanForWidget(Context context, ComponentName component, int minWidth,
1140 int minHeight) {
1141 Rect padding = AppWidgetHostView.getDefaultPaddingForWidget(context, component, null);
Adam Cohenf814aa02011-09-01 13:48:05 -07001142 // We want to account for the extra amount of padding that we are adding to the widget
1143 // to ensure that it gets the full amount of space that it has requested
1144 int requiredWidth = minWidth + padding.left + padding.right;
1145 int requiredHeight = minHeight + padding.top + padding.bottom;
Adam Cohen2f093b62012-04-30 18:59:53 -07001146 return CellLayout.rectToCell(context.getResources(), requiredWidth, requiredHeight, null);
Adam Cohenf814aa02011-09-01 13:48:05 -07001147 }
1148
Adam Cohen2f093b62012-04-30 18:59:53 -07001149 static int[] getSpanForWidget(Context context, AppWidgetProviderInfo info) {
1150 return getSpanForWidget(context, info.provider, info.minWidth, info.minHeight);
Adam Cohenf814aa02011-09-01 13:48:05 -07001151 }
1152
Adam Cohen2f093b62012-04-30 18:59:53 -07001153 static int[] getMinSpanForWidget(Context context, AppWidgetProviderInfo info) {
1154 return getSpanForWidget(context, info.provider, info.minResizeWidth, info.minResizeHeight);
Adam Cohencbf47e32011-09-16 17:32:37 -07001155 }
1156
Adam Cohen2f093b62012-04-30 18:59:53 -07001157 static int[] getSpanForWidget(Context context, PendingAddWidgetInfo info) {
1158 return getSpanForWidget(context, info.componentName, info.minWidth, info.minHeight);
Adam Cohenf814aa02011-09-01 13:48:05 -07001159 }
1160
Adam Cohen2f093b62012-04-30 18:59:53 -07001161 static int[] getMinSpanForWidget(Context context, PendingAddWidgetInfo info) {
1162 return getSpanForWidget(context, info.componentName, info.minResizeWidth,
Winson Chunga5c96362012-04-12 14:04:41 -07001163 info.minResizeHeight);
Adam Cohend41fbf52012-02-16 23:53:59 -08001164 }
1165
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001166 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001167 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001168 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001169 * @param appWidgetId The app widget id
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001170 * @param cellInfo The position on screen where to create the widget.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001171 */
Adam Cohened66b2b2012-01-23 17:28:51 -08001172 private void completeAddAppWidget(final int appWidgetId, long container, int screen,
1173 AppWidgetHostView hostView, AppWidgetProviderInfo appWidgetInfo) {
1174 if (appWidgetInfo == null) {
1175 appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
1176 }
Romain Guycbb89e42009-06-08 15:52:54 -07001177
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001178 // Calculate the grid spans needed to fit this widget
Winson Chung3d503fb2011-07-13 17:25:49 -07001179 CellLayout layout = getCellLayout(container, screen);
Adam Cohen09353862011-07-14 16:10:03 -07001180
Adam Cohen2f093b62012-04-30 18:59:53 -07001181 int[] minSpanXY = getMinSpanForWidget(this, appWidgetInfo);
1182 int[] spanXY = getSpanForWidget(this, appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001183
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001184 // Try finding open space on Launcher screen
Michael Jurkaa63c4522010-08-19 13:52:27 -07001185 // We have saved the position to which the widget was dragged-- this really only matters
1186 // if we are placing widgets on a "spring-loaded" screen
Winson Chung3d503fb2011-07-13 17:25:49 -07001187 int[] cellXY = mTmpAddItemCellCoordinates;
1188 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohend41fbf52012-02-16 23:53:59 -08001189 int[] finalSpan = new int[2];
Michael Jurka0280c3b2010-09-17 15:00:07 -07001190 boolean foundCellSpan = false;
Winson Chung3d503fb2011-07-13 17:25:49 -07001191 if (mPendingAddInfo.cellX >= 0 && mPendingAddInfo.cellY >= 0) {
1192 cellXY[0] = mPendingAddInfo.cellX;
1193 cellXY[1] = mPendingAddInfo.cellY;
Adam Cohend41fbf52012-02-16 23:53:59 -08001194 spanXY[0] = mPendingAddInfo.spanX;
1195 spanXY[1] = mPendingAddInfo.spanY;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001196 foundCellSpan = true;
1197 } else if (touchXY != null) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001198 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001199 int[] result = layout.findNearestVacantArea(
Adam Cohend41fbf52012-02-16 23:53:59 -08001200 touchXY[0], touchXY[1], minSpanXY[0], minSpanXY[1], spanXY[0],
1201 spanXY[1], cellXY, finalSpan);
1202 spanXY[0] = finalSpan[0];
1203 spanXY[1] = finalSpan[1];
Michael Jurkad3ef3062010-11-23 16:23:58 -08001204 foundCellSpan = (result != null);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001205 } else {
Adam Cohend41fbf52012-02-16 23:53:59 -08001206 foundCellSpan = layout.findCellForSpan(cellXY, minSpanXY[0], minSpanXY[1]);
Michael Jurkaa63c4522010-08-19 13:52:27 -07001207 }
1208
Michael Jurka0280c3b2010-09-17 15:00:07 -07001209 if (!foundCellSpan) {
Winson Chungf7640c82011-02-28 13:47:29 -08001210 if (appWidgetId != -1) {
1211 // Deleting an app widget ID is a void call but writes to disk before returning
1212 // to the caller...
Winson Chungf7640c82011-02-28 13:47:29 -08001213 new Thread("deleteAppWidgetId") {
1214 public void run() {
1215 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
1216 }
1217 }.start();
1218 }
Winson Chung93eef082012-03-23 15:59:27 -07001219 showOutOfSpaceMessage(isHotseatLayout(layout));
Romain Guy18042c82009-11-06 11:44:55 -08001220 return;
1221 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001222
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001223 // Build Launcher-specific widget info and save to database
Winson Chung11a49372012-04-27 15:12:38 -07001224 LauncherAppWidgetInfo launcherInfo = new LauncherAppWidgetInfo(appWidgetId,
1225 appWidgetInfo.provider);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001226 launcherInfo.spanX = spanXY[0];
1227 launcherInfo.spanY = spanXY[1];
Adam Cohend41fbf52012-02-16 23:53:59 -08001228 launcherInfo.minSpanX = mPendingAddInfo.minSpanX;
1229 launcherInfo.minSpanY = mPendingAddInfo.minSpanY;
Romain Guycbb89e42009-06-08 15:52:54 -07001230
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001231 LauncherModel.addItemToDatabase(this, launcherInfo,
Winson Chung3d503fb2011-07-13 17:25:49 -07001232 container, screen, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001233
1234 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001235 if (hostView == null) {
1236 // Perform actual inflation because we're live
1237 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
1238 launcherInfo.hostView.setAppWidget(appWidgetId, appWidgetInfo);
1239 } else {
1240 // The AppWidgetHostView has already been inflated and instantiated
1241 launcherInfo.hostView = hostView;
1242 }
Romain Guycbb89e42009-06-08 15:52:54 -07001243
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001244 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001245 launcherInfo.hostView.setVisibility(View.VISIBLE);
Adam Cohenaaa5c212012-10-05 18:14:31 -07001246 launcherInfo.notifyWidgetSizeChanged(this);
1247
Winson Chung3d503fb2011-07-13 17:25:49 -07001248 mWorkspace.addInScreen(launcherInfo.hostView, container, screen, cellXY[0], cellXY[1],
Joe Onorato9c1289c2009-08-17 11:03:03 -04001249 launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001250
1251 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001252 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001253 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001254 }
Romain Guycbb89e42009-06-08 15:52:54 -07001255
Adam Cohended9f8d2010-11-03 13:25:16 -07001256 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1257 @Override
1258 public void onReceive(Context context, Intent intent) {
1259 final String action = intent.getAction();
1260 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1261 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001262 mDragLayer.clearAllResizeFrames();
Adam Cohended9f8d2010-11-03 13:25:16 -07001263 updateRunning();
Winson Chung337cd9d2011-03-30 10:39:30 -07001264
Winson Chungc100e8e2011-08-09 16:02:43 -07001265 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001266 // processing a multi-step drop
Winson Chungc100e8e2011-08-09 16:02:43 -07001267 if (mAppsCustomizeTabHost != null && mPendingAddInfo.container == ItemInfo.NO_ID) {
1268 mAppsCustomizeTabHost.reset();
1269 showWorkspace(false);
Winson Chung785d2eb2011-04-14 16:08:02 -07001270 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001271 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1272 mUserPresent = true;
1273 updateRunning();
1274 }
1275 }
1276 };
1277
1278 @Override
1279 public void onAttachedToWindow() {
1280 super.onAttachedToWindow();
1281
1282 // Listen for broadcasts related to user-presence
1283 final IntentFilter filter = new IntentFilter();
1284 filter.addAction(Intent.ACTION_SCREEN_OFF);
1285 filter.addAction(Intent.ACTION_USER_PRESENT);
1286 registerReceiver(mReceiver, filter);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001287 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Adam Cohend113e0c2010-11-11 10:48:05 -08001288 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001289 mVisible = true;
1290 }
1291
1292 @Override
1293 public void onDetachedFromWindow() {
1294 super.onDetachedFromWindow();
1295 mVisible = false;
1296
Adam Cohend113e0c2010-11-11 10:48:05 -08001297 if (mAttached) {
1298 unregisterReceiver(mReceiver);
1299 mAttached = false;
1300 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001301 updateRunning();
1302 }
1303
1304 public void onWindowVisibilityChanged(int visibility) {
1305 mVisible = visibility == View.VISIBLE;
1306 updateRunning();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001307 // The following code used to be in onResume, but it turns out onResume is called when
1308 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1309 // is a more appropriate event to handle
1310 if (mVisible) {
1311 mAppsCustomizeTabHost.onWindowVisible();
1312 if (!mWorkspaceLoading) {
1313 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001314 // We want to let Launcher draw itself at least once before we force it to build
1315 // layers on all the workspace pages, so that transitioning to Launcher from other
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001316 // apps is nice and speedy.
1317 observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001318 private boolean mStarted = false;
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001319 public void onDraw() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001320 if (mStarted) return;
1321 mStarted = true;
Michael Jurka6ee21d22012-02-21 18:20:27 -08001322 // We delay the layer building a bit in order to give
1323 // other message processing a time to run. In particular
1324 // this avoids a delay in hiding the IME if it was
1325 // currently shown, because doing that may involve
1326 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001327 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurkadf96add2013-04-03 16:25:02 -07001328 final ViewTreeObserver.OnDrawListener listener = this;
1329 mWorkspace.post(new Runnable() {
1330 public void run() {
Michael Jurkab68e03a2013-04-11 11:36:41 -07001331 if (mWorkspace != null &&
1332 mWorkspace.getViewTreeObserver() != null) {
1333 mWorkspace.getViewTreeObserver().
1334 removeOnDrawListener(listener);
1335 }
Michael Jurkadf96add2013-04-03 16:25:02 -07001336 }
1337 });
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001338 return;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001339 }
1340 });
1341 }
Michael Jurka6ee21d22012-02-21 18:20:27 -08001342 // When Launcher comes back to foreground, a different Activity might be responsible for
1343 // the app market intent, so refresh the icon
1344 updateAppMarketIcon();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001345 clearTypedText();
1346 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001347 }
1348
1349 private void sendAdvanceMessage(long delay) {
1350 mHandler.removeMessages(ADVANCE_MSG);
1351 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1352 mHandler.sendMessageDelayed(msg, delay);
1353 mAutoAdvanceSentTime = System.currentTimeMillis();
1354 }
1355
1356 private void updateRunning() {
1357 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1358 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1359 mAutoAdvanceRunning = autoAdvanceRunning;
1360 if (autoAdvanceRunning) {
1361 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1362 sendAdvanceMessage(delay);
1363 } else {
1364 if (!mWidgetsToAdvance.isEmpty()) {
1365 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1366 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1367 }
1368 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001369 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001370 }
1371 }
1372 }
1373
1374 private final Handler mHandler = new Handler() {
1375 @Override
1376 public void handleMessage(Message msg) {
1377 if (msg.what == ADVANCE_MSG) {
1378 int i = 0;
1379 for (View key: mWidgetsToAdvance.keySet()) {
1380 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1381 final int delay = mAdvanceStagger * i;
1382 if (v instanceof Advanceable) {
1383 postDelayed(new Runnable() {
1384 public void run() {
1385 ((Advanceable) v).advance();
1386 }
1387 }, delay);
1388 }
1389 i++;
1390 }
1391 sendAdvanceMessage(mAdvanceInterval);
1392 }
1393 }
1394 };
1395
1396 void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001397 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001398 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1399 if (v instanceof Advanceable) {
1400 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001401 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Adam Cohended9f8d2010-11-03 13:25:16 -07001402 updateRunning();
1403 }
1404 }
1405
1406 void removeWidgetToAutoAdvance(View hostView) {
1407 if (mWidgetsToAdvance.containsKey(hostView)) {
1408 mWidgetsToAdvance.remove(hostView);
1409 updateRunning();
1410 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001411 }
1412
Joe Onorato9c1289c2009-08-17 11:03:03 -04001413 public void removeAppWidget(LauncherAppWidgetInfo launcherInfo) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001414 removeWidgetToAutoAdvance(launcherInfo.hostView);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001415 launcherInfo.hostView = null;
1416 }
1417
Winson Chung93eef082012-03-23 15:59:27 -07001418 void showOutOfSpaceMessage(boolean isHotseatLayout) {
1419 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1420 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001421 }
1422
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001423 public LauncherAppWidgetHost getAppWidgetHost() {
1424 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001425 }
Romain Guycbb89e42009-06-08 15:52:54 -07001426
Winson Chunga9abd0e2010-10-27 17:18:37 -07001427 public LauncherModel getModel() {
1428 return mModel;
1429 }
1430
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001431 void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001432 getWindow().closeAllPanels();
1433
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001434 // Whatever we were doing is hereby canceled.
1435 mWaitingForResult = false;
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001436 }
1437
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001438 @Override
1439 protected void onNewIntent(Intent intent) {
Michael Jurka447bf842013-05-15 14:52:15 +02001440 long startTime = 0;
1441 if (DEBUG_RESUME_TIME) {
1442 startTime = System.currentTimeMillis();
1443 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001444 super.onNewIntent(intent);
1445
1446 // Close the menu
1447 if (Intent.ACTION_MAIN.equals(intent.getAction())) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001448 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001449 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001450
Jamie Genniscb222e82012-10-23 15:44:26 -07001451 final boolean alreadyOnHome =
1452 ((intent.getFlags() & Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
Joe Onorato14f122b2009-11-19 14:06:36 -08001453 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
Michael Jurka01f0ed42010-08-20 00:41:17 -07001454
Jamie Genniscb222e82012-10-23 15:44:26 -07001455 Runnable processIntent = new Runnable() {
1456 public void run() {
Michael Jurkaffc26822012-11-16 18:21:22 -08001457 if (mWorkspace == null) {
1458 // Can be cases where mWorkspace is null, this prevents a NPE
1459 return;
1460 }
Jamie Genniscb222e82012-10-23 15:44:26 -07001461 Folder openFolder = mWorkspace.getOpenFolder();
1462 // In all these cases, only animate if we're already on home
1463 mWorkspace.exitWidgetResizeMode();
1464 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
1465 openFolder == null) {
1466 mWorkspace.moveToDefaultScreen(true);
1467 }
Adam Cohenac56cff2011-09-28 20:45:37 -07001468
Jamie Genniscb222e82012-10-23 15:44:26 -07001469 closeFolder();
1470 exitSpringLoadedDragMode();
Winson Chung4a2afa32012-07-19 14:53:05 -07001471
Jamie Genniscb222e82012-10-23 15:44:26 -07001472 // If we are already on home, then just animate back to the workspace,
1473 // otherwise, just wait until onResume to set the state back to Workspace
1474 if (alreadyOnHome) {
1475 showWorkspace(true);
1476 } else {
1477 mOnResumeState = State.WORKSPACE;
1478 }
1479
1480 final View v = getWindow().peekDecorView();
1481 if (v != null && v.getWindowToken() != null) {
1482 InputMethodManager imm = (InputMethodManager)getSystemService(
1483 INPUT_METHOD_SERVICE);
1484 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1485 }
1486
1487 // Reset AllApps to its initial state
1488 if (!alreadyOnHome && mAppsCustomizeTabHost != null) {
1489 mAppsCustomizeTabHost.reset();
1490 }
1491 }
1492 };
1493
1494 if (alreadyOnHome && !mWorkspace.hasWindowFocus()) {
1495 // Delay processing of the intent to allow the status bar animation to finish
1496 // first in order to avoid janky animations.
1497 mWorkspace.postDelayed(processIntent, 350);
Winson Chung4a2afa32012-07-19 14:53:05 -07001498 } else {
Jamie Genniscb222e82012-10-23 15:44:26 -07001499 // Process the intent immediately.
1500 processIntent.run();
Winson Chung4a2afa32012-07-19 14:53:05 -07001501 }
Romain Guy1dd3a072009-07-16 13:21:01 -07001502
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001503 }
Michael Jurka447bf842013-05-15 14:52:15 +02001504 if (DEBUG_RESUME_TIME) {
1505 Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime));
1506 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001507 }
1508
1509 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001510 public void onRestoreInstanceState(Bundle state) {
1511 super.onRestoreInstanceState(state);
1512 for (int page: mSynchronouslyBoundPages) {
1513 mWorkspace.restoreInstanceStateForChild(page);
1514 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001515 }
1516
1517 @Override
1518 protected void onSaveInstanceState(Bundle outState) {
Winson Chungc93e5ae2012-07-23 20:48:26 -07001519 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN, mWorkspace.getNextPage());
Adam Cohen95bb8002011-07-03 23:40:28 -07001520 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001521
Michael Jurka883f55b2010-10-21 15:47:14 -07001522 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001523 // We close any open folder since it will not be re-opened, and we need to make sure
1524 // this state is reflected.
1525 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001526
Winson Chung3d503fb2011-07-13 17:25:49 -07001527 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screen > -1 &&
1528 mWaitingForResult) {
1529 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
1530 outState.putInt(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screen);
1531 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1532 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001533 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_X, mPendingAddInfo.spanX);
1534 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y, mPendingAddInfo.spanY);
1535 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001536 }
1537
1538 if (mFolderInfo != null && mWaitingForResult) {
1539 outState.putBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, true);
1540 outState.putLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID, mFolderInfo.id);
1541 }
Michael Jurka946ad472010-07-09 18:05:18 -07001542
Winson Chung785d2eb2011-04-14 16:08:02 -07001543 // Save the current AppsCustomize tab
1544 if (mAppsCustomizeTabHost != null) {
1545 String currentTabTag = mAppsCustomizeTabHost.getCurrentTabTag();
1546 if (currentTabTag != null) {
1547 outState.putString("apps_customize_currentTab", currentTabTag);
1548 }
Winson Chung5afbf7b2011-07-25 11:53:08 -07001549 int currentIndex = mAppsCustomizeContent.getSaveInstanceStateIndex();
1550 outState.putInt("apps_customize_currentIndex", currentIndex);
Winson Chung785d2eb2011-04-14 16:08:02 -07001551 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001552 }
1553
1554 @Override
1555 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001556 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001557
Winson Chunge7a03942011-08-05 15:05:12 -07001558 // Remove all pending runnables
1559 mHandler.removeMessages(ADVANCE_MSG);
1560 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07001561 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07001562
Winson Chungcd2b0142011-06-08 16:02:26 -07001563 // Stop callbacks from LauncherModel
1564 LauncherApplication app = ((LauncherApplication) getApplication());
1565 mModel.stopLoader();
1566 app.setLauncher(null);
1567
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001568 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001569 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001570 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001571 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001572 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001573 mAppWidgetHost = null;
1574
1575 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001576
1577 TextKeyListener.getInstance().release();
1578
Winson Chung81b52252012-08-27 15:34:29 -07001579 // Disconnect any of the callbacks and drawables associated with ItemInfos on the workspace
1580 // to prevent leaking Launcher activities on orientation change.
1581 if (mModel != null) {
1582 mModel.unbindItemInfosAndClearQueuedBindRunnables();
1583 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001584
1585 getContentResolver().unregisterContentObserver(mWidgetObserver);
Joe Onorato34a0e1b2009-12-14 17:44:51 -08001586 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001587
Adam Cohenaccf3bf2012-04-30 16:07:43 -07001588 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001589 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
1590 mWorkspace.removeAllViews();
1591 mWorkspace = null;
1592 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08001593
Michael Jurka2ecf9952012-06-18 12:52:28 -07001594 LauncherAnimUtils.onDestroyActivity();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001595 }
1596
Adam Cohena9cf38f2011-05-02 15:36:58 -07001597 public DragController getDragController() {
1598 return mDragController;
1599 }
1600
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001601 @Override
1602 public void startActivityForResult(Intent intent, int requestCode) {
Romain Guy08f97492009-06-29 14:41:20 -07001603 if (requestCode >= 0) mWaitingForResult = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001604 super.startActivityForResult(intent, requestCode);
1605 }
1606
Winson Chung70d72102011-08-12 11:24:35 -07001607 /**
1608 * Indicates that we want global search for this activity by setting the globalSearch
1609 * argument for {@link #startSearch} to true.
1610 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001611 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07001612 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001613 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001614
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001615 showWorkspace(true);
Romain Guycbb89e42009-06-08 15:52:54 -07001616
Karl Rosaen138a0412009-04-23 19:00:21 -07001617 if (initialQuery == null) {
1618 // Use any text typed in the launcher as the initial query
1619 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07001620 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001621 if (appSearchData == null) {
1622 appSearchData = new Bundle();
Bjorn Bringert3e244cf2010-02-10 14:17:35 +00001623 appSearchData.putString(Search.SOURCE, "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001624 }
Winson Chungadf0c182012-08-23 14:59:07 -07001625 Rect sourceBounds = new Rect();
1626 if (mSearchDropTargetBar != null) {
1627 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
1628 }
Romain Guycbb89e42009-06-08 15:52:54 -07001629
Michael Jurkaa33411c2012-06-14 16:18:21 -07001630 startGlobalSearch(initialQuery, selectInitialQuery,
1631 appSearchData, sourceBounds);
1632 }
1633
1634 /**
1635 * Starts the global search activity. This code is a copied from SearchManager
1636 */
1637 public void startGlobalSearch(String initialQuery,
1638 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001639 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07001640 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
1641 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
1642 if (globalSearchActivity == null) {
1643 Log.w(TAG, "No global search activity found.");
1644 return;
1645 }
1646 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
1647 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
1648 intent.setComponent(globalSearchActivity);
1649 // Make sure that we have a Bundle to put source in
1650 if (appSearchData == null) {
1651 appSearchData = new Bundle();
1652 } else {
1653 appSearchData = new Bundle(appSearchData);
1654 }
1655 // Set source to package name of app that starts global search, if not set already.
1656 if (!appSearchData.containsKey("source")) {
1657 appSearchData.putString("source", getPackageName());
1658 }
1659 intent.putExtra(SearchManager.APP_DATA, appSearchData);
1660 if (!TextUtils.isEmpty(initialQuery)) {
1661 intent.putExtra(SearchManager.QUERY, initialQuery);
1662 }
1663 if (selectInitialQuery) {
1664 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
1665 }
1666 intent.setSourceBounds(sourceBounds);
1667 try {
1668 startActivity(intent);
1669 } catch (ActivityNotFoundException ex) {
1670 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
1671 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001672 }
1673
Winson Chung70d72102011-08-12 11:24:35 -07001674 @Override
1675 public boolean onCreateOptionsMenu(Menu menu) {
1676 if (isWorkspaceLocked()) {
1677 return false;
1678 }
1679
1680 super.onCreateOptionsMenu(menu);
Winson Chungdff8ebb2011-09-08 17:25:31 -07001681
1682 Intent manageApps = new Intent(Settings.ACTION_MANAGE_ALL_APPLICATIONS_SETTINGS);
1683 manageApps.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1684 | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Winson Chung236d4312011-08-22 15:12:27 -07001685 Intent settings = new Intent(android.provider.Settings.ACTION_SETTINGS);
1686 settings.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1687 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Michael Jurkab964f9c2011-09-27 22:10:05 -07001688 String helpUrl = getString(R.string.help_url);
1689 Intent help = new Intent(Intent.ACTION_VIEW, Uri.parse(helpUrl));
Winson Chungdff8ebb2011-09-08 17:25:31 -07001690 help.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1691 | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
1692
Winson Chung70d72102011-08-12 11:24:35 -07001693 menu.add(MENU_GROUP_WALLPAPER, MENU_WALLPAPER_SETTINGS, 0, R.string.menu_wallpaper)
1694 .setIcon(android.R.drawable.ic_menu_gallery)
1695 .setAlphabeticShortcut('W');
1696 menu.add(0, MENU_MANAGE_APPS, 0, R.string.menu_manage_apps)
1697 .setIcon(android.R.drawable.ic_menu_manage)
Winson Chungdff8ebb2011-09-08 17:25:31 -07001698 .setIntent(manageApps)
Winson Chung70d72102011-08-12 11:24:35 -07001699 .setAlphabeticShortcut('M');
Winson Chung236d4312011-08-22 15:12:27 -07001700 menu.add(0, MENU_SYSTEM_SETTINGS, 0, R.string.menu_settings)
1701 .setIcon(android.R.drawable.ic_menu_preferences)
1702 .setIntent(settings)
1703 .setAlphabeticShortcut('P');
Michael Jurkab964f9c2011-09-27 22:10:05 -07001704 if (!helpUrl.isEmpty()) {
1705 menu.add(0, MENU_HELP, 0, R.string.menu_help)
1706 .setIcon(android.R.drawable.ic_menu_help)
1707 .setIntent(help)
1708 .setAlphabeticShortcut('H');
1709 }
Winson Chung70d72102011-08-12 11:24:35 -07001710 return true;
1711 }
1712
1713 @Override
1714 public boolean onPrepareOptionsMenu(Menu menu) {
1715 super.onPrepareOptionsMenu(menu);
1716
1717 if (mAppsCustomizeTabHost.isTransitioning()) {
1718 return false;
1719 }
1720 boolean allAppsVisible = (mAppsCustomizeTabHost.getVisibility() == View.VISIBLE);
1721 menu.setGroupVisible(MENU_GROUP_WALLPAPER, !allAppsVisible);
1722
1723 return true;
1724 }
1725
1726 @Override
1727 public boolean onOptionsItemSelected(MenuItem item) {
1728 switch (item.getItemId()) {
1729 case MENU_WALLPAPER_SETTINGS:
1730 startWallpaper();
1731 return true;
Winson Chung70d72102011-08-12 11:24:35 -07001732 }
1733
1734 return super.onOptionsItemSelected(item);
1735 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001736
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07001737 @Override
1738 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07001739 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07001740 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07001741 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07001742 }
1743
Joe Onorato9c1289c2009-08-17 11:03:03 -04001744 public boolean isWorkspaceLocked() {
1745 return mWorkspaceLoading || mWaitingForResult;
1746 }
1747
Michael Jurka0280c3b2010-09-17 15:00:07 -07001748 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07001749 mPendingAddInfo.container = ItemInfo.NO_ID;
1750 mPendingAddInfo.screen = -1;
1751 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
1752 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Adam Cohend41fbf52012-02-16 23:53:59 -08001753 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07001754 mPendingAddInfo.dropPos = null;
Michael Jurka0280c3b2010-09-17 15:00:07 -07001755 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07001756
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001757 void addAppWidgetImpl(final int appWidgetId, ItemInfo info, AppWidgetHostView boundWidget,
1758 AppWidgetProviderInfo appWidgetInfo) {
1759 if (appWidgetInfo.configure != null) {
1760 mPendingAddWidgetInfo = appWidgetInfo;
Michael Jurkaaf442092010-06-10 17:01:57 -07001761
Bjorn Bringert7984c942009-12-09 15:38:25 +00001762 // Launch over to configure widget, if needed
1763 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_CONFIGURE);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001764 intent.setComponent(appWidgetInfo.configure);
Bjorn Bringert7984c942009-12-09 15:38:25 +00001765 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
Romain Guy8e633c52010-03-04 12:51:36 -08001766 startActivityForResultSafely(intent, REQUEST_CREATE_APPWIDGET);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001767 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00001768 // Otherwise just add it
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001769 completeAddAppWidget(appWidgetId, info.container, info.screen, boundWidget,
1770 appWidgetInfo);
Winson Chung557d6ed2011-07-08 15:34:52 -07001771 // Exit spring loaded mode if necessary after adding the widget
Adam Cohened66b2b2012-01-23 17:28:51 -08001772 exitSpringLoadedDragModeDelayed(true, false, null);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001773 }
1774 }
Romain Guycbb89e42009-06-08 15:52:54 -07001775
Adam Cohenfbba09b2011-07-18 21:43:05 -07001776 /**
1777 * Process a shortcut drop.
1778 *
1779 * @param componentName The name of the component
1780 * @param screen The screen where it should be added
1781 * @param cell The cell it should be added to, optional
1782 * @param position The location on the screen where it was dropped, optional
1783 */
Winson Chung3d503fb2011-07-13 17:25:49 -07001784 void processShortcutFromDrop(ComponentName componentName, long container, int screen,
1785 int[] cell, int[] loc) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001786 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07001787 mPendingAddInfo.container = container;
1788 mPendingAddInfo.screen = screen;
1789 mPendingAddInfo.dropPos = loc;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001790
1791 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07001792 mPendingAddInfo.cellX = cell[0];
1793 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07001794 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001795
1796 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
1797 createShortcutIntent.setComponent(componentName);
1798 processShortcut(createShortcutIntent);
1799 }
1800
Adam Cohenfbba09b2011-07-18 21:43:05 -07001801 /**
1802 * Process a widget drop.
1803 *
1804 * @param info The PendingAppWidgetInfo of the widget being added.
1805 * @param screen The screen where it should be added
1806 * @param cell The cell it should be added to, optional
1807 * @param position The location on the screen where it was dropped, optional
1808 */
Winson Chung3d503fb2011-07-13 17:25:49 -07001809 void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, int screen,
Adam Cohend41fbf52012-02-16 23:53:59 -08001810 int[] cell, int[] span, int[] loc) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001811 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07001812 mPendingAddInfo.container = info.container = container;
1813 mPendingAddInfo.screen = info.screen = screen;
1814 mPendingAddInfo.dropPos = loc;
Adam Cohend41fbf52012-02-16 23:53:59 -08001815 mPendingAddInfo.minSpanX = info.minSpanX;
1816 mPendingAddInfo.minSpanY = info.minSpanY;
1817
Adam Cohenfbba09b2011-07-18 21:43:05 -07001818 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07001819 mPendingAddInfo.cellX = cell[0];
1820 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07001821 }
Adam Cohend41fbf52012-02-16 23:53:59 -08001822 if (span != null) {
1823 mPendingAddInfo.spanX = span[0];
1824 mPendingAddInfo.spanY = span[1];
1825 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001826
Adam Cohened66b2b2012-01-23 17:28:51 -08001827 AppWidgetHostView hostView = info.boundWidget;
1828 int appWidgetId;
1829 if (hostView != null) {
1830 appWidgetId = hostView.getAppWidgetId();
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001831 addAppWidgetImpl(appWidgetId, info, hostView, info.info);
Adam Cohened66b2b2012-01-23 17:28:51 -08001832 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001833 // In this case, we either need to start an activity to get permission to bind
1834 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08001835 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07001836 Bundle options = info.bindOptions;
1837
1838 boolean success = false;
1839 if (options != null) {
1840 success = mAppWidgetManager.bindAppWidgetIdIfAllowed(appWidgetId,
1841 info.componentName, options);
1842 } else {
1843 success = mAppWidgetManager.bindAppWidgetIdIfAllowed(appWidgetId,
1844 info.componentName);
1845 }
1846 if (success) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001847 addAppWidgetImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07001848 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001849 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07001850 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
1851 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
1852 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Adam Cohendd70d662012-10-04 16:53:44 -07001853 // TODO: we need to make sure that this accounts for the options bundle.
1854 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07001855 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
1856 }
Adam Cohened66b2b2012-01-23 17:28:51 -08001857 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001858 }
1859
Joe Onoratodeb98af2010-02-19 14:59:39 -08001860 void processShortcut(Intent intent) {
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001861 // Handle case where user selected "Applications"
1862 String applicationName = getResources().getString(R.string.group_applications);
1863 String shortcutName = intent.getStringExtra(Intent.EXTRA_SHORTCUT_NAME);
Romain Guycbb89e42009-06-08 15:52:54 -07001864
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001865 if (applicationName != null && applicationName.equals(shortcutName)) {
1866 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
1867 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
Romain Guycbb89e42009-06-08 15:52:54 -07001868
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001869 Intent pickIntent = new Intent(Intent.ACTION_PICK_ACTIVITY);
1870 pickIntent.putExtra(Intent.EXTRA_INTENT, mainIntent);
Winson Chung58f20882010-10-01 13:44:56 -07001871 pickIntent.putExtra(Intent.EXTRA_TITLE, getText(R.string.title_select_application));
Joe Onorato4a79a042010-09-24 16:17:21 -07001872 startActivityForResultSafely(pickIntent, REQUEST_PICK_APPLICATION);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001873 } else {
Joe Onorato4a79a042010-09-24 16:17:21 -07001874 startActivityForResultSafely(intent, REQUEST_CREATE_SHORTCUT);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001875 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001876 }
1877
Winson Chung24ab2f12010-09-16 14:10:47 -07001878 void processWallpaper(Intent intent) {
1879 startActivityForResult(intent, REQUEST_PICK_WALLPAPER);
1880 }
1881
Winson Chung3d503fb2011-07-13 17:25:49 -07001882 FolderIcon addFolder(CellLayout layout, long container, final int screen, int cellX,
1883 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07001884 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001885 folderInfo.title = getText(R.string.folder_name);
1886
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001887 // Update the model
Winson Chung3d503fb2011-07-13 17:25:49 -07001888 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screen, cellX, cellY,
1889 false);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001890 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001891
1892 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07001893 FolderIcon newFolder =
1894 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
1895 mWorkspace.addInScreen(newFolder, container, screen, cellX, cellY, 1, 1,
1896 isWorkspaceLocked());
Adam Cohendf035382011-04-11 17:22:04 -07001897 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001898 }
Romain Guycbb89e42009-06-08 15:52:54 -07001899
Joe Onorato9c1289c2009-08-17 11:03:03 -04001900 void removeFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001901 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001902 }
1903
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001904 private void startWallpaper() {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001905 showWorkspace(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001906 final Intent pickWallpaper = new Intent(Intent.ACTION_SET_WALLPAPER);
Dianne Hackborn8355ae32009-09-07 21:47:51 -07001907 Intent chooser = Intent.createChooser(pickWallpaper,
1908 getText(R.string.chooser_wallpaper));
Romain Guyf2826c72009-11-12 17:39:34 -08001909 // NOTE: Adds a configure option to the chooser if the wallpaper supports it
1910 // Removed in Eclair MR1
1911// WallpaperManager wm = (WallpaperManager)
1912// getSystemService(Context.WALLPAPER_SERVICE);
1913// WallpaperInfo wi = wm.getWallpaperInfo();
1914// if (wi != null && wi.getSettingsActivity() != null) {
1915// LabeledIntent li = new LabeledIntent(getPackageName(),
1916// R.string.configure_wallpaper, 0);
1917// li.setClassName(wi.getPackageName(), wi.getSettingsActivity());
1918// chooser.putExtra(Intent.EXTRA_INITIAL_INTENTS, new Intent[] { li });
1919// }
Mike Clerona0618e42009-10-22 13:55:21 -07001920 startActivityForResult(chooser, REQUEST_PICK_WALLPAPER);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001921 }
1922
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001923 /**
1924 * Registers various content observers. The current implementation registers
1925 * only a favorites observer to keep track of the favorites applications.
1926 */
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001927 private void registerContentObservers() {
1928 ContentResolver resolver = getContentResolver();
1929 resolver.registerContentObserver(LauncherProvider.CONTENT_APPWIDGET_RESET_URI,
1930 true, mWidgetObserver);
1931 }
1932
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001933 @Override
1934 public boolean dispatchKeyEvent(KeyEvent event) {
1935 if (event.getAction() == KeyEvent.ACTION_DOWN) {
1936 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001937 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07001938 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08001939 case KeyEvent.KEYCODE_VOLUME_DOWN:
Michael Jurka0a457bf2012-11-19 14:05:05 -08001940 if (isPropertyEnabled(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08001941 dumpState();
1942 return true;
1943 }
1944 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07001945 }
1946 } else if (event.getAction() == KeyEvent.ACTION_UP) {
1947 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07001948 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001949 return true;
1950 }
1951 }
1952
1953 return super.dispatchKeyEvent(event);
1954 }
1955
Joe Onorato88ec0992009-11-19 13:16:06 -08001956 @Override
1957 public void onBackPressed() {
Winson Chungc93e5ae2012-07-23 20:48:26 -07001958 if (isAllAppsVisible()) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001959 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08001960 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07001961 Folder openFolder = mWorkspace.getOpenFolder();
1962 if (openFolder.isEditingName()) {
1963 openFolder.dismissEditingName();
1964 } else {
1965 closeFolder();
1966 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08001967 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08001968 mWorkspace.exitWidgetResizeMode();
1969
Patrick Dubroy94f78a52011-02-28 17:39:16 -08001970 // Back button is a no-op here, but give at least some feedback for the button press
1971 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07001972 }
Joe Onorato88ec0992009-11-19 13:16:06 -08001973 }
1974
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001975 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001976 * Re-listen when widgets are reset.
1977 */
1978 private void onAppWidgetReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08001979 if (mAppWidgetHost != null) {
1980 mAppWidgetHost.startListening();
1981 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001982 }
1983
1984 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001985 * Launches the intent referred by the clicked shortcut.
1986 *
1987 * @param v The view representing the clicked shortcut.
1988 */
1989 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07001990 // Make sure that rogue clicks don't get through while allapps is launching, or after the
1991 // view has detached (it's possible for this to happen if the view is removed mid touch).
1992 if (v.getWindowToken() == null) {
1993 return;
1994 }
1995
Winson Chung9b0b2fe2012-02-24 13:03:34 -08001996 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07001997 return;
1998 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07001999
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002000 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002001 if (tag instanceof ShortcutInfo) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002002 // Open shortcut
Romain Guyfb5411e2010-02-24 10:04:17 -08002003 final Intent intent = ((ShortcutInfo) tag).intent;
Joe Onorato13724ea2009-12-02 21:16:35 -08002004 int[] pos = new int[2];
2005 v.getLocationOnScreen(pos);
Romain Guyfb5411e2010-02-24 10:04:17 -08002006 intent.setSourceBounds(new Rect(pos[0], pos[1],
2007 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Winson Chungc7450e32012-04-17 17:34:08 -07002008
2009 boolean success = startActivitySafely(v, intent, tag);
Michael Jurkaddd62e92011-02-16 17:49:14 -08002010
2011 if (success && v instanceof BubbleTextView) {
2012 mWaitingForResume = (BubbleTextView) v;
2013 mWaitingForResume.setStayPressed(true);
2014 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002015 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002016 if (v instanceof FolderIcon) {
2017 FolderIcon fi = (FolderIcon) v;
2018 handleFolderClick(fi);
2019 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002020 } else if (v == mAllAppsButton) {
Winson Chungc93e5ae2012-07-23 20:48:26 -07002021 if (isAllAppsVisible()) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002022 showWorkspace(true);
Joe Onorato7404ee42009-07-31 11:54:44 -07002023 } else {
Michael Jurka2a552322011-10-11 15:22:05 -07002024 onClickAllAppsButton(v);
Joe Onorato7404ee42009-07-31 11:54:44 -07002025 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002026 }
2027 }
2028
Michael Jurka0e260592010-06-30 17:07:39 -07002029 public boolean onTouch(View v, MotionEvent event) {
Michael Jurkadee05892010-07-27 10:01:56 -07002030 // this is an intercepted event being forwarded from mWorkspace;
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002031 // clicking anywhere on the workspace causes the customization drawer to slide down
2032 showWorkspace(true);
Michael Jurka0e260592010-06-30 17:07:39 -07002033 return false;
2034 }
2035
Michael Jurkaaf442092010-06-10 17:01:57 -07002036 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002037 * Event handler for the search button
2038 *
2039 * @param v The view that was clicked.
2040 */
2041 public void onClickSearchButton(View v) {
Winson Chungbb185bd2011-11-21 12:31:42 -08002042 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2043
Amith Yamasania135ba82011-08-09 17:42:01 -07002044 onSearchRequested();
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002045 }
2046
2047 /**
Amith Yamasani6d7fe502010-11-16 09:05:07 -08002048 * Event handler for the voice button
2049 *
2050 * @param v The view that was clicked.
2051 */
2052 public void onClickVoiceButton(View v) {
Winson Chungbb185bd2011-11-21 12:31:42 -08002053 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
Amith Yamasani6d7fe502010-11-16 09:05:07 -08002054
Michael Jurkaae65ee32012-04-30 11:45:54 -07002055 try {
2056 final SearchManager searchManager =
2057 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2058 ComponentName activityName = searchManager.getGlobalSearchActivity();
2059 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
Andy Huangf615f712012-06-07 13:38:04 -07002060 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Michael Jurkaae65ee32012-04-30 11:45:54 -07002061 if (activityName != null) {
2062 intent.setPackage(activityName.getPackageName());
2063 }
Michael Jurka86a720e2012-05-09 11:23:23 -07002064 startActivity(null, intent, "onClickVoiceButton");
Michael Jurkaae65ee32012-04-30 11:45:54 -07002065 } catch (ActivityNotFoundException e) {
2066 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
Andy Huangf615f712012-06-07 13:38:04 -07002067 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Michael Jurkaae65ee32012-04-30 11:45:54 -07002068 startActivitySafely(null, intent, "onClickVoiceButton");
2069 }
Amith Yamasani6d7fe502010-11-16 09:05:07 -08002070 }
2071
2072 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002073 * Event handler for the "grid" button that appears on the home screen, which
2074 * enters all apps mode.
2075 *
2076 * @param v The view that was clicked.
2077 */
2078 public void onClickAllAppsButton(View v) {
Michael Jurka5130e402011-10-13 04:55:35 -07002079 showAllApps(true);
2080 }
2081
2082 public void onTouchDownAllAppsButton(View v) {
Michael Jurka2a552322011-10-11 15:22:05 -07002083 // Provide the same haptic feedback that the system offers for virtual keys.
2084 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002085 }
2086
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002087 public void onClickAppMarketButton(View v) {
2088 if (mAppMarketIntent != null) {
Winson Chungc7450e32012-04-17 17:34:08 -07002089 startActivitySafely(v, mAppMarketIntent, "app market");
Winson Chung4f916f42012-03-26 15:30:59 -07002090 } else {
2091 Log.e(TAG, "Invalid app market intent.");
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002092 }
2093 }
2094
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002095 void startApplicationDetailsActivity(ComponentName componentName) {
2096 String packageName = componentName.getPackageName();
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002097 Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS,
2098 Uri.fromParts("package", packageName, null));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002099 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Winson Chung3b1b36b2012-04-24 18:51:14 -07002100 startActivitySafely(null, intent, "startApplicationDetailsActivity");
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002101 }
2102
Patrick Dubroy5539af72010-09-07 15:22:01 -07002103 void startApplicationUninstallActivity(ApplicationInfo appInfo) {
2104 if ((appInfo.flags & ApplicationInfo.DOWNLOADED_FLAG) == 0) {
2105 // System applications cannot be installed. For now, show a toast explaining that.
2106 // We may give them the option of disabling apps this way.
2107 int messageId = R.string.uninstall_system_app_text;
2108 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
2109 } else {
2110 String packageName = appInfo.componentName.getPackageName();
2111 String className = appInfo.componentName.getClassName();
2112 Intent intent = new Intent(
2113 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002114 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2115 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Patrick Dubroy5539af72010-09-07 15:22:01 -07002116 startActivity(intent);
2117 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002118 }
2119
Michael Jurka86a720e2012-05-09 11:23:23 -07002120 boolean startActivity(View v, Intent intent, Object tag) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002121 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Winson Chungc7450e32012-04-17 17:34:08 -07002122
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002123 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002124 // Only launch using the new animation if the shortcut has not opted out (this is a
2125 // private contract between launcher and may be ignored in the future).
2126 boolean useLaunchAnimation = (v != null) &&
2127 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
2128 if (useLaunchAnimation) {
Winson Chungc7450e32012-04-17 17:34:08 -07002129 ActivityOptions opts = ActivityOptions.makeScaleUpAnimation(v, 0, 0,
2130 v.getMeasuredWidth(), v.getMeasuredHeight());
2131
2132 startActivity(intent, opts.toBundle());
2133 } else {
2134 startActivity(intent);
2135 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002136 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002137 } catch (SecurityException e) {
2138 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002139 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002140 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07002141 "or use the exported attribute for this activity. "
2142 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002143 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002144 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002145 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002146
Michael Jurka86a720e2012-05-09 11:23:23 -07002147 boolean startActivitySafely(View v, Intent intent, Object tag) {
2148 boolean success = false;
2149 try {
2150 success = startActivity(v, intent, tag);
2151 } catch (ActivityNotFoundException e) {
2152 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2153 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
2154 }
2155 return success;
2156 }
2157
Romain Guy8e633c52010-03-04 12:51:36 -08002158 void startActivityForResultSafely(Intent intent, int requestCode) {
2159 try {
2160 startActivityForResult(intent, requestCode);
2161 } catch (ActivityNotFoundException e) {
2162 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2163 } catch (SecurityException e) {
2164 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2165 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
2166 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
2167 "or use the exported attribute for this activity.", e);
2168 }
2169 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002170
Adam Cohena9cf38f2011-05-02 15:36:58 -07002171 private void handleFolderClick(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07002172 final FolderInfo info = folderIcon.getFolderInfo();
Adam Cohen3c81a382011-08-31 22:25:51 -07002173 Folder openFolder = mWorkspace.getFolderForTag(info);
2174
2175 // If the folder info reports that the associated folder is open, then verify that
2176 // it is actually opened. There have been a few instances where this gets out of sync.
2177 if (info.opened && openFolder == null) {
2178 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2179 + info.screen + " (" + info.cellX + ", " + info.cellY + ")");
2180 info.opened = false;
2181 }
2182
Adam Cohenfb91f302012-06-11 15:45:18 -07002183 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002184 // Close any open folder
2185 closeFolder();
2186 // Open the requested folder
Adam Cohena9cf38f2011-05-02 15:36:58 -07002187 openFolder(folderIcon);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002188 } else {
2189 // Find the open folder...
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002190 int folderScreen;
2191 if (openFolder != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07002192 folderScreen = mWorkspace.getPageForView(openFolder);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002193 // .. and close it
2194 closeFolder(openFolder);
Michael Jurka0142d492010-08-25 17:46:15 -07002195 if (folderScreen != mWorkspace.getCurrentPage()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002196 // Close any folder open on the current screen
2197 closeFolder();
2198 // Pull the folder onto this screen
Adam Cohena9cf38f2011-05-02 15:36:58 -07002199 openFolder(folderIcon);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002200 }
2201 }
2202 }
2203 }
2204
Adam Cohen268c4752012-06-06 17:47:33 -07002205 /**
2206 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
2207 * in the DragLayer in the exact absolute location of the original FolderIcon.
2208 */
2209 private void copyFolderIconToImage(FolderIcon fi) {
2210 final int width = fi.getMeasuredWidth();
2211 final int height = fi.getMeasuredHeight();
2212
2213 // Lazy load ImageView, Bitmap and Canvas
2214 if (mFolderIconImageView == null) {
2215 mFolderIconImageView = new ImageView(this);
2216 }
2217 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
2218 mFolderIconBitmap.getHeight() != height) {
2219 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
2220 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
2221 }
2222
2223 DragLayer.LayoutParams lp;
2224 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
2225 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
2226 } else {
2227 lp = new DragLayer.LayoutParams(width, height);
2228 }
2229
Adam Cohen307fe232012-08-16 17:55:58 -07002230 // The layout from which the folder is being opened may be scaled, adjust the starting
2231 // view size by this scale factor.
2232 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07002233 lp.customPosition = true;
2234 lp.x = mRectForFolderAnimation.left;
2235 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07002236 lp.width = (int) (scale * width);
2237 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07002238
2239 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
2240 fi.draw(mFolderIconCanvas);
2241 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07002242 if (fi.getFolder() != null) {
2243 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
2244 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07002245 }
Adam Cohen268c4752012-06-06 17:47:33 -07002246 // Just in case this image view is still in the drag layer from a previous animation,
2247 // we remove it and re-add it.
2248 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
2249 mDragLayer.removeView(mFolderIconImageView);
2250 }
2251 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07002252 if (fi.getFolder() != null) {
2253 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07002254 }
Adam Cohen268c4752012-06-06 17:47:33 -07002255 }
2256
Adam Cohen2801caf2011-05-13 20:57:39 -07002257 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002258 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07002259 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
2260 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
2261 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
2262
Adam Cohenc51934b2011-07-26 21:07:43 -07002263 FolderInfo info = (FolderInfo) fi.getTag();
2264 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
2265 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07002266 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
2267 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07002268 }
2269
Adam Cohen268c4752012-06-06 17:47:33 -07002270 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
2271 copyFolderIconToImage(fi);
2272 fi.setVisibility(View.INVISIBLE);
2273
Michael Jurka2ecf9952012-06-18 12:52:28 -07002274 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07002275 scaleX, scaleY);
Adam Cohen2801caf2011-05-13 20:57:39 -07002276 oa.setDuration(getResources().getInteger(R.integer.config_folderAnimDuration));
2277 oa.start();
2278 }
2279
Adam Cohen268c4752012-06-06 17:47:33 -07002280 private void shrinkAndFadeInFolderIcon(final FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002281 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07002282 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
2283 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
2284 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
2285
Adam Cohen268c4752012-06-06 17:47:33 -07002286 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07002287
Adam Cohen268c4752012-06-06 17:47:33 -07002288 // We remove and re-draw the FolderIcon in-case it has changed
2289 mDragLayer.removeView(mFolderIconImageView);
2290 copyFolderIconToImage(fi);
Michael Jurka2ecf9952012-06-18 12:52:28 -07002291 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07002292 scaleX, scaleY);
Adam Cohen2801caf2011-05-13 20:57:39 -07002293 oa.setDuration(getResources().getInteger(R.integer.config_folderAnimDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07002294 oa.addListener(new AnimatorListenerAdapter() {
2295 @Override
2296 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07002297 if (cl != null) {
2298 cl.clearFolderLeaveBehind();
2299 // Remove the ImageView copy of the FolderIcon and make the original visible.
2300 mDragLayer.removeView(mFolderIconImageView);
2301 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07002302 }
2303 }
2304 });
Adam Cohen2801caf2011-05-13 20:57:39 -07002305 oa.start();
2306 }
2307
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002308 /**
Michael Jurka774bd372010-10-22 13:40:50 -07002309 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002310 * is animated relative to the specified View. If the View is null, no animation
2311 * is played.
2312 *
2313 * @param folderInfo The FolderInfo describing the folder to open.
2314 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07002315 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07002316 Folder folder = folderIcon.getFolder();
Adam Cohena9cf38f2011-05-02 15:36:58 -07002317 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002318
Adam Cohena9cf38f2011-05-02 15:36:58 -07002319 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002320
Adam Cohen4554ee12011-08-03 16:13:21 -07002321 // Just verify that the folder hasn't already been added to the DragLayer.
2322 // There was a one-off crash where the folder had a parent already.
2323 if (folder.getParent() == null) {
2324 mDragLayer.addView(folder);
2325 mDragController.addDropTarget((DropTarget) folder);
2326 } else {
2327 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
2328 folder.getParent() + ").");
2329 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07002330 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07002331 growAndFadeOutFolderIcon(folderIcon);
Winson Chung83ca4802013-04-12 15:10:52 -07002332
2333 // Notify the accessibility manager that this folder "window" has appeared and occluded
2334 // the workspace items
2335 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
2336 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07002337 }
2338
2339 public void closeFolder() {
2340 Folder folder = mWorkspace.getOpenFolder();
2341 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07002342 if (folder.isEditingName()) {
2343 folder.dismissEditingName();
2344 }
Adam Cohen4554ee12011-08-03 16:13:21 -07002345 closeFolder(folder);
Winson Chung7d7541e2011-09-16 20:14:36 -07002346
2347 // Dismiss the folder cling
2348 dismissFolderCling(null);
Adam Cohen4554ee12011-08-03 16:13:21 -07002349 }
2350 }
2351
2352 void closeFolder(Folder folder) {
2353 folder.getInfo().opened = false;
2354
2355 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
2356 if (parent != null) {
2357 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
2358 shrinkAndFadeInFolderIcon(fi);
2359 }
2360 folder.animateClosed();
Winson Chung83ca4802013-04-12 15:10:52 -07002361
2362 // Notify the accessibility manager that this folder "window" has disappeard and no
2363 // longer occludeds the workspace items
2364 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002365 }
2366
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002367 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07002368 if (!isDraggingEnabled()) return false;
2369 if (isWorkspaceLocked()) return false;
2370 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002371
2372 if (!(v instanceof CellLayout)) {
Michael Jurka8c920dd2011-01-20 14:16:56 -08002373 v = (View) v.getParent().getParent();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002374 }
2375
Michael Jurka0280c3b2010-09-17 15:00:07 -07002376 resetAddInfo();
2377 CellLayout.CellInfo longClickCellInfo = (CellLayout.CellInfo) v.getTag();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002378 // This happens when long clicking an item with the dpad/trackball
Adam Cohenfaea1f82011-07-21 16:23:57 -07002379 if (longClickCellInfo == null) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002380 return true;
2381 }
2382
Winson Chung3d503fb2011-07-13 17:25:49 -07002383 // The hotseat touch handling does not go through Workspace, and we always allow long press
2384 // on hotseat items.
Michael Jurka0280c3b2010-09-17 15:00:07 -07002385 final View itemUnderLongClick = longClickCellInfo.cell;
Winson Chung3d503fb2011-07-13 17:25:49 -07002386 boolean allowLongPress = isHotseatLayout(v) || mWorkspace.allowLongPress();
2387 if (allowLongPress && !mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002388 if (itemUnderLongClick == null) {
2389 // User long pressed on empty space
Michael Jurka0280c3b2010-09-17 15:00:07 -07002390 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
2391 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Winson Chung6a3fd3f2011-08-02 14:03:26 -07002392 startWallpaper();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002393 } else {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002394 if (!(itemUnderLongClick instanceof Folder)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002395 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07002396 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002397 }
2398 }
2399 }
2400 return true;
2401 }
2402
Winson Chung3d503fb2011-07-13 17:25:49 -07002403 boolean isHotseatLayout(View layout) {
2404 return mHotseat != null && layout != null &&
2405 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
2406 }
2407 Hotseat getHotseat() {
2408 return mHotseat;
Romain Guy1fbc1c82009-11-09 20:43:08 -08002409 }
Adam Cohenebea84d2011-11-09 17:20:41 -08002410 SearchDropTargetBar getSearchBar() {
2411 return mSearchDropTargetBar;
2412 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08002413
Winson Chung3d503fb2011-07-13 17:25:49 -07002414 /**
2415 * Returns the CellLayout of the specified container at the specified screen.
2416 */
2417 CellLayout getCellLayout(long container, int screen) {
2418 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
2419 if (mHotseat != null) {
2420 return mHotseat.getLayout();
2421 } else {
2422 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08002423 }
Winson Chung3d503fb2011-07-13 17:25:49 -07002424 } else {
2425 return (CellLayout) mWorkspace.getChildAt(screen);
Romain Guya6abce82009-11-10 02:54:41 -08002426 }
2427 }
2428
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002429 Workspace getWorkspace() {
2430 return mWorkspace;
2431 }
2432
Daniel Sandler843e8602010-06-07 14:59:01 -04002433 // Now a part of LauncherModel.Callbacks. Used to reorder loading steps.
Craig Mautner360310b2012-10-26 15:13:08 -07002434 @Override
Daniel Sandler843e8602010-06-07 14:59:01 -04002435 public boolean isAllAppsVisible() {
Winson Chungc93e5ae2012-07-23 20:48:26 -07002436 return (mState == State.APPS_CUSTOMIZE) || (mOnResumeState == State.APPS_CUSTOMIZE);
Joe Onoratofb0ca672009-09-14 17:55:46 -04002437 }
2438
Craig Mautner360310b2012-10-26 15:13:08 -07002439 @Override
Andrew Flynn0dca1ec2012-02-29 13:33:22 -08002440 public boolean isAllAppsButtonRank(int rank) {
2441 return mHotseat.isAllAppsButtonRank(rank);
2442 }
2443
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002444 /**
2445 * Helper method for the cameraZoomIn/cameraZoomOut animations
2446 * @param view The view being animated
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002447 * @param scaleFactor The scale factor used for the zoom
2448 */
Michael Jurkab3e22d92011-10-31 15:58:33 -07002449 private void setPivotsForZoom(View view, float scaleFactor) {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002450 view.setPivotX(view.getWidth() / 2.0f);
Adam Cohen7777d962011-08-18 18:58:38 -07002451 view.setPivotY(view.getHeight() / 2.0f);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002452 }
Daniel Sandlerc351eb82010-03-03 15:05:19 -05002453
Winson Chung18f41f82012-05-09 13:28:10 -07002454 void disableWallpaperIfInAllApps() {
2455 // Only disable it if we are in all apps
Winson Chungc93e5ae2012-07-23 20:48:26 -07002456 if (isAllAppsVisible()) {
Winson Chung18f41f82012-05-09 13:28:10 -07002457 if (mAppsCustomizeTabHost != null &&
2458 !mAppsCustomizeTabHost.isTransitioning()) {
2459 updateWallpaperVisibility(false);
2460 }
2461 }
2462 }
2463
Craig Mautner360310b2012-10-26 15:13:08 -07002464 private void setWorkspaceBackground(boolean workspace) {
2465 mLauncherView.setBackground(workspace ?
Michael Jurka496fefb2013-05-06 15:39:11 +02002466 mWorkspaceBackgroundDrawable : null);
Craig Mautner360310b2012-10-26 15:13:08 -07002467 }
2468
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002469 void updateWallpaperVisibility(boolean visible) {
2470 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
2471 int curflags = getWindow().getAttributes().flags
2472 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
2473 if (wpflags != curflags) {
2474 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
2475 }
Craig Mautner360310b2012-10-26 15:13:08 -07002476 setWorkspaceBackground(visible);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002477 }
2478
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002479 private void dispatchOnLauncherTransitionPrepare(View v, boolean animated, boolean toWorkspace) {
2480 if (v instanceof LauncherTransitionable) {
2481 ((LauncherTransitionable) v).onLauncherTransitionPrepare(this, animated, toWorkspace);
2482 }
2483 }
2484
Michael Jurkabed61d22012-02-14 22:51:29 -08002485 private void dispatchOnLauncherTransitionStart(View v, boolean animated, boolean toWorkspace) {
2486 if (v instanceof LauncherTransitionable) {
2487 ((LauncherTransitionable) v).onLauncherTransitionStart(this, animated, toWorkspace);
2488 }
Winson Chung70442722012-02-10 15:43:22 -08002489
2490 // Update the workspace transition step as well
2491 dispatchOnLauncherTransitionStep(v, 0f);
2492 }
2493
2494 private void dispatchOnLauncherTransitionStep(View v, float t) {
2495 if (v instanceof LauncherTransitionable) {
2496 ((LauncherTransitionable) v).onLauncherTransitionStep(this, t);
2497 }
Michael Jurkabed61d22012-02-14 22:51:29 -08002498 }
2499
2500 private void dispatchOnLauncherTransitionEnd(View v, boolean animated, boolean toWorkspace) {
2501 if (v instanceof LauncherTransitionable) {
2502 ((LauncherTransitionable) v).onLauncherTransitionEnd(this, animated, toWorkspace);
2503 }
Winson Chung70442722012-02-10 15:43:22 -08002504
2505 // Update the workspace transition step as well
2506 dispatchOnLauncherTransitionStep(v, 1f);
Michael Jurkabed61d22012-02-14 22:51:29 -08002507 }
2508
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002509 /**
Michael Jurkab3e22d92011-10-31 15:58:33 -07002510 * Things to test when changing the following seven functions.
2511 * - Home from workspace
2512 * - from center screen
2513 * - from other screens
2514 * - Home from all apps
2515 * - from center screen
2516 * - from other screens
2517 * - Back from all apps
2518 * - from center screen
2519 * - from other screens
2520 * - Launch app from workspace and quit
2521 * - with back
2522 * - with home
2523 * - Launch app from all apps and quit
2524 * - with back
2525 * - with home
2526 * - Go to a screen that's not the default, then all
2527 * apps, and launch and app, and go back
2528 * - with back
2529 * -with home
2530 * - On workspace, long press power and go back
2531 * - with back
2532 * - with home
2533 * - On all apps, long press power and go back
2534 * - with back
2535 * - with home
2536 * - On workspace, power off
2537 * - On all apps, power off
2538 * - Launch an app and turn off the screen while in that app
2539 * - Go back with home key
2540 * - Go back with back key TODO: make this not go to workspace
2541 * - From all apps
2542 * - From workspace
2543 * - Enter and exit car mode (becuase it causes an extra configuration changed)
2544 * - From all apps
2545 * - From the center workspace
2546 * - From another workspace
2547 */
2548
2549 /**
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002550 * Zoom the camera out from the workspace to reveal 'toView'.
2551 * Assumes that the view to show is anchored at either the very top or very bottom
2552 * of the screen.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002553 */
Michael Jurkabed61d22012-02-14 22:51:29 -08002554 private void showAppsCustomizeHelper(final boolean animated, final boolean springLoaded) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07002555 if (mStateAnimation != null) {
Michael Jurkaf1ad6082013-03-13 12:55:46 +01002556 mStateAnimation.setDuration(0);
Michael Jurkab3e22d92011-10-31 15:58:33 -07002557 mStateAnimation.cancel();
2558 mStateAnimation = null;
2559 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002560 final Resources res = getResources();
Adam Cohenf16e5712011-01-13 13:31:45 -08002561
Winson Chungf0ea4d32011-06-06 14:27:16 -07002562 final int duration = res.getInteger(R.integer.config_appsCustomizeZoomInTime);
2563 final int fadeDuration = res.getInteger(R.integer.config_appsCustomizeFadeInTime);
2564 final float scale = (float) res.getInteger(R.integer.config_appsCustomizeZoomScaleFactor);
Michael Jurkabed61d22012-02-14 22:51:29 -08002565 final View fromView = mWorkspace;
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002566 final AppsCustomizeTabHost toView = mAppsCustomizeTabHost;
Adam Cohencff6af82011-09-13 14:51:53 -07002567 final int startDelay =
2568 res.getInteger(R.integer.config_workspaceAppsCustomizeAnimationStagger);
Patrick Dubroy558654c2010-07-23 16:48:11 -07002569
Michael Jurkab3e22d92011-10-31 15:58:33 -07002570 setPivotsForZoom(toView, scale);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002571
Michael Jurkad74c9842011-07-10 12:44:21 -07002572 // Shrink workspaces away if going to AppsCustomize from workspace
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002573 Animator workspaceAnim =
2574 mWorkspace.getChangeStateAnimation(Workspace.State.SMALL, animated);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002575
2576 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08002577 toView.setScaleX(scale);
2578 toView.setScaleY(scale);
2579 final LauncherViewPropertyAnimator scaleAnim = new LauncherViewPropertyAnimator(toView);
2580 scaleAnim.
2581 scaleX(1f).scaleY(1f).
2582 setDuration(duration).
2583 setInterpolator(new Workspace.ZoomOutInterpolator());
Adam Cohen61033d32010-11-15 18:29:44 -08002584
Winson Chungf0ea4d32011-06-06 14:27:16 -07002585 toView.setVisibility(View.VISIBLE);
Adam Cohenc00f0b92011-12-06 19:45:06 -08002586 toView.setAlpha(0f);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01002587 final ObjectAnimator alphaAnim = LauncherAnimUtils
Michael Jurka159b4cc2012-01-17 03:00:35 -08002588 .ofFloat(toView, "alpha", 0f, 1f)
2589 .setDuration(fadeDuration);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002590 alphaAnim.setInterpolator(new DecelerateInterpolator(1.5f));
Winson Chung70442722012-02-10 15:43:22 -08002591 alphaAnim.addUpdateListener(new AnimatorUpdateListener() {
2592 @Override
2593 public void onAnimationUpdate(ValueAnimator animation) {
Michael Jurka059798a2012-09-04 09:20:16 -07002594 if (animation == null) {
2595 throw new RuntimeException("animation is null");
2596 }
Winson Chung70442722012-02-10 15:43:22 -08002597 float t = (Float) animation.getAnimatedValue();
2598 dispatchOnLauncherTransitionStep(fromView, t);
2599 dispatchOnLauncherTransitionStep(toView, t);
2600 }
2601 });
Adam Cohenf16e5712011-01-13 13:31:45 -08002602
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002603 // toView should appear right at the end of the workspace shrink
2604 // animation
Michael Jurka2ecf9952012-06-18 12:52:28 -07002605 mStateAnimation = LauncherAnimUtils.createAnimatorSet();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002606 mStateAnimation.play(scaleAnim).after(startDelay);
Michael Jurka7407d2a2011-12-12 21:48:38 -08002607 mStateAnimation.play(alphaAnim).after(startDelay);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002608
2609 mStateAnimation.addListener(new AnimatorListenerAdapter() {
Adam Cohenf4ddea32011-09-12 13:46:42 -07002610 boolean animationCancelled = false;
2611
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002612 @Override
Chet Haaseb1254a62010-09-07 13:35:00 -07002613 public void onAnimationStart(Animator animation) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002614 updateWallpaperVisibility(true);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002615 // Prepare the position
2616 toView.setTranslationX(0.0f);
2617 toView.setTranslationY(0.0f);
2618 toView.setVisibility(View.VISIBLE);
Winson Chung785d2eb2011-04-14 16:08:02 -07002619 toView.bringToFront();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002620 }
Michael Jurka3c4c20f2010-10-28 15:36:06 -07002621 @Override
Michael Jurka8edd75c2010-12-17 20:15:06 -08002622 public void onAnimationEnd(Animator animation) {
Michael Jurkabed61d22012-02-14 22:51:29 -08002623 dispatchOnLauncherTransitionEnd(fromView, animated, false);
2624 dispatchOnLauncherTransitionEnd(toView, animated, false);
Winson Chung32174c82011-07-19 15:47:55 -07002625
Michael Jurkafa7969f2012-09-21 16:39:14 -07002626 if (mWorkspace != null && !springLoaded && !LauncherApplication.isScreenLarge()) {
Winson Chung32174c82011-07-19 15:47:55 -07002627 // Hide the workspace scrollbar
2628 mWorkspace.hideScrollingIndicator(true);
Michael Jurkab737ee62011-11-15 15:57:22 -08002629 hideDockDivider();
Winson Chung32174c82011-07-19 15:47:55 -07002630 }
Adam Cohenf4ddea32011-09-12 13:46:42 -07002631 if (!animationCancelled) {
2632 updateWallpaperVisibility(false);
2633 }
Winson Chungc7d2b602012-05-16 17:02:20 -07002634
2635 // Hide the search bar
Winson Chungadf0c182012-08-23 14:59:07 -07002636 if (mSearchDropTargetBar != null) {
2637 mSearchDropTargetBar.hideSearchBar(false);
2638 }
Adam Cohenf4ddea32011-09-12 13:46:42 -07002639 }
2640
Adam Cohencff6af82011-09-13 14:51:53 -07002641 @Override
Adam Cohenf4ddea32011-09-12 13:46:42 -07002642 public void onAnimationCancel(Animator animation) {
2643 animationCancelled = true;
Michael Jurka3c4c20f2010-10-28 15:36:06 -07002644 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002645 });
2646
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002647 if (workspaceAnim != null) {
2648 mStateAnimation.play(workspaceAnim);
2649 }
Michael Jurka1899a362011-11-03 13:50:45 -07002650
2651 boolean delayAnim = false;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002652
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002653 dispatchOnLauncherTransitionPrepare(fromView, animated, false);
2654 dispatchOnLauncherTransitionPrepare(toView, animated, false);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002655
2656 // If any of the objects being animated haven't been measured/laid out
2657 // yet, delay the animation until we get a layout pass
Michael Jurkabed61d22012-02-14 22:51:29 -08002658 if ((((LauncherTransitionable) toView).getContent().getMeasuredWidth() == 0) ||
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002659 (mWorkspace.getMeasuredWidth() == 0) ||
2660 (toView.getMeasuredWidth() == 0)) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002661 delayAnim = true;
Michael Jurka1899a362011-11-03 13:50:45 -07002662 }
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002663
Michael Jurka3dcd79e2012-05-31 07:50:33 -07002664 final AnimatorSet stateAnimation = mStateAnimation;
2665 final Runnable startAnimRunnable = new Runnable() {
2666 public void run() {
2667 // Check that mStateAnimation hasn't changed while
2668 // we waited for a layout/draw pass
2669 if (mStateAnimation != stateAnimation)
2670 return;
2671 setPivotsForZoom(toView, scale);
2672 dispatchOnLauncherTransitionStart(fromView, animated, false);
2673 dispatchOnLauncherTransitionStart(toView, animated, false);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01002674 LauncherAnimUtils.startAnimationAfterNextDraw(mStateAnimation, toView);
Michael Jurka3dcd79e2012-05-31 07:50:33 -07002675 }
2676 };
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002677 if (delayAnim) {
Michael Jurkaf1ad6082013-03-13 12:55:46 +01002678 final ViewTreeObserver observer = toView.getViewTreeObserver();
2679 observer.addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
2680 public void onGlobalLayout() {
2681 startAnimRunnable.run();
2682 toView.getViewTreeObserver().removeOnGlobalLayoutListener(this);
2683 }
2684 });
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002685 } else {
Michael Jurka3dcd79e2012-05-31 07:50:33 -07002686 startAnimRunnable.run();
Michael Jurka1899a362011-11-03 13:50:45 -07002687 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002688 } else {
2689 toView.setTranslationX(0.0f);
2690 toView.setTranslationY(0.0f);
2691 toView.setScaleX(1.0f);
2692 toView.setScaleY(1.0f);
2693 toView.setVisibility(View.VISIBLE);
Winson Chung785d2eb2011-04-14 16:08:02 -07002694 toView.bringToFront();
Winson Chung3ac74c52011-06-30 17:39:37 -07002695
Michael Jurkabed61d22012-02-14 22:51:29 -08002696 if (!springLoaded && !LauncherApplication.isScreenLarge()) {
2697 // Hide the workspace scrollbar
2698 mWorkspace.hideScrollingIndicator(true);
2699 hideDockDivider();
Winson Chungc7d2b602012-05-16 17:02:20 -07002700
2701 // Hide the search bar
Winson Chungadf0c182012-08-23 14:59:07 -07002702 if (mSearchDropTargetBar != null) {
2703 mSearchDropTargetBar.hideSearchBar(false);
2704 }
Michael Jurkaabded662011-03-04 12:06:57 -08002705 }
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002706 dispatchOnLauncherTransitionPrepare(fromView, animated, false);
Michael Jurkabed61d22012-02-14 22:51:29 -08002707 dispatchOnLauncherTransitionStart(fromView, animated, false);
2708 dispatchOnLauncherTransitionEnd(fromView, animated, false);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002709 dispatchOnLauncherTransitionPrepare(toView, animated, false);
Michael Jurkabed61d22012-02-14 22:51:29 -08002710 dispatchOnLauncherTransitionStart(toView, animated, false);
2711 dispatchOnLauncherTransitionEnd(toView, animated, false);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002712 updateWallpaperVisibility(false);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002713 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002714 }
2715
2716 /**
2717 * Zoom the camera back into the workspace, hiding 'fromView'.
Michael Jurkab3e22d92011-10-31 15:58:33 -07002718 * This is the opposite of showAppsCustomizeHelper.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002719 * @param animated If true, the transition will be animated.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002720 */
Adam Cohened66b2b2012-01-23 17:28:51 -08002721 private void hideAppsCustomizeHelper(State toState, final boolean animated,
2722 final boolean springLoaded, final Runnable onCompleteRunnable) {
Michael Jurkabed61d22012-02-14 22:51:29 -08002723
Michael Jurkab3e22d92011-10-31 15:58:33 -07002724 if (mStateAnimation != null) {
Michael Jurkaf1ad6082013-03-13 12:55:46 +01002725 mStateAnimation.setDuration(0);
Michael Jurkab3e22d92011-10-31 15:58:33 -07002726 mStateAnimation.cancel();
2727 mStateAnimation = null;
2728 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002729 Resources res = getResources();
Adam Cohenf16e5712011-01-13 13:31:45 -08002730
Winson Chungf0ea4d32011-06-06 14:27:16 -07002731 final int duration = res.getInteger(R.integer.config_appsCustomizeZoomOutTime);
Michael Jurka159b4cc2012-01-17 03:00:35 -08002732 final int fadeOutDuration =
2733 res.getInteger(R.integer.config_appsCustomizeFadeOutTime);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002734 final float scaleFactor = (float)
2735 res.getInteger(R.integer.config_appsCustomizeZoomScaleFactor);
2736 final View fromView = mAppsCustomizeTabHost;
Michael Jurkabed61d22012-02-14 22:51:29 -08002737 final View toView = mWorkspace;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002738 Animator workspaceAnim = null;
2739
2740 if (toState == State.WORKSPACE) {
2741 int stagger = res.getInteger(R.integer.config_appsCustomizeWorkspaceAnimationStagger);
2742 workspaceAnim = mWorkspace.getChangeStateAnimation(
2743 Workspace.State.NORMAL, animated, stagger);
2744 } else if (toState == State.APPS_CUSTOMIZE_SPRING_LOADED) {
2745 workspaceAnim = mWorkspace.getChangeStateAnimation(
2746 Workspace.State.SPRING_LOADED, animated);
2747 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07002748
Michael Jurkab3e22d92011-10-31 15:58:33 -07002749 setPivotsForZoom(fromView, scaleFactor);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002750 updateWallpaperVisibility(true);
Winson Chung4afe9b32011-07-27 17:46:20 -07002751 showHotseat(animated);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002752 if (animated) {
Michael Jurka159b4cc2012-01-17 03:00:35 -08002753 final LauncherViewPropertyAnimator scaleAnim =
2754 new LauncherViewPropertyAnimator(fromView);
2755 scaleAnim.
2756 scaleX(scaleFactor).scaleY(scaleFactor).
2757 setDuration(duration).
2758 setInterpolator(new Workspace.ZoomInInterpolator());
2759
Michael Jurkaf1ad6082013-03-13 12:55:46 +01002760 final ObjectAnimator alphaAnim = LauncherAnimUtils
Michael Jurka159b4cc2012-01-17 03:00:35 -08002761 .ofFloat(fromView, "alpha", 1f, 0f)
2762 .setDuration(fadeOutDuration);
Adam Cohencff6af82011-09-13 14:51:53 -07002763 alphaAnim.setInterpolator(new AccelerateDecelerateInterpolator());
Winson Chung70442722012-02-10 15:43:22 -08002764 alphaAnim.addUpdateListener(new AnimatorUpdateListener() {
2765 @Override
2766 public void onAnimationUpdate(ValueAnimator animation) {
2767 float t = 1f - (Float) animation.getAnimatedValue();
2768 dispatchOnLauncherTransitionStep(fromView, t);
2769 dispatchOnLauncherTransitionStep(toView, t);
2770 }
2771 });
Michael Jurka159b4cc2012-01-17 03:00:35 -08002772
Michael Jurka2ecf9952012-06-18 12:52:28 -07002773 mStateAnimation = LauncherAnimUtils.createAnimatorSet();
Michael Jurkabed61d22012-02-14 22:51:29 -08002774
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002775 dispatchOnLauncherTransitionPrepare(fromView, animated, true);
2776 dispatchOnLauncherTransitionPrepare(toView, animated, true);
Chet Haasebc2f0822012-10-26 17:59:53 -07002777 mAppsCustomizeContent.pauseScrolling();
Michael Jurkabed61d22012-02-14 22:51:29 -08002778
2779 mStateAnimation.addListener(new AnimatorListenerAdapter() {
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002780 @Override
Michael Jurka8edd75c2010-12-17 20:15:06 -08002781 public void onAnimationEnd(Animator animation) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002782 updateWallpaperVisibility(true);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002783 fromView.setVisibility(View.GONE);
Michael Jurkabed61d22012-02-14 22:51:29 -08002784 dispatchOnLauncherTransitionEnd(fromView, animated, true);
2785 dispatchOnLauncherTransitionEnd(toView, animated, true);
Michael Jurkabafdaaf2012-04-26 13:43:25 -07002786 if (mWorkspace != null) {
2787 mWorkspace.hideScrollingIndicator(false);
2788 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002789 if (onCompleteRunnable != null) {
2790 onCompleteRunnable.run();
2791 }
Chet Haasebc2f0822012-10-26 17:59:53 -07002792 mAppsCustomizeContent.updateCurrentPageScroll();
2793 mAppsCustomizeContent.resumeScrolling();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002794 }
2795 });
2796
Winson Chungf0ea4d32011-06-06 14:27:16 -07002797 mStateAnimation.playTogether(scaleAnim, alphaAnim);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002798 if (workspaceAnim != null) {
2799 mStateAnimation.play(workspaceAnim);
2800 }
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002801 dispatchOnLauncherTransitionStart(fromView, animated, true);
2802 dispatchOnLauncherTransitionStart(toView, animated, true);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01002803 LauncherAnimUtils.startAnimationAfterNextDraw(mStateAnimation, toView);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002804 } else {
2805 fromView.setVisibility(View.GONE);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002806 dispatchOnLauncherTransitionPrepare(fromView, animated, true);
Michael Jurkabed61d22012-02-14 22:51:29 -08002807 dispatchOnLauncherTransitionStart(fromView, animated, true);
2808 dispatchOnLauncherTransitionEnd(fromView, animated, true);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002809 dispatchOnLauncherTransitionPrepare(toView, animated, true);
Michael Jurkabed61d22012-02-14 22:51:29 -08002810 dispatchOnLauncherTransitionStart(toView, animated, true);
2811 dispatchOnLauncherTransitionEnd(toView, animated, true);
Michael Jurkab737ee62011-11-15 15:57:22 -08002812 mWorkspace.hideScrollingIndicator(false);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002813 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002814 }
2815
Michael Jurkae326f182011-11-21 14:05:46 -08002816 @Override
2817 public void onTrimMemory(int level) {
2818 super.onTrimMemory(level);
Winson Chungc7450e32012-04-17 17:34:08 -07002819 if (level >= ComponentCallbacks2.TRIM_MEMORY_MODERATE) {
Michael Jurkae326f182011-11-21 14:05:46 -08002820 mAppsCustomizeTabHost.onTrimMemory();
2821 }
2822 }
2823
Winson Chung18f41f82012-05-09 13:28:10 -07002824 @Override
2825 public void onWindowFocusChanged(boolean hasFocus) {
2826 if (!hasFocus) {
2827 // When another window occludes launcher (like the notification shade, or recents),
2828 // ensure that we enable the wallpaper flag so that transitions are done correctly.
2829 updateWallpaperVisibility(true);
2830 } else {
2831 // When launcher has focus again, disable the wallpaper if we are in AllApps
Winson Chung6cf79092012-06-07 14:50:10 -07002832 mWorkspace.postDelayed(new Runnable() {
2833 @Override
2834 public void run() {
2835 disableWallpaperIfInAllApps();
2836 }
2837 }, 500);
Winson Chung18f41f82012-05-09 13:28:10 -07002838 }
2839 }
2840
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002841 void showWorkspace(boolean animated) {
Adam Cohened66b2b2012-01-23 17:28:51 -08002842 showWorkspace(animated, null);
2843 }
2844
2845 void showWorkspace(boolean animated, Runnable onCompleteRunnable) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07002846 if (mState != State.WORKSPACE) {
Winson Chungc7d2b602012-05-16 17:02:20 -07002847 boolean wasInSpringLoadedMode = (mState == State.APPS_CUSTOMIZE_SPRING_LOADED);
Michael Jurkab3e22d92011-10-31 15:58:33 -07002848 mWorkspace.setVisibility(View.VISIBLE);
Adam Cohened66b2b2012-01-23 17:28:51 -08002849 hideAppsCustomizeHelper(State.WORKSPACE, animated, false, onCompleteRunnable);
Michael Jurkab3e22d92011-10-31 15:58:33 -07002850
Winson Chungc7d2b602012-05-16 17:02:20 -07002851 // Show the search bar (only animate if we were showing the drop target bar in spring
2852 // loaded mode)
Winson Chungadf0c182012-08-23 14:59:07 -07002853 if (mSearchDropTargetBar != null) {
2854 mSearchDropTargetBar.showSearchBar(wasInSpringLoadedMode);
2855 }
Winson Chungc7d2b602012-05-16 17:02:20 -07002856
Michael Jurkab737ee62011-11-15 15:57:22 -08002857 // We only need to animate in the dock divider if we're going from spring loaded mode
Winson Chungc7d2b602012-05-16 17:02:20 -07002858 showDockDivider(animated && wasInSpringLoadedMode);
Michael Jurkab3e22d92011-10-31 15:58:33 -07002859
2860 // Set focus to the AppsCustomize button
2861 if (mAllAppsButton != null) {
2862 mAllAppsButton.requestFocus();
2863 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002864 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07002865
Michael Jurkab737ee62011-11-15 15:57:22 -08002866 mWorkspace.flashScrollingIndicator(animated);
Adam Cohen7777d962011-08-18 18:58:38 -07002867
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002868 // Change the state *after* we've called all the transition code
2869 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08002870
Winson Chung5fb63472011-02-02 17:03:37 -08002871 // Resume the auto-advance of widgets
2872 mUserPresent = true;
2873 updateRunning();
2874
alanv1d4fde62012-10-17 13:15:47 -07002875 // Send an accessibility event to announce the context change
2876 getWindow().getDecorView()
2877 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Joe Onorato00acb122009-08-04 16:04:30 -04002878 }
2879
Michael Jurkab3e22d92011-10-31 15:58:33 -07002880 void showAllApps(boolean animated) {
2881 if (mState != State.WORKSPACE) return;
2882
2883 showAppsCustomizeHelper(animated, false);
2884 mAppsCustomizeTabHost.requestFocus();
2885
Michael Jurkab3e22d92011-10-31 15:58:33 -07002886 // Change the state *after* we've called all the transition code
2887 mState = State.APPS_CUSTOMIZE;
2888
2889 // Pause the auto-advance of widgets until we are out of AllApps
2890 mUserPresent = false;
2891 updateRunning();
2892 closeFolder();
2893
2894 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07002895 getWindow().getDecorView()
2896 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Michael Jurkab3e22d92011-10-31 15:58:33 -07002897 }
2898
Adam Cohen7777d962011-08-18 18:58:38 -07002899 void enterSpringLoadedDragMode() {
Winson Chungc93e5ae2012-07-23 20:48:26 -07002900 if (isAllAppsVisible()) {
Adam Cohened66b2b2012-01-23 17:28:51 -08002901 hideAppsCustomizeHelper(State.APPS_CUSTOMIZE_SPRING_LOADED, true, true, null);
Michael Jurkab737ee62011-11-15 15:57:22 -08002902 hideDockDivider();
Winson Chungc07918d2011-07-01 15:35:26 -07002903 mState = State.APPS_CUSTOMIZE_SPRING_LOADED;
Winson Chungb26f3d62011-06-02 10:49:29 -07002904 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08002905 }
Adam Cohen7777d962011-08-18 18:58:38 -07002906
Adam Cohened66b2b2012-01-23 17:28:51 -08002907 void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, boolean extendedDelay,
2908 final Runnable onCompleteRunnable) {
Winson Chung09bfc452011-09-09 11:30:20 -07002909 if (mState != State.APPS_CUSTOMIZE_SPRING_LOADED) return;
2910
Winson Chunge7a03942011-08-05 15:05:12 -07002911 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07002912 @Override
2913 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07002914 if (successfulDrop) {
Michael Jurka7bdb25a2011-08-03 15:16:44 -07002915 // Before we show workspace, hide all apps again because
2916 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
2917 // clean up our state transition functions
2918 mAppsCustomizeTabHost.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08002919 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07002920 } else {
2921 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07002922 }
Winson Chung557d6ed2011-07-08 15:34:52 -07002923 }
2924 }, (extendedDelay ?
2925 EXIT_SPRINGLOADED_MODE_LONG_TIMEOUT :
2926 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT));
2927 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07002928
Michael Jurkad3ef3062010-11-23 16:23:58 -08002929 void exitSpringLoadedDragMode() {
Winson Chungb26f3d62011-06-02 10:49:29 -07002930 if (mState == State.APPS_CUSTOMIZE_SPRING_LOADED) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07002931 final boolean animated = true;
2932 final boolean springLoaded = true;
2933 showAppsCustomizeHelper(animated, springLoaded);
Winson Chungb26f3d62011-06-02 10:49:29 -07002934 mState = State.APPS_CUSTOMIZE;
Winson Chungf0ea4d32011-06-06 14:27:16 -07002935 }
2936 // Otherwise, we are not in spring loaded mode, so don't do anything.
2937 }
2938
Michael Jurkab737ee62011-11-15 15:57:22 -08002939 void hideDockDivider() {
2940 if (mQsbDivider != null && mDockDivider != null) {
2941 mQsbDivider.setVisibility(View.INVISIBLE);
2942 mDockDivider.setVisibility(View.INVISIBLE);
2943 }
2944 }
2945
2946 void showDockDivider(boolean animated) {
2947 if (mQsbDivider != null && mDockDivider != null) {
2948 mQsbDivider.setVisibility(View.VISIBLE);
2949 mDockDivider.setVisibility(View.VISIBLE);
2950 if (mDividerAnimator != null) {
2951 mDividerAnimator.cancel();
2952 mQsbDivider.setAlpha(1f);
2953 mDockDivider.setAlpha(1f);
2954 mDividerAnimator = null;
2955 }
2956 if (animated) {
Michael Jurka2ecf9952012-06-18 12:52:28 -07002957 mDividerAnimator = LauncherAnimUtils.createAnimatorSet();
2958 mDividerAnimator.playTogether(LauncherAnimUtils.ofFloat(mQsbDivider, "alpha", 1f),
2959 LauncherAnimUtils.ofFloat(mDockDivider, "alpha", 1f));
Winson Chungadf0c182012-08-23 14:59:07 -07002960 int duration = 0;
2961 if (mSearchDropTargetBar != null) {
2962 duration = mSearchDropTargetBar.getTransitionInDuration();
2963 }
2964 mDividerAnimator.setDuration(duration);
Michael Jurkab737ee62011-11-15 15:57:22 -08002965 mDividerAnimator.start();
2966 }
2967 }
2968 }
2969
Michael Jurkab3e22d92011-10-31 15:58:33 -07002970 void lockAllApps() {
2971 // TODO
2972 }
2973
2974 void unlockAllApps() {
2975 // TODO
2976 }
2977
Winson Chungf0ea4d32011-06-06 14:27:16 -07002978 /**
Winson Chung3d503fb2011-07-13 17:25:49 -07002979 * Shows the hotseat area.
Winson Chungf0ea4d32011-06-06 14:27:16 -07002980 */
Winson Chung3d503fb2011-07-13 17:25:49 -07002981 void showHotseat(boolean animated) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07002982 if (!LauncherApplication.isScreenLarge()) {
2983 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08002984 if (mHotseat.getAlpha() != 1f) {
Winson Chungadf0c182012-08-23 14:59:07 -07002985 int duration = 0;
2986 if (mSearchDropTargetBar != null) {
2987 duration = mSearchDropTargetBar.getTransitionInDuration();
2988 }
Michael Jurka7407d2a2011-12-12 21:48:38 -08002989 mHotseat.animate().alpha(1f).setDuration(duration);
2990 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002991 } else {
Winson Chung3d503fb2011-07-13 17:25:49 -07002992 mHotseat.setAlpha(1f);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002993 }
2994 }
2995 }
2996
2997 /**
Winson Chung3d503fb2011-07-13 17:25:49 -07002998 * Hides the hotseat area.
Winson Chungf0ea4d32011-06-06 14:27:16 -07002999 */
Winson Chung3d503fb2011-07-13 17:25:49 -07003000 void hideHotseat(boolean animated) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07003001 if (!LauncherApplication.isScreenLarge()) {
3002 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08003003 if (mHotseat.getAlpha() != 0f) {
Winson Chungadf0c182012-08-23 14:59:07 -07003004 int duration = 0;
3005 if (mSearchDropTargetBar != null) {
3006 duration = mSearchDropTargetBar.getTransitionOutDuration();
3007 }
Michael Jurka7407d2a2011-12-12 21:48:38 -08003008 mHotseat.animate().alpha(0f).setDuration(duration);
3009 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003010 } else {
Winson Chung3d503fb2011-07-13 17:25:49 -07003011 mHotseat.setAlpha(0f);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003012 }
Winson Chungb26f3d62011-06-02 10:49:29 -07003013 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08003014 }
3015
Patrick Dubroy5f445422011-02-18 14:35:21 -08003016 /**
3017 * Add an item from all apps or customize onto the given workspace screen.
3018 * If layout is null, add to the current screen.
3019 */
3020 void addExternalItemToScreen(ItemInfo itemInfo, final CellLayout layout) {
Michael Jurka6b4b25d2010-10-20 18:19:45 -07003021 if (!mWorkspace.addExternalItemToScreen(itemInfo, layout)) {
Winson Chung93eef082012-03-23 15:59:27 -07003022 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka213d9632010-07-28 11:29:25 -07003023 }
Michael Jurka6b4b25d2010-10-20 18:19:45 -07003024 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07003025
Winson Chungdff8ebb2011-09-08 17:25:31 -07003026 /** Maps the current orientation to an index for referencing orientation correct global icons */
3027 private int getCurrentOrientationIndexForGlobalIcons() {
3028 // default - 0, landscape - 1
3029 switch (getResources().getConfiguration().orientation) {
3030 case Configuration.ORIENTATION_LANDSCAPE:
3031 return 1;
3032 default:
3033 return 0;
3034 }
3035 }
3036
Michael Jurkaae65ee32012-04-30 11:45:54 -07003037 private Drawable getExternalPackageToolbarIcon(ComponentName activityName, String resourceName) {
Michael Jurka0423dcf2010-10-05 14:56:18 -07003038 try {
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003039 PackageManager packageManager = getPackageManager();
Michael Jurka0423dcf2010-10-05 14:56:18 -07003040 // Look for the toolbar icon specified in the activity meta-data
3041 Bundle metaData = packageManager.getActivityInfo(
3042 activityName, PackageManager.GET_META_DATA).metaData;
3043 if (metaData != null) {
Michael Jurkaae65ee32012-04-30 11:45:54 -07003044 int iconResId = metaData.getInt(resourceName);
Michael Jurka0423dcf2010-10-05 14:56:18 -07003045 if (iconResId != 0) {
3046 Resources res = packageManager.getResourcesForActivity(activityName);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003047 return res.getDrawable(iconResId);
Michael Jurka0423dcf2010-10-05 14:56:18 -07003048 }
3049 }
3050 } catch (NameNotFoundException e) {
Michael Jurkab6052a92011-07-12 17:02:45 -07003051 // This can happen if the activity defines an invalid drawable
3052 Log.w(TAG, "Failed to load toolbar icon; " + activityName.flattenToShortString() +
3053 " not found", e);
Mathew Inwood70d51022011-07-12 13:41:41 +01003054 } catch (Resources.NotFoundException nfe) {
3055 // This can happen if the activity defines an invalid drawable
3056 Log.w(TAG, "Failed to load toolbar icon from " + activityName.flattenToShortString(),
3057 nfe);
Michael Jurka0423dcf2010-10-05 14:56:18 -07003058 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003059 return null;
3060 }
3061
3062 // if successful in getting icon, return it; otherwise, set button to use default drawable
3063 private Drawable.ConstantState updateTextButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003064 int buttonId, ComponentName activityName, int fallbackDrawableId,
3065 String toolbarResourceName) {
3066 Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName, toolbarResourceName);
Winson Chung128bbcd2011-08-31 16:58:52 -07003067 Resources r = getResources();
3068 int w = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_width);
3069 int h = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_height);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003070
Michael Jurka4da7a3e2011-10-28 15:04:35 -07003071 TextView button = (TextView) findViewById(buttonId);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003072 // If we were unable to find the icon via the meta-data, use a generic one
3073 if (toolbarIcon == null) {
Winson Chung128bbcd2011-08-31 16:58:52 -07003074 toolbarIcon = r.getDrawable(fallbackDrawableId);
3075 toolbarIcon.setBounds(0, 0, w, h);
Michael Jurka4da7a3e2011-10-28 15:04:35 -07003076 if (button != null) {
3077 button.setCompoundDrawables(toolbarIcon, null, null, null);
3078 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003079 return null;
3080 } else {
Winson Chung128bbcd2011-08-31 16:58:52 -07003081 toolbarIcon.setBounds(0, 0, w, h);
Michael Jurka4da7a3e2011-10-28 15:04:35 -07003082 if (button != null) {
3083 button.setCompoundDrawables(toolbarIcon, null, null, null);
3084 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003085 return toolbarIcon.getConstantState();
3086 }
3087 }
3088
3089 // if successful in getting icon, return it; otherwise, set button to use default drawable
3090 private Drawable.ConstantState updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003091 int buttonId, ComponentName activityName, int fallbackDrawableId,
3092 String toolbarResourceName) {
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003093 ImageView button = (ImageView) findViewById(buttonId);
Michael Jurkaae65ee32012-04-30 11:45:54 -07003094 Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName, toolbarResourceName);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003095
Michael Jurka19e0fc52011-07-22 18:00:21 -07003096 if (button != null) {
3097 // If we were unable to find the icon via the meta-data, use a
3098 // generic one
3099 if (toolbarIcon == null) {
3100 button.setImageResource(fallbackDrawableId);
3101 } else {
3102 button.setImageDrawable(toolbarIcon);
3103 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07003104 }
Michael Jurka19e0fc52011-07-22 18:00:21 -07003105
3106 return toolbarIcon != null ? toolbarIcon.getConstantState() : null;
3107
Michael Jurka0423dcf2010-10-05 14:56:18 -07003108 }
3109
Winson Chung1b884092012-06-08 17:13:02 -07003110 private void updateTextButtonWithDrawable(int buttonId, Drawable d) {
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003111 TextView button = (TextView) findViewById(buttonId);
Winson Chung1b884092012-06-08 17:13:02 -07003112 button.setCompoundDrawables(d, null, null, null);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003113 }
3114
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003115 private void updateButtonWithDrawable(int buttonId, Drawable.ConstantState d) {
Michael Jurka4ef207b2010-11-29 17:05:45 -08003116 ImageView button = (ImageView) findViewById(buttonId);
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003117 button.setImageDrawable(d.newDrawable(getResources()));
Michael Jurka4ef207b2010-11-29 17:05:45 -08003118 }
3119
Winson Chungbb185bd2011-11-21 12:31:42 -08003120 private void invalidatePressedFocusedStates(View container, View button) {
3121 if (container instanceof HolographicLinearLayout) {
3122 HolographicLinearLayout layout = (HolographicLinearLayout) container;
3123 layout.invalidatePressedFocusedStates();
3124 } else if (button instanceof HolographicImageView) {
3125 HolographicImageView view = (HolographicImageView) button;
3126 view.invalidatePressedFocusedStates();
3127 }
3128 }
3129
Winson Chungc51db6a2011-10-05 11:44:49 -07003130 private boolean updateGlobalSearchIcon() {
3131 final View searchButtonContainer = findViewById(R.id.search_button_container);
Winson Chung1cad91e2011-05-25 17:41:01 -07003132 final ImageView searchButton = (ImageView) findViewById(R.id.search_button);
Winson Chungc51db6a2011-10-05 11:44:49 -07003133 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
Winson Chungcbf7c4d2011-08-23 11:58:54 -07003134 final View voiceButton = findViewById(R.id.voice_button);
Winson Chunge3fbfa92012-04-24 14:34:28 -07003135 final View voiceButtonProxy = findViewById(R.id.voice_button_proxy);
Winson Chung97d85d22011-04-13 11:27:36 -07003136
Winson Chung1cad91e2011-05-25 17:41:01 -07003137 final SearchManager searchManager =
3138 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
3139 ComponentName activityName = searchManager.getGlobalSearchActivity();
3140 if (activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07003141 int coi = getCurrentOrientationIndexForGlobalIcons();
3142 sGlobalSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003143 R.id.search_button, activityName, R.drawable.ic_home_search_normal_holo,
3144 TOOLBAR_SEARCH_ICON_METADATA_NAME);
3145 if (sGlobalSearchIcon[coi] == null) {
3146 sGlobalSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
3147 R.id.search_button, activityName, R.drawable.ic_home_search_normal_holo,
3148 TOOLBAR_ICON_METADATA_NAME);
3149 }
3150
Winson Chungc51db6a2011-10-05 11:44:49 -07003151 if (searchButtonContainer != null) searchButtonContainer.setVisibility(View.VISIBLE);
3152 searchButton.setVisibility(View.VISIBLE);
Winson Chungbb185bd2011-11-21 12:31:42 -08003153 invalidatePressedFocusedStates(searchButtonContainer, searchButton);
Winson Chungc51db6a2011-10-05 11:44:49 -07003154 return true;
Winson Chung1cad91e2011-05-25 17:41:01 -07003155 } else {
Winson Chungcbf7c4d2011-08-23 11:58:54 -07003156 // We disable both search and voice search when there is no global search provider
Winson Chungc51db6a2011-10-05 11:44:49 -07003157 if (searchButtonContainer != null) searchButtonContainer.setVisibility(View.GONE);
3158 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.GONE);
3159 searchButton.setVisibility(View.GONE);
Winson Chungcbf7c4d2011-08-23 11:58:54 -07003160 voiceButton.setVisibility(View.GONE);
Michael Jurkac60498a2012-05-07 15:29:42 -07003161 if (voiceButtonProxy != null) {
3162 voiceButtonProxy.setVisibility(View.GONE);
3163 }
Winson Chungc51db6a2011-10-05 11:44:49 -07003164 return false;
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003165 }
3166 }
3167
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003168 private void updateGlobalSearchIcon(Drawable.ConstantState d) {
Winson Chungbb185bd2011-11-21 12:31:42 -08003169 final View searchButtonContainer = findViewById(R.id.search_button_container);
3170 final View searchButton = (ImageView) findViewById(R.id.search_button);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003171 updateButtonWithDrawable(R.id.search_button, d);
Winson Chungbb185bd2011-11-21 12:31:42 -08003172 invalidatePressedFocusedStates(searchButtonContainer, searchButton);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003173 }
3174
Winson Chungc51db6a2011-10-05 11:44:49 -07003175 private boolean updateVoiceSearchIcon(boolean searchVisible) {
Winson Chungc51db6a2011-10-05 11:44:49 -07003176 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
Winson Chung1cad91e2011-05-25 17:41:01 -07003177 final View voiceButton = findViewById(R.id.voice_button);
Winson Chunge3fbfa92012-04-24 14:34:28 -07003178 final View voiceButtonProxy = findViewById(R.id.voice_button_proxy);
Winson Chung97d85d22011-04-13 11:27:36 -07003179
Winson Chungc51db6a2011-10-05 11:44:49 -07003180 // We only show/update the voice search icon if the search icon is enabled as well
Michael Jurkaae65ee32012-04-30 11:45:54 -07003181 final SearchManager searchManager =
3182 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
3183 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
3184
3185 ComponentName activityName = null;
3186 if (globalSearchActivity != null) {
3187 // Check if the global search activity handles voice search
3188 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
3189 intent.setPackage(globalSearchActivity.getPackageName());
3190 activityName = intent.resolveActivity(getPackageManager());
3191 }
3192
3193 if (activityName == null) {
3194 // Fallback: check if an activity other than the global search activity
3195 // resolves this
3196 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
3197 activityName = intent.resolveActivity(getPackageManager());
3198 }
Winson Chungc51db6a2011-10-05 11:44:49 -07003199 if (searchVisible && activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07003200 int coi = getCurrentOrientationIndexForGlobalIcons();
3201 sVoiceSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003202 R.id.voice_button, activityName, R.drawable.ic_home_voice_search_holo,
3203 TOOLBAR_VOICE_SEARCH_ICON_METADATA_NAME);
3204 if (sVoiceSearchIcon[coi] == null) {
3205 sVoiceSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
3206 R.id.voice_button, activityName, R.drawable.ic_home_voice_search_holo,
3207 TOOLBAR_ICON_METADATA_NAME);
3208 }
Winson Chungc51db6a2011-10-05 11:44:49 -07003209 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.VISIBLE);
Winson Chung1cad91e2011-05-25 17:41:01 -07003210 voiceButton.setVisibility(View.VISIBLE);
Jim Miller14091b12012-04-24 19:27:54 -07003211 if (voiceButtonProxy != null) {
3212 voiceButtonProxy.setVisibility(View.VISIBLE);
3213 }
Winson Chungbb185bd2011-11-21 12:31:42 -08003214 invalidatePressedFocusedStates(voiceButtonContainer, voiceButton);
Winson Chungc51db6a2011-10-05 11:44:49 -07003215 return true;
Winson Chung1cad91e2011-05-25 17:41:01 -07003216 } else {
Winson Chungc51db6a2011-10-05 11:44:49 -07003217 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.GONE);
Winson Chung1cad91e2011-05-25 17:41:01 -07003218 voiceButton.setVisibility(View.GONE);
Jim Miller14091b12012-04-24 19:27:54 -07003219 if (voiceButtonProxy != null) {
3220 voiceButtonProxy.setVisibility(View.GONE);
3221 }
Winson Chungc51db6a2011-10-05 11:44:49 -07003222 return false;
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003223 }
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003224 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07003225
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003226 private void updateVoiceSearchIcon(Drawable.ConstantState d) {
Winson Chungbb185bd2011-11-21 12:31:42 -08003227 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
3228 final View voiceButton = findViewById(R.id.voice_button);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003229 updateButtonWithDrawable(R.id.voice_button, d);
Winson Chungbb185bd2011-11-21 12:31:42 -08003230 invalidatePressedFocusedStates(voiceButtonContainer, voiceButton);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003231 }
3232
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003233 /**
Winson Chungeb66b142011-06-16 13:14:22 -07003234 * Sets the app market icon
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003235 */
3236 private void updateAppMarketIcon() {
Winson Chung785d2eb2011-04-14 16:08:02 -07003237 final View marketButton = findViewById(R.id.market_button);
3238 Intent intent = new Intent(Intent.ACTION_MAIN).addCategory(Intent.CATEGORY_APP_MARKET);
3239 // Find the app market activity by resolving an intent.
3240 // (If multiple app markets are installed, it will return the ResolverActivity.)
3241 ComponentName activityName = intent.resolveActivity(getPackageManager());
Winson Chung6a26e5b2011-05-26 14:36:06 -07003242 if (activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07003243 int coi = getCurrentOrientationIndexForGlobalIcons();
Winson Chung785d2eb2011-04-14 16:08:02 -07003244 mAppMarketIntent = intent;
Winson Chungdff8ebb2011-09-08 17:25:31 -07003245 sAppMarketIcon[coi] = updateTextButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003246 R.id.market_button, activityName, R.drawable.ic_launcher_market_holo,
3247 TOOLBAR_ICON_METADATA_NAME);
Winson Chung785d2eb2011-04-14 16:08:02 -07003248 marketButton.setVisibility(View.VISIBLE);
3249 } else {
3250 // We should hide and disable the view so that we don't try and restore the visibility
3251 // of it when we swap between drag & normal states from IconDropTarget subclasses.
3252 marketButton.setVisibility(View.GONE);
3253 marketButton.setEnabled(false);
Michael Jurka0423dcf2010-10-05 14:56:18 -07003254 }
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003255 }
3256
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003257 private void updateAppMarketIcon(Drawable.ConstantState d) {
Winson Chung1b884092012-06-08 17:13:02 -07003258 // Ensure that the new drawable we are creating has the approprate toolbar icon bounds
3259 Resources r = getResources();
3260 Drawable marketIconDrawable = d.newDrawable(r);
3261 int w = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_width);
3262 int h = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_height);
3263 marketIconDrawable.setBounds(0, 0, w, h);
3264
3265 updateTextButtonWithDrawable(R.id.market_button, marketIconDrawable);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003266 }
3267
Michael Jurkad7c28052012-04-27 15:43:36 -07003268 @Override
3269 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07003270 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07003271 final List<CharSequence> text = event.getText();
3272 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07003273 // Populate event with a fake title based on the current state.
3274 if (mState == State.APPS_CUSTOMIZE) {
3275 text.add(getString(R.string.all_apps_button_label));
3276 } else {
3277 text.add(getString(R.string.all_apps_home_button_label));
3278 }
Michael Jurkad7c28052012-04-27 15:43:36 -07003279 return result;
3280 }
3281
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003282 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003283 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003284 */
3285 private class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
3286 @Override
3287 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003288 closeSystemDialogs();
3289 }
3290 }
3291
3292 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08003293 * Receives notifications whenever the appwidgets are reset.
3294 */
3295 private class AppWidgetResetObserver extends ContentObserver {
3296 public AppWidgetResetObserver() {
3297 super(new Handler());
3298 }
3299
3300 @Override
3301 public void onChange(boolean selfChange) {
3302 onAppWidgetReset();
3303 }
3304 }
3305
3306 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07003307 * If the activity is currently paused, signal that we need to run the passed Runnable
3308 * in onResume.
3309 *
3310 * This needs to be called from incoming places where resources might have been loaded
3311 * while we are paused. That is becaues the Configuration might be wrong
3312 * when we're not running, and if it comes back to what it was when we
3313 * were paused, we are not restarted.
3314 *
3315 * Implementation of the method from LauncherModel.Callbacks.
3316 *
3317 * @return true if we are currently paused. The caller might be able to
3318 * skip some work in that case since we will come back again.
3319 */
Michael Jurkac402cd92013-05-20 15:49:32 +02003320 private boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003321 if (mPaused) {
3322 Log.i(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02003323 if (deletePreviousRunnables) {
3324 while (mOnResumeCallbacks.remove(run)) {
3325 }
3326 }
Michael Jurka7607c2f2013-04-03 14:33:19 -07003327 mOnResumeCallbacks.add(run);
3328 return true;
3329 } else {
3330 return false;
3331 }
3332 }
3333
Michael Jurkac402cd92013-05-20 15:49:32 +02003334 private boolean waitUntilResume(Runnable run) {
3335 return waitUntilResume(run, false);
3336 }
3337
Michael Jurka7607c2f2013-04-03 14:33:19 -07003338 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003339 * If the activity is currently paused, signal that we need to re-run the loader
3340 * in onResume.
3341 *
3342 * This needs to be called from incoming places where resources might have been loaded
3343 * while we are paused. That is becaues the Configuration might be wrong
3344 * when we're not running, and if it comes back to what it was when we
3345 * were paused, we are not restarted.
3346 *
3347 * Implementation of the method from LauncherModel.Callbacks.
3348 *
3349 * @return true if we are currently paused. The caller might be able to
3350 * skip some work in that case since we will come back again.
3351 */
3352 public boolean setLoadOnResume() {
3353 if (mPaused) {
3354 Log.i(TAG, "setLoadOnResume");
3355 mOnResumeNeedsLoad = true;
3356 return true;
3357 } else {
3358 return false;
3359 }
3360 }
3361
3362 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003363 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003364 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003365 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003366 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003367 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003368 } else {
3369 return SCREEN_COUNT / 2;
3370 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003371 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003372
Joe Onorato9c1289c2009-08-17 11:03:03 -04003373 /**
3374 * Refreshes the shortcuts shown on the workspace.
3375 *
3376 * Implementation of the method from LauncherModel.Callbacks.
3377 */
3378 public void startBinding() {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003379 // If we're starting binding all over again, clear any bind calls we'd postponed in
3380 // the past (see waitUntilResume) -- we don't need them since we're starting binding
3381 // from scratch again
3382 mOnResumeCallbacks.clear();
Adam Cohendf035382011-04-11 17:22:04 -07003383
Michael Jurka7607c2f2013-04-03 14:33:19 -07003384 final Workspace workspace = mWorkspace;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003385 mNewShortcutAnimatePage = -1;
3386 mNewShortcutAnimateViews.clear();
Adam Cohendf035382011-04-11 17:22:04 -07003387 mWorkspace.clearDropTargets();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003388 int count = workspace.getChildCount();
3389 for (int i = 0; i < count; i++) {
Joe Onorato3c2f7e12009-10-31 19:17:31 -04003390 // Use removeAllViewsInLayout() to avoid an extra requestLayout() and invalidate().
Winson Chung7a25a9e2011-01-30 13:33:56 -08003391 final CellLayout layoutParent = (CellLayout) workspace.getChildAt(i);
3392 layoutParent.removeAllViewsInLayout();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003393 }
Michael Jurka05bf6442011-11-30 20:28:53 -08003394 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003395 if (mHotseat != null) {
3396 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003397 }
3398 }
3399
3400 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003401 * Bind the items start-end from the list.
3402 *
3403 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003404 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07003405 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end) {
3406 if (waitUntilResume(new Runnable() {
3407 public void run() {
3408 bindItems(shortcuts, start, end);
3409 }
3410 })) {
3411 return;
3412 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003413
Winson Chungf0c6ae02012-03-21 16:10:31 -07003414 // Get the list of added shortcuts and intersect them with the set of shortcuts here
3415 Set<String> newApps = new HashSet<String>();
3416 newApps = mSharedPrefs.getStringSet(InstallShortcutReceiver.NEW_APPS_LIST_KEY, newApps);
3417
3418 Workspace workspace = mWorkspace;
3419 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003420 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003421
3422 // Short circuit if we are loading dock items for a configuration which has no dock
3423 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3424 mHotseat == null) {
3425 continue;
3426 }
3427
Joe Onorato9c1289c2009-08-17 11:03:03 -04003428 switch (item.itemType) {
3429 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3430 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07003431 ShortcutInfo info = (ShortcutInfo) item;
3432 String uri = info.intent.toUri(0).toString();
3433 View shortcut = createShortcut(info);
Winson Chung3d503fb2011-07-13 17:25:49 -07003434 workspace.addInScreen(shortcut, item.container, item.screen, item.cellX,
3435 item.cellY, 1, 1, false);
Winson Chungbfeac062012-06-06 15:56:08 -07003436 boolean animateIconUp = false;
3437 synchronized (newApps) {
3438 if (newApps.contains(uri)) {
3439 animateIconUp = newApps.remove(uri);
3440 }
3441 }
3442 if (animateIconUp) {
Winson Chungf0c6ae02012-03-21 16:10:31 -07003443 // Prepare the view to be animated up
3444 shortcut.setAlpha(0f);
3445 shortcut.setScaleX(0f);
3446 shortcut.setScaleY(0f);
3447 mNewShortcutAnimatePage = item.screen;
3448 if (!mNewShortcutAnimateViews.contains(shortcut)) {
3449 mNewShortcutAnimateViews.add(shortcut);
3450 }
3451 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003452 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003453 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Winson Chung3d503fb2011-07-13 17:25:49 -07003454 FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003455 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003456 (FolderInfo) item, mIconCache);
Winson Chung3d503fb2011-07-13 17:25:49 -07003457 workspace.addInScreen(newFolder, item.container, item.screen, item.cellX,
3458 item.cellY, 1, 1, false);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003459 break;
Joe Onorato9c1289c2009-08-17 11:03:03 -04003460 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003461 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003462
Joe Onorato9c1289c2009-08-17 11:03:03 -04003463 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003464 }
3465
Joe Onorato9c1289c2009-08-17 11:03:03 -04003466 /**
3467 * Implementation of the method from LauncherModel.Callbacks.
3468 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07003469 public void bindFolders(final HashMap<Long, FolderInfo> folders) {
3470 if (waitUntilResume(new Runnable() {
3471 public void run() {
3472 bindFolders(folders);
3473 }
3474 })) {
3475 return;
3476 }
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07003477 sFolders.clear();
3478 sFolders.putAll(folders);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003479 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003480
3481 /**
3482 * Add the views for a widget to the workspace.
3483 *
3484 * Implementation of the method from LauncherModel.Callbacks.
3485 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07003486 public void bindAppWidget(final LauncherAppWidgetInfo item) {
3487 if (waitUntilResume(new Runnable() {
3488 public void run() {
3489 bindAppWidget(item);
3490 }
3491 })) {
3492 return;
3493 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003494
Daniel Sandler843e8602010-06-07 14:59:01 -04003495 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
3496 if (DEBUG_WIDGETS) {
3497 Log.d(TAG, "bindAppWidget: " + item);
3498 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003499 final Workspace workspace = mWorkspace;
3500
3501 final int appWidgetId = item.appWidgetId;
3502 final AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
Daniel Sandler843e8602010-06-07 14:59:01 -04003503 if (DEBUG_WIDGETS) {
3504 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component " + appWidgetInfo.provider);
3505 }
3506
Joe Onorato9c1289c2009-08-17 11:03:03 -04003507 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
3508
Joe Onorato9c1289c2009-08-17 11:03:03 -04003509 item.hostView.setTag(item);
Winson Chung211bac32012-05-15 13:43:57 -07003510 item.onBindAppWidget(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003511
Winson Chung3d503fb2011-07-13 17:25:49 -07003512 workspace.addInScreen(item.hostView, item.container, item.screen, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04003513 item.cellY, item.spanX, item.spanY, false);
Adam Cohended9f8d2010-11-03 13:25:16 -07003514 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
3515
Joe Onorato9c1289c2009-08-17 11:03:03 -04003516 workspace.requestLayout();
3517
Daniel Sandler843e8602010-06-07 14:59:01 -04003518 if (DEBUG_WIDGETS) {
3519 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
3520 + (SystemClock.uptimeMillis()-start) + "ms");
3521 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003522 }
3523
Adam Cohen1462de32012-07-24 22:34:36 -07003524 public void onPageBoundSynchronously(int page) {
3525 mSynchronouslyBoundPages.add(page);
3526 }
3527
Joe Onorato9c1289c2009-08-17 11:03:03 -04003528 /**
3529 * Callback saying that there aren't any more items to bind.
3530 *
3531 * Implementation of the method from LauncherModel.Callbacks.
3532 */
3533 public void finishBindingItems() {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003534 if (waitUntilResume(new Runnable() {
3535 public void run() {
3536 finishBindingItems();
3537 }
3538 })) {
3539 return;
3540 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003541 if (mSavedState != null) {
3542 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07003543 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003544 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003545 mSavedState = null;
3546 }
3547
Adam Cohen1462de32012-07-24 22:34:36 -07003548 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003549
Patrick Dubroy002cbf42011-03-03 16:36:21 -08003550 // If we received the result of any pending adds while the loader was running (e.g. the
3551 // widget configuration forced an orientation change), process them now.
3552 for (int i = 0; i < sPendingAddList.size(); i++) {
3553 completeAdd(sPendingAddList.get(i));
3554 }
3555 sPendingAddList.clear();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003556
Winson Chungc51db6a2011-10-05 11:44:49 -07003557 // Update the market app icon as necessary (the other icons will be managed in response to
3558 // package changes in bindSearchablesChanged()
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003559 updateAppMarketIcon();
Michael Jurkac1f5d262011-09-30 19:32:27 -07003560
Winson Chungf0c6ae02012-03-21 16:10:31 -07003561 // Animate up any icons as necessary
3562 if (mVisible || mWorkspaceLoading) {
3563 Runnable newAppsRunnable = new Runnable() {
3564 @Override
3565 public void run() {
Winson Chunga2413752012-04-03 14:22:34 -07003566 runNewAppsAnimation(false);
Winson Chungf0c6ae02012-03-21 16:10:31 -07003567 }
3568 };
Winson Chunga2413752012-04-03 14:22:34 -07003569
3570 boolean willSnapPage = mNewShortcutAnimatePage > -1 &&
3571 mNewShortcutAnimatePage != mWorkspace.getCurrentPage();
3572 if (canRunNewAppsAnimation()) {
3573 // If the user has not interacted recently, then either snap to the new page to show
3574 // the new-apps animation or just run them if they are to appear on the current page
3575 if (willSnapPage) {
3576 mWorkspace.snapToPage(mNewShortcutAnimatePage, newAppsRunnable);
3577 } else {
3578 runNewAppsAnimation(false);
3579 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003580 } else {
Winson Chung318eee02012-04-12 10:59:27 -07003581 // If the user has interacted recently, then just add the items in place if they
Winson Chunga2413752012-04-03 14:22:34 -07003582 // are on another page (or just normally if they are added to the current page)
3583 runNewAppsAnimation(willSnapPage);
Winson Chungf0c6ae02012-03-21 16:10:31 -07003584 }
3585 }
3586
3587 mWorkspaceLoading = false;
3588 }
3589
Winson Chunga2413752012-04-03 14:22:34 -07003590 private boolean canRunNewAppsAnimation() {
3591 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
3592 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000);
3593 }
3594
Winson Chungf0c6ae02012-03-21 16:10:31 -07003595 /**
3596 * Runs a new animation that scales up icons that were added while Launcher was in the
3597 * background.
Winson Chunga2413752012-04-03 14:22:34 -07003598 *
3599 * @param immediate whether to run the animation or show the results immediately
Winson Chungf0c6ae02012-03-21 16:10:31 -07003600 */
Winson Chunga2413752012-04-03 14:22:34 -07003601 private void runNewAppsAnimation(boolean immediate) {
Michael Jurka2ecf9952012-06-18 12:52:28 -07003602 AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
Winson Chungf0c6ae02012-03-21 16:10:31 -07003603 Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chunga2413752012-04-03 14:22:34 -07003604
3605 // Order these new views spatially so that they animate in order
Winson Chungf0c6ae02012-03-21 16:10:31 -07003606 Collections.sort(mNewShortcutAnimateViews, new Comparator<View>() {
3607 @Override
3608 public int compare(View a, View b) {
3609 CellLayout.LayoutParams alp = (CellLayout.LayoutParams) a.getLayoutParams();
3610 CellLayout.LayoutParams blp = (CellLayout.LayoutParams) b.getLayoutParams();
3611 int cellCountX = LauncherModel.getCellCountX();
3612 return (alp.cellY * cellCountX + alp.cellX) - (blp.cellY * cellCountX + blp.cellX);
3613 }
3614 });
Winson Chunga2413752012-04-03 14:22:34 -07003615
3616 // Animate each of the views in place (or show them immediately if requested)
3617 if (immediate) {
3618 for (View v : mNewShortcutAnimateViews) {
3619 v.setAlpha(1f);
3620 v.setScaleX(1f);
3621 v.setScaleY(1f);
Winson Chungf0c6ae02012-03-21 16:10:31 -07003622 }
Winson Chunga2413752012-04-03 14:22:34 -07003623 } else {
3624 for (int i = 0; i < mNewShortcutAnimateViews.size(); ++i) {
3625 View v = mNewShortcutAnimateViews.get(i);
Michael Jurka2ecf9952012-06-18 12:52:28 -07003626 ValueAnimator bounceAnim = LauncherAnimUtils.ofPropertyValuesHolder(v,
Winson Chunga2413752012-04-03 14:22:34 -07003627 PropertyValuesHolder.ofFloat("alpha", 1f),
3628 PropertyValuesHolder.ofFloat("scaleX", 1f),
3629 PropertyValuesHolder.ofFloat("scaleY", 1f));
3630 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
3631 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
3632 bounceAnim.setInterpolator(new SmoothPagedView.OvershootInterpolator());
3633 bounceAnims.add(bounceAnim);
3634 }
3635 anim.playTogether(bounceAnims);
3636 anim.addListener(new AnimatorListenerAdapter() {
3637 @Override
3638 public void onAnimationEnd(Animator animation) {
Michael Jurkad6dd7c82012-10-19 17:15:16 +02003639 if (mWorkspace != null) {
3640 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
3641 }
Winson Chunga2413752012-04-03 14:22:34 -07003642 }
3643 });
3644 anim.start();
3645 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003646
3647 // Clean up
3648 mNewShortcutAnimatePage = -1;
3649 mNewShortcutAnimateViews.clear();
3650 new Thread("clearNewAppsThread") {
3651 public void run() {
3652 mSharedPrefs.edit()
3653 .putInt(InstallShortcutReceiver.NEW_APPS_PAGE_KEY, -1)
3654 .putStringSet(InstallShortcutReceiver.NEW_APPS_LIST_KEY, null)
3655 .commit();
3656 }
3657 }.start();
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003658 }
3659
Narayan Kamathcb1a4772011-06-28 13:46:59 +01003660 @Override
3661 public void bindSearchablesChanged() {
Winson Chungc51db6a2011-10-05 11:44:49 -07003662 boolean searchVisible = updateGlobalSearchIcon();
3663 boolean voiceVisible = updateVoiceSearchIcon(searchVisible);
Winson Chungadf0c182012-08-23 14:59:07 -07003664 if (mSearchDropTargetBar != null) {
3665 mSearchDropTargetBar.onSearchPackagesChanged(searchVisible, voiceVisible);
3666 }
Narayan Kamathcb1a4772011-06-28 13:46:59 +01003667 }
3668
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003669 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003670 * Add the icons for all apps.
3671 *
3672 * Implementation of the method from LauncherModel.Callbacks.
3673 */
Michael Jurkac57b7a82011-08-09 22:02:20 -07003674 public void bindAllApplications(final ArrayList<ApplicationInfo> apps) {
Winson Chungc93e5ae2012-07-23 20:48:26 -07003675 Runnable setAllAppsRunnable = new Runnable() {
3676 public void run() {
3677 if (mAppsCustomizeContent != null) {
3678 mAppsCustomizeContent.setApps(apps);
3679 }
3680 }
3681 };
3682
Michael Jurkac57b7a82011-08-09 22:02:20 -07003683 // Remove the progress bar entirely; we could also make it GONE
3684 // but better to remove it since we know it's not going to be used
3685 View progressBar = mAppsCustomizeTabHost.
3686 findViewById(R.id.apps_customize_progress_bar);
3687 if (progressBar != null) {
3688 ((ViewGroup)progressBar.getParent()).removeView(progressBar);
Winson Chungc93e5ae2012-07-23 20:48:26 -07003689
3690 // We just post the call to setApps so the user sees the progress bar
3691 // disappear-- otherwise, it just looks like the progress bar froze
3692 // which doesn't look great
3693 mAppsCustomizeTabHost.post(setAllAppsRunnable);
3694 } else {
3695 // If we did not initialize the spinner in onCreate, then we can directly set the
3696 // list of applications without waiting for any progress bars views to be hidden.
3697 setAllAppsRunnable.run();
Winson Chung785d2eb2011-04-14 16:08:02 -07003698 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003699 }
3700
3701 /**
3702 * A package was installed.
3703 *
3704 * Implementation of the method from LauncherModel.Callbacks.
3705 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07003706 public void bindAppsAdded(final ArrayList<ApplicationInfo> apps) {
3707 if (waitUntilResume(new Runnable() {
3708 public void run() {
3709 bindAppsAdded(apps);
3710 }
3711 })) {
3712 return;
3713 }
3714
Winson Chungf0ea4d32011-06-06 14:27:16 -07003715
Winson Chung785d2eb2011-04-14 16:08:02 -07003716 if (mAppsCustomizeContent != null) {
3717 mAppsCustomizeContent.addApps(apps);
3718 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003719 }
3720
3721 /**
3722 * A package was updated.
3723 *
3724 * Implementation of the method from LauncherModel.Callbacks.
3725 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07003726 public void bindAppsUpdated(final ArrayList<ApplicationInfo> apps) {
3727 if (waitUntilResume(new Runnable() {
3728 public void run() {
3729 bindAppsUpdated(apps);
3730 }
3731 })) {
3732 return;
3733 }
3734
Patrick Dubroyf5afda72011-02-28 12:04:18 -08003735 if (mWorkspace != null) {
3736 mWorkspace.updateShortcuts(apps);
3737 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003738
Winson Chung785d2eb2011-04-14 16:08:02 -07003739 if (mAppsCustomizeContent != null) {
3740 mAppsCustomizeContent.updateApps(apps);
3741 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003742 }
3743
3744 /**
Winson Chung83892cc2013-05-01 16:53:33 -07003745 * A package was uninstalled. We take both the super set of packageNames
3746 * in addition to specific applications to remove, the reason being that
3747 * this can be called when a package is updated as well. In that scenario,
3748 * we only remove specific components from the workspace, where as
3749 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04003750 *
3751 * Implementation of the method from LauncherModel.Callbacks.
3752 */
Winson Chung83892cc2013-05-01 16:53:33 -07003753 public void bindComponentsRemoved(final ArrayList<String> packageNames,
3754 final ArrayList<ApplicationInfo> appInfos,
3755 final boolean matchPackageNamesOnly) {
3756 if (waitUntilResume(new Runnable() {
3757 public void run() {
3758 bindComponentsRemoved(packageNames, appInfos, matchPackageNamesOnly);
3759 }
3760 })) {
3761 return;
3762 }
3763
3764 if (matchPackageNamesOnly) {
3765 mWorkspace.removeItemsByPackageName(packageNames);
3766 } else {
3767 mWorkspace.removeItemsByApplicationInfo(appInfos);
Joe Onorato36115782010-06-17 13:28:48 -04003768 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003769
Winson Chung785d2eb2011-04-14 16:08:02 -07003770 if (mAppsCustomizeContent != null) {
Winson Chung83892cc2013-05-01 16:53:33 -07003771 mAppsCustomizeContent.removeApps(appInfos);
Winson Chung785d2eb2011-04-14 16:08:02 -07003772 }
Winson Chunga1820962011-10-03 16:31:06 -07003773
3774 // Notify the drag controller
Winson Chung83892cc2013-05-01 16:53:33 -07003775 mDragController.onAppsRemoved(appInfos, this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003776 }
Joe Onoratobe386092009-11-17 17:32:16 -08003777
3778 /**
Winson Chung80baf5a2010-08-09 16:03:15 -07003779 * A number of packages were updated.
3780 */
Michael Jurkac402cd92013-05-20 15:49:32 +02003781
3782 private ArrayList<Object> mWidgetsAndShortcuts;
3783 private Runnable mBindPackagesUpdatedRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07003784 public void run() {
Michael Jurkac402cd92013-05-20 15:49:32 +02003785 bindPackagesUpdated(mWidgetsAndShortcuts);
3786 mWidgetsAndShortcuts = null;
Winson Chung83892cc2013-05-01 16:53:33 -07003787 }
Michael Jurkac402cd92013-05-20 15:49:32 +02003788 };
3789
3790 public void bindPackagesUpdated(final ArrayList<Object> widgetsAndShortcuts) {
3791 if (waitUntilResume(mBindPackagesUpdatedRunnable, true)) {
3792 mWidgetsAndShortcuts = widgetsAndShortcuts;
Winson Chung83892cc2013-05-01 16:53:33 -07003793 return;
3794 }
3795
Winson Chung785d2eb2011-04-14 16:08:02 -07003796 if (mAppsCustomizeContent != null) {
Michael Jurkac402cd92013-05-20 15:49:32 +02003797 mAppsCustomizeContent.onPackagesUpdated(widgetsAndShortcuts);
Winson Chung785d2eb2011-04-14 16:08:02 -07003798 }
Winson Chung80baf5a2010-08-09 16:03:15 -07003799 }
3800
Winson Chung400438b2011-01-16 17:53:48 -08003801 private int mapConfigurationOriActivityInfoOri(int configOri) {
3802 final Display d = getWindowManager().getDefaultDisplay();
3803 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
3804 switch (d.getRotation()) {
3805 case Surface.ROTATION_0:
3806 case Surface.ROTATION_180:
3807 // We are currently in the same basic orientation as the natural orientation
3808 naturalOri = configOri;
3809 break;
3810 case Surface.ROTATION_90:
3811 case Surface.ROTATION_270:
3812 // We are currently in the other basic orientation to the natural orientation
3813 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
3814 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
3815 break;
3816 }
3817
3818 int[] oriMap = {
3819 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
3820 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
3821 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
3822 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
3823 };
3824 // Since the map starts at portrait, we need to offset if this device's natural orientation
3825 // is landscape.
3826 int indexOffset = 0;
3827 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
3828 indexOffset = 1;
3829 }
3830 return oriMap[(d.getRotation() + indexOffset) % 4];
3831 }
Adam Cohen446e9402011-09-15 18:21:21 -07003832
Winson Chung4b919f82012-05-01 10:44:08 -07003833 public boolean isRotationEnabled() {
Michael Jurka0a457bf2012-11-19 14:05:05 -08003834 boolean enableRotation = sForceEnableRotation ||
Winson Chung4b919f82012-05-01 10:44:08 -07003835 getResources().getBoolean(R.bool.allow_rotation);
3836 return enableRotation;
Winson Chung400438b2011-01-16 17:53:48 -08003837 }
Winson Chung4b919f82012-05-01 10:44:08 -07003838 public void lockScreenOrientation() {
3839 if (isRotationEnabled()) {
3840 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
3841 .getConfiguration().orientation));
3842 }
3843 }
3844 public void unlockScreenOrientation(boolean immediate) {
3845 if (isRotationEnabled()) {
3846 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07003847 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07003848 } else {
3849 mHandler.postDelayed(new Runnable() {
3850 public void run() {
3851 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
3852 }
3853 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07003854 }
Winson Chung4b919f82012-05-01 10:44:08 -07003855 }
Winson Chung400438b2011-01-16 17:53:48 -08003856 }
3857
Winson Chung82f55532011-08-09 14:14:23 -07003858 /* Cling related */
Winson Chung7d7541e2011-09-16 20:14:36 -07003859 private boolean isClingsEnabled() {
Brett Chabot2a9e2282011-08-23 15:03:13 -07003860 // disable clings when running in a test harness
Winson Chung7d7541e2011-09-16 20:14:36 -07003861 if(ActivityManager.isRunningInTestHarness()) return false;
Brett Chabot2a9e2282011-08-23 15:03:13 -07003862
Michael Jurkae233a8b2013-03-19 13:49:20 +01003863 // Restricted secondary users (child mode) will potentially have very few apps
3864 // seeded when they start up for the first time. Clings won't work well with that
Daniel Sandler325dc232013-06-05 22:57:57 -04003865// boolean supportsLimitedUsers =
3866// android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.JELLY_BEAN_MR2;
3867// Account[] accounts = AccountManager.get(this).getAccounts();
3868// if (supportsLimitedUsers && accounts.length == 0) {
3869// UserManager um = (UserManager) getSystemService(Context.USER_SERVICE);
3870// Bundle restrictions = um.getUserRestrictions();
3871// if (restrictions.getBoolean(UserManager.DISALLOW_MODIFY_ACCOUNTS, false)) {
3872// return false;
3873// }
3874// }
Winson Chung7d7541e2011-09-16 20:14:36 -07003875 return true;
Winson Chung82f55532011-08-09 14:14:23 -07003876 }
Michael Jurka22143132012-10-04 17:42:38 +02003877
Winson Chung7d7541e2011-09-16 20:14:36 -07003878 private Cling initCling(int clingId, int[] positionData, boolean animate, int delay) {
Michael Jurka22143132012-10-04 17:42:38 +02003879 final Cling cling = (Cling) findViewById(clingId);
Winson Chung7d7541e2011-09-16 20:14:36 -07003880 if (cling != null) {
3881 cling.init(this, positionData);
3882 cling.setVisibility(View.VISIBLE);
3883 cling.setLayerType(View.LAYER_TYPE_HARDWARE, null);
3884 if (animate) {
3885 cling.buildLayer();
3886 cling.setAlpha(0f);
3887 cling.animate()
3888 .alpha(1f)
Winson Chung7a74ac92011-09-20 17:43:51 -07003889 .setInterpolator(new AccelerateInterpolator())
Winson Chung7d7541e2011-09-16 20:14:36 -07003890 .setDuration(SHOW_CLING_DURATION)
3891 .setStartDelay(delay)
3892 .start();
3893 } else {
3894 cling.setAlpha(1f);
3895 }
Michael Jurka22143132012-10-04 17:42:38 +02003896 cling.setFocusableInTouchMode(true);
3897 cling.post(new Runnable() {
3898 public void run() {
3899 cling.setFocusable(true);
3900 cling.requestFocus();
3901 }
3902 });
3903 mHideFromAccessibilityHelper.setImportantForAccessibilityToNo(
3904 mDragLayer, clingId == R.id.all_apps_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003905 }
3906 return cling;
3907 }
Michael Jurka22143132012-10-04 17:42:38 +02003908
Winson Chung7d7541e2011-09-16 20:14:36 -07003909 private void dismissCling(final Cling cling, final String flag, int duration) {
Winson Chung7819abd2012-11-29 14:29:38 -08003910 // To catch cases where siblings of top-level views are made invisible, just check whether
3911 // the cling is directly set to GONE before dismissing it.
3912 if (cling != null && cling.getVisibility() != View.GONE) {
Michael Jurka2ecf9952012-06-18 12:52:28 -07003913 ObjectAnimator anim = LauncherAnimUtils.ofFloat(cling, "alpha", 0f);
Winson Chung7d7541e2011-09-16 20:14:36 -07003914 anim.setDuration(duration);
Winson Chung82f55532011-08-09 14:14:23 -07003915 anim.addListener(new AnimatorListenerAdapter() {
3916 public void onAnimationEnd(Animator animation) {
3917 cling.setVisibility(View.GONE);
3918 cling.cleanup();
Winson Chung46353de2012-02-16 14:05:10 -08003919 // We should update the shared preferences on a background thread
3920 new Thread("dismissClingThread") {
3921 public void run() {
3922 SharedPreferences.Editor editor = mSharedPrefs.edit();
3923 editor.putBoolean(flag, true);
3924 editor.commit();
3925 }
3926 }.start();
Winson Chung82f55532011-08-09 14:14:23 -07003927 };
3928 });
3929 anim.start();
Michael Jurka22143132012-10-04 17:42:38 +02003930 mHideFromAccessibilityHelper.restoreImportantForAccessibility(mDragLayer);
Winson Chung82f55532011-08-09 14:14:23 -07003931 }
3932 }
Michael Jurka22143132012-10-04 17:42:38 +02003933
Winson Chung9d9d74f2011-09-19 11:49:12 -07003934 private void removeCling(int id) {
3935 final View cling = findViewById(id);
3936 if (cling != null) {
3937 final ViewGroup parent = (ViewGroup) cling.getParent();
3938 parent.post(new Runnable() {
3939 @Override
3940 public void run() {
3941 parent.removeView(cling);
3942 }
3943 });
Michael Jurka22143132012-10-04 17:42:38 +02003944 mHideFromAccessibilityHelper.restoreImportantForAccessibility(mDragLayer);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003945 }
3946 }
Michael Jurka974c3862012-05-22 22:00:31 -07003947
3948 private boolean skipCustomClingIfNoAccounts() {
3949 Cling cling = (Cling) findViewById(R.id.workspace_cling);
3950 boolean customCling = cling.getDrawIdentifier().equals("workspace_custom");
3951 if (customCling) {
3952 AccountManager am = AccountManager.get(this);
Daniel Sandler325dc232013-06-05 22:57:57 -04003953 if (am == null) return false;
Michael Jurka974c3862012-05-22 22:00:31 -07003954 Account[] accounts = am.getAccountsByType("com.google");
3955 return accounts.length == 0;
3956 }
3957 return false;
3958 }
3959
Winson Chung7d7541e2011-09-16 20:14:36 -07003960 public void showFirstRunWorkspaceCling() {
Winson Chung7d7541e2011-09-16 20:14:36 -07003961 // Enable the clings only if they have not been dismissed before
Winson Chung46353de2012-02-16 14:05:10 -08003962 if (isClingsEnabled() &&
Michael Jurka974c3862012-05-22 22:00:31 -07003963 !mSharedPrefs.getBoolean(Cling.WORKSPACE_CLING_DISMISSED_KEY, false) &&
3964 !skipCustomClingIfNoAccounts() ) {
Michael Jurka45355c42012-10-08 13:21:35 +02003965 // If we're not using the default workspace layout, replace workspace cling
3966 // with a custom workspace cling (usually specified in an overlay)
3967 // For now, only do this on tablets
3968 if (mSharedPrefs.getInt(LauncherProvider.DEFAULT_WORKSPACE_RESOURCE_ID, 0) != 0 &&
Michael Jurkaa1131212012-10-09 14:46:26 +02003969 getResources().getBoolean(R.bool.config_useCustomClings)) {
Michael Jurka45355c42012-10-08 13:21:35 +02003970 // Use a custom cling
3971 View cling = findViewById(R.id.workspace_cling);
3972 ViewGroup clingParent = (ViewGroup) cling.getParent();
3973 int clingIndex = clingParent.indexOfChild(cling);
3974 clingParent.removeViewAt(clingIndex);
3975 View customCling = mInflater.inflate(R.layout.custom_workspace_cling, clingParent, false);
3976 clingParent.addView(customCling, clingIndex);
3977 customCling.setId(R.id.workspace_cling);
3978 }
Winson Chung7d7541e2011-09-16 20:14:36 -07003979 initCling(R.id.workspace_cling, null, false, 0);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003980 } else {
3981 removeCling(R.id.workspace_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003982 }
3983 }
3984 public void showFirstRunAllAppsCling(int[] position) {
Winson Chung7d7541e2011-09-16 20:14:36 -07003985 // Enable the clings only if they have not been dismissed before
Winson Chung46353de2012-02-16 14:05:10 -08003986 if (isClingsEnabled() &&
3987 !mSharedPrefs.getBoolean(Cling.ALLAPPS_CLING_DISMISSED_KEY, false)) {
Winson Chung7d7541e2011-09-16 20:14:36 -07003988 initCling(R.id.all_apps_cling, position, true, 0);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003989 } else {
3990 removeCling(R.id.all_apps_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003991 }
3992 }
3993 public Cling showFirstRunFoldersCling() {
Winson Chung7d7541e2011-09-16 20:14:36 -07003994 // Enable the clings only if they have not been dismissed before
Winson Chung46353de2012-02-16 14:05:10 -08003995 if (isClingsEnabled() &&
3996 !mSharedPrefs.getBoolean(Cling.FOLDER_CLING_DISMISSED_KEY, false)) {
3997 return initCling(R.id.folder_cling, null, true, 0);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003998 } else {
3999 removeCling(R.id.folder_cling);
Winson Chung46353de2012-02-16 14:05:10 -08004000 return null;
Winson Chung7d7541e2011-09-16 20:14:36 -07004001 }
Winson Chung7d7541e2011-09-16 20:14:36 -07004002 }
4003 public boolean isFolderClingVisible() {
4004 Cling cling = (Cling) findViewById(R.id.folder_cling);
Winson Chung9d9d74f2011-09-19 11:49:12 -07004005 if (cling != null) {
4006 return cling.getVisibility() == View.VISIBLE;
4007 }
4008 return false;
Winson Chung7d7541e2011-09-16 20:14:36 -07004009 }
Winson Chung82f55532011-08-09 14:14:23 -07004010 public void dismissWorkspaceCling(View v) {
4011 Cling cling = (Cling) findViewById(R.id.workspace_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07004012 dismissCling(cling, Cling.WORKSPACE_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
Winson Chung82f55532011-08-09 14:14:23 -07004013 }
4014 public void dismissAllAppsCling(View v) {
4015 Cling cling = (Cling) findViewById(R.id.all_apps_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07004016 dismissCling(cling, Cling.ALLAPPS_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
4017 }
4018 public void dismissFolderCling(View v) {
4019 Cling cling = (Cling) findViewById(R.id.folder_cling);
4020 dismissCling(cling, Cling.FOLDER_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
Winson Chung82f55532011-08-09 14:14:23 -07004021 }
4022
Winson Chung80baf5a2010-08-09 16:03:15 -07004023 /**
Joe Onoratobe386092009-11-17 17:32:16 -08004024 * Prints out out state for debugging.
4025 */
4026 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04004027 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08004028 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08004029 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
4030 Log.d(TAG, "mRestoring=" + mRestoring);
4031 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
4032 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004033 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08004034 mModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07004035
Winson Chung785d2eb2011-04-14 16:08:02 -07004036 if (mAppsCustomizeContent != null) {
4037 mAppsCustomizeContent.dumpState();
4038 }
Daniel Sandler325dc232013-06-05 22:57:57 -04004039 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08004040 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004041
4042 @Override
4043 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
4044 super.dump(prefix, fd, writer, args);
4045 writer.println(" ");
4046 writer.println("Debug logs: ");
4047 for (int i = 0; i < sDumpLogs.size(); i++) {
4048 writer.println(" " + sDumpLogs.get(i));
4049 }
4050 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004051
4052 public static void dumpDebugLogsToConsole() {
4053 Log.d(TAG, "");
4054 Log.d(TAG, "*********************");
4055 Log.d(TAG, "Launcher debug logs: ");
4056 for (int i = 0; i < sDumpLogs.size(); i++) {
4057 Log.d(TAG, " " + sDumpLogs.get(i));
4058 }
4059 Log.d(TAG, "*********************");
4060 Log.d(TAG, "");
4061 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004062}
Michael Jurka2763be32011-02-24 11:19:57 -08004063
Michael Jurkaabded662011-03-04 12:06:57 -08004064interface LauncherTransitionable {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08004065 View getContent();
Michael Jurkaa35e35a2012-04-26 15:04:28 -07004066 void onLauncherTransitionPrepare(Launcher l, boolean animated, boolean toWorkspace);
Michael Jurkabed61d22012-02-14 22:51:29 -08004067 void onLauncherTransitionStart(Launcher l, boolean animated, boolean toWorkspace);
Winson Chung70442722012-02-10 15:43:22 -08004068 void onLauncherTransitionStep(Launcher l, float t);
Michael Jurkabed61d22012-02-14 22:51:29 -08004069 void onLauncherTransitionEnd(Launcher l, boolean animated, boolean toWorkspace);
Michael Jurka2763be32011-02-24 11:19:57 -08004070}