blob: 47d9ebec266fa9538fd11b6e0bc8f4233079ba1a [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;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080029import android.app.SearchManager;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080030import android.appwidget.AppWidgetHostView;
Michael Jurkaaf442092010-06-10 17:01:57 -070031import android.appwidget.AppWidgetManager;
32import android.appwidget.AppWidgetProviderInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080033import android.content.ActivityNotFoundException;
Joe Onorato2ca0ae72009-11-10 13:14:13 -080034import android.content.BroadcastReceiver;
Winson Chung68846fd2010-10-29 11:00:27 -070035import android.content.ClipData;
36import android.content.ClipDescription;
Michael Jurkae326f182011-11-21 14:05:46 -080037import android.content.ComponentCallbacks2;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040038import android.content.ComponentName;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080039import android.content.ContentResolver;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080040import android.content.Context;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080041import android.content.Intent;
Winson Chungf0ea4d32011-06-06 14:27:16 -070042import android.content.IntentFilter;
Winson Chung82f55532011-08-09 14:14:23 -070043import android.content.SharedPreferences;
Winson Chungaafa03c2010-06-11 17:34:16 -070044import android.content.pm.ActivityInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080045import android.content.pm.PackageManager;
Adam Cohen716b51e2011-06-30 12:09:54 -070046import android.content.pm.PackageManager.NameNotFoundException;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080047import android.content.res.Configuration;
Karl Rosaen138a0412009-04-23 19:00:21 -070048import android.content.res.Resources;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080049import android.database.ContentObserver;
Michael Jurkaaf442092010-06-10 17:01:57 -070050import android.graphics.Rect;
Michael Jurkaaf442092010-06-10 17:01:57 -070051import android.graphics.drawable.Drawable;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040052import android.net.Uri;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -070053import android.os.AsyncTask;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080054import android.os.Bundle;
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +020055import android.os.Environment;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080056import android.os.Handler;
Adam Cohended9f8d2010-11-03 13:25:16 -070057import android.os.Message;
Winson Chunga2413752012-04-03 14:22:34 -070058import android.os.StrictMode;
Daniel Sandler843e8602010-06-07 14:59:01 -040059import android.os.SystemClock;
Joe Onoratobe386092009-11-17 17:32:16 -080060import android.os.SystemProperties;
Patrick Dubroy4ed62782010-08-17 15:11:18 -070061import android.provider.Settings;
Amith Yamasani6d7fe502010-11-16 09:05:07 -080062import android.speech.RecognizerIntent;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080063import android.text.Selection;
64import android.text.SpannableStringBuilder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080065import android.text.method.TextKeyListener;
Joe Onorato7c312c12009-08-13 21:36:53 -070066import android.util.Log;
Winson Chung400438b2011-01-16 17:53:48 -080067import android.view.Display;
Joe Onorato0d44e942009-11-16 18:20:51 -080068import android.view.HapticFeedbackConstants;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080069import android.view.KeyEvent;
70import android.view.LayoutInflater;
71import android.view.Menu;
72import android.view.MenuItem;
Michael Jurka0e260592010-06-30 17:07:39 -070073import android.view.MotionEvent;
Winson Chung400438b2011-01-16 17:53:48 -080074import android.view.Surface;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080075import android.view.View;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080076import android.view.View.OnLongClickListener;
Winson Chung82f55532011-08-09 14:14:23 -070077import android.view.ViewGroup;
Michael Jurkab737ee62011-11-15 15:57:22 -080078import android.view.ViewTreeObserver;
Michael Jurka2a4b1a82011-12-07 14:00:02 -080079import android.view.ViewTreeObserver.OnGlobalLayoutListener;
Dianne Hackbornbb003a52011-08-30 14:40:07 -070080import android.view.WindowManager;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -080081import android.view.accessibility.AccessibilityEvent;
Adam Cohencff6af82011-09-13 14:51:53 -070082import android.view.animation.AccelerateDecelerateInterpolator;
Winson Chung7a74ac92011-09-20 17:43:51 -070083import android.view.animation.AccelerateInterpolator;
Adam Cohenf16e5712011-01-13 13:31:45 -080084import android.view.animation.DecelerateInterpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080085import android.view.inputmethod.InputMethodManager;
Adam Cohended9f8d2010-11-03 13:25:16 -070086import android.widget.Advanceable;
Michael Jurkaaf442092010-06-10 17:01:57 -070087import android.widget.ImageView;
Winson Chung68846fd2010-10-29 11:00:27 -070088import android.widget.TextView;
89import android.widget.Toast;
Patrick Dubroy4ed62782010-08-17 15:11:18 -070090
Adam Cohendf2cc412011-04-27 16:56:57 -070091import com.android.common.Search;
92import com.android.launcher.R;
Adam Cohen558baaf2011-08-15 15:22:57 -070093import com.android.launcher2.DropTarget.DragObject;
Romain Guyedcce092010-03-04 13:03:17 -080094
Adam Cohenc0dcf592011-06-01 15:30:43 -070095import java.io.DataInputStream;
96import java.io.DataOutputStream;
Adam Cohen16d7ffc2011-10-05 17:49:14 -070097import java.io.FileDescriptor;
Adam Cohenc0dcf592011-06-01 15:30:43 -070098import java.io.FileNotFoundException;
99import java.io.IOException;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700100import java.io.PrintWriter;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700101import java.util.ArrayList;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700102import java.util.Collection;
103import java.util.Collections;
104import java.util.Comparator;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700105import java.util.HashMap;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700106import java.util.HashSet;
107import java.util.Set;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700108
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800109/**
110 * Default launcher application.
111 */
Michael Jurka946ad472010-07-09 18:05:18 -0700112public final class Launcher extends Activity
Michael Jurka0e260592010-06-30 17:07:39 -0700113 implements View.OnClickListener, OnLongClickListener, LauncherModel.Callbacks,
114 AllAppsView.Watcher, View.OnTouchListener {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800115 static final String TAG = "Launcher";
Joe Onoratocc67f472010-06-08 10:54:30 -0700116 static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800117
Joe Onorato9c1289c2009-08-17 11:03:03 -0400118 static final boolean PROFILE_STARTUP = false;
Daniel Sandler843e8602010-06-07 14:59:01 -0400119 static final boolean DEBUG_WIDGETS = false;
Winson Chunga2413752012-04-03 14:22:34 -0700120 static final boolean DEBUG_STRICT_MODE = false;
Romain Guy6fefcf12009-06-11 13:07:43 -0700121
Winson Chung70d72102011-08-12 11:24:35 -0700122 private static final int MENU_GROUP_WALLPAPER = 1;
123 private static final int MENU_WALLPAPER_SETTINGS = Menu.FIRST + 1;
124 private static final int MENU_MANAGE_APPS = MENU_WALLPAPER_SETTINGS + 1;
Winson Chung236d4312011-08-22 15:12:27 -0700125 private static final int MENU_SYSTEM_SETTINGS = MENU_MANAGE_APPS + 1;
126 private static final int MENU_HELP = MENU_SYSTEM_SETTINGS + 1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800127
128 private static final int REQUEST_CREATE_SHORTCUT = 1;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700129 private static final int REQUEST_CREATE_APPWIDGET = 5;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800130 private static final int REQUEST_PICK_APPLICATION = 6;
131 private static final int REQUEST_PICK_SHORTCUT = 7;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700132 private static final int REQUEST_PICK_APPWIDGET = 9;
Mike Clerona0618e42009-10-22 13:55:21 -0700133 private static final int REQUEST_PICK_WALLPAPER = 10;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800134
135 static final String EXTRA_SHORTCUT_DUPLICATE = "duplicate";
136
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800137 static final int SCREEN_COUNT = 5;
138 static final int DEFAULT_SCREEN = 2;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800139
Romain Guy98d01652009-06-30 16:21:04 -0700140 private static final String PREFERENCES = "launcher.preferences";
Adam Cohen23a4d302011-12-01 17:26:44 -0800141 static final String FORCE_ENABLE_ROTATION_PROPERTY = "launcher.force_enable_rotation";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800142
143 // Type: int
144 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
Michael Jurka883f55b2010-10-21 15:47:14 -0700145 // Type: int
146 private static final String RUNTIME_STATE = "launcher.state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800147 // Type: int
Winson Chung3d503fb2011-07-13 17:25:49 -0700148 private static final String RUNTIME_STATE_PENDING_ADD_CONTAINER = "launcher.add_container";
149 // Type: int
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800150 private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
151 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700152 private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cell_x";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800153 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700154 private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cell_y";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800155 // Type: boolean
156 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME = "launcher.rename_folder";
157 // Type: long
158 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME_ID = "launcher.rename_folder_id";
159
Patrick Dubroyceae05d2010-08-30 10:40:53 -0700160 private static final String TOOLBAR_ICON_METADATA_NAME = "com.android.launcher.toolbar_icon";
161
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700162 /** The different states that Launcher can be in. */
Winson Chungf0ea4d32011-06-06 14:27:16 -0700163 private enum State { WORKSPACE, APPS_CUSTOMIZE, APPS_CUSTOMIZE_SPRING_LOADED };
Michael Jurkac0e8fca2010-10-06 16:41:29 -0700164 private State mState = State.WORKSPACE;
165 private AnimatorSet mStateAnimation;
Michael Jurkab737ee62011-11-15 15:57:22 -0800166 private AnimatorSet mDividerAnimator;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700167
Joe Onorato9c1289c2009-08-17 11:03:03 -0400168 static final int APPWIDGET_HOST_ID = 1024;
Winson Chung557d6ed2011-07-08 15:34:52 -0700169 private static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
170 private static final int EXIT_SPRINGLOADED_MODE_LONG_TIMEOUT = 600;
Winson Chung7a74ac92011-09-20 17:43:51 -0700171 private static final int SHOW_CLING_DURATION = 550;
Winson Chung7d7541e2011-09-16 20:14:36 -0700172 private static final int DISMISS_CLING_DURATION = 250;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800173
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800174 private static final Object sLock = new Object();
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800175 private static int sScreen = DEFAULT_SCREEN;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800176
Winson Chunga2413752012-04-03 14:22:34 -0700177 // How long to wait before the new-shortcut animation automatically pans the workspace
178 private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 10;
179
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800180 private final BroadcastReceiver mCloseSystemDialogsReceiver
181 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800182 private final ContentObserver mWidgetObserver = new AppWidgetResetObserver();
183
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800184 private LayoutInflater mInflater;
185
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800186 private Workspace mWorkspace;
Michael Jurkab737ee62011-11-15 15:57:22 -0800187 private View mQsbDivider;
188 private View mDockDivider;
189 private DragLayer mDragLayer;
190 private DragController mDragController;
Romain Guycbb89e42009-06-08 15:52:54 -0700191
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700192 private AppWidgetManager mAppWidgetManager;
193 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700194
Michael Jurkac9d95c52011-08-29 14:03:34 -0700195 private ItemInfo mPendingAddInfo = new ItemInfo();
Michael Jurka0280c3b2010-09-17 15:00:07 -0700196 private int[] mTmpAddItemCellCoordinates = new int[2];
197
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800198 private FolderInfo mFolderInfo;
199
Winson Chung3d503fb2011-07-13 17:25:49 -0700200 private Hotseat mHotseat;
Michael Jurka838a4ca2011-02-07 13:33:06 -0800201 private View mAllAppsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700202
Winson Chungc51db6a2011-10-05 11:44:49 -0700203 private SearchDropTargetBar mSearchDropTargetBar;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700204 private AppsCustomizeTabHost mAppsCustomizeTabHost;
205 private AppsCustomizePagedView mAppsCustomizeContent;
206 private boolean mAutoAdvanceRunning = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800207
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800208 private Bundle mSavedState;
209
210 private SpannableStringBuilder mDefaultKeySsb = null;
211
Joe Onorato9c1289c2009-08-17 11:03:03 -0400212 private boolean mWorkspaceLoading = true;
213
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800214 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800215 private boolean mRestoring;
216 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700217 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800218
219 private Bundle mSavedInstanceState;
220
Joe Onorato9c1289c2009-08-17 11:03:03 -0400221 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800222 private IconCache mIconCache;
Adam Cohend113e0c2010-11-11 10:48:05 -0800223 private boolean mUserPresent = true;
224 private boolean mVisible = false;
225 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400226
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700227 private static LocaleConfiguration sLocaleConfiguration = null;
228
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700229 private static HashMap<Long, FolderInfo> sFolders = new HashMap<Long, FolderInfo>();
Romain Guycbb89e42009-06-08 15:52:54 -0700230
Patrick Dubroyceae05d2010-08-30 10:40:53 -0700231 private Intent mAppMarketIntent = null;
232
Adam Cohended9f8d2010-11-03 13:25:16 -0700233 // Related to the auto-advancing of widgets
234 private final int ADVANCE_MSG = 1;
235 private final int mAdvanceInterval = 20000;
236 private final int mAdvanceStagger = 250;
237 private long mAutoAdvanceSentTime;
238 private long mAutoAdvanceTimeLeft = -1;
239 private HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
240 new HashMap<View, AppWidgetProviderInfo>();
241
Winson Chung400438b2011-01-16 17:53:48 -0800242 // Determines how long to wait after a rotation before restoring the screen orientation to
243 // match the sensor state.
244 private final int mRestoreScreenOrientationDelay = 500;
245
Michael Jurka4ef207b2010-11-29 17:05:45 -0800246 // External icons saved in case of resource changes, orientation, etc.
Winson Chungdff8ebb2011-09-08 17:25:31 -0700247 private static Drawable.ConstantState[] sGlobalSearchIcon = new Drawable.ConstantState[2];
248 private static Drawable.ConstantState[] sVoiceSearchIcon = new Drawable.ConstantState[2];
249 private static Drawable.ConstantState[] sAppMarketIcon = new Drawable.ConstantState[2];
Michael Jurka4ef207b2010-11-29 17:05:45 -0800250
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700251 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
Adam Cohened66b2b2012-01-23 17:28:51 -0800252 PendingAddWidgetInfo mWidgetBeingConfigured = null;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700253
Winson Chung46353de2012-02-16 14:05:10 -0800254 // We only want to get the SharedPreferences once since it does an FS stat each time we get
255 // it from the context.
256 private SharedPreferences mSharedPrefs;
257
Winson Chungf0c6ae02012-03-21 16:10:31 -0700258 // Holds the page that we need to animate to, and the icon views that we need to animate up
259 // when we scroll to that page on resume.
260 private int mNewShortcutAnimatePage = -1;
261 private ArrayList<View> mNewShortcutAnimateViews = new ArrayList<View>();
Adam Cohen2801caf2011-05-13 20:57:39 -0700262
Michael Jurkaddd62e92011-02-16 17:49:14 -0800263 private BubbleTextView mWaitingForResume;
264
Michael Jurkac1f5d262011-09-30 19:32:27 -0700265 private Runnable mBuildLayersRunnable = new Runnable() {
266 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700267 if (mWorkspace != null) {
268 mWorkspace.buildPageHardwareLayers();
269 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700270 }
271 };
272
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800273 private static ArrayList<PendingAddArguments> sPendingAddList
274 = new ArrayList<PendingAddArguments>();
275
276 private static class PendingAddArguments {
277 int requestCode;
278 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700279 long container;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800280 int screen;
281 int cellX;
282 int cellY;
283 }
284
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800285 @Override
286 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700287 if (DEBUG_STRICT_MODE) {
288 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
289 .detectDiskReads()
290 .detectDiskWrites()
291 .detectNetwork() // or .detectAll() for all detectable problems
292 .penaltyLog()
293 .build());
294 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
295 .detectLeakedSqlLiteObjects()
296 .detectLeakedClosableObjects()
297 .penaltyLog()
298 .penaltyDeath()
299 .build());
300 }
301
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800302 super.onCreate(savedInstanceState);
Joe Onorato0589f0f2010-02-08 13:44:00 -0800303 LauncherApplication app = ((LauncherApplication)getApplication());
Winson Chungf0c6ae02012-03-21 16:10:31 -0700304 mSharedPrefs = getSharedPreferences(LauncherApplication.getSharedPreferencesKey(),
305 Context.MODE_PRIVATE);
Joe Onorato0589f0f2010-02-08 13:44:00 -0800306 mModel = app.setLauncher(this);
307 mIconCache = app.getIconCache();
Joe Onorato41a12d22009-10-31 18:30:00 -0400308 mDragController = new DragController(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800309 mInflater = getLayoutInflater();
Romain Guycbb89e42009-06-08 15:52:54 -0700310
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700311 mAppWidgetManager = AppWidgetManager.getInstance(this);
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700312 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
313 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700314
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800315 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200316 android.os.Debug.startMethodTracing(
317 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800318 }
319
320 checkForLocaleChange();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800321 setContentView(R.layout.launcher);
322 setupViews();
Winson Chung7d7541e2011-09-16 20:14:36 -0700323 showFirstRunWorkspaceCling();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800324
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800325 registerContentObservers();
326
Joe Onorato7c312c12009-08-13 21:36:53 -0700327 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700328
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800329 mSavedState = savedInstanceState;
330 restoreState(mSavedState);
331
Winson Chunga12a2502010-12-20 14:41:35 -0800332 // Update customization drawer _after_ restoring the states
Winson Chung785d2eb2011-04-14 16:08:02 -0700333 if (mAppsCustomizeContent != null) {
334 mAppsCustomizeContent.onPackagesUpdated();
335 }
Winson Chunga12a2502010-12-20 14:41:35 -0800336
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800337 if (PROFILE_STARTUP) {
338 android.os.Debug.stopMethodTracing();
339 }
340
341 if (!mRestoring) {
Winson Chungf0c6ae02012-03-21 16:10:31 -0700342 mModel.startLoader(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800343 }
344
Michael Jurkac57b7a82011-08-09 22:02:20 -0700345 if (!mModel.isAllAppsLoaded()) {
346 ViewGroup appsCustomizeContentParent = (ViewGroup) mAppsCustomizeContent.getParent();
347 mInflater.inflate(R.layout.apps_customize_progressbar, appsCustomizeContentParent);
348 }
349
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800350 // For handling default keys
351 mDefaultKeySsb = new SpannableStringBuilder();
352 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800353
354 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
355 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800356
Winson Chungc51db6a2011-10-05 11:44:49 -0700357 boolean searchVisible = false;
358 boolean voiceVisible = false;
Michael Jurka4ef207b2010-11-29 17:05:45 -0800359 // If we have a saved version of these external icons, we load them up immediately
Winson Chungdff8ebb2011-09-08 17:25:31 -0700360 int coi = getCurrentOrientationIndexForGlobalIcons();
361 if (sGlobalSearchIcon[coi] == null || sVoiceSearchIcon[coi] == null ||
362 sAppMarketIcon[coi] == null) {
Winson Chungc51db6a2011-10-05 11:44:49 -0700363 updateAppMarketIcon();
364 searchVisible = updateGlobalSearchIcon();
365 voiceVisible = updateVoiceSearchIcon(searchVisible);
Winson Chungf0ea4d32011-06-06 14:27:16 -0700366 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700367 if (sGlobalSearchIcon[coi] != null) {
368 updateGlobalSearchIcon(sGlobalSearchIcon[coi]);
Winson Chungc51db6a2011-10-05 11:44:49 -0700369 searchVisible = true;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700370 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700371 if (sVoiceSearchIcon[coi] != null) {
372 updateVoiceSearchIcon(sVoiceSearchIcon[coi]);
Winson Chungc51db6a2011-10-05 11:44:49 -0700373 voiceVisible = true;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700374 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700375 if (sAppMarketIcon[coi] != null) {
376 updateAppMarketIcon(sAppMarketIcon[coi]);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800377 }
Winson Chungc51db6a2011-10-05 11:44:49 -0700378 mSearchDropTargetBar.onSearchPackagesChanged(searchVisible, voiceVisible);
Adam Cohen446e9402011-09-15 18:21:21 -0700379
Adam Cohen23a4d302011-12-01 17:26:44 -0800380 final String forceEnableRotation =
381 SystemProperties.get(FORCE_ENABLE_ROTATION_PROPERTY, "false");
382
Adam Cohen446e9402011-09-15 18:21:21 -0700383 // On large interfaces, we want the screen to auto-rotate based on the current orientation
Adam Cohen23a4d302011-12-01 17:26:44 -0800384 if (LauncherApplication.isScreenLarge() || "true".equalsIgnoreCase(forceEnableRotation)) {
Adam Cohen446e9402011-09-15 18:21:21 -0700385 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
386 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800387 }
Romain Guycbb89e42009-06-08 15:52:54 -0700388
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800389 private void checkForLocaleChange() {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700390 if (sLocaleConfiguration == null) {
391 new AsyncTask<Void, Void, LocaleConfiguration>() {
392 @Override
393 protected LocaleConfiguration doInBackground(Void... unused) {
394 LocaleConfiguration localeConfiguration = new LocaleConfiguration();
395 readConfiguration(Launcher.this, localeConfiguration);
396 return localeConfiguration;
397 }
398
399 @Override
400 protected void onPostExecute(LocaleConfiguration result) {
401 sLocaleConfiguration = result;
402 checkForLocaleChange(); // recursive, but now with a locale configuration
403 }
404 }.execute();
405 return;
406 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700407
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800408 final Configuration configuration = getResources().getConfiguration();
409
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700410 final String previousLocale = sLocaleConfiguration.locale;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800411 final String locale = configuration.locale.toString();
412
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700413 final int previousMcc = sLocaleConfiguration.mcc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800414 final int mcc = configuration.mcc;
415
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700416 final int previousMnc = sLocaleConfiguration.mnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800417 final int mnc = configuration.mnc;
418
Romain Guy84f296c2009-11-04 15:00:44 -0800419 boolean localeChanged = !locale.equals(previousLocale) || mcc != previousMcc || mnc != previousMnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800420
Romain Guy84f296c2009-11-04 15:00:44 -0800421 if (localeChanged) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700422 sLocaleConfiguration.locale = locale;
423 sLocaleConfiguration.mcc = mcc;
424 sLocaleConfiguration.mnc = mnc;
Romain Guy98d01652009-06-30 16:21:04 -0700425
Joe Onorato0589f0f2010-02-08 13:44:00 -0800426 mIconCache.flush();
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700427
428 final LocaleConfiguration localeConfiguration = sLocaleConfiguration;
429 new Thread("WriteLocaleConfiguration") {
Gilles Debunnedd6c9922010-10-25 11:23:41 -0700430 @Override
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700431 public void run() {
432 writeConfiguration(Launcher.this, localeConfiguration);
433 }
434 }.start();
Romain Guy98d01652009-06-30 16:21:04 -0700435 }
436 }
437
438 private static class LocaleConfiguration {
439 public String locale;
440 public int mcc = -1;
441 public int mnc = -1;
442 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700443
Romain Guy98d01652009-06-30 16:21:04 -0700444 private static void readConfiguration(Context context, LocaleConfiguration configuration) {
445 DataInputStream in = null;
446 try {
447 in = new DataInputStream(context.openFileInput(PREFERENCES));
448 configuration.locale = in.readUTF();
449 configuration.mcc = in.readInt();
450 configuration.mnc = in.readInt();
451 } catch (FileNotFoundException e) {
452 // Ignore
453 } catch (IOException e) {
454 // Ignore
455 } finally {
456 if (in != null) {
457 try {
458 in.close();
459 } catch (IOException e) {
460 // Ignore
461 }
462 }
463 }
464 }
465
466 private static void writeConfiguration(Context context, LocaleConfiguration configuration) {
467 DataOutputStream out = null;
468 try {
469 out = new DataOutputStream(context.openFileOutput(PREFERENCES, MODE_PRIVATE));
470 out.writeUTF(configuration.locale);
471 out.writeInt(configuration.mcc);
472 out.writeInt(configuration.mnc);
473 out.flush();
474 } catch (FileNotFoundException e) {
475 // Ignore
476 } catch (IOException e) {
477 //noinspection ResultOfMethodCallIgnored
478 context.getFileStreamPath(PREFERENCES).delete();
479 } finally {
480 if (out != null) {
481 try {
482 out.close();
483 } catch (IOException e) {
484 // Ignore
485 }
486 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800487 }
488 }
489
Adam Cohen716b51e2011-06-30 12:09:54 -0700490 public DragLayer getDragLayer() {
491 return mDragLayer;
492 }
493
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800494 static int getScreen() {
495 synchronized (sLock) {
496 return sScreen;
497 }
498 }
499
500 static void setScreen(int screen) {
501 synchronized (sLock) {
502 sScreen = screen;
503 }
504 }
505
Winson Chung557d6ed2011-07-08 15:34:52 -0700506 /**
507 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
508 * a configuration step, this allows the proper animations to run after other transitions.
509 */
510 private boolean completeAdd(PendingAddArguments args) {
Winson Chungb8472bb2011-08-05 13:49:21 -0700511 boolean result = false;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800512 switch (args.requestCode) {
513 case REQUEST_PICK_APPLICATION:
Winson Chung3d503fb2011-07-13 17:25:49 -0700514 completeAddApplication(args.intent, args.container, args.screen, args.cellX,
515 args.cellY);
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800516 break;
517 case REQUEST_PICK_SHORTCUT:
518 processShortcut(args.intent);
519 break;
520 case REQUEST_CREATE_SHORTCUT:
Winson Chung3d503fb2011-07-13 17:25:49 -0700521 completeAddShortcut(args.intent, args.container, args.screen, args.cellX,
522 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700523 result = true;
524 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800525 case REQUEST_PICK_APPWIDGET:
526 addAppWidgetFromPick(args.intent);
527 break;
528 case REQUEST_CREATE_APPWIDGET:
529 int appWidgetId = args.intent.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1);
Adam Cohened66b2b2012-01-23 17:28:51 -0800530 completeAddAppWidget(appWidgetId, args.container, args.screen, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700531 result = true;
532 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800533 case REQUEST_PICK_WALLPAPER:
534 // We just wanted the activity result here so we can clear mWaitingForResult
535 break;
536 }
Michael Jurka27614d22012-04-02 06:40:22 -0700537 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
538 // if you turned the screen off and then back while in All Apps, Launcher would not
539 // return to the workspace. Clearing mAddInfo.container here fixes this issue
540 resetAddInfo();
Winson Chungb8472bb2011-08-05 13:49:21 -0700541 return result;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800542 }
543
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800544 @Override
Adam Cohened66b2b2012-01-23 17:28:51 -0800545 protected void onActivityResult(final int requestCode, final int resultCode, final Intent data) {
Winson Chung557d6ed2011-07-08 15:34:52 -0700546 boolean delayExitSpringLoadedMode = false;
Adam Cohened66b2b2012-01-23 17:28:51 -0800547 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
548 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700549 mWaitingForResult = false;
550
Adam Cohened66b2b2012-01-23 17:28:51 -0800551 // We have special handling for widgets
552 if (isWidgetDrop) {
553 int appWidgetId = data != null ?
554 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
555 completeTwoStageWidgetDrop(resultCode, appWidgetId);
556 return;
557 }
558
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800559 // The pattern used here is that a user PICKs a specific application,
560 // which, depending on the target, might need to CREATE the actual target.
Romain Guycbb89e42009-06-08 15:52:54 -0700561
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800562 // For example, the user would PICK_SHORTCUT for "Music playlist", and we
563 // launch over to the Music app to actually CREATE_SHORTCUT.
Winson Chungc7da5552011-08-10 15:28:45 -0700564 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800565 final PendingAddArguments args = new PendingAddArguments();
566 args.requestCode = requestCode;
567 args.intent = data;
Winson Chung3d503fb2011-07-13 17:25:49 -0700568 args.container = mPendingAddInfo.container;
569 args.screen = mPendingAddInfo.screen;
570 args.cellX = mPendingAddInfo.cellX;
571 args.cellY = mPendingAddInfo.cellY;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800572 if (isWorkspaceLocked()) {
573 sPendingAddList.add(args);
574 } else {
Winson Chung557d6ed2011-07-08 15:34:52 -0700575 delayExitSpringLoadedMode = completeAdd(args);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800576 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800577 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800578 mDragLayer.clearAnimatedView();
Winson Chung557d6ed2011-07-08 15:34:52 -0700579 // Exit spring loaded mode if necessary after cancelling the configuration of a widget
Adam Cohened66b2b2012-01-23 17:28:51 -0800580 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED), delayExitSpringLoadedMode,
581 null);
582 }
583
584 private void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
585 CellLayout cellLayout = (CellLayout) mWorkspace.getChildAt(mWidgetBeingConfigured.screen);
586 Runnable onCompleteRunnable = null;
587 int animationType = 0;
588
589 if (resultCode == RESULT_OK) {
590 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
591 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
592 mWidgetBeingConfigured.info);
593 mWidgetBeingConfigured.boundWidget = layout;
594 onCompleteRunnable = new Runnable() {
595 @Override
596 public void run() {
597 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
598 mPendingAddInfo.screen, layout, null);
599 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED), false,
600 null);
601 }
602 };
603 } else if (resultCode == RESULT_CANCELED) {
604 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
605 onCompleteRunnable = new Runnable() {
606 @Override
607 public void run() {
608 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED), false,
609 null);
610 }
611 };
612 }
Adam Cohend41fbf52012-02-16 23:53:59 -0800613 mWorkspace.animateWidgetDrop(mWidgetBeingConfigured, cellLayout,
Adam Cohened66b2b2012-01-23 17:28:51 -0800614 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
Adam Cohend41fbf52012-02-16 23:53:59 -0800615 animationType, mWidgetBeingConfigured.boundWidget, true);
Adam Cohen1b36dc32012-02-13 19:27:37 -0800616 mWidgetBeingConfigured = null;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800617 }
618
619 @Override
620 protected void onResume() {
621 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700622
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800623 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700624 if (mRestoring || mOnResumeNeedsLoad) {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400625 mWorkspaceLoading = true;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700626 mModel.startLoader(true);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400627 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700628 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800629 }
Winson Chunge4e50662012-01-23 14:45:13 -0800630
631 // Reset the pressed state of icons that were locked in the press state while activities
632 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -0800633 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -0800634 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -0800635 mWaitingForResume.setStayPressed(false);
636 }
Winson Chunge4e50662012-01-23 14:45:13 -0800637 if (mAppsCustomizeContent != null) {
638 // Resets the previous all apps icon press state
639 mAppsCustomizeContent.resetDrawableState();
640 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800641 }
642
643 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700644 protected void onPause() {
645 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700646 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -0800647 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -0700648 mDragController.resetLastGestureUpTime();
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700649 }
Romain Guycbb89e42009-06-08 15:52:54 -0700650
Jeffrey Sharkey99c87582009-03-24 17:59:43 -0700651 @Override
652 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400653 // Flag the loader to stop early before switching
654 mModel.stopLoader();
Winson Chung785d2eb2011-04-14 16:08:02 -0700655 if (mAppsCustomizeContent != null) {
656 mAppsCustomizeContent.surrender();
657 }
Romain Guy13c2e7b2010-03-10 19:45:00 -0800658 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -0700659 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700660
Joe Onorato2d7e7d02010-01-29 15:57:19 -0800661 // We can't hide the IME if it was forced open. So don't bother
662 /*
663 @Override
664 public void onWindowFocusChanged(boolean hasFocus) {
665 super.onWindowFocusChanged(hasFocus);
666
667 if (hasFocus) {
668 final InputMethodManager inputManager = (InputMethodManager)
669 getSystemService(Context.INPUT_METHOD_SERVICE);
670 WindowManager.LayoutParams lp = getWindow().getAttributes();
671 inputManager.hideSoftInputFromWindow(lp.token, 0, new android.os.ResultReceiver(new
672 android.os.Handler()) {
673 protected void onReceiveResult(int resultCode, Bundle resultData) {
674 Log.d(TAG, "ResultReceiver got resultCode=" + resultCode);
675 }
676 });
677 Log.d(TAG, "called hideSoftInputFromWindow from onWindowFocusChanged");
678 }
679 }
680 */
681
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800682 private boolean acceptFilter() {
683 final InputMethodManager inputManager = (InputMethodManager)
684 getSystemService(Context.INPUT_METHOD_SERVICE);
685 return !inputManager.isFullscreenMode();
686 }
687
688 @Override
689 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -0700690 final int uniChar = event.getUnicodeChar();
691 final boolean handled = super.onKeyDown(keyCode, event);
692 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
693 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800694 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
695 keyCode, event);
696 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -0700697 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -0700698 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -0700699 // showSearchDialog()
700 // If there are multiple keystrokes before the search dialog takes focus,
701 // onSearchRequested() will be called for every keystroke,
702 // but it is idempotent, so it's fine.
703 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800704 }
705 }
706
Joe Onorato8a9625e2010-01-28 15:55:35 -0800707 // Eat the long press event so the keyboard doesn't come up.
708 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
709 return true;
710 }
711
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800712 return handled;
713 }
714
Karl Rosaen138a0412009-04-23 19:00:21 -0700715 private String getTypedText() {
716 return mDefaultKeySsb.toString();
717 }
718
719 private void clearTypedText() {
720 mDefaultKeySsb.clear();
721 mDefaultKeySsb.clearSpans();
722 Selection.setSelection(mDefaultKeySsb, 0);
723 }
724
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800725 /**
Michael Jurka883f55b2010-10-21 15:47:14 -0700726 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
727 * State
728 */
729 private static State intToState(int stateOrdinal) {
730 State state = State.WORKSPACE;
731 final State[] stateValues = State.values();
732 for (int i = 0; i < stateValues.length; i++) {
733 if (stateValues[i].ordinal() == stateOrdinal) {
734 state = stateValues[i];
735 break;
736 }
737 }
738 return state;
739 }
740
741 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800742 * Restores the previous state, if it exists.
743 *
744 * @param savedState The previous state.
745 */
746 private void restoreState(Bundle savedState) {
747 if (savedState == null) {
748 return;
749 }
750
Michael Jurka883f55b2010-10-21 15:47:14 -0700751 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungf0ea4d32011-06-06 14:27:16 -0700752 if (state == State.APPS_CUSTOMIZE) {
Joe Onorato3a8820b2009-11-10 15:06:42 -0800753 showAllApps(false);
754 }
755
Winson Chungf0c6ae02012-03-21 16:10:31 -0700756 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN, -1);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800757 if (currentScreen > -1) {
Michael Jurka0142d492010-08-25 17:46:15 -0700758 mWorkspace.setCurrentPage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800759 }
760
Winson Chung3d503fb2011-07-13 17:25:49 -0700761 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
762 final int pendingAddScreen = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700763
Winson Chung3d503fb2011-07-13 17:25:49 -0700764 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
765 mPendingAddInfo.container = pendingAddContainer;
766 mPendingAddInfo.screen = pendingAddScreen;
767 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
768 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800769 mRestoring = true;
770 }
771
772 boolean renameFolder = savedState.getBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, false);
773 if (renameFolder) {
774 long id = savedState.getLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700775 mFolderInfo = mModel.getFolderById(this, sFolders, id);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800776 mRestoring = true;
777 }
Winson Chunga12a2502010-12-20 14:41:35 -0800778
Winson Chung785d2eb2011-04-14 16:08:02 -0700779
780 // Restore the AppsCustomize tab
781 if (mAppsCustomizeTabHost != null) {
782 String curTab = savedState.getString("apps_customize_currentTab");
783 if (curTab != null) {
Winson Chungf0ea4d32011-06-06 14:27:16 -0700784 // We set this directly so that there is no delay before the tab is set
Winson Chung785d2eb2011-04-14 16:08:02 -0700785 mAppsCustomizeContent.setContentType(
786 mAppsCustomizeTabHost.getContentTypeForTabTag(curTab));
787 mAppsCustomizeTabHost.setCurrentTabByTag(curTab);
Winson Chungf314b0e2011-08-16 11:54:27 -0700788 mAppsCustomizeContent.loadAssociatedPages(
789 mAppsCustomizeContent.getCurrentPage());
Winson Chung785d2eb2011-04-14 16:08:02 -0700790 }
791
Winson Chung5afbf7b2011-07-25 11:53:08 -0700792 int currentIndex = savedState.getInt("apps_customize_currentIndex");
793 mAppsCustomizeContent.restorePageForIndex(currentIndex);
Winson Chung785d2eb2011-04-14 16:08:02 -0700794 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800795 }
796
797 /**
798 * Finds all the views we need and configure them properly.
799 */
800 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -0700801 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -0400802
Winson Chung4c98d922011-05-31 16:50:48 -0700803 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
804 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Michael Jurkab737ee62011-11-15 15:57:22 -0800805 mQsbDivider = (ImageView) findViewById(R.id.qsb_divider);
806 mDockDivider = (ImageView) findViewById(R.id.dock_divider);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800807
Winson Chung4c98d922011-05-31 16:50:48 -0700808 // Setup the drag layer
809 mDragLayer.setup(this, dragController);
810
Winson Chung3d503fb2011-07-13 17:25:49 -0700811 // Setup the hotseat
812 mHotseat = (Hotseat) findViewById(R.id.hotseat);
813 if (mHotseat != null) {
814 mHotseat.setup(this);
815 }
816
Winson Chung4c98d922011-05-31 16:50:48 -0700817 // Setup the workspace
818 mWorkspace.setHapticFeedbackEnabled(false);
819 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -0700820 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -0700821 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -0700822
Winson Chungf0ea4d32011-06-06 14:27:16 -0700823 // Get the search/delete bar
Winson Chungc51db6a2011-10-05 11:44:49 -0700824 mSearchDropTargetBar = (SearchDropTargetBar) mDragLayer.findViewById(R.id.qsb_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -0700825
Winson Chungf0ea4d32011-06-06 14:27:16 -0700826 // Setup AppsCustomize
827 mAppsCustomizeTabHost = (AppsCustomizeTabHost)
828 findViewById(R.id.apps_customize_pane);
829 mAppsCustomizeContent = (AppsCustomizePagedView)
830 mAppsCustomizeTabHost.findViewById(R.id.apps_customize_pane_content);
831 mAppsCustomizeContent.setup(this, dragController);
Daniel Sandlerc9b18772010-04-22 14:37:59 -0400832
Michael Jurka5130e402011-10-13 04:55:35 -0700833 // Get the all apps button
834 mAllAppsButton = findViewById(R.id.all_apps_button);
835 if (mAllAppsButton != null) {
836 mAllAppsButton.setOnTouchListener(new View.OnTouchListener() {
837 @Override
838 public boolean onTouch(View v, MotionEvent event) {
839 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
840 onTouchDownAllAppsButton(v);
841 }
842 return false;
843 }
844 });
845 }
Winson Chung3d503fb2011-07-13 17:25:49 -0700846 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -0700847 dragController.setDragScoller(mWorkspace);
848 dragController.setScrollView(mDragLayer);
849 dragController.setMoveTarget(mWorkspace);
850 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -0700851 if (mSearchDropTargetBar != null) {
852 mSearchDropTargetBar.setup(this, dragController);
Michael Jurkae0f5a612011-02-07 16:45:41 -0800853 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800854 }
855
856 /**
857 * Creates a view representing a shortcut.
858 *
859 * @param info The data structure describing the shortcut.
860 *
861 * @return A View inflated from R.layout.application.
862 */
Joe Onorato0589f0f2010-02-08 13:44:00 -0800863 View createShortcut(ShortcutInfo info) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800864 return createShortcut(R.layout.application,
Michael Jurka0142d492010-08-25 17:46:15 -0700865 (ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800866 }
867
868 /**
869 * Creates a view representing a shortcut inflated from the specified resource.
870 *
871 * @param layoutResId The id of the XML layout used to create the shortcut.
872 * @param parent The group the shortcut belongs to.
873 * @param info The data structure describing the shortcut.
874 *
875 * @return A View inflated from layoutResId.
876 */
Joe Onorato0589f0f2010-02-08 13:44:00 -0800877 View createShortcut(int layoutResId, ViewGroup parent, ShortcutInfo info) {
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800878 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(layoutResId, parent, false);
879 favorite.applyFromShortcutInfo(info, mIconCache);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800880 favorite.setOnClickListener(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800881 return favorite;
882 }
883
884 /**
885 * Add an application shortcut to the workspace.
886 *
887 * @param data The intent describing the application.
888 * @param cellInfo The position on screen where to create the shortcut.
889 */
Winson Chung3d503fb2011-07-13 17:25:49 -0700890 void completeAddApplication(Intent data, long container, int screen, int cellX, int cellY) {
Michael Jurka0280c3b2010-09-17 15:00:07 -0700891 final int[] cellXY = mTmpAddItemCellCoordinates;
Winson Chung3d503fb2011-07-13 17:25:49 -0700892 final CellLayout layout = getCellLayout(container, screen);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700893
Adam Cohenfbba09b2011-07-18 21:43:05 -0700894 // First we check if we already know the exact location where we want to add this item.
895 if (cellX >= 0 && cellY >= 0) {
896 cellXY[0] = cellX;
897 cellXY[1] = cellY;
898 } else if (!layout.findCellForSpan(cellXY, 1, 1)) {
Winson Chung93eef082012-03-23 15:59:27 -0700899 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -0700900 return;
901 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800902
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800903 final ShortcutInfo info = mModel.getShortcutInfo(getPackageManager(), data, this);
Joe Onorato0589f0f2010-02-08 13:44:00 -0800904
Romain Guy73b979d2009-06-09 12:57:21 -0700905 if (info != null) {
Joe Onorato0589f0f2010-02-08 13:44:00 -0800906 info.setActivity(data.getComponent(), Intent.FLAG_ACTIVITY_NEW_TASK |
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800907 Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Joe Onorato0589f0f2010-02-08 13:44:00 -0800908 info.container = ItemInfo.NO_ID;
Winson Chung3d503fb2011-07-13 17:25:49 -0700909 mWorkspace.addApplicationShortcut(info, layout, container, screen, cellXY[0], cellXY[1],
Adam Cohenfbba09b2011-07-18 21:43:05 -0700910 isWorkspaceLocked(), cellX, cellY);
Joe Onorato0589f0f2010-02-08 13:44:00 -0800911 } else {
912 Log.e(TAG, "Couldn't find ActivityInfo for selected application: " + data);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800913 }
914 }
Romain Guycbb89e42009-06-08 15:52:54 -0700915
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800916 /**
917 * Add a shortcut to the workspace.
918 *
919 * @param data The intent describing the shortcut.
920 * @param cellInfo The position on screen where to create the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800921 */
Winson Chung3d503fb2011-07-13 17:25:49 -0700922 private void completeAddShortcut(Intent data, long container, int screen, int cellX,
923 int cellY) {
924 int[] cellXY = mTmpAddItemCellCoordinates;
925 int[] touchXY = mPendingAddInfo.dropPos;
926 CellLayout layout = getCellLayout(container, screen);
Romain Guycbb89e42009-06-08 15:52:54 -0700927
Michael Jurkad3ef3062010-11-23 16:23:58 -0800928 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -0700929
Adam Cohen558baaf2011-08-15 15:22:57 -0700930 ShortcutInfo info = mModel.infoFromShortcutIntent(this, data, null);
Adam Cohend9198822011-11-22 16:42:47 -0800931 if (info == null) {
932 return;
933 }
Adam Cohen558baaf2011-08-15 15:22:57 -0700934 final View view = createShortcut(info);
935
Adam Cohenfbba09b2011-07-18 21:43:05 -0700936 // First we check if we already know the exact location where we want to add this item.
937 if (cellX >= 0 && cellY >= 0) {
938 cellXY[0] = cellX;
939 cellXY[1] = cellY;
940 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -0700941
942 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -0800943 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -0700944 true, null,null)) {
945 return;
946 }
947 DragObject dragObject = new DragObject();
948 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -0800949 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
950 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -0700951 return;
952 }
Adam Cohenfbba09b2011-07-18 21:43:05 -0700953 } else if (touchXY != null) {
Michael Jurkad3ef3062010-11-23 16:23:58 -0800954 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -0700955 int[] result = layout.findNearestVacantArea(touchXY[0], touchXY[1], 1, 1, cellXY);
Michael Jurkad3ef3062010-11-23 16:23:58 -0800956 foundCellSpan = (result != null);
957 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -0700958 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -0800959 }
960
961 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -0700962 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -0700963 return;
964 }
965
Adam Cohen558baaf2011-08-15 15:22:57 -0700966 LauncherModel.addItemToDatabase(this, info, container, screen, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800967
968 if (!mRestoring) {
Winson Chung3d503fb2011-07-13 17:25:49 -0700969 mWorkspace.addInScreen(view, container, screen, cellXY[0], cellXY[1], 1, 1,
970 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800971 }
972 }
973
Winson Chunga5c96362012-04-12 14:04:41 -0700974 int[] getSpanForWidget(ComponentName component, int minWidth, int minHeight) {
Adam Cohen0cf2a7c2011-11-08 15:07:01 -0800975 Rect padding = AppWidgetHostView.getDefaultPaddingForWidget(this, component, null);
Adam Cohenf814aa02011-09-01 13:48:05 -0700976 // We want to account for the extra amount of padding that we are adding to the widget
977 // to ensure that it gets the full amount of space that it has requested
978 int requiredWidth = minWidth + padding.left + padding.right;
979 int requiredHeight = minHeight + padding.top + padding.bottom;
980 return CellLayout.rectToCell(getResources(), requiredWidth, requiredHeight, null);
981 }
982
Winson Chunga5c96362012-04-12 14:04:41 -0700983 int[] getSpanForWidget(AppWidgetProviderInfo info) {
984 return getSpanForWidget(info.provider, info.minWidth, info.minHeight);
Adam Cohenf814aa02011-09-01 13:48:05 -0700985 }
986
Winson Chunga5c96362012-04-12 14:04:41 -0700987 int[] getMinSpanForWidget(AppWidgetProviderInfo info) {
988 return getSpanForWidget(info.provider, info.minResizeWidth, info.minResizeHeight);
Adam Cohencbf47e32011-09-16 17:32:37 -0700989 }
990
Winson Chunga5c96362012-04-12 14:04:41 -0700991 int[] getSpanForWidget(PendingAddWidgetInfo info) {
992 return getSpanForWidget(info.componentName, info.minWidth, info.minHeight);
Adam Cohenf814aa02011-09-01 13:48:05 -0700993 }
994
Winson Chunga5c96362012-04-12 14:04:41 -0700995 int[] getMinSpanForWidget(PendingAddWidgetInfo info) {
Adam Cohend41fbf52012-02-16 23:53:59 -0800996 return getSpanForWidget(info.componentName, info.minResizeWidth,
Winson Chunga5c96362012-04-12 14:04:41 -0700997 info.minResizeHeight);
Adam Cohend41fbf52012-02-16 23:53:59 -0800998 }
999
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001000 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001001 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001002 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001003 * @param appWidgetId The app widget id
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001004 * @param cellInfo The position on screen where to create the widget.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001005 */
Adam Cohened66b2b2012-01-23 17:28:51 -08001006 private void completeAddAppWidget(final int appWidgetId, long container, int screen,
1007 AppWidgetHostView hostView, AppWidgetProviderInfo appWidgetInfo) {
1008 if (appWidgetInfo == null) {
1009 appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
1010 }
Romain Guycbb89e42009-06-08 15:52:54 -07001011
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001012 // Calculate the grid spans needed to fit this widget
Winson Chung3d503fb2011-07-13 17:25:49 -07001013 CellLayout layout = getCellLayout(container, screen);
Adam Cohen09353862011-07-14 16:10:03 -07001014
Winson Chunga5c96362012-04-12 14:04:41 -07001015 int[] minSpanXY = getMinSpanForWidget(appWidgetInfo);
1016 int[] spanXY = getSpanForWidget(appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001017
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001018 // Try finding open space on Launcher screen
Michael Jurkaa63c4522010-08-19 13:52:27 -07001019 // We have saved the position to which the widget was dragged-- this really only matters
1020 // if we are placing widgets on a "spring-loaded" screen
Winson Chung3d503fb2011-07-13 17:25:49 -07001021 int[] cellXY = mTmpAddItemCellCoordinates;
1022 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohend41fbf52012-02-16 23:53:59 -08001023 int[] finalSpan = new int[2];
Michael Jurka0280c3b2010-09-17 15:00:07 -07001024 boolean foundCellSpan = false;
Winson Chung3d503fb2011-07-13 17:25:49 -07001025 if (mPendingAddInfo.cellX >= 0 && mPendingAddInfo.cellY >= 0) {
1026 cellXY[0] = mPendingAddInfo.cellX;
1027 cellXY[1] = mPendingAddInfo.cellY;
Adam Cohend41fbf52012-02-16 23:53:59 -08001028 spanXY[0] = mPendingAddInfo.spanX;
1029 spanXY[1] = mPendingAddInfo.spanY;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001030 foundCellSpan = true;
1031 } else if (touchXY != null) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001032 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001033 int[] result = layout.findNearestVacantArea(
Adam Cohend41fbf52012-02-16 23:53:59 -08001034 touchXY[0], touchXY[1], minSpanXY[0], minSpanXY[1], spanXY[0],
1035 spanXY[1], cellXY, finalSpan);
1036 spanXY[0] = finalSpan[0];
1037 spanXY[1] = finalSpan[1];
Michael Jurkad3ef3062010-11-23 16:23:58 -08001038 foundCellSpan = (result != null);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001039 } else {
Adam Cohend41fbf52012-02-16 23:53:59 -08001040 foundCellSpan = layout.findCellForSpan(cellXY, minSpanXY[0], minSpanXY[1]);
Michael Jurkaa63c4522010-08-19 13:52:27 -07001041 }
1042
Michael Jurka0280c3b2010-09-17 15:00:07 -07001043 if (!foundCellSpan) {
Winson Chungf7640c82011-02-28 13:47:29 -08001044 if (appWidgetId != -1) {
1045 // Deleting an app widget ID is a void call but writes to disk before returning
1046 // to the caller...
Winson Chungf7640c82011-02-28 13:47:29 -08001047 new Thread("deleteAppWidgetId") {
1048 public void run() {
1049 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
1050 }
1051 }.start();
1052 }
Winson Chung93eef082012-03-23 15:59:27 -07001053 showOutOfSpaceMessage(isHotseatLayout(layout));
Romain Guy18042c82009-11-06 11:44:55 -08001054 return;
1055 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001056
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001057 // Build Launcher-specific widget info and save to database
Michael Jurkac9d95c52011-08-29 14:03:34 -07001058 LauncherAppWidgetInfo launcherInfo = new LauncherAppWidgetInfo(appWidgetId);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001059 launcherInfo.spanX = spanXY[0];
1060 launcherInfo.spanY = spanXY[1];
Adam Cohend41fbf52012-02-16 23:53:59 -08001061 launcherInfo.minSpanX = mPendingAddInfo.minSpanX;
1062 launcherInfo.minSpanY = mPendingAddInfo.minSpanY;
Romain Guycbb89e42009-06-08 15:52:54 -07001063
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001064 LauncherModel.addItemToDatabase(this, launcherInfo,
Winson Chung3d503fb2011-07-13 17:25:49 -07001065 container, screen, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001066
1067 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001068 if (hostView == null) {
1069 // Perform actual inflation because we're live
1070 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
1071 launcherInfo.hostView.setAppWidget(appWidgetId, appWidgetInfo);
1072 } else {
1073 // The AppWidgetHostView has already been inflated and instantiated
1074 launcherInfo.hostView = hostView;
1075 }
Romain Guycbb89e42009-06-08 15:52:54 -07001076
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001077 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001078 launcherInfo.hostView.setVisibility(View.VISIBLE);
Winson Chung3d503fb2011-07-13 17:25:49 -07001079 mWorkspace.addInScreen(launcherInfo.hostView, container, screen, cellXY[0], cellXY[1],
Joe Onorato9c1289c2009-08-17 11:03:03 -04001080 launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001081
1082 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001083 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001084 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001085 }
Romain Guycbb89e42009-06-08 15:52:54 -07001086
Adam Cohended9f8d2010-11-03 13:25:16 -07001087 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1088 @Override
1089 public void onReceive(Context context, Intent intent) {
1090 final String action = intent.getAction();
1091 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1092 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001093 mDragLayer.clearAllResizeFrames();
Adam Cohended9f8d2010-11-03 13:25:16 -07001094 updateRunning();
Winson Chung337cd9d2011-03-30 10:39:30 -07001095
Winson Chungc100e8e2011-08-09 16:02:43 -07001096 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001097 // processing a multi-step drop
Winson Chungc100e8e2011-08-09 16:02:43 -07001098 if (mAppsCustomizeTabHost != null && mPendingAddInfo.container == ItemInfo.NO_ID) {
1099 mAppsCustomizeTabHost.reset();
1100 showWorkspace(false);
Winson Chung785d2eb2011-04-14 16:08:02 -07001101 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001102 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1103 mUserPresent = true;
1104 updateRunning();
1105 }
1106 }
1107 };
1108
1109 @Override
1110 public void onAttachedToWindow() {
1111 super.onAttachedToWindow();
1112
1113 // Listen for broadcasts related to user-presence
1114 final IntentFilter filter = new IntentFilter();
1115 filter.addAction(Intent.ACTION_SCREEN_OFF);
1116 filter.addAction(Intent.ACTION_USER_PRESENT);
1117 registerReceiver(mReceiver, filter);
1118
Adam Cohend113e0c2010-11-11 10:48:05 -08001119 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001120 mVisible = true;
1121 }
1122
1123 @Override
1124 public void onDetachedFromWindow() {
1125 super.onDetachedFromWindow();
1126 mVisible = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001127 mDragLayer.clearAllResizeFrames();
Adam Cohended9f8d2010-11-03 13:25:16 -07001128
Adam Cohend113e0c2010-11-11 10:48:05 -08001129 if (mAttached) {
1130 unregisterReceiver(mReceiver);
1131 mAttached = false;
1132 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001133 updateRunning();
1134 }
1135
1136 public void onWindowVisibilityChanged(int visibility) {
1137 mVisible = visibility == View.VISIBLE;
1138 updateRunning();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001139 // The following code used to be in onResume, but it turns out onResume is called when
1140 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1141 // is a more appropriate event to handle
1142 if (mVisible) {
1143 mAppsCustomizeTabHost.onWindowVisible();
1144 if (!mWorkspaceLoading) {
1145 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001146 // We want to let Launcher draw itself at least once before we force it to build
1147 // layers on all the workspace pages, so that transitioning to Launcher from other
1148 // apps is nice and speedy. Usually the first call to preDraw doesn't correspond to
1149 // a true draw so we wait until the second preDraw call to be safe
1150 observer.addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener() {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001151 public boolean onPreDraw() {
Michael Jurka6ee21d22012-02-21 18:20:27 -08001152 // We delay the layer building a bit in order to give
1153 // other message processing a time to run. In particular
1154 // this avoids a delay in hiding the IME if it was
1155 // currently shown, because doing that may involve
1156 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001157 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurka6ee21d22012-02-21 18:20:27 -08001158 observer.removeOnPreDrawListener(this);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001159 return true;
1160 }
1161 });
1162 }
Michael Jurka6ee21d22012-02-21 18:20:27 -08001163 // When Launcher comes back to foreground, a different Activity might be responsible for
1164 // the app market intent, so refresh the icon
1165 updateAppMarketIcon();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001166 clearTypedText();
1167 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001168 }
1169
1170 private void sendAdvanceMessage(long delay) {
1171 mHandler.removeMessages(ADVANCE_MSG);
1172 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1173 mHandler.sendMessageDelayed(msg, delay);
1174 mAutoAdvanceSentTime = System.currentTimeMillis();
1175 }
1176
1177 private void updateRunning() {
1178 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1179 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1180 mAutoAdvanceRunning = autoAdvanceRunning;
1181 if (autoAdvanceRunning) {
1182 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1183 sendAdvanceMessage(delay);
1184 } else {
1185 if (!mWidgetsToAdvance.isEmpty()) {
1186 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1187 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1188 }
1189 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001190 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001191 }
1192 }
1193 }
1194
1195 private final Handler mHandler = new Handler() {
1196 @Override
1197 public void handleMessage(Message msg) {
1198 if (msg.what == ADVANCE_MSG) {
1199 int i = 0;
1200 for (View key: mWidgetsToAdvance.keySet()) {
1201 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1202 final int delay = mAdvanceStagger * i;
1203 if (v instanceof Advanceable) {
1204 postDelayed(new Runnable() {
1205 public void run() {
1206 ((Advanceable) v).advance();
1207 }
1208 }, delay);
1209 }
1210 i++;
1211 }
1212 sendAdvanceMessage(mAdvanceInterval);
1213 }
1214 }
1215 };
1216
1217 void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001218 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001219 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1220 if (v instanceof Advanceable) {
1221 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001222 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Adam Cohended9f8d2010-11-03 13:25:16 -07001223 updateRunning();
1224 }
1225 }
1226
1227 void removeWidgetToAutoAdvance(View hostView) {
1228 if (mWidgetsToAdvance.containsKey(hostView)) {
1229 mWidgetsToAdvance.remove(hostView);
1230 updateRunning();
1231 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001232 }
1233
Joe Onorato9c1289c2009-08-17 11:03:03 -04001234 public void removeAppWidget(LauncherAppWidgetInfo launcherInfo) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001235 removeWidgetToAutoAdvance(launcherInfo.hostView);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001236 launcherInfo.hostView = null;
1237 }
1238
Winson Chung93eef082012-03-23 15:59:27 -07001239 void showOutOfSpaceMessage(boolean isHotseatLayout) {
1240 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1241 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001242 }
1243
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001244 public LauncherAppWidgetHost getAppWidgetHost() {
1245 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001246 }
Romain Guycbb89e42009-06-08 15:52:54 -07001247
Winson Chunga9abd0e2010-10-27 17:18:37 -07001248 public LauncherModel getModel() {
1249 return mModel;
1250 }
1251
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001252 void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001253 getWindow().closeAllPanels();
1254
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001255 // Whatever we were doing is hereby canceled.
1256 mWaitingForResult = false;
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001257 }
1258
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001259 @Override
1260 protected void onNewIntent(Intent intent) {
1261 super.onNewIntent(intent);
1262
1263 // Close the menu
1264 if (Intent.ACTION_MAIN.equals(intent.getAction())) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001265 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001266 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001267
Joe Onorato14f122b2009-11-19 14:06:36 -08001268 boolean alreadyOnHome = ((intent.getFlags() & Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1269 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
Michael Jurka01f0ed42010-08-20 00:41:17 -07001270
Adam Cohenac56cff2011-09-28 20:45:37 -07001271 Folder openFolder = mWorkspace.getOpenFolder();
Patrick Dubroy6ec2e182011-02-23 13:31:16 -08001272 // In all these cases, only animate if we're already on home
Patrick Dubroy758a9232011-03-03 19:54:56 -08001273 mWorkspace.exitWidgetResizeMode();
Adam Cohenac56cff2011-09-28 20:45:37 -07001274 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
1275 openFolder == null) {
Patrick Dubroy6ec2e182011-02-23 13:31:16 -08001276 mWorkspace.moveToDefaultScreen(true);
Joe Onorato3a8820b2009-11-10 15:06:42 -08001277 }
Adam Cohenac56cff2011-09-28 20:45:37 -07001278
1279 closeFolder();
Winson Chungde1af762011-07-21 16:44:07 -07001280 exitSpringLoadedDragMode();
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001281 showWorkspace(alreadyOnHome);
Romain Guy1dd3a072009-07-16 13:21:01 -07001282
Joe Onorato3a8820b2009-11-10 15:06:42 -08001283 final View v = getWindow().peekDecorView();
1284 if (v != null && v.getWindowToken() != null) {
1285 InputMethodManager imm = (InputMethodManager)getSystemService(
1286 INPUT_METHOD_SERVICE);
1287 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001288 }
Winson Chung337cd9d2011-03-30 10:39:30 -07001289
Michael Jurka35aa14d2011-07-07 17:01:08 -07001290 // Reset AllApps to its initial state
Adam Cohenb64d36e2011-10-17 21:48:02 -07001291 if (!alreadyOnHome && mAppsCustomizeTabHost != null) {
Winson Chungc100e8e2011-08-09 16:02:43 -07001292 mAppsCustomizeTabHost.reset();
Winson Chung785d2eb2011-04-14 16:08:02 -07001293 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001294 }
1295 }
1296
1297 @Override
1298 protected void onRestoreInstanceState(Bundle savedInstanceState) {
1299 // Do not call super here
1300 mSavedInstanceState = savedInstanceState;
1301 }
1302
1303 @Override
1304 protected void onSaveInstanceState(Bundle outState) {
Michael Jurka0142d492010-08-25 17:46:15 -07001305 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN, mWorkspace.getCurrentPage());
Adam Cohen95bb8002011-07-03 23:40:28 -07001306 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001307
Michael Jurka883f55b2010-10-21 15:47:14 -07001308 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001309 // We close any open folder since it will not be re-opened, and we need to make sure
1310 // this state is reflected.
1311 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001312
Winson Chung3d503fb2011-07-13 17:25:49 -07001313 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screen > -1 &&
1314 mWaitingForResult) {
1315 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
1316 outState.putInt(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screen);
1317 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1318 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001319 }
1320
1321 if (mFolderInfo != null && mWaitingForResult) {
1322 outState.putBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, true);
1323 outState.putLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID, mFolderInfo.id);
1324 }
Michael Jurka946ad472010-07-09 18:05:18 -07001325
Winson Chung785d2eb2011-04-14 16:08:02 -07001326 // Save the current AppsCustomize tab
1327 if (mAppsCustomizeTabHost != null) {
1328 String currentTabTag = mAppsCustomizeTabHost.getCurrentTabTag();
1329 if (currentTabTag != null) {
1330 outState.putString("apps_customize_currentTab", currentTabTag);
1331 }
Winson Chung5afbf7b2011-07-25 11:53:08 -07001332 int currentIndex = mAppsCustomizeContent.getSaveInstanceStateIndex();
1333 outState.putInt("apps_customize_currentIndex", currentIndex);
Winson Chung785d2eb2011-04-14 16:08:02 -07001334 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001335 }
1336
1337 @Override
1338 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001339 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001340
Winson Chunge7a03942011-08-05 15:05:12 -07001341 // Remove all pending runnables
1342 mHandler.removeMessages(ADVANCE_MSG);
1343 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07001344 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07001345
Winson Chungcd2b0142011-06-08 16:02:26 -07001346 // Stop callbacks from LauncherModel
1347 LauncherApplication app = ((LauncherApplication) getApplication());
1348 mModel.stopLoader();
1349 app.setLauncher(null);
1350
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001351 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001352 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001353 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001354 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001355 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001356 mAppWidgetHost = null;
1357
1358 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001359
1360 TextKeyListener.getInstance().release();
1361
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001362
Winson Chung3d503fb2011-07-13 17:25:49 -07001363 unbindWorkspaceAndHotseatItems();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001364
1365 getContentResolver().unregisterContentObserver(mWidgetObserver);
Joe Onorato34a0e1b2009-12-14 17:44:51 -08001366 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001367
1368 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
1369 mWorkspace.removeAllViews();
1370 mWorkspace = null;
1371 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08001372
1373 ValueAnimator.clearAllAnimations();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001374 }
1375
Adam Cohena9cf38f2011-05-02 15:36:58 -07001376 public DragController getDragController() {
1377 return mDragController;
1378 }
1379
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001380 @Override
1381 public void startActivityForResult(Intent intent, int requestCode) {
Romain Guy08f97492009-06-29 14:41:20 -07001382 if (requestCode >= 0) mWaitingForResult = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001383 super.startActivityForResult(intent, requestCode);
1384 }
1385
Winson Chung70d72102011-08-12 11:24:35 -07001386 /**
1387 * Indicates that we want global search for this activity by setting the globalSearch
1388 * argument for {@link #startSearch} to true.
1389 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001390 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07001391 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001392 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001393
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001394 showWorkspace(true);
Romain Guycbb89e42009-06-08 15:52:54 -07001395
Karl Rosaen138a0412009-04-23 19:00:21 -07001396 if (initialQuery == null) {
1397 // Use any text typed in the launcher as the initial query
1398 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07001399 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001400 if (appSearchData == null) {
1401 appSearchData = new Bundle();
Bjorn Bringert3e244cf2010-02-10 14:17:35 +00001402 appSearchData.putString(Search.SOURCE, "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001403 }
Mathew Inwoodcf7f63b2011-10-13 11:31:38 +01001404 Rect sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
Romain Guycbb89e42009-06-08 15:52:54 -07001405
Karl Rosaen138a0412009-04-23 19:00:21 -07001406 final SearchManager searchManager =
1407 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
Karl Rosaen138a0412009-04-23 19:00:21 -07001408 searchManager.startSearch(initialQuery, selectInitialQuery, getComponentName(),
Mathew Inwoodcf7f63b2011-10-13 11:31:38 +01001409 appSearchData, globalSearch, sourceBounds);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001410 }
1411
Winson Chung70d72102011-08-12 11:24:35 -07001412 @Override
1413 public boolean onCreateOptionsMenu(Menu menu) {
1414 if (isWorkspaceLocked()) {
1415 return false;
1416 }
1417
1418 super.onCreateOptionsMenu(menu);
Winson Chungdff8ebb2011-09-08 17:25:31 -07001419
1420 Intent manageApps = new Intent(Settings.ACTION_MANAGE_ALL_APPLICATIONS_SETTINGS);
1421 manageApps.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1422 | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Winson Chung236d4312011-08-22 15:12:27 -07001423 Intent settings = new Intent(android.provider.Settings.ACTION_SETTINGS);
1424 settings.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1425 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Michael Jurkab964f9c2011-09-27 22:10:05 -07001426 String helpUrl = getString(R.string.help_url);
1427 Intent help = new Intent(Intent.ACTION_VIEW, Uri.parse(helpUrl));
Winson Chungdff8ebb2011-09-08 17:25:31 -07001428 help.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1429 | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
1430
Winson Chung70d72102011-08-12 11:24:35 -07001431 menu.add(MENU_GROUP_WALLPAPER, MENU_WALLPAPER_SETTINGS, 0, R.string.menu_wallpaper)
1432 .setIcon(android.R.drawable.ic_menu_gallery)
1433 .setAlphabeticShortcut('W');
1434 menu.add(0, MENU_MANAGE_APPS, 0, R.string.menu_manage_apps)
1435 .setIcon(android.R.drawable.ic_menu_manage)
Winson Chungdff8ebb2011-09-08 17:25:31 -07001436 .setIntent(manageApps)
Winson Chung70d72102011-08-12 11:24:35 -07001437 .setAlphabeticShortcut('M');
Winson Chung236d4312011-08-22 15:12:27 -07001438 menu.add(0, MENU_SYSTEM_SETTINGS, 0, R.string.menu_settings)
1439 .setIcon(android.R.drawable.ic_menu_preferences)
1440 .setIntent(settings)
1441 .setAlphabeticShortcut('P');
Michael Jurkab964f9c2011-09-27 22:10:05 -07001442 if (!helpUrl.isEmpty()) {
1443 menu.add(0, MENU_HELP, 0, R.string.menu_help)
1444 .setIcon(android.R.drawable.ic_menu_help)
1445 .setIntent(help)
1446 .setAlphabeticShortcut('H');
1447 }
Winson Chung70d72102011-08-12 11:24:35 -07001448 return true;
1449 }
1450
1451 @Override
1452 public boolean onPrepareOptionsMenu(Menu menu) {
1453 super.onPrepareOptionsMenu(menu);
1454
1455 if (mAppsCustomizeTabHost.isTransitioning()) {
1456 return false;
1457 }
1458 boolean allAppsVisible = (mAppsCustomizeTabHost.getVisibility() == View.VISIBLE);
1459 menu.setGroupVisible(MENU_GROUP_WALLPAPER, !allAppsVisible);
1460
1461 return true;
1462 }
1463
1464 @Override
1465 public boolean onOptionsItemSelected(MenuItem item) {
1466 switch (item.getItemId()) {
1467 case MENU_WALLPAPER_SETTINGS:
1468 startWallpaper();
1469 return true;
Winson Chung70d72102011-08-12 11:24:35 -07001470 }
1471
1472 return super.onOptionsItemSelected(item);
1473 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001474
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07001475 @Override
1476 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07001477 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07001478 // Use a custom animation for launching search
1479 overridePendingTransition(R.anim.fade_in_fast, R.anim.fade_out_fast);
Karl Rosaen138a0412009-04-23 19:00:21 -07001480 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07001481 }
1482
Joe Onorato9c1289c2009-08-17 11:03:03 -04001483 public boolean isWorkspaceLocked() {
1484 return mWorkspaceLoading || mWaitingForResult;
1485 }
1486
Michael Jurka0280c3b2010-09-17 15:00:07 -07001487 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07001488 mPendingAddInfo.container = ItemInfo.NO_ID;
1489 mPendingAddInfo.screen = -1;
1490 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
1491 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Adam Cohend41fbf52012-02-16 23:53:59 -08001492 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07001493 mPendingAddInfo.dropPos = null;
Michael Jurka0280c3b2010-09-17 15:00:07 -07001494 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07001495
Michael Jurkaaf442092010-06-10 17:01:57 -07001496 void addAppWidgetFromPick(Intent data) {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001497 // TODO: catch bad widget exception when sent
1498 int appWidgetId = data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1);
Michael Jurkaaf442092010-06-10 17:01:57 -07001499 // TODO: Is this log message meaningful?
1500 if (LOGD) Log.d(TAG, "dumping extras content=" + data.getExtras());
Winson Chung55cef262010-10-28 14:14:18 -07001501 addAppWidgetImpl(appWidgetId, null);
Michael Jurkaaf442092010-06-10 17:01:57 -07001502 }
1503
Adam Cohened66b2b2012-01-23 17:28:51 -08001504 void addAppWidgetImpl(final int appWidgetId, final PendingAddWidgetInfo info) {
1505 final AppWidgetProviderInfo appWidget = info.info;
Bjorn Bringert7984c942009-12-09 15:38:25 +00001506 if (appWidget.configure != null) {
1507 // Launch over to configure widget, if needed
1508 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_CONFIGURE);
1509 intent.setComponent(appWidget.configure);
1510 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
Winson Chung55cef262010-10-28 14:14:18 -07001511 if (info != null) {
Winson Chung68846fd2010-10-29 11:00:27 -07001512 if (info.mimeType != null && !info.mimeType.isEmpty()) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001513 intent.putExtra(InstallWidgetReceiver.
1514 EXTRA_APPWIDGET_CONFIGURATION_DATA_MIME_TYPE, info.mimeType);
Winson Chung68846fd2010-10-29 11:00:27 -07001515
1516 final String mimeType = info.mimeType;
1517 final ClipData clipData = (ClipData) info.configurationData;
1518 final ClipDescription clipDesc = clipData.getDescription();
1519 for (int i = 0; i < clipDesc.getMimeTypeCount(); ++i) {
1520 if (clipDesc.getMimeType(i).equals(mimeType)) {
Dianne Hackborn0d5aad72011-01-17 15:28:58 -08001521 final ClipData.Item item = clipData.getItemAt(i);
Winson Chung68846fd2010-10-29 11:00:27 -07001522 final CharSequence stringData = item.getText();
1523 final Uri uriData = item.getUri();
1524 final Intent intentData = item.getIntent();
Adam Cohened66b2b2012-01-23 17:28:51 -08001525 final String key = InstallWidgetReceiver.
1526 EXTRA_APPWIDGET_CONFIGURATION_DATA;
Winson Chung68846fd2010-10-29 11:00:27 -07001527 if (uriData != null) {
1528 intent.putExtra(key, uriData);
1529 } else if (intentData != null) {
1530 intent.putExtra(key, intentData);
1531 } else if (stringData != null) {
1532 intent.putExtra(key, stringData);
1533 }
1534 break;
1535 }
1536 }
1537 }
Winson Chung55cef262010-10-28 14:14:18 -07001538 }
Romain Guy8e633c52010-03-04 12:51:36 -08001539 startActivityForResultSafely(intent, REQUEST_CREATE_APPWIDGET);
Adam Cohened66b2b2012-01-23 17:28:51 -08001540 mWidgetBeingConfigured = info;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001541 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00001542 // Otherwise just add it
Adam Cohened66b2b2012-01-23 17:28:51 -08001543 completeAddAppWidget(appWidgetId, info.container, info.screen, info.boundWidget, appWidget);
Winson Chung557d6ed2011-07-08 15:34:52 -07001544 // Exit spring loaded mode if necessary after adding the widget
Adam Cohened66b2b2012-01-23 17:28:51 -08001545 exitSpringLoadedDragModeDelayed(true, false, null);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001546 }
1547 }
Romain Guycbb89e42009-06-08 15:52:54 -07001548
Adam Cohenfbba09b2011-07-18 21:43:05 -07001549 /**
1550 * Process a shortcut drop.
1551 *
1552 * @param componentName The name of the component
1553 * @param screen The screen where it should be added
1554 * @param cell The cell it should be added to, optional
1555 * @param position The location on the screen where it was dropped, optional
1556 */
Winson Chung3d503fb2011-07-13 17:25:49 -07001557 void processShortcutFromDrop(ComponentName componentName, long container, int screen,
1558 int[] cell, int[] loc) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001559 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07001560 mPendingAddInfo.container = container;
1561 mPendingAddInfo.screen = screen;
1562 mPendingAddInfo.dropPos = loc;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001563
1564 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07001565 mPendingAddInfo.cellX = cell[0];
1566 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07001567 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001568
1569 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
1570 createShortcutIntent.setComponent(componentName);
1571 processShortcut(createShortcutIntent);
1572 }
1573
Adam Cohenfbba09b2011-07-18 21:43:05 -07001574 /**
1575 * Process a widget drop.
1576 *
1577 * @param info The PendingAppWidgetInfo of the widget being added.
1578 * @param screen The screen where it should be added
1579 * @param cell The cell it should be added to, optional
1580 * @param position The location on the screen where it was dropped, optional
1581 */
Winson Chung3d503fb2011-07-13 17:25:49 -07001582 void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, int screen,
Adam Cohend41fbf52012-02-16 23:53:59 -08001583 int[] cell, int[] span, int[] loc) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001584 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07001585 mPendingAddInfo.container = info.container = container;
1586 mPendingAddInfo.screen = info.screen = screen;
1587 mPendingAddInfo.dropPos = loc;
Adam Cohend41fbf52012-02-16 23:53:59 -08001588 mPendingAddInfo.minSpanX = info.minSpanX;
1589 mPendingAddInfo.minSpanY = info.minSpanY;
1590
Adam Cohenfbba09b2011-07-18 21:43:05 -07001591 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07001592 mPendingAddInfo.cellX = cell[0];
1593 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07001594 }
Adam Cohend41fbf52012-02-16 23:53:59 -08001595 if (span != null) {
1596 mPendingAddInfo.spanX = span[0];
1597 mPendingAddInfo.spanY = span[1];
1598 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001599
Adam Cohened66b2b2012-01-23 17:28:51 -08001600 AppWidgetHostView hostView = info.boundWidget;
1601 int appWidgetId;
1602 if (hostView != null) {
1603 appWidgetId = hostView.getAppWidgetId();
1604 } else {
1605 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
1606 AppWidgetManager.getInstance(this).bindAppWidgetId(appWidgetId, info.componentName);
1607 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001608 addAppWidgetImpl(appWidgetId, info);
1609 }
1610
Joe Onoratodeb98af2010-02-19 14:59:39 -08001611 void processShortcut(Intent intent) {
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001612 // Handle case where user selected "Applications"
1613 String applicationName = getResources().getString(R.string.group_applications);
1614 String shortcutName = intent.getStringExtra(Intent.EXTRA_SHORTCUT_NAME);
Romain Guycbb89e42009-06-08 15:52:54 -07001615
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001616 if (applicationName != null && applicationName.equals(shortcutName)) {
1617 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
1618 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
Romain Guycbb89e42009-06-08 15:52:54 -07001619
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001620 Intent pickIntent = new Intent(Intent.ACTION_PICK_ACTIVITY);
1621 pickIntent.putExtra(Intent.EXTRA_INTENT, mainIntent);
Winson Chung58f20882010-10-01 13:44:56 -07001622 pickIntent.putExtra(Intent.EXTRA_TITLE, getText(R.string.title_select_application));
Joe Onorato4a79a042010-09-24 16:17:21 -07001623 startActivityForResultSafely(pickIntent, REQUEST_PICK_APPLICATION);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001624 } else {
Joe Onorato4a79a042010-09-24 16:17:21 -07001625 startActivityForResultSafely(intent, REQUEST_CREATE_SHORTCUT);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001626 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001627 }
1628
Winson Chung24ab2f12010-09-16 14:10:47 -07001629 void processWallpaper(Intent intent) {
1630 startActivityForResult(intent, REQUEST_PICK_WALLPAPER);
1631 }
1632
Winson Chung3d503fb2011-07-13 17:25:49 -07001633 FolderIcon addFolder(CellLayout layout, long container, final int screen, int cellX,
1634 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07001635 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001636 folderInfo.title = getText(R.string.folder_name);
1637
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001638 // Update the model
Winson Chung3d503fb2011-07-13 17:25:49 -07001639 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screen, cellX, cellY,
1640 false);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001641 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001642
1643 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07001644 FolderIcon newFolder =
1645 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
1646 mWorkspace.addInScreen(newFolder, container, screen, cellX, cellY, 1, 1,
1647 isWorkspaceLocked());
Adam Cohendf035382011-04-11 17:22:04 -07001648 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001649 }
Romain Guycbb89e42009-06-08 15:52:54 -07001650
Joe Onorato9c1289c2009-08-17 11:03:03 -04001651 void removeFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001652 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001653 }
1654
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001655 private void startWallpaper() {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001656 showWorkspace(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001657 final Intent pickWallpaper = new Intent(Intent.ACTION_SET_WALLPAPER);
Dianne Hackborn8355ae32009-09-07 21:47:51 -07001658 Intent chooser = Intent.createChooser(pickWallpaper,
1659 getText(R.string.chooser_wallpaper));
Romain Guyf2826c72009-11-12 17:39:34 -08001660 // NOTE: Adds a configure option to the chooser if the wallpaper supports it
1661 // Removed in Eclair MR1
1662// WallpaperManager wm = (WallpaperManager)
1663// getSystemService(Context.WALLPAPER_SERVICE);
1664// WallpaperInfo wi = wm.getWallpaperInfo();
1665// if (wi != null && wi.getSettingsActivity() != null) {
1666// LabeledIntent li = new LabeledIntent(getPackageName(),
1667// R.string.configure_wallpaper, 0);
1668// li.setClassName(wi.getPackageName(), wi.getSettingsActivity());
1669// chooser.putExtra(Intent.EXTRA_INITIAL_INTENTS, new Intent[] { li });
1670// }
Mike Clerona0618e42009-10-22 13:55:21 -07001671 startActivityForResult(chooser, REQUEST_PICK_WALLPAPER);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001672 }
1673
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001674 /**
1675 * Registers various content observers. The current implementation registers
1676 * only a favorites observer to keep track of the favorites applications.
1677 */
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001678 private void registerContentObservers() {
1679 ContentResolver resolver = getContentResolver();
1680 resolver.registerContentObserver(LauncherProvider.CONTENT_APPWIDGET_RESET_URI,
1681 true, mWidgetObserver);
1682 }
1683
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001684 @Override
1685 public boolean dispatchKeyEvent(KeyEvent event) {
1686 if (event.getAction() == KeyEvent.ACTION_DOWN) {
1687 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001688 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07001689 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08001690 case KeyEvent.KEYCODE_VOLUME_DOWN:
Jason Samseb5615d2009-11-30 11:50:10 -08001691 if (SystemProperties.getInt("debug.launcher2.dumpstate", 0) != 0) {
Joe Onoratobe386092009-11-17 17:32:16 -08001692 dumpState();
1693 return true;
1694 }
1695 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07001696 }
1697 } else if (event.getAction() == KeyEvent.ACTION_UP) {
1698 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07001699 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001700 return true;
1701 }
1702 }
1703
1704 return super.dispatchKeyEvent(event);
1705 }
1706
Joe Onorato88ec0992009-11-19 13:16:06 -08001707 @Override
1708 public void onBackPressed() {
Winson Chungf0ea4d32011-06-06 14:27:16 -07001709 if (mState == State.APPS_CUSTOMIZE) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001710 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08001711 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07001712 Folder openFolder = mWorkspace.getOpenFolder();
1713 if (openFolder.isEditingName()) {
1714 openFolder.dismissEditingName();
1715 } else {
1716 closeFolder();
1717 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08001718 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08001719 mWorkspace.exitWidgetResizeMode();
1720
Patrick Dubroy94f78a52011-02-28 17:39:16 -08001721 // Back button is a no-op here, but give at least some feedback for the button press
1722 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07001723 }
Joe Onorato88ec0992009-11-19 13:16:06 -08001724 }
1725
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001726 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001727 * Re-listen when widgets are reset.
1728 */
1729 private void onAppWidgetReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08001730 if (mAppWidgetHost != null) {
1731 mAppWidgetHost.startListening();
1732 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001733 }
1734
1735 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04001736 * Go through the and disconnect any of the callbacks in the drawables and the views or we
1737 * leak the previous Home screen on orientation change.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001738 */
Winson Chung3d503fb2011-07-13 17:25:49 -07001739 private void unbindWorkspaceAndHotseatItems() {
Winson Chung603bcb92011-09-02 11:45:39 -07001740 if (mModel != null) {
1741 mModel.unbindWorkspaceItems();
1742 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001743 }
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001744
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001745 /**
1746 * Launches the intent referred by the clicked shortcut.
1747 *
1748 * @param v The view representing the clicked shortcut.
1749 */
1750 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07001751 // Make sure that rogue clicks don't get through while allapps is launching, or after the
1752 // view has detached (it's possible for this to happen if the view is removed mid touch).
1753 if (v.getWindowToken() == null) {
1754 return;
1755 }
1756
Winson Chung9b0b2fe2012-02-24 13:03:34 -08001757 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07001758 return;
1759 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07001760
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001761 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08001762 if (tag instanceof ShortcutInfo) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001763 // Open shortcut
Romain Guyfb5411e2010-02-24 10:04:17 -08001764 final Intent intent = ((ShortcutInfo) tag).intent;
Joe Onorato13724ea2009-12-02 21:16:35 -08001765 int[] pos = new int[2];
1766 v.getLocationOnScreen(pos);
Romain Guyfb5411e2010-02-24 10:04:17 -08001767 intent.setSourceBounds(new Rect(pos[0], pos[1],
1768 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Michael Jurkaddd62e92011-02-16 17:49:14 -08001769 boolean success = startActivitySafely(intent, tag);
1770
1771 if (success && v instanceof BubbleTextView) {
1772 mWaitingForResume = (BubbleTextView) v;
1773 mWaitingForResume.setStayPressed(true);
1774 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001775 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07001776 if (v instanceof FolderIcon) {
1777 FolderIcon fi = (FolderIcon) v;
1778 handleFolderClick(fi);
1779 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07001780 } else if (v == mAllAppsButton) {
1781 if (mState == State.APPS_CUSTOMIZE) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001782 showWorkspace(true);
Joe Onorato7404ee42009-07-31 11:54:44 -07001783 } else {
Michael Jurka2a552322011-10-11 15:22:05 -07001784 onClickAllAppsButton(v);
Joe Onorato7404ee42009-07-31 11:54:44 -07001785 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001786 }
1787 }
1788
Michael Jurka0e260592010-06-30 17:07:39 -07001789 public boolean onTouch(View v, MotionEvent event) {
Michael Jurkadee05892010-07-27 10:01:56 -07001790 // this is an intercepted event being forwarded from mWorkspace;
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001791 // clicking anywhere on the workspace causes the customization drawer to slide down
1792 showWorkspace(true);
Michael Jurka0e260592010-06-30 17:07:39 -07001793 return false;
1794 }
1795
Michael Jurkaaf442092010-06-10 17:01:57 -07001796 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001797 * Event handler for the search button
1798 *
1799 * @param v The view that was clicked.
1800 */
1801 public void onClickSearchButton(View v) {
Winson Chungbb185bd2011-11-21 12:31:42 -08001802 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
1803
Amith Yamasania135ba82011-08-09 17:42:01 -07001804 onSearchRequested();
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001805 }
1806
1807 /**
Amith Yamasani6d7fe502010-11-16 09:05:07 -08001808 * Event handler for the voice button
1809 *
1810 * @param v The view that was clicked.
1811 */
1812 public void onClickVoiceButton(View v) {
Winson Chungbb185bd2011-11-21 12:31:42 -08001813 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
Amith Yamasani6d7fe502010-11-16 09:05:07 -08001814
Amith Yamasani6d7fe502010-11-16 09:05:07 -08001815 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
Winson Chungdff8ebb2011-09-08 17:25:31 -07001816 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Winson Chunge3fbfa92012-04-24 14:34:28 -07001817 startActivitySafely(intent, "onClickVoiceButton");
Amith Yamasani6d7fe502010-11-16 09:05:07 -08001818 }
1819
1820 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001821 * Event handler for the "grid" button that appears on the home screen, which
1822 * enters all apps mode.
1823 *
1824 * @param v The view that was clicked.
1825 */
1826 public void onClickAllAppsButton(View v) {
Michael Jurka5130e402011-10-13 04:55:35 -07001827 showAllApps(true);
1828 }
1829
1830 public void onTouchDownAllAppsButton(View v) {
Michael Jurka2a552322011-10-11 15:22:05 -07001831 // Provide the same haptic feedback that the system offers for virtual keys.
1832 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001833 }
1834
Patrick Dubroyceae05d2010-08-30 10:40:53 -07001835 public void onClickAppMarketButton(View v) {
1836 if (mAppMarketIntent != null) {
1837 startActivitySafely(mAppMarketIntent, "app market");
Winson Chung4f916f42012-03-26 15:30:59 -07001838 } else {
1839 Log.e(TAG, "Invalid app market intent.");
Patrick Dubroyceae05d2010-08-30 10:40:53 -07001840 }
1841 }
1842
Patrick Dubroybc6840b2010-09-01 11:54:27 -07001843 void startApplicationDetailsActivity(ComponentName componentName) {
1844 String packageName = componentName.getPackageName();
Patrick Dubroy4ed62782010-08-17 15:11:18 -07001845 Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS,
1846 Uri.fromParts("package", packageName, null));
Winson Chungdff8ebb2011-09-08 17:25:31 -07001847 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Winson Chunge3fbfa92012-04-24 14:34:28 -07001848 startActivitySafely(intent, "startApplicationDetailsActivity");
Patrick Dubroy4ed62782010-08-17 15:11:18 -07001849 }
1850
Patrick Dubroy5539af72010-09-07 15:22:01 -07001851 void startApplicationUninstallActivity(ApplicationInfo appInfo) {
1852 if ((appInfo.flags & ApplicationInfo.DOWNLOADED_FLAG) == 0) {
1853 // System applications cannot be installed. For now, show a toast explaining that.
1854 // We may give them the option of disabling apps this way.
1855 int messageId = R.string.uninstall_system_app_text;
1856 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
1857 } else {
1858 String packageName = appInfo.componentName.getPackageName();
1859 String className = appInfo.componentName.getClassName();
1860 Intent intent = new Intent(
1861 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07001862 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
1863 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Patrick Dubroy5539af72010-09-07 15:22:01 -07001864 startActivity(intent);
1865 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07001866 }
1867
Michael Jurkaddd62e92011-02-16 17:49:14 -08001868 boolean startActivitySafely(Intent intent, Object tag) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001869 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
1870 try {
1871 startActivity(intent);
Michael Jurkaddd62e92011-02-16 17:49:14 -08001872 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001873 } catch (ActivityNotFoundException e) {
1874 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Daniel Sandlerc9b18772010-04-22 14:37:59 -04001875 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001876 } catch (SecurityException e) {
1877 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001878 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001879 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07001880 "or use the exported attribute for this activity. "
1881 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001882 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08001883 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001884 }
Winson Chungaafa03c2010-06-11 17:34:16 -07001885
Romain Guy8e633c52010-03-04 12:51:36 -08001886 void startActivityForResultSafely(Intent intent, int requestCode) {
1887 try {
1888 startActivityForResult(intent, requestCode);
1889 } catch (ActivityNotFoundException e) {
1890 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
1891 } catch (SecurityException e) {
1892 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
1893 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
1894 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
1895 "or use the exported attribute for this activity.", e);
1896 }
1897 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001898
Adam Cohena9cf38f2011-05-02 15:36:58 -07001899 private void handleFolderClick(FolderIcon folderIcon) {
1900 final FolderInfo info = folderIcon.mInfo;
Adam Cohen3c81a382011-08-31 22:25:51 -07001901 Folder openFolder = mWorkspace.getFolderForTag(info);
1902
1903 // If the folder info reports that the associated folder is open, then verify that
1904 // it is actually opened. There have been a few instances where this gets out of sync.
1905 if (info.opened && openFolder == null) {
1906 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
1907 + info.screen + " (" + info.cellX + ", " + info.cellY + ")");
1908 info.opened = false;
1909 }
1910
Adam Cohena9cf38f2011-05-02 15:36:58 -07001911 if (!info.opened) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001912 // Close any open folder
1913 closeFolder();
1914 // Open the requested folder
Adam Cohena9cf38f2011-05-02 15:36:58 -07001915 openFolder(folderIcon);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001916 } else {
1917 // Find the open folder...
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001918 int folderScreen;
1919 if (openFolder != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07001920 folderScreen = mWorkspace.getPageForView(openFolder);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001921 // .. and close it
1922 closeFolder(openFolder);
Michael Jurka0142d492010-08-25 17:46:15 -07001923 if (folderScreen != mWorkspace.getCurrentPage()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001924 // Close any folder open on the current screen
1925 closeFolder();
1926 // Pull the folder onto this screen
Adam Cohena9cf38f2011-05-02 15:36:58 -07001927 openFolder(folderIcon);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001928 }
1929 }
1930 }
1931 }
1932
Adam Cohen2801caf2011-05-13 20:57:39 -07001933 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07001934 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07001935 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
1936 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
1937 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
1938
Adam Cohenc51934b2011-07-26 21:07:43 -07001939 FolderInfo info = (FolderInfo) fi.getTag();
1940 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
1941 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07001942 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
1943 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07001944 }
1945
Adam Cohen2801caf2011-05-13 20:57:39 -07001946 ObjectAnimator oa = ObjectAnimator.ofPropertyValuesHolder(fi, alpha, scaleX, scaleY);
1947 oa.setDuration(getResources().getInteger(R.integer.config_folderAnimDuration));
1948 oa.start();
1949 }
1950
1951 private void shrinkAndFadeInFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07001952 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07001953 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
1954 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
1955 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
1956
Adam Cohenc51934b2011-07-26 21:07:43 -07001957 FolderInfo info = (FolderInfo) fi.getTag();
1958 CellLayout cl = null;
1959 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
1960 cl = (CellLayout) fi.getParent().getParent();
1961 }
1962
1963 final CellLayout layout = cl;
Adam Cohen2801caf2011-05-13 20:57:39 -07001964 ObjectAnimator oa = ObjectAnimator.ofPropertyValuesHolder(fi, alpha, scaleX, scaleY);
1965 oa.setDuration(getResources().getInteger(R.integer.config_folderAnimDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07001966 oa.addListener(new AnimatorListenerAdapter() {
1967 @Override
1968 public void onAnimationEnd(Animator animation) {
1969 if (layout != null) {
1970 layout.clearFolderLeaveBehind();
1971 }
1972 }
1973 });
Adam Cohen2801caf2011-05-13 20:57:39 -07001974 oa.start();
1975 }
1976
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001977 /**
Michael Jurka774bd372010-10-22 13:40:50 -07001978 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001979 * is animated relative to the specified View. If the View is null, no animation
1980 * is played.
1981 *
1982 * @param folderInfo The FolderInfo describing the folder to open.
1983 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07001984 public void openFolder(FolderIcon folderIcon) {
1985 Folder folder = folderIcon.mFolder;
1986 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001987
Adam Cohen2801caf2011-05-13 20:57:39 -07001988 growAndFadeOutFolderIcon(folderIcon);
Adam Cohena9cf38f2011-05-02 15:36:58 -07001989 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001990
Adam Cohen4554ee12011-08-03 16:13:21 -07001991 // Just verify that the folder hasn't already been added to the DragLayer.
1992 // There was a one-off crash where the folder had a parent already.
1993 if (folder.getParent() == null) {
1994 mDragLayer.addView(folder);
1995 mDragController.addDropTarget((DropTarget) folder);
1996 } else {
1997 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
1998 folder.getParent() + ").");
1999 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07002000 folder.animateOpen();
Adam Cohen4554ee12011-08-03 16:13:21 -07002001 }
2002
2003 public void closeFolder() {
2004 Folder folder = mWorkspace.getOpenFolder();
2005 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07002006 if (folder.isEditingName()) {
2007 folder.dismissEditingName();
2008 }
Adam Cohen4554ee12011-08-03 16:13:21 -07002009 closeFolder(folder);
Winson Chung7d7541e2011-09-16 20:14:36 -07002010
2011 // Dismiss the folder cling
2012 dismissFolderCling(null);
Adam Cohen4554ee12011-08-03 16:13:21 -07002013 }
2014 }
2015
2016 void closeFolder(Folder folder) {
2017 folder.getInfo().opened = false;
2018
2019 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
2020 if (parent != null) {
2021 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
2022 shrinkAndFadeInFolderIcon(fi);
2023 }
2024 folder.animateClosed();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002025 }
2026
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002027 public boolean onLongClick(View v) {
Winson Chungeecf02d2012-03-02 17:14:58 -08002028
Patrick Dubroye708c522011-03-01 16:03:43 -08002029 if (mState != State.WORKSPACE) {
2030 return false;
2031 }
2032
Joe Onorato9c1289c2009-08-17 11:03:03 -04002033 if (isWorkspaceLocked()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002034 return false;
2035 }
2036
2037 if (!(v instanceof CellLayout)) {
Michael Jurka8c920dd2011-01-20 14:16:56 -08002038 v = (View) v.getParent().getParent();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002039 }
2040
Michael Jurka0280c3b2010-09-17 15:00:07 -07002041 resetAddInfo();
2042 CellLayout.CellInfo longClickCellInfo = (CellLayout.CellInfo) v.getTag();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002043 // This happens when long clicking an item with the dpad/trackball
Adam Cohenfaea1f82011-07-21 16:23:57 -07002044 if (longClickCellInfo == null) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002045 return true;
2046 }
2047
Winson Chung3d503fb2011-07-13 17:25:49 -07002048 // The hotseat touch handling does not go through Workspace, and we always allow long press
2049 // on hotseat items.
Michael Jurka0280c3b2010-09-17 15:00:07 -07002050 final View itemUnderLongClick = longClickCellInfo.cell;
Winson Chung3d503fb2011-07-13 17:25:49 -07002051 boolean allowLongPress = isHotseatLayout(v) || mWorkspace.allowLongPress();
2052 if (allowLongPress && !mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002053 if (itemUnderLongClick == null) {
2054 // User long pressed on empty space
Michael Jurka0280c3b2010-09-17 15:00:07 -07002055 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
2056 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Winson Chung6a3fd3f2011-08-02 14:03:26 -07002057 startWallpaper();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002058 } else {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002059 if (!(itemUnderLongClick instanceof Folder)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002060 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07002061 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002062 }
2063 }
2064 }
2065 return true;
2066 }
2067
Winson Chung3d503fb2011-07-13 17:25:49 -07002068 boolean isHotseatLayout(View layout) {
2069 return mHotseat != null && layout != null &&
2070 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
2071 }
2072 Hotseat getHotseat() {
2073 return mHotseat;
Romain Guy1fbc1c82009-11-09 20:43:08 -08002074 }
Adam Cohenebea84d2011-11-09 17:20:41 -08002075 SearchDropTargetBar getSearchBar() {
2076 return mSearchDropTargetBar;
2077 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08002078
Winson Chung3d503fb2011-07-13 17:25:49 -07002079 /**
2080 * Returns the CellLayout of the specified container at the specified screen.
2081 */
2082 CellLayout getCellLayout(long container, int screen) {
2083 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
2084 if (mHotseat != null) {
2085 return mHotseat.getLayout();
2086 } else {
2087 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08002088 }
Winson Chung3d503fb2011-07-13 17:25:49 -07002089 } else {
2090 return (CellLayout) mWorkspace.getChildAt(screen);
Romain Guya6abce82009-11-10 02:54:41 -08002091 }
2092 }
2093
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002094 Workspace getWorkspace() {
2095 return mWorkspace;
2096 }
2097
Daniel Sandler843e8602010-06-07 14:59:01 -04002098 // Now a part of LauncherModel.Callbacks. Used to reorder loading steps.
2099 public boolean isAllAppsVisible() {
Winson Chungf0ea4d32011-06-06 14:27:16 -07002100 return (mState == State.APPS_CUSTOMIZE);
Joe Onoratofb0ca672009-09-14 17:55:46 -04002101 }
2102
Andrew Flynn0dca1ec2012-02-29 13:33:22 -08002103 public boolean isAllAppsButtonRank(int rank) {
2104 return mHotseat.isAllAppsButtonRank(rank);
2105 }
2106
Daniel Sandlerc351eb82010-03-03 15:05:19 -05002107 // AllAppsView.Watcher
2108 public void zoomed(float zoom) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07002109 if (zoom == 1.0f) {
Daniel Sandlerc351eb82010-03-03 15:05:19 -05002110 mWorkspace.setVisibility(View.GONE);
2111 }
2112 }
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002113
2114 /**
2115 * Helper method for the cameraZoomIn/cameraZoomOut animations
2116 * @param view The view being animated
Winson Chungf0ea4d32011-06-06 14:27:16 -07002117 * @param state The state that we are moving in or out of (eg. APPS_CUSTOMIZE)
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002118 * @param scaleFactor The scale factor used for the zoom
2119 */
Michael Jurkab3e22d92011-10-31 15:58:33 -07002120 private void setPivotsForZoom(View view, float scaleFactor) {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002121 view.setPivotX(view.getWidth() / 2.0f);
Adam Cohen7777d962011-08-18 18:58:38 -07002122 view.setPivotY(view.getHeight() / 2.0f);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002123 }
Daniel Sandlerc351eb82010-03-03 15:05:19 -05002124
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002125 void updateWallpaperVisibility(boolean visible) {
2126 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
2127 int curflags = getWindow().getAttributes().flags
2128 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
2129 if (wpflags != curflags) {
2130 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
2131 }
2132 }
2133
Michael Jurkabed61d22012-02-14 22:51:29 -08002134 private void dispatchOnLauncherTransitionStart(View v, boolean animated, boolean toWorkspace) {
2135 if (v instanceof LauncherTransitionable) {
2136 ((LauncherTransitionable) v).onLauncherTransitionStart(this, animated, toWorkspace);
2137 }
Winson Chung70442722012-02-10 15:43:22 -08002138
2139 // Update the workspace transition step as well
2140 dispatchOnLauncherTransitionStep(v, 0f);
2141 }
2142
2143 private void dispatchOnLauncherTransitionStep(View v, float t) {
2144 if (v instanceof LauncherTransitionable) {
2145 ((LauncherTransitionable) v).onLauncherTransitionStep(this, t);
2146 }
Michael Jurkabed61d22012-02-14 22:51:29 -08002147 }
2148
2149 private void dispatchOnLauncherTransitionEnd(View v, boolean animated, boolean toWorkspace) {
2150 if (v instanceof LauncherTransitionable) {
2151 ((LauncherTransitionable) v).onLauncherTransitionEnd(this, animated, toWorkspace);
2152 }
Winson Chung70442722012-02-10 15:43:22 -08002153
2154 // Update the workspace transition step as well
2155 dispatchOnLauncherTransitionStep(v, 1f);
Michael Jurkabed61d22012-02-14 22:51:29 -08002156 }
2157
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002158 /**
Michael Jurkab3e22d92011-10-31 15:58:33 -07002159 * Things to test when changing the following seven functions.
2160 * - Home from workspace
2161 * - from center screen
2162 * - from other screens
2163 * - Home from all apps
2164 * - from center screen
2165 * - from other screens
2166 * - Back from all apps
2167 * - from center screen
2168 * - from other screens
2169 * - Launch app from workspace and quit
2170 * - with back
2171 * - with home
2172 * - Launch app from all apps and quit
2173 * - with back
2174 * - with home
2175 * - Go to a screen that's not the default, then all
2176 * apps, and launch and app, and go back
2177 * - with back
2178 * -with home
2179 * - On workspace, long press power and go back
2180 * - with back
2181 * - with home
2182 * - On all apps, long press power and go back
2183 * - with back
2184 * - with home
2185 * - On workspace, power off
2186 * - On all apps, power off
2187 * - Launch an app and turn off the screen while in that app
2188 * - Go back with home key
2189 * - Go back with back key TODO: make this not go to workspace
2190 * - From all apps
2191 * - From workspace
2192 * - Enter and exit car mode (becuase it causes an extra configuration changed)
2193 * - From all apps
2194 * - From the center workspace
2195 * - From another workspace
2196 */
2197
2198 /**
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002199 * Zoom the camera out from the workspace to reveal 'toView'.
2200 * Assumes that the view to show is anchored at either the very top or very bottom
2201 * of the screen.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002202 */
Michael Jurkabed61d22012-02-14 22:51:29 -08002203 private void showAppsCustomizeHelper(final boolean animated, final boolean springLoaded) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07002204 if (mStateAnimation != null) {
2205 mStateAnimation.cancel();
2206 mStateAnimation = null;
2207 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002208 final Resources res = getResources();
Adam Cohenf16e5712011-01-13 13:31:45 -08002209
Winson Chungf0ea4d32011-06-06 14:27:16 -07002210 final int duration = res.getInteger(R.integer.config_appsCustomizeZoomInTime);
2211 final int fadeDuration = res.getInteger(R.integer.config_appsCustomizeFadeInTime);
2212 final float scale = (float) res.getInteger(R.integer.config_appsCustomizeZoomScaleFactor);
Michael Jurkabed61d22012-02-14 22:51:29 -08002213 final View fromView = mWorkspace;
Winson Chungf0ea4d32011-06-06 14:27:16 -07002214 final View toView = mAppsCustomizeTabHost;
Adam Cohencff6af82011-09-13 14:51:53 -07002215 final int startDelay =
2216 res.getInteger(R.integer.config_workspaceAppsCustomizeAnimationStagger);
Patrick Dubroy558654c2010-07-23 16:48:11 -07002217
Michael Jurkab3e22d92011-10-31 15:58:33 -07002218 setPivotsForZoom(toView, scale);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002219
Michael Jurkad74c9842011-07-10 12:44:21 -07002220 // Shrink workspaces away if going to AppsCustomize from workspace
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002221 Animator workspaceAnim =
2222 mWorkspace.getChangeStateAnimation(Workspace.State.SMALL, animated);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002223
2224 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08002225 toView.setScaleX(scale);
2226 toView.setScaleY(scale);
2227 final LauncherViewPropertyAnimator scaleAnim = new LauncherViewPropertyAnimator(toView);
2228 scaleAnim.
2229 scaleX(1f).scaleY(1f).
2230 setDuration(duration).
2231 setInterpolator(new Workspace.ZoomOutInterpolator());
Adam Cohen61033d32010-11-15 18:29:44 -08002232
Winson Chungf0ea4d32011-06-06 14:27:16 -07002233 toView.setVisibility(View.VISIBLE);
Adam Cohenc00f0b92011-12-06 19:45:06 -08002234 toView.setAlpha(0f);
Michael Jurka159b4cc2012-01-17 03:00:35 -08002235 final ObjectAnimator alphaAnim = ObjectAnimator
2236 .ofFloat(toView, "alpha", 0f, 1f)
2237 .setDuration(fadeDuration);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002238 alphaAnim.setInterpolator(new DecelerateInterpolator(1.5f));
Winson Chung70442722012-02-10 15:43:22 -08002239 alphaAnim.addUpdateListener(new AnimatorUpdateListener() {
2240 @Override
2241 public void onAnimationUpdate(ValueAnimator animation) {
2242 float t = (Float) animation.getAnimatedValue();
2243 dispatchOnLauncherTransitionStep(fromView, t);
2244 dispatchOnLauncherTransitionStep(toView, t);
2245 }
2246 });
Adam Cohenf16e5712011-01-13 13:31:45 -08002247
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002248 // toView should appear right at the end of the workspace shrink
2249 // animation
2250 mStateAnimation = new AnimatorSet();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002251 mStateAnimation.play(scaleAnim).after(startDelay);
Michael Jurka7407d2a2011-12-12 21:48:38 -08002252 mStateAnimation.play(alphaAnim).after(startDelay);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002253
2254 mStateAnimation.addListener(new AnimatorListenerAdapter() {
Adam Cohenf4ddea32011-09-12 13:46:42 -07002255 boolean animationCancelled = false;
2256
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002257 @Override
Chet Haaseb1254a62010-09-07 13:35:00 -07002258 public void onAnimationStart(Animator animation) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002259 updateWallpaperVisibility(true);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002260 // Prepare the position
2261 toView.setTranslationX(0.0f);
2262 toView.setTranslationY(0.0f);
2263 toView.setVisibility(View.VISIBLE);
Winson Chung785d2eb2011-04-14 16:08:02 -07002264 toView.bringToFront();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002265 }
Michael Jurka3c4c20f2010-10-28 15:36:06 -07002266 @Override
Michael Jurka8edd75c2010-12-17 20:15:06 -08002267 public void onAnimationEnd(Animator animation) {
Michael Jurkabed61d22012-02-14 22:51:29 -08002268 dispatchOnLauncherTransitionEnd(fromView, animated, false);
2269 dispatchOnLauncherTransitionEnd(toView, animated, false);
Winson Chung32174c82011-07-19 15:47:55 -07002270
2271 if (!springLoaded && !LauncherApplication.isScreenLarge()) {
2272 // Hide the workspace scrollbar
2273 mWorkspace.hideScrollingIndicator(true);
Michael Jurkab737ee62011-11-15 15:57:22 -08002274 hideDockDivider();
Winson Chung32174c82011-07-19 15:47:55 -07002275 }
Adam Cohenf4ddea32011-09-12 13:46:42 -07002276 if (!animationCancelled) {
2277 updateWallpaperVisibility(false);
2278 }
2279 }
2280
Adam Cohencff6af82011-09-13 14:51:53 -07002281 @Override
Adam Cohenf4ddea32011-09-12 13:46:42 -07002282 public void onAnimationCancel(Animator animation) {
2283 animationCancelled = true;
Michael Jurka3c4c20f2010-10-28 15:36:06 -07002284 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002285 });
2286
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002287 if (workspaceAnim != null) {
2288 mStateAnimation.play(workspaceAnim);
2289 }
Michael Jurka1899a362011-11-03 13:50:45 -07002290
2291 boolean delayAnim = false;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002292 final ViewTreeObserver observer;
2293
Michael Jurkabed61d22012-02-14 22:51:29 -08002294 dispatchOnLauncherTransitionStart(fromView, animated, false);
2295 dispatchOnLauncherTransitionStart(toView, animated, false);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002296
2297 // If any of the objects being animated haven't been measured/laid out
2298 // yet, delay the animation until we get a layout pass
Michael Jurkabed61d22012-02-14 22:51:29 -08002299 if ((((LauncherTransitionable) toView).getContent().getMeasuredWidth() == 0) ||
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002300 (mWorkspace.getMeasuredWidth() == 0) ||
2301 (toView.getMeasuredWidth() == 0)) {
2302 observer = mWorkspace.getViewTreeObserver();
2303 delayAnim = true;
2304 } else {
2305 observer = null;
Michael Jurka1899a362011-11-03 13:50:45 -07002306 }
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002307
2308 if (delayAnim) {
Michael Jurka49779a12012-01-16 04:10:08 -08002309 final AnimatorSet stateAnimation = mStateAnimation;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002310 final OnGlobalLayoutListener delayedStart = new OnGlobalLayoutListener() {
2311 public void onGlobalLayout() {
2312 mWorkspace.post(new Runnable() {
2313 public void run() {
Michael Jurka49779a12012-01-16 04:10:08 -08002314 // Check that mStateAnimation hasn't changed while
2315 // we waited for a layout pass
2316 if (mStateAnimation == stateAnimation) {
2317 // Need to update pivots for zoom if layout changed
2318 setPivotsForZoom(toView, scale);
2319 mStateAnimation.start();
2320 }
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002321 }
2322 });
Michael Jurka3a9fced2012-04-13 14:44:29 -07002323 observer.removeOnGlobalLayoutListener(this);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002324 }
2325 };
2326 observer.addOnGlobalLayoutListener(delayedStart);
2327 } else {
2328 setPivotsForZoom(toView, scale);
Michael Jurka1899a362011-11-03 13:50:45 -07002329 mStateAnimation.start();
2330 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002331 } else {
2332 toView.setTranslationX(0.0f);
2333 toView.setTranslationY(0.0f);
2334 toView.setScaleX(1.0f);
2335 toView.setScaleY(1.0f);
2336 toView.setVisibility(View.VISIBLE);
Winson Chung785d2eb2011-04-14 16:08:02 -07002337 toView.bringToFront();
Winson Chung3ac74c52011-06-30 17:39:37 -07002338
Michael Jurkabed61d22012-02-14 22:51:29 -08002339 if (!springLoaded && !LauncherApplication.isScreenLarge()) {
2340 // Hide the workspace scrollbar
2341 mWorkspace.hideScrollingIndicator(true);
2342 hideDockDivider();
Michael Jurkaabded662011-03-04 12:06:57 -08002343 }
Michael Jurkabed61d22012-02-14 22:51:29 -08002344 dispatchOnLauncherTransitionStart(fromView, animated, false);
2345 dispatchOnLauncherTransitionEnd(fromView, animated, false);
2346 dispatchOnLauncherTransitionStart(toView, animated, false);
2347 dispatchOnLauncherTransitionEnd(toView, animated, false);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002348 updateWallpaperVisibility(false);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002349 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002350 }
2351
2352 /**
2353 * Zoom the camera back into the workspace, hiding 'fromView'.
Michael Jurkab3e22d92011-10-31 15:58:33 -07002354 * This is the opposite of showAppsCustomizeHelper.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002355 * @param animated If true, the transition will be animated.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002356 */
Adam Cohened66b2b2012-01-23 17:28:51 -08002357 private void hideAppsCustomizeHelper(State toState, final boolean animated,
2358 final boolean springLoaded, final Runnable onCompleteRunnable) {
Michael Jurkabed61d22012-02-14 22:51:29 -08002359
Michael Jurkab3e22d92011-10-31 15:58:33 -07002360 if (mStateAnimation != null) {
2361 mStateAnimation.cancel();
2362 mStateAnimation = null;
2363 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002364 Resources res = getResources();
Adam Cohenf16e5712011-01-13 13:31:45 -08002365
Winson Chungf0ea4d32011-06-06 14:27:16 -07002366 final int duration = res.getInteger(R.integer.config_appsCustomizeZoomOutTime);
Michael Jurka159b4cc2012-01-17 03:00:35 -08002367 final int fadeOutDuration =
2368 res.getInteger(R.integer.config_appsCustomizeFadeOutTime);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002369 final float scaleFactor = (float)
2370 res.getInteger(R.integer.config_appsCustomizeZoomScaleFactor);
2371 final View fromView = mAppsCustomizeTabHost;
Michael Jurkabed61d22012-02-14 22:51:29 -08002372 final View toView = mWorkspace;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002373 Animator workspaceAnim = null;
2374
2375 if (toState == State.WORKSPACE) {
2376 int stagger = res.getInteger(R.integer.config_appsCustomizeWorkspaceAnimationStagger);
2377 workspaceAnim = mWorkspace.getChangeStateAnimation(
2378 Workspace.State.NORMAL, animated, stagger);
2379 } else if (toState == State.APPS_CUSTOMIZE_SPRING_LOADED) {
2380 workspaceAnim = mWorkspace.getChangeStateAnimation(
2381 Workspace.State.SPRING_LOADED, animated);
2382 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07002383
Michael Jurkab3e22d92011-10-31 15:58:33 -07002384 setPivotsForZoom(fromView, scaleFactor);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002385 updateWallpaperVisibility(true);
Winson Chung4afe9b32011-07-27 17:46:20 -07002386 showHotseat(animated);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002387 if (animated) {
Michael Jurka159b4cc2012-01-17 03:00:35 -08002388 final LauncherViewPropertyAnimator scaleAnim =
2389 new LauncherViewPropertyAnimator(fromView);
2390 scaleAnim.
2391 scaleX(scaleFactor).scaleY(scaleFactor).
2392 setDuration(duration).
2393 setInterpolator(new Workspace.ZoomInInterpolator());
2394
2395 final ObjectAnimator alphaAnim = ObjectAnimator
2396 .ofFloat(fromView, "alpha", 1f, 0f)
2397 .setDuration(fadeOutDuration);
Adam Cohencff6af82011-09-13 14:51:53 -07002398 alphaAnim.setInterpolator(new AccelerateDecelerateInterpolator());
Winson Chung70442722012-02-10 15:43:22 -08002399 alphaAnim.addUpdateListener(new AnimatorUpdateListener() {
2400 @Override
2401 public void onAnimationUpdate(ValueAnimator animation) {
2402 float t = 1f - (Float) animation.getAnimatedValue();
2403 dispatchOnLauncherTransitionStep(fromView, t);
2404 dispatchOnLauncherTransitionStep(toView, t);
2405 }
2406 });
Michael Jurka159b4cc2012-01-17 03:00:35 -08002407
Michael Jurkabed61d22012-02-14 22:51:29 -08002408 mStateAnimation = new AnimatorSet();
2409
2410 dispatchOnLauncherTransitionStart(fromView, animated, true);
2411 dispatchOnLauncherTransitionStart(toView, animated, true);
2412
2413 mStateAnimation.addListener(new AnimatorListenerAdapter() {
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002414 @Override
Michael Jurka8edd75c2010-12-17 20:15:06 -08002415 public void onAnimationEnd(Animator animation) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002416 updateWallpaperVisibility(true);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002417 fromView.setVisibility(View.GONE);
Michael Jurkabed61d22012-02-14 22:51:29 -08002418 dispatchOnLauncherTransitionEnd(fromView, animated, true);
2419 dispatchOnLauncherTransitionEnd(toView, animated, true);
Michael Jurka430e8a52011-08-08 15:52:14 -07002420 mWorkspace.hideScrollingIndicator(false);
Adam Cohened66b2b2012-01-23 17:28:51 -08002421 if (onCompleteRunnable != null) {
2422 onCompleteRunnable.run();
2423 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002424 }
2425 });
2426
Winson Chungf0ea4d32011-06-06 14:27:16 -07002427 mStateAnimation.playTogether(scaleAnim, alphaAnim);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002428 if (workspaceAnim != null) {
2429 mStateAnimation.play(workspaceAnim);
2430 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002431 mStateAnimation.start();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002432 } else {
2433 fromView.setVisibility(View.GONE);
Michael Jurkabed61d22012-02-14 22:51:29 -08002434 dispatchOnLauncherTransitionStart(fromView, animated, true);
2435 dispatchOnLauncherTransitionEnd(fromView, animated, true);
2436 dispatchOnLauncherTransitionStart(toView, animated, true);
2437 dispatchOnLauncherTransitionEnd(toView, animated, true);
Michael Jurkab737ee62011-11-15 15:57:22 -08002438 mWorkspace.hideScrollingIndicator(false);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002439 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002440 }
2441
Michael Jurkae326f182011-11-21 14:05:46 -08002442 @Override
2443 public void onTrimMemory(int level) {
2444 super.onTrimMemory(level);
Dianne Hackborn4f560ce2012-03-06 19:07:47 -08002445 if (level >= ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
Michael Jurkae326f182011-11-21 14:05:46 -08002446 mAppsCustomizeTabHost.onTrimMemory();
2447 }
2448 }
2449
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002450 void showWorkspace(boolean animated) {
Adam Cohened66b2b2012-01-23 17:28:51 -08002451 showWorkspace(animated, null);
2452 }
2453
2454 void showWorkspace(boolean animated, Runnable onCompleteRunnable) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07002455 if (mState != State.WORKSPACE) {
2456 mWorkspace.setVisibility(View.VISIBLE);
Adam Cohened66b2b2012-01-23 17:28:51 -08002457 hideAppsCustomizeHelper(State.WORKSPACE, animated, false, onCompleteRunnable);
Michael Jurkab3e22d92011-10-31 15:58:33 -07002458
2459 // Show the search bar and hotseat
2460 mSearchDropTargetBar.showSearchBar(animated);
Michael Jurkab737ee62011-11-15 15:57:22 -08002461 // We only need to animate in the dock divider if we're going from spring loaded mode
2462 showDockDivider(animated && mState == State.APPS_CUSTOMIZE_SPRING_LOADED);
Michael Jurkab3e22d92011-10-31 15:58:33 -07002463
2464 // Set focus to the AppsCustomize button
2465 if (mAllAppsButton != null) {
2466 mAllAppsButton.requestFocus();
2467 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002468 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07002469
Michael Jurkab737ee62011-11-15 15:57:22 -08002470 mWorkspace.flashScrollingIndicator(animated);
Adam Cohen7777d962011-08-18 18:58:38 -07002471
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002472 // Change the state *after* we've called all the transition code
2473 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08002474
Winson Chung5fb63472011-02-02 17:03:37 -08002475 // Resume the auto-advance of widgets
2476 mUserPresent = true;
2477 updateRunning();
2478
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08002479 // send an accessibility event to announce the context change
2480 getWindow().getDecorView().sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_SELECTED);
Joe Onorato00acb122009-08-04 16:04:30 -04002481 }
2482
Michael Jurkab3e22d92011-10-31 15:58:33 -07002483 void showAllApps(boolean animated) {
2484 if (mState != State.WORKSPACE) return;
2485
2486 showAppsCustomizeHelper(animated, false);
2487 mAppsCustomizeTabHost.requestFocus();
2488
2489 // Hide the search bar and hotseat
2490 mSearchDropTargetBar.hideSearchBar(animated);
2491
2492 // Change the state *after* we've called all the transition code
2493 mState = State.APPS_CUSTOMIZE;
2494
2495 // Pause the auto-advance of widgets until we are out of AllApps
2496 mUserPresent = false;
2497 updateRunning();
2498 closeFolder();
2499
2500 // Send an accessibility event to announce the context change
2501 getWindow().getDecorView().sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_SELECTED);
2502 }
2503
Adam Cohen7777d962011-08-18 18:58:38 -07002504 void enterSpringLoadedDragMode() {
Winson Chungb26f3d62011-06-02 10:49:29 -07002505 if (mState == State.APPS_CUSTOMIZE) {
Adam Cohened66b2b2012-01-23 17:28:51 -08002506 hideAppsCustomizeHelper(State.APPS_CUSTOMIZE_SPRING_LOADED, true, true, null);
Michael Jurkab737ee62011-11-15 15:57:22 -08002507 hideDockDivider();
Winson Chungc07918d2011-07-01 15:35:26 -07002508 mState = State.APPS_CUSTOMIZE_SPRING_LOADED;
Winson Chungb26f3d62011-06-02 10:49:29 -07002509 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08002510 }
Adam Cohen7777d962011-08-18 18:58:38 -07002511
Adam Cohened66b2b2012-01-23 17:28:51 -08002512 void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, boolean extendedDelay,
2513 final Runnable onCompleteRunnable) {
Winson Chung09bfc452011-09-09 11:30:20 -07002514 if (mState != State.APPS_CUSTOMIZE_SPRING_LOADED) return;
2515
Winson Chunge7a03942011-08-05 15:05:12 -07002516 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07002517 @Override
2518 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07002519 if (successfulDrop) {
Michael Jurka7bdb25a2011-08-03 15:16:44 -07002520 // Before we show workspace, hide all apps again because
2521 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
2522 // clean up our state transition functions
2523 mAppsCustomizeTabHost.setVisibility(View.GONE);
Winson Chungc51db6a2011-10-05 11:44:49 -07002524 mSearchDropTargetBar.showSearchBar(true);
Adam Cohened66b2b2012-01-23 17:28:51 -08002525 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07002526 } else {
2527 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07002528 }
Winson Chung557d6ed2011-07-08 15:34:52 -07002529 }
2530 }, (extendedDelay ?
2531 EXIT_SPRINGLOADED_MODE_LONG_TIMEOUT :
2532 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT));
2533 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07002534
Michael Jurkad3ef3062010-11-23 16:23:58 -08002535 void exitSpringLoadedDragMode() {
Winson Chungb26f3d62011-06-02 10:49:29 -07002536 if (mState == State.APPS_CUSTOMIZE_SPRING_LOADED) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07002537 final boolean animated = true;
2538 final boolean springLoaded = true;
2539 showAppsCustomizeHelper(animated, springLoaded);
Winson Chungb26f3d62011-06-02 10:49:29 -07002540 mState = State.APPS_CUSTOMIZE;
Winson Chungf0ea4d32011-06-06 14:27:16 -07002541 }
2542 // Otherwise, we are not in spring loaded mode, so don't do anything.
2543 }
2544
Michael Jurkab737ee62011-11-15 15:57:22 -08002545 void hideDockDivider() {
2546 if (mQsbDivider != null && mDockDivider != null) {
2547 mQsbDivider.setVisibility(View.INVISIBLE);
2548 mDockDivider.setVisibility(View.INVISIBLE);
2549 }
2550 }
2551
2552 void showDockDivider(boolean animated) {
2553 if (mQsbDivider != null && mDockDivider != null) {
2554 mQsbDivider.setVisibility(View.VISIBLE);
2555 mDockDivider.setVisibility(View.VISIBLE);
2556 if (mDividerAnimator != null) {
2557 mDividerAnimator.cancel();
2558 mQsbDivider.setAlpha(1f);
2559 mDockDivider.setAlpha(1f);
2560 mDividerAnimator = null;
2561 }
2562 if (animated) {
2563 mDividerAnimator = new AnimatorSet();
2564 mDividerAnimator.playTogether(ObjectAnimator.ofFloat(mQsbDivider, "alpha", 1f),
2565 ObjectAnimator.ofFloat(mDockDivider, "alpha", 1f));
2566 mDividerAnimator.setDuration(mSearchDropTargetBar.getTransitionInDuration());
2567 mDividerAnimator.start();
2568 }
2569 }
2570 }
2571
Michael Jurkab3e22d92011-10-31 15:58:33 -07002572 void lockAllApps() {
2573 // TODO
2574 }
2575
2576 void unlockAllApps() {
2577 // TODO
2578 }
2579
Adam Cohenfc53cd22011-07-20 15:45:11 -07002580 public boolean isAllAppsCustomizeOpen() {
2581 return mState == State.APPS_CUSTOMIZE;
2582 }
2583
Winson Chungf0ea4d32011-06-06 14:27:16 -07002584 /**
Winson Chung3d503fb2011-07-13 17:25:49 -07002585 * Shows the hotseat area.
Winson Chungf0ea4d32011-06-06 14:27:16 -07002586 */
Winson Chung3d503fb2011-07-13 17:25:49 -07002587 void showHotseat(boolean animated) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07002588 if (!LauncherApplication.isScreenLarge()) {
2589 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08002590 if (mHotseat.getAlpha() != 1f) {
2591 int duration = mSearchDropTargetBar.getTransitionInDuration();
2592 mHotseat.animate().alpha(1f).setDuration(duration);
2593 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002594 } else {
Winson Chung3d503fb2011-07-13 17:25:49 -07002595 mHotseat.setAlpha(1f);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002596 }
2597 }
2598 }
2599
2600 /**
Winson Chung3d503fb2011-07-13 17:25:49 -07002601 * Hides the hotseat area.
Winson Chungf0ea4d32011-06-06 14:27:16 -07002602 */
Winson Chung3d503fb2011-07-13 17:25:49 -07002603 void hideHotseat(boolean animated) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07002604 if (!LauncherApplication.isScreenLarge()) {
2605 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08002606 if (mHotseat.getAlpha() != 0f) {
2607 int duration = mSearchDropTargetBar.getTransitionOutDuration();
2608 mHotseat.animate().alpha(0f).setDuration(duration);
2609 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002610 } else {
Winson Chung3d503fb2011-07-13 17:25:49 -07002611 mHotseat.setAlpha(0f);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002612 }
Winson Chungb26f3d62011-06-02 10:49:29 -07002613 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08002614 }
2615
Patrick Dubroy5f445422011-02-18 14:35:21 -08002616 /**
2617 * Add an item from all apps or customize onto the given workspace screen.
2618 * If layout is null, add to the current screen.
2619 */
2620 void addExternalItemToScreen(ItemInfo itemInfo, final CellLayout layout) {
Michael Jurka6b4b25d2010-10-20 18:19:45 -07002621 if (!mWorkspace.addExternalItemToScreen(itemInfo, layout)) {
Winson Chung93eef082012-03-23 15:59:27 -07002622 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka213d9632010-07-28 11:29:25 -07002623 }
Michael Jurka6b4b25d2010-10-20 18:19:45 -07002624 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07002625
Winson Chungdff8ebb2011-09-08 17:25:31 -07002626 /** Maps the current orientation to an index for referencing orientation correct global icons */
2627 private int getCurrentOrientationIndexForGlobalIcons() {
2628 // default - 0, landscape - 1
2629 switch (getResources().getConfiguration().orientation) {
2630 case Configuration.ORIENTATION_LANDSCAPE:
2631 return 1;
2632 default:
2633 return 0;
2634 }
2635 }
2636
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002637 private Drawable getExternalPackageToolbarIcon(ComponentName activityName) {
Michael Jurka0423dcf2010-10-05 14:56:18 -07002638 try {
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002639 PackageManager packageManager = getPackageManager();
Michael Jurka0423dcf2010-10-05 14:56:18 -07002640 // Look for the toolbar icon specified in the activity meta-data
2641 Bundle metaData = packageManager.getActivityInfo(
2642 activityName, PackageManager.GET_META_DATA).metaData;
2643 if (metaData != null) {
2644 int iconResId = metaData.getInt(TOOLBAR_ICON_METADATA_NAME);
2645 if (iconResId != 0) {
2646 Resources res = packageManager.getResourcesForActivity(activityName);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002647 return res.getDrawable(iconResId);
Michael Jurka0423dcf2010-10-05 14:56:18 -07002648 }
2649 }
2650 } catch (NameNotFoundException e) {
Michael Jurkab6052a92011-07-12 17:02:45 -07002651 // This can happen if the activity defines an invalid drawable
2652 Log.w(TAG, "Failed to load toolbar icon; " + activityName.flattenToShortString() +
2653 " not found", e);
Mathew Inwood70d51022011-07-12 13:41:41 +01002654 } catch (Resources.NotFoundException nfe) {
2655 // This can happen if the activity defines an invalid drawable
2656 Log.w(TAG, "Failed to load toolbar icon from " + activityName.flattenToShortString(),
2657 nfe);
Michael Jurka0423dcf2010-10-05 14:56:18 -07002658 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002659 return null;
2660 }
2661
2662 // if successful in getting icon, return it; otherwise, set button to use default drawable
2663 private Drawable.ConstantState updateTextButtonWithIconFromExternalActivity(
2664 int buttonId, ComponentName activityName, int fallbackDrawableId) {
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002665 Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName);
Winson Chung128bbcd2011-08-31 16:58:52 -07002666 Resources r = getResources();
2667 int w = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_width);
2668 int h = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_height);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002669
Michael Jurka4da7a3e2011-10-28 15:04:35 -07002670 TextView button = (TextView) findViewById(buttonId);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002671 // If we were unable to find the icon via the meta-data, use a generic one
2672 if (toolbarIcon == null) {
Winson Chung128bbcd2011-08-31 16:58:52 -07002673 toolbarIcon = r.getDrawable(fallbackDrawableId);
2674 toolbarIcon.setBounds(0, 0, w, h);
Michael Jurka4da7a3e2011-10-28 15:04:35 -07002675 if (button != null) {
2676 button.setCompoundDrawables(toolbarIcon, null, null, null);
2677 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002678 return null;
2679 } else {
Winson Chung128bbcd2011-08-31 16:58:52 -07002680 toolbarIcon.setBounds(0, 0, w, h);
Michael Jurka4da7a3e2011-10-28 15:04:35 -07002681 if (button != null) {
2682 button.setCompoundDrawables(toolbarIcon, null, null, null);
2683 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002684 return toolbarIcon.getConstantState();
2685 }
2686 }
2687
2688 // if successful in getting icon, return it; otherwise, set button to use default drawable
2689 private Drawable.ConstantState updateButtonWithIconFromExternalActivity(
2690 int buttonId, ComponentName activityName, int fallbackDrawableId) {
2691 ImageView button = (ImageView) findViewById(buttonId);
2692 Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName);
2693
Michael Jurka19e0fc52011-07-22 18:00:21 -07002694 if (button != null) {
2695 // If we were unable to find the icon via the meta-data, use a
2696 // generic one
2697 if (toolbarIcon == null) {
2698 button.setImageResource(fallbackDrawableId);
2699 } else {
2700 button.setImageDrawable(toolbarIcon);
2701 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07002702 }
Michael Jurka19e0fc52011-07-22 18:00:21 -07002703
2704 return toolbarIcon != null ? toolbarIcon.getConstantState() : null;
2705
Michael Jurka0423dcf2010-10-05 14:56:18 -07002706 }
2707
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002708 private void updateTextButtonWithDrawable(int buttonId, Drawable.ConstantState d) {
2709 TextView button = (TextView) findViewById(buttonId);
2710 button.setCompoundDrawables(d.newDrawable(getResources()), null, null, null);
2711 }
2712
Michael Jurkae7bf83b2010-12-14 18:02:21 -08002713 private void updateButtonWithDrawable(int buttonId, Drawable.ConstantState d) {
Michael Jurka4ef207b2010-11-29 17:05:45 -08002714 ImageView button = (ImageView) findViewById(buttonId);
Michael Jurkae7bf83b2010-12-14 18:02:21 -08002715 button.setImageDrawable(d.newDrawable(getResources()));
Michael Jurka4ef207b2010-11-29 17:05:45 -08002716 }
2717
Winson Chungbb185bd2011-11-21 12:31:42 -08002718 private void invalidatePressedFocusedStates(View container, View button) {
2719 if (container instanceof HolographicLinearLayout) {
2720 HolographicLinearLayout layout = (HolographicLinearLayout) container;
2721 layout.invalidatePressedFocusedStates();
2722 } else if (button instanceof HolographicImageView) {
2723 HolographicImageView view = (HolographicImageView) button;
2724 view.invalidatePressedFocusedStates();
2725 }
2726 }
2727
Winson Chungc51db6a2011-10-05 11:44:49 -07002728 private boolean updateGlobalSearchIcon() {
2729 final View searchButtonContainer = findViewById(R.id.search_button_container);
Winson Chung1cad91e2011-05-25 17:41:01 -07002730 final ImageView searchButton = (ImageView) findViewById(R.id.search_button);
2731 final View searchDivider = findViewById(R.id.search_divider);
Winson Chungc51db6a2011-10-05 11:44:49 -07002732 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
Winson Chungcbf7c4d2011-08-23 11:58:54 -07002733 final View voiceButton = findViewById(R.id.voice_button);
Winson Chunge3fbfa92012-04-24 14:34:28 -07002734 final View voiceButtonProxy = findViewById(R.id.voice_button_proxy);
Winson Chung97d85d22011-04-13 11:27:36 -07002735
Winson Chung1cad91e2011-05-25 17:41:01 -07002736 final SearchManager searchManager =
2737 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2738 ComponentName activityName = searchManager.getGlobalSearchActivity();
2739 if (activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07002740 int coi = getCurrentOrientationIndexForGlobalIcons();
2741 sGlobalSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
Winson Chungc7aef8c2011-09-15 18:53:04 -07002742 R.id.search_button, activityName, R.drawable.ic_home_search_normal_holo);
Winson Chung649723c2011-07-06 20:41:23 -07002743 if (searchDivider != null) searchDivider.setVisibility(View.VISIBLE);
Winson Chungc51db6a2011-10-05 11:44:49 -07002744 if (searchButtonContainer != null) searchButtonContainer.setVisibility(View.VISIBLE);
2745 searchButton.setVisibility(View.VISIBLE);
Winson Chungbb185bd2011-11-21 12:31:42 -08002746 invalidatePressedFocusedStates(searchButtonContainer, searchButton);
Winson Chungc51db6a2011-10-05 11:44:49 -07002747 return true;
Winson Chung1cad91e2011-05-25 17:41:01 -07002748 } else {
Winson Chungcbf7c4d2011-08-23 11:58:54 -07002749 // We disable both search and voice search when there is no global search provider
Winson Chung649723c2011-07-06 20:41:23 -07002750 if (searchDivider != null) searchDivider.setVisibility(View.GONE);
Winson Chungc51db6a2011-10-05 11:44:49 -07002751 if (searchButtonContainer != null) searchButtonContainer.setVisibility(View.GONE);
2752 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.GONE);
2753 searchButton.setVisibility(View.GONE);
Winson Chungcbf7c4d2011-08-23 11:58:54 -07002754 voiceButton.setVisibility(View.GONE);
Winson Chunge3fbfa92012-04-24 14:34:28 -07002755 voiceButtonProxy.setVisibility(View.GONE);
Winson Chungc51db6a2011-10-05 11:44:49 -07002756 return false;
Amith Yamasani6d7fe502010-11-16 09:05:07 -08002757 }
2758 }
2759
Michael Jurkae7bf83b2010-12-14 18:02:21 -08002760 private void updateGlobalSearchIcon(Drawable.ConstantState d) {
Winson Chungbb185bd2011-11-21 12:31:42 -08002761 final View searchButtonContainer = findViewById(R.id.search_button_container);
2762 final View searchButton = (ImageView) findViewById(R.id.search_button);
Michael Jurka4ef207b2010-11-29 17:05:45 -08002763 updateButtonWithDrawable(R.id.search_button, d);
Winson Chungbb185bd2011-11-21 12:31:42 -08002764 invalidatePressedFocusedStates(searchButtonContainer, searchButton);
Michael Jurka4ef207b2010-11-29 17:05:45 -08002765 }
2766
Winson Chungc51db6a2011-10-05 11:44:49 -07002767 private boolean updateVoiceSearchIcon(boolean searchVisible) {
Winson Chung1cad91e2011-05-25 17:41:01 -07002768 final View searchDivider = findViewById(R.id.search_divider);
Winson Chungc51db6a2011-10-05 11:44:49 -07002769 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
Winson Chung1cad91e2011-05-25 17:41:01 -07002770 final View voiceButton = findViewById(R.id.voice_button);
Winson Chunge3fbfa92012-04-24 14:34:28 -07002771 final View voiceButtonProxy = findViewById(R.id.voice_button_proxy);
Winson Chung97d85d22011-04-13 11:27:36 -07002772
Winson Chungc51db6a2011-10-05 11:44:49 -07002773 // We only show/update the voice search icon if the search icon is enabled as well
Winson Chung1cad91e2011-05-25 17:41:01 -07002774 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
2775 ComponentName activityName = intent.resolveActivity(getPackageManager());
Winson Chungc51db6a2011-10-05 11:44:49 -07002776 if (searchVisible && activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07002777 int coi = getCurrentOrientationIndexForGlobalIcons();
2778 sVoiceSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
Winson Chungc7aef8c2011-09-15 18:53:04 -07002779 R.id.voice_button, activityName, R.drawable.ic_home_voice_search_holo);
Winson Chung649723c2011-07-06 20:41:23 -07002780 if (searchDivider != null) searchDivider.setVisibility(View.VISIBLE);
Winson Chungc51db6a2011-10-05 11:44:49 -07002781 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.VISIBLE);
Winson Chung1cad91e2011-05-25 17:41:01 -07002782 voiceButton.setVisibility(View.VISIBLE);
Winson Chunge3fbfa92012-04-24 14:34:28 -07002783 voiceButtonProxy.setVisibility(View.VISIBLE);
Winson Chungbb185bd2011-11-21 12:31:42 -08002784 invalidatePressedFocusedStates(voiceButtonContainer, voiceButton);
Winson Chungc51db6a2011-10-05 11:44:49 -07002785 return true;
Winson Chung1cad91e2011-05-25 17:41:01 -07002786 } else {
Winson Chung649723c2011-07-06 20:41:23 -07002787 if (searchDivider != null) searchDivider.setVisibility(View.GONE);
Winson Chungc51db6a2011-10-05 11:44:49 -07002788 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.GONE);
Winson Chung1cad91e2011-05-25 17:41:01 -07002789 voiceButton.setVisibility(View.GONE);
Winson Chunge3fbfa92012-04-24 14:34:28 -07002790 voiceButtonProxy.setVisibility(View.GONE);
Winson Chungc51db6a2011-10-05 11:44:49 -07002791 return false;
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002792 }
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07002793 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07002794
Michael Jurkae7bf83b2010-12-14 18:02:21 -08002795 private void updateVoiceSearchIcon(Drawable.ConstantState d) {
Winson Chungbb185bd2011-11-21 12:31:42 -08002796 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
2797 final View voiceButton = findViewById(R.id.voice_button);
Michael Jurka4ef207b2010-11-29 17:05:45 -08002798 updateButtonWithDrawable(R.id.voice_button, d);
Winson Chungbb185bd2011-11-21 12:31:42 -08002799 invalidatePressedFocusedStates(voiceButtonContainer, voiceButton);
Michael Jurka4ef207b2010-11-29 17:05:45 -08002800 }
2801
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07002802 /**
Winson Chungeb66b142011-06-16 13:14:22 -07002803 * Sets the app market icon
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07002804 */
2805 private void updateAppMarketIcon() {
Winson Chung785d2eb2011-04-14 16:08:02 -07002806 final View marketButton = findViewById(R.id.market_button);
2807 Intent intent = new Intent(Intent.ACTION_MAIN).addCategory(Intent.CATEGORY_APP_MARKET);
2808 // Find the app market activity by resolving an intent.
2809 // (If multiple app markets are installed, it will return the ResolverActivity.)
2810 ComponentName activityName = intent.resolveActivity(getPackageManager());
Winson Chung6a26e5b2011-05-26 14:36:06 -07002811 if (activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07002812 int coi = getCurrentOrientationIndexForGlobalIcons();
Winson Chung785d2eb2011-04-14 16:08:02 -07002813 mAppMarketIntent = intent;
Winson Chungdff8ebb2011-09-08 17:25:31 -07002814 sAppMarketIcon[coi] = updateTextButtonWithIconFromExternalActivity(
Winson Chung967289b2011-06-30 18:09:30 -07002815 R.id.market_button, activityName, R.drawable.ic_launcher_market_holo);
Winson Chung785d2eb2011-04-14 16:08:02 -07002816 marketButton.setVisibility(View.VISIBLE);
2817 } else {
2818 // We should hide and disable the view so that we don't try and restore the visibility
2819 // of it when we swap between drag & normal states from IconDropTarget subclasses.
2820 marketButton.setVisibility(View.GONE);
2821 marketButton.setEnabled(false);
Michael Jurka0423dcf2010-10-05 14:56:18 -07002822 }
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002823 }
2824
Michael Jurkae7bf83b2010-12-14 18:02:21 -08002825 private void updateAppMarketIcon(Drawable.ConstantState d) {
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002826 updateTextButtonWithDrawable(R.id.market_button, d);
Michael Jurka4ef207b2010-11-29 17:05:45 -08002827 }
2828
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002829 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07002830 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08002831 */
2832 private class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
2833 @Override
2834 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08002835 closeSystemDialogs();
2836 }
2837 }
2838
2839 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002840 * Receives notifications whenever the appwidgets are reset.
2841 */
2842 private class AppWidgetResetObserver extends ContentObserver {
2843 public AppWidgetResetObserver() {
2844 super(new Handler());
2845 }
2846
2847 @Override
2848 public void onChange(boolean selfChange) {
2849 onAppWidgetReset();
2850 }
2851 }
2852
2853 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07002854 * If the activity is currently paused, signal that we need to re-run the loader
2855 * in onResume.
2856 *
2857 * This needs to be called from incoming places where resources might have been loaded
2858 * while we are paused. That is becaues the Configuration might be wrong
2859 * when we're not running, and if it comes back to what it was when we
2860 * were paused, we are not restarted.
2861 *
2862 * Implementation of the method from LauncherModel.Callbacks.
2863 *
2864 * @return true if we are currently paused. The caller might be able to
2865 * skip some work in that case since we will come back again.
2866 */
2867 public boolean setLoadOnResume() {
2868 if (mPaused) {
2869 Log.i(TAG, "setLoadOnResume");
2870 mOnResumeNeedsLoad = true;
2871 return true;
2872 } else {
2873 return false;
2874 }
2875 }
2876
2877 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04002878 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002879 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04002880 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07002881 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07002882 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07002883 } else {
2884 return SCREEN_COUNT / 2;
2885 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04002886 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07002887
Joe Onorato9c1289c2009-08-17 11:03:03 -04002888 /**
2889 * Refreshes the shortcuts shown on the workspace.
2890 *
2891 * Implementation of the method from LauncherModel.Callbacks.
2892 */
2893 public void startBinding() {
2894 final Workspace workspace = mWorkspace;
Adam Cohendf035382011-04-11 17:22:04 -07002895
Winson Chungf0c6ae02012-03-21 16:10:31 -07002896 mNewShortcutAnimatePage = -1;
2897 mNewShortcutAnimateViews.clear();
Adam Cohendf035382011-04-11 17:22:04 -07002898 mWorkspace.clearDropTargets();
Joe Onorato9c1289c2009-08-17 11:03:03 -04002899 int count = workspace.getChildCount();
2900 for (int i = 0; i < count; i++) {
Joe Onorato3c2f7e12009-10-31 19:17:31 -04002901 // Use removeAllViewsInLayout() to avoid an extra requestLayout() and invalidate().
Winson Chung7a25a9e2011-01-30 13:33:56 -08002902 final CellLayout layoutParent = (CellLayout) workspace.getChildAt(i);
2903 layoutParent.removeAllViewsInLayout();
Joe Onorato9c1289c2009-08-17 11:03:03 -04002904 }
Michael Jurka05bf644e2011-11-30 20:28:53 -08002905 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07002906 if (mHotseat != null) {
2907 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002908 }
2909 }
2910
2911 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04002912 * Bind the items start-end from the list.
2913 *
2914 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002915 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04002916 public void bindItems(ArrayList<ItemInfo> shortcuts, int start, int end) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07002917 setLoadOnResume();
2918
Winson Chungf0c6ae02012-03-21 16:10:31 -07002919 // Get the list of added shortcuts and intersect them with the set of shortcuts here
2920 Set<String> newApps = new HashSet<String>();
2921 newApps = mSharedPrefs.getStringSet(InstallShortcutReceiver.NEW_APPS_LIST_KEY, newApps);
2922
2923 Workspace workspace = mWorkspace;
2924 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04002925 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07002926
2927 // Short circuit if we are loading dock items for a configuration which has no dock
2928 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
2929 mHotseat == null) {
2930 continue;
2931 }
2932
Joe Onorato9c1289c2009-08-17 11:03:03 -04002933 switch (item.itemType) {
2934 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
2935 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07002936 ShortcutInfo info = (ShortcutInfo) item;
2937 String uri = info.intent.toUri(0).toString();
2938 View shortcut = createShortcut(info);
Winson Chung3d503fb2011-07-13 17:25:49 -07002939 workspace.addInScreen(shortcut, item.container, item.screen, item.cellX,
2940 item.cellY, 1, 1, false);
Winson Chungf0c6ae02012-03-21 16:10:31 -07002941 if (newApps.contains(uri)) {
2942 newApps.remove(uri);
2943
2944 // Prepare the view to be animated up
2945 shortcut.setAlpha(0f);
2946 shortcut.setScaleX(0f);
2947 shortcut.setScaleY(0f);
2948 mNewShortcutAnimatePage = item.screen;
2949 if (!mNewShortcutAnimateViews.contains(shortcut)) {
2950 mNewShortcutAnimateViews.add(shortcut);
2951 }
2952 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04002953 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07002954 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Winson Chung3d503fb2011-07-13 17:25:49 -07002955 FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07002956 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07002957 (FolderInfo) item, mIconCache);
Winson Chung3d503fb2011-07-13 17:25:49 -07002958 workspace.addInScreen(newFolder, item.container, item.screen, item.cellX,
2959 item.cellY, 1, 1, false);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002960 break;
Joe Onorato9c1289c2009-08-17 11:03:03 -04002961 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002962 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07002963
Joe Onorato9c1289c2009-08-17 11:03:03 -04002964 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002965 }
2966
Joe Onorato9c1289c2009-08-17 11:03:03 -04002967 /**
2968 * Implementation of the method from LauncherModel.Callbacks.
2969 */
Joe Onoratoad72e172009-11-06 16:25:04 -05002970 public void bindFolders(HashMap<Long, FolderInfo> folders) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07002971 setLoadOnResume();
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002972 sFolders.clear();
2973 sFolders.putAll(folders);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002974 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04002975
2976 /**
2977 * Add the views for a widget to the workspace.
2978 *
2979 * Implementation of the method from LauncherModel.Callbacks.
2980 */
2981 public void bindAppWidget(LauncherAppWidgetInfo item) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07002982 setLoadOnResume();
2983
Daniel Sandler843e8602010-06-07 14:59:01 -04002984 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
2985 if (DEBUG_WIDGETS) {
2986 Log.d(TAG, "bindAppWidget: " + item);
2987 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04002988 final Workspace workspace = mWorkspace;
2989
2990 final int appWidgetId = item.appWidgetId;
2991 final AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
Daniel Sandler843e8602010-06-07 14:59:01 -04002992 if (DEBUG_WIDGETS) {
2993 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component " + appWidgetInfo.provider);
2994 }
2995
Joe Onorato9c1289c2009-08-17 11:03:03 -04002996 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
2997
Joe Onorato9c1289c2009-08-17 11:03:03 -04002998 item.hostView.setAppWidget(appWidgetId, appWidgetInfo);
2999 item.hostView.setTag(item);
3000
Winson Chung3d503fb2011-07-13 17:25:49 -07003001 workspace.addInScreen(item.hostView, item.container, item.screen, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04003002 item.cellY, item.spanX, item.spanY, false);
3003
Adam Cohended9f8d2010-11-03 13:25:16 -07003004 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
3005
Joe Onorato9c1289c2009-08-17 11:03:03 -04003006 workspace.requestLayout();
3007
Daniel Sandler843e8602010-06-07 14:59:01 -04003008 if (DEBUG_WIDGETS) {
3009 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
3010 + (SystemClock.uptimeMillis()-start) + "ms");
3011 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003012 }
3013
3014 /**
3015 * Callback saying that there aren't any more items to bind.
3016 *
3017 * Implementation of the method from LauncherModel.Callbacks.
3018 */
3019 public void finishBindingItems() {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003020 setLoadOnResume();
3021
Joe Onorato9c1289c2009-08-17 11:03:03 -04003022 if (mSavedState != null) {
3023 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07003024 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003025 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003026 mSavedState = null;
3027 }
3028
3029 if (mSavedInstanceState != null) {
3030 super.onRestoreInstanceState(mSavedInstanceState);
3031 mSavedInstanceState = null;
3032 }
3033
Patrick Dubroy002cbf42011-03-03 16:36:21 -08003034 // If we received the result of any pending adds while the loader was running (e.g. the
3035 // widget configuration forced an orientation change), process them now.
3036 for (int i = 0; i < sPendingAddList.size(); i++) {
3037 completeAdd(sPendingAddList.get(i));
3038 }
3039 sPendingAddList.clear();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003040
Winson Chungc51db6a2011-10-05 11:44:49 -07003041 // Update the market app icon as necessary (the other icons will be managed in response to
3042 // package changes in bindSearchablesChanged()
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003043 updateAppMarketIcon();
Michael Jurkac1f5d262011-09-30 19:32:27 -07003044
Winson Chungf0c6ae02012-03-21 16:10:31 -07003045 // Animate up any icons as necessary
3046 if (mVisible || mWorkspaceLoading) {
3047 Runnable newAppsRunnable = new Runnable() {
3048 @Override
3049 public void run() {
Winson Chunga2413752012-04-03 14:22:34 -07003050 runNewAppsAnimation(false);
Winson Chungf0c6ae02012-03-21 16:10:31 -07003051 }
3052 };
Winson Chunga2413752012-04-03 14:22:34 -07003053
3054 boolean willSnapPage = mNewShortcutAnimatePage > -1 &&
3055 mNewShortcutAnimatePage != mWorkspace.getCurrentPage();
3056 if (canRunNewAppsAnimation()) {
3057 // If the user has not interacted recently, then either snap to the new page to show
3058 // the new-apps animation or just run them if they are to appear on the current page
3059 if (willSnapPage) {
3060 mWorkspace.snapToPage(mNewShortcutAnimatePage, newAppsRunnable);
3061 } else {
3062 runNewAppsAnimation(false);
3063 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003064 } else {
Winson Chung318eee02012-04-12 10:59:27 -07003065 // If the user has interacted recently, then just add the items in place if they
Winson Chunga2413752012-04-03 14:22:34 -07003066 // are on another page (or just normally if they are added to the current page)
3067 runNewAppsAnimation(willSnapPage);
Winson Chungf0c6ae02012-03-21 16:10:31 -07003068 }
3069 }
3070
3071 mWorkspaceLoading = false;
3072 }
3073
Winson Chunga2413752012-04-03 14:22:34 -07003074 private boolean canRunNewAppsAnimation() {
3075 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
3076 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000);
3077 }
3078
Winson Chungf0c6ae02012-03-21 16:10:31 -07003079 /**
3080 * Runs a new animation that scales up icons that were added while Launcher was in the
3081 * background.
Winson Chunga2413752012-04-03 14:22:34 -07003082 *
3083 * @param immediate whether to run the animation or show the results immediately
Winson Chungf0c6ae02012-03-21 16:10:31 -07003084 */
Winson Chunga2413752012-04-03 14:22:34 -07003085 private void runNewAppsAnimation(boolean immediate) {
Winson Chungf0c6ae02012-03-21 16:10:31 -07003086 AnimatorSet anim = new AnimatorSet();
3087 Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chunga2413752012-04-03 14:22:34 -07003088
3089 // Order these new views spatially so that they animate in order
Winson Chungf0c6ae02012-03-21 16:10:31 -07003090 Collections.sort(mNewShortcutAnimateViews, new Comparator<View>() {
3091 @Override
3092 public int compare(View a, View b) {
3093 CellLayout.LayoutParams alp = (CellLayout.LayoutParams) a.getLayoutParams();
3094 CellLayout.LayoutParams blp = (CellLayout.LayoutParams) b.getLayoutParams();
3095 int cellCountX = LauncherModel.getCellCountX();
3096 return (alp.cellY * cellCountX + alp.cellX) - (blp.cellY * cellCountX + blp.cellX);
3097 }
3098 });
Winson Chunga2413752012-04-03 14:22:34 -07003099
3100 // Animate each of the views in place (or show them immediately if requested)
3101 if (immediate) {
3102 for (View v : mNewShortcutAnimateViews) {
3103 v.setAlpha(1f);
3104 v.setScaleX(1f);
3105 v.setScaleY(1f);
Winson Chungf0c6ae02012-03-21 16:10:31 -07003106 }
Winson Chunga2413752012-04-03 14:22:34 -07003107 } else {
3108 for (int i = 0; i < mNewShortcutAnimateViews.size(); ++i) {
3109 View v = mNewShortcutAnimateViews.get(i);
3110 ValueAnimator bounceAnim = ObjectAnimator.ofPropertyValuesHolder(v,
3111 PropertyValuesHolder.ofFloat("alpha", 1f),
3112 PropertyValuesHolder.ofFloat("scaleX", 1f),
3113 PropertyValuesHolder.ofFloat("scaleY", 1f));
3114 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
3115 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
3116 bounceAnim.setInterpolator(new SmoothPagedView.OvershootInterpolator());
3117 bounceAnims.add(bounceAnim);
3118 }
3119 anim.playTogether(bounceAnims);
3120 anim.addListener(new AnimatorListenerAdapter() {
3121 @Override
3122 public void onAnimationEnd(Animator animation) {
3123 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
3124 }
3125 });
3126 anim.start();
3127 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003128
3129 // Clean up
3130 mNewShortcutAnimatePage = -1;
3131 mNewShortcutAnimateViews.clear();
3132 new Thread("clearNewAppsThread") {
3133 public void run() {
3134 mSharedPrefs.edit()
3135 .putInt(InstallShortcutReceiver.NEW_APPS_PAGE_KEY, -1)
3136 .putStringSet(InstallShortcutReceiver.NEW_APPS_LIST_KEY, null)
3137 .commit();
3138 }
3139 }.start();
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003140 }
3141
Narayan Kamathcb1a4772011-06-28 13:46:59 +01003142 @Override
3143 public void bindSearchablesChanged() {
Winson Chungc51db6a2011-10-05 11:44:49 -07003144 boolean searchVisible = updateGlobalSearchIcon();
3145 boolean voiceVisible = updateVoiceSearchIcon(searchVisible);
3146 mSearchDropTargetBar.onSearchPackagesChanged(searchVisible, voiceVisible);
Narayan Kamathcb1a4772011-06-28 13:46:59 +01003147 }
3148
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003149 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003150 * Add the icons for all apps.
3151 *
3152 * Implementation of the method from LauncherModel.Callbacks.
3153 */
Michael Jurkac57b7a82011-08-09 22:02:20 -07003154 public void bindAllApplications(final ArrayList<ApplicationInfo> apps) {
3155 // Remove the progress bar entirely; we could also make it GONE
3156 // but better to remove it since we know it's not going to be used
3157 View progressBar = mAppsCustomizeTabHost.
3158 findViewById(R.id.apps_customize_progress_bar);
3159 if (progressBar != null) {
3160 ((ViewGroup)progressBar.getParent()).removeView(progressBar);
Winson Chung785d2eb2011-04-14 16:08:02 -07003161 }
Michael Jurkac57b7a82011-08-09 22:02:20 -07003162 // We just post the call to setApps so the user sees the progress bar
3163 // disappear-- otherwise, it just looks like the progress bar froze
3164 // which doesn't look great
3165 mAppsCustomizeTabHost.post(new Runnable() {
3166 public void run() {
3167 if (mAppsCustomizeContent != null) {
3168 mAppsCustomizeContent.setApps(apps);
3169 }
3170 }
3171 });
Joe Onorato9c1289c2009-08-17 11:03:03 -04003172 }
3173
3174 /**
3175 * A package was installed.
3176 *
3177 * Implementation of the method from LauncherModel.Callbacks.
3178 */
Joe Onorato64e6be72010-03-05 15:05:52 -05003179 public void bindAppsAdded(ArrayList<ApplicationInfo> apps) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003180 setLoadOnResume();
Winson Chungf0ea4d32011-06-06 14:27:16 -07003181
Winson Chung785d2eb2011-04-14 16:08:02 -07003182 if (mAppsCustomizeContent != null) {
3183 mAppsCustomizeContent.addApps(apps);
3184 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003185 }
3186
3187 /**
3188 * A package was updated.
3189 *
3190 * Implementation of the method from LauncherModel.Callbacks.
3191 */
Joe Onorato64e6be72010-03-05 15:05:52 -05003192 public void bindAppsUpdated(ArrayList<ApplicationInfo> apps) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003193 setLoadOnResume();
Patrick Dubroyf5afda72011-02-28 12:04:18 -08003194 if (mWorkspace != null) {
3195 mWorkspace.updateShortcuts(apps);
3196 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003197
Winson Chung785d2eb2011-04-14 16:08:02 -07003198 if (mAppsCustomizeContent != null) {
3199 mAppsCustomizeContent.updateApps(apps);
3200 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003201 }
3202
3203 /**
3204 * A package was uninstalled.
3205 *
3206 * Implementation of the method from LauncherModel.Callbacks.
3207 */
Joe Onorato36115782010-06-17 13:28:48 -04003208 public void bindAppsRemoved(ArrayList<ApplicationInfo> apps, boolean permanent) {
Joe Onorato36115782010-06-17 13:28:48 -04003209 if (permanent) {
3210 mWorkspace.removeItems(apps);
3211 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003212
Winson Chung785d2eb2011-04-14 16:08:02 -07003213 if (mAppsCustomizeContent != null) {
3214 mAppsCustomizeContent.removeApps(apps);
3215 }
Winson Chunga1820962011-10-03 16:31:06 -07003216
3217 // Notify the drag controller
3218 mDragController.onAppsRemoved(apps, this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003219 }
Joe Onoratobe386092009-11-17 17:32:16 -08003220
3221 /**
Winson Chung80baf5a2010-08-09 16:03:15 -07003222 * A number of packages were updated.
3223 */
3224 public void bindPackagesUpdated() {
Winson Chung785d2eb2011-04-14 16:08:02 -07003225 if (mAppsCustomizeContent != null) {
3226 mAppsCustomizeContent.onPackagesUpdated();
3227 }
Winson Chung80baf5a2010-08-09 16:03:15 -07003228 }
3229
Winson Chung400438b2011-01-16 17:53:48 -08003230 private int mapConfigurationOriActivityInfoOri(int configOri) {
3231 final Display d = getWindowManager().getDefaultDisplay();
3232 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
3233 switch (d.getRotation()) {
3234 case Surface.ROTATION_0:
3235 case Surface.ROTATION_180:
3236 // We are currently in the same basic orientation as the natural orientation
3237 naturalOri = configOri;
3238 break;
3239 case Surface.ROTATION_90:
3240 case Surface.ROTATION_270:
3241 // We are currently in the other basic orientation to the natural orientation
3242 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
3243 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
3244 break;
3245 }
3246
3247 int[] oriMap = {
3248 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
3249 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
3250 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
3251 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
3252 };
3253 // Since the map starts at portrait, we need to offset if this device's natural orientation
3254 // is landscape.
3255 int indexOffset = 0;
3256 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
3257 indexOffset = 1;
3258 }
3259 return oriMap[(d.getRotation() + indexOffset) % 4];
3260 }
Adam Cohen446e9402011-09-15 18:21:21 -07003261
3262 public void lockScreenOrientationOnLargeUI() {
3263 if (LauncherApplication.isScreenLarge()) {
3264 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
3265 .getConfiguration().orientation));
3266 }
Winson Chung400438b2011-01-16 17:53:48 -08003267 }
Adam Cohen446e9402011-09-15 18:21:21 -07003268 public void unlockScreenOrientationOnLargeUI() {
3269 if (LauncherApplication.isScreenLarge()) {
3270 mHandler.postDelayed(new Runnable() {
3271 public void run() {
3272 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
3273 }
3274 }, mRestoreScreenOrientationDelay);
3275 }
Winson Chung400438b2011-01-16 17:53:48 -08003276 }
3277
Winson Chung82f55532011-08-09 14:14:23 -07003278 /* Cling related */
Winson Chung7d7541e2011-09-16 20:14:36 -07003279 private boolean isClingsEnabled() {
Brett Chabot2a9e2282011-08-23 15:03:13 -07003280 // disable clings when running in a test harness
Winson Chung7d7541e2011-09-16 20:14:36 -07003281 if(ActivityManager.isRunningInTestHarness()) return false;
Brett Chabot2a9e2282011-08-23 15:03:13 -07003282
Winson Chung7d7541e2011-09-16 20:14:36 -07003283 return true;
Winson Chung82f55532011-08-09 14:14:23 -07003284 }
Winson Chung7d7541e2011-09-16 20:14:36 -07003285 private Cling initCling(int clingId, int[] positionData, boolean animate, int delay) {
3286 Cling cling = (Cling) findViewById(clingId);
3287 if (cling != null) {
3288 cling.init(this, positionData);
3289 cling.setVisibility(View.VISIBLE);
3290 cling.setLayerType(View.LAYER_TYPE_HARDWARE, null);
3291 if (animate) {
3292 cling.buildLayer();
3293 cling.setAlpha(0f);
3294 cling.animate()
3295 .alpha(1f)
Winson Chung7a74ac92011-09-20 17:43:51 -07003296 .setInterpolator(new AccelerateInterpolator())
Winson Chung7d7541e2011-09-16 20:14:36 -07003297 .setDuration(SHOW_CLING_DURATION)
3298 .setStartDelay(delay)
3299 .start();
3300 } else {
3301 cling.setAlpha(1f);
3302 }
3303 }
3304 return cling;
3305 }
3306 private void dismissCling(final Cling cling, final String flag, int duration) {
Winson Chung82f55532011-08-09 14:14:23 -07003307 if (cling != null) {
3308 ObjectAnimator anim = ObjectAnimator.ofFloat(cling, "alpha", 0f);
Winson Chung7d7541e2011-09-16 20:14:36 -07003309 anim.setDuration(duration);
Winson Chung82f55532011-08-09 14:14:23 -07003310 anim.addListener(new AnimatorListenerAdapter() {
3311 public void onAnimationEnd(Animator animation) {
3312 cling.setVisibility(View.GONE);
3313 cling.cleanup();
Winson Chung46353de2012-02-16 14:05:10 -08003314 // We should update the shared preferences on a background thread
3315 new Thread("dismissClingThread") {
3316 public void run() {
3317 SharedPreferences.Editor editor = mSharedPrefs.edit();
3318 editor.putBoolean(flag, true);
3319 editor.commit();
3320 }
3321 }.start();
Winson Chung82f55532011-08-09 14:14:23 -07003322 };
3323 });
3324 anim.start();
3325 }
3326 }
Winson Chung9d9d74f2011-09-19 11:49:12 -07003327 private void removeCling(int id) {
3328 final View cling = findViewById(id);
3329 if (cling != null) {
3330 final ViewGroup parent = (ViewGroup) cling.getParent();
3331 parent.post(new Runnable() {
3332 @Override
3333 public void run() {
3334 parent.removeView(cling);
3335 }
3336 });
3337 }
3338 }
Winson Chung7d7541e2011-09-16 20:14:36 -07003339 public void showFirstRunWorkspaceCling() {
Winson Chung7d7541e2011-09-16 20:14:36 -07003340 // Enable the clings only if they have not been dismissed before
Winson Chung46353de2012-02-16 14:05:10 -08003341 if (isClingsEnabled() &&
3342 !mSharedPrefs.getBoolean(Cling.WORKSPACE_CLING_DISMISSED_KEY, false)) {
Winson Chung7d7541e2011-09-16 20:14:36 -07003343 initCling(R.id.workspace_cling, null, false, 0);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003344 } else {
3345 removeCling(R.id.workspace_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003346 }
3347 }
3348 public void showFirstRunAllAppsCling(int[] position) {
Winson Chung7d7541e2011-09-16 20:14:36 -07003349 // Enable the clings only if they have not been dismissed before
Winson Chung46353de2012-02-16 14:05:10 -08003350 if (isClingsEnabled() &&
3351 !mSharedPrefs.getBoolean(Cling.ALLAPPS_CLING_DISMISSED_KEY, false)) {
Winson Chung7d7541e2011-09-16 20:14:36 -07003352 initCling(R.id.all_apps_cling, position, true, 0);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003353 } else {
3354 removeCling(R.id.all_apps_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003355 }
3356 }
3357 public Cling showFirstRunFoldersCling() {
Winson Chung7d7541e2011-09-16 20:14:36 -07003358 // Enable the clings only if they have not been dismissed before
Winson Chung46353de2012-02-16 14:05:10 -08003359 if (isClingsEnabled() &&
3360 !mSharedPrefs.getBoolean(Cling.FOLDER_CLING_DISMISSED_KEY, false)) {
3361 return initCling(R.id.folder_cling, null, true, 0);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003362 } else {
3363 removeCling(R.id.folder_cling);
Winson Chung46353de2012-02-16 14:05:10 -08003364 return null;
Winson Chung7d7541e2011-09-16 20:14:36 -07003365 }
Winson Chung7d7541e2011-09-16 20:14:36 -07003366 }
3367 public boolean isFolderClingVisible() {
3368 Cling cling = (Cling) findViewById(R.id.folder_cling);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003369 if (cling != null) {
3370 return cling.getVisibility() == View.VISIBLE;
3371 }
3372 return false;
Winson Chung7d7541e2011-09-16 20:14:36 -07003373 }
Winson Chung82f55532011-08-09 14:14:23 -07003374 public void dismissWorkspaceCling(View v) {
3375 Cling cling = (Cling) findViewById(R.id.workspace_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003376 dismissCling(cling, Cling.WORKSPACE_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
Winson Chung82f55532011-08-09 14:14:23 -07003377 }
3378 public void dismissAllAppsCling(View v) {
3379 Cling cling = (Cling) findViewById(R.id.all_apps_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003380 dismissCling(cling, Cling.ALLAPPS_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
3381 }
3382 public void dismissFolderCling(View v) {
3383 Cling cling = (Cling) findViewById(R.id.folder_cling);
3384 dismissCling(cling, Cling.FOLDER_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
Winson Chung82f55532011-08-09 14:14:23 -07003385 }
3386
Winson Chung80baf5a2010-08-09 16:03:15 -07003387 /**
Joe Onoratobe386092009-11-17 17:32:16 -08003388 * Prints out out state for debugging.
3389 */
3390 public void dumpState() {
3391 Log.d(TAG, "BEGIN launcher2 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08003392 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08003393 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
3394 Log.d(TAG, "mRestoring=" + mRestoring);
3395 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
3396 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07003397 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08003398 mModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07003399
Winson Chung785d2eb2011-04-14 16:08:02 -07003400 if (mAppsCustomizeContent != null) {
3401 mAppsCustomizeContent.dumpState();
3402 }
Joe Onoratobe386092009-11-17 17:32:16 -08003403 Log.d(TAG, "END launcher2 dump state");
3404 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07003405
3406 @Override
3407 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
3408 super.dump(prefix, fd, writer, args);
3409 writer.println(" ");
3410 writer.println("Debug logs: ");
3411 for (int i = 0; i < sDumpLogs.size(); i++) {
3412 writer.println(" " + sDumpLogs.get(i));
3413 }
3414 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003415}
Michael Jurka2763be32011-02-24 11:19:57 -08003416
Michael Jurkaabded662011-03-04 12:06:57 -08003417interface LauncherTransitionable {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003418 View getContent();
Michael Jurkabed61d22012-02-14 22:51:29 -08003419 void onLauncherTransitionStart(Launcher l, boolean animated, boolean toWorkspace);
Winson Chung70442722012-02-10 15:43:22 -08003420 void onLauncherTransitionStep(Launcher l, float t);
Michael Jurkabed61d22012-02-14 22:51:29 -08003421 void onLauncherTransitionEnd(Launcher l, boolean animated, boolean toWorkspace);
Michael Jurka2763be32011-02-24 11:19:57 -08003422}