blob: 0225d28bf57e162e731709f1596b85c584f05157 [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
Michael Jurka974c3862012-05-22 22:00:31 -070020import android.accounts.Account;
21import android.accounts.AccountManager;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070022import android.animation.Animator;
Michael Jurka8edd75c2010-12-17 20:15:06 -080023import android.animation.AnimatorListenerAdapter;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070024import android.animation.AnimatorSet;
Adam Cohen2801caf2011-05-13 20:57:39 -070025import android.animation.ObjectAnimator;
26import android.animation.PropertyValuesHolder;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070027import android.animation.ValueAnimator;
Winson Chung70442722012-02-10 15:43:22 -080028import android.animation.ValueAnimator.AnimatorUpdateListener;
Michael Jurka946ad472010-07-09 18:05:18 -070029import android.app.Activity;
Brett Chabot2a9e2282011-08-23 15:03:13 -070030import android.app.ActivityManager;
Winson Chungc7450e32012-04-17 17:34:08 -070031import android.app.ActivityOptions;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080032import android.app.SearchManager;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080033import android.appwidget.AppWidgetHostView;
Michael Jurkaaf442092010-06-10 17:01:57 -070034import android.appwidget.AppWidgetManager;
35import android.appwidget.AppWidgetProviderInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080036import android.content.ActivityNotFoundException;
Joe Onorato2ca0ae72009-11-10 13:14:13 -080037import android.content.BroadcastReceiver;
Michael Jurkae326f182011-11-21 14:05:46 -080038import android.content.ComponentCallbacks2;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040039import android.content.ComponentName;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080040import android.content.ContentResolver;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080041import android.content.Context;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080042import android.content.Intent;
Winson Chungf0ea4d32011-06-06 14:27:16 -070043import android.content.IntentFilter;
Winson Chung82f55532011-08-09 14:14:23 -070044import android.content.SharedPreferences;
Winson Chungaafa03c2010-06-11 17:34:16 -070045import android.content.pm.ActivityInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080046import android.content.pm.PackageManager;
Adam Cohen716b51e2011-06-30 12:09:54 -070047import android.content.pm.PackageManager.NameNotFoundException;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080048import android.content.res.Configuration;
Karl Rosaen138a0412009-04-23 19:00:21 -070049import android.content.res.Resources;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080050import android.database.ContentObserver;
Adam Cohen268c4752012-06-06 17:47:33 -070051import android.graphics.Bitmap;
52import android.graphics.Canvas;
53import android.graphics.PorterDuff;
Michael Jurkaaf442092010-06-10 17:01:57 -070054import android.graphics.Rect;
Michael Jurkaaf442092010-06-10 17:01:57 -070055import android.graphics.drawable.Drawable;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040056import android.net.Uri;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -070057import android.os.AsyncTask;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080058import android.os.Bundle;
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +020059import android.os.Environment;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080060import android.os.Handler;
Adam Cohended9f8d2010-11-03 13:25:16 -070061import android.os.Message;
Winson Chunga2413752012-04-03 14:22:34 -070062import android.os.StrictMode;
Daniel Sandler843e8602010-06-07 14:59:01 -040063import android.os.SystemClock;
Patrick Dubroy4ed62782010-08-17 15:11:18 -070064import android.provider.Settings;
Amith Yamasani6d7fe502010-11-16 09:05:07 -080065import android.speech.RecognizerIntent;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080066import android.text.Selection;
67import android.text.SpannableStringBuilder;
Michael Jurkaa33411c2012-06-14 16:18:21 -070068import android.text.TextUtils;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080069import android.text.method.TextKeyListener;
Joe Onorato7c312c12009-08-13 21:36:53 -070070import android.util.Log;
Winson Chung400438b2011-01-16 17:53:48 -080071import android.view.Display;
Joe Onorato0d44e942009-11-16 18:20:51 -080072import android.view.HapticFeedbackConstants;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080073import android.view.KeyEvent;
74import android.view.LayoutInflater;
75import android.view.Menu;
76import android.view.MenuItem;
Michael Jurka0e260592010-06-30 17:07:39 -070077import android.view.MotionEvent;
Winson Chung400438b2011-01-16 17:53:48 -080078import android.view.Surface;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080079import android.view.View;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080080import android.view.View.OnLongClickListener;
Winson Chung82f55532011-08-09 14:14:23 -070081import android.view.ViewGroup;
Michael Jurkab737ee62011-11-15 15:57:22 -080082import android.view.ViewTreeObserver;
Michael Jurka2a4b1a82011-12-07 14:00:02 -080083import android.view.ViewTreeObserver.OnGlobalLayoutListener;
Dianne Hackbornbb003a52011-08-30 14:40:07 -070084import android.view.WindowManager;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -080085import android.view.accessibility.AccessibilityEvent;
Adam Cohencff6af82011-09-13 14:51:53 -070086import android.view.animation.AccelerateDecelerateInterpolator;
Winson Chung7a74ac92011-09-20 17:43:51 -070087import android.view.animation.AccelerateInterpolator;
Adam Cohenf16e5712011-01-13 13:31:45 -080088import android.view.animation.DecelerateInterpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080089import android.view.inputmethod.InputMethodManager;
Adam Cohended9f8d2010-11-03 13:25:16 -070090import android.widget.Advanceable;
Michael Jurkaaf442092010-06-10 17:01:57 -070091import android.widget.ImageView;
Winson Chung68846fd2010-10-29 11:00:27 -070092import android.widget.TextView;
93import android.widget.Toast;
Patrick Dubroy4ed62782010-08-17 15:11:18 -070094
Adam Cohendf2cc412011-04-27 16:56:57 -070095import com.android.common.Search;
96import com.android.launcher.R;
Adam Cohen558baaf2011-08-15 15:22:57 -070097import com.android.launcher2.DropTarget.DragObject;
Romain Guyedcce092010-03-04 13:03:17 -080098
Adam Cohenc0dcf592011-06-01 15:30:43 -070099import java.io.DataInputStream;
100import java.io.DataOutputStream;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700101import java.io.FileDescriptor;
Michael Jurka9bc8eba2012-05-21 20:36:44 -0700102import java.io.FileInputStream;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700103import java.io.FileNotFoundException;
104import java.io.IOException;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700105import java.io.PrintWriter;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700106import java.util.ArrayList;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700107import java.util.Collection;
108import java.util.Collections;
109import java.util.Comparator;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700110import java.util.HashMap;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700111import java.util.HashSet;
Michael Jurkad7c28052012-04-27 15:43:36 -0700112import java.util.List;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700113import java.util.Set;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700114
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800115/**
116 * Default launcher application.
117 */
Michael Jurka946ad472010-07-09 18:05:18 -0700118public final class Launcher extends Activity
Michael Jurka0e260592010-06-30 17:07:39 -0700119 implements View.OnClickListener, OnLongClickListener, LauncherModel.Callbacks,
Winson Chungcd810732012-06-18 16:45:43 -0700120 View.OnTouchListener {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800121 static final String TAG = "Launcher";
Joe Onoratocc67f472010-06-08 10:54:30 -0700122 static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800123
Joe Onorato9c1289c2009-08-17 11:03:03 -0400124 static final boolean PROFILE_STARTUP = false;
Daniel Sandler843e8602010-06-07 14:59:01 -0400125 static final boolean DEBUG_WIDGETS = false;
Winson Chunga2413752012-04-03 14:22:34 -0700126 static final boolean DEBUG_STRICT_MODE = false;
Romain Guy6fefcf12009-06-11 13:07:43 -0700127
Winson Chung70d72102011-08-12 11:24:35 -0700128 private static final int MENU_GROUP_WALLPAPER = 1;
129 private static final int MENU_WALLPAPER_SETTINGS = Menu.FIRST + 1;
130 private static final int MENU_MANAGE_APPS = MENU_WALLPAPER_SETTINGS + 1;
Winson Chung236d4312011-08-22 15:12:27 -0700131 private static final int MENU_SYSTEM_SETTINGS = MENU_MANAGE_APPS + 1;
132 private static final int MENU_HELP = MENU_SYSTEM_SETTINGS + 1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800133
134 private static final int REQUEST_CREATE_SHORTCUT = 1;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700135 private static final int REQUEST_CREATE_APPWIDGET = 5;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800136 private static final int REQUEST_PICK_APPLICATION = 6;
137 private static final int REQUEST_PICK_SHORTCUT = 7;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700138 private static final int REQUEST_PICK_APPWIDGET = 9;
Mike Clerona0618e42009-10-22 13:55:21 -0700139 private static final int REQUEST_PICK_WALLPAPER = 10;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800140
Michael Jurka8b805b12012-04-18 14:23:14 -0700141 private static final int REQUEST_BIND_APPWIDGET = 11;
142
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800143 static final String EXTRA_SHORTCUT_DUPLICATE = "duplicate";
144
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800145 static final int SCREEN_COUNT = 5;
146 static final int DEFAULT_SCREEN = 2;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800147
Romain Guy98d01652009-06-30 16:21:04 -0700148 private static final String PREFERENCES = "launcher.preferences";
Michael Jurkaf3bade62012-06-12 11:00:21 -0700149 static final String FORCE_ENABLE_ROTATION_PROPERTY = "debug.force_enable_rotation";
150 static final String DUMP_STATE_PROPERTY = "debug.dumpstate";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800151
Winson Chung2672ff92012-05-04 16:22:30 -0700152 // The Intent extra that defines whether to ignore the launch animation
153 static final String INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION =
154 "com.android.launcher.intent.extra.shortcut.INGORE_LAUNCH_ANIMATION";
155
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800156 // Type: int
157 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
Michael Jurka883f55b2010-10-21 15:47:14 -0700158 // Type: int
159 private static final String RUNTIME_STATE = "launcher.state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800160 // Type: int
Winson Chung3d503fb2011-07-13 17:25:49 -0700161 private static final String RUNTIME_STATE_PENDING_ADD_CONTAINER = "launcher.add_container";
162 // Type: int
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800163 private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
164 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700165 private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cell_x";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800166 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700167 private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cell_y";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800168 // Type: boolean
169 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME = "launcher.rename_folder";
170 // Type: long
171 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME_ID = "launcher.rename_folder_id";
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700172 // Type: int
173 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_X = "launcher.add_span_x";
174 // Type: int
175 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_Y = "launcher.add_span_y";
176 // Type: parcelable
177 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_INFO = "launcher.add_widget_info";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800178
Patrick Dubroyceae05d2010-08-30 10:40:53 -0700179 private static final String TOOLBAR_ICON_METADATA_NAME = "com.android.launcher.toolbar_icon";
Michael Jurkaae65ee32012-04-30 11:45:54 -0700180 private static final String TOOLBAR_SEARCH_ICON_METADATA_NAME =
181 "com.android.launcher.toolbar_search_icon";
182 private static final String TOOLBAR_VOICE_SEARCH_ICON_METADATA_NAME =
183 "com.android.launcher.toolbar_voice_search_icon";
Patrick Dubroyceae05d2010-08-30 10:40:53 -0700184
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700185 /** The different states that Launcher can be in. */
Winson Chung4a2afa32012-07-19 14:53:05 -0700186 private enum State { NONE, WORKSPACE, APPS_CUSTOMIZE, APPS_CUSTOMIZE_SPRING_LOADED };
Michael Jurkac0e8fca2010-10-06 16:41:29 -0700187 private State mState = State.WORKSPACE;
188 private AnimatorSet mStateAnimation;
Michael Jurkab737ee62011-11-15 15:57:22 -0800189 private AnimatorSet mDividerAnimator;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700190
Joe Onorato9c1289c2009-08-17 11:03:03 -0400191 static final int APPWIDGET_HOST_ID = 1024;
Winson Chung557d6ed2011-07-08 15:34:52 -0700192 private static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
193 private static final int EXIT_SPRINGLOADED_MODE_LONG_TIMEOUT = 600;
Winson Chung7a74ac92011-09-20 17:43:51 -0700194 private static final int SHOW_CLING_DURATION = 550;
Winson Chung7d7541e2011-09-16 20:14:36 -0700195 private static final int DISMISS_CLING_DURATION = 250;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800196
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800197 private static final Object sLock = new Object();
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800198 private static int sScreen = DEFAULT_SCREEN;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800199
Winson Chunga2413752012-04-03 14:22:34 -0700200 // How long to wait before the new-shortcut animation automatically pans the workspace
201 private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 10;
202
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800203 private final BroadcastReceiver mCloseSystemDialogsReceiver
204 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800205 private final ContentObserver mWidgetObserver = new AppWidgetResetObserver();
206
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800207 private LayoutInflater mInflater;
208
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800209 private Workspace mWorkspace;
Michael Jurkab737ee62011-11-15 15:57:22 -0800210 private View mQsbDivider;
211 private View mDockDivider;
212 private DragLayer mDragLayer;
213 private DragController mDragController;
Romain Guycbb89e42009-06-08 15:52:54 -0700214
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700215 private AppWidgetManager mAppWidgetManager;
216 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700217
Michael Jurkac9d95c52011-08-29 14:03:34 -0700218 private ItemInfo mPendingAddInfo = new ItemInfo();
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700219 private AppWidgetProviderInfo mPendingAddWidgetInfo;
220
Michael Jurka0280c3b2010-09-17 15:00:07 -0700221 private int[] mTmpAddItemCellCoordinates = new int[2];
222
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800223 private FolderInfo mFolderInfo;
224
Winson Chung3d503fb2011-07-13 17:25:49 -0700225 private Hotseat mHotseat;
Michael Jurka838a4ca2011-02-07 13:33:06 -0800226 private View mAllAppsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700227
Winson Chungc51db6a2011-10-05 11:44:49 -0700228 private SearchDropTargetBar mSearchDropTargetBar;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700229 private AppsCustomizeTabHost mAppsCustomizeTabHost;
230 private AppsCustomizePagedView mAppsCustomizeContent;
231 private boolean mAutoAdvanceRunning = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800232
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800233 private Bundle mSavedState;
Winson Chung4a2afa32012-07-19 14:53:05 -0700234 // We set the state in both onCreate and then onNewIntent in some cases, which causes both
235 // scroll issues (because the workspace may not have been measured yet) and extra work.
236 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
237 private State mOnResumeState = State.NONE;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800238
239 private SpannableStringBuilder mDefaultKeySsb = null;
240
Joe Onorato9c1289c2009-08-17 11:03:03 -0400241 private boolean mWorkspaceLoading = true;
242
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800243 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800244 private boolean mRestoring;
245 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700246 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800247
Winson Chung4a2afa32012-07-19 14:53:05 -0700248 // Keep track of whether the user has left launcher
249 private static boolean sPausedFromUserAction = false;
250
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800251 private Bundle mSavedInstanceState;
252
Joe Onorato9c1289c2009-08-17 11:03:03 -0400253 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800254 private IconCache mIconCache;
Adam Cohend113e0c2010-11-11 10:48:05 -0800255 private boolean mUserPresent = true;
256 private boolean mVisible = false;
257 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400258
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700259 private static LocaleConfiguration sLocaleConfiguration = null;
260
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700261 private static HashMap<Long, FolderInfo> sFolders = new HashMap<Long, FolderInfo>();
Romain Guycbb89e42009-06-08 15:52:54 -0700262
Patrick Dubroyceae05d2010-08-30 10:40:53 -0700263 private Intent mAppMarketIntent = null;
264
Adam Cohended9f8d2010-11-03 13:25:16 -0700265 // Related to the auto-advancing of widgets
266 private final int ADVANCE_MSG = 1;
267 private final int mAdvanceInterval = 20000;
268 private final int mAdvanceStagger = 250;
269 private long mAutoAdvanceSentTime;
270 private long mAutoAdvanceTimeLeft = -1;
271 private HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
272 new HashMap<View, AppWidgetProviderInfo>();
273
Winson Chung400438b2011-01-16 17:53:48 -0800274 // Determines how long to wait after a rotation before restoring the screen orientation to
275 // match the sensor state.
276 private final int mRestoreScreenOrientationDelay = 500;
277
Michael Jurka4ef207b2010-11-29 17:05:45 -0800278 // External icons saved in case of resource changes, orientation, etc.
Winson Chungdff8ebb2011-09-08 17:25:31 -0700279 private static Drawable.ConstantState[] sGlobalSearchIcon = new Drawable.ConstantState[2];
280 private static Drawable.ConstantState[] sVoiceSearchIcon = new Drawable.ConstantState[2];
281 private static Drawable.ConstantState[] sAppMarketIcon = new Drawable.ConstantState[2];
Michael Jurka4ef207b2010-11-29 17:05:45 -0800282
Adam Cohen1462de32012-07-24 22:34:36 -0700283 private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>();
284
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700285 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
286
Winson Chung46353de2012-02-16 14:05:10 -0800287 // We only want to get the SharedPreferences once since it does an FS stat each time we get
288 // it from the context.
289 private SharedPreferences mSharedPrefs;
290
Winson Chungf0c6ae02012-03-21 16:10:31 -0700291 // Holds the page that we need to animate to, and the icon views that we need to animate up
292 // when we scroll to that page on resume.
293 private int mNewShortcutAnimatePage = -1;
294 private ArrayList<View> mNewShortcutAnimateViews = new ArrayList<View>();
Adam Cohen268c4752012-06-06 17:47:33 -0700295 private ImageView mFolderIconImageView;
296 private Bitmap mFolderIconBitmap;
297 private Canvas mFolderIconCanvas;
298 private Rect mRectForFolderAnimation = new Rect();
Adam Cohen2801caf2011-05-13 20:57:39 -0700299
Michael Jurkaddd62e92011-02-16 17:49:14 -0800300 private BubbleTextView mWaitingForResume;
301
Michael Jurka22143132012-10-04 17:42:38 +0200302 private HideFromAccessibilityHelper mHideFromAccessibilityHelper
303 = new HideFromAccessibilityHelper();
304
Michael Jurkac1f5d262011-09-30 19:32:27 -0700305 private Runnable mBuildLayersRunnable = new Runnable() {
306 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700307 if (mWorkspace != null) {
308 mWorkspace.buildPageHardwareLayers();
309 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700310 }
311 };
312
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800313 private static ArrayList<PendingAddArguments> sPendingAddList
314 = new ArrayList<PendingAddArguments>();
315
316 private static class PendingAddArguments {
317 int requestCode;
318 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700319 long container;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800320 int screen;
321 int cellX;
322 int cellY;
323 }
324
Michael Jurka9bc8eba2012-05-21 20:36:44 -0700325
326 private boolean doesFileExist(String filename) {
327 FileInputStream fis = null;
328 try {
329 fis = openFileInput(filename);
330 fis.close();
331 return true;
332 } catch (java.io.FileNotFoundException e) {
333 return false;
334 } catch (java.io.IOException e) {
335 return true;
336 }
337 }
338
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800339 @Override
340 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700341 if (DEBUG_STRICT_MODE) {
342 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
343 .detectDiskReads()
344 .detectDiskWrites()
345 .detectNetwork() // or .detectAll() for all detectable problems
346 .penaltyLog()
347 .build());
348 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
349 .detectLeakedSqlLiteObjects()
350 .detectLeakedClosableObjects()
351 .penaltyLog()
352 .penaltyDeath()
353 .build());
354 }
355
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800356 super.onCreate(savedInstanceState);
Joe Onorato0589f0f2010-02-08 13:44:00 -0800357 LauncherApplication app = ((LauncherApplication)getApplication());
Winson Chungf0c6ae02012-03-21 16:10:31 -0700358 mSharedPrefs = getSharedPreferences(LauncherApplication.getSharedPreferencesKey(),
359 Context.MODE_PRIVATE);
Joe Onorato0589f0f2010-02-08 13:44:00 -0800360 mModel = app.setLauncher(this);
361 mIconCache = app.getIconCache();
Joe Onorato41a12d22009-10-31 18:30:00 -0400362 mDragController = new DragController(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800363 mInflater = getLayoutInflater();
Romain Guycbb89e42009-06-08 15:52:54 -0700364
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700365 mAppWidgetManager = AppWidgetManager.getInstance(this);
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700366 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
367 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700368
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700369 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
370 // this also ensures that any synchronous binding below doesn't re-trigger another
371 // LauncherModel load.
372 mPaused = false;
373
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800374 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200375 android.os.Debug.startMethodTracing(
376 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800377 }
378
379 checkForLocaleChange();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800380 setContentView(R.layout.launcher);
381 setupViews();
Winson Chung7d7541e2011-09-16 20:14:36 -0700382 showFirstRunWorkspaceCling();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800383
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800384 registerContentObservers();
385
Joe Onorato7c312c12009-08-13 21:36:53 -0700386 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700387
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800388 mSavedState = savedInstanceState;
389 restoreState(mSavedState);
390
Winson Chunga12a2502010-12-20 14:41:35 -0800391 // Update customization drawer _after_ restoring the states
Winson Chung785d2eb2011-04-14 16:08:02 -0700392 if (mAppsCustomizeContent != null) {
393 mAppsCustomizeContent.onPackagesUpdated();
394 }
Winson Chunga12a2502010-12-20 14:41:35 -0800395
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800396 if (PROFILE_STARTUP) {
397 android.os.Debug.stopMethodTracing();
398 }
399
400 if (!mRestoring) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700401 if (sPausedFromUserAction) {
402 // If the user leaves launcher, then we should just load items asynchronously when
403 // they return.
404 mModel.startLoader(true, -1);
405 } else {
406 // We only load the page synchronously if the user rotates (or triggers a
407 // configuration change) while launcher is in the foreground
408 mModel.startLoader(true, mWorkspace.getCurrentPage());
409 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800410 }
411
Michael Jurkac57b7a82011-08-09 22:02:20 -0700412 if (!mModel.isAllAppsLoaded()) {
413 ViewGroup appsCustomizeContentParent = (ViewGroup) mAppsCustomizeContent.getParent();
414 mInflater.inflate(R.layout.apps_customize_progressbar, appsCustomizeContentParent);
415 }
416
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800417 // For handling default keys
418 mDefaultKeySsb = new SpannableStringBuilder();
419 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800420
421 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
422 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800423
Adam Cohenf9426d52012-06-04 17:26:21 -0700424 updateGlobalIcons();
425
426 // On large interfaces, we want the screen to auto-rotate based on the current orientation
427 unlockScreenOrientation(true);
428 }
429
Winson Chung4a2afa32012-07-19 14:53:05 -0700430 protected void onUserLeaveHint() {
431 super.onUserLeaveHint();
432 sPausedFromUserAction = true;
433 }
434
Adam Cohenf9426d52012-06-04 17:26:21 -0700435 private void updateGlobalIcons() {
Winson Chungc51db6a2011-10-05 11:44:49 -0700436 boolean searchVisible = false;
437 boolean voiceVisible = false;
Michael Jurka4ef207b2010-11-29 17:05:45 -0800438 // If we have a saved version of these external icons, we load them up immediately
Winson Chungdff8ebb2011-09-08 17:25:31 -0700439 int coi = getCurrentOrientationIndexForGlobalIcons();
440 if (sGlobalSearchIcon[coi] == null || sVoiceSearchIcon[coi] == null ||
441 sAppMarketIcon[coi] == null) {
Winson Chungc51db6a2011-10-05 11:44:49 -0700442 updateAppMarketIcon();
443 searchVisible = updateGlobalSearchIcon();
444 voiceVisible = updateVoiceSearchIcon(searchVisible);
Winson Chungf0ea4d32011-06-06 14:27:16 -0700445 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700446 if (sGlobalSearchIcon[coi] != null) {
447 updateGlobalSearchIcon(sGlobalSearchIcon[coi]);
Winson Chungc51db6a2011-10-05 11:44:49 -0700448 searchVisible = true;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700449 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700450 if (sVoiceSearchIcon[coi] != null) {
451 updateVoiceSearchIcon(sVoiceSearchIcon[coi]);
Winson Chungc51db6a2011-10-05 11:44:49 -0700452 voiceVisible = true;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700453 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700454 if (sAppMarketIcon[coi] != null) {
455 updateAppMarketIcon(sAppMarketIcon[coi]);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800456 }
Winson Chungadf0c182012-08-23 14:59:07 -0700457 if (mSearchDropTargetBar != null) {
458 mSearchDropTargetBar.onSearchPackagesChanged(searchVisible, voiceVisible);
459 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800460 }
Romain Guycbb89e42009-06-08 15:52:54 -0700461
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800462 private void checkForLocaleChange() {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700463 if (sLocaleConfiguration == null) {
464 new AsyncTask<Void, Void, LocaleConfiguration>() {
465 @Override
466 protected LocaleConfiguration doInBackground(Void... unused) {
467 LocaleConfiguration localeConfiguration = new LocaleConfiguration();
468 readConfiguration(Launcher.this, localeConfiguration);
469 return localeConfiguration;
470 }
471
472 @Override
473 protected void onPostExecute(LocaleConfiguration result) {
474 sLocaleConfiguration = result;
475 checkForLocaleChange(); // recursive, but now with a locale configuration
476 }
477 }.execute();
478 return;
479 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700480
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800481 final Configuration configuration = getResources().getConfiguration();
482
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700483 final String previousLocale = sLocaleConfiguration.locale;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800484 final String locale = configuration.locale.toString();
485
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700486 final int previousMcc = sLocaleConfiguration.mcc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800487 final int mcc = configuration.mcc;
488
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700489 final int previousMnc = sLocaleConfiguration.mnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800490 final int mnc = configuration.mnc;
491
Romain Guy84f296c2009-11-04 15:00:44 -0800492 boolean localeChanged = !locale.equals(previousLocale) || mcc != previousMcc || mnc != previousMnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800493
Romain Guy84f296c2009-11-04 15:00:44 -0800494 if (localeChanged) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700495 sLocaleConfiguration.locale = locale;
496 sLocaleConfiguration.mcc = mcc;
497 sLocaleConfiguration.mnc = mnc;
Romain Guy98d01652009-06-30 16:21:04 -0700498
Joe Onorato0589f0f2010-02-08 13:44:00 -0800499 mIconCache.flush();
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700500
501 final LocaleConfiguration localeConfiguration = sLocaleConfiguration;
502 new Thread("WriteLocaleConfiguration") {
Gilles Debunnedd6c9922010-10-25 11:23:41 -0700503 @Override
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700504 public void run() {
505 writeConfiguration(Launcher.this, localeConfiguration);
506 }
507 }.start();
Romain Guy98d01652009-06-30 16:21:04 -0700508 }
509 }
510
511 private static class LocaleConfiguration {
512 public String locale;
513 public int mcc = -1;
514 public int mnc = -1;
515 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700516
Romain Guy98d01652009-06-30 16:21:04 -0700517 private static void readConfiguration(Context context, LocaleConfiguration configuration) {
518 DataInputStream in = null;
519 try {
520 in = new DataInputStream(context.openFileInput(PREFERENCES));
521 configuration.locale = in.readUTF();
522 configuration.mcc = in.readInt();
523 configuration.mnc = in.readInt();
524 } catch (FileNotFoundException e) {
525 // Ignore
526 } catch (IOException e) {
527 // Ignore
528 } finally {
529 if (in != null) {
530 try {
531 in.close();
532 } catch (IOException e) {
533 // Ignore
534 }
535 }
536 }
537 }
538
539 private static void writeConfiguration(Context context, LocaleConfiguration configuration) {
540 DataOutputStream out = null;
541 try {
542 out = new DataOutputStream(context.openFileOutput(PREFERENCES, MODE_PRIVATE));
543 out.writeUTF(configuration.locale);
544 out.writeInt(configuration.mcc);
545 out.writeInt(configuration.mnc);
546 out.flush();
547 } catch (FileNotFoundException e) {
548 // Ignore
549 } catch (IOException e) {
550 //noinspection ResultOfMethodCallIgnored
551 context.getFileStreamPath(PREFERENCES).delete();
552 } finally {
553 if (out != null) {
554 try {
555 out.close();
556 } catch (IOException e) {
557 // Ignore
558 }
559 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800560 }
561 }
562
Adam Cohen716b51e2011-06-30 12:09:54 -0700563 public DragLayer getDragLayer() {
564 return mDragLayer;
565 }
566
Winson Chung36a62fe2012-05-06 18:04:42 -0700567 boolean isDraggingEnabled() {
568 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
569 // that is subsequently removed from the workspace in startBinding().
570 return !mModel.isLoadingWorkspace();
571 }
572
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800573 static int getScreen() {
574 synchronized (sLock) {
575 return sScreen;
576 }
577 }
578
579 static void setScreen(int screen) {
580 synchronized (sLock) {
581 sScreen = screen;
582 }
583 }
584
Winson Chung557d6ed2011-07-08 15:34:52 -0700585 /**
586 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
587 * a configuration step, this allows the proper animations to run after other transitions.
588 */
589 private boolean completeAdd(PendingAddArguments args) {
Winson Chungb8472bb2011-08-05 13:49:21 -0700590 boolean result = false;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800591 switch (args.requestCode) {
592 case REQUEST_PICK_APPLICATION:
Winson Chung3d503fb2011-07-13 17:25:49 -0700593 completeAddApplication(args.intent, args.container, args.screen, args.cellX,
594 args.cellY);
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800595 break;
596 case REQUEST_PICK_SHORTCUT:
597 processShortcut(args.intent);
598 break;
599 case REQUEST_CREATE_SHORTCUT:
Winson Chung3d503fb2011-07-13 17:25:49 -0700600 completeAddShortcut(args.intent, args.container, args.screen, args.cellX,
601 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700602 result = true;
603 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800604 case REQUEST_CREATE_APPWIDGET:
605 int appWidgetId = args.intent.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1);
Adam Cohened66b2b2012-01-23 17:28:51 -0800606 completeAddAppWidget(appWidgetId, args.container, args.screen, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700607 result = true;
608 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800609 case REQUEST_PICK_WALLPAPER:
610 // We just wanted the activity result here so we can clear mWaitingForResult
611 break;
612 }
Michael Jurka27614d22012-04-02 06:40:22 -0700613 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
614 // if you turned the screen off and then back while in All Apps, Launcher would not
615 // return to the workspace. Clearing mAddInfo.container here fixes this issue
616 resetAddInfo();
Winson Chungb8472bb2011-08-05 13:49:21 -0700617 return result;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800618 }
619
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800620 @Override
Michael Jurka8b805b12012-04-18 14:23:14 -0700621 protected void onActivityResult(
622 final int requestCode, final int resultCode, final Intent data) {
623 if (requestCode == REQUEST_BIND_APPWIDGET) {
624 int appWidgetId = data != null ?
625 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
626 if (resultCode == RESULT_CANCELED) {
627 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
628 } else if (resultCode == RESULT_OK) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700629 addAppWidgetImpl(appWidgetId, mPendingAddInfo, null, mPendingAddWidgetInfo);
Michael Jurka8b805b12012-04-18 14:23:14 -0700630 }
631 return;
632 }
Winson Chung557d6ed2011-07-08 15:34:52 -0700633 boolean delayExitSpringLoadedMode = false;
Adam Cohened66b2b2012-01-23 17:28:51 -0800634 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
635 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700636 mWaitingForResult = false;
637
Adam Cohened66b2b2012-01-23 17:28:51 -0800638 // We have special handling for widgets
639 if (isWidgetDrop) {
640 int appWidgetId = data != null ?
641 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
Winson Chung5aaab772012-04-27 15:24:02 -0700642 if (appWidgetId < 0) {
643 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not returned from the \\" +
644 "widget configuration activity.");
645 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
646 } else {
647 completeTwoStageWidgetDrop(resultCode, appWidgetId);
648 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800649 return;
650 }
651
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800652 // The pattern used here is that a user PICKs a specific application,
653 // which, depending on the target, might need to CREATE the actual target.
Romain Guycbb89e42009-06-08 15:52:54 -0700654
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800655 // For example, the user would PICK_SHORTCUT for "Music playlist", and we
656 // launch over to the Music app to actually CREATE_SHORTCUT.
Winson Chungc7da5552011-08-10 15:28:45 -0700657 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800658 final PendingAddArguments args = new PendingAddArguments();
659 args.requestCode = requestCode;
660 args.intent = data;
Winson Chung3d503fb2011-07-13 17:25:49 -0700661 args.container = mPendingAddInfo.container;
662 args.screen = mPendingAddInfo.screen;
663 args.cellX = mPendingAddInfo.cellX;
664 args.cellY = mPendingAddInfo.cellY;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800665 if (isWorkspaceLocked()) {
666 sPendingAddList.add(args);
667 } else {
Winson Chung557d6ed2011-07-08 15:34:52 -0700668 delayExitSpringLoadedMode = completeAdd(args);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800669 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800670 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800671 mDragLayer.clearAnimatedView();
Winson Chung557d6ed2011-07-08 15:34:52 -0700672 // Exit spring loaded mode if necessary after cancelling the configuration of a widget
Adam Cohened66b2b2012-01-23 17:28:51 -0800673 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED), delayExitSpringLoadedMode,
674 null);
675 }
676
677 private void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700678 CellLayout cellLayout =
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700679 (CellLayout) mWorkspace.getChildAt(mPendingAddInfo.screen);
Adam Cohened66b2b2012-01-23 17:28:51 -0800680 Runnable onCompleteRunnable = null;
681 int animationType = 0;
682
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700683 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800684 if (resultCode == RESULT_OK) {
685 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
686 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700687 mPendingAddWidgetInfo);
688 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800689 onCompleteRunnable = new Runnable() {
690 @Override
691 public void run() {
692 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
693 mPendingAddInfo.screen, layout, null);
694 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED), false,
695 null);
696 }
697 };
698 } else if (resultCode == RESULT_CANCELED) {
699 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
700 onCompleteRunnable = new Runnable() {
701 @Override
702 public void run() {
703 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED), false,
704 null);
705 }
706 };
707 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700708 if (mDragLayer.getAnimatedView() != null) {
709 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
710 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
711 animationType, boundWidget, true);
712 } else {
713 // The animated view may be null in the case of a rotation during widget configuration
714 onCompleteRunnable.run();
715 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800716 }
717
718 @Override
719 protected void onResume() {
720 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700721
Winson Chung4a2afa32012-07-19 14:53:05 -0700722 // Restore the previous launcher state
723 if (mOnResumeState == State.WORKSPACE) {
724 showWorkspace(false);
725 } else if (mOnResumeState == State.APPS_CUSTOMIZE) {
726 showAllApps(false);
727 }
728 mOnResumeState = State.NONE;
729
Winson Chungde0fb8f2012-05-08 14:37:08 -0700730 // Process any items that were added while Launcher was away
731 InstallShortcutReceiver.flushInstallQueue(this);
732
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800733 mPaused = false;
Winson Chung4a2afa32012-07-19 14:53:05 -0700734 sPausedFromUserAction = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700735 if (mRestoring || mOnResumeNeedsLoad) {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400736 mWorkspaceLoading = true;
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700737 mModel.startLoader(true, -1);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400738 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700739 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800740 }
Winson Chunge4e50662012-01-23 14:45:13 -0800741
742 // Reset the pressed state of icons that were locked in the press state while activities
743 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -0800744 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -0800745 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -0800746 mWaitingForResume.setStayPressed(false);
747 }
Winson Chunge4e50662012-01-23 14:45:13 -0800748 if (mAppsCustomizeContent != null) {
749 // Resets the previous all apps icon press state
750 mAppsCustomizeContent.resetDrawableState();
751 }
Adam Cohen06dff352012-06-01 17:17:08 -0700752 // It is possible that widgets can receive updates while launcher is not in the foreground.
753 // Consequently, the widgets will be inflated in the orientation of the foreground activity
754 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
755 // orientation.
Adam Cohen3d509322012-06-06 14:10:04 -0700756 getWorkspace().reinflateWidgetsIfNecessary();
Adam Cohenf9426d52012-06-04 17:26:21 -0700757
758 // Again, as with the above scenario, it's possible that one or more of the global icons
759 // were updated in the wrong orientation.
760 updateGlobalIcons();
Adam Cohen06dff352012-06-01 17:17:08 -0700761 }
762
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800763 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700764 protected void onPause() {
Winson Chungca889b32012-05-07 15:34:34 -0700765 // NOTE: We want all transitions from launcher to act as if the wallpaper were enabled
766 // to be consistent. So re-enable the flag here, and we will re-disable it as necessary
767 // when Launcher resumes and we are still in AllApps.
768 updateWallpaperVisibility(true);
769
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700770 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700771 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -0800772 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -0700773 mDragController.resetLastGestureUpTime();
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700774 }
Romain Guycbb89e42009-06-08 15:52:54 -0700775
Jeffrey Sharkey99c87582009-03-24 17:59:43 -0700776 @Override
777 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400778 // Flag the loader to stop early before switching
779 mModel.stopLoader();
Winson Chung785d2eb2011-04-14 16:08:02 -0700780 if (mAppsCustomizeContent != null) {
781 mAppsCustomizeContent.surrender();
782 }
Romain Guy13c2e7b2010-03-10 19:45:00 -0800783 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -0700784 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700785
Joe Onorato2d7e7d02010-01-29 15:57:19 -0800786 // We can't hide the IME if it was forced open. So don't bother
787 /*
788 @Override
789 public void onWindowFocusChanged(boolean hasFocus) {
790 super.onWindowFocusChanged(hasFocus);
791
792 if (hasFocus) {
793 final InputMethodManager inputManager = (InputMethodManager)
794 getSystemService(Context.INPUT_METHOD_SERVICE);
795 WindowManager.LayoutParams lp = getWindow().getAttributes();
796 inputManager.hideSoftInputFromWindow(lp.token, 0, new android.os.ResultReceiver(new
797 android.os.Handler()) {
798 protected void onReceiveResult(int resultCode, Bundle resultData) {
799 Log.d(TAG, "ResultReceiver got resultCode=" + resultCode);
800 }
801 });
802 Log.d(TAG, "called hideSoftInputFromWindow from onWindowFocusChanged");
803 }
804 }
805 */
806
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800807 private boolean acceptFilter() {
808 final InputMethodManager inputManager = (InputMethodManager)
809 getSystemService(Context.INPUT_METHOD_SERVICE);
810 return !inputManager.isFullscreenMode();
811 }
812
813 @Override
814 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -0700815 final int uniChar = event.getUnicodeChar();
816 final boolean handled = super.onKeyDown(keyCode, event);
817 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
818 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800819 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
820 keyCode, event);
821 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -0700822 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -0700823 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -0700824 // showSearchDialog()
825 // If there are multiple keystrokes before the search dialog takes focus,
826 // onSearchRequested() will be called for every keystroke,
827 // but it is idempotent, so it's fine.
828 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800829 }
830 }
831
Joe Onorato8a9625e2010-01-28 15:55:35 -0800832 // Eat the long press event so the keyboard doesn't come up.
833 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
834 return true;
835 }
836
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800837 return handled;
838 }
839
Karl Rosaen138a0412009-04-23 19:00:21 -0700840 private String getTypedText() {
841 return mDefaultKeySsb.toString();
842 }
843
844 private void clearTypedText() {
845 mDefaultKeySsb.clear();
846 mDefaultKeySsb.clearSpans();
847 Selection.setSelection(mDefaultKeySsb, 0);
848 }
849
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800850 /**
Michael Jurka883f55b2010-10-21 15:47:14 -0700851 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
852 * State
853 */
854 private static State intToState(int stateOrdinal) {
855 State state = State.WORKSPACE;
856 final State[] stateValues = State.values();
857 for (int i = 0; i < stateValues.length; i++) {
858 if (stateValues[i].ordinal() == stateOrdinal) {
859 state = stateValues[i];
860 break;
861 }
862 }
863 return state;
864 }
865
866 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800867 * Restores the previous state, if it exists.
868 *
869 * @param savedState The previous state.
870 */
871 private void restoreState(Bundle savedState) {
872 if (savedState == null) {
873 return;
874 }
875
Michael Jurka883f55b2010-10-21 15:47:14 -0700876 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungf0ea4d32011-06-06 14:27:16 -0700877 if (state == State.APPS_CUSTOMIZE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700878 mOnResumeState = State.APPS_CUSTOMIZE;
Joe Onorato3a8820b2009-11-10 15:06:42 -0800879 }
880
Winson Chungf0c6ae02012-03-21 16:10:31 -0700881 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN, -1);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800882 if (currentScreen > -1) {
Michael Jurka0142d492010-08-25 17:46:15 -0700883 mWorkspace.setCurrentPage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800884 }
885
Winson Chung3d503fb2011-07-13 17:25:49 -0700886 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
887 final int pendingAddScreen = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700888
Winson Chung3d503fb2011-07-13 17:25:49 -0700889 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
890 mPendingAddInfo.container = pendingAddContainer;
891 mPendingAddInfo.screen = pendingAddScreen;
892 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
893 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700894 mPendingAddInfo.spanX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_X);
895 mPendingAddInfo.spanY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y);
896 mPendingAddWidgetInfo = savedState.getParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO);
Adam Cohen87a9f5b2012-05-29 16:16:51 -0700897 mWaitingForResult = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800898 mRestoring = true;
899 }
900
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700901
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800902 boolean renameFolder = savedState.getBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, false);
903 if (renameFolder) {
904 long id = savedState.getLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700905 mFolderInfo = mModel.getFolderById(this, sFolders, id);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800906 mRestoring = true;
907 }
Winson Chunga12a2502010-12-20 14:41:35 -0800908
Winson Chung785d2eb2011-04-14 16:08:02 -0700909
910 // Restore the AppsCustomize tab
911 if (mAppsCustomizeTabHost != null) {
912 String curTab = savedState.getString("apps_customize_currentTab");
913 if (curTab != null) {
Winson Chungc93e5ae2012-07-23 20:48:26 -0700914 mAppsCustomizeTabHost.setContentTypeImmediate(
Winson Chung785d2eb2011-04-14 16:08:02 -0700915 mAppsCustomizeTabHost.getContentTypeForTabTag(curTab));
Winson Chungf314b0e2011-08-16 11:54:27 -0700916 mAppsCustomizeContent.loadAssociatedPages(
917 mAppsCustomizeContent.getCurrentPage());
Winson Chung785d2eb2011-04-14 16:08:02 -0700918 }
919
Winson Chung5afbf7b2011-07-25 11:53:08 -0700920 int currentIndex = savedState.getInt("apps_customize_currentIndex");
921 mAppsCustomizeContent.restorePageForIndex(currentIndex);
Winson Chung785d2eb2011-04-14 16:08:02 -0700922 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800923 }
924
925 /**
926 * Finds all the views we need and configure them properly.
927 */
928 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -0700929 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -0400930
Winson Chung4c98d922011-05-31 16:50:48 -0700931 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
932 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Michael Jurkab737ee62011-11-15 15:57:22 -0800933 mQsbDivider = (ImageView) findViewById(R.id.qsb_divider);
934 mDockDivider = (ImageView) findViewById(R.id.dock_divider);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800935
Winson Chung4c98d922011-05-31 16:50:48 -0700936 // Setup the drag layer
937 mDragLayer.setup(this, dragController);
938
Winson Chung3d503fb2011-07-13 17:25:49 -0700939 // Setup the hotseat
940 mHotseat = (Hotseat) findViewById(R.id.hotseat);
941 if (mHotseat != null) {
942 mHotseat.setup(this);
943 }
944
Winson Chung4c98d922011-05-31 16:50:48 -0700945 // Setup the workspace
946 mWorkspace.setHapticFeedbackEnabled(false);
947 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -0700948 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -0700949 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -0700950
Winson Chungf0ea4d32011-06-06 14:27:16 -0700951 // Get the search/delete bar
Winson Chungc51db6a2011-10-05 11:44:49 -0700952 mSearchDropTargetBar = (SearchDropTargetBar) mDragLayer.findViewById(R.id.qsb_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -0700953
Winson Chungf0ea4d32011-06-06 14:27:16 -0700954 // Setup AppsCustomize
955 mAppsCustomizeTabHost = (AppsCustomizeTabHost)
956 findViewById(R.id.apps_customize_pane);
957 mAppsCustomizeContent = (AppsCustomizePagedView)
958 mAppsCustomizeTabHost.findViewById(R.id.apps_customize_pane_content);
959 mAppsCustomizeContent.setup(this, dragController);
Winson Chung0e721a42012-08-02 17:40:30 -0700960
Winson Chung3d503fb2011-07-13 17:25:49 -0700961 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -0700962 dragController.setDragScoller(mWorkspace);
963 dragController.setScrollView(mDragLayer);
964 dragController.setMoveTarget(mWorkspace);
965 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -0700966 if (mSearchDropTargetBar != null) {
967 mSearchDropTargetBar.setup(this, dragController);
Michael Jurkae0f5a612011-02-07 16:45:41 -0800968 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800969 }
970
971 /**
972 * Creates a view representing a shortcut.
973 *
974 * @param info The data structure describing the shortcut.
975 *
976 * @return A View inflated from R.layout.application.
977 */
Joe Onorato0589f0f2010-02-08 13:44:00 -0800978 View createShortcut(ShortcutInfo info) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800979 return createShortcut(R.layout.application,
Michael Jurka0142d492010-08-25 17:46:15 -0700980 (ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800981 }
982
983 /**
984 * Creates a view representing a shortcut inflated from the specified resource.
985 *
986 * @param layoutResId The id of the XML layout used to create the shortcut.
987 * @param parent The group the shortcut belongs to.
988 * @param info The data structure describing the shortcut.
989 *
990 * @return A View inflated from layoutResId.
991 */
Joe Onorato0589f0f2010-02-08 13:44:00 -0800992 View createShortcut(int layoutResId, ViewGroup parent, ShortcutInfo info) {
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800993 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(layoutResId, parent, false);
994 favorite.applyFromShortcutInfo(info, mIconCache);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800995 favorite.setOnClickListener(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800996 return favorite;
997 }
998
999 /**
1000 * Add an application shortcut to the workspace.
1001 *
1002 * @param data The intent describing the application.
1003 * @param cellInfo The position on screen where to create the shortcut.
1004 */
Winson Chung3d503fb2011-07-13 17:25:49 -07001005 void completeAddApplication(Intent data, long container, int screen, int cellX, int cellY) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001006 final int[] cellXY = mTmpAddItemCellCoordinates;
Winson Chung3d503fb2011-07-13 17:25:49 -07001007 final CellLayout layout = getCellLayout(container, screen);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001008
Adam Cohenfbba09b2011-07-18 21:43:05 -07001009 // First we check if we already know the exact location where we want to add this item.
1010 if (cellX >= 0 && cellY >= 0) {
1011 cellXY[0] = cellX;
1012 cellXY[1] = cellY;
1013 } else if (!layout.findCellForSpan(cellXY, 1, 1)) {
Winson Chung93eef082012-03-23 15:59:27 -07001014 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001015 return;
1016 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001017
Patrick Dubroy002cbf42011-03-03 16:36:21 -08001018 final ShortcutInfo info = mModel.getShortcutInfo(getPackageManager(), data, this);
Joe Onorato0589f0f2010-02-08 13:44:00 -08001019
Romain Guy73b979d2009-06-09 12:57:21 -07001020 if (info != null) {
Joe Onorato0589f0f2010-02-08 13:44:00 -08001021 info.setActivity(data.getComponent(), Intent.FLAG_ACTIVITY_NEW_TASK |
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001022 Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Joe Onorato0589f0f2010-02-08 13:44:00 -08001023 info.container = ItemInfo.NO_ID;
Winson Chung3d503fb2011-07-13 17:25:49 -07001024 mWorkspace.addApplicationShortcut(info, layout, container, screen, cellXY[0], cellXY[1],
Adam Cohenfbba09b2011-07-18 21:43:05 -07001025 isWorkspaceLocked(), cellX, cellY);
Joe Onorato0589f0f2010-02-08 13:44:00 -08001026 } else {
1027 Log.e(TAG, "Couldn't find ActivityInfo for selected application: " + data);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001028 }
1029 }
Romain Guycbb89e42009-06-08 15:52:54 -07001030
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001031 /**
1032 * Add a shortcut to the workspace.
1033 *
1034 * @param data The intent describing the shortcut.
1035 * @param cellInfo The position on screen where to create the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001036 */
Winson Chung3d503fb2011-07-13 17:25:49 -07001037 private void completeAddShortcut(Intent data, long container, int screen, int cellX,
1038 int cellY) {
1039 int[] cellXY = mTmpAddItemCellCoordinates;
1040 int[] touchXY = mPendingAddInfo.dropPos;
1041 CellLayout layout = getCellLayout(container, screen);
Romain Guycbb89e42009-06-08 15:52:54 -07001042
Michael Jurkad3ef3062010-11-23 16:23:58 -08001043 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001044
Adam Cohen558baaf2011-08-15 15:22:57 -07001045 ShortcutInfo info = mModel.infoFromShortcutIntent(this, data, null);
Adam Cohend9198822011-11-22 16:42:47 -08001046 if (info == null) {
1047 return;
1048 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001049 final View view = createShortcut(info);
1050
Adam Cohenfbba09b2011-07-18 21:43:05 -07001051 // First we check if we already know the exact location where we want to add this item.
1052 if (cellX >= 0 && cellY >= 0) {
1053 cellXY[0] = cellX;
1054 cellXY[1] = cellY;
1055 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001056
1057 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001058 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001059 true, null,null)) {
1060 return;
1061 }
1062 DragObject dragObject = new DragObject();
1063 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001064 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1065 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001066 return;
1067 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001068 } else if (touchXY != null) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08001069 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001070 int[] result = layout.findNearestVacantArea(touchXY[0], touchXY[1], 1, 1, cellXY);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001071 foundCellSpan = (result != null);
1072 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001073 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001074 }
1075
1076 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001077 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001078 return;
1079 }
1080
Adam Cohen558baaf2011-08-15 15:22:57 -07001081 LauncherModel.addItemToDatabase(this, info, container, screen, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001082
1083 if (!mRestoring) {
Winson Chung3d503fb2011-07-13 17:25:49 -07001084 mWorkspace.addInScreen(view, container, screen, cellXY[0], cellXY[1], 1, 1,
1085 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001086 }
1087 }
1088
Adam Cohen2f093b62012-04-30 18:59:53 -07001089 static int[] getSpanForWidget(Context context, ComponentName component, int minWidth,
1090 int minHeight) {
1091 Rect padding = AppWidgetHostView.getDefaultPaddingForWidget(context, component, null);
Adam Cohenf814aa02011-09-01 13:48:05 -07001092 // We want to account for the extra amount of padding that we are adding to the widget
1093 // to ensure that it gets the full amount of space that it has requested
1094 int requiredWidth = minWidth + padding.left + padding.right;
1095 int requiredHeight = minHeight + padding.top + padding.bottom;
Adam Cohen2f093b62012-04-30 18:59:53 -07001096 return CellLayout.rectToCell(context.getResources(), requiredWidth, requiredHeight, null);
Adam Cohenf814aa02011-09-01 13:48:05 -07001097 }
1098
Adam Cohen2f093b62012-04-30 18:59:53 -07001099 static int[] getSpanForWidget(Context context, AppWidgetProviderInfo info) {
1100 return getSpanForWidget(context, info.provider, info.minWidth, info.minHeight);
Adam Cohenf814aa02011-09-01 13:48:05 -07001101 }
1102
Adam Cohen2f093b62012-04-30 18:59:53 -07001103 static int[] getMinSpanForWidget(Context context, AppWidgetProviderInfo info) {
1104 return getSpanForWidget(context, info.provider, info.minResizeWidth, info.minResizeHeight);
Adam Cohencbf47e32011-09-16 17:32:37 -07001105 }
1106
Adam Cohen2f093b62012-04-30 18:59:53 -07001107 static int[] getSpanForWidget(Context context, PendingAddWidgetInfo info) {
1108 return getSpanForWidget(context, info.componentName, info.minWidth, info.minHeight);
Adam Cohenf814aa02011-09-01 13:48:05 -07001109 }
1110
Adam Cohen2f093b62012-04-30 18:59:53 -07001111 static int[] getMinSpanForWidget(Context context, PendingAddWidgetInfo info) {
1112 return getSpanForWidget(context, info.componentName, info.minResizeWidth,
Winson Chunga5c96362012-04-12 14:04:41 -07001113 info.minResizeHeight);
Adam Cohend41fbf52012-02-16 23:53:59 -08001114 }
1115
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001116 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001117 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001118 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001119 * @param appWidgetId The app widget id
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001120 * @param cellInfo The position on screen where to create the widget.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001121 */
Adam Cohened66b2b2012-01-23 17:28:51 -08001122 private void completeAddAppWidget(final int appWidgetId, long container, int screen,
1123 AppWidgetHostView hostView, AppWidgetProviderInfo appWidgetInfo) {
1124 if (appWidgetInfo == null) {
1125 appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
1126 }
Romain Guycbb89e42009-06-08 15:52:54 -07001127
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001128 // Calculate the grid spans needed to fit this widget
Winson Chung3d503fb2011-07-13 17:25:49 -07001129 CellLayout layout = getCellLayout(container, screen);
Adam Cohen09353862011-07-14 16:10:03 -07001130
Adam Cohen2f093b62012-04-30 18:59:53 -07001131 int[] minSpanXY = getMinSpanForWidget(this, appWidgetInfo);
1132 int[] spanXY = getSpanForWidget(this, appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001133
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001134 // Try finding open space on Launcher screen
Michael Jurkaa63c4522010-08-19 13:52:27 -07001135 // We have saved the position to which the widget was dragged-- this really only matters
1136 // if we are placing widgets on a "spring-loaded" screen
Winson Chung3d503fb2011-07-13 17:25:49 -07001137 int[] cellXY = mTmpAddItemCellCoordinates;
1138 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohend41fbf52012-02-16 23:53:59 -08001139 int[] finalSpan = new int[2];
Michael Jurka0280c3b2010-09-17 15:00:07 -07001140 boolean foundCellSpan = false;
Winson Chung3d503fb2011-07-13 17:25:49 -07001141 if (mPendingAddInfo.cellX >= 0 && mPendingAddInfo.cellY >= 0) {
1142 cellXY[0] = mPendingAddInfo.cellX;
1143 cellXY[1] = mPendingAddInfo.cellY;
Adam Cohend41fbf52012-02-16 23:53:59 -08001144 spanXY[0] = mPendingAddInfo.spanX;
1145 spanXY[1] = mPendingAddInfo.spanY;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001146 foundCellSpan = true;
1147 } else if (touchXY != null) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001148 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001149 int[] result = layout.findNearestVacantArea(
Adam Cohend41fbf52012-02-16 23:53:59 -08001150 touchXY[0], touchXY[1], minSpanXY[0], minSpanXY[1], spanXY[0],
1151 spanXY[1], cellXY, finalSpan);
1152 spanXY[0] = finalSpan[0];
1153 spanXY[1] = finalSpan[1];
Michael Jurkad3ef3062010-11-23 16:23:58 -08001154 foundCellSpan = (result != null);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001155 } else {
Adam Cohend41fbf52012-02-16 23:53:59 -08001156 foundCellSpan = layout.findCellForSpan(cellXY, minSpanXY[0], minSpanXY[1]);
Michael Jurkaa63c4522010-08-19 13:52:27 -07001157 }
1158
Michael Jurka0280c3b2010-09-17 15:00:07 -07001159 if (!foundCellSpan) {
Winson Chungf7640c82011-02-28 13:47:29 -08001160 if (appWidgetId != -1) {
1161 // Deleting an app widget ID is a void call but writes to disk before returning
1162 // to the caller...
Winson Chungf7640c82011-02-28 13:47:29 -08001163 new Thread("deleteAppWidgetId") {
1164 public void run() {
1165 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
1166 }
1167 }.start();
1168 }
Winson Chung93eef082012-03-23 15:59:27 -07001169 showOutOfSpaceMessage(isHotseatLayout(layout));
Romain Guy18042c82009-11-06 11:44:55 -08001170 return;
1171 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001172
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001173 // Build Launcher-specific widget info and save to database
Winson Chung11a49372012-04-27 15:12:38 -07001174 LauncherAppWidgetInfo launcherInfo = new LauncherAppWidgetInfo(appWidgetId,
1175 appWidgetInfo.provider);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001176 launcherInfo.spanX = spanXY[0];
1177 launcherInfo.spanY = spanXY[1];
Adam Cohend41fbf52012-02-16 23:53:59 -08001178 launcherInfo.minSpanX = mPendingAddInfo.minSpanX;
1179 launcherInfo.minSpanY = mPendingAddInfo.minSpanY;
Romain Guycbb89e42009-06-08 15:52:54 -07001180
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001181 LauncherModel.addItemToDatabase(this, launcherInfo,
Winson Chung3d503fb2011-07-13 17:25:49 -07001182 container, screen, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001183
1184 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001185 if (hostView == null) {
1186 // Perform actual inflation because we're live
1187 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
1188 launcherInfo.hostView.setAppWidget(appWidgetId, appWidgetInfo);
1189 } else {
1190 // The AppWidgetHostView has already been inflated and instantiated
1191 launcherInfo.hostView = hostView;
1192 }
Romain Guycbb89e42009-06-08 15:52:54 -07001193
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001194 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001195 launcherInfo.hostView.setVisibility(View.VISIBLE);
Adam Cohenaaa5c212012-10-05 18:14:31 -07001196 launcherInfo.notifyWidgetSizeChanged(this);
1197
Winson Chung3d503fb2011-07-13 17:25:49 -07001198 mWorkspace.addInScreen(launcherInfo.hostView, container, screen, cellXY[0], cellXY[1],
Joe Onorato9c1289c2009-08-17 11:03:03 -04001199 launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001200
1201 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001202 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001203 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001204 }
Romain Guycbb89e42009-06-08 15:52:54 -07001205
Adam Cohended9f8d2010-11-03 13:25:16 -07001206 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1207 @Override
1208 public void onReceive(Context context, Intent intent) {
1209 final String action = intent.getAction();
1210 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1211 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001212 mDragLayer.clearAllResizeFrames();
Adam Cohended9f8d2010-11-03 13:25:16 -07001213 updateRunning();
Winson Chung337cd9d2011-03-30 10:39:30 -07001214
Winson Chungc100e8e2011-08-09 16:02:43 -07001215 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001216 // processing a multi-step drop
Winson Chungc100e8e2011-08-09 16:02:43 -07001217 if (mAppsCustomizeTabHost != null && mPendingAddInfo.container == ItemInfo.NO_ID) {
1218 mAppsCustomizeTabHost.reset();
1219 showWorkspace(false);
Winson Chung785d2eb2011-04-14 16:08:02 -07001220 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001221 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1222 mUserPresent = true;
1223 updateRunning();
1224 }
1225 }
1226 };
1227
1228 @Override
1229 public void onAttachedToWindow() {
1230 super.onAttachedToWindow();
1231
1232 // Listen for broadcasts related to user-presence
1233 final IntentFilter filter = new IntentFilter();
1234 filter.addAction(Intent.ACTION_SCREEN_OFF);
1235 filter.addAction(Intent.ACTION_USER_PRESENT);
1236 registerReceiver(mReceiver, filter);
1237
Adam Cohend113e0c2010-11-11 10:48:05 -08001238 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001239 mVisible = true;
1240 }
1241
1242 @Override
1243 public void onDetachedFromWindow() {
1244 super.onDetachedFromWindow();
1245 mVisible = false;
1246
Adam Cohend113e0c2010-11-11 10:48:05 -08001247 if (mAttached) {
1248 unregisterReceiver(mReceiver);
1249 mAttached = false;
1250 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001251 updateRunning();
1252 }
1253
1254 public void onWindowVisibilityChanged(int visibility) {
1255 mVisible = visibility == View.VISIBLE;
1256 updateRunning();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001257 // The following code used to be in onResume, but it turns out onResume is called when
1258 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1259 // is a more appropriate event to handle
1260 if (mVisible) {
1261 mAppsCustomizeTabHost.onWindowVisible();
1262 if (!mWorkspaceLoading) {
1263 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001264 // We want to let Launcher draw itself at least once before we force it to build
1265 // layers on all the workspace pages, so that transitioning to Launcher from other
1266 // apps is nice and speedy. Usually the first call to preDraw doesn't correspond to
1267 // a true draw so we wait until the second preDraw call to be safe
1268 observer.addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener() {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001269 public boolean onPreDraw() {
Michael Jurka6ee21d22012-02-21 18:20:27 -08001270 // We delay the layer building a bit in order to give
1271 // other message processing a time to run. In particular
1272 // this avoids a delay in hiding the IME if it was
1273 // currently shown, because doing that may involve
1274 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001275 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Winson Chung31ce0732012-05-06 13:36:43 -07001276
Michael Jurka6ee21d22012-02-21 18:20:27 -08001277 observer.removeOnPreDrawListener(this);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001278 return true;
1279 }
1280 });
1281 }
Michael Jurka6ee21d22012-02-21 18:20:27 -08001282 // When Launcher comes back to foreground, a different Activity might be responsible for
1283 // the app market intent, so refresh the icon
1284 updateAppMarketIcon();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001285 clearTypedText();
1286 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001287 }
1288
1289 private void sendAdvanceMessage(long delay) {
1290 mHandler.removeMessages(ADVANCE_MSG);
1291 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1292 mHandler.sendMessageDelayed(msg, delay);
1293 mAutoAdvanceSentTime = System.currentTimeMillis();
1294 }
1295
1296 private void updateRunning() {
1297 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1298 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1299 mAutoAdvanceRunning = autoAdvanceRunning;
1300 if (autoAdvanceRunning) {
1301 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1302 sendAdvanceMessage(delay);
1303 } else {
1304 if (!mWidgetsToAdvance.isEmpty()) {
1305 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1306 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1307 }
1308 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001309 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001310 }
1311 }
1312 }
1313
1314 private final Handler mHandler = new Handler() {
1315 @Override
1316 public void handleMessage(Message msg) {
1317 if (msg.what == ADVANCE_MSG) {
1318 int i = 0;
1319 for (View key: mWidgetsToAdvance.keySet()) {
1320 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1321 final int delay = mAdvanceStagger * i;
1322 if (v instanceof Advanceable) {
1323 postDelayed(new Runnable() {
1324 public void run() {
1325 ((Advanceable) v).advance();
1326 }
1327 }, delay);
1328 }
1329 i++;
1330 }
1331 sendAdvanceMessage(mAdvanceInterval);
1332 }
1333 }
1334 };
1335
1336 void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001337 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001338 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1339 if (v instanceof Advanceable) {
1340 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001341 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Adam Cohended9f8d2010-11-03 13:25:16 -07001342 updateRunning();
1343 }
1344 }
1345
1346 void removeWidgetToAutoAdvance(View hostView) {
1347 if (mWidgetsToAdvance.containsKey(hostView)) {
1348 mWidgetsToAdvance.remove(hostView);
1349 updateRunning();
1350 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001351 }
1352
Joe Onorato9c1289c2009-08-17 11:03:03 -04001353 public void removeAppWidget(LauncherAppWidgetInfo launcherInfo) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001354 removeWidgetToAutoAdvance(launcherInfo.hostView);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001355 launcherInfo.hostView = null;
1356 }
1357
Winson Chung93eef082012-03-23 15:59:27 -07001358 void showOutOfSpaceMessage(boolean isHotseatLayout) {
1359 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1360 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001361 }
1362
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001363 public LauncherAppWidgetHost getAppWidgetHost() {
1364 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001365 }
Romain Guycbb89e42009-06-08 15:52:54 -07001366
Winson Chunga9abd0e2010-10-27 17:18:37 -07001367 public LauncherModel getModel() {
1368 return mModel;
1369 }
1370
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001371 void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001372 getWindow().closeAllPanels();
1373
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001374 // Whatever we were doing is hereby canceled.
1375 mWaitingForResult = false;
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001376 }
1377
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001378 @Override
1379 protected void onNewIntent(Intent intent) {
1380 super.onNewIntent(intent);
1381
1382 // Close the menu
1383 if (Intent.ACTION_MAIN.equals(intent.getAction())) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001384 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001385 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001386
Jamie Genniscb222e82012-10-23 15:44:26 -07001387 final boolean alreadyOnHome =
1388 ((intent.getFlags() & Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
Joe Onorato14f122b2009-11-19 14:06:36 -08001389 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
Michael Jurka01f0ed42010-08-20 00:41:17 -07001390
Jamie Genniscb222e82012-10-23 15:44:26 -07001391 Runnable processIntent = new Runnable() {
1392 public void run() {
1393 Folder openFolder = mWorkspace.getOpenFolder();
1394 // In all these cases, only animate if we're already on home
1395 mWorkspace.exitWidgetResizeMode();
1396 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
1397 openFolder == null) {
1398 mWorkspace.moveToDefaultScreen(true);
1399 }
Adam Cohenac56cff2011-09-28 20:45:37 -07001400
Jamie Genniscb222e82012-10-23 15:44:26 -07001401 closeFolder();
1402 exitSpringLoadedDragMode();
Winson Chung4a2afa32012-07-19 14:53:05 -07001403
Jamie Genniscb222e82012-10-23 15:44:26 -07001404 // If we are already on home, then just animate back to the workspace,
1405 // otherwise, just wait until onResume to set the state back to Workspace
1406 if (alreadyOnHome) {
1407 showWorkspace(true);
1408 } else {
1409 mOnResumeState = State.WORKSPACE;
1410 }
1411
1412 final View v = getWindow().peekDecorView();
1413 if (v != null && v.getWindowToken() != null) {
1414 InputMethodManager imm = (InputMethodManager)getSystemService(
1415 INPUT_METHOD_SERVICE);
1416 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1417 }
1418
1419 // Reset AllApps to its initial state
1420 if (!alreadyOnHome && mAppsCustomizeTabHost != null) {
1421 mAppsCustomizeTabHost.reset();
1422 }
1423 }
1424 };
1425
1426 if (alreadyOnHome && !mWorkspace.hasWindowFocus()) {
1427 // Delay processing of the intent to allow the status bar animation to finish
1428 // first in order to avoid janky animations.
1429 mWorkspace.postDelayed(processIntent, 350);
Winson Chung4a2afa32012-07-19 14:53:05 -07001430 } else {
Jamie Genniscb222e82012-10-23 15:44:26 -07001431 // Process the intent immediately.
1432 processIntent.run();
Winson Chung4a2afa32012-07-19 14:53:05 -07001433 }
Romain Guy1dd3a072009-07-16 13:21:01 -07001434
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001435 }
1436 }
1437
1438 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001439 public void onRestoreInstanceState(Bundle state) {
1440 super.onRestoreInstanceState(state);
1441 for (int page: mSynchronouslyBoundPages) {
1442 mWorkspace.restoreInstanceStateForChild(page);
1443 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001444 }
1445
1446 @Override
1447 protected void onSaveInstanceState(Bundle outState) {
Winson Chungc93e5ae2012-07-23 20:48:26 -07001448 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN, mWorkspace.getNextPage());
Adam Cohen95bb8002011-07-03 23:40:28 -07001449 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001450
Michael Jurka883f55b2010-10-21 15:47:14 -07001451 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001452 // We close any open folder since it will not be re-opened, and we need to make sure
1453 // this state is reflected.
1454 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001455
Winson Chung3d503fb2011-07-13 17:25:49 -07001456 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screen > -1 &&
1457 mWaitingForResult) {
1458 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
1459 outState.putInt(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screen);
1460 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1461 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001462 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_X, mPendingAddInfo.spanX);
1463 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y, mPendingAddInfo.spanY);
1464 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001465 }
1466
1467 if (mFolderInfo != null && mWaitingForResult) {
1468 outState.putBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, true);
1469 outState.putLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID, mFolderInfo.id);
1470 }
Michael Jurka946ad472010-07-09 18:05:18 -07001471
Winson Chung785d2eb2011-04-14 16:08:02 -07001472 // Save the current AppsCustomize tab
1473 if (mAppsCustomizeTabHost != null) {
1474 String currentTabTag = mAppsCustomizeTabHost.getCurrentTabTag();
1475 if (currentTabTag != null) {
1476 outState.putString("apps_customize_currentTab", currentTabTag);
1477 }
Winson Chung5afbf7b2011-07-25 11:53:08 -07001478 int currentIndex = mAppsCustomizeContent.getSaveInstanceStateIndex();
1479 outState.putInt("apps_customize_currentIndex", currentIndex);
Winson Chung785d2eb2011-04-14 16:08:02 -07001480 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001481 }
1482
1483 @Override
1484 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001485 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001486
Winson Chunge7a03942011-08-05 15:05:12 -07001487 // Remove all pending runnables
1488 mHandler.removeMessages(ADVANCE_MSG);
1489 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07001490 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07001491
Winson Chungcd2b0142011-06-08 16:02:26 -07001492 // Stop callbacks from LauncherModel
1493 LauncherApplication app = ((LauncherApplication) getApplication());
1494 mModel.stopLoader();
1495 app.setLauncher(null);
1496
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001497 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001498 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001499 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001500 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001501 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001502 mAppWidgetHost = null;
1503
1504 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001505
1506 TextKeyListener.getInstance().release();
1507
Winson Chung81b52252012-08-27 15:34:29 -07001508 // Disconnect any of the callbacks and drawables associated with ItemInfos on the workspace
1509 // to prevent leaking Launcher activities on orientation change.
1510 if (mModel != null) {
1511 mModel.unbindItemInfosAndClearQueuedBindRunnables();
1512 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001513
1514 getContentResolver().unregisterContentObserver(mWidgetObserver);
Joe Onorato34a0e1b2009-12-14 17:44:51 -08001515 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001516
Adam Cohenaccf3bf2012-04-30 16:07:43 -07001517 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001518 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
1519 mWorkspace.removeAllViews();
1520 mWorkspace = null;
1521 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08001522
Michael Jurka2ecf9952012-06-18 12:52:28 -07001523 LauncherAnimUtils.onDestroyActivity();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001524 }
1525
Adam Cohena9cf38f2011-05-02 15:36:58 -07001526 public DragController getDragController() {
1527 return mDragController;
1528 }
1529
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001530 @Override
1531 public void startActivityForResult(Intent intent, int requestCode) {
Romain Guy08f97492009-06-29 14:41:20 -07001532 if (requestCode >= 0) mWaitingForResult = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001533 super.startActivityForResult(intent, requestCode);
1534 }
1535
Winson Chung70d72102011-08-12 11:24:35 -07001536 /**
1537 * Indicates that we want global search for this activity by setting the globalSearch
1538 * argument for {@link #startSearch} to true.
1539 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001540 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07001541 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001542 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001543
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001544 showWorkspace(true);
Romain Guycbb89e42009-06-08 15:52:54 -07001545
Karl Rosaen138a0412009-04-23 19:00:21 -07001546 if (initialQuery == null) {
1547 // Use any text typed in the launcher as the initial query
1548 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07001549 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001550 if (appSearchData == null) {
1551 appSearchData = new Bundle();
Bjorn Bringert3e244cf2010-02-10 14:17:35 +00001552 appSearchData.putString(Search.SOURCE, "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001553 }
Winson Chungadf0c182012-08-23 14:59:07 -07001554 Rect sourceBounds = new Rect();
1555 if (mSearchDropTargetBar != null) {
1556 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
1557 }
Romain Guycbb89e42009-06-08 15:52:54 -07001558
Michael Jurkaa33411c2012-06-14 16:18:21 -07001559 startGlobalSearch(initialQuery, selectInitialQuery,
1560 appSearchData, sourceBounds);
1561 }
1562
1563 /**
1564 * Starts the global search activity. This code is a copied from SearchManager
1565 */
1566 public void startGlobalSearch(String initialQuery,
1567 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001568 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07001569 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
1570 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
1571 if (globalSearchActivity == null) {
1572 Log.w(TAG, "No global search activity found.");
1573 return;
1574 }
1575 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
1576 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
1577 intent.setComponent(globalSearchActivity);
1578 // Make sure that we have a Bundle to put source in
1579 if (appSearchData == null) {
1580 appSearchData = new Bundle();
1581 } else {
1582 appSearchData = new Bundle(appSearchData);
1583 }
1584 // Set source to package name of app that starts global search, if not set already.
1585 if (!appSearchData.containsKey("source")) {
1586 appSearchData.putString("source", getPackageName());
1587 }
1588 intent.putExtra(SearchManager.APP_DATA, appSearchData);
1589 if (!TextUtils.isEmpty(initialQuery)) {
1590 intent.putExtra(SearchManager.QUERY, initialQuery);
1591 }
1592 if (selectInitialQuery) {
1593 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
1594 }
1595 intent.setSourceBounds(sourceBounds);
1596 try {
1597 startActivity(intent);
1598 } catch (ActivityNotFoundException ex) {
1599 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
1600 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001601 }
1602
Winson Chung70d72102011-08-12 11:24:35 -07001603 @Override
1604 public boolean onCreateOptionsMenu(Menu menu) {
1605 if (isWorkspaceLocked()) {
1606 return false;
1607 }
1608
1609 super.onCreateOptionsMenu(menu);
Winson Chungdff8ebb2011-09-08 17:25:31 -07001610
1611 Intent manageApps = new Intent(Settings.ACTION_MANAGE_ALL_APPLICATIONS_SETTINGS);
1612 manageApps.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1613 | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Winson Chung236d4312011-08-22 15:12:27 -07001614 Intent settings = new Intent(android.provider.Settings.ACTION_SETTINGS);
1615 settings.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1616 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Michael Jurkab964f9c2011-09-27 22:10:05 -07001617 String helpUrl = getString(R.string.help_url);
1618 Intent help = new Intent(Intent.ACTION_VIEW, Uri.parse(helpUrl));
Winson Chungdff8ebb2011-09-08 17:25:31 -07001619 help.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1620 | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
1621
Winson Chung70d72102011-08-12 11:24:35 -07001622 menu.add(MENU_GROUP_WALLPAPER, MENU_WALLPAPER_SETTINGS, 0, R.string.menu_wallpaper)
1623 .setIcon(android.R.drawable.ic_menu_gallery)
1624 .setAlphabeticShortcut('W');
1625 menu.add(0, MENU_MANAGE_APPS, 0, R.string.menu_manage_apps)
1626 .setIcon(android.R.drawable.ic_menu_manage)
Winson Chungdff8ebb2011-09-08 17:25:31 -07001627 .setIntent(manageApps)
Winson Chung70d72102011-08-12 11:24:35 -07001628 .setAlphabeticShortcut('M');
Winson Chung236d4312011-08-22 15:12:27 -07001629 menu.add(0, MENU_SYSTEM_SETTINGS, 0, R.string.menu_settings)
1630 .setIcon(android.R.drawable.ic_menu_preferences)
1631 .setIntent(settings)
1632 .setAlphabeticShortcut('P');
Michael Jurkab964f9c2011-09-27 22:10:05 -07001633 if (!helpUrl.isEmpty()) {
1634 menu.add(0, MENU_HELP, 0, R.string.menu_help)
1635 .setIcon(android.R.drawable.ic_menu_help)
1636 .setIntent(help)
1637 .setAlphabeticShortcut('H');
1638 }
Winson Chung70d72102011-08-12 11:24:35 -07001639 return true;
1640 }
1641
1642 @Override
1643 public boolean onPrepareOptionsMenu(Menu menu) {
1644 super.onPrepareOptionsMenu(menu);
1645
1646 if (mAppsCustomizeTabHost.isTransitioning()) {
1647 return false;
1648 }
1649 boolean allAppsVisible = (mAppsCustomizeTabHost.getVisibility() == View.VISIBLE);
1650 menu.setGroupVisible(MENU_GROUP_WALLPAPER, !allAppsVisible);
1651
1652 return true;
1653 }
1654
1655 @Override
1656 public boolean onOptionsItemSelected(MenuItem item) {
1657 switch (item.getItemId()) {
1658 case MENU_WALLPAPER_SETTINGS:
1659 startWallpaper();
1660 return true;
Winson Chung70d72102011-08-12 11:24:35 -07001661 }
1662
1663 return super.onOptionsItemSelected(item);
1664 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001665
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07001666 @Override
1667 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07001668 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07001669 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07001670 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07001671 }
1672
Joe Onorato9c1289c2009-08-17 11:03:03 -04001673 public boolean isWorkspaceLocked() {
1674 return mWorkspaceLoading || mWaitingForResult;
1675 }
1676
Michael Jurka0280c3b2010-09-17 15:00:07 -07001677 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07001678 mPendingAddInfo.container = ItemInfo.NO_ID;
1679 mPendingAddInfo.screen = -1;
1680 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
1681 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Adam Cohend41fbf52012-02-16 23:53:59 -08001682 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07001683 mPendingAddInfo.dropPos = null;
Michael Jurka0280c3b2010-09-17 15:00:07 -07001684 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07001685
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001686 void addAppWidgetImpl(final int appWidgetId, ItemInfo info, AppWidgetHostView boundWidget,
1687 AppWidgetProviderInfo appWidgetInfo) {
1688 if (appWidgetInfo.configure != null) {
1689 mPendingAddWidgetInfo = appWidgetInfo;
Michael Jurkaaf442092010-06-10 17:01:57 -07001690
Bjorn Bringert7984c942009-12-09 15:38:25 +00001691 // Launch over to configure widget, if needed
1692 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_CONFIGURE);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001693 intent.setComponent(appWidgetInfo.configure);
Bjorn Bringert7984c942009-12-09 15:38:25 +00001694 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
Romain Guy8e633c52010-03-04 12:51:36 -08001695 startActivityForResultSafely(intent, REQUEST_CREATE_APPWIDGET);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001696 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00001697 // Otherwise just add it
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001698 completeAddAppWidget(appWidgetId, info.container, info.screen, boundWidget,
1699 appWidgetInfo);
Winson Chung557d6ed2011-07-08 15:34:52 -07001700 // Exit spring loaded mode if necessary after adding the widget
Adam Cohened66b2b2012-01-23 17:28:51 -08001701 exitSpringLoadedDragModeDelayed(true, false, null);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001702 }
1703 }
Romain Guycbb89e42009-06-08 15:52:54 -07001704
Adam Cohenfbba09b2011-07-18 21:43:05 -07001705 /**
1706 * Process a shortcut drop.
1707 *
1708 * @param componentName The name of the component
1709 * @param screen The screen where it should be added
1710 * @param cell The cell it should be added to, optional
1711 * @param position The location on the screen where it was dropped, optional
1712 */
Winson Chung3d503fb2011-07-13 17:25:49 -07001713 void processShortcutFromDrop(ComponentName componentName, long container, int screen,
1714 int[] cell, int[] loc) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001715 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07001716 mPendingAddInfo.container = container;
1717 mPendingAddInfo.screen = screen;
1718 mPendingAddInfo.dropPos = loc;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001719
1720 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07001721 mPendingAddInfo.cellX = cell[0];
1722 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07001723 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001724
1725 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
1726 createShortcutIntent.setComponent(componentName);
1727 processShortcut(createShortcutIntent);
1728 }
1729
Adam Cohenfbba09b2011-07-18 21:43:05 -07001730 /**
1731 * Process a widget drop.
1732 *
1733 * @param info The PendingAppWidgetInfo of the widget being added.
1734 * @param screen The screen where it should be added
1735 * @param cell The cell it should be added to, optional
1736 * @param position The location on the screen where it was dropped, optional
1737 */
Winson Chung3d503fb2011-07-13 17:25:49 -07001738 void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, int screen,
Adam Cohend41fbf52012-02-16 23:53:59 -08001739 int[] cell, int[] span, int[] loc) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001740 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07001741 mPendingAddInfo.container = info.container = container;
1742 mPendingAddInfo.screen = info.screen = screen;
1743 mPendingAddInfo.dropPos = loc;
Adam Cohend41fbf52012-02-16 23:53:59 -08001744 mPendingAddInfo.minSpanX = info.minSpanX;
1745 mPendingAddInfo.minSpanY = info.minSpanY;
1746
Adam Cohenfbba09b2011-07-18 21:43:05 -07001747 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07001748 mPendingAddInfo.cellX = cell[0];
1749 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07001750 }
Adam Cohend41fbf52012-02-16 23:53:59 -08001751 if (span != null) {
1752 mPendingAddInfo.spanX = span[0];
1753 mPendingAddInfo.spanY = span[1];
1754 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001755
Adam Cohened66b2b2012-01-23 17:28:51 -08001756 AppWidgetHostView hostView = info.boundWidget;
1757 int appWidgetId;
1758 if (hostView != null) {
1759 appWidgetId = hostView.getAppWidgetId();
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001760 addAppWidgetImpl(appWidgetId, info, hostView, info.info);
Adam Cohened66b2b2012-01-23 17:28:51 -08001761 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001762 // In this case, we either need to start an activity to get permission to bind
1763 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08001764 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07001765 Bundle options = info.bindOptions;
1766
1767 boolean success = false;
1768 if (options != null) {
1769 success = mAppWidgetManager.bindAppWidgetIdIfAllowed(appWidgetId,
1770 info.componentName, options);
1771 } else {
1772 success = mAppWidgetManager.bindAppWidgetIdIfAllowed(appWidgetId,
1773 info.componentName);
1774 }
1775 if (success) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001776 addAppWidgetImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07001777 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001778 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07001779 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
1780 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
1781 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Adam Cohendd70d662012-10-04 16:53:44 -07001782 // TODO: we need to make sure that this accounts for the options bundle.
1783 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07001784 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
1785 }
Adam Cohened66b2b2012-01-23 17:28:51 -08001786 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001787 }
1788
Joe Onoratodeb98af2010-02-19 14:59:39 -08001789 void processShortcut(Intent intent) {
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001790 // Handle case where user selected "Applications"
1791 String applicationName = getResources().getString(R.string.group_applications);
1792 String shortcutName = intent.getStringExtra(Intent.EXTRA_SHORTCUT_NAME);
Romain Guycbb89e42009-06-08 15:52:54 -07001793
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001794 if (applicationName != null && applicationName.equals(shortcutName)) {
1795 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
1796 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
Romain Guycbb89e42009-06-08 15:52:54 -07001797
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001798 Intent pickIntent = new Intent(Intent.ACTION_PICK_ACTIVITY);
1799 pickIntent.putExtra(Intent.EXTRA_INTENT, mainIntent);
Winson Chung58f20882010-10-01 13:44:56 -07001800 pickIntent.putExtra(Intent.EXTRA_TITLE, getText(R.string.title_select_application));
Joe Onorato4a79a042010-09-24 16:17:21 -07001801 startActivityForResultSafely(pickIntent, REQUEST_PICK_APPLICATION);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001802 } else {
Joe Onorato4a79a042010-09-24 16:17:21 -07001803 startActivityForResultSafely(intent, REQUEST_CREATE_SHORTCUT);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001804 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001805 }
1806
Winson Chung24ab2f12010-09-16 14:10:47 -07001807 void processWallpaper(Intent intent) {
1808 startActivityForResult(intent, REQUEST_PICK_WALLPAPER);
1809 }
1810
Winson Chung3d503fb2011-07-13 17:25:49 -07001811 FolderIcon addFolder(CellLayout layout, long container, final int screen, int cellX,
1812 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07001813 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001814 folderInfo.title = getText(R.string.folder_name);
1815
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001816 // Update the model
Winson Chung3d503fb2011-07-13 17:25:49 -07001817 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screen, cellX, cellY,
1818 false);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001819 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001820
1821 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07001822 FolderIcon newFolder =
1823 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
1824 mWorkspace.addInScreen(newFolder, container, screen, cellX, cellY, 1, 1,
1825 isWorkspaceLocked());
Adam Cohendf035382011-04-11 17:22:04 -07001826 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001827 }
Romain Guycbb89e42009-06-08 15:52:54 -07001828
Joe Onorato9c1289c2009-08-17 11:03:03 -04001829 void removeFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001830 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001831 }
1832
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001833 private void startWallpaper() {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001834 showWorkspace(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001835 final Intent pickWallpaper = new Intent(Intent.ACTION_SET_WALLPAPER);
Dianne Hackborn8355ae32009-09-07 21:47:51 -07001836 Intent chooser = Intent.createChooser(pickWallpaper,
1837 getText(R.string.chooser_wallpaper));
Romain Guyf2826c72009-11-12 17:39:34 -08001838 // NOTE: Adds a configure option to the chooser if the wallpaper supports it
1839 // Removed in Eclair MR1
1840// WallpaperManager wm = (WallpaperManager)
1841// getSystemService(Context.WALLPAPER_SERVICE);
1842// WallpaperInfo wi = wm.getWallpaperInfo();
1843// if (wi != null && wi.getSettingsActivity() != null) {
1844// LabeledIntent li = new LabeledIntent(getPackageName(),
1845// R.string.configure_wallpaper, 0);
1846// li.setClassName(wi.getPackageName(), wi.getSettingsActivity());
1847// chooser.putExtra(Intent.EXTRA_INITIAL_INTENTS, new Intent[] { li });
1848// }
Mike Clerona0618e42009-10-22 13:55:21 -07001849 startActivityForResult(chooser, REQUEST_PICK_WALLPAPER);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001850 }
1851
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001852 /**
1853 * Registers various content observers. The current implementation registers
1854 * only a favorites observer to keep track of the favorites applications.
1855 */
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001856 private void registerContentObservers() {
1857 ContentResolver resolver = getContentResolver();
1858 resolver.registerContentObserver(LauncherProvider.CONTENT_APPWIDGET_RESET_URI,
1859 true, mWidgetObserver);
1860 }
1861
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001862 @Override
1863 public boolean dispatchKeyEvent(KeyEvent event) {
1864 if (event.getAction() == KeyEvent.ACTION_DOWN) {
1865 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001866 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07001867 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08001868 case KeyEvent.KEYCODE_VOLUME_DOWN:
Michael Jurka9bc8eba2012-05-21 20:36:44 -07001869 if (doesFileExist(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08001870 dumpState();
1871 return true;
1872 }
1873 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07001874 }
1875 } else if (event.getAction() == KeyEvent.ACTION_UP) {
1876 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07001877 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001878 return true;
1879 }
1880 }
1881
1882 return super.dispatchKeyEvent(event);
1883 }
1884
Joe Onorato88ec0992009-11-19 13:16:06 -08001885 @Override
1886 public void onBackPressed() {
Winson Chungc93e5ae2012-07-23 20:48:26 -07001887 if (isAllAppsVisible()) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001888 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08001889 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07001890 Folder openFolder = mWorkspace.getOpenFolder();
1891 if (openFolder.isEditingName()) {
1892 openFolder.dismissEditingName();
1893 } else {
1894 closeFolder();
1895 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08001896 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08001897 mWorkspace.exitWidgetResizeMode();
1898
Patrick Dubroy94f78a52011-02-28 17:39:16 -08001899 // Back button is a no-op here, but give at least some feedback for the button press
1900 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07001901 }
Joe Onorato88ec0992009-11-19 13:16:06 -08001902 }
1903
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001904 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001905 * Re-listen when widgets are reset.
1906 */
1907 private void onAppWidgetReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08001908 if (mAppWidgetHost != null) {
1909 mAppWidgetHost.startListening();
1910 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001911 }
1912
1913 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001914 * Launches the intent referred by the clicked shortcut.
1915 *
1916 * @param v The view representing the clicked shortcut.
1917 */
1918 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07001919 // Make sure that rogue clicks don't get through while allapps is launching, or after the
1920 // view has detached (it's possible for this to happen if the view is removed mid touch).
1921 if (v.getWindowToken() == null) {
1922 return;
1923 }
1924
Winson Chung9b0b2fe2012-02-24 13:03:34 -08001925 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07001926 return;
1927 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07001928
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001929 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08001930 if (tag instanceof ShortcutInfo) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001931 // Open shortcut
Romain Guyfb5411e2010-02-24 10:04:17 -08001932 final Intent intent = ((ShortcutInfo) tag).intent;
Joe Onorato13724ea2009-12-02 21:16:35 -08001933 int[] pos = new int[2];
1934 v.getLocationOnScreen(pos);
Romain Guyfb5411e2010-02-24 10:04:17 -08001935 intent.setSourceBounds(new Rect(pos[0], pos[1],
1936 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Winson Chungc7450e32012-04-17 17:34:08 -07001937
1938 boolean success = startActivitySafely(v, intent, tag);
Michael Jurkaddd62e92011-02-16 17:49:14 -08001939
1940 if (success && v instanceof BubbleTextView) {
1941 mWaitingForResume = (BubbleTextView) v;
1942 mWaitingForResume.setStayPressed(true);
1943 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001944 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07001945 if (v instanceof FolderIcon) {
1946 FolderIcon fi = (FolderIcon) v;
1947 handleFolderClick(fi);
1948 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07001949 } else if (v == mAllAppsButton) {
Winson Chungc93e5ae2012-07-23 20:48:26 -07001950 if (isAllAppsVisible()) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001951 showWorkspace(true);
Joe Onorato7404ee42009-07-31 11:54:44 -07001952 } else {
Michael Jurka2a552322011-10-11 15:22:05 -07001953 onClickAllAppsButton(v);
Joe Onorato7404ee42009-07-31 11:54:44 -07001954 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001955 }
1956 }
1957
Michael Jurka0e260592010-06-30 17:07:39 -07001958 public boolean onTouch(View v, MotionEvent event) {
Michael Jurkadee05892010-07-27 10:01:56 -07001959 // this is an intercepted event being forwarded from mWorkspace;
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001960 // clicking anywhere on the workspace causes the customization drawer to slide down
1961 showWorkspace(true);
Michael Jurka0e260592010-06-30 17:07:39 -07001962 return false;
1963 }
1964
Michael Jurkaaf442092010-06-10 17:01:57 -07001965 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001966 * Event handler for the search button
1967 *
1968 * @param v The view that was clicked.
1969 */
1970 public void onClickSearchButton(View v) {
Winson Chungbb185bd2011-11-21 12:31:42 -08001971 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
1972
Amith Yamasania135ba82011-08-09 17:42:01 -07001973 onSearchRequested();
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001974 }
1975
1976 /**
Amith Yamasani6d7fe502010-11-16 09:05:07 -08001977 * Event handler for the voice button
1978 *
1979 * @param v The view that was clicked.
1980 */
1981 public void onClickVoiceButton(View v) {
Winson Chungbb185bd2011-11-21 12:31:42 -08001982 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
Amith Yamasani6d7fe502010-11-16 09:05:07 -08001983
Michael Jurkaae65ee32012-04-30 11:45:54 -07001984 try {
1985 final SearchManager searchManager =
1986 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
1987 ComponentName activityName = searchManager.getGlobalSearchActivity();
1988 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
Andy Huangf615f712012-06-07 13:38:04 -07001989 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Michael Jurkaae65ee32012-04-30 11:45:54 -07001990 if (activityName != null) {
1991 intent.setPackage(activityName.getPackageName());
1992 }
Michael Jurka86a720e2012-05-09 11:23:23 -07001993 startActivity(null, intent, "onClickVoiceButton");
Michael Jurkaae65ee32012-04-30 11:45:54 -07001994 } catch (ActivityNotFoundException e) {
1995 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
Andy Huangf615f712012-06-07 13:38:04 -07001996 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Michael Jurkaae65ee32012-04-30 11:45:54 -07001997 startActivitySafely(null, intent, "onClickVoiceButton");
1998 }
Amith Yamasani6d7fe502010-11-16 09:05:07 -08001999 }
2000
2001 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002002 * Event handler for the "grid" button that appears on the home screen, which
2003 * enters all apps mode.
2004 *
2005 * @param v The view that was clicked.
2006 */
2007 public void onClickAllAppsButton(View v) {
Michael Jurka5130e402011-10-13 04:55:35 -07002008 showAllApps(true);
2009 }
2010
2011 public void onTouchDownAllAppsButton(View v) {
Michael Jurka2a552322011-10-11 15:22:05 -07002012 // Provide the same haptic feedback that the system offers for virtual keys.
2013 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002014 }
2015
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002016 public void onClickAppMarketButton(View v) {
2017 if (mAppMarketIntent != null) {
Winson Chungc7450e32012-04-17 17:34:08 -07002018 startActivitySafely(v, mAppMarketIntent, "app market");
Winson Chung4f916f42012-03-26 15:30:59 -07002019 } else {
2020 Log.e(TAG, "Invalid app market intent.");
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002021 }
2022 }
2023
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002024 void startApplicationDetailsActivity(ComponentName componentName) {
2025 String packageName = componentName.getPackageName();
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002026 Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS,
2027 Uri.fromParts("package", packageName, null));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002028 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Winson Chung3b1b36b2012-04-24 18:51:14 -07002029 startActivitySafely(null, intent, "startApplicationDetailsActivity");
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002030 }
2031
Patrick Dubroy5539af72010-09-07 15:22:01 -07002032 void startApplicationUninstallActivity(ApplicationInfo appInfo) {
2033 if ((appInfo.flags & ApplicationInfo.DOWNLOADED_FLAG) == 0) {
2034 // System applications cannot be installed. For now, show a toast explaining that.
2035 // We may give them the option of disabling apps this way.
2036 int messageId = R.string.uninstall_system_app_text;
2037 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
2038 } else {
2039 String packageName = appInfo.componentName.getPackageName();
2040 String className = appInfo.componentName.getClassName();
2041 Intent intent = new Intent(
2042 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002043 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2044 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Patrick Dubroy5539af72010-09-07 15:22:01 -07002045 startActivity(intent);
2046 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002047 }
2048
Michael Jurka86a720e2012-05-09 11:23:23 -07002049 boolean startActivity(View v, Intent intent, Object tag) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002050 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Winson Chungc7450e32012-04-17 17:34:08 -07002051
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002052 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002053 // Only launch using the new animation if the shortcut has not opted out (this is a
2054 // private contract between launcher and may be ignored in the future).
2055 boolean useLaunchAnimation = (v != null) &&
2056 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
2057 if (useLaunchAnimation) {
Winson Chungc7450e32012-04-17 17:34:08 -07002058 ActivityOptions opts = ActivityOptions.makeScaleUpAnimation(v, 0, 0,
2059 v.getMeasuredWidth(), v.getMeasuredHeight());
2060
2061 startActivity(intent, opts.toBundle());
2062 } else {
2063 startActivity(intent);
2064 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002065 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002066 } catch (SecurityException e) {
2067 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002068 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002069 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07002070 "or use the exported attribute for this activity. "
2071 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002072 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002073 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002074 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002075
Michael Jurka86a720e2012-05-09 11:23:23 -07002076 boolean startActivitySafely(View v, Intent intent, Object tag) {
2077 boolean success = false;
2078 try {
2079 success = startActivity(v, intent, tag);
2080 } catch (ActivityNotFoundException e) {
2081 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2082 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
2083 }
2084 return success;
2085 }
2086
Romain Guy8e633c52010-03-04 12:51:36 -08002087 void startActivityForResultSafely(Intent intent, int requestCode) {
2088 try {
2089 startActivityForResult(intent, requestCode);
2090 } catch (ActivityNotFoundException e) {
2091 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2092 } catch (SecurityException e) {
2093 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2094 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
2095 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
2096 "or use the exported attribute for this activity.", e);
2097 }
2098 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002099
Adam Cohena9cf38f2011-05-02 15:36:58 -07002100 private void handleFolderClick(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07002101 final FolderInfo info = folderIcon.getFolderInfo();
Adam Cohen3c81a382011-08-31 22:25:51 -07002102 Folder openFolder = mWorkspace.getFolderForTag(info);
2103
2104 // If the folder info reports that the associated folder is open, then verify that
2105 // it is actually opened. There have been a few instances where this gets out of sync.
2106 if (info.opened && openFolder == null) {
2107 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2108 + info.screen + " (" + info.cellX + ", " + info.cellY + ")");
2109 info.opened = false;
2110 }
2111
Adam Cohenfb91f302012-06-11 15:45:18 -07002112 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002113 // Close any open folder
2114 closeFolder();
2115 // Open the requested folder
Adam Cohena9cf38f2011-05-02 15:36:58 -07002116 openFolder(folderIcon);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002117 } else {
2118 // Find the open folder...
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002119 int folderScreen;
2120 if (openFolder != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07002121 folderScreen = mWorkspace.getPageForView(openFolder);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002122 // .. and close it
2123 closeFolder(openFolder);
Michael Jurka0142d492010-08-25 17:46:15 -07002124 if (folderScreen != mWorkspace.getCurrentPage()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002125 // Close any folder open on the current screen
2126 closeFolder();
2127 // Pull the folder onto this screen
Adam Cohena9cf38f2011-05-02 15:36:58 -07002128 openFolder(folderIcon);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002129 }
2130 }
2131 }
2132 }
2133
Adam Cohen268c4752012-06-06 17:47:33 -07002134 /**
2135 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
2136 * in the DragLayer in the exact absolute location of the original FolderIcon.
2137 */
2138 private void copyFolderIconToImage(FolderIcon fi) {
2139 final int width = fi.getMeasuredWidth();
2140 final int height = fi.getMeasuredHeight();
2141
2142 // Lazy load ImageView, Bitmap and Canvas
2143 if (mFolderIconImageView == null) {
2144 mFolderIconImageView = new ImageView(this);
2145 }
2146 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
2147 mFolderIconBitmap.getHeight() != height) {
2148 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
2149 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
2150 }
2151
2152 DragLayer.LayoutParams lp;
2153 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
2154 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
2155 } else {
2156 lp = new DragLayer.LayoutParams(width, height);
2157 }
2158
Adam Cohen307fe232012-08-16 17:55:58 -07002159 // The layout from which the folder is being opened may be scaled, adjust the starting
2160 // view size by this scale factor.
2161 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07002162 lp.customPosition = true;
2163 lp.x = mRectForFolderAnimation.left;
2164 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07002165 lp.width = (int) (scale * width);
2166 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07002167
2168 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
2169 fi.draw(mFolderIconCanvas);
2170 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07002171 if (fi.getFolder() != null) {
2172 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
2173 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07002174 }
Adam Cohen268c4752012-06-06 17:47:33 -07002175 // Just in case this image view is still in the drag layer from a previous animation,
2176 // we remove it and re-add it.
2177 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
2178 mDragLayer.removeView(mFolderIconImageView);
2179 }
2180 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07002181 if (fi.getFolder() != null) {
2182 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07002183 }
Adam Cohen268c4752012-06-06 17:47:33 -07002184 }
2185
Adam Cohen2801caf2011-05-13 20:57:39 -07002186 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002187 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07002188 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
2189 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
2190 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
2191
Adam Cohenc51934b2011-07-26 21:07:43 -07002192 FolderInfo info = (FolderInfo) fi.getTag();
2193 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
2194 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07002195 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
2196 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07002197 }
2198
Adam Cohen268c4752012-06-06 17:47:33 -07002199 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
2200 copyFolderIconToImage(fi);
2201 fi.setVisibility(View.INVISIBLE);
2202
Michael Jurka2ecf9952012-06-18 12:52:28 -07002203 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07002204 scaleX, scaleY);
Adam Cohen2801caf2011-05-13 20:57:39 -07002205 oa.setDuration(getResources().getInteger(R.integer.config_folderAnimDuration));
2206 oa.start();
2207 }
2208
Adam Cohen268c4752012-06-06 17:47:33 -07002209 private void shrinkAndFadeInFolderIcon(final FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002210 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07002211 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
2212 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
2213 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
2214
Adam Cohen268c4752012-06-06 17:47:33 -07002215 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07002216
Adam Cohen268c4752012-06-06 17:47:33 -07002217 // We remove and re-draw the FolderIcon in-case it has changed
2218 mDragLayer.removeView(mFolderIconImageView);
2219 copyFolderIconToImage(fi);
Michael Jurka2ecf9952012-06-18 12:52:28 -07002220 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07002221 scaleX, scaleY);
Adam Cohen2801caf2011-05-13 20:57:39 -07002222 oa.setDuration(getResources().getInteger(R.integer.config_folderAnimDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07002223 oa.addListener(new AnimatorListenerAdapter() {
2224 @Override
2225 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07002226 if (cl != null) {
2227 cl.clearFolderLeaveBehind();
2228 // Remove the ImageView copy of the FolderIcon and make the original visible.
2229 mDragLayer.removeView(mFolderIconImageView);
2230 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07002231 }
2232 }
2233 });
Adam Cohen2801caf2011-05-13 20:57:39 -07002234 oa.start();
2235 }
2236
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002237 /**
Michael Jurka774bd372010-10-22 13:40:50 -07002238 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002239 * is animated relative to the specified View. If the View is null, no animation
2240 * is played.
2241 *
2242 * @param folderInfo The FolderInfo describing the folder to open.
2243 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07002244 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07002245 Folder folder = folderIcon.getFolder();
Adam Cohena9cf38f2011-05-02 15:36:58 -07002246 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002247
Adam Cohena9cf38f2011-05-02 15:36:58 -07002248 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002249
Adam Cohen4554ee12011-08-03 16:13:21 -07002250 // Just verify that the folder hasn't already been added to the DragLayer.
2251 // There was a one-off crash where the folder had a parent already.
2252 if (folder.getParent() == null) {
2253 mDragLayer.addView(folder);
2254 mDragController.addDropTarget((DropTarget) folder);
2255 } else {
2256 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
2257 folder.getParent() + ").");
2258 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07002259 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07002260 growAndFadeOutFolderIcon(folderIcon);
Adam Cohen4554ee12011-08-03 16:13:21 -07002261 }
2262
2263 public void closeFolder() {
2264 Folder folder = mWorkspace.getOpenFolder();
2265 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07002266 if (folder.isEditingName()) {
2267 folder.dismissEditingName();
2268 }
Adam Cohen4554ee12011-08-03 16:13:21 -07002269 closeFolder(folder);
Winson Chung7d7541e2011-09-16 20:14:36 -07002270
2271 // Dismiss the folder cling
2272 dismissFolderCling(null);
Adam Cohen4554ee12011-08-03 16:13:21 -07002273 }
2274 }
2275
2276 void closeFolder(Folder folder) {
2277 folder.getInfo().opened = false;
2278
2279 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
2280 if (parent != null) {
2281 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
2282 shrinkAndFadeInFolderIcon(fi);
2283 }
2284 folder.animateClosed();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002285 }
2286
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002287 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07002288 if (!isDraggingEnabled()) return false;
2289 if (isWorkspaceLocked()) return false;
2290 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002291
2292 if (!(v instanceof CellLayout)) {
Michael Jurka8c920dd2011-01-20 14:16:56 -08002293 v = (View) v.getParent().getParent();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002294 }
2295
Michael Jurka0280c3b2010-09-17 15:00:07 -07002296 resetAddInfo();
2297 CellLayout.CellInfo longClickCellInfo = (CellLayout.CellInfo) v.getTag();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002298 // This happens when long clicking an item with the dpad/trackball
Adam Cohenfaea1f82011-07-21 16:23:57 -07002299 if (longClickCellInfo == null) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002300 return true;
2301 }
2302
Winson Chung3d503fb2011-07-13 17:25:49 -07002303 // The hotseat touch handling does not go through Workspace, and we always allow long press
2304 // on hotseat items.
Michael Jurka0280c3b2010-09-17 15:00:07 -07002305 final View itemUnderLongClick = longClickCellInfo.cell;
Winson Chung3d503fb2011-07-13 17:25:49 -07002306 boolean allowLongPress = isHotseatLayout(v) || mWorkspace.allowLongPress();
2307 if (allowLongPress && !mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002308 if (itemUnderLongClick == null) {
2309 // User long pressed on empty space
Michael Jurka0280c3b2010-09-17 15:00:07 -07002310 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
2311 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Winson Chung6a3fd3f2011-08-02 14:03:26 -07002312 startWallpaper();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002313 } else {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002314 if (!(itemUnderLongClick instanceof Folder)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002315 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07002316 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002317 }
2318 }
2319 }
2320 return true;
2321 }
2322
Winson Chung3d503fb2011-07-13 17:25:49 -07002323 boolean isHotseatLayout(View layout) {
2324 return mHotseat != null && layout != null &&
2325 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
2326 }
2327 Hotseat getHotseat() {
2328 return mHotseat;
Romain Guy1fbc1c82009-11-09 20:43:08 -08002329 }
Adam Cohenebea84d2011-11-09 17:20:41 -08002330 SearchDropTargetBar getSearchBar() {
2331 return mSearchDropTargetBar;
2332 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08002333
Winson Chung3d503fb2011-07-13 17:25:49 -07002334 /**
2335 * Returns the CellLayout of the specified container at the specified screen.
2336 */
2337 CellLayout getCellLayout(long container, int screen) {
2338 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
2339 if (mHotseat != null) {
2340 return mHotseat.getLayout();
2341 } else {
2342 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08002343 }
Winson Chung3d503fb2011-07-13 17:25:49 -07002344 } else {
2345 return (CellLayout) mWorkspace.getChildAt(screen);
Romain Guya6abce82009-11-10 02:54:41 -08002346 }
2347 }
2348
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002349 Workspace getWorkspace() {
2350 return mWorkspace;
2351 }
2352
Daniel Sandler843e8602010-06-07 14:59:01 -04002353 // Now a part of LauncherModel.Callbacks. Used to reorder loading steps.
2354 public boolean isAllAppsVisible() {
Winson Chungc93e5ae2012-07-23 20:48:26 -07002355 return (mState == State.APPS_CUSTOMIZE) || (mOnResumeState == State.APPS_CUSTOMIZE);
Joe Onoratofb0ca672009-09-14 17:55:46 -04002356 }
2357
Andrew Flynn0dca1ec2012-02-29 13:33:22 -08002358 public boolean isAllAppsButtonRank(int rank) {
2359 return mHotseat.isAllAppsButtonRank(rank);
2360 }
2361
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002362 /**
2363 * Helper method for the cameraZoomIn/cameraZoomOut animations
2364 * @param view The view being animated
Winson Chungf0ea4d32011-06-06 14:27:16 -07002365 * @param state The state that we are moving in or out of (eg. APPS_CUSTOMIZE)
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002366 * @param scaleFactor The scale factor used for the zoom
2367 */
Michael Jurkab3e22d92011-10-31 15:58:33 -07002368 private void setPivotsForZoom(View view, float scaleFactor) {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002369 view.setPivotX(view.getWidth() / 2.0f);
Adam Cohen7777d962011-08-18 18:58:38 -07002370 view.setPivotY(view.getHeight() / 2.0f);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002371 }
Daniel Sandlerc351eb82010-03-03 15:05:19 -05002372
Winson Chung18f41f82012-05-09 13:28:10 -07002373 void disableWallpaperIfInAllApps() {
2374 // Only disable it if we are in all apps
Winson Chungc93e5ae2012-07-23 20:48:26 -07002375 if (isAllAppsVisible()) {
Winson Chung18f41f82012-05-09 13:28:10 -07002376 if (mAppsCustomizeTabHost != null &&
2377 !mAppsCustomizeTabHost.isTransitioning()) {
2378 updateWallpaperVisibility(false);
2379 }
2380 }
2381 }
2382
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002383 void updateWallpaperVisibility(boolean visible) {
2384 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
2385 int curflags = getWindow().getAttributes().flags
2386 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
2387 if (wpflags != curflags) {
2388 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
2389 }
2390 }
2391
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002392 private void dispatchOnLauncherTransitionPrepare(View v, boolean animated, boolean toWorkspace) {
2393 if (v instanceof LauncherTransitionable) {
2394 ((LauncherTransitionable) v).onLauncherTransitionPrepare(this, animated, toWorkspace);
2395 }
2396 }
2397
Michael Jurkabed61d22012-02-14 22:51:29 -08002398 private void dispatchOnLauncherTransitionStart(View v, boolean animated, boolean toWorkspace) {
2399 if (v instanceof LauncherTransitionable) {
2400 ((LauncherTransitionable) v).onLauncherTransitionStart(this, animated, toWorkspace);
2401 }
Winson Chung70442722012-02-10 15:43:22 -08002402
2403 // Update the workspace transition step as well
2404 dispatchOnLauncherTransitionStep(v, 0f);
2405 }
2406
2407 private void dispatchOnLauncherTransitionStep(View v, float t) {
2408 if (v instanceof LauncherTransitionable) {
2409 ((LauncherTransitionable) v).onLauncherTransitionStep(this, t);
2410 }
Michael Jurkabed61d22012-02-14 22:51:29 -08002411 }
2412
2413 private void dispatchOnLauncherTransitionEnd(View v, boolean animated, boolean toWorkspace) {
2414 if (v instanceof LauncherTransitionable) {
2415 ((LauncherTransitionable) v).onLauncherTransitionEnd(this, animated, toWorkspace);
2416 }
Winson Chung70442722012-02-10 15:43:22 -08002417
2418 // Update the workspace transition step as well
2419 dispatchOnLauncherTransitionStep(v, 1f);
Michael Jurkabed61d22012-02-14 22:51:29 -08002420 }
2421
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002422 /**
Michael Jurkab3e22d92011-10-31 15:58:33 -07002423 * Things to test when changing the following seven functions.
2424 * - Home from workspace
2425 * - from center screen
2426 * - from other screens
2427 * - Home from all apps
2428 * - from center screen
2429 * - from other screens
2430 * - Back from all apps
2431 * - from center screen
2432 * - from other screens
2433 * - Launch app from workspace and quit
2434 * - with back
2435 * - with home
2436 * - Launch app from all apps and quit
2437 * - with back
2438 * - with home
2439 * - Go to a screen that's not the default, then all
2440 * apps, and launch and app, and go back
2441 * - with back
2442 * -with home
2443 * - On workspace, long press power and go back
2444 * - with back
2445 * - with home
2446 * - On all apps, long press power and go back
2447 * - with back
2448 * - with home
2449 * - On workspace, power off
2450 * - On all apps, power off
2451 * - Launch an app and turn off the screen while in that app
2452 * - Go back with home key
2453 * - Go back with back key TODO: make this not go to workspace
2454 * - From all apps
2455 * - From workspace
2456 * - Enter and exit car mode (becuase it causes an extra configuration changed)
2457 * - From all apps
2458 * - From the center workspace
2459 * - From another workspace
2460 */
2461
2462 /**
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002463 * Zoom the camera out from the workspace to reveal 'toView'.
2464 * Assumes that the view to show is anchored at either the very top or very bottom
2465 * of the screen.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002466 */
Michael Jurkabed61d22012-02-14 22:51:29 -08002467 private void showAppsCustomizeHelper(final boolean animated, final boolean springLoaded) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07002468 if (mStateAnimation != null) {
2469 mStateAnimation.cancel();
2470 mStateAnimation = null;
2471 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002472 final Resources res = getResources();
Adam Cohenf16e5712011-01-13 13:31:45 -08002473
Winson Chungf0ea4d32011-06-06 14:27:16 -07002474 final int duration = res.getInteger(R.integer.config_appsCustomizeZoomInTime);
2475 final int fadeDuration = res.getInteger(R.integer.config_appsCustomizeFadeInTime);
2476 final float scale = (float) res.getInteger(R.integer.config_appsCustomizeZoomScaleFactor);
Michael Jurkabed61d22012-02-14 22:51:29 -08002477 final View fromView = mWorkspace;
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002478 final AppsCustomizeTabHost toView = mAppsCustomizeTabHost;
Adam Cohencff6af82011-09-13 14:51:53 -07002479 final int startDelay =
2480 res.getInteger(R.integer.config_workspaceAppsCustomizeAnimationStagger);
Patrick Dubroy558654c2010-07-23 16:48:11 -07002481
Michael Jurkab3e22d92011-10-31 15:58:33 -07002482 setPivotsForZoom(toView, scale);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002483
Michael Jurkad74c9842011-07-10 12:44:21 -07002484 // Shrink workspaces away if going to AppsCustomize from workspace
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002485 Animator workspaceAnim =
2486 mWorkspace.getChangeStateAnimation(Workspace.State.SMALL, animated);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002487
2488 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08002489 toView.setScaleX(scale);
2490 toView.setScaleY(scale);
2491 final LauncherViewPropertyAnimator scaleAnim = new LauncherViewPropertyAnimator(toView);
2492 scaleAnim.
2493 scaleX(1f).scaleY(1f).
2494 setDuration(duration).
2495 setInterpolator(new Workspace.ZoomOutInterpolator());
Adam Cohen61033d32010-11-15 18:29:44 -08002496
Winson Chungf0ea4d32011-06-06 14:27:16 -07002497 toView.setVisibility(View.VISIBLE);
Adam Cohenc00f0b92011-12-06 19:45:06 -08002498 toView.setAlpha(0f);
Michael Jurka159b4cc2012-01-17 03:00:35 -08002499 final ObjectAnimator alphaAnim = ObjectAnimator
2500 .ofFloat(toView, "alpha", 0f, 1f)
2501 .setDuration(fadeDuration);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002502 alphaAnim.setInterpolator(new DecelerateInterpolator(1.5f));
Winson Chung70442722012-02-10 15:43:22 -08002503 alphaAnim.addUpdateListener(new AnimatorUpdateListener() {
2504 @Override
2505 public void onAnimationUpdate(ValueAnimator animation) {
Michael Jurka059798a2012-09-04 09:20:16 -07002506 if (animation == null) {
2507 throw new RuntimeException("animation is null");
2508 }
Winson Chung70442722012-02-10 15:43:22 -08002509 float t = (Float) animation.getAnimatedValue();
2510 dispatchOnLauncherTransitionStep(fromView, t);
2511 dispatchOnLauncherTransitionStep(toView, t);
2512 }
2513 });
Adam Cohenf16e5712011-01-13 13:31:45 -08002514
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002515 // toView should appear right at the end of the workspace shrink
2516 // animation
Michael Jurka2ecf9952012-06-18 12:52:28 -07002517 mStateAnimation = LauncherAnimUtils.createAnimatorSet();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002518 mStateAnimation.play(scaleAnim).after(startDelay);
Michael Jurka7407d2a2011-12-12 21:48:38 -08002519 mStateAnimation.play(alphaAnim).after(startDelay);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002520
2521 mStateAnimation.addListener(new AnimatorListenerAdapter() {
Adam Cohenf4ddea32011-09-12 13:46:42 -07002522 boolean animationCancelled = false;
2523
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002524 @Override
Chet Haaseb1254a62010-09-07 13:35:00 -07002525 public void onAnimationStart(Animator animation) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002526 updateWallpaperVisibility(true);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002527 // Prepare the position
2528 toView.setTranslationX(0.0f);
2529 toView.setTranslationY(0.0f);
2530 toView.setVisibility(View.VISIBLE);
Winson Chung785d2eb2011-04-14 16:08:02 -07002531 toView.bringToFront();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002532 }
Michael Jurka3c4c20f2010-10-28 15:36:06 -07002533 @Override
Michael Jurka8edd75c2010-12-17 20:15:06 -08002534 public void onAnimationEnd(Animator animation) {
Michael Jurkabed61d22012-02-14 22:51:29 -08002535 dispatchOnLauncherTransitionEnd(fromView, animated, false);
2536 dispatchOnLauncherTransitionEnd(toView, animated, false);
Winson Chung32174c82011-07-19 15:47:55 -07002537
Michael Jurkafa7969f2012-09-21 16:39:14 -07002538 if (mWorkspace != null && !springLoaded && !LauncherApplication.isScreenLarge()) {
Winson Chung32174c82011-07-19 15:47:55 -07002539 // Hide the workspace scrollbar
2540 mWorkspace.hideScrollingIndicator(true);
Michael Jurkab737ee62011-11-15 15:57:22 -08002541 hideDockDivider();
Winson Chung32174c82011-07-19 15:47:55 -07002542 }
Adam Cohenf4ddea32011-09-12 13:46:42 -07002543 if (!animationCancelled) {
2544 updateWallpaperVisibility(false);
2545 }
Winson Chungc7d2b602012-05-16 17:02:20 -07002546
2547 // Hide the search bar
Winson Chungadf0c182012-08-23 14:59:07 -07002548 if (mSearchDropTargetBar != null) {
2549 mSearchDropTargetBar.hideSearchBar(false);
2550 }
Adam Cohenf4ddea32011-09-12 13:46:42 -07002551 }
2552
Adam Cohencff6af82011-09-13 14:51:53 -07002553 @Override
Adam Cohenf4ddea32011-09-12 13:46:42 -07002554 public void onAnimationCancel(Animator animation) {
2555 animationCancelled = true;
Michael Jurka3c4c20f2010-10-28 15:36:06 -07002556 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002557 });
2558
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002559 if (workspaceAnim != null) {
2560 mStateAnimation.play(workspaceAnim);
2561 }
Michael Jurka1899a362011-11-03 13:50:45 -07002562
2563 boolean delayAnim = false;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002564 final ViewTreeObserver observer;
2565
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002566 dispatchOnLauncherTransitionPrepare(fromView, animated, false);
2567 dispatchOnLauncherTransitionPrepare(toView, animated, false);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002568
2569 // If any of the objects being animated haven't been measured/laid out
2570 // yet, delay the animation until we get a layout pass
Michael Jurkabed61d22012-02-14 22:51:29 -08002571 if ((((LauncherTransitionable) toView).getContent().getMeasuredWidth() == 0) ||
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002572 (mWorkspace.getMeasuredWidth() == 0) ||
2573 (toView.getMeasuredWidth() == 0)) {
2574 observer = mWorkspace.getViewTreeObserver();
2575 delayAnim = true;
2576 } else {
2577 observer = null;
Michael Jurka1899a362011-11-03 13:50:45 -07002578 }
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002579
Michael Jurka3dcd79e2012-05-31 07:50:33 -07002580 final AnimatorSet stateAnimation = mStateAnimation;
2581 final Runnable startAnimRunnable = new Runnable() {
2582 public void run() {
2583 // Check that mStateAnimation hasn't changed while
2584 // we waited for a layout/draw pass
2585 if (mStateAnimation != stateAnimation)
2586 return;
2587 setPivotsForZoom(toView, scale);
2588 dispatchOnLauncherTransitionStart(fromView, animated, false);
2589 dispatchOnLauncherTransitionStart(toView, animated, false);
Michael Jurka382aa182012-06-11 15:42:07 -07002590 toView.post(new Runnable() {
Michael Jurka3dcd79e2012-05-31 07:50:33 -07002591 public void run() {
2592 // Check that mStateAnimation hasn't changed while
2593 // we waited for a layout/draw pass
2594 if (mStateAnimation != stateAnimation)
2595 return;
2596 mStateAnimation.start();
2597 }
2598 });
2599 }
2600 };
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002601 if (delayAnim) {
2602 final OnGlobalLayoutListener delayedStart = new OnGlobalLayoutListener() {
2603 public void onGlobalLayout() {
Michael Jurka382aa182012-06-11 15:42:07 -07002604 toView.post(startAnimRunnable);
Michael Jurka3a9fced2012-04-13 14:44:29 -07002605 observer.removeOnGlobalLayoutListener(this);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002606 }
2607 };
2608 observer.addOnGlobalLayoutListener(delayedStart);
2609 } else {
Michael Jurka3dcd79e2012-05-31 07:50:33 -07002610 startAnimRunnable.run();
Michael Jurka1899a362011-11-03 13:50:45 -07002611 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002612 } else {
2613 toView.setTranslationX(0.0f);
2614 toView.setTranslationY(0.0f);
2615 toView.setScaleX(1.0f);
2616 toView.setScaleY(1.0f);
2617 toView.setVisibility(View.VISIBLE);
Winson Chung785d2eb2011-04-14 16:08:02 -07002618 toView.bringToFront();
Winson Chung3ac74c52011-06-30 17:39:37 -07002619
Michael Jurkabed61d22012-02-14 22:51:29 -08002620 if (!springLoaded && !LauncherApplication.isScreenLarge()) {
2621 // Hide the workspace scrollbar
2622 mWorkspace.hideScrollingIndicator(true);
2623 hideDockDivider();
Winson Chungc7d2b602012-05-16 17:02:20 -07002624
2625 // Hide the search bar
Winson Chungadf0c182012-08-23 14:59:07 -07002626 if (mSearchDropTargetBar != null) {
2627 mSearchDropTargetBar.hideSearchBar(false);
2628 }
Michael Jurkaabded662011-03-04 12:06:57 -08002629 }
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002630 dispatchOnLauncherTransitionPrepare(fromView, animated, false);
Michael Jurkabed61d22012-02-14 22:51:29 -08002631 dispatchOnLauncherTransitionStart(fromView, animated, false);
2632 dispatchOnLauncherTransitionEnd(fromView, animated, false);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002633 dispatchOnLauncherTransitionPrepare(toView, animated, false);
Michael Jurkabed61d22012-02-14 22:51:29 -08002634 dispatchOnLauncherTransitionStart(toView, animated, false);
2635 dispatchOnLauncherTransitionEnd(toView, animated, false);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002636 updateWallpaperVisibility(false);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002637 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002638 }
2639
2640 /**
2641 * Zoom the camera back into the workspace, hiding 'fromView'.
Michael Jurkab3e22d92011-10-31 15:58:33 -07002642 * This is the opposite of showAppsCustomizeHelper.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002643 * @param animated If true, the transition will be animated.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002644 */
Adam Cohened66b2b2012-01-23 17:28:51 -08002645 private void hideAppsCustomizeHelper(State toState, final boolean animated,
2646 final boolean springLoaded, final Runnable onCompleteRunnable) {
Michael Jurkabed61d22012-02-14 22:51:29 -08002647
Michael Jurkab3e22d92011-10-31 15:58:33 -07002648 if (mStateAnimation != null) {
2649 mStateAnimation.cancel();
2650 mStateAnimation = null;
2651 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002652 Resources res = getResources();
Adam Cohenf16e5712011-01-13 13:31:45 -08002653
Winson Chungf0ea4d32011-06-06 14:27:16 -07002654 final int duration = res.getInteger(R.integer.config_appsCustomizeZoomOutTime);
Michael Jurka159b4cc2012-01-17 03:00:35 -08002655 final int fadeOutDuration =
2656 res.getInteger(R.integer.config_appsCustomizeFadeOutTime);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002657 final float scaleFactor = (float)
2658 res.getInteger(R.integer.config_appsCustomizeZoomScaleFactor);
2659 final View fromView = mAppsCustomizeTabHost;
Michael Jurkabed61d22012-02-14 22:51:29 -08002660 final View toView = mWorkspace;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002661 Animator workspaceAnim = null;
2662
2663 if (toState == State.WORKSPACE) {
2664 int stagger = res.getInteger(R.integer.config_appsCustomizeWorkspaceAnimationStagger);
2665 workspaceAnim = mWorkspace.getChangeStateAnimation(
2666 Workspace.State.NORMAL, animated, stagger);
2667 } else if (toState == State.APPS_CUSTOMIZE_SPRING_LOADED) {
2668 workspaceAnim = mWorkspace.getChangeStateAnimation(
2669 Workspace.State.SPRING_LOADED, animated);
2670 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07002671
Michael Jurkab3e22d92011-10-31 15:58:33 -07002672 setPivotsForZoom(fromView, scaleFactor);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002673 updateWallpaperVisibility(true);
Winson Chung4afe9b32011-07-27 17:46:20 -07002674 showHotseat(animated);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002675 if (animated) {
Michael Jurka159b4cc2012-01-17 03:00:35 -08002676 final LauncherViewPropertyAnimator scaleAnim =
2677 new LauncherViewPropertyAnimator(fromView);
2678 scaleAnim.
2679 scaleX(scaleFactor).scaleY(scaleFactor).
2680 setDuration(duration).
2681 setInterpolator(new Workspace.ZoomInInterpolator());
2682
2683 final ObjectAnimator alphaAnim = ObjectAnimator
2684 .ofFloat(fromView, "alpha", 1f, 0f)
2685 .setDuration(fadeOutDuration);
Adam Cohencff6af82011-09-13 14:51:53 -07002686 alphaAnim.setInterpolator(new AccelerateDecelerateInterpolator());
Winson Chung70442722012-02-10 15:43:22 -08002687 alphaAnim.addUpdateListener(new AnimatorUpdateListener() {
2688 @Override
2689 public void onAnimationUpdate(ValueAnimator animation) {
2690 float t = 1f - (Float) animation.getAnimatedValue();
2691 dispatchOnLauncherTransitionStep(fromView, t);
2692 dispatchOnLauncherTransitionStep(toView, t);
2693 }
2694 });
Michael Jurka159b4cc2012-01-17 03:00:35 -08002695
Michael Jurka2ecf9952012-06-18 12:52:28 -07002696 mStateAnimation = LauncherAnimUtils.createAnimatorSet();
Michael Jurkabed61d22012-02-14 22:51:29 -08002697
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002698 dispatchOnLauncherTransitionPrepare(fromView, animated, true);
2699 dispatchOnLauncherTransitionPrepare(toView, animated, true);
Michael Jurkabed61d22012-02-14 22:51:29 -08002700
2701 mStateAnimation.addListener(new AnimatorListenerAdapter() {
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002702 @Override
Michael Jurka8edd75c2010-12-17 20:15:06 -08002703 public void onAnimationEnd(Animator animation) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002704 updateWallpaperVisibility(true);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002705 fromView.setVisibility(View.GONE);
Michael Jurkabed61d22012-02-14 22:51:29 -08002706 dispatchOnLauncherTransitionEnd(fromView, animated, true);
2707 dispatchOnLauncherTransitionEnd(toView, animated, true);
Michael Jurkabafdaaf2012-04-26 13:43:25 -07002708 if (mWorkspace != null) {
2709 mWorkspace.hideScrollingIndicator(false);
2710 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002711 if (onCompleteRunnable != null) {
2712 onCompleteRunnable.run();
2713 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002714 }
2715 });
2716
Winson Chungf0ea4d32011-06-06 14:27:16 -07002717 mStateAnimation.playTogether(scaleAnim, alphaAnim);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002718 if (workspaceAnim != null) {
2719 mStateAnimation.play(workspaceAnim);
2720 }
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002721 dispatchOnLauncherTransitionStart(fromView, animated, true);
2722 dispatchOnLauncherTransitionStart(toView, animated, true);
Michael Jurka3dcd79e2012-05-31 07:50:33 -07002723 final Animator stateAnimation = mStateAnimation;
2724 mWorkspace.post(new Runnable() {
2725 public void run() {
2726 if (stateAnimation != mStateAnimation)
2727 return;
2728 mStateAnimation.start();
2729 }
2730 });
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002731 } else {
2732 fromView.setVisibility(View.GONE);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002733 dispatchOnLauncherTransitionPrepare(fromView, animated, true);
Michael Jurkabed61d22012-02-14 22:51:29 -08002734 dispatchOnLauncherTransitionStart(fromView, animated, true);
2735 dispatchOnLauncherTransitionEnd(fromView, animated, true);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002736 dispatchOnLauncherTransitionPrepare(toView, animated, true);
Michael Jurkabed61d22012-02-14 22:51:29 -08002737 dispatchOnLauncherTransitionStart(toView, animated, true);
2738 dispatchOnLauncherTransitionEnd(toView, animated, true);
Michael Jurkab737ee62011-11-15 15:57:22 -08002739 mWorkspace.hideScrollingIndicator(false);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002740 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002741 }
2742
Michael Jurkae326f182011-11-21 14:05:46 -08002743 @Override
2744 public void onTrimMemory(int level) {
2745 super.onTrimMemory(level);
Winson Chungc7450e32012-04-17 17:34:08 -07002746 if (level >= ComponentCallbacks2.TRIM_MEMORY_MODERATE) {
Michael Jurkae326f182011-11-21 14:05:46 -08002747 mAppsCustomizeTabHost.onTrimMemory();
2748 }
2749 }
2750
Winson Chung18f41f82012-05-09 13:28:10 -07002751 @Override
2752 public void onWindowFocusChanged(boolean hasFocus) {
2753 if (!hasFocus) {
2754 // When another window occludes launcher (like the notification shade, or recents),
2755 // ensure that we enable the wallpaper flag so that transitions are done correctly.
2756 updateWallpaperVisibility(true);
2757 } else {
2758 // When launcher has focus again, disable the wallpaper if we are in AllApps
Winson Chung6cf79092012-06-07 14:50:10 -07002759 mWorkspace.postDelayed(new Runnable() {
2760 @Override
2761 public void run() {
2762 disableWallpaperIfInAllApps();
2763 }
2764 }, 500);
Winson Chung18f41f82012-05-09 13:28:10 -07002765 }
2766 }
2767
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002768 void showWorkspace(boolean animated) {
Adam Cohened66b2b2012-01-23 17:28:51 -08002769 showWorkspace(animated, null);
2770 }
2771
2772 void showWorkspace(boolean animated, Runnable onCompleteRunnable) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07002773 if (mState != State.WORKSPACE) {
Winson Chungc7d2b602012-05-16 17:02:20 -07002774 boolean wasInSpringLoadedMode = (mState == State.APPS_CUSTOMIZE_SPRING_LOADED);
Michael Jurkab3e22d92011-10-31 15:58:33 -07002775 mWorkspace.setVisibility(View.VISIBLE);
Adam Cohened66b2b2012-01-23 17:28:51 -08002776 hideAppsCustomizeHelper(State.WORKSPACE, animated, false, onCompleteRunnable);
Michael Jurkab3e22d92011-10-31 15:58:33 -07002777
Winson Chungc7d2b602012-05-16 17:02:20 -07002778 // Show the search bar (only animate if we were showing the drop target bar in spring
2779 // loaded mode)
Winson Chungadf0c182012-08-23 14:59:07 -07002780 if (mSearchDropTargetBar != null) {
2781 mSearchDropTargetBar.showSearchBar(wasInSpringLoadedMode);
2782 }
Winson Chungc7d2b602012-05-16 17:02:20 -07002783
Michael Jurkab737ee62011-11-15 15:57:22 -08002784 // We only need to animate in the dock divider if we're going from spring loaded mode
Winson Chungc7d2b602012-05-16 17:02:20 -07002785 showDockDivider(animated && wasInSpringLoadedMode);
Michael Jurkab3e22d92011-10-31 15:58:33 -07002786
2787 // Set focus to the AppsCustomize button
2788 if (mAllAppsButton != null) {
2789 mAllAppsButton.requestFocus();
2790 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002791 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07002792
Michael Jurkab737ee62011-11-15 15:57:22 -08002793 mWorkspace.flashScrollingIndicator(animated);
Adam Cohen7777d962011-08-18 18:58:38 -07002794
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002795 // Change the state *after* we've called all the transition code
2796 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08002797
Winson Chung5fb63472011-02-02 17:03:37 -08002798 // Resume the auto-advance of widgets
2799 mUserPresent = true;
2800 updateRunning();
2801
alanv1d4fde62012-10-17 13:15:47 -07002802 // Send an accessibility event to announce the context change
2803 getWindow().getDecorView()
2804 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Joe Onorato00acb122009-08-04 16:04:30 -04002805 }
2806
Michael Jurkab3e22d92011-10-31 15:58:33 -07002807 void showAllApps(boolean animated) {
2808 if (mState != State.WORKSPACE) return;
2809
2810 showAppsCustomizeHelper(animated, false);
2811 mAppsCustomizeTabHost.requestFocus();
2812
Michael Jurkab3e22d92011-10-31 15:58:33 -07002813 // Change the state *after* we've called all the transition code
2814 mState = State.APPS_CUSTOMIZE;
2815
2816 // Pause the auto-advance of widgets until we are out of AllApps
2817 mUserPresent = false;
2818 updateRunning();
2819 closeFolder();
2820
2821 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07002822 getWindow().getDecorView()
2823 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Michael Jurkab3e22d92011-10-31 15:58:33 -07002824 }
2825
Adam Cohen7777d962011-08-18 18:58:38 -07002826 void enterSpringLoadedDragMode() {
Winson Chungc93e5ae2012-07-23 20:48:26 -07002827 if (isAllAppsVisible()) {
Adam Cohened66b2b2012-01-23 17:28:51 -08002828 hideAppsCustomizeHelper(State.APPS_CUSTOMIZE_SPRING_LOADED, true, true, null);
Michael Jurkab737ee62011-11-15 15:57:22 -08002829 hideDockDivider();
Winson Chungc07918d2011-07-01 15:35:26 -07002830 mState = State.APPS_CUSTOMIZE_SPRING_LOADED;
Winson Chungb26f3d62011-06-02 10:49:29 -07002831 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08002832 }
Adam Cohen7777d962011-08-18 18:58:38 -07002833
Adam Cohened66b2b2012-01-23 17:28:51 -08002834 void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, boolean extendedDelay,
2835 final Runnable onCompleteRunnable) {
Winson Chung09bfc452011-09-09 11:30:20 -07002836 if (mState != State.APPS_CUSTOMIZE_SPRING_LOADED) return;
2837
Winson Chunge7a03942011-08-05 15:05:12 -07002838 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07002839 @Override
2840 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07002841 if (successfulDrop) {
Michael Jurka7bdb25a2011-08-03 15:16:44 -07002842 // Before we show workspace, hide all apps again because
2843 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
2844 // clean up our state transition functions
2845 mAppsCustomizeTabHost.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08002846 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07002847 } else {
2848 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07002849 }
Winson Chung557d6ed2011-07-08 15:34:52 -07002850 }
2851 }, (extendedDelay ?
2852 EXIT_SPRINGLOADED_MODE_LONG_TIMEOUT :
2853 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT));
2854 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07002855
Michael Jurkad3ef3062010-11-23 16:23:58 -08002856 void exitSpringLoadedDragMode() {
Winson Chungb26f3d62011-06-02 10:49:29 -07002857 if (mState == State.APPS_CUSTOMIZE_SPRING_LOADED) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07002858 final boolean animated = true;
2859 final boolean springLoaded = true;
2860 showAppsCustomizeHelper(animated, springLoaded);
Winson Chungb26f3d62011-06-02 10:49:29 -07002861 mState = State.APPS_CUSTOMIZE;
Winson Chungf0ea4d32011-06-06 14:27:16 -07002862 }
2863 // Otherwise, we are not in spring loaded mode, so don't do anything.
2864 }
2865
Michael Jurkab737ee62011-11-15 15:57:22 -08002866 void hideDockDivider() {
2867 if (mQsbDivider != null && mDockDivider != null) {
2868 mQsbDivider.setVisibility(View.INVISIBLE);
2869 mDockDivider.setVisibility(View.INVISIBLE);
2870 }
2871 }
2872
2873 void showDockDivider(boolean animated) {
2874 if (mQsbDivider != null && mDockDivider != null) {
2875 mQsbDivider.setVisibility(View.VISIBLE);
2876 mDockDivider.setVisibility(View.VISIBLE);
2877 if (mDividerAnimator != null) {
2878 mDividerAnimator.cancel();
2879 mQsbDivider.setAlpha(1f);
2880 mDockDivider.setAlpha(1f);
2881 mDividerAnimator = null;
2882 }
2883 if (animated) {
Michael Jurka2ecf9952012-06-18 12:52:28 -07002884 mDividerAnimator = LauncherAnimUtils.createAnimatorSet();
2885 mDividerAnimator.playTogether(LauncherAnimUtils.ofFloat(mQsbDivider, "alpha", 1f),
2886 LauncherAnimUtils.ofFloat(mDockDivider, "alpha", 1f));
Winson Chungadf0c182012-08-23 14:59:07 -07002887 int duration = 0;
2888 if (mSearchDropTargetBar != null) {
2889 duration = mSearchDropTargetBar.getTransitionInDuration();
2890 }
2891 mDividerAnimator.setDuration(duration);
Michael Jurkab737ee62011-11-15 15:57:22 -08002892 mDividerAnimator.start();
2893 }
2894 }
2895 }
2896
Michael Jurkab3e22d92011-10-31 15:58:33 -07002897 void lockAllApps() {
2898 // TODO
2899 }
2900
2901 void unlockAllApps() {
2902 // TODO
2903 }
2904
Winson Chungf0ea4d32011-06-06 14:27:16 -07002905 /**
Winson Chung3d503fb2011-07-13 17:25:49 -07002906 * Shows the hotseat area.
Winson Chungf0ea4d32011-06-06 14:27:16 -07002907 */
Winson Chung3d503fb2011-07-13 17:25:49 -07002908 void showHotseat(boolean animated) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07002909 if (!LauncherApplication.isScreenLarge()) {
2910 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08002911 if (mHotseat.getAlpha() != 1f) {
Winson Chungadf0c182012-08-23 14:59:07 -07002912 int duration = 0;
2913 if (mSearchDropTargetBar != null) {
2914 duration = mSearchDropTargetBar.getTransitionInDuration();
2915 }
Michael Jurka7407d2a2011-12-12 21:48:38 -08002916 mHotseat.animate().alpha(1f).setDuration(duration);
2917 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002918 } else {
Winson Chung3d503fb2011-07-13 17:25:49 -07002919 mHotseat.setAlpha(1f);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002920 }
2921 }
2922 }
2923
2924 /**
Winson Chung3d503fb2011-07-13 17:25:49 -07002925 * Hides the hotseat area.
Winson Chungf0ea4d32011-06-06 14:27:16 -07002926 */
Winson Chung3d503fb2011-07-13 17:25:49 -07002927 void hideHotseat(boolean animated) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07002928 if (!LauncherApplication.isScreenLarge()) {
2929 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08002930 if (mHotseat.getAlpha() != 0f) {
Winson Chungadf0c182012-08-23 14:59:07 -07002931 int duration = 0;
2932 if (mSearchDropTargetBar != null) {
2933 duration = mSearchDropTargetBar.getTransitionOutDuration();
2934 }
Michael Jurka7407d2a2011-12-12 21:48:38 -08002935 mHotseat.animate().alpha(0f).setDuration(duration);
2936 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002937 } else {
Winson Chung3d503fb2011-07-13 17:25:49 -07002938 mHotseat.setAlpha(0f);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002939 }
Winson Chungb26f3d62011-06-02 10:49:29 -07002940 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08002941 }
2942
Patrick Dubroy5f445422011-02-18 14:35:21 -08002943 /**
2944 * Add an item from all apps or customize onto the given workspace screen.
2945 * If layout is null, add to the current screen.
2946 */
2947 void addExternalItemToScreen(ItemInfo itemInfo, final CellLayout layout) {
Michael Jurka6b4b25d2010-10-20 18:19:45 -07002948 if (!mWorkspace.addExternalItemToScreen(itemInfo, layout)) {
Winson Chung93eef082012-03-23 15:59:27 -07002949 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka213d9632010-07-28 11:29:25 -07002950 }
Michael Jurka6b4b25d2010-10-20 18:19:45 -07002951 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07002952
Winson Chungdff8ebb2011-09-08 17:25:31 -07002953 /** Maps the current orientation to an index for referencing orientation correct global icons */
2954 private int getCurrentOrientationIndexForGlobalIcons() {
2955 // default - 0, landscape - 1
2956 switch (getResources().getConfiguration().orientation) {
2957 case Configuration.ORIENTATION_LANDSCAPE:
2958 return 1;
2959 default:
2960 return 0;
2961 }
2962 }
2963
Michael Jurkaae65ee32012-04-30 11:45:54 -07002964 private Drawable getExternalPackageToolbarIcon(ComponentName activityName, String resourceName) {
Michael Jurka0423dcf2010-10-05 14:56:18 -07002965 try {
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002966 PackageManager packageManager = getPackageManager();
Michael Jurka0423dcf2010-10-05 14:56:18 -07002967 // Look for the toolbar icon specified in the activity meta-data
2968 Bundle metaData = packageManager.getActivityInfo(
2969 activityName, PackageManager.GET_META_DATA).metaData;
2970 if (metaData != null) {
Michael Jurkaae65ee32012-04-30 11:45:54 -07002971 int iconResId = metaData.getInt(resourceName);
Michael Jurka0423dcf2010-10-05 14:56:18 -07002972 if (iconResId != 0) {
2973 Resources res = packageManager.getResourcesForActivity(activityName);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002974 return res.getDrawable(iconResId);
Michael Jurka0423dcf2010-10-05 14:56:18 -07002975 }
2976 }
2977 } catch (NameNotFoundException e) {
Michael Jurkab6052a92011-07-12 17:02:45 -07002978 // This can happen if the activity defines an invalid drawable
2979 Log.w(TAG, "Failed to load toolbar icon; " + activityName.flattenToShortString() +
2980 " not found", e);
Mathew Inwood70d51022011-07-12 13:41:41 +01002981 } catch (Resources.NotFoundException nfe) {
2982 // This can happen if the activity defines an invalid drawable
2983 Log.w(TAG, "Failed to load toolbar icon from " + activityName.flattenToShortString(),
2984 nfe);
Michael Jurka0423dcf2010-10-05 14:56:18 -07002985 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002986 return null;
2987 }
2988
2989 // if successful in getting icon, return it; otherwise, set button to use default drawable
2990 private Drawable.ConstantState updateTextButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07002991 int buttonId, ComponentName activityName, int fallbackDrawableId,
2992 String toolbarResourceName) {
2993 Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName, toolbarResourceName);
Winson Chung128bbcd2011-08-31 16:58:52 -07002994 Resources r = getResources();
2995 int w = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_width);
2996 int h = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_height);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002997
Michael Jurka4da7a3e2011-10-28 15:04:35 -07002998 TextView button = (TextView) findViewById(buttonId);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002999 // If we were unable to find the icon via the meta-data, use a generic one
3000 if (toolbarIcon == null) {
Winson Chung128bbcd2011-08-31 16:58:52 -07003001 toolbarIcon = r.getDrawable(fallbackDrawableId);
3002 toolbarIcon.setBounds(0, 0, w, h);
Michael Jurka4da7a3e2011-10-28 15:04:35 -07003003 if (button != null) {
3004 button.setCompoundDrawables(toolbarIcon, null, null, null);
3005 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003006 return null;
3007 } else {
Winson Chung128bbcd2011-08-31 16:58:52 -07003008 toolbarIcon.setBounds(0, 0, w, h);
Michael Jurka4da7a3e2011-10-28 15:04:35 -07003009 if (button != null) {
3010 button.setCompoundDrawables(toolbarIcon, null, null, null);
3011 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003012 return toolbarIcon.getConstantState();
3013 }
3014 }
3015
3016 // if successful in getting icon, return it; otherwise, set button to use default drawable
3017 private Drawable.ConstantState updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003018 int buttonId, ComponentName activityName, int fallbackDrawableId,
3019 String toolbarResourceName) {
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003020 ImageView button = (ImageView) findViewById(buttonId);
Michael Jurkaae65ee32012-04-30 11:45:54 -07003021 Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName, toolbarResourceName);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003022
Michael Jurka19e0fc52011-07-22 18:00:21 -07003023 if (button != null) {
3024 // If we were unable to find the icon via the meta-data, use a
3025 // generic one
3026 if (toolbarIcon == null) {
3027 button.setImageResource(fallbackDrawableId);
3028 } else {
3029 button.setImageDrawable(toolbarIcon);
3030 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07003031 }
Michael Jurka19e0fc52011-07-22 18:00:21 -07003032
3033 return toolbarIcon != null ? toolbarIcon.getConstantState() : null;
3034
Michael Jurka0423dcf2010-10-05 14:56:18 -07003035 }
3036
Winson Chung1b884092012-06-08 17:13:02 -07003037 private void updateTextButtonWithDrawable(int buttonId, Drawable d) {
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003038 TextView button = (TextView) findViewById(buttonId);
Winson Chung1b884092012-06-08 17:13:02 -07003039 button.setCompoundDrawables(d, null, null, null);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003040 }
3041
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003042 private void updateButtonWithDrawable(int buttonId, Drawable.ConstantState d) {
Michael Jurka4ef207b2010-11-29 17:05:45 -08003043 ImageView button = (ImageView) findViewById(buttonId);
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003044 button.setImageDrawable(d.newDrawable(getResources()));
Michael Jurka4ef207b2010-11-29 17:05:45 -08003045 }
3046
Winson Chungbb185bd2011-11-21 12:31:42 -08003047 private void invalidatePressedFocusedStates(View container, View button) {
3048 if (container instanceof HolographicLinearLayout) {
3049 HolographicLinearLayout layout = (HolographicLinearLayout) container;
3050 layout.invalidatePressedFocusedStates();
3051 } else if (button instanceof HolographicImageView) {
3052 HolographicImageView view = (HolographicImageView) button;
3053 view.invalidatePressedFocusedStates();
3054 }
3055 }
3056
Winson Chungc51db6a2011-10-05 11:44:49 -07003057 private boolean updateGlobalSearchIcon() {
3058 final View searchButtonContainer = findViewById(R.id.search_button_container);
Winson Chung1cad91e2011-05-25 17:41:01 -07003059 final ImageView searchButton = (ImageView) findViewById(R.id.search_button);
Winson Chungc51db6a2011-10-05 11:44:49 -07003060 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
Winson Chungcbf7c4d2011-08-23 11:58:54 -07003061 final View voiceButton = findViewById(R.id.voice_button);
Winson Chunge3fbfa92012-04-24 14:34:28 -07003062 final View voiceButtonProxy = findViewById(R.id.voice_button_proxy);
Winson Chung97d85d22011-04-13 11:27:36 -07003063
Winson Chung1cad91e2011-05-25 17:41:01 -07003064 final SearchManager searchManager =
3065 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
3066 ComponentName activityName = searchManager.getGlobalSearchActivity();
3067 if (activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07003068 int coi = getCurrentOrientationIndexForGlobalIcons();
3069 sGlobalSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003070 R.id.search_button, activityName, R.drawable.ic_home_search_normal_holo,
3071 TOOLBAR_SEARCH_ICON_METADATA_NAME);
3072 if (sGlobalSearchIcon[coi] == null) {
3073 sGlobalSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
3074 R.id.search_button, activityName, R.drawable.ic_home_search_normal_holo,
3075 TOOLBAR_ICON_METADATA_NAME);
3076 }
3077
Winson Chungc51db6a2011-10-05 11:44:49 -07003078 if (searchButtonContainer != null) searchButtonContainer.setVisibility(View.VISIBLE);
3079 searchButton.setVisibility(View.VISIBLE);
Winson Chungbb185bd2011-11-21 12:31:42 -08003080 invalidatePressedFocusedStates(searchButtonContainer, searchButton);
Winson Chungc51db6a2011-10-05 11:44:49 -07003081 return true;
Winson Chung1cad91e2011-05-25 17:41:01 -07003082 } else {
Winson Chungcbf7c4d2011-08-23 11:58:54 -07003083 // We disable both search and voice search when there is no global search provider
Winson Chungc51db6a2011-10-05 11:44:49 -07003084 if (searchButtonContainer != null) searchButtonContainer.setVisibility(View.GONE);
3085 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.GONE);
3086 searchButton.setVisibility(View.GONE);
Winson Chungcbf7c4d2011-08-23 11:58:54 -07003087 voiceButton.setVisibility(View.GONE);
Michael Jurkac60498a2012-05-07 15:29:42 -07003088 if (voiceButtonProxy != null) {
3089 voiceButtonProxy.setVisibility(View.GONE);
3090 }
Winson Chungc51db6a2011-10-05 11:44:49 -07003091 return false;
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003092 }
3093 }
3094
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003095 private void updateGlobalSearchIcon(Drawable.ConstantState d) {
Winson Chungbb185bd2011-11-21 12:31:42 -08003096 final View searchButtonContainer = findViewById(R.id.search_button_container);
3097 final View searchButton = (ImageView) findViewById(R.id.search_button);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003098 updateButtonWithDrawable(R.id.search_button, d);
Winson Chungbb185bd2011-11-21 12:31:42 -08003099 invalidatePressedFocusedStates(searchButtonContainer, searchButton);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003100 }
3101
Winson Chungc51db6a2011-10-05 11:44:49 -07003102 private boolean updateVoiceSearchIcon(boolean searchVisible) {
Winson Chungc51db6a2011-10-05 11:44:49 -07003103 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
Winson Chung1cad91e2011-05-25 17:41:01 -07003104 final View voiceButton = findViewById(R.id.voice_button);
Winson Chunge3fbfa92012-04-24 14:34:28 -07003105 final View voiceButtonProxy = findViewById(R.id.voice_button_proxy);
Winson Chung97d85d22011-04-13 11:27:36 -07003106
Winson Chungc51db6a2011-10-05 11:44:49 -07003107 // We only show/update the voice search icon if the search icon is enabled as well
Michael Jurkaae65ee32012-04-30 11:45:54 -07003108 final SearchManager searchManager =
3109 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
3110 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
3111
3112 ComponentName activityName = null;
3113 if (globalSearchActivity != null) {
3114 // Check if the global search activity handles voice search
3115 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
3116 intent.setPackage(globalSearchActivity.getPackageName());
3117 activityName = intent.resolveActivity(getPackageManager());
3118 }
3119
3120 if (activityName == null) {
3121 // Fallback: check if an activity other than the global search activity
3122 // resolves this
3123 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
3124 activityName = intent.resolveActivity(getPackageManager());
3125 }
Winson Chungc51db6a2011-10-05 11:44:49 -07003126 if (searchVisible && activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07003127 int coi = getCurrentOrientationIndexForGlobalIcons();
3128 sVoiceSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003129 R.id.voice_button, activityName, R.drawable.ic_home_voice_search_holo,
3130 TOOLBAR_VOICE_SEARCH_ICON_METADATA_NAME);
3131 if (sVoiceSearchIcon[coi] == null) {
3132 sVoiceSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
3133 R.id.voice_button, activityName, R.drawable.ic_home_voice_search_holo,
3134 TOOLBAR_ICON_METADATA_NAME);
3135 }
Winson Chungc51db6a2011-10-05 11:44:49 -07003136 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.VISIBLE);
Winson Chung1cad91e2011-05-25 17:41:01 -07003137 voiceButton.setVisibility(View.VISIBLE);
Jim Miller14091b12012-04-24 19:27:54 -07003138 if (voiceButtonProxy != null) {
3139 voiceButtonProxy.setVisibility(View.VISIBLE);
3140 }
Winson Chungbb185bd2011-11-21 12:31:42 -08003141 invalidatePressedFocusedStates(voiceButtonContainer, voiceButton);
Winson Chungc51db6a2011-10-05 11:44:49 -07003142 return true;
Winson Chung1cad91e2011-05-25 17:41:01 -07003143 } else {
Winson Chungc51db6a2011-10-05 11:44:49 -07003144 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.GONE);
Winson Chung1cad91e2011-05-25 17:41:01 -07003145 voiceButton.setVisibility(View.GONE);
Jim Miller14091b12012-04-24 19:27:54 -07003146 if (voiceButtonProxy != null) {
3147 voiceButtonProxy.setVisibility(View.GONE);
3148 }
Winson Chungc51db6a2011-10-05 11:44:49 -07003149 return false;
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003150 }
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003151 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07003152
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003153 private void updateVoiceSearchIcon(Drawable.ConstantState d) {
Winson Chungbb185bd2011-11-21 12:31:42 -08003154 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
3155 final View voiceButton = findViewById(R.id.voice_button);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003156 updateButtonWithDrawable(R.id.voice_button, d);
Winson Chungbb185bd2011-11-21 12:31:42 -08003157 invalidatePressedFocusedStates(voiceButtonContainer, voiceButton);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003158 }
3159
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003160 /**
Winson Chungeb66b142011-06-16 13:14:22 -07003161 * Sets the app market icon
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003162 */
3163 private void updateAppMarketIcon() {
Winson Chung785d2eb2011-04-14 16:08:02 -07003164 final View marketButton = findViewById(R.id.market_button);
3165 Intent intent = new Intent(Intent.ACTION_MAIN).addCategory(Intent.CATEGORY_APP_MARKET);
3166 // Find the app market activity by resolving an intent.
3167 // (If multiple app markets are installed, it will return the ResolverActivity.)
3168 ComponentName activityName = intent.resolveActivity(getPackageManager());
Winson Chung6a26e5b2011-05-26 14:36:06 -07003169 if (activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07003170 int coi = getCurrentOrientationIndexForGlobalIcons();
Winson Chung785d2eb2011-04-14 16:08:02 -07003171 mAppMarketIntent = intent;
Winson Chungdff8ebb2011-09-08 17:25:31 -07003172 sAppMarketIcon[coi] = updateTextButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003173 R.id.market_button, activityName, R.drawable.ic_launcher_market_holo,
3174 TOOLBAR_ICON_METADATA_NAME);
Winson Chung785d2eb2011-04-14 16:08:02 -07003175 marketButton.setVisibility(View.VISIBLE);
3176 } else {
3177 // We should hide and disable the view so that we don't try and restore the visibility
3178 // of it when we swap between drag & normal states from IconDropTarget subclasses.
3179 marketButton.setVisibility(View.GONE);
3180 marketButton.setEnabled(false);
Michael Jurka0423dcf2010-10-05 14:56:18 -07003181 }
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003182 }
3183
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003184 private void updateAppMarketIcon(Drawable.ConstantState d) {
Winson Chung1b884092012-06-08 17:13:02 -07003185 // Ensure that the new drawable we are creating has the approprate toolbar icon bounds
3186 Resources r = getResources();
3187 Drawable marketIconDrawable = d.newDrawable(r);
3188 int w = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_width);
3189 int h = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_height);
3190 marketIconDrawable.setBounds(0, 0, w, h);
3191
3192 updateTextButtonWithDrawable(R.id.market_button, marketIconDrawable);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003193 }
3194
Michael Jurkad7c28052012-04-27 15:43:36 -07003195 @Override
3196 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07003197 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07003198 final List<CharSequence> text = event.getText();
3199 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07003200 // Populate event with a fake title based on the current state.
3201 if (mState == State.APPS_CUSTOMIZE) {
3202 text.add(getString(R.string.all_apps_button_label));
3203 } else {
3204 text.add(getString(R.string.all_apps_home_button_label));
3205 }
Michael Jurkad7c28052012-04-27 15:43:36 -07003206 return result;
3207 }
3208
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003209 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003210 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003211 */
3212 private class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
3213 @Override
3214 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003215 closeSystemDialogs();
3216 }
3217 }
3218
3219 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08003220 * Receives notifications whenever the appwidgets are reset.
3221 */
3222 private class AppWidgetResetObserver extends ContentObserver {
3223 public AppWidgetResetObserver() {
3224 super(new Handler());
3225 }
3226
3227 @Override
3228 public void onChange(boolean selfChange) {
3229 onAppWidgetReset();
3230 }
3231 }
3232
3233 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003234 * If the activity is currently paused, signal that we need to re-run the loader
3235 * in onResume.
3236 *
3237 * This needs to be called from incoming places where resources might have been loaded
3238 * while we are paused. That is becaues the Configuration might be wrong
3239 * when we're not running, and if it comes back to what it was when we
3240 * were paused, we are not restarted.
3241 *
3242 * Implementation of the method from LauncherModel.Callbacks.
3243 *
3244 * @return true if we are currently paused. The caller might be able to
3245 * skip some work in that case since we will come back again.
3246 */
3247 public boolean setLoadOnResume() {
3248 if (mPaused) {
3249 Log.i(TAG, "setLoadOnResume");
3250 mOnResumeNeedsLoad = true;
3251 return true;
3252 } else {
3253 return false;
3254 }
3255 }
3256
3257 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003258 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003259 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003260 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003261 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003262 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003263 } else {
3264 return SCREEN_COUNT / 2;
3265 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003266 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003267
Joe Onorato9c1289c2009-08-17 11:03:03 -04003268 /**
3269 * Refreshes the shortcuts shown on the workspace.
3270 *
3271 * Implementation of the method from LauncherModel.Callbacks.
3272 */
3273 public void startBinding() {
3274 final Workspace workspace = mWorkspace;
Adam Cohendf035382011-04-11 17:22:04 -07003275
Winson Chungf0c6ae02012-03-21 16:10:31 -07003276 mNewShortcutAnimatePage = -1;
3277 mNewShortcutAnimateViews.clear();
Adam Cohendf035382011-04-11 17:22:04 -07003278 mWorkspace.clearDropTargets();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003279 int count = workspace.getChildCount();
3280 for (int i = 0; i < count; i++) {
Joe Onorato3c2f7e12009-10-31 19:17:31 -04003281 // Use removeAllViewsInLayout() to avoid an extra requestLayout() and invalidate().
Winson Chung7a25a9e2011-01-30 13:33:56 -08003282 final CellLayout layoutParent = (CellLayout) workspace.getChildAt(i);
3283 layoutParent.removeAllViewsInLayout();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003284 }
Michael Jurka05bf644e2011-11-30 20:28:53 -08003285 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003286 if (mHotseat != null) {
3287 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003288 }
3289 }
3290
3291 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003292 * Bind the items start-end from the list.
3293 *
3294 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003295 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003296 public void bindItems(ArrayList<ItemInfo> shortcuts, int start, int end) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003297 setLoadOnResume();
3298
Winson Chungf0c6ae02012-03-21 16:10:31 -07003299 // Get the list of added shortcuts and intersect them with the set of shortcuts here
3300 Set<String> newApps = new HashSet<String>();
3301 newApps = mSharedPrefs.getStringSet(InstallShortcutReceiver.NEW_APPS_LIST_KEY, newApps);
3302
3303 Workspace workspace = mWorkspace;
3304 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003305 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003306
3307 // Short circuit if we are loading dock items for a configuration which has no dock
3308 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3309 mHotseat == null) {
3310 continue;
3311 }
3312
Joe Onorato9c1289c2009-08-17 11:03:03 -04003313 switch (item.itemType) {
3314 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3315 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07003316 ShortcutInfo info = (ShortcutInfo) item;
3317 String uri = info.intent.toUri(0).toString();
3318 View shortcut = createShortcut(info);
Winson Chung3d503fb2011-07-13 17:25:49 -07003319 workspace.addInScreen(shortcut, item.container, item.screen, item.cellX,
3320 item.cellY, 1, 1, false);
Winson Chungbfeac062012-06-06 15:56:08 -07003321 boolean animateIconUp = false;
3322 synchronized (newApps) {
3323 if (newApps.contains(uri)) {
3324 animateIconUp = newApps.remove(uri);
3325 }
3326 }
3327 if (animateIconUp) {
Winson Chungf0c6ae02012-03-21 16:10:31 -07003328 // Prepare the view to be animated up
3329 shortcut.setAlpha(0f);
3330 shortcut.setScaleX(0f);
3331 shortcut.setScaleY(0f);
3332 mNewShortcutAnimatePage = item.screen;
3333 if (!mNewShortcutAnimateViews.contains(shortcut)) {
3334 mNewShortcutAnimateViews.add(shortcut);
3335 }
3336 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003337 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003338 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Winson Chung3d503fb2011-07-13 17:25:49 -07003339 FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003340 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003341 (FolderInfo) item, mIconCache);
Winson Chung3d503fb2011-07-13 17:25:49 -07003342 workspace.addInScreen(newFolder, item.container, item.screen, item.cellX,
3343 item.cellY, 1, 1, false);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003344 break;
Joe Onorato9c1289c2009-08-17 11:03:03 -04003345 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003346 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003347
Joe Onorato9c1289c2009-08-17 11:03:03 -04003348 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003349 }
3350
Joe Onorato9c1289c2009-08-17 11:03:03 -04003351 /**
3352 * Implementation of the method from LauncherModel.Callbacks.
3353 */
Joe Onoratoad72e172009-11-06 16:25:04 -05003354 public void bindFolders(HashMap<Long, FolderInfo> folders) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003355 setLoadOnResume();
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07003356 sFolders.clear();
3357 sFolders.putAll(folders);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003358 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003359
3360 /**
3361 * Add the views for a widget to the workspace.
3362 *
3363 * Implementation of the method from LauncherModel.Callbacks.
3364 */
3365 public void bindAppWidget(LauncherAppWidgetInfo item) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003366 setLoadOnResume();
3367
Daniel Sandler843e8602010-06-07 14:59:01 -04003368 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
3369 if (DEBUG_WIDGETS) {
3370 Log.d(TAG, "bindAppWidget: " + item);
3371 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003372 final Workspace workspace = mWorkspace;
3373
3374 final int appWidgetId = item.appWidgetId;
3375 final AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
Daniel Sandler843e8602010-06-07 14:59:01 -04003376 if (DEBUG_WIDGETS) {
3377 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component " + appWidgetInfo.provider);
3378 }
3379
Joe Onorato9c1289c2009-08-17 11:03:03 -04003380 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
3381
Joe Onorato9c1289c2009-08-17 11:03:03 -04003382 item.hostView.setTag(item);
Winson Chung211bac32012-05-15 13:43:57 -07003383 item.onBindAppWidget(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003384
Winson Chung3d503fb2011-07-13 17:25:49 -07003385 workspace.addInScreen(item.hostView, item.container, item.screen, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04003386 item.cellY, item.spanX, item.spanY, false);
Adam Cohended9f8d2010-11-03 13:25:16 -07003387 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
3388
Joe Onorato9c1289c2009-08-17 11:03:03 -04003389 workspace.requestLayout();
3390
Daniel Sandler843e8602010-06-07 14:59:01 -04003391 if (DEBUG_WIDGETS) {
3392 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
3393 + (SystemClock.uptimeMillis()-start) + "ms");
3394 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003395 }
3396
Adam Cohen1462de32012-07-24 22:34:36 -07003397 public void onPageBoundSynchronously(int page) {
3398 mSynchronouslyBoundPages.add(page);
3399 }
3400
Joe Onorato9c1289c2009-08-17 11:03:03 -04003401 /**
3402 * Callback saying that there aren't any more items to bind.
3403 *
3404 * Implementation of the method from LauncherModel.Callbacks.
3405 */
3406 public void finishBindingItems() {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003407 setLoadOnResume();
3408
Joe Onorato9c1289c2009-08-17 11:03:03 -04003409 if (mSavedState != null) {
3410 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07003411 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003412 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003413 mSavedState = null;
3414 }
3415
Adam Cohen1462de32012-07-24 22:34:36 -07003416 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003417
Patrick Dubroy002cbf42011-03-03 16:36:21 -08003418 // If we received the result of any pending adds while the loader was running (e.g. the
3419 // widget configuration forced an orientation change), process them now.
3420 for (int i = 0; i < sPendingAddList.size(); i++) {
3421 completeAdd(sPendingAddList.get(i));
3422 }
3423 sPendingAddList.clear();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003424
Winson Chungc51db6a2011-10-05 11:44:49 -07003425 // Update the market app icon as necessary (the other icons will be managed in response to
3426 // package changes in bindSearchablesChanged()
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003427 updateAppMarketIcon();
Michael Jurkac1f5d262011-09-30 19:32:27 -07003428
Winson Chungf0c6ae02012-03-21 16:10:31 -07003429 // Animate up any icons as necessary
3430 if (mVisible || mWorkspaceLoading) {
3431 Runnable newAppsRunnable = new Runnable() {
3432 @Override
3433 public void run() {
Winson Chunga2413752012-04-03 14:22:34 -07003434 runNewAppsAnimation(false);
Winson Chungf0c6ae02012-03-21 16:10:31 -07003435 }
3436 };
Winson Chunga2413752012-04-03 14:22:34 -07003437
3438 boolean willSnapPage = mNewShortcutAnimatePage > -1 &&
3439 mNewShortcutAnimatePage != mWorkspace.getCurrentPage();
3440 if (canRunNewAppsAnimation()) {
3441 // If the user has not interacted recently, then either snap to the new page to show
3442 // the new-apps animation or just run them if they are to appear on the current page
3443 if (willSnapPage) {
3444 mWorkspace.snapToPage(mNewShortcutAnimatePage, newAppsRunnable);
3445 } else {
3446 runNewAppsAnimation(false);
3447 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003448 } else {
Winson Chung318eee02012-04-12 10:59:27 -07003449 // If the user has interacted recently, then just add the items in place if they
Winson Chunga2413752012-04-03 14:22:34 -07003450 // are on another page (or just normally if they are added to the current page)
3451 runNewAppsAnimation(willSnapPage);
Winson Chungf0c6ae02012-03-21 16:10:31 -07003452 }
3453 }
3454
3455 mWorkspaceLoading = false;
3456 }
3457
Winson Chunga2413752012-04-03 14:22:34 -07003458 private boolean canRunNewAppsAnimation() {
3459 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
3460 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000);
3461 }
3462
Winson Chungf0c6ae02012-03-21 16:10:31 -07003463 /**
3464 * Runs a new animation that scales up icons that were added while Launcher was in the
3465 * background.
Winson Chunga2413752012-04-03 14:22:34 -07003466 *
3467 * @param immediate whether to run the animation or show the results immediately
Winson Chungf0c6ae02012-03-21 16:10:31 -07003468 */
Winson Chunga2413752012-04-03 14:22:34 -07003469 private void runNewAppsAnimation(boolean immediate) {
Michael Jurka2ecf9952012-06-18 12:52:28 -07003470 AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
Winson Chungf0c6ae02012-03-21 16:10:31 -07003471 Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chunga2413752012-04-03 14:22:34 -07003472
3473 // Order these new views spatially so that they animate in order
Winson Chungf0c6ae02012-03-21 16:10:31 -07003474 Collections.sort(mNewShortcutAnimateViews, new Comparator<View>() {
3475 @Override
3476 public int compare(View a, View b) {
3477 CellLayout.LayoutParams alp = (CellLayout.LayoutParams) a.getLayoutParams();
3478 CellLayout.LayoutParams blp = (CellLayout.LayoutParams) b.getLayoutParams();
3479 int cellCountX = LauncherModel.getCellCountX();
3480 return (alp.cellY * cellCountX + alp.cellX) - (blp.cellY * cellCountX + blp.cellX);
3481 }
3482 });
Winson Chunga2413752012-04-03 14:22:34 -07003483
3484 // Animate each of the views in place (or show them immediately if requested)
3485 if (immediate) {
3486 for (View v : mNewShortcutAnimateViews) {
3487 v.setAlpha(1f);
3488 v.setScaleX(1f);
3489 v.setScaleY(1f);
Winson Chungf0c6ae02012-03-21 16:10:31 -07003490 }
Winson Chunga2413752012-04-03 14:22:34 -07003491 } else {
3492 for (int i = 0; i < mNewShortcutAnimateViews.size(); ++i) {
3493 View v = mNewShortcutAnimateViews.get(i);
Michael Jurka2ecf9952012-06-18 12:52:28 -07003494 ValueAnimator bounceAnim = LauncherAnimUtils.ofPropertyValuesHolder(v,
Winson Chunga2413752012-04-03 14:22:34 -07003495 PropertyValuesHolder.ofFloat("alpha", 1f),
3496 PropertyValuesHolder.ofFloat("scaleX", 1f),
3497 PropertyValuesHolder.ofFloat("scaleY", 1f));
3498 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
3499 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
3500 bounceAnim.setInterpolator(new SmoothPagedView.OvershootInterpolator());
3501 bounceAnims.add(bounceAnim);
3502 }
3503 anim.playTogether(bounceAnims);
3504 anim.addListener(new AnimatorListenerAdapter() {
3505 @Override
3506 public void onAnimationEnd(Animator animation) {
Michael Jurkad6dd7c82012-10-19 17:15:16 +02003507 if (mWorkspace != null) {
3508 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
3509 }
Winson Chunga2413752012-04-03 14:22:34 -07003510 }
3511 });
3512 anim.start();
3513 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003514
3515 // Clean up
3516 mNewShortcutAnimatePage = -1;
3517 mNewShortcutAnimateViews.clear();
3518 new Thread("clearNewAppsThread") {
3519 public void run() {
3520 mSharedPrefs.edit()
3521 .putInt(InstallShortcutReceiver.NEW_APPS_PAGE_KEY, -1)
3522 .putStringSet(InstallShortcutReceiver.NEW_APPS_LIST_KEY, null)
3523 .commit();
3524 }
3525 }.start();
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003526 }
3527
Narayan Kamathcb1a4772011-06-28 13:46:59 +01003528 @Override
3529 public void bindSearchablesChanged() {
Winson Chungc51db6a2011-10-05 11:44:49 -07003530 boolean searchVisible = updateGlobalSearchIcon();
3531 boolean voiceVisible = updateVoiceSearchIcon(searchVisible);
Winson Chungadf0c182012-08-23 14:59:07 -07003532 if (mSearchDropTargetBar != null) {
3533 mSearchDropTargetBar.onSearchPackagesChanged(searchVisible, voiceVisible);
3534 }
Narayan Kamathcb1a4772011-06-28 13:46:59 +01003535 }
3536
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003537 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003538 * Add the icons for all apps.
3539 *
3540 * Implementation of the method from LauncherModel.Callbacks.
3541 */
Michael Jurkac57b7a82011-08-09 22:02:20 -07003542 public void bindAllApplications(final ArrayList<ApplicationInfo> apps) {
Winson Chungc93e5ae2012-07-23 20:48:26 -07003543 Runnable setAllAppsRunnable = new Runnable() {
3544 public void run() {
3545 if (mAppsCustomizeContent != null) {
3546 mAppsCustomizeContent.setApps(apps);
3547 }
3548 }
3549 };
3550
Michael Jurkac57b7a82011-08-09 22:02:20 -07003551 // Remove the progress bar entirely; we could also make it GONE
3552 // but better to remove it since we know it's not going to be used
3553 View progressBar = mAppsCustomizeTabHost.
3554 findViewById(R.id.apps_customize_progress_bar);
3555 if (progressBar != null) {
3556 ((ViewGroup)progressBar.getParent()).removeView(progressBar);
Winson Chungc93e5ae2012-07-23 20:48:26 -07003557
3558 // We just post the call to setApps so the user sees the progress bar
3559 // disappear-- otherwise, it just looks like the progress bar froze
3560 // which doesn't look great
3561 mAppsCustomizeTabHost.post(setAllAppsRunnable);
3562 } else {
3563 // If we did not initialize the spinner in onCreate, then we can directly set the
3564 // list of applications without waiting for any progress bars views to be hidden.
3565 setAllAppsRunnable.run();
Winson Chung785d2eb2011-04-14 16:08:02 -07003566 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003567 }
3568
3569 /**
3570 * A package was installed.
3571 *
3572 * Implementation of the method from LauncherModel.Callbacks.
3573 */
Joe Onorato64e6be72010-03-05 15:05:52 -05003574 public void bindAppsAdded(ArrayList<ApplicationInfo> apps) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003575 setLoadOnResume();
Winson Chungf0ea4d32011-06-06 14:27:16 -07003576
Winson Chung785d2eb2011-04-14 16:08:02 -07003577 if (mAppsCustomizeContent != null) {
3578 mAppsCustomizeContent.addApps(apps);
3579 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003580 }
3581
3582 /**
3583 * A package was updated.
3584 *
3585 * Implementation of the method from LauncherModel.Callbacks.
3586 */
Joe Onorato64e6be72010-03-05 15:05:52 -05003587 public void bindAppsUpdated(ArrayList<ApplicationInfo> apps) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003588 setLoadOnResume();
Patrick Dubroyf5afda72011-02-28 12:04:18 -08003589 if (mWorkspace != null) {
3590 mWorkspace.updateShortcuts(apps);
3591 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003592
Winson Chung785d2eb2011-04-14 16:08:02 -07003593 if (mAppsCustomizeContent != null) {
3594 mAppsCustomizeContent.updateApps(apps);
3595 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003596 }
3597
3598 /**
3599 * A package was uninstalled.
3600 *
3601 * Implementation of the method from LauncherModel.Callbacks.
3602 */
Winson Chungcd810732012-06-18 16:45:43 -07003603 public void bindAppsRemoved(ArrayList<String> packageNames, boolean permanent) {
Joe Onorato36115782010-06-17 13:28:48 -04003604 if (permanent) {
Winson Chungcd810732012-06-18 16:45:43 -07003605 mWorkspace.removeItems(packageNames);
Joe Onorato36115782010-06-17 13:28:48 -04003606 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003607
Winson Chung785d2eb2011-04-14 16:08:02 -07003608 if (mAppsCustomizeContent != null) {
Winson Chungcd810732012-06-18 16:45:43 -07003609 mAppsCustomizeContent.removeApps(packageNames);
Winson Chung785d2eb2011-04-14 16:08:02 -07003610 }
Winson Chunga1820962011-10-03 16:31:06 -07003611
3612 // Notify the drag controller
Winson Chungcd810732012-06-18 16:45:43 -07003613 mDragController.onAppsRemoved(packageNames, this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003614 }
Joe Onoratobe386092009-11-17 17:32:16 -08003615
3616 /**
Winson Chung80baf5a2010-08-09 16:03:15 -07003617 * A number of packages were updated.
3618 */
3619 public void bindPackagesUpdated() {
Winson Chung785d2eb2011-04-14 16:08:02 -07003620 if (mAppsCustomizeContent != null) {
3621 mAppsCustomizeContent.onPackagesUpdated();
3622 }
Winson Chung80baf5a2010-08-09 16:03:15 -07003623 }
3624
Winson Chung400438b2011-01-16 17:53:48 -08003625 private int mapConfigurationOriActivityInfoOri(int configOri) {
3626 final Display d = getWindowManager().getDefaultDisplay();
3627 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
3628 switch (d.getRotation()) {
3629 case Surface.ROTATION_0:
3630 case Surface.ROTATION_180:
3631 // We are currently in the same basic orientation as the natural orientation
3632 naturalOri = configOri;
3633 break;
3634 case Surface.ROTATION_90:
3635 case Surface.ROTATION_270:
3636 // We are currently in the other basic orientation to the natural orientation
3637 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
3638 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
3639 break;
3640 }
3641
3642 int[] oriMap = {
3643 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
3644 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
3645 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
3646 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
3647 };
3648 // Since the map starts at portrait, we need to offset if this device's natural orientation
3649 // is landscape.
3650 int indexOffset = 0;
3651 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
3652 indexOffset = 1;
3653 }
3654 return oriMap[(d.getRotation() + indexOffset) % 4];
3655 }
Adam Cohen446e9402011-09-15 18:21:21 -07003656
Winson Chung4b919f82012-05-01 10:44:08 -07003657 public boolean isRotationEnabled() {
Michael Jurka9bc8eba2012-05-21 20:36:44 -07003658 boolean forceEnableRotation = doesFileExist(FORCE_ENABLE_ROTATION_PROPERTY);
Winson Chung4b919f82012-05-01 10:44:08 -07003659 boolean enableRotation = forceEnableRotation ||
3660 getResources().getBoolean(R.bool.allow_rotation);
3661 return enableRotation;
Winson Chung400438b2011-01-16 17:53:48 -08003662 }
Winson Chung4b919f82012-05-01 10:44:08 -07003663 public void lockScreenOrientation() {
3664 if (isRotationEnabled()) {
3665 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
3666 .getConfiguration().orientation));
3667 }
3668 }
3669 public void unlockScreenOrientation(boolean immediate) {
3670 if (isRotationEnabled()) {
3671 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07003672 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07003673 } else {
3674 mHandler.postDelayed(new Runnable() {
3675 public void run() {
3676 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
3677 }
3678 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07003679 }
Winson Chung4b919f82012-05-01 10:44:08 -07003680 }
Winson Chung400438b2011-01-16 17:53:48 -08003681 }
3682
Winson Chung82f55532011-08-09 14:14:23 -07003683 /* Cling related */
Winson Chung7d7541e2011-09-16 20:14:36 -07003684 private boolean isClingsEnabled() {
Brett Chabot2a9e2282011-08-23 15:03:13 -07003685 // disable clings when running in a test harness
Winson Chung7d7541e2011-09-16 20:14:36 -07003686 if(ActivityManager.isRunningInTestHarness()) return false;
Brett Chabot2a9e2282011-08-23 15:03:13 -07003687
Winson Chung7d7541e2011-09-16 20:14:36 -07003688 return true;
Winson Chung82f55532011-08-09 14:14:23 -07003689 }
Michael Jurka22143132012-10-04 17:42:38 +02003690
Winson Chung7d7541e2011-09-16 20:14:36 -07003691 private Cling initCling(int clingId, int[] positionData, boolean animate, int delay) {
Michael Jurka22143132012-10-04 17:42:38 +02003692 final Cling cling = (Cling) findViewById(clingId);
Winson Chung7d7541e2011-09-16 20:14:36 -07003693 if (cling != null) {
3694 cling.init(this, positionData);
3695 cling.setVisibility(View.VISIBLE);
3696 cling.setLayerType(View.LAYER_TYPE_HARDWARE, null);
3697 if (animate) {
3698 cling.buildLayer();
3699 cling.setAlpha(0f);
3700 cling.animate()
3701 .alpha(1f)
Winson Chung7a74ac92011-09-20 17:43:51 -07003702 .setInterpolator(new AccelerateInterpolator())
Winson Chung7d7541e2011-09-16 20:14:36 -07003703 .setDuration(SHOW_CLING_DURATION)
3704 .setStartDelay(delay)
3705 .start();
3706 } else {
3707 cling.setAlpha(1f);
3708 }
Michael Jurka22143132012-10-04 17:42:38 +02003709 cling.setFocusableInTouchMode(true);
3710 cling.post(new Runnable() {
3711 public void run() {
3712 cling.setFocusable(true);
3713 cling.requestFocus();
3714 }
3715 });
3716 mHideFromAccessibilityHelper.setImportantForAccessibilityToNo(
3717 mDragLayer, clingId == R.id.all_apps_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003718 }
3719 return cling;
3720 }
Michael Jurka22143132012-10-04 17:42:38 +02003721
Winson Chung7d7541e2011-09-16 20:14:36 -07003722 private void dismissCling(final Cling cling, final String flag, int duration) {
Michael Jurka22143132012-10-04 17:42:38 +02003723 if (cling != null && cling.getVisibility() == View.VISIBLE) {
Michael Jurka2ecf9952012-06-18 12:52:28 -07003724 ObjectAnimator anim = LauncherAnimUtils.ofFloat(cling, "alpha", 0f);
Winson Chung7d7541e2011-09-16 20:14:36 -07003725 anim.setDuration(duration);
Winson Chung82f55532011-08-09 14:14:23 -07003726 anim.addListener(new AnimatorListenerAdapter() {
3727 public void onAnimationEnd(Animator animation) {
3728 cling.setVisibility(View.GONE);
3729 cling.cleanup();
Winson Chung46353de2012-02-16 14:05:10 -08003730 // We should update the shared preferences on a background thread
3731 new Thread("dismissClingThread") {
3732 public void run() {
3733 SharedPreferences.Editor editor = mSharedPrefs.edit();
3734 editor.putBoolean(flag, true);
3735 editor.commit();
3736 }
3737 }.start();
Winson Chung82f55532011-08-09 14:14:23 -07003738 };
3739 });
3740 anim.start();
Michael Jurka22143132012-10-04 17:42:38 +02003741 mHideFromAccessibilityHelper.restoreImportantForAccessibility(mDragLayer);
Winson Chung82f55532011-08-09 14:14:23 -07003742 }
3743 }
Michael Jurka22143132012-10-04 17:42:38 +02003744
Winson Chung9d9d74f2011-09-19 11:49:12 -07003745 private void removeCling(int id) {
3746 final View cling = findViewById(id);
3747 if (cling != null) {
3748 final ViewGroup parent = (ViewGroup) cling.getParent();
3749 parent.post(new Runnable() {
3750 @Override
3751 public void run() {
3752 parent.removeView(cling);
3753 }
3754 });
Michael Jurka22143132012-10-04 17:42:38 +02003755 mHideFromAccessibilityHelper.restoreImportantForAccessibility(mDragLayer);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003756 }
3757 }
Michael Jurka974c3862012-05-22 22:00:31 -07003758
3759 private boolean skipCustomClingIfNoAccounts() {
3760 Cling cling = (Cling) findViewById(R.id.workspace_cling);
3761 boolean customCling = cling.getDrawIdentifier().equals("workspace_custom");
3762 if (customCling) {
3763 AccountManager am = AccountManager.get(this);
3764 Account[] accounts = am.getAccountsByType("com.google");
3765 return accounts.length == 0;
3766 }
3767 return false;
3768 }
3769
Winson Chung7d7541e2011-09-16 20:14:36 -07003770 public void showFirstRunWorkspaceCling() {
Winson Chung7d7541e2011-09-16 20:14:36 -07003771 // Enable the clings only if they have not been dismissed before
Winson Chung46353de2012-02-16 14:05:10 -08003772 if (isClingsEnabled() &&
Michael Jurka974c3862012-05-22 22:00:31 -07003773 !mSharedPrefs.getBoolean(Cling.WORKSPACE_CLING_DISMISSED_KEY, false) &&
3774 !skipCustomClingIfNoAccounts() ) {
Michael Jurka45355c42012-10-08 13:21:35 +02003775 // If we're not using the default workspace layout, replace workspace cling
3776 // with a custom workspace cling (usually specified in an overlay)
3777 // For now, only do this on tablets
3778 if (mSharedPrefs.getInt(LauncherProvider.DEFAULT_WORKSPACE_RESOURCE_ID, 0) != 0 &&
Michael Jurkaa1131212012-10-09 14:46:26 +02003779 getResources().getBoolean(R.bool.config_useCustomClings)) {
Michael Jurka45355c42012-10-08 13:21:35 +02003780 // Use a custom cling
3781 View cling = findViewById(R.id.workspace_cling);
3782 ViewGroup clingParent = (ViewGroup) cling.getParent();
3783 int clingIndex = clingParent.indexOfChild(cling);
3784 clingParent.removeViewAt(clingIndex);
3785 View customCling = mInflater.inflate(R.layout.custom_workspace_cling, clingParent, false);
3786 clingParent.addView(customCling, clingIndex);
3787 customCling.setId(R.id.workspace_cling);
3788 }
Winson Chung7d7541e2011-09-16 20:14:36 -07003789 initCling(R.id.workspace_cling, null, false, 0);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003790 } else {
3791 removeCling(R.id.workspace_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003792 }
3793 }
3794 public void showFirstRunAllAppsCling(int[] position) {
Winson Chung7d7541e2011-09-16 20:14:36 -07003795 // Enable the clings only if they have not been dismissed before
Winson Chung46353de2012-02-16 14:05:10 -08003796 if (isClingsEnabled() &&
3797 !mSharedPrefs.getBoolean(Cling.ALLAPPS_CLING_DISMISSED_KEY, false)) {
Winson Chung7d7541e2011-09-16 20:14:36 -07003798 initCling(R.id.all_apps_cling, position, true, 0);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003799 } else {
3800 removeCling(R.id.all_apps_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003801 }
3802 }
3803 public Cling showFirstRunFoldersCling() {
Winson Chung7d7541e2011-09-16 20:14:36 -07003804 // Enable the clings only if they have not been dismissed before
Winson Chung46353de2012-02-16 14:05:10 -08003805 if (isClingsEnabled() &&
3806 !mSharedPrefs.getBoolean(Cling.FOLDER_CLING_DISMISSED_KEY, false)) {
3807 return initCling(R.id.folder_cling, null, true, 0);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003808 } else {
3809 removeCling(R.id.folder_cling);
Winson Chung46353de2012-02-16 14:05:10 -08003810 return null;
Winson Chung7d7541e2011-09-16 20:14:36 -07003811 }
Winson Chung7d7541e2011-09-16 20:14:36 -07003812 }
3813 public boolean isFolderClingVisible() {
3814 Cling cling = (Cling) findViewById(R.id.folder_cling);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003815 if (cling != null) {
3816 return cling.getVisibility() == View.VISIBLE;
3817 }
3818 return false;
Winson Chung7d7541e2011-09-16 20:14:36 -07003819 }
Winson Chung82f55532011-08-09 14:14:23 -07003820 public void dismissWorkspaceCling(View v) {
3821 Cling cling = (Cling) findViewById(R.id.workspace_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003822 dismissCling(cling, Cling.WORKSPACE_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
Winson Chung82f55532011-08-09 14:14:23 -07003823 }
3824 public void dismissAllAppsCling(View v) {
3825 Cling cling = (Cling) findViewById(R.id.all_apps_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003826 dismissCling(cling, Cling.ALLAPPS_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
3827 }
3828 public void dismissFolderCling(View v) {
3829 Cling cling = (Cling) findViewById(R.id.folder_cling);
3830 dismissCling(cling, Cling.FOLDER_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
Winson Chung82f55532011-08-09 14:14:23 -07003831 }
3832
Winson Chung80baf5a2010-08-09 16:03:15 -07003833 /**
Joe Onoratobe386092009-11-17 17:32:16 -08003834 * Prints out out state for debugging.
3835 */
3836 public void dumpState() {
3837 Log.d(TAG, "BEGIN launcher2 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08003838 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08003839 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
3840 Log.d(TAG, "mRestoring=" + mRestoring);
3841 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
3842 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07003843 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08003844 mModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07003845
Winson Chung785d2eb2011-04-14 16:08:02 -07003846 if (mAppsCustomizeContent != null) {
3847 mAppsCustomizeContent.dumpState();
3848 }
Joe Onoratobe386092009-11-17 17:32:16 -08003849 Log.d(TAG, "END launcher2 dump state");
3850 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07003851
3852 @Override
3853 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
3854 super.dump(prefix, fd, writer, args);
3855 writer.println(" ");
3856 writer.println("Debug logs: ");
3857 for (int i = 0; i < sDumpLogs.size(); i++) {
3858 writer.println(" " + sDumpLogs.get(i));
3859 }
3860 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07003861
3862 public static void dumpDebugLogsToConsole() {
3863 Log.d(TAG, "");
3864 Log.d(TAG, "*********************");
3865 Log.d(TAG, "Launcher debug logs: ");
3866 for (int i = 0; i < sDumpLogs.size(); i++) {
3867 Log.d(TAG, " " + sDumpLogs.get(i));
3868 }
3869 Log.d(TAG, "*********************");
3870 Log.d(TAG, "");
3871 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003872}
Michael Jurka2763be32011-02-24 11:19:57 -08003873
Michael Jurkaabded662011-03-04 12:06:57 -08003874interface LauncherTransitionable {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003875 View getContent();
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003876 void onLauncherTransitionPrepare(Launcher l, boolean animated, boolean toWorkspace);
Michael Jurkabed61d22012-02-14 22:51:29 -08003877 void onLauncherTransitionStart(Launcher l, boolean animated, boolean toWorkspace);
Winson Chung70442722012-02-10 15:43:22 -08003878 void onLauncherTransitionStep(Launcher l, float t);
Michael Jurkabed61d22012-02-14 22:51:29 -08003879 void onLauncherTransitionEnd(Launcher l, boolean animated, boolean toWorkspace);
Michael Jurka2763be32011-02-24 11:19:57 -08003880}