blob: ca6db858da048bf7381dcd09bf21c68e59cda669 [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
Joe Onoratoa5902522009-07-30 13:37:37 -070018package com.android.launcher2;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080019
Gilles Debunnedd6c9922010-10-25 11:23:41 -070020import android.animation.Animator;
Michael Jurka8edd75c2010-12-17 20:15:06 -080021import android.animation.AnimatorListenerAdapter;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070022import android.animation.AnimatorSet;
Adam Cohen2801caf2011-05-13 20:57:39 -070023import android.animation.ObjectAnimator;
24import android.animation.PropertyValuesHolder;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070025import android.animation.ValueAnimator;
Winson Chung70442722012-02-10 15:43:22 -080026import android.animation.ValueAnimator.AnimatorUpdateListener;
Michael Jurka946ad472010-07-09 18:05:18 -070027import android.app.Activity;
Brett Chabot2a9e2282011-08-23 15:03:13 -070028import android.app.ActivityManager;
Winson Chungc7450e32012-04-17 17:34:08 -070029import android.app.ActivityOptions;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080030import android.app.SearchManager;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080031import android.appwidget.AppWidgetHostView;
Michael Jurkaaf442092010-06-10 17:01:57 -070032import android.appwidget.AppWidgetManager;
33import android.appwidget.AppWidgetProviderInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080034import android.content.ActivityNotFoundException;
Joe Onorato2ca0ae72009-11-10 13:14:13 -080035import android.content.BroadcastReceiver;
Winson Chung68846fd2010-10-29 11:00:27 -070036import android.content.ClipData;
37import android.content.ClipDescription;
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;
Michael Jurkaaf442092010-06-10 17:01:57 -070051import android.graphics.Rect;
Michael Jurkaaf442092010-06-10 17:01:57 -070052import android.graphics.drawable.Drawable;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040053import android.net.Uri;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -070054import android.os.AsyncTask;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080055import android.os.Bundle;
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +020056import android.os.Environment;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080057import android.os.Handler;
Adam Cohended9f8d2010-11-03 13:25:16 -070058import android.os.Message;
Winson Chunga2413752012-04-03 14:22:34 -070059import android.os.StrictMode;
Daniel Sandler843e8602010-06-07 14:59:01 -040060import android.os.SystemClock;
Joe Onoratobe386092009-11-17 17:32:16 -080061import android.os.SystemProperties;
Patrick Dubroy4ed62782010-08-17 15:11:18 -070062import android.provider.Settings;
Amith Yamasani6d7fe502010-11-16 09:05:07 -080063import android.speech.RecognizerIntent;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080064import android.text.Selection;
65import android.text.SpannableStringBuilder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080066import android.text.method.TextKeyListener;
Joe Onorato7c312c12009-08-13 21:36:53 -070067import android.util.Log;
Winson Chung400438b2011-01-16 17:53:48 -080068import android.view.Display;
Joe Onorato0d44e942009-11-16 18:20:51 -080069import android.view.HapticFeedbackConstants;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080070import android.view.KeyEvent;
71import android.view.LayoutInflater;
72import android.view.Menu;
73import android.view.MenuItem;
Michael Jurka0e260592010-06-30 17:07:39 -070074import android.view.MotionEvent;
Winson Chung400438b2011-01-16 17:53:48 -080075import android.view.Surface;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080076import android.view.View;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080077import android.view.View.OnLongClickListener;
Winson Chung82f55532011-08-09 14:14:23 -070078import android.view.ViewGroup;
Michael Jurkab737ee62011-11-15 15:57:22 -080079import android.view.ViewTreeObserver;
Michael Jurka2a4b1a82011-12-07 14:00:02 -080080import android.view.ViewTreeObserver.OnGlobalLayoutListener;
Dianne Hackbornbb003a52011-08-30 14:40:07 -070081import android.view.WindowManager;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -080082import android.view.accessibility.AccessibilityEvent;
Adam Cohencff6af82011-09-13 14:51:53 -070083import android.view.animation.AccelerateDecelerateInterpolator;
Winson Chung7a74ac92011-09-20 17:43:51 -070084import android.view.animation.AccelerateInterpolator;
Adam Cohenf16e5712011-01-13 13:31:45 -080085import android.view.animation.DecelerateInterpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080086import android.view.inputmethod.InputMethodManager;
Adam Cohended9f8d2010-11-03 13:25:16 -070087import android.widget.Advanceable;
Michael Jurkaaf442092010-06-10 17:01:57 -070088import android.widget.ImageView;
Winson Chung68846fd2010-10-29 11:00:27 -070089import android.widget.TextView;
90import android.widget.Toast;
Patrick Dubroy4ed62782010-08-17 15:11:18 -070091
Adam Cohendf2cc412011-04-27 16:56:57 -070092import com.android.common.Search;
93import com.android.launcher.R;
Adam Cohen558baaf2011-08-15 15:22:57 -070094import com.android.launcher2.DropTarget.DragObject;
Romain Guyedcce092010-03-04 13:03:17 -080095
Adam Cohenc0dcf592011-06-01 15:30:43 -070096import java.io.DataInputStream;
97import java.io.DataOutputStream;
Adam Cohen16d7ffc2011-10-05 17:49:14 -070098import java.io.FileDescriptor;
Adam Cohenc0dcf592011-06-01 15:30:43 -070099import java.io.FileNotFoundException;
100import java.io.IOException;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700101import java.io.PrintWriter;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700102import java.util.ArrayList;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700103import java.util.Collection;
104import java.util.Collections;
105import java.util.Comparator;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700106import java.util.HashMap;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700107import java.util.HashSet;
Michael Jurkad7c28052012-04-27 15:43:36 -0700108import java.util.List;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700109import java.util.Set;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700110
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800111/**
112 * Default launcher application.
113 */
Michael Jurka946ad472010-07-09 18:05:18 -0700114public final class Launcher extends Activity
Michael Jurka0e260592010-06-30 17:07:39 -0700115 implements View.OnClickListener, OnLongClickListener, LauncherModel.Callbacks,
116 AllAppsView.Watcher, View.OnTouchListener {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800117 static final String TAG = "Launcher";
Joe Onoratocc67f472010-06-08 10:54:30 -0700118 static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800119
Joe Onorato9c1289c2009-08-17 11:03:03 -0400120 static final boolean PROFILE_STARTUP = false;
Daniel Sandler843e8602010-06-07 14:59:01 -0400121 static final boolean DEBUG_WIDGETS = false;
Winson Chunga2413752012-04-03 14:22:34 -0700122 static final boolean DEBUG_STRICT_MODE = false;
Romain Guy6fefcf12009-06-11 13:07:43 -0700123
Winson Chung70d72102011-08-12 11:24:35 -0700124 private static final int MENU_GROUP_WALLPAPER = 1;
125 private static final int MENU_WALLPAPER_SETTINGS = Menu.FIRST + 1;
126 private static final int MENU_MANAGE_APPS = MENU_WALLPAPER_SETTINGS + 1;
Winson Chung236d4312011-08-22 15:12:27 -0700127 private static final int MENU_SYSTEM_SETTINGS = MENU_MANAGE_APPS + 1;
128 private static final int MENU_HELP = MENU_SYSTEM_SETTINGS + 1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800129
130 private static final int REQUEST_CREATE_SHORTCUT = 1;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700131 private static final int REQUEST_CREATE_APPWIDGET = 5;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800132 private static final int REQUEST_PICK_APPLICATION = 6;
133 private static final int REQUEST_PICK_SHORTCUT = 7;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700134 private static final int REQUEST_PICK_APPWIDGET = 9;
Mike Clerona0618e42009-10-22 13:55:21 -0700135 private static final int REQUEST_PICK_WALLPAPER = 10;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800136
Michael Jurka8b805b12012-04-18 14:23:14 -0700137 private static final int REQUEST_BIND_APPWIDGET = 11;
138
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800139 static final String EXTRA_SHORTCUT_DUPLICATE = "duplicate";
140
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800141 static final int SCREEN_COUNT = 5;
142 static final int DEFAULT_SCREEN = 2;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800143
Romain Guy98d01652009-06-30 16:21:04 -0700144 private static final String PREFERENCES = "launcher.preferences";
Adam Cohen23a4d302011-12-01 17:26:44 -0800145 static final String FORCE_ENABLE_ROTATION_PROPERTY = "launcher.force_enable_rotation";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800146
147 // Type: int
148 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
Michael Jurka883f55b2010-10-21 15:47:14 -0700149 // Type: int
150 private static final String RUNTIME_STATE = "launcher.state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800151 // Type: int
Winson Chung3d503fb2011-07-13 17:25:49 -0700152 private static final String RUNTIME_STATE_PENDING_ADD_CONTAINER = "launcher.add_container";
153 // Type: int
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800154 private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
155 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700156 private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cell_x";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800157 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700158 private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cell_y";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800159 // Type: boolean
160 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME = "launcher.rename_folder";
161 // Type: long
162 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME_ID = "launcher.rename_folder_id";
163
Patrick Dubroyceae05d2010-08-30 10:40:53 -0700164 private static final String TOOLBAR_ICON_METADATA_NAME = "com.android.launcher.toolbar_icon";
Michael Jurkaae65ee32012-04-30 11:45:54 -0700165 private static final String TOOLBAR_SEARCH_ICON_METADATA_NAME =
166 "com.android.launcher.toolbar_search_icon";
167 private static final String TOOLBAR_VOICE_SEARCH_ICON_METADATA_NAME =
168 "com.android.launcher.toolbar_voice_search_icon";
Patrick Dubroyceae05d2010-08-30 10:40:53 -0700169
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700170 /** The different states that Launcher can be in. */
Winson Chungf0ea4d32011-06-06 14:27:16 -0700171 private enum State { WORKSPACE, APPS_CUSTOMIZE, APPS_CUSTOMIZE_SPRING_LOADED };
Michael Jurkac0e8fca2010-10-06 16:41:29 -0700172 private State mState = State.WORKSPACE;
173 private AnimatorSet mStateAnimation;
Michael Jurkab737ee62011-11-15 15:57:22 -0800174 private AnimatorSet mDividerAnimator;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700175
Joe Onorato9c1289c2009-08-17 11:03:03 -0400176 static final int APPWIDGET_HOST_ID = 1024;
Winson Chung557d6ed2011-07-08 15:34:52 -0700177 private static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
178 private static final int EXIT_SPRINGLOADED_MODE_LONG_TIMEOUT = 600;
Winson Chung7a74ac92011-09-20 17:43:51 -0700179 private static final int SHOW_CLING_DURATION = 550;
Winson Chung7d7541e2011-09-16 20:14:36 -0700180 private static final int DISMISS_CLING_DURATION = 250;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800181
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800182 private static final Object sLock = new Object();
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800183 private static int sScreen = DEFAULT_SCREEN;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800184
Winson Chunga2413752012-04-03 14:22:34 -0700185 // How long to wait before the new-shortcut animation automatically pans the workspace
186 private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 10;
187
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800188 private final BroadcastReceiver mCloseSystemDialogsReceiver
189 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800190 private final ContentObserver mWidgetObserver = new AppWidgetResetObserver();
191
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800192 private LayoutInflater mInflater;
193
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800194 private Workspace mWorkspace;
Michael Jurkab737ee62011-11-15 15:57:22 -0800195 private View mQsbDivider;
196 private View mDockDivider;
197 private DragLayer mDragLayer;
198 private DragController mDragController;
Romain Guycbb89e42009-06-08 15:52:54 -0700199
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700200 private AppWidgetManager mAppWidgetManager;
201 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700202
Michael Jurkac9d95c52011-08-29 14:03:34 -0700203 private ItemInfo mPendingAddInfo = new ItemInfo();
Michael Jurka0280c3b2010-09-17 15:00:07 -0700204 private int[] mTmpAddItemCellCoordinates = new int[2];
205
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800206 private FolderInfo mFolderInfo;
207
Winson Chung3d503fb2011-07-13 17:25:49 -0700208 private Hotseat mHotseat;
Michael Jurka838a4ca2011-02-07 13:33:06 -0800209 private View mAllAppsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700210
Winson Chungc51db6a2011-10-05 11:44:49 -0700211 private SearchDropTargetBar mSearchDropTargetBar;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700212 private AppsCustomizeTabHost mAppsCustomizeTabHost;
213 private AppsCustomizePagedView mAppsCustomizeContent;
214 private boolean mAutoAdvanceRunning = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800215
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800216 private Bundle mSavedState;
217
218 private SpannableStringBuilder mDefaultKeySsb = null;
219
Joe Onorato9c1289c2009-08-17 11:03:03 -0400220 private boolean mWorkspaceLoading = true;
221
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800222 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800223 private boolean mRestoring;
224 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700225 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800226
227 private Bundle mSavedInstanceState;
228
Joe Onorato9c1289c2009-08-17 11:03:03 -0400229 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800230 private IconCache mIconCache;
Adam Cohend113e0c2010-11-11 10:48:05 -0800231 private boolean mUserPresent = true;
232 private boolean mVisible = false;
233 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400234
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700235 private static LocaleConfiguration sLocaleConfiguration = null;
236
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700237 private static HashMap<Long, FolderInfo> sFolders = new HashMap<Long, FolderInfo>();
Romain Guycbb89e42009-06-08 15:52:54 -0700238
Patrick Dubroyceae05d2010-08-30 10:40:53 -0700239 private Intent mAppMarketIntent = null;
240
Adam Cohended9f8d2010-11-03 13:25:16 -0700241 // Related to the auto-advancing of widgets
242 private final int ADVANCE_MSG = 1;
243 private final int mAdvanceInterval = 20000;
244 private final int mAdvanceStagger = 250;
245 private long mAutoAdvanceSentTime;
246 private long mAutoAdvanceTimeLeft = -1;
247 private HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
248 new HashMap<View, AppWidgetProviderInfo>();
249
Winson Chung400438b2011-01-16 17:53:48 -0800250 // Determines how long to wait after a rotation before restoring the screen orientation to
251 // match the sensor state.
252 private final int mRestoreScreenOrientationDelay = 500;
253
Michael Jurka4ef207b2010-11-29 17:05:45 -0800254 // External icons saved in case of resource changes, orientation, etc.
Winson Chungdff8ebb2011-09-08 17:25:31 -0700255 private static Drawable.ConstantState[] sGlobalSearchIcon = new Drawable.ConstantState[2];
256 private static Drawable.ConstantState[] sVoiceSearchIcon = new Drawable.ConstantState[2];
257 private static Drawable.ConstantState[] sAppMarketIcon = new Drawable.ConstantState[2];
Michael Jurka4ef207b2010-11-29 17:05:45 -0800258
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700259 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
Michael Jurka8b805b12012-04-18 14:23:14 -0700260 PendingAddWidgetInfo mWidgetBeingBoundOrConfigured = null;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700261
Winson Chung46353de2012-02-16 14:05:10 -0800262 // We only want to get the SharedPreferences once since it does an FS stat each time we get
263 // it from the context.
264 private SharedPreferences mSharedPrefs;
265
Winson Chungf0c6ae02012-03-21 16:10:31 -0700266 // Holds the page that we need to animate to, and the icon views that we need to animate up
267 // when we scroll to that page on resume.
268 private int mNewShortcutAnimatePage = -1;
269 private ArrayList<View> mNewShortcutAnimateViews = new ArrayList<View>();
Adam Cohen2801caf2011-05-13 20:57:39 -0700270
Michael Jurkaddd62e92011-02-16 17:49:14 -0800271 private BubbleTextView mWaitingForResume;
272
Michael Jurkac1f5d262011-09-30 19:32:27 -0700273 private Runnable mBuildLayersRunnable = new Runnable() {
274 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700275 if (mWorkspace != null) {
276 mWorkspace.buildPageHardwareLayers();
277 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700278 }
279 };
280
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800281 private static ArrayList<PendingAddArguments> sPendingAddList
282 = new ArrayList<PendingAddArguments>();
283
284 private static class PendingAddArguments {
285 int requestCode;
286 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700287 long container;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800288 int screen;
289 int cellX;
290 int cellY;
291 }
292
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800293 @Override
294 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700295 if (DEBUG_STRICT_MODE) {
296 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
297 .detectDiskReads()
298 .detectDiskWrites()
299 .detectNetwork() // or .detectAll() for all detectable problems
300 .penaltyLog()
301 .build());
302 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
303 .detectLeakedSqlLiteObjects()
304 .detectLeakedClosableObjects()
305 .penaltyLog()
306 .penaltyDeath()
307 .build());
308 }
309
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800310 super.onCreate(savedInstanceState);
Joe Onorato0589f0f2010-02-08 13:44:00 -0800311 LauncherApplication app = ((LauncherApplication)getApplication());
Winson Chungf0c6ae02012-03-21 16:10:31 -0700312 mSharedPrefs = getSharedPreferences(LauncherApplication.getSharedPreferencesKey(),
313 Context.MODE_PRIVATE);
Joe Onorato0589f0f2010-02-08 13:44:00 -0800314 mModel = app.setLauncher(this);
315 mIconCache = app.getIconCache();
Joe Onorato41a12d22009-10-31 18:30:00 -0400316 mDragController = new DragController(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800317 mInflater = getLayoutInflater();
Romain Guycbb89e42009-06-08 15:52:54 -0700318
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700319 mAppWidgetManager = AppWidgetManager.getInstance(this);
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700320 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
321 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700322
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800323 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200324 android.os.Debug.startMethodTracing(
325 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800326 }
327
328 checkForLocaleChange();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800329 setContentView(R.layout.launcher);
330 setupViews();
Winson Chung7d7541e2011-09-16 20:14:36 -0700331 showFirstRunWorkspaceCling();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800332
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800333 registerContentObservers();
334
Joe Onorato7c312c12009-08-13 21:36:53 -0700335 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700336
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800337 mSavedState = savedInstanceState;
338 restoreState(mSavedState);
339
Winson Chunga12a2502010-12-20 14:41:35 -0800340 // Update customization drawer _after_ restoring the states
Winson Chung785d2eb2011-04-14 16:08:02 -0700341 if (mAppsCustomizeContent != null) {
342 mAppsCustomizeContent.onPackagesUpdated();
343 }
Winson Chunga12a2502010-12-20 14:41:35 -0800344
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800345 if (PROFILE_STARTUP) {
346 android.os.Debug.stopMethodTracing();
347 }
348
349 if (!mRestoring) {
Winson Chungf0c6ae02012-03-21 16:10:31 -0700350 mModel.startLoader(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800351 }
352
Michael Jurkac57b7a82011-08-09 22:02:20 -0700353 if (!mModel.isAllAppsLoaded()) {
354 ViewGroup appsCustomizeContentParent = (ViewGroup) mAppsCustomizeContent.getParent();
355 mInflater.inflate(R.layout.apps_customize_progressbar, appsCustomizeContentParent);
356 }
357
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800358 // For handling default keys
359 mDefaultKeySsb = new SpannableStringBuilder();
360 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800361
362 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
363 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800364
Winson Chungc51db6a2011-10-05 11:44:49 -0700365 boolean searchVisible = false;
366 boolean voiceVisible = false;
Michael Jurka4ef207b2010-11-29 17:05:45 -0800367 // If we have a saved version of these external icons, we load them up immediately
Winson Chungdff8ebb2011-09-08 17:25:31 -0700368 int coi = getCurrentOrientationIndexForGlobalIcons();
369 if (sGlobalSearchIcon[coi] == null || sVoiceSearchIcon[coi] == null ||
370 sAppMarketIcon[coi] == null) {
Winson Chungc51db6a2011-10-05 11:44:49 -0700371 updateAppMarketIcon();
372 searchVisible = updateGlobalSearchIcon();
373 voiceVisible = updateVoiceSearchIcon(searchVisible);
Winson Chungf0ea4d32011-06-06 14:27:16 -0700374 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700375 if (sGlobalSearchIcon[coi] != null) {
376 updateGlobalSearchIcon(sGlobalSearchIcon[coi]);
Winson Chungc51db6a2011-10-05 11:44:49 -0700377 searchVisible = true;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700378 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700379 if (sVoiceSearchIcon[coi] != null) {
380 updateVoiceSearchIcon(sVoiceSearchIcon[coi]);
Winson Chungc51db6a2011-10-05 11:44:49 -0700381 voiceVisible = true;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700382 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700383 if (sAppMarketIcon[coi] != null) {
384 updateAppMarketIcon(sAppMarketIcon[coi]);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800385 }
Winson Chungc51db6a2011-10-05 11:44:49 -0700386 mSearchDropTargetBar.onSearchPackagesChanged(searchVisible, voiceVisible);
Adam Cohen446e9402011-09-15 18:21:21 -0700387
Jim Miller14091b12012-04-24 19:27:54 -0700388 final String forceEnableRotation =
Adam Cohen23a4d302011-12-01 17:26:44 -0800389 SystemProperties.get(FORCE_ENABLE_ROTATION_PROPERTY, "false");
390
Adam Cohencb3f98e2012-04-24 14:24:35 -0700391 boolean enableRotation = getResources().getBoolean(R.bool.allow_rotation);
392
Adam Cohen446e9402011-09-15 18:21:21 -0700393 // On large interfaces, we want the screen to auto-rotate based on the current orientation
Adam Cohencb3f98e2012-04-24 14:24:35 -0700394 if (enableRotation || "true".equalsIgnoreCase(forceEnableRotation)) {
Adam Cohen446e9402011-09-15 18:21:21 -0700395 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
396 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800397 }
Romain Guycbb89e42009-06-08 15:52:54 -0700398
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800399 private void checkForLocaleChange() {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700400 if (sLocaleConfiguration == null) {
401 new AsyncTask<Void, Void, LocaleConfiguration>() {
402 @Override
403 protected LocaleConfiguration doInBackground(Void... unused) {
404 LocaleConfiguration localeConfiguration = new LocaleConfiguration();
405 readConfiguration(Launcher.this, localeConfiguration);
406 return localeConfiguration;
407 }
408
409 @Override
410 protected void onPostExecute(LocaleConfiguration result) {
411 sLocaleConfiguration = result;
412 checkForLocaleChange(); // recursive, but now with a locale configuration
413 }
414 }.execute();
415 return;
416 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700417
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800418 final Configuration configuration = getResources().getConfiguration();
419
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700420 final String previousLocale = sLocaleConfiguration.locale;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800421 final String locale = configuration.locale.toString();
422
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700423 final int previousMcc = sLocaleConfiguration.mcc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800424 final int mcc = configuration.mcc;
425
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700426 final int previousMnc = sLocaleConfiguration.mnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800427 final int mnc = configuration.mnc;
428
Romain Guy84f296c2009-11-04 15:00:44 -0800429 boolean localeChanged = !locale.equals(previousLocale) || mcc != previousMcc || mnc != previousMnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800430
Romain Guy84f296c2009-11-04 15:00:44 -0800431 if (localeChanged) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700432 sLocaleConfiguration.locale = locale;
433 sLocaleConfiguration.mcc = mcc;
434 sLocaleConfiguration.mnc = mnc;
Romain Guy98d01652009-06-30 16:21:04 -0700435
Joe Onorato0589f0f2010-02-08 13:44:00 -0800436 mIconCache.flush();
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700437
438 final LocaleConfiguration localeConfiguration = sLocaleConfiguration;
439 new Thread("WriteLocaleConfiguration") {
Gilles Debunnedd6c9922010-10-25 11:23:41 -0700440 @Override
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700441 public void run() {
442 writeConfiguration(Launcher.this, localeConfiguration);
443 }
444 }.start();
Romain Guy98d01652009-06-30 16:21:04 -0700445 }
446 }
447
448 private static class LocaleConfiguration {
449 public String locale;
450 public int mcc = -1;
451 public int mnc = -1;
452 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700453
Romain Guy98d01652009-06-30 16:21:04 -0700454 private static void readConfiguration(Context context, LocaleConfiguration configuration) {
455 DataInputStream in = null;
456 try {
457 in = new DataInputStream(context.openFileInput(PREFERENCES));
458 configuration.locale = in.readUTF();
459 configuration.mcc = in.readInt();
460 configuration.mnc = in.readInt();
461 } catch (FileNotFoundException e) {
462 // Ignore
463 } catch (IOException e) {
464 // Ignore
465 } finally {
466 if (in != null) {
467 try {
468 in.close();
469 } catch (IOException e) {
470 // Ignore
471 }
472 }
473 }
474 }
475
476 private static void writeConfiguration(Context context, LocaleConfiguration configuration) {
477 DataOutputStream out = null;
478 try {
479 out = new DataOutputStream(context.openFileOutput(PREFERENCES, MODE_PRIVATE));
480 out.writeUTF(configuration.locale);
481 out.writeInt(configuration.mcc);
482 out.writeInt(configuration.mnc);
483 out.flush();
484 } catch (FileNotFoundException e) {
485 // Ignore
486 } catch (IOException e) {
487 //noinspection ResultOfMethodCallIgnored
488 context.getFileStreamPath(PREFERENCES).delete();
489 } finally {
490 if (out != null) {
491 try {
492 out.close();
493 } catch (IOException e) {
494 // Ignore
495 }
496 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800497 }
498 }
499
Adam Cohen716b51e2011-06-30 12:09:54 -0700500 public DragLayer getDragLayer() {
501 return mDragLayer;
502 }
503
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800504 static int getScreen() {
505 synchronized (sLock) {
506 return sScreen;
507 }
508 }
509
510 static void setScreen(int screen) {
511 synchronized (sLock) {
512 sScreen = screen;
513 }
514 }
515
Winson Chung557d6ed2011-07-08 15:34:52 -0700516 /**
517 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
518 * a configuration step, this allows the proper animations to run after other transitions.
519 */
520 private boolean completeAdd(PendingAddArguments args) {
Winson Chungb8472bb2011-08-05 13:49:21 -0700521 boolean result = false;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800522 switch (args.requestCode) {
523 case REQUEST_PICK_APPLICATION:
Winson Chung3d503fb2011-07-13 17:25:49 -0700524 completeAddApplication(args.intent, args.container, args.screen, args.cellX,
525 args.cellY);
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800526 break;
527 case REQUEST_PICK_SHORTCUT:
528 processShortcut(args.intent);
529 break;
530 case REQUEST_CREATE_SHORTCUT:
Winson Chung3d503fb2011-07-13 17:25:49 -0700531 completeAddShortcut(args.intent, args.container, args.screen, args.cellX,
532 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700533 result = true;
534 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800535 case REQUEST_PICK_APPWIDGET:
536 addAppWidgetFromPick(args.intent);
537 break;
538 case REQUEST_CREATE_APPWIDGET:
539 int appWidgetId = args.intent.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1);
Adam Cohened66b2b2012-01-23 17:28:51 -0800540 completeAddAppWidget(appWidgetId, args.container, args.screen, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700541 result = true;
542 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800543 case REQUEST_PICK_WALLPAPER:
544 // We just wanted the activity result here so we can clear mWaitingForResult
545 break;
546 }
Michael Jurka27614d22012-04-02 06:40:22 -0700547 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
548 // if you turned the screen off and then back while in All Apps, Launcher would not
549 // return to the workspace. Clearing mAddInfo.container here fixes this issue
550 resetAddInfo();
Winson Chungb8472bb2011-08-05 13:49:21 -0700551 return result;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800552 }
553
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800554 @Override
Michael Jurka8b805b12012-04-18 14:23:14 -0700555 protected void onActivityResult(
556 final int requestCode, final int resultCode, final Intent data) {
557 if (requestCode == REQUEST_BIND_APPWIDGET) {
558 int appWidgetId = data != null ?
559 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
560 if (resultCode == RESULT_CANCELED) {
561 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
562 } else if (resultCode == RESULT_OK) {
563 addAppWidgetImpl(appWidgetId, mWidgetBeingBoundOrConfigured);
564 }
565 return;
566 }
Winson Chung557d6ed2011-07-08 15:34:52 -0700567 boolean delayExitSpringLoadedMode = false;
Adam Cohened66b2b2012-01-23 17:28:51 -0800568 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
569 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700570 mWaitingForResult = false;
571
Adam Cohened66b2b2012-01-23 17:28:51 -0800572 // We have special handling for widgets
573 if (isWidgetDrop) {
574 int appWidgetId = data != null ?
575 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
Winson Chung5aaab772012-04-27 15:24:02 -0700576 if (appWidgetId < 0) {
577 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not returned from the \\" +
578 "widget configuration activity.");
579 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
580 } else {
581 completeTwoStageWidgetDrop(resultCode, appWidgetId);
582 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800583 return;
584 }
585
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800586 // The pattern used here is that a user PICKs a specific application,
587 // which, depending on the target, might need to CREATE the actual target.
Romain Guycbb89e42009-06-08 15:52:54 -0700588
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800589 // For example, the user would PICK_SHORTCUT for "Music playlist", and we
590 // launch over to the Music app to actually CREATE_SHORTCUT.
Winson Chungc7da5552011-08-10 15:28:45 -0700591 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800592 final PendingAddArguments args = new PendingAddArguments();
593 args.requestCode = requestCode;
594 args.intent = data;
Winson Chung3d503fb2011-07-13 17:25:49 -0700595 args.container = mPendingAddInfo.container;
596 args.screen = mPendingAddInfo.screen;
597 args.cellX = mPendingAddInfo.cellX;
598 args.cellY = mPendingAddInfo.cellY;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800599 if (isWorkspaceLocked()) {
600 sPendingAddList.add(args);
601 } else {
Winson Chung557d6ed2011-07-08 15:34:52 -0700602 delayExitSpringLoadedMode = completeAdd(args);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800603 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800604 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800605 mDragLayer.clearAnimatedView();
Winson Chung557d6ed2011-07-08 15:34:52 -0700606 // Exit spring loaded mode if necessary after cancelling the configuration of a widget
Adam Cohened66b2b2012-01-23 17:28:51 -0800607 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED), delayExitSpringLoadedMode,
608 null);
609 }
610
611 private void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700612 CellLayout cellLayout =
613 (CellLayout) mWorkspace.getChildAt(mWidgetBeingBoundOrConfigured.screen);
Adam Cohened66b2b2012-01-23 17:28:51 -0800614 Runnable onCompleteRunnable = null;
615 int animationType = 0;
616
617 if (resultCode == RESULT_OK) {
618 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
619 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Michael Jurka8b805b12012-04-18 14:23:14 -0700620 mWidgetBeingBoundOrConfigured.info);
621 mWidgetBeingBoundOrConfigured.boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800622 onCompleteRunnable = new Runnable() {
623 @Override
624 public void run() {
625 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
626 mPendingAddInfo.screen, layout, null);
627 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED), false,
628 null);
629 }
630 };
631 } else if (resultCode == RESULT_CANCELED) {
632 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
633 onCompleteRunnable = new Runnable() {
634 @Override
635 public void run() {
636 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED), false,
637 null);
638 }
639 };
640 }
Michael Jurka8b805b12012-04-18 14:23:14 -0700641 mWorkspace.animateWidgetDrop(mWidgetBeingBoundOrConfigured, cellLayout,
Adam Cohened66b2b2012-01-23 17:28:51 -0800642 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
Michael Jurka8b805b12012-04-18 14:23:14 -0700643 animationType, mWidgetBeingBoundOrConfigured.boundWidget, true);
644 mWidgetBeingBoundOrConfigured = null;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800645 }
646
647 @Override
648 protected void onResume() {
649 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700650
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800651 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700652 if (mRestoring || mOnResumeNeedsLoad) {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400653 mWorkspaceLoading = true;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700654 mModel.startLoader(true);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400655 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700656 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800657 }
Winson Chunge4e50662012-01-23 14:45:13 -0800658
659 // Reset the pressed state of icons that were locked in the press state while activities
660 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -0800661 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -0800662 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -0800663 mWaitingForResume.setStayPressed(false);
664 }
Winson Chunge4e50662012-01-23 14:45:13 -0800665 if (mAppsCustomizeContent != null) {
666 // Resets the previous all apps icon press state
667 mAppsCustomizeContent.resetDrawableState();
668 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800669 }
670
671 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700672 protected void onPause() {
673 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700674 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -0800675 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -0700676 mDragController.resetLastGestureUpTime();
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700677 }
Romain Guycbb89e42009-06-08 15:52:54 -0700678
Jeffrey Sharkey99c87582009-03-24 17:59:43 -0700679 @Override
680 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400681 // Flag the loader to stop early before switching
682 mModel.stopLoader();
Winson Chung785d2eb2011-04-14 16:08:02 -0700683 if (mAppsCustomizeContent != null) {
684 mAppsCustomizeContent.surrender();
685 }
Romain Guy13c2e7b2010-03-10 19:45:00 -0800686 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -0700687 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700688
Joe Onorato2d7e7d02010-01-29 15:57:19 -0800689 // We can't hide the IME if it was forced open. So don't bother
690 /*
691 @Override
692 public void onWindowFocusChanged(boolean hasFocus) {
693 super.onWindowFocusChanged(hasFocus);
694
695 if (hasFocus) {
696 final InputMethodManager inputManager = (InputMethodManager)
697 getSystemService(Context.INPUT_METHOD_SERVICE);
698 WindowManager.LayoutParams lp = getWindow().getAttributes();
699 inputManager.hideSoftInputFromWindow(lp.token, 0, new android.os.ResultReceiver(new
700 android.os.Handler()) {
701 protected void onReceiveResult(int resultCode, Bundle resultData) {
702 Log.d(TAG, "ResultReceiver got resultCode=" + resultCode);
703 }
704 });
705 Log.d(TAG, "called hideSoftInputFromWindow from onWindowFocusChanged");
706 }
707 }
708 */
709
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800710 private boolean acceptFilter() {
711 final InputMethodManager inputManager = (InputMethodManager)
712 getSystemService(Context.INPUT_METHOD_SERVICE);
713 return !inputManager.isFullscreenMode();
714 }
715
716 @Override
717 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -0700718 final int uniChar = event.getUnicodeChar();
719 final boolean handled = super.onKeyDown(keyCode, event);
720 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
721 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800722 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
723 keyCode, event);
724 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -0700725 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -0700726 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -0700727 // showSearchDialog()
728 // If there are multiple keystrokes before the search dialog takes focus,
729 // onSearchRequested() will be called for every keystroke,
730 // but it is idempotent, so it's fine.
731 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800732 }
733 }
734
Joe Onorato8a9625e2010-01-28 15:55:35 -0800735 // Eat the long press event so the keyboard doesn't come up.
736 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
737 return true;
738 }
739
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800740 return handled;
741 }
742
Karl Rosaen138a0412009-04-23 19:00:21 -0700743 private String getTypedText() {
744 return mDefaultKeySsb.toString();
745 }
746
747 private void clearTypedText() {
748 mDefaultKeySsb.clear();
749 mDefaultKeySsb.clearSpans();
750 Selection.setSelection(mDefaultKeySsb, 0);
751 }
752
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800753 /**
Michael Jurka883f55b2010-10-21 15:47:14 -0700754 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
755 * State
756 */
757 private static State intToState(int stateOrdinal) {
758 State state = State.WORKSPACE;
759 final State[] stateValues = State.values();
760 for (int i = 0; i < stateValues.length; i++) {
761 if (stateValues[i].ordinal() == stateOrdinal) {
762 state = stateValues[i];
763 break;
764 }
765 }
766 return state;
767 }
768
769 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800770 * Restores the previous state, if it exists.
771 *
772 * @param savedState The previous state.
773 */
774 private void restoreState(Bundle savedState) {
775 if (savedState == null) {
776 return;
777 }
778
Michael Jurka883f55b2010-10-21 15:47:14 -0700779 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungf0ea4d32011-06-06 14:27:16 -0700780 if (state == State.APPS_CUSTOMIZE) {
Joe Onorato3a8820b2009-11-10 15:06:42 -0800781 showAllApps(false);
782 }
783
Winson Chungf0c6ae02012-03-21 16:10:31 -0700784 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN, -1);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800785 if (currentScreen > -1) {
Michael Jurka0142d492010-08-25 17:46:15 -0700786 mWorkspace.setCurrentPage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800787 }
788
Winson Chung3d503fb2011-07-13 17:25:49 -0700789 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
790 final int pendingAddScreen = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700791
Winson Chung3d503fb2011-07-13 17:25:49 -0700792 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
793 mPendingAddInfo.container = pendingAddContainer;
794 mPendingAddInfo.screen = pendingAddScreen;
795 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
796 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800797 mRestoring = true;
798 }
799
800 boolean renameFolder = savedState.getBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, false);
801 if (renameFolder) {
802 long id = savedState.getLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700803 mFolderInfo = mModel.getFolderById(this, sFolders, id);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800804 mRestoring = true;
805 }
Winson Chunga12a2502010-12-20 14:41:35 -0800806
Winson Chung785d2eb2011-04-14 16:08:02 -0700807
808 // Restore the AppsCustomize tab
809 if (mAppsCustomizeTabHost != null) {
810 String curTab = savedState.getString("apps_customize_currentTab");
811 if (curTab != null) {
Winson Chungf0ea4d32011-06-06 14:27:16 -0700812 // We set this directly so that there is no delay before the tab is set
Winson Chung785d2eb2011-04-14 16:08:02 -0700813 mAppsCustomizeContent.setContentType(
814 mAppsCustomizeTabHost.getContentTypeForTabTag(curTab));
815 mAppsCustomizeTabHost.setCurrentTabByTag(curTab);
Winson Chungf314b0e2011-08-16 11:54:27 -0700816 mAppsCustomizeContent.loadAssociatedPages(
817 mAppsCustomizeContent.getCurrentPage());
Winson Chung785d2eb2011-04-14 16:08:02 -0700818 }
819
Winson Chung5afbf7b2011-07-25 11:53:08 -0700820 int currentIndex = savedState.getInt("apps_customize_currentIndex");
821 mAppsCustomizeContent.restorePageForIndex(currentIndex);
Winson Chung785d2eb2011-04-14 16:08:02 -0700822 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800823 }
824
825 /**
826 * Finds all the views we need and configure them properly.
827 */
828 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -0700829 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -0400830
Winson Chung4c98d922011-05-31 16:50:48 -0700831 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
832 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Michael Jurkab737ee62011-11-15 15:57:22 -0800833 mQsbDivider = (ImageView) findViewById(R.id.qsb_divider);
834 mDockDivider = (ImageView) findViewById(R.id.dock_divider);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800835
Winson Chung4c98d922011-05-31 16:50:48 -0700836 // Setup the drag layer
837 mDragLayer.setup(this, dragController);
838
Winson Chung3d503fb2011-07-13 17:25:49 -0700839 // Setup the hotseat
840 mHotseat = (Hotseat) findViewById(R.id.hotseat);
841 if (mHotseat != null) {
842 mHotseat.setup(this);
843 }
844
Winson Chung4c98d922011-05-31 16:50:48 -0700845 // Setup the workspace
846 mWorkspace.setHapticFeedbackEnabled(false);
847 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -0700848 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -0700849 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -0700850
Winson Chungf0ea4d32011-06-06 14:27:16 -0700851 // Get the search/delete bar
Winson Chungc51db6a2011-10-05 11:44:49 -0700852 mSearchDropTargetBar = (SearchDropTargetBar) mDragLayer.findViewById(R.id.qsb_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -0700853
Winson Chungf0ea4d32011-06-06 14:27:16 -0700854 // Setup AppsCustomize
855 mAppsCustomizeTabHost = (AppsCustomizeTabHost)
856 findViewById(R.id.apps_customize_pane);
857 mAppsCustomizeContent = (AppsCustomizePagedView)
858 mAppsCustomizeTabHost.findViewById(R.id.apps_customize_pane_content);
Winson Chungc7450e32012-04-17 17:34:08 -0700859 mAppsCustomizeTabHost.setup(this);
Winson Chungf0ea4d32011-06-06 14:27:16 -0700860 mAppsCustomizeContent.setup(this, dragController);
Daniel Sandlerc9b18772010-04-22 14:37:59 -0400861
Michael Jurka5130e402011-10-13 04:55:35 -0700862 // Get the all apps button
863 mAllAppsButton = findViewById(R.id.all_apps_button);
864 if (mAllAppsButton != null) {
865 mAllAppsButton.setOnTouchListener(new View.OnTouchListener() {
866 @Override
867 public boolean onTouch(View v, MotionEvent event) {
868 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
869 onTouchDownAllAppsButton(v);
870 }
871 return false;
872 }
873 });
874 }
Winson Chung3d503fb2011-07-13 17:25:49 -0700875 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -0700876 dragController.setDragScoller(mWorkspace);
877 dragController.setScrollView(mDragLayer);
878 dragController.setMoveTarget(mWorkspace);
879 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -0700880 if (mSearchDropTargetBar != null) {
881 mSearchDropTargetBar.setup(this, dragController);
Michael Jurkae0f5a612011-02-07 16:45:41 -0800882 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800883 }
884
885 /**
886 * Creates a view representing a shortcut.
887 *
888 * @param info The data structure describing the shortcut.
889 *
890 * @return A View inflated from R.layout.application.
891 */
Joe Onorato0589f0f2010-02-08 13:44:00 -0800892 View createShortcut(ShortcutInfo info) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800893 return createShortcut(R.layout.application,
Michael Jurka0142d492010-08-25 17:46:15 -0700894 (ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800895 }
896
897 /**
898 * Creates a view representing a shortcut inflated from the specified resource.
899 *
900 * @param layoutResId The id of the XML layout used to create the shortcut.
901 * @param parent The group the shortcut belongs to.
902 * @param info The data structure describing the shortcut.
903 *
904 * @return A View inflated from layoutResId.
905 */
Joe Onorato0589f0f2010-02-08 13:44:00 -0800906 View createShortcut(int layoutResId, ViewGroup parent, ShortcutInfo info) {
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800907 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(layoutResId, parent, false);
908 favorite.applyFromShortcutInfo(info, mIconCache);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800909 favorite.setOnClickListener(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800910 return favorite;
911 }
912
913 /**
914 * Add an application shortcut to the workspace.
915 *
916 * @param data The intent describing the application.
917 * @param cellInfo The position on screen where to create the shortcut.
918 */
Winson Chung3d503fb2011-07-13 17:25:49 -0700919 void completeAddApplication(Intent data, long container, int screen, int cellX, int cellY) {
Michael Jurka0280c3b2010-09-17 15:00:07 -0700920 final int[] cellXY = mTmpAddItemCellCoordinates;
Winson Chung3d503fb2011-07-13 17:25:49 -0700921 final CellLayout layout = getCellLayout(container, screen);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700922
Adam Cohenfbba09b2011-07-18 21:43:05 -0700923 // First we check if we already know the exact location where we want to add this item.
924 if (cellX >= 0 && cellY >= 0) {
925 cellXY[0] = cellX;
926 cellXY[1] = cellY;
927 } else if (!layout.findCellForSpan(cellXY, 1, 1)) {
Winson Chung93eef082012-03-23 15:59:27 -0700928 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -0700929 return;
930 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800931
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800932 final ShortcutInfo info = mModel.getShortcutInfo(getPackageManager(), data, this);
Joe Onorato0589f0f2010-02-08 13:44:00 -0800933
Romain Guy73b979d2009-06-09 12:57:21 -0700934 if (info != null) {
Joe Onorato0589f0f2010-02-08 13:44:00 -0800935 info.setActivity(data.getComponent(), Intent.FLAG_ACTIVITY_NEW_TASK |
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800936 Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Joe Onorato0589f0f2010-02-08 13:44:00 -0800937 info.container = ItemInfo.NO_ID;
Winson Chung3d503fb2011-07-13 17:25:49 -0700938 mWorkspace.addApplicationShortcut(info, layout, container, screen, cellXY[0], cellXY[1],
Adam Cohenfbba09b2011-07-18 21:43:05 -0700939 isWorkspaceLocked(), cellX, cellY);
Joe Onorato0589f0f2010-02-08 13:44:00 -0800940 } else {
941 Log.e(TAG, "Couldn't find ActivityInfo for selected application: " + data);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800942 }
943 }
Romain Guycbb89e42009-06-08 15:52:54 -0700944
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800945 /**
946 * Add a shortcut to the workspace.
947 *
948 * @param data The intent describing the shortcut.
949 * @param cellInfo The position on screen where to create the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800950 */
Winson Chung3d503fb2011-07-13 17:25:49 -0700951 private void completeAddShortcut(Intent data, long container, int screen, int cellX,
952 int cellY) {
953 int[] cellXY = mTmpAddItemCellCoordinates;
954 int[] touchXY = mPendingAddInfo.dropPos;
955 CellLayout layout = getCellLayout(container, screen);
Romain Guycbb89e42009-06-08 15:52:54 -0700956
Michael Jurkad3ef3062010-11-23 16:23:58 -0800957 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -0700958
Adam Cohen558baaf2011-08-15 15:22:57 -0700959 ShortcutInfo info = mModel.infoFromShortcutIntent(this, data, null);
Adam Cohend9198822011-11-22 16:42:47 -0800960 if (info == null) {
961 return;
962 }
Adam Cohen558baaf2011-08-15 15:22:57 -0700963 final View view = createShortcut(info);
964
Adam Cohenfbba09b2011-07-18 21:43:05 -0700965 // First we check if we already know the exact location where we want to add this item.
966 if (cellX >= 0 && cellY >= 0) {
967 cellXY[0] = cellX;
968 cellXY[1] = cellY;
969 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -0700970
971 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -0800972 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -0700973 true, null,null)) {
974 return;
975 }
976 DragObject dragObject = new DragObject();
977 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -0800978 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
979 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -0700980 return;
981 }
Adam Cohenfbba09b2011-07-18 21:43:05 -0700982 } else if (touchXY != null) {
Michael Jurkad3ef3062010-11-23 16:23:58 -0800983 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -0700984 int[] result = layout.findNearestVacantArea(touchXY[0], touchXY[1], 1, 1, cellXY);
Michael Jurkad3ef3062010-11-23 16:23:58 -0800985 foundCellSpan = (result != null);
986 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -0700987 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -0800988 }
989
990 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -0700991 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -0700992 return;
993 }
994
Adam Cohen558baaf2011-08-15 15:22:57 -0700995 LauncherModel.addItemToDatabase(this, info, container, screen, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800996
997 if (!mRestoring) {
Winson Chung3d503fb2011-07-13 17:25:49 -0700998 mWorkspace.addInScreen(view, container, screen, cellXY[0], cellXY[1], 1, 1,
999 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001000 }
1001 }
1002
Winson Chunga5c96362012-04-12 14:04:41 -07001003 int[] getSpanForWidget(ComponentName component, int minWidth, int minHeight) {
Adam Cohen0cf2a7c2011-11-08 15:07:01 -08001004 Rect padding = AppWidgetHostView.getDefaultPaddingForWidget(this, component, null);
Adam Cohenf814aa02011-09-01 13:48:05 -07001005 // We want to account for the extra amount of padding that we are adding to the widget
1006 // to ensure that it gets the full amount of space that it has requested
1007 int requiredWidth = minWidth + padding.left + padding.right;
1008 int requiredHeight = minHeight + padding.top + padding.bottom;
1009 return CellLayout.rectToCell(getResources(), requiredWidth, requiredHeight, null);
1010 }
1011
Winson Chunga5c96362012-04-12 14:04:41 -07001012 int[] getSpanForWidget(AppWidgetProviderInfo info) {
1013 return getSpanForWidget(info.provider, info.minWidth, info.minHeight);
Adam Cohenf814aa02011-09-01 13:48:05 -07001014 }
1015
Winson Chunga5c96362012-04-12 14:04:41 -07001016 int[] getMinSpanForWidget(AppWidgetProviderInfo info) {
1017 return getSpanForWidget(info.provider, info.minResizeWidth, info.minResizeHeight);
Adam Cohencbf47e32011-09-16 17:32:37 -07001018 }
1019
Winson Chunga5c96362012-04-12 14:04:41 -07001020 int[] getSpanForWidget(PendingAddWidgetInfo info) {
1021 return getSpanForWidget(info.componentName, info.minWidth, info.minHeight);
Adam Cohenf814aa02011-09-01 13:48:05 -07001022 }
1023
Winson Chunga5c96362012-04-12 14:04:41 -07001024 int[] getMinSpanForWidget(PendingAddWidgetInfo info) {
Adam Cohend41fbf52012-02-16 23:53:59 -08001025 return getSpanForWidget(info.componentName, info.minResizeWidth,
Winson Chunga5c96362012-04-12 14:04:41 -07001026 info.minResizeHeight);
Adam Cohend41fbf52012-02-16 23:53:59 -08001027 }
1028
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001029 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001030 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001031 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001032 * @param appWidgetId The app widget id
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001033 * @param cellInfo The position on screen where to create the widget.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001034 */
Adam Cohened66b2b2012-01-23 17:28:51 -08001035 private void completeAddAppWidget(final int appWidgetId, long container, int screen,
1036 AppWidgetHostView hostView, AppWidgetProviderInfo appWidgetInfo) {
1037 if (appWidgetInfo == null) {
1038 appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
1039 }
Romain Guycbb89e42009-06-08 15:52:54 -07001040
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001041 // Calculate the grid spans needed to fit this widget
Winson Chung3d503fb2011-07-13 17:25:49 -07001042 CellLayout layout = getCellLayout(container, screen);
Adam Cohen09353862011-07-14 16:10:03 -07001043
Winson Chunga5c96362012-04-12 14:04:41 -07001044 int[] minSpanXY = getMinSpanForWidget(appWidgetInfo);
1045 int[] spanXY = getSpanForWidget(appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001046
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001047 // Try finding open space on Launcher screen
Michael Jurkaa63c4522010-08-19 13:52:27 -07001048 // We have saved the position to which the widget was dragged-- this really only matters
1049 // if we are placing widgets on a "spring-loaded" screen
Winson Chung3d503fb2011-07-13 17:25:49 -07001050 int[] cellXY = mTmpAddItemCellCoordinates;
1051 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohend41fbf52012-02-16 23:53:59 -08001052 int[] finalSpan = new int[2];
Michael Jurka0280c3b2010-09-17 15:00:07 -07001053 boolean foundCellSpan = false;
Winson Chung3d503fb2011-07-13 17:25:49 -07001054 if (mPendingAddInfo.cellX >= 0 && mPendingAddInfo.cellY >= 0) {
1055 cellXY[0] = mPendingAddInfo.cellX;
1056 cellXY[1] = mPendingAddInfo.cellY;
Adam Cohend41fbf52012-02-16 23:53:59 -08001057 spanXY[0] = mPendingAddInfo.spanX;
1058 spanXY[1] = mPendingAddInfo.spanY;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001059 foundCellSpan = true;
1060 } else if (touchXY != null) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001061 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001062 int[] result = layout.findNearestVacantArea(
Adam Cohend41fbf52012-02-16 23:53:59 -08001063 touchXY[0], touchXY[1], minSpanXY[0], minSpanXY[1], spanXY[0],
1064 spanXY[1], cellXY, finalSpan);
1065 spanXY[0] = finalSpan[0];
1066 spanXY[1] = finalSpan[1];
Michael Jurkad3ef3062010-11-23 16:23:58 -08001067 foundCellSpan = (result != null);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001068 } else {
Adam Cohend41fbf52012-02-16 23:53:59 -08001069 foundCellSpan = layout.findCellForSpan(cellXY, minSpanXY[0], minSpanXY[1]);
Michael Jurkaa63c4522010-08-19 13:52:27 -07001070 }
1071
Michael Jurka0280c3b2010-09-17 15:00:07 -07001072 if (!foundCellSpan) {
Winson Chungf7640c82011-02-28 13:47:29 -08001073 if (appWidgetId != -1) {
1074 // Deleting an app widget ID is a void call but writes to disk before returning
1075 // to the caller...
Winson Chungf7640c82011-02-28 13:47:29 -08001076 new Thread("deleteAppWidgetId") {
1077 public void run() {
1078 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
1079 }
1080 }.start();
1081 }
Winson Chung93eef082012-03-23 15:59:27 -07001082 showOutOfSpaceMessage(isHotseatLayout(layout));
Romain Guy18042c82009-11-06 11:44:55 -08001083 return;
1084 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001085
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001086 // Build Launcher-specific widget info and save to database
Winson Chung11a49372012-04-27 15:12:38 -07001087 LauncherAppWidgetInfo launcherInfo = new LauncherAppWidgetInfo(appWidgetId,
1088 appWidgetInfo.provider);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001089 launcherInfo.spanX = spanXY[0];
1090 launcherInfo.spanY = spanXY[1];
Adam Cohend41fbf52012-02-16 23:53:59 -08001091 launcherInfo.minSpanX = mPendingAddInfo.minSpanX;
1092 launcherInfo.minSpanY = mPendingAddInfo.minSpanY;
Romain Guycbb89e42009-06-08 15:52:54 -07001093
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001094 LauncherModel.addItemToDatabase(this, launcherInfo,
Winson Chung3d503fb2011-07-13 17:25:49 -07001095 container, screen, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001096
1097 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001098 if (hostView == null) {
1099 // Perform actual inflation because we're live
1100 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
1101 launcherInfo.hostView.setAppWidget(appWidgetId, appWidgetInfo);
1102 } else {
1103 // The AppWidgetHostView has already been inflated and instantiated
1104 launcherInfo.hostView = hostView;
1105 }
Romain Guycbb89e42009-06-08 15:52:54 -07001106
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001107 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001108 launcherInfo.hostView.setVisibility(View.VISIBLE);
Adam Cohena897f392012-04-27 18:12:05 -07001109 AppWidgetResizeFrame.updateWidgetSizeRanges(launcherInfo.hostView,
1110 this, launcherInfo.spanX, launcherInfo.spanY);
Winson Chung3d503fb2011-07-13 17:25:49 -07001111 mWorkspace.addInScreen(launcherInfo.hostView, container, screen, cellXY[0], cellXY[1],
Joe Onorato9c1289c2009-08-17 11:03:03 -04001112 launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001113
1114 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001115 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001116 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001117 }
Romain Guycbb89e42009-06-08 15:52:54 -07001118
Adam Cohended9f8d2010-11-03 13:25:16 -07001119 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1120 @Override
1121 public void onReceive(Context context, Intent intent) {
1122 final String action = intent.getAction();
1123 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1124 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001125 mDragLayer.clearAllResizeFrames();
Adam Cohended9f8d2010-11-03 13:25:16 -07001126 updateRunning();
Winson Chung337cd9d2011-03-30 10:39:30 -07001127
Winson Chungc100e8e2011-08-09 16:02:43 -07001128 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001129 // processing a multi-step drop
Winson Chungc100e8e2011-08-09 16:02:43 -07001130 if (mAppsCustomizeTabHost != null && mPendingAddInfo.container == ItemInfo.NO_ID) {
1131 mAppsCustomizeTabHost.reset();
1132 showWorkspace(false);
Winson Chung785d2eb2011-04-14 16:08:02 -07001133 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001134 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1135 mUserPresent = true;
1136 updateRunning();
1137 }
1138 }
1139 };
1140
1141 @Override
1142 public void onAttachedToWindow() {
1143 super.onAttachedToWindow();
1144
1145 // Listen for broadcasts related to user-presence
1146 final IntentFilter filter = new IntentFilter();
1147 filter.addAction(Intent.ACTION_SCREEN_OFF);
1148 filter.addAction(Intent.ACTION_USER_PRESENT);
1149 registerReceiver(mReceiver, filter);
1150
Adam Cohend113e0c2010-11-11 10:48:05 -08001151 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001152 mVisible = true;
1153 }
1154
1155 @Override
1156 public void onDetachedFromWindow() {
1157 super.onDetachedFromWindow();
1158 mVisible = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001159 mDragLayer.clearAllResizeFrames();
Adam Cohended9f8d2010-11-03 13:25:16 -07001160
Adam Cohend113e0c2010-11-11 10:48:05 -08001161 if (mAttached) {
1162 unregisterReceiver(mReceiver);
1163 mAttached = false;
1164 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001165 updateRunning();
1166 }
1167
1168 public void onWindowVisibilityChanged(int visibility) {
1169 mVisible = visibility == View.VISIBLE;
1170 updateRunning();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001171 // The following code used to be in onResume, but it turns out onResume is called when
1172 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1173 // is a more appropriate event to handle
1174 if (mVisible) {
1175 mAppsCustomizeTabHost.onWindowVisible();
1176 if (!mWorkspaceLoading) {
1177 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001178 // We want to let Launcher draw itself at least once before we force it to build
1179 // layers on all the workspace pages, so that transitioning to Launcher from other
1180 // apps is nice and speedy. Usually the first call to preDraw doesn't correspond to
1181 // a true draw so we wait until the second preDraw call to be safe
1182 observer.addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener() {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001183 public boolean onPreDraw() {
Michael Jurka6ee21d22012-02-21 18:20:27 -08001184 // We delay the layer building a bit in order to give
1185 // other message processing a time to run. In particular
1186 // this avoids a delay in hiding the IME if it was
1187 // currently shown, because doing that may involve
1188 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001189 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurka6ee21d22012-02-21 18:20:27 -08001190 observer.removeOnPreDrawListener(this);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001191 return true;
1192 }
1193 });
1194 }
Michael Jurka6ee21d22012-02-21 18:20:27 -08001195 // When Launcher comes back to foreground, a different Activity might be responsible for
1196 // the app market intent, so refresh the icon
1197 updateAppMarketIcon();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001198 clearTypedText();
1199 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001200 }
1201
1202 private void sendAdvanceMessage(long delay) {
1203 mHandler.removeMessages(ADVANCE_MSG);
1204 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1205 mHandler.sendMessageDelayed(msg, delay);
1206 mAutoAdvanceSentTime = System.currentTimeMillis();
1207 }
1208
1209 private void updateRunning() {
1210 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1211 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1212 mAutoAdvanceRunning = autoAdvanceRunning;
1213 if (autoAdvanceRunning) {
1214 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1215 sendAdvanceMessage(delay);
1216 } else {
1217 if (!mWidgetsToAdvance.isEmpty()) {
1218 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1219 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1220 }
1221 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001222 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001223 }
1224 }
1225 }
1226
1227 private final Handler mHandler = new Handler() {
1228 @Override
1229 public void handleMessage(Message msg) {
1230 if (msg.what == ADVANCE_MSG) {
1231 int i = 0;
1232 for (View key: mWidgetsToAdvance.keySet()) {
1233 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1234 final int delay = mAdvanceStagger * i;
1235 if (v instanceof Advanceable) {
1236 postDelayed(new Runnable() {
1237 public void run() {
1238 ((Advanceable) v).advance();
1239 }
1240 }, delay);
1241 }
1242 i++;
1243 }
1244 sendAdvanceMessage(mAdvanceInterval);
1245 }
1246 }
1247 };
1248
1249 void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001250 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001251 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1252 if (v instanceof Advanceable) {
1253 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001254 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Adam Cohended9f8d2010-11-03 13:25:16 -07001255 updateRunning();
1256 }
1257 }
1258
1259 void removeWidgetToAutoAdvance(View hostView) {
1260 if (mWidgetsToAdvance.containsKey(hostView)) {
1261 mWidgetsToAdvance.remove(hostView);
1262 updateRunning();
1263 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001264 }
1265
Joe Onorato9c1289c2009-08-17 11:03:03 -04001266 public void removeAppWidget(LauncherAppWidgetInfo launcherInfo) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001267 removeWidgetToAutoAdvance(launcherInfo.hostView);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001268 launcherInfo.hostView = null;
1269 }
1270
Winson Chung93eef082012-03-23 15:59:27 -07001271 void showOutOfSpaceMessage(boolean isHotseatLayout) {
1272 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1273 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001274 }
1275
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001276 public LauncherAppWidgetHost getAppWidgetHost() {
1277 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001278 }
Romain Guycbb89e42009-06-08 15:52:54 -07001279
Winson Chunga9abd0e2010-10-27 17:18:37 -07001280 public LauncherModel getModel() {
1281 return mModel;
1282 }
1283
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001284 void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001285 getWindow().closeAllPanels();
1286
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001287 // Whatever we were doing is hereby canceled.
1288 mWaitingForResult = false;
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001289 }
1290
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001291 @Override
1292 protected void onNewIntent(Intent intent) {
1293 super.onNewIntent(intent);
1294
1295 // Close the menu
1296 if (Intent.ACTION_MAIN.equals(intent.getAction())) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001297 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001298 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001299
Joe Onorato14f122b2009-11-19 14:06:36 -08001300 boolean alreadyOnHome = ((intent.getFlags() & Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1301 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
Michael Jurka01f0ed42010-08-20 00:41:17 -07001302
Adam Cohenac56cff2011-09-28 20:45:37 -07001303 Folder openFolder = mWorkspace.getOpenFolder();
Patrick Dubroy6ec2e182011-02-23 13:31:16 -08001304 // In all these cases, only animate if we're already on home
Patrick Dubroy758a9232011-03-03 19:54:56 -08001305 mWorkspace.exitWidgetResizeMode();
Adam Cohenac56cff2011-09-28 20:45:37 -07001306 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
1307 openFolder == null) {
Patrick Dubroy6ec2e182011-02-23 13:31:16 -08001308 mWorkspace.moveToDefaultScreen(true);
Joe Onorato3a8820b2009-11-10 15:06:42 -08001309 }
Adam Cohenac56cff2011-09-28 20:45:37 -07001310
1311 closeFolder();
Winson Chungde1af762011-07-21 16:44:07 -07001312 exitSpringLoadedDragMode();
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001313 showWorkspace(alreadyOnHome);
Romain Guy1dd3a072009-07-16 13:21:01 -07001314
Joe Onorato3a8820b2009-11-10 15:06:42 -08001315 final View v = getWindow().peekDecorView();
1316 if (v != null && v.getWindowToken() != null) {
1317 InputMethodManager imm = (InputMethodManager)getSystemService(
1318 INPUT_METHOD_SERVICE);
1319 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001320 }
Winson Chung337cd9d2011-03-30 10:39:30 -07001321
Michael Jurka35aa14d2011-07-07 17:01:08 -07001322 // Reset AllApps to its initial state
Adam Cohenb64d36e2011-10-17 21:48:02 -07001323 if (!alreadyOnHome && mAppsCustomizeTabHost != null) {
Winson Chungc100e8e2011-08-09 16:02:43 -07001324 mAppsCustomizeTabHost.reset();
Winson Chung785d2eb2011-04-14 16:08:02 -07001325 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001326 }
1327 }
1328
1329 @Override
1330 protected void onRestoreInstanceState(Bundle savedInstanceState) {
1331 // Do not call super here
1332 mSavedInstanceState = savedInstanceState;
1333 }
1334
1335 @Override
1336 protected void onSaveInstanceState(Bundle outState) {
Michael Jurka0142d492010-08-25 17:46:15 -07001337 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN, mWorkspace.getCurrentPage());
Adam Cohen95bb8002011-07-03 23:40:28 -07001338 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001339
Michael Jurka883f55b2010-10-21 15:47:14 -07001340 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001341 // We close any open folder since it will not be re-opened, and we need to make sure
1342 // this state is reflected.
1343 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001344
Winson Chung3d503fb2011-07-13 17:25:49 -07001345 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screen > -1 &&
1346 mWaitingForResult) {
1347 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
1348 outState.putInt(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screen);
1349 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1350 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001351 }
1352
1353 if (mFolderInfo != null && mWaitingForResult) {
1354 outState.putBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, true);
1355 outState.putLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID, mFolderInfo.id);
1356 }
Michael Jurka946ad472010-07-09 18:05:18 -07001357
Winson Chung785d2eb2011-04-14 16:08:02 -07001358 // Save the current AppsCustomize tab
1359 if (mAppsCustomizeTabHost != null) {
1360 String currentTabTag = mAppsCustomizeTabHost.getCurrentTabTag();
1361 if (currentTabTag != null) {
1362 outState.putString("apps_customize_currentTab", currentTabTag);
1363 }
Winson Chung5afbf7b2011-07-25 11:53:08 -07001364 int currentIndex = mAppsCustomizeContent.getSaveInstanceStateIndex();
1365 outState.putInt("apps_customize_currentIndex", currentIndex);
Winson Chung785d2eb2011-04-14 16:08:02 -07001366 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001367 }
1368
1369 @Override
1370 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001371 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001372
Winson Chunge7a03942011-08-05 15:05:12 -07001373 // Remove all pending runnables
1374 mHandler.removeMessages(ADVANCE_MSG);
1375 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07001376 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07001377
Winson Chungcd2b0142011-06-08 16:02:26 -07001378 // Stop callbacks from LauncherModel
1379 LauncherApplication app = ((LauncherApplication) getApplication());
1380 mModel.stopLoader();
1381 app.setLauncher(null);
1382
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001383 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001384 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001385 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001386 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001387 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001388 mAppWidgetHost = null;
1389
1390 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001391
1392 TextKeyListener.getInstance().release();
1393
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001394
Winson Chung3d503fb2011-07-13 17:25:49 -07001395 unbindWorkspaceAndHotseatItems();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001396
1397 getContentResolver().unregisterContentObserver(mWidgetObserver);
Joe Onorato34a0e1b2009-12-14 17:44:51 -08001398 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001399
1400 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
1401 mWorkspace.removeAllViews();
1402 mWorkspace = null;
1403 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08001404
1405 ValueAnimator.clearAllAnimations();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001406 }
1407
Adam Cohena9cf38f2011-05-02 15:36:58 -07001408 public DragController getDragController() {
1409 return mDragController;
1410 }
1411
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001412 @Override
1413 public void startActivityForResult(Intent intent, int requestCode) {
Romain Guy08f97492009-06-29 14:41:20 -07001414 if (requestCode >= 0) mWaitingForResult = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001415 super.startActivityForResult(intent, requestCode);
1416 }
1417
Winson Chung70d72102011-08-12 11:24:35 -07001418 /**
1419 * Indicates that we want global search for this activity by setting the globalSearch
1420 * argument for {@link #startSearch} to true.
1421 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001422 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07001423 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001424 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001425
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001426 showWorkspace(true);
Romain Guycbb89e42009-06-08 15:52:54 -07001427
Karl Rosaen138a0412009-04-23 19:00:21 -07001428 if (initialQuery == null) {
1429 // Use any text typed in the launcher as the initial query
1430 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07001431 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001432 if (appSearchData == null) {
1433 appSearchData = new Bundle();
Bjorn Bringert3e244cf2010-02-10 14:17:35 +00001434 appSearchData.putString(Search.SOURCE, "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001435 }
Mathew Inwoodcf7f63b2011-10-13 11:31:38 +01001436 Rect sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
Romain Guycbb89e42009-06-08 15:52:54 -07001437
Karl Rosaen138a0412009-04-23 19:00:21 -07001438 final SearchManager searchManager =
1439 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
Karl Rosaen138a0412009-04-23 19:00:21 -07001440 searchManager.startSearch(initialQuery, selectInitialQuery, getComponentName(),
Mathew Inwoodcf7f63b2011-10-13 11:31:38 +01001441 appSearchData, globalSearch, sourceBounds);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001442 }
1443
Winson Chung70d72102011-08-12 11:24:35 -07001444 @Override
1445 public boolean onCreateOptionsMenu(Menu menu) {
1446 if (isWorkspaceLocked()) {
1447 return false;
1448 }
1449
1450 super.onCreateOptionsMenu(menu);
Winson Chungdff8ebb2011-09-08 17:25:31 -07001451
1452 Intent manageApps = new Intent(Settings.ACTION_MANAGE_ALL_APPLICATIONS_SETTINGS);
1453 manageApps.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1454 | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Winson Chung236d4312011-08-22 15:12:27 -07001455 Intent settings = new Intent(android.provider.Settings.ACTION_SETTINGS);
1456 settings.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1457 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Michael Jurkab964f9c2011-09-27 22:10:05 -07001458 String helpUrl = getString(R.string.help_url);
1459 Intent help = new Intent(Intent.ACTION_VIEW, Uri.parse(helpUrl));
Winson Chungdff8ebb2011-09-08 17:25:31 -07001460 help.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1461 | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
1462
Winson Chung70d72102011-08-12 11:24:35 -07001463 menu.add(MENU_GROUP_WALLPAPER, MENU_WALLPAPER_SETTINGS, 0, R.string.menu_wallpaper)
1464 .setIcon(android.R.drawable.ic_menu_gallery)
1465 .setAlphabeticShortcut('W');
1466 menu.add(0, MENU_MANAGE_APPS, 0, R.string.menu_manage_apps)
1467 .setIcon(android.R.drawable.ic_menu_manage)
Winson Chungdff8ebb2011-09-08 17:25:31 -07001468 .setIntent(manageApps)
Winson Chung70d72102011-08-12 11:24:35 -07001469 .setAlphabeticShortcut('M');
Winson Chung236d4312011-08-22 15:12:27 -07001470 menu.add(0, MENU_SYSTEM_SETTINGS, 0, R.string.menu_settings)
1471 .setIcon(android.R.drawable.ic_menu_preferences)
1472 .setIntent(settings)
1473 .setAlphabeticShortcut('P');
Michael Jurkab964f9c2011-09-27 22:10:05 -07001474 if (!helpUrl.isEmpty()) {
1475 menu.add(0, MENU_HELP, 0, R.string.menu_help)
1476 .setIcon(android.R.drawable.ic_menu_help)
1477 .setIntent(help)
1478 .setAlphabeticShortcut('H');
1479 }
Winson Chung70d72102011-08-12 11:24:35 -07001480 return true;
1481 }
1482
1483 @Override
1484 public boolean onPrepareOptionsMenu(Menu menu) {
1485 super.onPrepareOptionsMenu(menu);
1486
1487 if (mAppsCustomizeTabHost.isTransitioning()) {
1488 return false;
1489 }
1490 boolean allAppsVisible = (mAppsCustomizeTabHost.getVisibility() == View.VISIBLE);
1491 menu.setGroupVisible(MENU_GROUP_WALLPAPER, !allAppsVisible);
1492
1493 return true;
1494 }
1495
1496 @Override
1497 public boolean onOptionsItemSelected(MenuItem item) {
1498 switch (item.getItemId()) {
1499 case MENU_WALLPAPER_SETTINGS:
1500 startWallpaper();
1501 return true;
Winson Chung70d72102011-08-12 11:24:35 -07001502 }
1503
1504 return super.onOptionsItemSelected(item);
1505 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001506
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07001507 @Override
1508 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07001509 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07001510 // Use a custom animation for launching search
1511 overridePendingTransition(R.anim.fade_in_fast, R.anim.fade_out_fast);
Karl Rosaen138a0412009-04-23 19:00:21 -07001512 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07001513 }
1514
Joe Onorato9c1289c2009-08-17 11:03:03 -04001515 public boolean isWorkspaceLocked() {
1516 return mWorkspaceLoading || mWaitingForResult;
1517 }
1518
Michael Jurka0280c3b2010-09-17 15:00:07 -07001519 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07001520 mPendingAddInfo.container = ItemInfo.NO_ID;
1521 mPendingAddInfo.screen = -1;
1522 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
1523 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Adam Cohend41fbf52012-02-16 23:53:59 -08001524 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07001525 mPendingAddInfo.dropPos = null;
Michael Jurka0280c3b2010-09-17 15:00:07 -07001526 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07001527
Michael Jurkaaf442092010-06-10 17:01:57 -07001528 void addAppWidgetFromPick(Intent data) {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001529 // TODO: catch bad widget exception when sent
1530 int appWidgetId = data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1);
Michael Jurkaaf442092010-06-10 17:01:57 -07001531 // TODO: Is this log message meaningful?
1532 if (LOGD) Log.d(TAG, "dumping extras content=" + data.getExtras());
Winson Chung55cef262010-10-28 14:14:18 -07001533 addAppWidgetImpl(appWidgetId, null);
Michael Jurkaaf442092010-06-10 17:01:57 -07001534 }
1535
Adam Cohened66b2b2012-01-23 17:28:51 -08001536 void addAppWidgetImpl(final int appWidgetId, final PendingAddWidgetInfo info) {
1537 final AppWidgetProviderInfo appWidget = info.info;
Bjorn Bringert7984c942009-12-09 15:38:25 +00001538 if (appWidget.configure != null) {
1539 // Launch over to configure widget, if needed
1540 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_CONFIGURE);
1541 intent.setComponent(appWidget.configure);
1542 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
Winson Chung55cef262010-10-28 14:14:18 -07001543 if (info != null) {
Winson Chung68846fd2010-10-29 11:00:27 -07001544 if (info.mimeType != null && !info.mimeType.isEmpty()) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001545 intent.putExtra(InstallWidgetReceiver.
1546 EXTRA_APPWIDGET_CONFIGURATION_DATA_MIME_TYPE, info.mimeType);
Winson Chung68846fd2010-10-29 11:00:27 -07001547
1548 final String mimeType = info.mimeType;
1549 final ClipData clipData = (ClipData) info.configurationData;
1550 final ClipDescription clipDesc = clipData.getDescription();
1551 for (int i = 0; i < clipDesc.getMimeTypeCount(); ++i) {
1552 if (clipDesc.getMimeType(i).equals(mimeType)) {
Dianne Hackborn0d5aad72011-01-17 15:28:58 -08001553 final ClipData.Item item = clipData.getItemAt(i);
Winson Chung68846fd2010-10-29 11:00:27 -07001554 final CharSequence stringData = item.getText();
1555 final Uri uriData = item.getUri();
1556 final Intent intentData = item.getIntent();
Adam Cohened66b2b2012-01-23 17:28:51 -08001557 final String key = InstallWidgetReceiver.
1558 EXTRA_APPWIDGET_CONFIGURATION_DATA;
Winson Chung68846fd2010-10-29 11:00:27 -07001559 if (uriData != null) {
1560 intent.putExtra(key, uriData);
1561 } else if (intentData != null) {
1562 intent.putExtra(key, intentData);
1563 } else if (stringData != null) {
1564 intent.putExtra(key, stringData);
1565 }
1566 break;
1567 }
1568 }
1569 }
Winson Chung55cef262010-10-28 14:14:18 -07001570 }
Romain Guy8e633c52010-03-04 12:51:36 -08001571 startActivityForResultSafely(intent, REQUEST_CREATE_APPWIDGET);
Michael Jurka8b805b12012-04-18 14:23:14 -07001572 mWidgetBeingBoundOrConfigured = info;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001573 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00001574 // Otherwise just add it
Adam Cohened66b2b2012-01-23 17:28:51 -08001575 completeAddAppWidget(appWidgetId, info.container, info.screen, info.boundWidget, appWidget);
Winson Chung557d6ed2011-07-08 15:34:52 -07001576 // Exit spring loaded mode if necessary after adding the widget
Adam Cohened66b2b2012-01-23 17:28:51 -08001577 exitSpringLoadedDragModeDelayed(true, false, null);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001578 }
1579 }
Romain Guycbb89e42009-06-08 15:52:54 -07001580
Adam Cohenfbba09b2011-07-18 21:43:05 -07001581 /**
1582 * Process a shortcut drop.
1583 *
1584 * @param componentName The name of the component
1585 * @param screen The screen where it should be added
1586 * @param cell The cell it should be added to, optional
1587 * @param position The location on the screen where it was dropped, optional
1588 */
Winson Chung3d503fb2011-07-13 17:25:49 -07001589 void processShortcutFromDrop(ComponentName componentName, long container, int screen,
1590 int[] cell, int[] loc) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001591 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07001592 mPendingAddInfo.container = container;
1593 mPendingAddInfo.screen = screen;
1594 mPendingAddInfo.dropPos = loc;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001595
1596 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07001597 mPendingAddInfo.cellX = cell[0];
1598 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07001599 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001600
1601 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
1602 createShortcutIntent.setComponent(componentName);
1603 processShortcut(createShortcutIntent);
1604 }
1605
Adam Cohenfbba09b2011-07-18 21:43:05 -07001606 /**
1607 * Process a widget drop.
1608 *
1609 * @param info The PendingAppWidgetInfo of the widget being added.
1610 * @param screen The screen where it should be added
1611 * @param cell The cell it should be added to, optional
1612 * @param position The location on the screen where it was dropped, optional
1613 */
Winson Chung3d503fb2011-07-13 17:25:49 -07001614 void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, int screen,
Adam Cohend41fbf52012-02-16 23:53:59 -08001615 int[] cell, int[] span, int[] loc) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001616 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07001617 mPendingAddInfo.container = info.container = container;
1618 mPendingAddInfo.screen = info.screen = screen;
1619 mPendingAddInfo.dropPos = loc;
Adam Cohend41fbf52012-02-16 23:53:59 -08001620 mPendingAddInfo.minSpanX = info.minSpanX;
1621 mPendingAddInfo.minSpanY = info.minSpanY;
1622
Adam Cohenfbba09b2011-07-18 21:43:05 -07001623 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07001624 mPendingAddInfo.cellX = cell[0];
1625 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07001626 }
Adam Cohend41fbf52012-02-16 23:53:59 -08001627 if (span != null) {
1628 mPendingAddInfo.spanX = span[0];
1629 mPendingAddInfo.spanY = span[1];
1630 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001631
Adam Cohened66b2b2012-01-23 17:28:51 -08001632 AppWidgetHostView hostView = info.boundWidget;
1633 int appWidgetId;
1634 if (hostView != null) {
1635 appWidgetId = hostView.getAppWidgetId();
Michael Jurka8b805b12012-04-18 14:23:14 -07001636 addAppWidgetImpl(appWidgetId, info);
Adam Cohened66b2b2012-01-23 17:28:51 -08001637 } else {
1638 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Michael Jurka8b805b12012-04-18 14:23:14 -07001639 mWidgetBeingBoundOrConfigured = info;
1640 if (mAppWidgetManager.bindAppWidgetIdIfAllowed(appWidgetId, info.componentName)) {
1641 addAppWidgetImpl(appWidgetId, info);
1642 } else {
1643 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
1644 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
1645 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
1646 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
1647 }
Adam Cohened66b2b2012-01-23 17:28:51 -08001648 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001649 }
1650
Joe Onoratodeb98af2010-02-19 14:59:39 -08001651 void processShortcut(Intent intent) {
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001652 // Handle case where user selected "Applications"
1653 String applicationName = getResources().getString(R.string.group_applications);
1654 String shortcutName = intent.getStringExtra(Intent.EXTRA_SHORTCUT_NAME);
Romain Guycbb89e42009-06-08 15:52:54 -07001655
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001656 if (applicationName != null && applicationName.equals(shortcutName)) {
1657 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
1658 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
Romain Guycbb89e42009-06-08 15:52:54 -07001659
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001660 Intent pickIntent = new Intent(Intent.ACTION_PICK_ACTIVITY);
1661 pickIntent.putExtra(Intent.EXTRA_INTENT, mainIntent);
Winson Chung58f20882010-10-01 13:44:56 -07001662 pickIntent.putExtra(Intent.EXTRA_TITLE, getText(R.string.title_select_application));
Joe Onorato4a79a042010-09-24 16:17:21 -07001663 startActivityForResultSafely(pickIntent, REQUEST_PICK_APPLICATION);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001664 } else {
Joe Onorato4a79a042010-09-24 16:17:21 -07001665 startActivityForResultSafely(intent, REQUEST_CREATE_SHORTCUT);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001666 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001667 }
1668
Winson Chung24ab2f12010-09-16 14:10:47 -07001669 void processWallpaper(Intent intent) {
1670 startActivityForResult(intent, REQUEST_PICK_WALLPAPER);
1671 }
1672
Winson Chung3d503fb2011-07-13 17:25:49 -07001673 FolderIcon addFolder(CellLayout layout, long container, final int screen, int cellX,
1674 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07001675 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001676 folderInfo.title = getText(R.string.folder_name);
1677
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001678 // Update the model
Winson Chung3d503fb2011-07-13 17:25:49 -07001679 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screen, cellX, cellY,
1680 false);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001681 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001682
1683 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07001684 FolderIcon newFolder =
1685 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
1686 mWorkspace.addInScreen(newFolder, container, screen, cellX, cellY, 1, 1,
1687 isWorkspaceLocked());
Adam Cohendf035382011-04-11 17:22:04 -07001688 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001689 }
Romain Guycbb89e42009-06-08 15:52:54 -07001690
Joe Onorato9c1289c2009-08-17 11:03:03 -04001691 void removeFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001692 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001693 }
1694
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001695 private void startWallpaper() {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001696 showWorkspace(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001697 final Intent pickWallpaper = new Intent(Intent.ACTION_SET_WALLPAPER);
Dianne Hackborn8355ae32009-09-07 21:47:51 -07001698 Intent chooser = Intent.createChooser(pickWallpaper,
1699 getText(R.string.chooser_wallpaper));
Romain Guyf2826c72009-11-12 17:39:34 -08001700 // NOTE: Adds a configure option to the chooser if the wallpaper supports it
1701 // Removed in Eclair MR1
1702// WallpaperManager wm = (WallpaperManager)
1703// getSystemService(Context.WALLPAPER_SERVICE);
1704// WallpaperInfo wi = wm.getWallpaperInfo();
1705// if (wi != null && wi.getSettingsActivity() != null) {
1706// LabeledIntent li = new LabeledIntent(getPackageName(),
1707// R.string.configure_wallpaper, 0);
1708// li.setClassName(wi.getPackageName(), wi.getSettingsActivity());
1709// chooser.putExtra(Intent.EXTRA_INITIAL_INTENTS, new Intent[] { li });
1710// }
Mike Clerona0618e42009-10-22 13:55:21 -07001711 startActivityForResult(chooser, REQUEST_PICK_WALLPAPER);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001712 }
1713
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001714 /**
1715 * Registers various content observers. The current implementation registers
1716 * only a favorites observer to keep track of the favorites applications.
1717 */
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001718 private void registerContentObservers() {
1719 ContentResolver resolver = getContentResolver();
1720 resolver.registerContentObserver(LauncherProvider.CONTENT_APPWIDGET_RESET_URI,
1721 true, mWidgetObserver);
1722 }
1723
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001724 @Override
1725 public boolean dispatchKeyEvent(KeyEvent event) {
1726 if (event.getAction() == KeyEvent.ACTION_DOWN) {
1727 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001728 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07001729 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08001730 case KeyEvent.KEYCODE_VOLUME_DOWN:
Jason Samseb5615d2009-11-30 11:50:10 -08001731 if (SystemProperties.getInt("debug.launcher2.dumpstate", 0) != 0) {
Joe Onoratobe386092009-11-17 17:32:16 -08001732 dumpState();
1733 return true;
1734 }
1735 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07001736 }
1737 } else if (event.getAction() == KeyEvent.ACTION_UP) {
1738 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07001739 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001740 return true;
1741 }
1742 }
1743
1744 return super.dispatchKeyEvent(event);
1745 }
1746
Joe Onorato88ec0992009-11-19 13:16:06 -08001747 @Override
1748 public void onBackPressed() {
Winson Chungf0ea4d32011-06-06 14:27:16 -07001749 if (mState == State.APPS_CUSTOMIZE) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001750 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08001751 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07001752 Folder openFolder = mWorkspace.getOpenFolder();
1753 if (openFolder.isEditingName()) {
1754 openFolder.dismissEditingName();
1755 } else {
1756 closeFolder();
1757 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08001758 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08001759 mWorkspace.exitWidgetResizeMode();
1760
Patrick Dubroy94f78a52011-02-28 17:39:16 -08001761 // Back button is a no-op here, but give at least some feedback for the button press
1762 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07001763 }
Joe Onorato88ec0992009-11-19 13:16:06 -08001764 }
1765
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001766 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001767 * Re-listen when widgets are reset.
1768 */
1769 private void onAppWidgetReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08001770 if (mAppWidgetHost != null) {
1771 mAppWidgetHost.startListening();
1772 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001773 }
1774
1775 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04001776 * Go through the and disconnect any of the callbacks in the drawables and the views or we
1777 * leak the previous Home screen on orientation change.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001778 */
Winson Chung3d503fb2011-07-13 17:25:49 -07001779 private void unbindWorkspaceAndHotseatItems() {
Winson Chung603bcb92011-09-02 11:45:39 -07001780 if (mModel != null) {
1781 mModel.unbindWorkspaceItems();
1782 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001783 }
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001784
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001785 /**
1786 * Launches the intent referred by the clicked shortcut.
1787 *
1788 * @param v The view representing the clicked shortcut.
1789 */
1790 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07001791 // Make sure that rogue clicks don't get through while allapps is launching, or after the
1792 // view has detached (it's possible for this to happen if the view is removed mid touch).
1793 if (v.getWindowToken() == null) {
1794 return;
1795 }
1796
Winson Chung9b0b2fe2012-02-24 13:03:34 -08001797 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07001798 return;
1799 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07001800
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001801 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08001802 if (tag instanceof ShortcutInfo) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001803 // Open shortcut
Romain Guyfb5411e2010-02-24 10:04:17 -08001804 final Intent intent = ((ShortcutInfo) tag).intent;
Joe Onorato13724ea2009-12-02 21:16:35 -08001805 int[] pos = new int[2];
1806 v.getLocationOnScreen(pos);
Romain Guyfb5411e2010-02-24 10:04:17 -08001807 intent.setSourceBounds(new Rect(pos[0], pos[1],
1808 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Winson Chungc7450e32012-04-17 17:34:08 -07001809
1810 boolean success = startActivitySafely(v, intent, tag);
Michael Jurkaddd62e92011-02-16 17:49:14 -08001811
1812 if (success && v instanceof BubbleTextView) {
1813 mWaitingForResume = (BubbleTextView) v;
1814 mWaitingForResume.setStayPressed(true);
1815 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001816 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07001817 if (v instanceof FolderIcon) {
1818 FolderIcon fi = (FolderIcon) v;
1819 handleFolderClick(fi);
1820 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07001821 } else if (v == mAllAppsButton) {
1822 if (mState == State.APPS_CUSTOMIZE) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001823 showWorkspace(true);
Joe Onorato7404ee42009-07-31 11:54:44 -07001824 } else {
Michael Jurka2a552322011-10-11 15:22:05 -07001825 onClickAllAppsButton(v);
Joe Onorato7404ee42009-07-31 11:54:44 -07001826 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001827 }
1828 }
1829
Michael Jurka0e260592010-06-30 17:07:39 -07001830 public boolean onTouch(View v, MotionEvent event) {
Michael Jurkadee05892010-07-27 10:01:56 -07001831 // this is an intercepted event being forwarded from mWorkspace;
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001832 // clicking anywhere on the workspace causes the customization drawer to slide down
1833 showWorkspace(true);
Michael Jurka0e260592010-06-30 17:07:39 -07001834 return false;
1835 }
1836
Michael Jurkaaf442092010-06-10 17:01:57 -07001837 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001838 * Event handler for the search button
1839 *
1840 * @param v The view that was clicked.
1841 */
1842 public void onClickSearchButton(View v) {
Winson Chungbb185bd2011-11-21 12:31:42 -08001843 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
1844
Amith Yamasania135ba82011-08-09 17:42:01 -07001845 onSearchRequested();
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001846 }
1847
1848 /**
Amith Yamasani6d7fe502010-11-16 09:05:07 -08001849 * Event handler for the voice button
1850 *
1851 * @param v The view that was clicked.
1852 */
1853 public void onClickVoiceButton(View v) {
Winson Chungbb185bd2011-11-21 12:31:42 -08001854 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
Amith Yamasani6d7fe502010-11-16 09:05:07 -08001855
Michael Jurkaae65ee32012-04-30 11:45:54 -07001856 try {
1857 final SearchManager searchManager =
1858 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
1859 ComponentName activityName = searchManager.getGlobalSearchActivity();
1860 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
1861 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1862 | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
1863 if (activityName != null) {
1864 intent.setPackage(activityName.getPackageName());
1865 }
1866 startActivitySafely(null, intent, "onClickVoiceButton");
1867 } catch (ActivityNotFoundException e) {
1868 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
1869 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1870 | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
1871 startActivitySafely(null, intent, "onClickVoiceButton");
1872 }
Amith Yamasani6d7fe502010-11-16 09:05:07 -08001873 }
1874
1875 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001876 * Event handler for the "grid" button that appears on the home screen, which
1877 * enters all apps mode.
1878 *
1879 * @param v The view that was clicked.
1880 */
1881 public void onClickAllAppsButton(View v) {
Michael Jurka5130e402011-10-13 04:55:35 -07001882 showAllApps(true);
1883 }
1884
1885 public void onTouchDownAllAppsButton(View v) {
Michael Jurka2a552322011-10-11 15:22:05 -07001886 // Provide the same haptic feedback that the system offers for virtual keys.
1887 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001888 }
1889
Patrick Dubroyceae05d2010-08-30 10:40:53 -07001890 public void onClickAppMarketButton(View v) {
1891 if (mAppMarketIntent != null) {
Winson Chungc7450e32012-04-17 17:34:08 -07001892 startActivitySafely(v, mAppMarketIntent, "app market");
Winson Chung4f916f42012-03-26 15:30:59 -07001893 } else {
1894 Log.e(TAG, "Invalid app market intent.");
Patrick Dubroyceae05d2010-08-30 10:40:53 -07001895 }
1896 }
1897
Patrick Dubroybc6840b2010-09-01 11:54:27 -07001898 void startApplicationDetailsActivity(ComponentName componentName) {
1899 String packageName = componentName.getPackageName();
Patrick Dubroy4ed62782010-08-17 15:11:18 -07001900 Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS,
1901 Uri.fromParts("package", packageName, null));
Winson Chungdff8ebb2011-09-08 17:25:31 -07001902 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Winson Chung3b1b36b2012-04-24 18:51:14 -07001903 startActivitySafely(null, intent, "startApplicationDetailsActivity");
Patrick Dubroy4ed62782010-08-17 15:11:18 -07001904 }
1905
Patrick Dubroy5539af72010-09-07 15:22:01 -07001906 void startApplicationUninstallActivity(ApplicationInfo appInfo) {
1907 if ((appInfo.flags & ApplicationInfo.DOWNLOADED_FLAG) == 0) {
1908 // System applications cannot be installed. For now, show a toast explaining that.
1909 // We may give them the option of disabling apps this way.
1910 int messageId = R.string.uninstall_system_app_text;
1911 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
1912 } else {
1913 String packageName = appInfo.componentName.getPackageName();
1914 String className = appInfo.componentName.getClassName();
1915 Intent intent = new Intent(
1916 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07001917 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
1918 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Patrick Dubroy5539af72010-09-07 15:22:01 -07001919 startActivity(intent);
1920 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07001921 }
1922
Winson Chungc7450e32012-04-17 17:34:08 -07001923 boolean startActivitySafely(View v, Intent intent, Object tag) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001924 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Winson Chungc7450e32012-04-17 17:34:08 -07001925
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001926 try {
Winson Chungc7450e32012-04-17 17:34:08 -07001927 if (v != null) {
1928 ActivityOptions opts = ActivityOptions.makeScaleUpAnimation(v, 0, 0,
1929 v.getMeasuredWidth(), v.getMeasuredHeight());
1930
1931 startActivity(intent, opts.toBundle());
1932 } else {
1933 startActivity(intent);
1934 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08001935 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001936 } catch (ActivityNotFoundException e) {
1937 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Daniel Sandlerc9b18772010-04-22 14:37:59 -04001938 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001939 } catch (SecurityException e) {
1940 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001941 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001942 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07001943 "or use the exported attribute for this activity. "
1944 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001945 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08001946 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001947 }
Winson Chungaafa03c2010-06-11 17:34:16 -07001948
Romain Guy8e633c52010-03-04 12:51:36 -08001949 void startActivityForResultSafely(Intent intent, int requestCode) {
1950 try {
1951 startActivityForResult(intent, requestCode);
1952 } catch (ActivityNotFoundException e) {
1953 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
1954 } catch (SecurityException e) {
1955 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
1956 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
1957 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
1958 "or use the exported attribute for this activity.", e);
1959 }
1960 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001961
Adam Cohena9cf38f2011-05-02 15:36:58 -07001962 private void handleFolderClick(FolderIcon folderIcon) {
1963 final FolderInfo info = folderIcon.mInfo;
Adam Cohen3c81a382011-08-31 22:25:51 -07001964 Folder openFolder = mWorkspace.getFolderForTag(info);
1965
1966 // If the folder info reports that the associated folder is open, then verify that
1967 // it is actually opened. There have been a few instances where this gets out of sync.
1968 if (info.opened && openFolder == null) {
1969 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
1970 + info.screen + " (" + info.cellX + ", " + info.cellY + ")");
1971 info.opened = false;
1972 }
1973
Adam Cohena9cf38f2011-05-02 15:36:58 -07001974 if (!info.opened) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001975 // Close any open folder
1976 closeFolder();
1977 // Open the requested folder
Adam Cohena9cf38f2011-05-02 15:36:58 -07001978 openFolder(folderIcon);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001979 } else {
1980 // Find the open folder...
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001981 int folderScreen;
1982 if (openFolder != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07001983 folderScreen = mWorkspace.getPageForView(openFolder);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001984 // .. and close it
1985 closeFolder(openFolder);
Michael Jurka0142d492010-08-25 17:46:15 -07001986 if (folderScreen != mWorkspace.getCurrentPage()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001987 // Close any folder open on the current screen
1988 closeFolder();
1989 // Pull the folder onto this screen
Adam Cohena9cf38f2011-05-02 15:36:58 -07001990 openFolder(folderIcon);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001991 }
1992 }
1993 }
1994 }
1995
Adam Cohen2801caf2011-05-13 20:57:39 -07001996 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07001997 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07001998 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
1999 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
2000 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
2001
Adam Cohenc51934b2011-07-26 21:07:43 -07002002 FolderInfo info = (FolderInfo) fi.getTag();
2003 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
2004 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07002005 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
2006 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07002007 }
2008
Adam Cohen2801caf2011-05-13 20:57:39 -07002009 ObjectAnimator oa = ObjectAnimator.ofPropertyValuesHolder(fi, alpha, scaleX, scaleY);
2010 oa.setDuration(getResources().getInteger(R.integer.config_folderAnimDuration));
2011 oa.start();
2012 }
2013
2014 private void shrinkAndFadeInFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002015 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07002016 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
2017 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
2018 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
2019
Adam Cohenc51934b2011-07-26 21:07:43 -07002020 FolderInfo info = (FolderInfo) fi.getTag();
2021 CellLayout cl = null;
2022 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
2023 cl = (CellLayout) fi.getParent().getParent();
2024 }
2025
2026 final CellLayout layout = cl;
Adam Cohen2801caf2011-05-13 20:57:39 -07002027 ObjectAnimator oa = ObjectAnimator.ofPropertyValuesHolder(fi, alpha, scaleX, scaleY);
2028 oa.setDuration(getResources().getInteger(R.integer.config_folderAnimDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07002029 oa.addListener(new AnimatorListenerAdapter() {
2030 @Override
2031 public void onAnimationEnd(Animator animation) {
2032 if (layout != null) {
2033 layout.clearFolderLeaveBehind();
2034 }
2035 }
2036 });
Adam Cohen2801caf2011-05-13 20:57:39 -07002037 oa.start();
2038 }
2039
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002040 /**
Michael Jurka774bd372010-10-22 13:40:50 -07002041 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002042 * is animated relative to the specified View. If the View is null, no animation
2043 * is played.
2044 *
2045 * @param folderInfo The FolderInfo describing the folder to open.
2046 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07002047 public void openFolder(FolderIcon folderIcon) {
2048 Folder folder = folderIcon.mFolder;
2049 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002050
Adam Cohen2801caf2011-05-13 20:57:39 -07002051 growAndFadeOutFolderIcon(folderIcon);
Adam Cohena9cf38f2011-05-02 15:36:58 -07002052 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002053
Adam Cohen4554ee12011-08-03 16:13:21 -07002054 // Just verify that the folder hasn't already been added to the DragLayer.
2055 // There was a one-off crash where the folder had a parent already.
2056 if (folder.getParent() == null) {
2057 mDragLayer.addView(folder);
2058 mDragController.addDropTarget((DropTarget) folder);
2059 } else {
2060 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
2061 folder.getParent() + ").");
2062 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07002063 folder.animateOpen();
Adam Cohen4554ee12011-08-03 16:13:21 -07002064 }
2065
2066 public void closeFolder() {
2067 Folder folder = mWorkspace.getOpenFolder();
2068 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07002069 if (folder.isEditingName()) {
2070 folder.dismissEditingName();
2071 }
Adam Cohen4554ee12011-08-03 16:13:21 -07002072 closeFolder(folder);
Winson Chung7d7541e2011-09-16 20:14:36 -07002073
2074 // Dismiss the folder cling
2075 dismissFolderCling(null);
Adam Cohen4554ee12011-08-03 16:13:21 -07002076 }
2077 }
2078
2079 void closeFolder(Folder folder) {
2080 folder.getInfo().opened = false;
2081
2082 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
2083 if (parent != null) {
2084 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
2085 shrinkAndFadeInFolderIcon(fi);
2086 }
2087 folder.animateClosed();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002088 }
2089
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002090 public boolean onLongClick(View v) {
Winson Chungeecf02d2012-03-02 17:14:58 -08002091
Patrick Dubroye708c522011-03-01 16:03:43 -08002092 if (mState != State.WORKSPACE) {
2093 return false;
2094 }
2095
Joe Onorato9c1289c2009-08-17 11:03:03 -04002096 if (isWorkspaceLocked()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002097 return false;
2098 }
2099
2100 if (!(v instanceof CellLayout)) {
Michael Jurka8c920dd2011-01-20 14:16:56 -08002101 v = (View) v.getParent().getParent();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002102 }
2103
Michael Jurka0280c3b2010-09-17 15:00:07 -07002104 resetAddInfo();
2105 CellLayout.CellInfo longClickCellInfo = (CellLayout.CellInfo) v.getTag();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002106 // This happens when long clicking an item with the dpad/trackball
Adam Cohenfaea1f82011-07-21 16:23:57 -07002107 if (longClickCellInfo == null) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002108 return true;
2109 }
2110
Winson Chung3d503fb2011-07-13 17:25:49 -07002111 // The hotseat touch handling does not go through Workspace, and we always allow long press
2112 // on hotseat items.
Michael Jurka0280c3b2010-09-17 15:00:07 -07002113 final View itemUnderLongClick = longClickCellInfo.cell;
Winson Chung3d503fb2011-07-13 17:25:49 -07002114 boolean allowLongPress = isHotseatLayout(v) || mWorkspace.allowLongPress();
2115 if (allowLongPress && !mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002116 if (itemUnderLongClick == null) {
2117 // User long pressed on empty space
Michael Jurka0280c3b2010-09-17 15:00:07 -07002118 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
2119 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Winson Chung6a3fd3f2011-08-02 14:03:26 -07002120 startWallpaper();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002121 } else {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002122 if (!(itemUnderLongClick instanceof Folder)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002123 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07002124 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002125 }
2126 }
2127 }
2128 return true;
2129 }
2130
Winson Chung3d503fb2011-07-13 17:25:49 -07002131 boolean isHotseatLayout(View layout) {
2132 return mHotseat != null && layout != null &&
2133 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
2134 }
2135 Hotseat getHotseat() {
2136 return mHotseat;
Romain Guy1fbc1c82009-11-09 20:43:08 -08002137 }
Adam Cohenebea84d2011-11-09 17:20:41 -08002138 SearchDropTargetBar getSearchBar() {
2139 return mSearchDropTargetBar;
2140 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08002141
Winson Chung3d503fb2011-07-13 17:25:49 -07002142 /**
2143 * Returns the CellLayout of the specified container at the specified screen.
2144 */
2145 CellLayout getCellLayout(long container, int screen) {
2146 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
2147 if (mHotseat != null) {
2148 return mHotseat.getLayout();
2149 } else {
2150 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08002151 }
Winson Chung3d503fb2011-07-13 17:25:49 -07002152 } else {
2153 return (CellLayout) mWorkspace.getChildAt(screen);
Romain Guya6abce82009-11-10 02:54:41 -08002154 }
2155 }
2156
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002157 Workspace getWorkspace() {
2158 return mWorkspace;
2159 }
2160
Daniel Sandler843e8602010-06-07 14:59:01 -04002161 // Now a part of LauncherModel.Callbacks. Used to reorder loading steps.
2162 public boolean isAllAppsVisible() {
Winson Chungf0ea4d32011-06-06 14:27:16 -07002163 return (mState == State.APPS_CUSTOMIZE);
Joe Onoratofb0ca672009-09-14 17:55:46 -04002164 }
2165
Andrew Flynn0dca1ec2012-02-29 13:33:22 -08002166 public boolean isAllAppsButtonRank(int rank) {
2167 return mHotseat.isAllAppsButtonRank(rank);
2168 }
2169
Daniel Sandlerc351eb82010-03-03 15:05:19 -05002170 // AllAppsView.Watcher
2171 public void zoomed(float zoom) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07002172 if (zoom == 1.0f) {
Daniel Sandlerc351eb82010-03-03 15:05:19 -05002173 mWorkspace.setVisibility(View.GONE);
2174 }
2175 }
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002176
2177 /**
2178 * Helper method for the cameraZoomIn/cameraZoomOut animations
2179 * @param view The view being animated
Winson Chungf0ea4d32011-06-06 14:27:16 -07002180 * @param state The state that we are moving in or out of (eg. APPS_CUSTOMIZE)
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002181 * @param scaleFactor The scale factor used for the zoom
2182 */
Michael Jurkab3e22d92011-10-31 15:58:33 -07002183 private void setPivotsForZoom(View view, float scaleFactor) {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002184 view.setPivotX(view.getWidth() / 2.0f);
Adam Cohen7777d962011-08-18 18:58:38 -07002185 view.setPivotY(view.getHeight() / 2.0f);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002186 }
Daniel Sandlerc351eb82010-03-03 15:05:19 -05002187
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002188 void updateWallpaperVisibility(boolean visible) {
2189 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
2190 int curflags = getWindow().getAttributes().flags
2191 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
2192 if (wpflags != curflags) {
2193 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
2194 }
2195 }
2196
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002197 private void dispatchOnLauncherTransitionPrepare(View v, boolean animated, boolean toWorkspace) {
2198 if (v instanceof LauncherTransitionable) {
2199 ((LauncherTransitionable) v).onLauncherTransitionPrepare(this, animated, toWorkspace);
2200 }
2201 }
2202
Michael Jurkabed61d22012-02-14 22:51:29 -08002203 private void dispatchOnLauncherTransitionStart(View v, boolean animated, boolean toWorkspace) {
2204 if (v instanceof LauncherTransitionable) {
2205 ((LauncherTransitionable) v).onLauncherTransitionStart(this, animated, toWorkspace);
2206 }
Winson Chung70442722012-02-10 15:43:22 -08002207
2208 // Update the workspace transition step as well
2209 dispatchOnLauncherTransitionStep(v, 0f);
2210 }
2211
2212 private void dispatchOnLauncherTransitionStep(View v, float t) {
2213 if (v instanceof LauncherTransitionable) {
2214 ((LauncherTransitionable) v).onLauncherTransitionStep(this, t);
2215 }
Michael Jurkabed61d22012-02-14 22:51:29 -08002216 }
2217
2218 private void dispatchOnLauncherTransitionEnd(View v, boolean animated, boolean toWorkspace) {
2219 if (v instanceof LauncherTransitionable) {
2220 ((LauncherTransitionable) v).onLauncherTransitionEnd(this, animated, toWorkspace);
2221 }
Winson Chung70442722012-02-10 15:43:22 -08002222
2223 // Update the workspace transition step as well
2224 dispatchOnLauncherTransitionStep(v, 1f);
Michael Jurkabed61d22012-02-14 22:51:29 -08002225 }
2226
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002227 /**
Michael Jurkab3e22d92011-10-31 15:58:33 -07002228 * Things to test when changing the following seven functions.
2229 * - Home from workspace
2230 * - from center screen
2231 * - from other screens
2232 * - Home from all apps
2233 * - from center screen
2234 * - from other screens
2235 * - Back from all apps
2236 * - from center screen
2237 * - from other screens
2238 * - Launch app from workspace and quit
2239 * - with back
2240 * - with home
2241 * - Launch app from all apps and quit
2242 * - with back
2243 * - with home
2244 * - Go to a screen that's not the default, then all
2245 * apps, and launch and app, and go back
2246 * - with back
2247 * -with home
2248 * - On workspace, long press power and go back
2249 * - with back
2250 * - with home
2251 * - On all apps, long press power and go back
2252 * - with back
2253 * - with home
2254 * - On workspace, power off
2255 * - On all apps, power off
2256 * - Launch an app and turn off the screen while in that app
2257 * - Go back with home key
2258 * - Go back with back key TODO: make this not go to workspace
2259 * - From all apps
2260 * - From workspace
2261 * - Enter and exit car mode (becuase it causes an extra configuration changed)
2262 * - From all apps
2263 * - From the center workspace
2264 * - From another workspace
2265 */
2266
2267 /**
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002268 * Zoom the camera out from the workspace to reveal 'toView'.
2269 * Assumes that the view to show is anchored at either the very top or very bottom
2270 * of the screen.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002271 */
Michael Jurkabed61d22012-02-14 22:51:29 -08002272 private void showAppsCustomizeHelper(final boolean animated, final boolean springLoaded) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07002273 if (mStateAnimation != null) {
2274 mStateAnimation.cancel();
2275 mStateAnimation = null;
2276 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002277 final Resources res = getResources();
Adam Cohenf16e5712011-01-13 13:31:45 -08002278
Winson Chungf0ea4d32011-06-06 14:27:16 -07002279 final int duration = res.getInteger(R.integer.config_appsCustomizeZoomInTime);
2280 final int fadeDuration = res.getInteger(R.integer.config_appsCustomizeFadeInTime);
2281 final float scale = (float) res.getInteger(R.integer.config_appsCustomizeZoomScaleFactor);
Michael Jurkabed61d22012-02-14 22:51:29 -08002282 final View fromView = mWorkspace;
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002283 final AppsCustomizeTabHost toView = mAppsCustomizeTabHost;
Adam Cohencff6af82011-09-13 14:51:53 -07002284 final int startDelay =
2285 res.getInteger(R.integer.config_workspaceAppsCustomizeAnimationStagger);
Patrick Dubroy558654c2010-07-23 16:48:11 -07002286
Michael Jurkab3e22d92011-10-31 15:58:33 -07002287 setPivotsForZoom(toView, scale);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002288
Michael Jurkad74c9842011-07-10 12:44:21 -07002289 // Shrink workspaces away if going to AppsCustomize from workspace
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002290 Animator workspaceAnim =
2291 mWorkspace.getChangeStateAnimation(Workspace.State.SMALL, animated);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002292
2293 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08002294 toView.setScaleX(scale);
2295 toView.setScaleY(scale);
2296 final LauncherViewPropertyAnimator scaleAnim = new LauncherViewPropertyAnimator(toView);
2297 scaleAnim.
2298 scaleX(1f).scaleY(1f).
2299 setDuration(duration).
2300 setInterpolator(new Workspace.ZoomOutInterpolator());
Adam Cohen61033d32010-11-15 18:29:44 -08002301
Winson Chungf0ea4d32011-06-06 14:27:16 -07002302 toView.setVisibility(View.VISIBLE);
Adam Cohenc00f0b92011-12-06 19:45:06 -08002303 toView.setAlpha(0f);
Michael Jurka159b4cc2012-01-17 03:00:35 -08002304 final ObjectAnimator alphaAnim = ObjectAnimator
2305 .ofFloat(toView, "alpha", 0f, 1f)
2306 .setDuration(fadeDuration);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002307 alphaAnim.setInterpolator(new DecelerateInterpolator(1.5f));
Winson Chung70442722012-02-10 15:43:22 -08002308 alphaAnim.addUpdateListener(new AnimatorUpdateListener() {
2309 @Override
2310 public void onAnimationUpdate(ValueAnimator animation) {
2311 float t = (Float) animation.getAnimatedValue();
2312 dispatchOnLauncherTransitionStep(fromView, t);
2313 dispatchOnLauncherTransitionStep(toView, t);
2314 }
2315 });
Adam Cohenf16e5712011-01-13 13:31:45 -08002316
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002317 // toView should appear right at the end of the workspace shrink
2318 // animation
2319 mStateAnimation = new AnimatorSet();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002320 mStateAnimation.play(scaleAnim).after(startDelay);
Michael Jurka7407d2a2011-12-12 21:48:38 -08002321 mStateAnimation.play(alphaAnim).after(startDelay);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002322
2323 mStateAnimation.addListener(new AnimatorListenerAdapter() {
Adam Cohenf4ddea32011-09-12 13:46:42 -07002324 boolean animationCancelled = false;
2325
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002326 @Override
Chet Haaseb1254a62010-09-07 13:35:00 -07002327 public void onAnimationStart(Animator animation) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002328 updateWallpaperVisibility(true);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002329 // Prepare the position
2330 toView.setTranslationX(0.0f);
2331 toView.setTranslationY(0.0f);
2332 toView.setVisibility(View.VISIBLE);
Winson Chung785d2eb2011-04-14 16:08:02 -07002333 toView.bringToFront();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002334 }
Michael Jurka3c4c20f2010-10-28 15:36:06 -07002335 @Override
Michael Jurka8edd75c2010-12-17 20:15:06 -08002336 public void onAnimationEnd(Animator animation) {
Michael Jurkabed61d22012-02-14 22:51:29 -08002337 dispatchOnLauncherTransitionEnd(fromView, animated, false);
2338 dispatchOnLauncherTransitionEnd(toView, animated, false);
Winson Chung32174c82011-07-19 15:47:55 -07002339
2340 if (!springLoaded && !LauncherApplication.isScreenLarge()) {
2341 // Hide the workspace scrollbar
2342 mWorkspace.hideScrollingIndicator(true);
Michael Jurkab737ee62011-11-15 15:57:22 -08002343 hideDockDivider();
Winson Chung32174c82011-07-19 15:47:55 -07002344 }
Adam Cohenf4ddea32011-09-12 13:46:42 -07002345 if (!animationCancelled) {
2346 updateWallpaperVisibility(false);
2347 }
2348 }
2349
Adam Cohencff6af82011-09-13 14:51:53 -07002350 @Override
Adam Cohenf4ddea32011-09-12 13:46:42 -07002351 public void onAnimationCancel(Animator animation) {
2352 animationCancelled = true;
Michael Jurka3c4c20f2010-10-28 15:36:06 -07002353 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002354 });
2355
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002356 if (workspaceAnim != null) {
2357 mStateAnimation.play(workspaceAnim);
2358 }
Michael Jurka1899a362011-11-03 13:50:45 -07002359
2360 boolean delayAnim = false;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002361 final ViewTreeObserver observer;
2362
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002363 dispatchOnLauncherTransitionPrepare(fromView, animated, false);
2364 dispatchOnLauncherTransitionPrepare(toView, animated, false);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002365
2366 // If any of the objects being animated haven't been measured/laid out
2367 // yet, delay the animation until we get a layout pass
Michael Jurkabed61d22012-02-14 22:51:29 -08002368 if ((((LauncherTransitionable) toView).getContent().getMeasuredWidth() == 0) ||
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002369 (mWorkspace.getMeasuredWidth() == 0) ||
2370 (toView.getMeasuredWidth() == 0)) {
2371 observer = mWorkspace.getViewTreeObserver();
2372 delayAnim = true;
2373 } else {
2374 observer = null;
Michael Jurka1899a362011-11-03 13:50:45 -07002375 }
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002376
2377 if (delayAnim) {
Michael Jurka49779a12012-01-16 04:10:08 -08002378 final AnimatorSet stateAnimation = mStateAnimation;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002379 final OnGlobalLayoutListener delayedStart = new OnGlobalLayoutListener() {
2380 public void onGlobalLayout() {
2381 mWorkspace.post(new Runnable() {
2382 public void run() {
Michael Jurka49779a12012-01-16 04:10:08 -08002383 // Check that mStateAnimation hasn't changed while
2384 // we waited for a layout pass
2385 if (mStateAnimation == stateAnimation) {
2386 // Need to update pivots for zoom if layout changed
2387 setPivotsForZoom(toView, scale);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002388 dispatchOnLauncherTransitionStart(fromView, animated, false);
2389 dispatchOnLauncherTransitionStart(toView, animated, false);
Michael Jurka49779a12012-01-16 04:10:08 -08002390 mStateAnimation.start();
2391 }
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002392 }
2393 });
Michael Jurka3a9fced2012-04-13 14:44:29 -07002394 observer.removeOnGlobalLayoutListener(this);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002395 }
2396 };
2397 observer.addOnGlobalLayoutListener(delayedStart);
2398 } else {
2399 setPivotsForZoom(toView, scale);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002400 dispatchOnLauncherTransitionStart(fromView, animated, false);
2401 dispatchOnLauncherTransitionStart(toView, animated, false);
Michael Jurka1899a362011-11-03 13:50:45 -07002402 mStateAnimation.start();
2403 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002404 } else {
2405 toView.setTranslationX(0.0f);
2406 toView.setTranslationY(0.0f);
2407 toView.setScaleX(1.0f);
2408 toView.setScaleY(1.0f);
2409 toView.setVisibility(View.VISIBLE);
Winson Chung785d2eb2011-04-14 16:08:02 -07002410 toView.bringToFront();
Winson Chung3ac74c52011-06-30 17:39:37 -07002411
Michael Jurkabed61d22012-02-14 22:51:29 -08002412 if (!springLoaded && !LauncherApplication.isScreenLarge()) {
2413 // Hide the workspace scrollbar
2414 mWorkspace.hideScrollingIndicator(true);
2415 hideDockDivider();
Michael Jurkaabded662011-03-04 12:06:57 -08002416 }
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002417 dispatchOnLauncherTransitionPrepare(fromView, animated, false);
Michael Jurkabed61d22012-02-14 22:51:29 -08002418 dispatchOnLauncherTransitionStart(fromView, animated, false);
2419 dispatchOnLauncherTransitionEnd(fromView, animated, false);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002420 dispatchOnLauncherTransitionPrepare(toView, animated, false);
Michael Jurkabed61d22012-02-14 22:51:29 -08002421 dispatchOnLauncherTransitionStart(toView, animated, false);
2422 dispatchOnLauncherTransitionEnd(toView, animated, false);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002423 updateWallpaperVisibility(false);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002424 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002425 }
2426
2427 /**
2428 * Zoom the camera back into the workspace, hiding 'fromView'.
Michael Jurkab3e22d92011-10-31 15:58:33 -07002429 * This is the opposite of showAppsCustomizeHelper.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002430 * @param animated If true, the transition will be animated.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002431 */
Adam Cohened66b2b2012-01-23 17:28:51 -08002432 private void hideAppsCustomizeHelper(State toState, final boolean animated,
2433 final boolean springLoaded, final Runnable onCompleteRunnable) {
Michael Jurkabed61d22012-02-14 22:51:29 -08002434
Michael Jurkab3e22d92011-10-31 15:58:33 -07002435 if (mStateAnimation != null) {
2436 mStateAnimation.cancel();
2437 mStateAnimation = null;
2438 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002439 Resources res = getResources();
Adam Cohenf16e5712011-01-13 13:31:45 -08002440
Winson Chungf0ea4d32011-06-06 14:27:16 -07002441 final int duration = res.getInteger(R.integer.config_appsCustomizeZoomOutTime);
Michael Jurka159b4cc2012-01-17 03:00:35 -08002442 final int fadeOutDuration =
2443 res.getInteger(R.integer.config_appsCustomizeFadeOutTime);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002444 final float scaleFactor = (float)
2445 res.getInteger(R.integer.config_appsCustomizeZoomScaleFactor);
2446 final View fromView = mAppsCustomizeTabHost;
Michael Jurkabed61d22012-02-14 22:51:29 -08002447 final View toView = mWorkspace;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002448 Animator workspaceAnim = null;
2449
2450 if (toState == State.WORKSPACE) {
2451 int stagger = res.getInteger(R.integer.config_appsCustomizeWorkspaceAnimationStagger);
2452 workspaceAnim = mWorkspace.getChangeStateAnimation(
2453 Workspace.State.NORMAL, animated, stagger);
2454 } else if (toState == State.APPS_CUSTOMIZE_SPRING_LOADED) {
2455 workspaceAnim = mWorkspace.getChangeStateAnimation(
2456 Workspace.State.SPRING_LOADED, animated);
2457 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07002458
Michael Jurkab3e22d92011-10-31 15:58:33 -07002459 setPivotsForZoom(fromView, scaleFactor);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002460 updateWallpaperVisibility(true);
Winson Chung4afe9b32011-07-27 17:46:20 -07002461 showHotseat(animated);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002462 if (animated) {
Michael Jurka159b4cc2012-01-17 03:00:35 -08002463 final LauncherViewPropertyAnimator scaleAnim =
2464 new LauncherViewPropertyAnimator(fromView);
2465 scaleAnim.
2466 scaleX(scaleFactor).scaleY(scaleFactor).
2467 setDuration(duration).
2468 setInterpolator(new Workspace.ZoomInInterpolator());
2469
2470 final ObjectAnimator alphaAnim = ObjectAnimator
2471 .ofFloat(fromView, "alpha", 1f, 0f)
2472 .setDuration(fadeOutDuration);
Adam Cohencff6af82011-09-13 14:51:53 -07002473 alphaAnim.setInterpolator(new AccelerateDecelerateInterpolator());
Winson Chung70442722012-02-10 15:43:22 -08002474 alphaAnim.addUpdateListener(new AnimatorUpdateListener() {
2475 @Override
2476 public void onAnimationUpdate(ValueAnimator animation) {
2477 float t = 1f - (Float) animation.getAnimatedValue();
2478 dispatchOnLauncherTransitionStep(fromView, t);
2479 dispatchOnLauncherTransitionStep(toView, t);
2480 }
2481 });
Michael Jurka159b4cc2012-01-17 03:00:35 -08002482
Michael Jurkabed61d22012-02-14 22:51:29 -08002483 mStateAnimation = new AnimatorSet();
2484
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002485 dispatchOnLauncherTransitionPrepare(fromView, animated, true);
2486 dispatchOnLauncherTransitionPrepare(toView, animated, true);
Michael Jurkabed61d22012-02-14 22:51:29 -08002487
2488 mStateAnimation.addListener(new AnimatorListenerAdapter() {
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002489 @Override
Michael Jurka8edd75c2010-12-17 20:15:06 -08002490 public void onAnimationEnd(Animator animation) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002491 updateWallpaperVisibility(true);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002492 fromView.setVisibility(View.GONE);
Michael Jurkabed61d22012-02-14 22:51:29 -08002493 dispatchOnLauncherTransitionEnd(fromView, animated, true);
2494 dispatchOnLauncherTransitionEnd(toView, animated, true);
Michael Jurkabafdaaf2012-04-26 13:43:25 -07002495 if (mWorkspace != null) {
2496 mWorkspace.hideScrollingIndicator(false);
2497 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002498 if (onCompleteRunnable != null) {
2499 onCompleteRunnable.run();
2500 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002501 }
2502 });
2503
Winson Chungf0ea4d32011-06-06 14:27:16 -07002504 mStateAnimation.playTogether(scaleAnim, alphaAnim);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002505 if (workspaceAnim != null) {
2506 mStateAnimation.play(workspaceAnim);
2507 }
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002508 dispatchOnLauncherTransitionStart(fromView, animated, true);
2509 dispatchOnLauncherTransitionStart(toView, animated, true);
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002510 mStateAnimation.start();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002511 } else {
2512 fromView.setVisibility(View.GONE);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002513 dispatchOnLauncherTransitionPrepare(fromView, animated, true);
Michael Jurkabed61d22012-02-14 22:51:29 -08002514 dispatchOnLauncherTransitionStart(fromView, animated, true);
2515 dispatchOnLauncherTransitionEnd(fromView, animated, true);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002516 dispatchOnLauncherTransitionPrepare(toView, animated, true);
Michael Jurkabed61d22012-02-14 22:51:29 -08002517 dispatchOnLauncherTransitionStart(toView, animated, true);
2518 dispatchOnLauncherTransitionEnd(toView, animated, true);
Michael Jurkab737ee62011-11-15 15:57:22 -08002519 mWorkspace.hideScrollingIndicator(false);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002520 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002521 }
2522
Michael Jurkae326f182011-11-21 14:05:46 -08002523 @Override
2524 public void onTrimMemory(int level) {
2525 super.onTrimMemory(level);
Winson Chungc7450e32012-04-17 17:34:08 -07002526 if (level >= ComponentCallbacks2.TRIM_MEMORY_MODERATE) {
Michael Jurkae326f182011-11-21 14:05:46 -08002527 mAppsCustomizeTabHost.onTrimMemory();
2528 }
2529 }
2530
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002531 void showWorkspace(boolean animated) {
Adam Cohened66b2b2012-01-23 17:28:51 -08002532 showWorkspace(animated, null);
2533 }
2534
2535 void showWorkspace(boolean animated, Runnable onCompleteRunnable) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07002536 if (mState != State.WORKSPACE) {
2537 mWorkspace.setVisibility(View.VISIBLE);
Adam Cohened66b2b2012-01-23 17:28:51 -08002538 hideAppsCustomizeHelper(State.WORKSPACE, animated, false, onCompleteRunnable);
Michael Jurkab3e22d92011-10-31 15:58:33 -07002539
2540 // Show the search bar and hotseat
2541 mSearchDropTargetBar.showSearchBar(animated);
Michael Jurkab737ee62011-11-15 15:57:22 -08002542 // We only need to animate in the dock divider if we're going from spring loaded mode
2543 showDockDivider(animated && mState == State.APPS_CUSTOMIZE_SPRING_LOADED);
Michael Jurkab3e22d92011-10-31 15:58:33 -07002544
2545 // Set focus to the AppsCustomize button
2546 if (mAllAppsButton != null) {
2547 mAllAppsButton.requestFocus();
2548 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002549 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07002550
Michael Jurkab737ee62011-11-15 15:57:22 -08002551 mWorkspace.flashScrollingIndicator(animated);
Adam Cohen7777d962011-08-18 18:58:38 -07002552
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002553 // Change the state *after* we've called all the transition code
2554 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08002555
Winson Chung5fb63472011-02-02 17:03:37 -08002556 // Resume the auto-advance of widgets
2557 mUserPresent = true;
2558 updateRunning();
2559
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08002560 // send an accessibility event to announce the context change
2561 getWindow().getDecorView().sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_SELECTED);
Joe Onorato00acb122009-08-04 16:04:30 -04002562 }
2563
Michael Jurkab3e22d92011-10-31 15:58:33 -07002564 void showAllApps(boolean animated) {
2565 if (mState != State.WORKSPACE) return;
2566
2567 showAppsCustomizeHelper(animated, false);
2568 mAppsCustomizeTabHost.requestFocus();
2569
2570 // Hide the search bar and hotseat
2571 mSearchDropTargetBar.hideSearchBar(animated);
2572
2573 // Change the state *after* we've called all the transition code
2574 mState = State.APPS_CUSTOMIZE;
2575
2576 // Pause the auto-advance of widgets until we are out of AllApps
2577 mUserPresent = false;
2578 updateRunning();
2579 closeFolder();
2580
2581 // Send an accessibility event to announce the context change
2582 getWindow().getDecorView().sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_SELECTED);
2583 }
2584
Adam Cohen7777d962011-08-18 18:58:38 -07002585 void enterSpringLoadedDragMode() {
Winson Chungb26f3d62011-06-02 10:49:29 -07002586 if (mState == State.APPS_CUSTOMIZE) {
Adam Cohened66b2b2012-01-23 17:28:51 -08002587 hideAppsCustomizeHelper(State.APPS_CUSTOMIZE_SPRING_LOADED, true, true, null);
Michael Jurkab737ee62011-11-15 15:57:22 -08002588 hideDockDivider();
Winson Chungc07918d2011-07-01 15:35:26 -07002589 mState = State.APPS_CUSTOMIZE_SPRING_LOADED;
Winson Chungb26f3d62011-06-02 10:49:29 -07002590 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08002591 }
Adam Cohen7777d962011-08-18 18:58:38 -07002592
Adam Cohened66b2b2012-01-23 17:28:51 -08002593 void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, boolean extendedDelay,
2594 final Runnable onCompleteRunnable) {
Winson Chung09bfc452011-09-09 11:30:20 -07002595 if (mState != State.APPS_CUSTOMIZE_SPRING_LOADED) return;
2596
Winson Chunge7a03942011-08-05 15:05:12 -07002597 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07002598 @Override
2599 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07002600 if (successfulDrop) {
Michael Jurka7bdb25a2011-08-03 15:16:44 -07002601 // Before we show workspace, hide all apps again because
2602 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
2603 // clean up our state transition functions
2604 mAppsCustomizeTabHost.setVisibility(View.GONE);
Winson Chungc51db6a2011-10-05 11:44:49 -07002605 mSearchDropTargetBar.showSearchBar(true);
Adam Cohened66b2b2012-01-23 17:28:51 -08002606 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07002607 } else {
2608 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07002609 }
Winson Chung557d6ed2011-07-08 15:34:52 -07002610 }
2611 }, (extendedDelay ?
2612 EXIT_SPRINGLOADED_MODE_LONG_TIMEOUT :
2613 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT));
2614 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07002615
Michael Jurkad3ef3062010-11-23 16:23:58 -08002616 void exitSpringLoadedDragMode() {
Winson Chungb26f3d62011-06-02 10:49:29 -07002617 if (mState == State.APPS_CUSTOMIZE_SPRING_LOADED) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07002618 final boolean animated = true;
2619 final boolean springLoaded = true;
2620 showAppsCustomizeHelper(animated, springLoaded);
Winson Chungb26f3d62011-06-02 10:49:29 -07002621 mState = State.APPS_CUSTOMIZE;
Winson Chungf0ea4d32011-06-06 14:27:16 -07002622 }
2623 // Otherwise, we are not in spring loaded mode, so don't do anything.
2624 }
2625
Michael Jurkab737ee62011-11-15 15:57:22 -08002626 void hideDockDivider() {
2627 if (mQsbDivider != null && mDockDivider != null) {
2628 mQsbDivider.setVisibility(View.INVISIBLE);
2629 mDockDivider.setVisibility(View.INVISIBLE);
2630 }
2631 }
2632
2633 void showDockDivider(boolean animated) {
2634 if (mQsbDivider != null && mDockDivider != null) {
2635 mQsbDivider.setVisibility(View.VISIBLE);
2636 mDockDivider.setVisibility(View.VISIBLE);
2637 if (mDividerAnimator != null) {
2638 mDividerAnimator.cancel();
2639 mQsbDivider.setAlpha(1f);
2640 mDockDivider.setAlpha(1f);
2641 mDividerAnimator = null;
2642 }
2643 if (animated) {
2644 mDividerAnimator = new AnimatorSet();
2645 mDividerAnimator.playTogether(ObjectAnimator.ofFloat(mQsbDivider, "alpha", 1f),
2646 ObjectAnimator.ofFloat(mDockDivider, "alpha", 1f));
2647 mDividerAnimator.setDuration(mSearchDropTargetBar.getTransitionInDuration());
2648 mDividerAnimator.start();
2649 }
2650 }
2651 }
2652
Michael Jurkab3e22d92011-10-31 15:58:33 -07002653 void lockAllApps() {
2654 // TODO
2655 }
2656
2657 void unlockAllApps() {
2658 // TODO
2659 }
2660
Adam Cohenfc53cd22011-07-20 15:45:11 -07002661 public boolean isAllAppsCustomizeOpen() {
2662 return mState == State.APPS_CUSTOMIZE;
2663 }
2664
Winson Chungf0ea4d32011-06-06 14:27:16 -07002665 /**
Winson Chung3d503fb2011-07-13 17:25:49 -07002666 * Shows the hotseat area.
Winson Chungf0ea4d32011-06-06 14:27:16 -07002667 */
Winson Chung3d503fb2011-07-13 17:25:49 -07002668 void showHotseat(boolean animated) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07002669 if (!LauncherApplication.isScreenLarge()) {
2670 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08002671 if (mHotseat.getAlpha() != 1f) {
2672 int duration = mSearchDropTargetBar.getTransitionInDuration();
2673 mHotseat.animate().alpha(1f).setDuration(duration);
2674 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002675 } else {
Winson Chung3d503fb2011-07-13 17:25:49 -07002676 mHotseat.setAlpha(1f);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002677 }
2678 }
2679 }
2680
2681 /**
Winson Chung3d503fb2011-07-13 17:25:49 -07002682 * Hides the hotseat area.
Winson Chungf0ea4d32011-06-06 14:27:16 -07002683 */
Winson Chung3d503fb2011-07-13 17:25:49 -07002684 void hideHotseat(boolean animated) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07002685 if (!LauncherApplication.isScreenLarge()) {
2686 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08002687 if (mHotseat.getAlpha() != 0f) {
2688 int duration = mSearchDropTargetBar.getTransitionOutDuration();
2689 mHotseat.animate().alpha(0f).setDuration(duration);
2690 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002691 } else {
Winson Chung3d503fb2011-07-13 17:25:49 -07002692 mHotseat.setAlpha(0f);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002693 }
Winson Chungb26f3d62011-06-02 10:49:29 -07002694 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08002695 }
2696
Patrick Dubroy5f445422011-02-18 14:35:21 -08002697 /**
2698 * Add an item from all apps or customize onto the given workspace screen.
2699 * If layout is null, add to the current screen.
2700 */
2701 void addExternalItemToScreen(ItemInfo itemInfo, final CellLayout layout) {
Michael Jurka6b4b25d2010-10-20 18:19:45 -07002702 if (!mWorkspace.addExternalItemToScreen(itemInfo, layout)) {
Winson Chung93eef082012-03-23 15:59:27 -07002703 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka213d9632010-07-28 11:29:25 -07002704 }
Michael Jurka6b4b25d2010-10-20 18:19:45 -07002705 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07002706
Winson Chungdff8ebb2011-09-08 17:25:31 -07002707 /** Maps the current orientation to an index for referencing orientation correct global icons */
2708 private int getCurrentOrientationIndexForGlobalIcons() {
2709 // default - 0, landscape - 1
2710 switch (getResources().getConfiguration().orientation) {
2711 case Configuration.ORIENTATION_LANDSCAPE:
2712 return 1;
2713 default:
2714 return 0;
2715 }
2716 }
2717
Michael Jurkaae65ee32012-04-30 11:45:54 -07002718 private Drawable getExternalPackageToolbarIcon(ComponentName activityName, String resourceName) {
Michael Jurka0423dcf2010-10-05 14:56:18 -07002719 try {
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002720 PackageManager packageManager = getPackageManager();
Michael Jurka0423dcf2010-10-05 14:56:18 -07002721 // Look for the toolbar icon specified in the activity meta-data
2722 Bundle metaData = packageManager.getActivityInfo(
2723 activityName, PackageManager.GET_META_DATA).metaData;
2724 if (metaData != null) {
Michael Jurkaae65ee32012-04-30 11:45:54 -07002725 int iconResId = metaData.getInt(resourceName);
Michael Jurka0423dcf2010-10-05 14:56:18 -07002726 if (iconResId != 0) {
2727 Resources res = packageManager.getResourcesForActivity(activityName);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002728 return res.getDrawable(iconResId);
Michael Jurka0423dcf2010-10-05 14:56:18 -07002729 }
2730 }
2731 } catch (NameNotFoundException e) {
Michael Jurkab6052a92011-07-12 17:02:45 -07002732 // This can happen if the activity defines an invalid drawable
2733 Log.w(TAG, "Failed to load toolbar icon; " + activityName.flattenToShortString() +
2734 " not found", e);
Mathew Inwood70d51022011-07-12 13:41:41 +01002735 } catch (Resources.NotFoundException nfe) {
2736 // This can happen if the activity defines an invalid drawable
2737 Log.w(TAG, "Failed to load toolbar icon from " + activityName.flattenToShortString(),
2738 nfe);
Michael Jurka0423dcf2010-10-05 14:56:18 -07002739 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002740 return null;
2741 }
2742
2743 // if successful in getting icon, return it; otherwise, set button to use default drawable
2744 private Drawable.ConstantState updateTextButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07002745 int buttonId, ComponentName activityName, int fallbackDrawableId,
2746 String toolbarResourceName) {
2747 Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName, toolbarResourceName);
Winson Chung128bbcd2011-08-31 16:58:52 -07002748 Resources r = getResources();
2749 int w = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_width);
2750 int h = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_height);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002751
Michael Jurka4da7a3e2011-10-28 15:04:35 -07002752 TextView button = (TextView) findViewById(buttonId);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002753 // If we were unable to find the icon via the meta-data, use a generic one
2754 if (toolbarIcon == null) {
Winson Chung128bbcd2011-08-31 16:58:52 -07002755 toolbarIcon = r.getDrawable(fallbackDrawableId);
2756 toolbarIcon.setBounds(0, 0, w, h);
Michael Jurka4da7a3e2011-10-28 15:04:35 -07002757 if (button != null) {
2758 button.setCompoundDrawables(toolbarIcon, null, null, null);
2759 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002760 return null;
2761 } else {
Winson Chung128bbcd2011-08-31 16:58:52 -07002762 toolbarIcon.setBounds(0, 0, w, h);
Michael Jurka4da7a3e2011-10-28 15:04:35 -07002763 if (button != null) {
2764 button.setCompoundDrawables(toolbarIcon, null, null, null);
2765 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002766 return toolbarIcon.getConstantState();
2767 }
2768 }
2769
2770 // if successful in getting icon, return it; otherwise, set button to use default drawable
2771 private Drawable.ConstantState updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07002772 int buttonId, ComponentName activityName, int fallbackDrawableId,
2773 String toolbarResourceName) {
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002774 ImageView button = (ImageView) findViewById(buttonId);
Michael Jurkaae65ee32012-04-30 11:45:54 -07002775 Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName, toolbarResourceName);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002776
Michael Jurka19e0fc52011-07-22 18:00:21 -07002777 if (button != null) {
2778 // If we were unable to find the icon via the meta-data, use a
2779 // generic one
2780 if (toolbarIcon == null) {
2781 button.setImageResource(fallbackDrawableId);
2782 } else {
2783 button.setImageDrawable(toolbarIcon);
2784 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07002785 }
Michael Jurka19e0fc52011-07-22 18:00:21 -07002786
2787 return toolbarIcon != null ? toolbarIcon.getConstantState() : null;
2788
Michael Jurka0423dcf2010-10-05 14:56:18 -07002789 }
2790
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002791 private void updateTextButtonWithDrawable(int buttonId, Drawable.ConstantState d) {
2792 TextView button = (TextView) findViewById(buttonId);
2793 button.setCompoundDrawables(d.newDrawable(getResources()), null, null, null);
2794 }
2795
Michael Jurkae7bf83b2010-12-14 18:02:21 -08002796 private void updateButtonWithDrawable(int buttonId, Drawable.ConstantState d) {
Michael Jurka4ef207b2010-11-29 17:05:45 -08002797 ImageView button = (ImageView) findViewById(buttonId);
Michael Jurkae7bf83b2010-12-14 18:02:21 -08002798 button.setImageDrawable(d.newDrawable(getResources()));
Michael Jurka4ef207b2010-11-29 17:05:45 -08002799 }
2800
Winson Chungbb185bd2011-11-21 12:31:42 -08002801 private void invalidatePressedFocusedStates(View container, View button) {
2802 if (container instanceof HolographicLinearLayout) {
2803 HolographicLinearLayout layout = (HolographicLinearLayout) container;
2804 layout.invalidatePressedFocusedStates();
2805 } else if (button instanceof HolographicImageView) {
2806 HolographicImageView view = (HolographicImageView) button;
2807 view.invalidatePressedFocusedStates();
2808 }
2809 }
2810
Winson Chungc51db6a2011-10-05 11:44:49 -07002811 private boolean updateGlobalSearchIcon() {
2812 final View searchButtonContainer = findViewById(R.id.search_button_container);
Winson Chung1cad91e2011-05-25 17:41:01 -07002813 final ImageView searchButton = (ImageView) findViewById(R.id.search_button);
2814 final View searchDivider = findViewById(R.id.search_divider);
Winson Chungc51db6a2011-10-05 11:44:49 -07002815 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
Winson Chungcbf7c4d2011-08-23 11:58:54 -07002816 final View voiceButton = findViewById(R.id.voice_button);
Winson Chunge3fbfa92012-04-24 14:34:28 -07002817 final View voiceButtonProxy = findViewById(R.id.voice_button_proxy);
Winson Chung97d85d22011-04-13 11:27:36 -07002818
Winson Chung1cad91e2011-05-25 17:41:01 -07002819 final SearchManager searchManager =
2820 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2821 ComponentName activityName = searchManager.getGlobalSearchActivity();
2822 if (activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07002823 int coi = getCurrentOrientationIndexForGlobalIcons();
2824 sGlobalSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07002825 R.id.search_button, activityName, R.drawable.ic_home_search_normal_holo,
2826 TOOLBAR_SEARCH_ICON_METADATA_NAME);
2827 if (sGlobalSearchIcon[coi] == null) {
2828 sGlobalSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
2829 R.id.search_button, activityName, R.drawable.ic_home_search_normal_holo,
2830 TOOLBAR_ICON_METADATA_NAME);
2831 }
2832
Winson Chung649723c2011-07-06 20:41:23 -07002833 if (searchDivider != null) searchDivider.setVisibility(View.VISIBLE);
Winson Chungc51db6a2011-10-05 11:44:49 -07002834 if (searchButtonContainer != null) searchButtonContainer.setVisibility(View.VISIBLE);
2835 searchButton.setVisibility(View.VISIBLE);
Winson Chungbb185bd2011-11-21 12:31:42 -08002836 invalidatePressedFocusedStates(searchButtonContainer, searchButton);
Winson Chungc51db6a2011-10-05 11:44:49 -07002837 return true;
Winson Chung1cad91e2011-05-25 17:41:01 -07002838 } else {
Winson Chungcbf7c4d2011-08-23 11:58:54 -07002839 // We disable both search and voice search when there is no global search provider
Winson Chung649723c2011-07-06 20:41:23 -07002840 if (searchDivider != null) searchDivider.setVisibility(View.GONE);
Winson Chungc51db6a2011-10-05 11:44:49 -07002841 if (searchButtonContainer != null) searchButtonContainer.setVisibility(View.GONE);
2842 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.GONE);
2843 searchButton.setVisibility(View.GONE);
Winson Chungcbf7c4d2011-08-23 11:58:54 -07002844 voiceButton.setVisibility(View.GONE);
Winson Chunge3fbfa92012-04-24 14:34:28 -07002845 voiceButtonProxy.setVisibility(View.GONE);
Winson Chungc51db6a2011-10-05 11:44:49 -07002846 return false;
Amith Yamasani6d7fe502010-11-16 09:05:07 -08002847 }
2848 }
2849
Michael Jurkae7bf83b2010-12-14 18:02:21 -08002850 private void updateGlobalSearchIcon(Drawable.ConstantState d) {
Winson Chungbb185bd2011-11-21 12:31:42 -08002851 final View searchButtonContainer = findViewById(R.id.search_button_container);
2852 final View searchButton = (ImageView) findViewById(R.id.search_button);
Michael Jurka4ef207b2010-11-29 17:05:45 -08002853 updateButtonWithDrawable(R.id.search_button, d);
Winson Chungbb185bd2011-11-21 12:31:42 -08002854 invalidatePressedFocusedStates(searchButtonContainer, searchButton);
Michael Jurka4ef207b2010-11-29 17:05:45 -08002855 }
2856
Winson Chungc51db6a2011-10-05 11:44:49 -07002857 private boolean updateVoiceSearchIcon(boolean searchVisible) {
Winson Chung1cad91e2011-05-25 17:41:01 -07002858 final View searchDivider = findViewById(R.id.search_divider);
Winson Chungc51db6a2011-10-05 11:44:49 -07002859 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
Winson Chung1cad91e2011-05-25 17:41:01 -07002860 final View voiceButton = findViewById(R.id.voice_button);
Winson Chunge3fbfa92012-04-24 14:34:28 -07002861 final View voiceButtonProxy = findViewById(R.id.voice_button_proxy);
Winson Chung97d85d22011-04-13 11:27:36 -07002862
Winson Chungc51db6a2011-10-05 11:44:49 -07002863 // We only show/update the voice search icon if the search icon is enabled as well
Michael Jurkaae65ee32012-04-30 11:45:54 -07002864 final SearchManager searchManager =
2865 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2866 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
2867
2868 ComponentName activityName = null;
2869 if (globalSearchActivity != null) {
2870 // Check if the global search activity handles voice search
2871 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
2872 intent.setPackage(globalSearchActivity.getPackageName());
2873 activityName = intent.resolveActivity(getPackageManager());
2874 }
2875
2876 if (activityName == null) {
2877 // Fallback: check if an activity other than the global search activity
2878 // resolves this
2879 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
2880 activityName = intent.resolveActivity(getPackageManager());
2881 }
Winson Chungc51db6a2011-10-05 11:44:49 -07002882 if (searchVisible && activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07002883 int coi = getCurrentOrientationIndexForGlobalIcons();
2884 sVoiceSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07002885 R.id.voice_button, activityName, R.drawable.ic_home_voice_search_holo,
2886 TOOLBAR_VOICE_SEARCH_ICON_METADATA_NAME);
2887 if (sVoiceSearchIcon[coi] == null) {
2888 sVoiceSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
2889 R.id.voice_button, activityName, R.drawable.ic_home_voice_search_holo,
2890 TOOLBAR_ICON_METADATA_NAME);
2891 }
Winson Chung649723c2011-07-06 20:41:23 -07002892 if (searchDivider != null) searchDivider.setVisibility(View.VISIBLE);
Winson Chungc51db6a2011-10-05 11:44:49 -07002893 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.VISIBLE);
Winson Chung1cad91e2011-05-25 17:41:01 -07002894 voiceButton.setVisibility(View.VISIBLE);
Jim Miller14091b12012-04-24 19:27:54 -07002895 if (voiceButtonProxy != null) {
2896 voiceButtonProxy.setVisibility(View.VISIBLE);
2897 }
Winson Chungbb185bd2011-11-21 12:31:42 -08002898 invalidatePressedFocusedStates(voiceButtonContainer, voiceButton);
Winson Chungc51db6a2011-10-05 11:44:49 -07002899 return true;
Winson Chung1cad91e2011-05-25 17:41:01 -07002900 } else {
Winson Chung649723c2011-07-06 20:41:23 -07002901 if (searchDivider != null) searchDivider.setVisibility(View.GONE);
Winson Chungc51db6a2011-10-05 11:44:49 -07002902 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.GONE);
Winson Chung1cad91e2011-05-25 17:41:01 -07002903 voiceButton.setVisibility(View.GONE);
Jim Miller14091b12012-04-24 19:27:54 -07002904 if (voiceButtonProxy != null) {
2905 voiceButtonProxy.setVisibility(View.GONE);
2906 }
Winson Chungc51db6a2011-10-05 11:44:49 -07002907 return false;
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002908 }
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07002909 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07002910
Michael Jurkae7bf83b2010-12-14 18:02:21 -08002911 private void updateVoiceSearchIcon(Drawable.ConstantState d) {
Winson Chungbb185bd2011-11-21 12:31:42 -08002912 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
2913 final View voiceButton = findViewById(R.id.voice_button);
Michael Jurka4ef207b2010-11-29 17:05:45 -08002914 updateButtonWithDrawable(R.id.voice_button, d);
Winson Chungbb185bd2011-11-21 12:31:42 -08002915 invalidatePressedFocusedStates(voiceButtonContainer, voiceButton);
Michael Jurka4ef207b2010-11-29 17:05:45 -08002916 }
2917
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07002918 /**
Winson Chungeb66b142011-06-16 13:14:22 -07002919 * Sets the app market icon
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07002920 */
2921 private void updateAppMarketIcon() {
Winson Chung785d2eb2011-04-14 16:08:02 -07002922 final View marketButton = findViewById(R.id.market_button);
2923 Intent intent = new Intent(Intent.ACTION_MAIN).addCategory(Intent.CATEGORY_APP_MARKET);
2924 // Find the app market activity by resolving an intent.
2925 // (If multiple app markets are installed, it will return the ResolverActivity.)
2926 ComponentName activityName = intent.resolveActivity(getPackageManager());
Winson Chung6a26e5b2011-05-26 14:36:06 -07002927 if (activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07002928 int coi = getCurrentOrientationIndexForGlobalIcons();
Winson Chung785d2eb2011-04-14 16:08:02 -07002929 mAppMarketIntent = intent;
Winson Chungdff8ebb2011-09-08 17:25:31 -07002930 sAppMarketIcon[coi] = updateTextButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07002931 R.id.market_button, activityName, R.drawable.ic_launcher_market_holo,
2932 TOOLBAR_ICON_METADATA_NAME);
Winson Chung785d2eb2011-04-14 16:08:02 -07002933 marketButton.setVisibility(View.VISIBLE);
2934 } else {
2935 // We should hide and disable the view so that we don't try and restore the visibility
2936 // of it when we swap between drag & normal states from IconDropTarget subclasses.
2937 marketButton.setVisibility(View.GONE);
2938 marketButton.setEnabled(false);
Michael Jurka0423dcf2010-10-05 14:56:18 -07002939 }
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002940 }
2941
Michael Jurkae7bf83b2010-12-14 18:02:21 -08002942 private void updateAppMarketIcon(Drawable.ConstantState d) {
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002943 updateTextButtonWithDrawable(R.id.market_button, d);
Michael Jurka4ef207b2010-11-29 17:05:45 -08002944 }
2945
Michael Jurkad7c28052012-04-27 15:43:36 -07002946 @Override
2947 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
2948 boolean result = super.dispatchPopulateAccessibilityEvent(event);
2949 final List<CharSequence> text = event.getText();
2950 text.clear();
2951 text.add(getString(R.string.home));
2952 return result;
2953 }
2954
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002955 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07002956 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08002957 */
2958 private class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
2959 @Override
2960 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08002961 closeSystemDialogs();
2962 }
2963 }
2964
2965 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002966 * Receives notifications whenever the appwidgets are reset.
2967 */
2968 private class AppWidgetResetObserver extends ContentObserver {
2969 public AppWidgetResetObserver() {
2970 super(new Handler());
2971 }
2972
2973 @Override
2974 public void onChange(boolean selfChange) {
2975 onAppWidgetReset();
2976 }
2977 }
2978
2979 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07002980 * If the activity is currently paused, signal that we need to re-run the loader
2981 * in onResume.
2982 *
2983 * This needs to be called from incoming places where resources might have been loaded
2984 * while we are paused. That is becaues the Configuration might be wrong
2985 * when we're not running, and if it comes back to what it was when we
2986 * were paused, we are not restarted.
2987 *
2988 * Implementation of the method from LauncherModel.Callbacks.
2989 *
2990 * @return true if we are currently paused. The caller might be able to
2991 * skip some work in that case since we will come back again.
2992 */
2993 public boolean setLoadOnResume() {
2994 if (mPaused) {
2995 Log.i(TAG, "setLoadOnResume");
2996 mOnResumeNeedsLoad = true;
2997 return true;
2998 } else {
2999 return false;
3000 }
3001 }
3002
3003 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003004 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003005 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003006 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003007 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003008 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003009 } else {
3010 return SCREEN_COUNT / 2;
3011 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003012 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003013
Joe Onorato9c1289c2009-08-17 11:03:03 -04003014 /**
3015 * Refreshes the shortcuts shown on the workspace.
3016 *
3017 * Implementation of the method from LauncherModel.Callbacks.
3018 */
3019 public void startBinding() {
3020 final Workspace workspace = mWorkspace;
Adam Cohendf035382011-04-11 17:22:04 -07003021
Winson Chungf0c6ae02012-03-21 16:10:31 -07003022 mNewShortcutAnimatePage = -1;
3023 mNewShortcutAnimateViews.clear();
Adam Cohendf035382011-04-11 17:22:04 -07003024 mWorkspace.clearDropTargets();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003025 int count = workspace.getChildCount();
3026 for (int i = 0; i < count; i++) {
Joe Onorato3c2f7e12009-10-31 19:17:31 -04003027 // Use removeAllViewsInLayout() to avoid an extra requestLayout() and invalidate().
Winson Chung7a25a9e2011-01-30 13:33:56 -08003028 final CellLayout layoutParent = (CellLayout) workspace.getChildAt(i);
3029 layoutParent.removeAllViewsInLayout();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003030 }
Michael Jurka05bf644e2011-11-30 20:28:53 -08003031 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003032 if (mHotseat != null) {
3033 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003034 }
3035 }
3036
3037 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003038 * Bind the items start-end from the list.
3039 *
3040 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003041 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003042 public void bindItems(ArrayList<ItemInfo> shortcuts, int start, int end) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003043 setLoadOnResume();
3044
Winson Chungf0c6ae02012-03-21 16:10:31 -07003045 // Get the list of added shortcuts and intersect them with the set of shortcuts here
3046 Set<String> newApps = new HashSet<String>();
3047 newApps = mSharedPrefs.getStringSet(InstallShortcutReceiver.NEW_APPS_LIST_KEY, newApps);
3048
3049 Workspace workspace = mWorkspace;
3050 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003051 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003052
3053 // Short circuit if we are loading dock items for a configuration which has no dock
3054 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3055 mHotseat == null) {
3056 continue;
3057 }
3058
Joe Onorato9c1289c2009-08-17 11:03:03 -04003059 switch (item.itemType) {
3060 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3061 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07003062 ShortcutInfo info = (ShortcutInfo) item;
3063 String uri = info.intent.toUri(0).toString();
3064 View shortcut = createShortcut(info);
Winson Chung3d503fb2011-07-13 17:25:49 -07003065 workspace.addInScreen(shortcut, item.container, item.screen, item.cellX,
3066 item.cellY, 1, 1, false);
Winson Chungf0c6ae02012-03-21 16:10:31 -07003067 if (newApps.contains(uri)) {
3068 newApps.remove(uri);
3069
3070 // Prepare the view to be animated up
3071 shortcut.setAlpha(0f);
3072 shortcut.setScaleX(0f);
3073 shortcut.setScaleY(0f);
3074 mNewShortcutAnimatePage = item.screen;
3075 if (!mNewShortcutAnimateViews.contains(shortcut)) {
3076 mNewShortcutAnimateViews.add(shortcut);
3077 }
3078 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003079 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003080 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Winson Chung3d503fb2011-07-13 17:25:49 -07003081 FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003082 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003083 (FolderInfo) item, mIconCache);
Winson Chung3d503fb2011-07-13 17:25:49 -07003084 workspace.addInScreen(newFolder, item.container, item.screen, item.cellX,
3085 item.cellY, 1, 1, false);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003086 break;
Joe Onorato9c1289c2009-08-17 11:03:03 -04003087 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003088 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003089
Joe Onorato9c1289c2009-08-17 11:03:03 -04003090 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003091 }
3092
Joe Onorato9c1289c2009-08-17 11:03:03 -04003093 /**
3094 * Implementation of the method from LauncherModel.Callbacks.
3095 */
Joe Onoratoad72e172009-11-06 16:25:04 -05003096 public void bindFolders(HashMap<Long, FolderInfo> folders) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003097 setLoadOnResume();
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07003098 sFolders.clear();
3099 sFolders.putAll(folders);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003100 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003101
3102 /**
3103 * Add the views for a widget to the workspace.
3104 *
3105 * Implementation of the method from LauncherModel.Callbacks.
3106 */
3107 public void bindAppWidget(LauncherAppWidgetInfo item) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003108 setLoadOnResume();
3109
Daniel Sandler843e8602010-06-07 14:59:01 -04003110 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
3111 if (DEBUG_WIDGETS) {
3112 Log.d(TAG, "bindAppWidget: " + item);
3113 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003114 final Workspace workspace = mWorkspace;
3115
3116 final int appWidgetId = item.appWidgetId;
3117 final AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
Daniel Sandler843e8602010-06-07 14:59:01 -04003118 if (DEBUG_WIDGETS) {
3119 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component " + appWidgetInfo.provider);
3120 }
3121
Joe Onorato9c1289c2009-08-17 11:03:03 -04003122 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
3123
Joe Onorato9c1289c2009-08-17 11:03:03 -04003124 item.hostView.setAppWidget(appWidgetId, appWidgetInfo);
3125 item.hostView.setTag(item);
3126
Winson Chung3d503fb2011-07-13 17:25:49 -07003127 workspace.addInScreen(item.hostView, item.container, item.screen, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04003128 item.cellY, item.spanX, item.spanY, false);
3129
Adam Cohended9f8d2010-11-03 13:25:16 -07003130 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
3131
Joe Onorato9c1289c2009-08-17 11:03:03 -04003132 workspace.requestLayout();
3133
Daniel Sandler843e8602010-06-07 14:59:01 -04003134 if (DEBUG_WIDGETS) {
3135 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
3136 + (SystemClock.uptimeMillis()-start) + "ms");
3137 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003138 }
3139
3140 /**
3141 * Callback saying that there aren't any more items to bind.
3142 *
3143 * Implementation of the method from LauncherModel.Callbacks.
3144 */
3145 public void finishBindingItems() {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003146 setLoadOnResume();
3147
Joe Onorato9c1289c2009-08-17 11:03:03 -04003148 if (mSavedState != null) {
3149 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07003150 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003151 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003152 mSavedState = null;
3153 }
3154
3155 if (mSavedInstanceState != null) {
3156 super.onRestoreInstanceState(mSavedInstanceState);
3157 mSavedInstanceState = null;
3158 }
3159
Patrick Dubroy002cbf42011-03-03 16:36:21 -08003160 // If we received the result of any pending adds while the loader was running (e.g. the
3161 // widget configuration forced an orientation change), process them now.
3162 for (int i = 0; i < sPendingAddList.size(); i++) {
3163 completeAdd(sPendingAddList.get(i));
3164 }
3165 sPendingAddList.clear();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003166
Winson Chungc51db6a2011-10-05 11:44:49 -07003167 // Update the market app icon as necessary (the other icons will be managed in response to
3168 // package changes in bindSearchablesChanged()
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003169 updateAppMarketIcon();
Michael Jurkac1f5d262011-09-30 19:32:27 -07003170
Winson Chungf0c6ae02012-03-21 16:10:31 -07003171 // Animate up any icons as necessary
3172 if (mVisible || mWorkspaceLoading) {
3173 Runnable newAppsRunnable = new Runnable() {
3174 @Override
3175 public void run() {
Winson Chunga2413752012-04-03 14:22:34 -07003176 runNewAppsAnimation(false);
Winson Chungf0c6ae02012-03-21 16:10:31 -07003177 }
3178 };
Winson Chunga2413752012-04-03 14:22:34 -07003179
3180 boolean willSnapPage = mNewShortcutAnimatePage > -1 &&
3181 mNewShortcutAnimatePage != mWorkspace.getCurrentPage();
3182 if (canRunNewAppsAnimation()) {
3183 // If the user has not interacted recently, then either snap to the new page to show
3184 // the new-apps animation or just run them if they are to appear on the current page
3185 if (willSnapPage) {
3186 mWorkspace.snapToPage(mNewShortcutAnimatePage, newAppsRunnable);
3187 } else {
3188 runNewAppsAnimation(false);
3189 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003190 } else {
Winson Chung318eee02012-04-12 10:59:27 -07003191 // If the user has interacted recently, then just add the items in place if they
Winson Chunga2413752012-04-03 14:22:34 -07003192 // are on another page (or just normally if they are added to the current page)
3193 runNewAppsAnimation(willSnapPage);
Winson Chungf0c6ae02012-03-21 16:10:31 -07003194 }
3195 }
3196
3197 mWorkspaceLoading = false;
3198 }
3199
Winson Chunga2413752012-04-03 14:22:34 -07003200 private boolean canRunNewAppsAnimation() {
3201 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
3202 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000);
3203 }
3204
Winson Chungf0c6ae02012-03-21 16:10:31 -07003205 /**
3206 * Runs a new animation that scales up icons that were added while Launcher was in the
3207 * background.
Winson Chunga2413752012-04-03 14:22:34 -07003208 *
3209 * @param immediate whether to run the animation or show the results immediately
Winson Chungf0c6ae02012-03-21 16:10:31 -07003210 */
Winson Chunga2413752012-04-03 14:22:34 -07003211 private void runNewAppsAnimation(boolean immediate) {
Winson Chungf0c6ae02012-03-21 16:10:31 -07003212 AnimatorSet anim = new AnimatorSet();
3213 Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chunga2413752012-04-03 14:22:34 -07003214
3215 // Order these new views spatially so that they animate in order
Winson Chungf0c6ae02012-03-21 16:10:31 -07003216 Collections.sort(mNewShortcutAnimateViews, new Comparator<View>() {
3217 @Override
3218 public int compare(View a, View b) {
3219 CellLayout.LayoutParams alp = (CellLayout.LayoutParams) a.getLayoutParams();
3220 CellLayout.LayoutParams blp = (CellLayout.LayoutParams) b.getLayoutParams();
3221 int cellCountX = LauncherModel.getCellCountX();
3222 return (alp.cellY * cellCountX + alp.cellX) - (blp.cellY * cellCountX + blp.cellX);
3223 }
3224 });
Winson Chunga2413752012-04-03 14:22:34 -07003225
3226 // Animate each of the views in place (or show them immediately if requested)
3227 if (immediate) {
3228 for (View v : mNewShortcutAnimateViews) {
3229 v.setAlpha(1f);
3230 v.setScaleX(1f);
3231 v.setScaleY(1f);
Winson Chungf0c6ae02012-03-21 16:10:31 -07003232 }
Winson Chunga2413752012-04-03 14:22:34 -07003233 } else {
3234 for (int i = 0; i < mNewShortcutAnimateViews.size(); ++i) {
3235 View v = mNewShortcutAnimateViews.get(i);
3236 ValueAnimator bounceAnim = ObjectAnimator.ofPropertyValuesHolder(v,
3237 PropertyValuesHolder.ofFloat("alpha", 1f),
3238 PropertyValuesHolder.ofFloat("scaleX", 1f),
3239 PropertyValuesHolder.ofFloat("scaleY", 1f));
3240 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
3241 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
3242 bounceAnim.setInterpolator(new SmoothPagedView.OvershootInterpolator());
3243 bounceAnims.add(bounceAnim);
3244 }
3245 anim.playTogether(bounceAnims);
3246 anim.addListener(new AnimatorListenerAdapter() {
3247 @Override
3248 public void onAnimationEnd(Animator animation) {
3249 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
3250 }
3251 });
3252 anim.start();
3253 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003254
3255 // Clean up
3256 mNewShortcutAnimatePage = -1;
3257 mNewShortcutAnimateViews.clear();
3258 new Thread("clearNewAppsThread") {
3259 public void run() {
3260 mSharedPrefs.edit()
3261 .putInt(InstallShortcutReceiver.NEW_APPS_PAGE_KEY, -1)
3262 .putStringSet(InstallShortcutReceiver.NEW_APPS_LIST_KEY, null)
3263 .commit();
3264 }
3265 }.start();
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003266 }
3267
Narayan Kamathcb1a4772011-06-28 13:46:59 +01003268 @Override
3269 public void bindSearchablesChanged() {
Winson Chungc51db6a2011-10-05 11:44:49 -07003270 boolean searchVisible = updateGlobalSearchIcon();
3271 boolean voiceVisible = updateVoiceSearchIcon(searchVisible);
3272 mSearchDropTargetBar.onSearchPackagesChanged(searchVisible, voiceVisible);
Narayan Kamathcb1a4772011-06-28 13:46:59 +01003273 }
3274
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003275 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003276 * Add the icons for all apps.
3277 *
3278 * Implementation of the method from LauncherModel.Callbacks.
3279 */
Michael Jurkac57b7a82011-08-09 22:02:20 -07003280 public void bindAllApplications(final ArrayList<ApplicationInfo> apps) {
3281 // Remove the progress bar entirely; we could also make it GONE
3282 // but better to remove it since we know it's not going to be used
3283 View progressBar = mAppsCustomizeTabHost.
3284 findViewById(R.id.apps_customize_progress_bar);
3285 if (progressBar != null) {
3286 ((ViewGroup)progressBar.getParent()).removeView(progressBar);
Winson Chung785d2eb2011-04-14 16:08:02 -07003287 }
Michael Jurkac57b7a82011-08-09 22:02:20 -07003288 // We just post the call to setApps so the user sees the progress bar
3289 // disappear-- otherwise, it just looks like the progress bar froze
3290 // which doesn't look great
3291 mAppsCustomizeTabHost.post(new Runnable() {
3292 public void run() {
3293 if (mAppsCustomizeContent != null) {
3294 mAppsCustomizeContent.setApps(apps);
3295 }
3296 }
3297 });
Joe Onorato9c1289c2009-08-17 11:03:03 -04003298 }
3299
3300 /**
3301 * A package was installed.
3302 *
3303 * Implementation of the method from LauncherModel.Callbacks.
3304 */
Joe Onorato64e6be72010-03-05 15:05:52 -05003305 public void bindAppsAdded(ArrayList<ApplicationInfo> apps) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003306 setLoadOnResume();
Winson Chungf0ea4d32011-06-06 14:27:16 -07003307
Winson Chung785d2eb2011-04-14 16:08:02 -07003308 if (mAppsCustomizeContent != null) {
3309 mAppsCustomizeContent.addApps(apps);
3310 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003311 }
3312
3313 /**
3314 * A package was updated.
3315 *
3316 * Implementation of the method from LauncherModel.Callbacks.
3317 */
Joe Onorato64e6be72010-03-05 15:05:52 -05003318 public void bindAppsUpdated(ArrayList<ApplicationInfo> apps) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003319 setLoadOnResume();
Patrick Dubroyf5afda72011-02-28 12:04:18 -08003320 if (mWorkspace != null) {
3321 mWorkspace.updateShortcuts(apps);
3322 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003323
Winson Chung785d2eb2011-04-14 16:08:02 -07003324 if (mAppsCustomizeContent != null) {
3325 mAppsCustomizeContent.updateApps(apps);
3326 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003327 }
3328
3329 /**
3330 * A package was uninstalled.
3331 *
3332 * Implementation of the method from LauncherModel.Callbacks.
3333 */
Joe Onorato36115782010-06-17 13:28:48 -04003334 public void bindAppsRemoved(ArrayList<ApplicationInfo> apps, boolean permanent) {
Joe Onorato36115782010-06-17 13:28:48 -04003335 if (permanent) {
3336 mWorkspace.removeItems(apps);
3337 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003338
Winson Chung785d2eb2011-04-14 16:08:02 -07003339 if (mAppsCustomizeContent != null) {
3340 mAppsCustomizeContent.removeApps(apps);
3341 }
Winson Chunga1820962011-10-03 16:31:06 -07003342
3343 // Notify the drag controller
3344 mDragController.onAppsRemoved(apps, this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003345 }
Joe Onoratobe386092009-11-17 17:32:16 -08003346
3347 /**
Winson Chung80baf5a2010-08-09 16:03:15 -07003348 * A number of packages were updated.
3349 */
3350 public void bindPackagesUpdated() {
Winson Chung785d2eb2011-04-14 16:08:02 -07003351 if (mAppsCustomizeContent != null) {
3352 mAppsCustomizeContent.onPackagesUpdated();
3353 }
Winson Chung80baf5a2010-08-09 16:03:15 -07003354 }
3355
Winson Chung400438b2011-01-16 17:53:48 -08003356 private int mapConfigurationOriActivityInfoOri(int configOri) {
3357 final Display d = getWindowManager().getDefaultDisplay();
3358 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
3359 switch (d.getRotation()) {
3360 case Surface.ROTATION_0:
3361 case Surface.ROTATION_180:
3362 // We are currently in the same basic orientation as the natural orientation
3363 naturalOri = configOri;
3364 break;
3365 case Surface.ROTATION_90:
3366 case Surface.ROTATION_270:
3367 // We are currently in the other basic orientation to the natural orientation
3368 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
3369 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
3370 break;
3371 }
3372
3373 int[] oriMap = {
3374 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
3375 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
3376 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
3377 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
3378 };
3379 // Since the map starts at portrait, we need to offset if this device's natural orientation
3380 // is landscape.
3381 int indexOffset = 0;
3382 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
3383 indexOffset = 1;
3384 }
3385 return oriMap[(d.getRotation() + indexOffset) % 4];
3386 }
Adam Cohen446e9402011-09-15 18:21:21 -07003387
Winson Chung641d71d2012-04-26 15:58:01 -07003388 public void lockScreenOrientation() {
3389 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
3390 .getConfiguration().orientation));
Winson Chung400438b2011-01-16 17:53:48 -08003391 }
Winson Chung641d71d2012-04-26 15:58:01 -07003392 public void unlockScreenOrientation() {
3393 mHandler.postDelayed(new Runnable() {
3394 public void run() {
3395 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
3396 }
3397 }, mRestoreScreenOrientationDelay);
Winson Chung400438b2011-01-16 17:53:48 -08003398 }
3399
Winson Chung82f55532011-08-09 14:14:23 -07003400 /* Cling related */
Winson Chung7d7541e2011-09-16 20:14:36 -07003401 private boolean isClingsEnabled() {
Brett Chabot2a9e2282011-08-23 15:03:13 -07003402 // disable clings when running in a test harness
Winson Chung7d7541e2011-09-16 20:14:36 -07003403 if(ActivityManager.isRunningInTestHarness()) return false;
Brett Chabot2a9e2282011-08-23 15:03:13 -07003404
Winson Chung7d7541e2011-09-16 20:14:36 -07003405 return true;
Winson Chung82f55532011-08-09 14:14:23 -07003406 }
Winson Chung7d7541e2011-09-16 20:14:36 -07003407 private Cling initCling(int clingId, int[] positionData, boolean animate, int delay) {
3408 Cling cling = (Cling) findViewById(clingId);
3409 if (cling != null) {
3410 cling.init(this, positionData);
3411 cling.setVisibility(View.VISIBLE);
3412 cling.setLayerType(View.LAYER_TYPE_HARDWARE, null);
3413 if (animate) {
3414 cling.buildLayer();
3415 cling.setAlpha(0f);
3416 cling.animate()
3417 .alpha(1f)
Winson Chung7a74ac92011-09-20 17:43:51 -07003418 .setInterpolator(new AccelerateInterpolator())
Winson Chung7d7541e2011-09-16 20:14:36 -07003419 .setDuration(SHOW_CLING_DURATION)
3420 .setStartDelay(delay)
3421 .start();
3422 } else {
3423 cling.setAlpha(1f);
3424 }
3425 }
3426 return cling;
3427 }
3428 private void dismissCling(final Cling cling, final String flag, int duration) {
Winson Chung82f55532011-08-09 14:14:23 -07003429 if (cling != null) {
3430 ObjectAnimator anim = ObjectAnimator.ofFloat(cling, "alpha", 0f);
Winson Chung7d7541e2011-09-16 20:14:36 -07003431 anim.setDuration(duration);
Winson Chung82f55532011-08-09 14:14:23 -07003432 anim.addListener(new AnimatorListenerAdapter() {
3433 public void onAnimationEnd(Animator animation) {
3434 cling.setVisibility(View.GONE);
3435 cling.cleanup();
Winson Chung46353de2012-02-16 14:05:10 -08003436 // We should update the shared preferences on a background thread
3437 new Thread("dismissClingThread") {
3438 public void run() {
3439 SharedPreferences.Editor editor = mSharedPrefs.edit();
3440 editor.putBoolean(flag, true);
3441 editor.commit();
3442 }
3443 }.start();
Winson Chung82f55532011-08-09 14:14:23 -07003444 };
3445 });
3446 anim.start();
3447 }
3448 }
Winson Chung9d9d74f2011-09-19 11:49:12 -07003449 private void removeCling(int id) {
3450 final View cling = findViewById(id);
3451 if (cling != null) {
3452 final ViewGroup parent = (ViewGroup) cling.getParent();
3453 parent.post(new Runnable() {
3454 @Override
3455 public void run() {
3456 parent.removeView(cling);
3457 }
3458 });
3459 }
3460 }
Winson Chung7d7541e2011-09-16 20:14:36 -07003461 public void showFirstRunWorkspaceCling() {
Winson Chung7d7541e2011-09-16 20:14:36 -07003462 // Enable the clings only if they have not been dismissed before
Winson Chung46353de2012-02-16 14:05:10 -08003463 if (isClingsEnabled() &&
3464 !mSharedPrefs.getBoolean(Cling.WORKSPACE_CLING_DISMISSED_KEY, false)) {
Winson Chung7d7541e2011-09-16 20:14:36 -07003465 initCling(R.id.workspace_cling, null, false, 0);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003466 } else {
3467 removeCling(R.id.workspace_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003468 }
3469 }
3470 public void showFirstRunAllAppsCling(int[] position) {
Winson Chung7d7541e2011-09-16 20:14:36 -07003471 // Enable the clings only if they have not been dismissed before
Winson Chung46353de2012-02-16 14:05:10 -08003472 if (isClingsEnabled() &&
3473 !mSharedPrefs.getBoolean(Cling.ALLAPPS_CLING_DISMISSED_KEY, false)) {
Winson Chung7d7541e2011-09-16 20:14:36 -07003474 initCling(R.id.all_apps_cling, position, true, 0);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003475 } else {
3476 removeCling(R.id.all_apps_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003477 }
3478 }
3479 public Cling showFirstRunFoldersCling() {
Winson Chung7d7541e2011-09-16 20:14:36 -07003480 // Enable the clings only if they have not been dismissed before
Winson Chung46353de2012-02-16 14:05:10 -08003481 if (isClingsEnabled() &&
3482 !mSharedPrefs.getBoolean(Cling.FOLDER_CLING_DISMISSED_KEY, false)) {
3483 return initCling(R.id.folder_cling, null, true, 0);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003484 } else {
3485 removeCling(R.id.folder_cling);
Winson Chung46353de2012-02-16 14:05:10 -08003486 return null;
Winson Chung7d7541e2011-09-16 20:14:36 -07003487 }
Winson Chung7d7541e2011-09-16 20:14:36 -07003488 }
3489 public boolean isFolderClingVisible() {
3490 Cling cling = (Cling) findViewById(R.id.folder_cling);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003491 if (cling != null) {
3492 return cling.getVisibility() == View.VISIBLE;
3493 }
3494 return false;
Winson Chung7d7541e2011-09-16 20:14:36 -07003495 }
Winson Chung82f55532011-08-09 14:14:23 -07003496 public void dismissWorkspaceCling(View v) {
3497 Cling cling = (Cling) findViewById(R.id.workspace_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003498 dismissCling(cling, Cling.WORKSPACE_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
Winson Chung82f55532011-08-09 14:14:23 -07003499 }
3500 public void dismissAllAppsCling(View v) {
3501 Cling cling = (Cling) findViewById(R.id.all_apps_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003502 dismissCling(cling, Cling.ALLAPPS_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
3503 }
3504 public void dismissFolderCling(View v) {
3505 Cling cling = (Cling) findViewById(R.id.folder_cling);
3506 dismissCling(cling, Cling.FOLDER_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
Winson Chung82f55532011-08-09 14:14:23 -07003507 }
3508
Winson Chung80baf5a2010-08-09 16:03:15 -07003509 /**
Joe Onoratobe386092009-11-17 17:32:16 -08003510 * Prints out out state for debugging.
3511 */
3512 public void dumpState() {
3513 Log.d(TAG, "BEGIN launcher2 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08003514 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08003515 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
3516 Log.d(TAG, "mRestoring=" + mRestoring);
3517 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
3518 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07003519 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08003520 mModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07003521
Winson Chung785d2eb2011-04-14 16:08:02 -07003522 if (mAppsCustomizeContent != null) {
3523 mAppsCustomizeContent.dumpState();
3524 }
Joe Onoratobe386092009-11-17 17:32:16 -08003525 Log.d(TAG, "END launcher2 dump state");
3526 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07003527
3528 @Override
3529 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
3530 super.dump(prefix, fd, writer, args);
3531 writer.println(" ");
3532 writer.println("Debug logs: ");
3533 for (int i = 0; i < sDumpLogs.size(); i++) {
3534 writer.println(" " + sDumpLogs.get(i));
3535 }
3536 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003537}
Michael Jurka2763be32011-02-24 11:19:57 -08003538
Michael Jurkaabded662011-03-04 12:06:57 -08003539interface LauncherTransitionable {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003540 View getContent();
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003541 void onLauncherTransitionPrepare(Launcher l, boolean animated, boolean toWorkspace);
Michael Jurkabed61d22012-02-14 22:51:29 -08003542 void onLauncherTransitionStart(Launcher l, boolean animated, boolean toWorkspace);
Winson Chung70442722012-02-10 15:43:22 -08003543 void onLauncherTransitionStep(Launcher l, float t);
Michael Jurkabed61d22012-02-14 22:51:29 -08003544 void onLauncherTransitionEnd(Launcher l, boolean animated, boolean toWorkspace);
Michael Jurka2763be32011-02-24 11:19:57 -08003545}