blob: c221815a4dfa88bdbf10b696ce428e93d8551277 [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);
Chet Haasebc2f0822012-10-26 17:59:53 -07002700 mAppsCustomizeContent.pauseScrolling();
Michael Jurkabed61d22012-02-14 22:51:29 -08002701
2702 mStateAnimation.addListener(new AnimatorListenerAdapter() {
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002703 @Override
Michael Jurka8edd75c2010-12-17 20:15:06 -08002704 public void onAnimationEnd(Animator animation) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002705 updateWallpaperVisibility(true);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002706 fromView.setVisibility(View.GONE);
Michael Jurkabed61d22012-02-14 22:51:29 -08002707 dispatchOnLauncherTransitionEnd(fromView, animated, true);
2708 dispatchOnLauncherTransitionEnd(toView, animated, true);
Michael Jurkabafdaaf2012-04-26 13:43:25 -07002709 if (mWorkspace != null) {
2710 mWorkspace.hideScrollingIndicator(false);
2711 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002712 if (onCompleteRunnable != null) {
2713 onCompleteRunnable.run();
2714 }
Chet Haasebc2f0822012-10-26 17:59:53 -07002715 mAppsCustomizeContent.updateCurrentPageScroll();
2716 mAppsCustomizeContent.resumeScrolling();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002717 }
2718 });
2719
Winson Chungf0ea4d32011-06-06 14:27:16 -07002720 mStateAnimation.playTogether(scaleAnim, alphaAnim);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002721 if (workspaceAnim != null) {
2722 mStateAnimation.play(workspaceAnim);
2723 }
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002724 dispatchOnLauncherTransitionStart(fromView, animated, true);
2725 dispatchOnLauncherTransitionStart(toView, animated, true);
Michael Jurka3dcd79e2012-05-31 07:50:33 -07002726 final Animator stateAnimation = mStateAnimation;
2727 mWorkspace.post(new Runnable() {
2728 public void run() {
2729 if (stateAnimation != mStateAnimation)
2730 return;
2731 mStateAnimation.start();
2732 }
2733 });
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002734 } else {
2735 fromView.setVisibility(View.GONE);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002736 dispatchOnLauncherTransitionPrepare(fromView, animated, true);
Michael Jurkabed61d22012-02-14 22:51:29 -08002737 dispatchOnLauncherTransitionStart(fromView, animated, true);
2738 dispatchOnLauncherTransitionEnd(fromView, animated, true);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002739 dispatchOnLauncherTransitionPrepare(toView, animated, true);
Michael Jurkabed61d22012-02-14 22:51:29 -08002740 dispatchOnLauncherTransitionStart(toView, animated, true);
2741 dispatchOnLauncherTransitionEnd(toView, animated, true);
Michael Jurkab737ee62011-11-15 15:57:22 -08002742 mWorkspace.hideScrollingIndicator(false);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002743 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002744 }
2745
Michael Jurkae326f182011-11-21 14:05:46 -08002746 @Override
2747 public void onTrimMemory(int level) {
2748 super.onTrimMemory(level);
Winson Chungc7450e32012-04-17 17:34:08 -07002749 if (level >= ComponentCallbacks2.TRIM_MEMORY_MODERATE) {
Michael Jurkae326f182011-11-21 14:05:46 -08002750 mAppsCustomizeTabHost.onTrimMemory();
2751 }
2752 }
2753
Winson Chung18f41f82012-05-09 13:28:10 -07002754 @Override
2755 public void onWindowFocusChanged(boolean hasFocus) {
2756 if (!hasFocus) {
2757 // When another window occludes launcher (like the notification shade, or recents),
2758 // ensure that we enable the wallpaper flag so that transitions are done correctly.
2759 updateWallpaperVisibility(true);
2760 } else {
2761 // When launcher has focus again, disable the wallpaper if we are in AllApps
Winson Chung6cf79092012-06-07 14:50:10 -07002762 mWorkspace.postDelayed(new Runnable() {
2763 @Override
2764 public void run() {
2765 disableWallpaperIfInAllApps();
2766 }
2767 }, 500);
Winson Chung18f41f82012-05-09 13:28:10 -07002768 }
2769 }
2770
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002771 void showWorkspace(boolean animated) {
Adam Cohened66b2b2012-01-23 17:28:51 -08002772 showWorkspace(animated, null);
2773 }
2774
2775 void showWorkspace(boolean animated, Runnable onCompleteRunnable) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07002776 if (mState != State.WORKSPACE) {
Winson Chungc7d2b602012-05-16 17:02:20 -07002777 boolean wasInSpringLoadedMode = (mState == State.APPS_CUSTOMIZE_SPRING_LOADED);
Michael Jurkab3e22d92011-10-31 15:58:33 -07002778 mWorkspace.setVisibility(View.VISIBLE);
Adam Cohened66b2b2012-01-23 17:28:51 -08002779 hideAppsCustomizeHelper(State.WORKSPACE, animated, false, onCompleteRunnable);
Michael Jurkab3e22d92011-10-31 15:58:33 -07002780
Winson Chungc7d2b602012-05-16 17:02:20 -07002781 // Show the search bar (only animate if we were showing the drop target bar in spring
2782 // loaded mode)
Winson Chungadf0c182012-08-23 14:59:07 -07002783 if (mSearchDropTargetBar != null) {
2784 mSearchDropTargetBar.showSearchBar(wasInSpringLoadedMode);
2785 }
Winson Chungc7d2b602012-05-16 17:02:20 -07002786
Michael Jurkab737ee62011-11-15 15:57:22 -08002787 // We only need to animate in the dock divider if we're going from spring loaded mode
Winson Chungc7d2b602012-05-16 17:02:20 -07002788 showDockDivider(animated && wasInSpringLoadedMode);
Michael Jurkab3e22d92011-10-31 15:58:33 -07002789
2790 // Set focus to the AppsCustomize button
2791 if (mAllAppsButton != null) {
2792 mAllAppsButton.requestFocus();
2793 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002794 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07002795
Michael Jurkab737ee62011-11-15 15:57:22 -08002796 mWorkspace.flashScrollingIndicator(animated);
Adam Cohen7777d962011-08-18 18:58:38 -07002797
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002798 // Change the state *after* we've called all the transition code
2799 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08002800
Winson Chung5fb63472011-02-02 17:03:37 -08002801 // Resume the auto-advance of widgets
2802 mUserPresent = true;
2803 updateRunning();
2804
alanv1d4fde62012-10-17 13:15:47 -07002805 // Send an accessibility event to announce the context change
2806 getWindow().getDecorView()
2807 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Joe Onorato00acb122009-08-04 16:04:30 -04002808 }
2809
Michael Jurkab3e22d92011-10-31 15:58:33 -07002810 void showAllApps(boolean animated) {
2811 if (mState != State.WORKSPACE) return;
2812
2813 showAppsCustomizeHelper(animated, false);
2814 mAppsCustomizeTabHost.requestFocus();
2815
Michael Jurkab3e22d92011-10-31 15:58:33 -07002816 // Change the state *after* we've called all the transition code
2817 mState = State.APPS_CUSTOMIZE;
2818
2819 // Pause the auto-advance of widgets until we are out of AllApps
2820 mUserPresent = false;
2821 updateRunning();
2822 closeFolder();
2823
2824 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07002825 getWindow().getDecorView()
2826 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Michael Jurkab3e22d92011-10-31 15:58:33 -07002827 }
2828
Adam Cohen7777d962011-08-18 18:58:38 -07002829 void enterSpringLoadedDragMode() {
Winson Chungc93e5ae2012-07-23 20:48:26 -07002830 if (isAllAppsVisible()) {
Adam Cohened66b2b2012-01-23 17:28:51 -08002831 hideAppsCustomizeHelper(State.APPS_CUSTOMIZE_SPRING_LOADED, true, true, null);
Michael Jurkab737ee62011-11-15 15:57:22 -08002832 hideDockDivider();
Winson Chungc07918d2011-07-01 15:35:26 -07002833 mState = State.APPS_CUSTOMIZE_SPRING_LOADED;
Winson Chungb26f3d62011-06-02 10:49:29 -07002834 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08002835 }
Adam Cohen7777d962011-08-18 18:58:38 -07002836
Adam Cohened66b2b2012-01-23 17:28:51 -08002837 void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, boolean extendedDelay,
2838 final Runnable onCompleteRunnable) {
Winson Chung09bfc452011-09-09 11:30:20 -07002839 if (mState != State.APPS_CUSTOMIZE_SPRING_LOADED) return;
2840
Winson Chunge7a03942011-08-05 15:05:12 -07002841 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07002842 @Override
2843 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07002844 if (successfulDrop) {
Michael Jurka7bdb25a2011-08-03 15:16:44 -07002845 // Before we show workspace, hide all apps again because
2846 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
2847 // clean up our state transition functions
2848 mAppsCustomizeTabHost.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08002849 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07002850 } else {
2851 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07002852 }
Winson Chung557d6ed2011-07-08 15:34:52 -07002853 }
2854 }, (extendedDelay ?
2855 EXIT_SPRINGLOADED_MODE_LONG_TIMEOUT :
2856 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT));
2857 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07002858
Michael Jurkad3ef3062010-11-23 16:23:58 -08002859 void exitSpringLoadedDragMode() {
Winson Chungb26f3d62011-06-02 10:49:29 -07002860 if (mState == State.APPS_CUSTOMIZE_SPRING_LOADED) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07002861 final boolean animated = true;
2862 final boolean springLoaded = true;
2863 showAppsCustomizeHelper(animated, springLoaded);
Winson Chungb26f3d62011-06-02 10:49:29 -07002864 mState = State.APPS_CUSTOMIZE;
Winson Chungf0ea4d32011-06-06 14:27:16 -07002865 }
2866 // Otherwise, we are not in spring loaded mode, so don't do anything.
2867 }
2868
Michael Jurkab737ee62011-11-15 15:57:22 -08002869 void hideDockDivider() {
2870 if (mQsbDivider != null && mDockDivider != null) {
2871 mQsbDivider.setVisibility(View.INVISIBLE);
2872 mDockDivider.setVisibility(View.INVISIBLE);
2873 }
2874 }
2875
2876 void showDockDivider(boolean animated) {
2877 if (mQsbDivider != null && mDockDivider != null) {
2878 mQsbDivider.setVisibility(View.VISIBLE);
2879 mDockDivider.setVisibility(View.VISIBLE);
2880 if (mDividerAnimator != null) {
2881 mDividerAnimator.cancel();
2882 mQsbDivider.setAlpha(1f);
2883 mDockDivider.setAlpha(1f);
2884 mDividerAnimator = null;
2885 }
2886 if (animated) {
Michael Jurka2ecf9952012-06-18 12:52:28 -07002887 mDividerAnimator = LauncherAnimUtils.createAnimatorSet();
2888 mDividerAnimator.playTogether(LauncherAnimUtils.ofFloat(mQsbDivider, "alpha", 1f),
2889 LauncherAnimUtils.ofFloat(mDockDivider, "alpha", 1f));
Winson Chungadf0c182012-08-23 14:59:07 -07002890 int duration = 0;
2891 if (mSearchDropTargetBar != null) {
2892 duration = mSearchDropTargetBar.getTransitionInDuration();
2893 }
2894 mDividerAnimator.setDuration(duration);
Michael Jurkab737ee62011-11-15 15:57:22 -08002895 mDividerAnimator.start();
2896 }
2897 }
2898 }
2899
Michael Jurkab3e22d92011-10-31 15:58:33 -07002900 void lockAllApps() {
2901 // TODO
2902 }
2903
2904 void unlockAllApps() {
2905 // TODO
2906 }
2907
Winson Chungf0ea4d32011-06-06 14:27:16 -07002908 /**
Winson Chung3d503fb2011-07-13 17:25:49 -07002909 * Shows the hotseat area.
Winson Chungf0ea4d32011-06-06 14:27:16 -07002910 */
Winson Chung3d503fb2011-07-13 17:25:49 -07002911 void showHotseat(boolean animated) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07002912 if (!LauncherApplication.isScreenLarge()) {
2913 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08002914 if (mHotseat.getAlpha() != 1f) {
Winson Chungadf0c182012-08-23 14:59:07 -07002915 int duration = 0;
2916 if (mSearchDropTargetBar != null) {
2917 duration = mSearchDropTargetBar.getTransitionInDuration();
2918 }
Michael Jurka7407d2a2011-12-12 21:48:38 -08002919 mHotseat.animate().alpha(1f).setDuration(duration);
2920 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002921 } else {
Winson Chung3d503fb2011-07-13 17:25:49 -07002922 mHotseat.setAlpha(1f);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002923 }
2924 }
2925 }
2926
2927 /**
Winson Chung3d503fb2011-07-13 17:25:49 -07002928 * Hides the hotseat area.
Winson Chungf0ea4d32011-06-06 14:27:16 -07002929 */
Winson Chung3d503fb2011-07-13 17:25:49 -07002930 void hideHotseat(boolean animated) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07002931 if (!LauncherApplication.isScreenLarge()) {
2932 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08002933 if (mHotseat.getAlpha() != 0f) {
Winson Chungadf0c182012-08-23 14:59:07 -07002934 int duration = 0;
2935 if (mSearchDropTargetBar != null) {
2936 duration = mSearchDropTargetBar.getTransitionOutDuration();
2937 }
Michael Jurka7407d2a2011-12-12 21:48:38 -08002938 mHotseat.animate().alpha(0f).setDuration(duration);
2939 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002940 } else {
Winson Chung3d503fb2011-07-13 17:25:49 -07002941 mHotseat.setAlpha(0f);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002942 }
Winson Chungb26f3d62011-06-02 10:49:29 -07002943 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08002944 }
2945
Patrick Dubroy5f445422011-02-18 14:35:21 -08002946 /**
2947 * Add an item from all apps or customize onto the given workspace screen.
2948 * If layout is null, add to the current screen.
2949 */
2950 void addExternalItemToScreen(ItemInfo itemInfo, final CellLayout layout) {
Michael Jurka6b4b25d2010-10-20 18:19:45 -07002951 if (!mWorkspace.addExternalItemToScreen(itemInfo, layout)) {
Winson Chung93eef082012-03-23 15:59:27 -07002952 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka213d9632010-07-28 11:29:25 -07002953 }
Michael Jurka6b4b25d2010-10-20 18:19:45 -07002954 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07002955
Winson Chungdff8ebb2011-09-08 17:25:31 -07002956 /** Maps the current orientation to an index for referencing orientation correct global icons */
2957 private int getCurrentOrientationIndexForGlobalIcons() {
2958 // default - 0, landscape - 1
2959 switch (getResources().getConfiguration().orientation) {
2960 case Configuration.ORIENTATION_LANDSCAPE:
2961 return 1;
2962 default:
2963 return 0;
2964 }
2965 }
2966
Michael Jurkaae65ee32012-04-30 11:45:54 -07002967 private Drawable getExternalPackageToolbarIcon(ComponentName activityName, String resourceName) {
Michael Jurka0423dcf2010-10-05 14:56:18 -07002968 try {
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002969 PackageManager packageManager = getPackageManager();
Michael Jurka0423dcf2010-10-05 14:56:18 -07002970 // Look for the toolbar icon specified in the activity meta-data
2971 Bundle metaData = packageManager.getActivityInfo(
2972 activityName, PackageManager.GET_META_DATA).metaData;
2973 if (metaData != null) {
Michael Jurkaae65ee32012-04-30 11:45:54 -07002974 int iconResId = metaData.getInt(resourceName);
Michael Jurka0423dcf2010-10-05 14:56:18 -07002975 if (iconResId != 0) {
2976 Resources res = packageManager.getResourcesForActivity(activityName);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002977 return res.getDrawable(iconResId);
Michael Jurka0423dcf2010-10-05 14:56:18 -07002978 }
2979 }
2980 } catch (NameNotFoundException e) {
Michael Jurkab6052a92011-07-12 17:02:45 -07002981 // This can happen if the activity defines an invalid drawable
2982 Log.w(TAG, "Failed to load toolbar icon; " + activityName.flattenToShortString() +
2983 " not found", e);
Mathew Inwood70d51022011-07-12 13:41:41 +01002984 } catch (Resources.NotFoundException nfe) {
2985 // This can happen if the activity defines an invalid drawable
2986 Log.w(TAG, "Failed to load toolbar icon from " + activityName.flattenToShortString(),
2987 nfe);
Michael Jurka0423dcf2010-10-05 14:56:18 -07002988 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002989 return null;
2990 }
2991
2992 // if successful in getting icon, return it; otherwise, set button to use default drawable
2993 private Drawable.ConstantState updateTextButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07002994 int buttonId, ComponentName activityName, int fallbackDrawableId,
2995 String toolbarResourceName) {
2996 Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName, toolbarResourceName);
Winson Chung128bbcd2011-08-31 16:58:52 -07002997 Resources r = getResources();
2998 int w = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_width);
2999 int h = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_height);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003000
Michael Jurka4da7a3e2011-10-28 15:04:35 -07003001 TextView button = (TextView) findViewById(buttonId);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003002 // If we were unable to find the icon via the meta-data, use a generic one
3003 if (toolbarIcon == null) {
Winson Chung128bbcd2011-08-31 16:58:52 -07003004 toolbarIcon = r.getDrawable(fallbackDrawableId);
3005 toolbarIcon.setBounds(0, 0, w, h);
Michael Jurka4da7a3e2011-10-28 15:04:35 -07003006 if (button != null) {
3007 button.setCompoundDrawables(toolbarIcon, null, null, null);
3008 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003009 return null;
3010 } else {
Winson Chung128bbcd2011-08-31 16:58:52 -07003011 toolbarIcon.setBounds(0, 0, w, h);
Michael Jurka4da7a3e2011-10-28 15:04:35 -07003012 if (button != null) {
3013 button.setCompoundDrawables(toolbarIcon, null, null, null);
3014 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003015 return toolbarIcon.getConstantState();
3016 }
3017 }
3018
3019 // if successful in getting icon, return it; otherwise, set button to use default drawable
3020 private Drawable.ConstantState updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003021 int buttonId, ComponentName activityName, int fallbackDrawableId,
3022 String toolbarResourceName) {
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003023 ImageView button = (ImageView) findViewById(buttonId);
Michael Jurkaae65ee32012-04-30 11:45:54 -07003024 Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName, toolbarResourceName);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003025
Michael Jurka19e0fc52011-07-22 18:00:21 -07003026 if (button != null) {
3027 // If we were unable to find the icon via the meta-data, use a
3028 // generic one
3029 if (toolbarIcon == null) {
3030 button.setImageResource(fallbackDrawableId);
3031 } else {
3032 button.setImageDrawable(toolbarIcon);
3033 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07003034 }
Michael Jurka19e0fc52011-07-22 18:00:21 -07003035
3036 return toolbarIcon != null ? toolbarIcon.getConstantState() : null;
3037
Michael Jurka0423dcf2010-10-05 14:56:18 -07003038 }
3039
Winson Chung1b884092012-06-08 17:13:02 -07003040 private void updateTextButtonWithDrawable(int buttonId, Drawable d) {
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003041 TextView button = (TextView) findViewById(buttonId);
Winson Chung1b884092012-06-08 17:13:02 -07003042 button.setCompoundDrawables(d, null, null, null);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003043 }
3044
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003045 private void updateButtonWithDrawable(int buttonId, Drawable.ConstantState d) {
Michael Jurka4ef207b2010-11-29 17:05:45 -08003046 ImageView button = (ImageView) findViewById(buttonId);
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003047 button.setImageDrawable(d.newDrawable(getResources()));
Michael Jurka4ef207b2010-11-29 17:05:45 -08003048 }
3049
Winson Chungbb185bd2011-11-21 12:31:42 -08003050 private void invalidatePressedFocusedStates(View container, View button) {
3051 if (container instanceof HolographicLinearLayout) {
3052 HolographicLinearLayout layout = (HolographicLinearLayout) container;
3053 layout.invalidatePressedFocusedStates();
3054 } else if (button instanceof HolographicImageView) {
3055 HolographicImageView view = (HolographicImageView) button;
3056 view.invalidatePressedFocusedStates();
3057 }
3058 }
3059
Winson Chungc51db6a2011-10-05 11:44:49 -07003060 private boolean updateGlobalSearchIcon() {
3061 final View searchButtonContainer = findViewById(R.id.search_button_container);
Winson Chung1cad91e2011-05-25 17:41:01 -07003062 final ImageView searchButton = (ImageView) findViewById(R.id.search_button);
Winson Chungc51db6a2011-10-05 11:44:49 -07003063 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
Winson Chungcbf7c4d2011-08-23 11:58:54 -07003064 final View voiceButton = findViewById(R.id.voice_button);
Winson Chunge3fbfa92012-04-24 14:34:28 -07003065 final View voiceButtonProxy = findViewById(R.id.voice_button_proxy);
Winson Chung97d85d22011-04-13 11:27:36 -07003066
Winson Chung1cad91e2011-05-25 17:41:01 -07003067 final SearchManager searchManager =
3068 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
3069 ComponentName activityName = searchManager.getGlobalSearchActivity();
3070 if (activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07003071 int coi = getCurrentOrientationIndexForGlobalIcons();
3072 sGlobalSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003073 R.id.search_button, activityName, R.drawable.ic_home_search_normal_holo,
3074 TOOLBAR_SEARCH_ICON_METADATA_NAME);
3075 if (sGlobalSearchIcon[coi] == null) {
3076 sGlobalSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
3077 R.id.search_button, activityName, R.drawable.ic_home_search_normal_holo,
3078 TOOLBAR_ICON_METADATA_NAME);
3079 }
3080
Winson Chungc51db6a2011-10-05 11:44:49 -07003081 if (searchButtonContainer != null) searchButtonContainer.setVisibility(View.VISIBLE);
3082 searchButton.setVisibility(View.VISIBLE);
Winson Chungbb185bd2011-11-21 12:31:42 -08003083 invalidatePressedFocusedStates(searchButtonContainer, searchButton);
Winson Chungc51db6a2011-10-05 11:44:49 -07003084 return true;
Winson Chung1cad91e2011-05-25 17:41:01 -07003085 } else {
Winson Chungcbf7c4d2011-08-23 11:58:54 -07003086 // We disable both search and voice search when there is no global search provider
Winson Chungc51db6a2011-10-05 11:44:49 -07003087 if (searchButtonContainer != null) searchButtonContainer.setVisibility(View.GONE);
3088 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.GONE);
3089 searchButton.setVisibility(View.GONE);
Winson Chungcbf7c4d2011-08-23 11:58:54 -07003090 voiceButton.setVisibility(View.GONE);
Michael Jurkac60498a2012-05-07 15:29:42 -07003091 if (voiceButtonProxy != null) {
3092 voiceButtonProxy.setVisibility(View.GONE);
3093 }
Winson Chungc51db6a2011-10-05 11:44:49 -07003094 return false;
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003095 }
3096 }
3097
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003098 private void updateGlobalSearchIcon(Drawable.ConstantState d) {
Winson Chungbb185bd2011-11-21 12:31:42 -08003099 final View searchButtonContainer = findViewById(R.id.search_button_container);
3100 final View searchButton = (ImageView) findViewById(R.id.search_button);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003101 updateButtonWithDrawable(R.id.search_button, d);
Winson Chungbb185bd2011-11-21 12:31:42 -08003102 invalidatePressedFocusedStates(searchButtonContainer, searchButton);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003103 }
3104
Winson Chungc51db6a2011-10-05 11:44:49 -07003105 private boolean updateVoiceSearchIcon(boolean searchVisible) {
Winson Chungc51db6a2011-10-05 11:44:49 -07003106 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
Winson Chung1cad91e2011-05-25 17:41:01 -07003107 final View voiceButton = findViewById(R.id.voice_button);
Winson Chunge3fbfa92012-04-24 14:34:28 -07003108 final View voiceButtonProxy = findViewById(R.id.voice_button_proxy);
Winson Chung97d85d22011-04-13 11:27:36 -07003109
Winson Chungc51db6a2011-10-05 11:44:49 -07003110 // We only show/update the voice search icon if the search icon is enabled as well
Michael Jurkaae65ee32012-04-30 11:45:54 -07003111 final SearchManager searchManager =
3112 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
3113 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
3114
3115 ComponentName activityName = null;
3116 if (globalSearchActivity != null) {
3117 // Check if the global search activity handles voice search
3118 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
3119 intent.setPackage(globalSearchActivity.getPackageName());
3120 activityName = intent.resolveActivity(getPackageManager());
3121 }
3122
3123 if (activityName == null) {
3124 // Fallback: check if an activity other than the global search activity
3125 // resolves this
3126 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
3127 activityName = intent.resolveActivity(getPackageManager());
3128 }
Winson Chungc51db6a2011-10-05 11:44:49 -07003129 if (searchVisible && activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07003130 int coi = getCurrentOrientationIndexForGlobalIcons();
3131 sVoiceSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003132 R.id.voice_button, activityName, R.drawable.ic_home_voice_search_holo,
3133 TOOLBAR_VOICE_SEARCH_ICON_METADATA_NAME);
3134 if (sVoiceSearchIcon[coi] == null) {
3135 sVoiceSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
3136 R.id.voice_button, activityName, R.drawable.ic_home_voice_search_holo,
3137 TOOLBAR_ICON_METADATA_NAME);
3138 }
Winson Chungc51db6a2011-10-05 11:44:49 -07003139 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.VISIBLE);
Winson Chung1cad91e2011-05-25 17:41:01 -07003140 voiceButton.setVisibility(View.VISIBLE);
Jim Miller14091b12012-04-24 19:27:54 -07003141 if (voiceButtonProxy != null) {
3142 voiceButtonProxy.setVisibility(View.VISIBLE);
3143 }
Winson Chungbb185bd2011-11-21 12:31:42 -08003144 invalidatePressedFocusedStates(voiceButtonContainer, voiceButton);
Winson Chungc51db6a2011-10-05 11:44:49 -07003145 return true;
Winson Chung1cad91e2011-05-25 17:41:01 -07003146 } else {
Winson Chungc51db6a2011-10-05 11:44:49 -07003147 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.GONE);
Winson Chung1cad91e2011-05-25 17:41:01 -07003148 voiceButton.setVisibility(View.GONE);
Jim Miller14091b12012-04-24 19:27:54 -07003149 if (voiceButtonProxy != null) {
3150 voiceButtonProxy.setVisibility(View.GONE);
3151 }
Winson Chungc51db6a2011-10-05 11:44:49 -07003152 return false;
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003153 }
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003154 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07003155
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003156 private void updateVoiceSearchIcon(Drawable.ConstantState d) {
Winson Chungbb185bd2011-11-21 12:31:42 -08003157 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
3158 final View voiceButton = findViewById(R.id.voice_button);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003159 updateButtonWithDrawable(R.id.voice_button, d);
Winson Chungbb185bd2011-11-21 12:31:42 -08003160 invalidatePressedFocusedStates(voiceButtonContainer, voiceButton);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003161 }
3162
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003163 /**
Winson Chungeb66b142011-06-16 13:14:22 -07003164 * Sets the app market icon
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003165 */
3166 private void updateAppMarketIcon() {
Winson Chung785d2eb2011-04-14 16:08:02 -07003167 final View marketButton = findViewById(R.id.market_button);
3168 Intent intent = new Intent(Intent.ACTION_MAIN).addCategory(Intent.CATEGORY_APP_MARKET);
3169 // Find the app market activity by resolving an intent.
3170 // (If multiple app markets are installed, it will return the ResolverActivity.)
3171 ComponentName activityName = intent.resolveActivity(getPackageManager());
Winson Chung6a26e5b2011-05-26 14:36:06 -07003172 if (activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07003173 int coi = getCurrentOrientationIndexForGlobalIcons();
Winson Chung785d2eb2011-04-14 16:08:02 -07003174 mAppMarketIntent = intent;
Winson Chungdff8ebb2011-09-08 17:25:31 -07003175 sAppMarketIcon[coi] = updateTextButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003176 R.id.market_button, activityName, R.drawable.ic_launcher_market_holo,
3177 TOOLBAR_ICON_METADATA_NAME);
Winson Chung785d2eb2011-04-14 16:08:02 -07003178 marketButton.setVisibility(View.VISIBLE);
3179 } else {
3180 // We should hide and disable the view so that we don't try and restore the visibility
3181 // of it when we swap between drag & normal states from IconDropTarget subclasses.
3182 marketButton.setVisibility(View.GONE);
3183 marketButton.setEnabled(false);
Michael Jurka0423dcf2010-10-05 14:56:18 -07003184 }
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003185 }
3186
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003187 private void updateAppMarketIcon(Drawable.ConstantState d) {
Winson Chung1b884092012-06-08 17:13:02 -07003188 // Ensure that the new drawable we are creating has the approprate toolbar icon bounds
3189 Resources r = getResources();
3190 Drawable marketIconDrawable = d.newDrawable(r);
3191 int w = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_width);
3192 int h = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_height);
3193 marketIconDrawable.setBounds(0, 0, w, h);
3194
3195 updateTextButtonWithDrawable(R.id.market_button, marketIconDrawable);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003196 }
3197
Michael Jurkad7c28052012-04-27 15:43:36 -07003198 @Override
3199 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07003200 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07003201 final List<CharSequence> text = event.getText();
3202 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07003203 // Populate event with a fake title based on the current state.
3204 if (mState == State.APPS_CUSTOMIZE) {
3205 text.add(getString(R.string.all_apps_button_label));
3206 } else {
3207 text.add(getString(R.string.all_apps_home_button_label));
3208 }
Michael Jurkad7c28052012-04-27 15:43:36 -07003209 return result;
3210 }
3211
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003212 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003213 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003214 */
3215 private class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
3216 @Override
3217 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003218 closeSystemDialogs();
3219 }
3220 }
3221
3222 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08003223 * Receives notifications whenever the appwidgets are reset.
3224 */
3225 private class AppWidgetResetObserver extends ContentObserver {
3226 public AppWidgetResetObserver() {
3227 super(new Handler());
3228 }
3229
3230 @Override
3231 public void onChange(boolean selfChange) {
3232 onAppWidgetReset();
3233 }
3234 }
3235
3236 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003237 * If the activity is currently paused, signal that we need to re-run the loader
3238 * in onResume.
3239 *
3240 * This needs to be called from incoming places where resources might have been loaded
3241 * while we are paused. That is becaues the Configuration might be wrong
3242 * when we're not running, and if it comes back to what it was when we
3243 * were paused, we are not restarted.
3244 *
3245 * Implementation of the method from LauncherModel.Callbacks.
3246 *
3247 * @return true if we are currently paused. The caller might be able to
3248 * skip some work in that case since we will come back again.
3249 */
3250 public boolean setLoadOnResume() {
3251 if (mPaused) {
3252 Log.i(TAG, "setLoadOnResume");
3253 mOnResumeNeedsLoad = true;
3254 return true;
3255 } else {
3256 return false;
3257 }
3258 }
3259
3260 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003261 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003262 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003263 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003264 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003265 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003266 } else {
3267 return SCREEN_COUNT / 2;
3268 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003269 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003270
Joe Onorato9c1289c2009-08-17 11:03:03 -04003271 /**
3272 * Refreshes the shortcuts shown on the workspace.
3273 *
3274 * Implementation of the method from LauncherModel.Callbacks.
3275 */
3276 public void startBinding() {
3277 final Workspace workspace = mWorkspace;
Adam Cohendf035382011-04-11 17:22:04 -07003278
Winson Chungf0c6ae02012-03-21 16:10:31 -07003279 mNewShortcutAnimatePage = -1;
3280 mNewShortcutAnimateViews.clear();
Adam Cohendf035382011-04-11 17:22:04 -07003281 mWorkspace.clearDropTargets();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003282 int count = workspace.getChildCount();
3283 for (int i = 0; i < count; i++) {
Joe Onorato3c2f7e12009-10-31 19:17:31 -04003284 // Use removeAllViewsInLayout() to avoid an extra requestLayout() and invalidate().
Winson Chung7a25a9e2011-01-30 13:33:56 -08003285 final CellLayout layoutParent = (CellLayout) workspace.getChildAt(i);
3286 layoutParent.removeAllViewsInLayout();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003287 }
Michael Jurka05bf6442011-11-30 20:28:53 -08003288 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003289 if (mHotseat != null) {
3290 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003291 }
3292 }
3293
3294 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003295 * Bind the items start-end from the list.
3296 *
3297 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003298 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003299 public void bindItems(ArrayList<ItemInfo> shortcuts, int start, int end) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003300 setLoadOnResume();
3301
Winson Chungf0c6ae02012-03-21 16:10:31 -07003302 // Get the list of added shortcuts and intersect them with the set of shortcuts here
3303 Set<String> newApps = new HashSet<String>();
3304 newApps = mSharedPrefs.getStringSet(InstallShortcutReceiver.NEW_APPS_LIST_KEY, newApps);
3305
3306 Workspace workspace = mWorkspace;
3307 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003308 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003309
3310 // Short circuit if we are loading dock items for a configuration which has no dock
3311 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3312 mHotseat == null) {
3313 continue;
3314 }
3315
Joe Onorato9c1289c2009-08-17 11:03:03 -04003316 switch (item.itemType) {
3317 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3318 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07003319 ShortcutInfo info = (ShortcutInfo) item;
3320 String uri = info.intent.toUri(0).toString();
3321 View shortcut = createShortcut(info);
Winson Chung3d503fb2011-07-13 17:25:49 -07003322 workspace.addInScreen(shortcut, item.container, item.screen, item.cellX,
3323 item.cellY, 1, 1, false);
Winson Chungbfeac062012-06-06 15:56:08 -07003324 boolean animateIconUp = false;
3325 synchronized (newApps) {
3326 if (newApps.contains(uri)) {
3327 animateIconUp = newApps.remove(uri);
3328 }
3329 }
3330 if (animateIconUp) {
Winson Chungf0c6ae02012-03-21 16:10:31 -07003331 // Prepare the view to be animated up
3332 shortcut.setAlpha(0f);
3333 shortcut.setScaleX(0f);
3334 shortcut.setScaleY(0f);
3335 mNewShortcutAnimatePage = item.screen;
3336 if (!mNewShortcutAnimateViews.contains(shortcut)) {
3337 mNewShortcutAnimateViews.add(shortcut);
3338 }
3339 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003340 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003341 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Winson Chung3d503fb2011-07-13 17:25:49 -07003342 FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003343 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003344 (FolderInfo) item, mIconCache);
Winson Chung3d503fb2011-07-13 17:25:49 -07003345 workspace.addInScreen(newFolder, item.container, item.screen, item.cellX,
3346 item.cellY, 1, 1, false);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003347 break;
Joe Onorato9c1289c2009-08-17 11:03:03 -04003348 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003349 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003350
Joe Onorato9c1289c2009-08-17 11:03:03 -04003351 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003352 }
3353
Joe Onorato9c1289c2009-08-17 11:03:03 -04003354 /**
3355 * Implementation of the method from LauncherModel.Callbacks.
3356 */
Joe Onoratoad72e172009-11-06 16:25:04 -05003357 public void bindFolders(HashMap<Long, FolderInfo> folders) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003358 setLoadOnResume();
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07003359 sFolders.clear();
3360 sFolders.putAll(folders);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003361 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003362
3363 /**
3364 * Add the views for a widget to the workspace.
3365 *
3366 * Implementation of the method from LauncherModel.Callbacks.
3367 */
3368 public void bindAppWidget(LauncherAppWidgetInfo item) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003369 setLoadOnResume();
3370
Daniel Sandler843e8602010-06-07 14:59:01 -04003371 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
3372 if (DEBUG_WIDGETS) {
3373 Log.d(TAG, "bindAppWidget: " + item);
3374 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003375 final Workspace workspace = mWorkspace;
3376
3377 final int appWidgetId = item.appWidgetId;
3378 final AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
Daniel Sandler843e8602010-06-07 14:59:01 -04003379 if (DEBUG_WIDGETS) {
3380 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component " + appWidgetInfo.provider);
3381 }
3382
Joe Onorato9c1289c2009-08-17 11:03:03 -04003383 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
3384
Joe Onorato9c1289c2009-08-17 11:03:03 -04003385 item.hostView.setTag(item);
Winson Chung211bac32012-05-15 13:43:57 -07003386 item.onBindAppWidget(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003387
Winson Chung3d503fb2011-07-13 17:25:49 -07003388 workspace.addInScreen(item.hostView, item.container, item.screen, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04003389 item.cellY, item.spanX, item.spanY, false);
Adam Cohended9f8d2010-11-03 13:25:16 -07003390 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
3391
Joe Onorato9c1289c2009-08-17 11:03:03 -04003392 workspace.requestLayout();
3393
Daniel Sandler843e8602010-06-07 14:59:01 -04003394 if (DEBUG_WIDGETS) {
3395 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
3396 + (SystemClock.uptimeMillis()-start) + "ms");
3397 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003398 }
3399
Adam Cohen1462de32012-07-24 22:34:36 -07003400 public void onPageBoundSynchronously(int page) {
3401 mSynchronouslyBoundPages.add(page);
3402 }
3403
Joe Onorato9c1289c2009-08-17 11:03:03 -04003404 /**
3405 * Callback saying that there aren't any more items to bind.
3406 *
3407 * Implementation of the method from LauncherModel.Callbacks.
3408 */
3409 public void finishBindingItems() {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003410 setLoadOnResume();
3411
Joe Onorato9c1289c2009-08-17 11:03:03 -04003412 if (mSavedState != null) {
3413 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07003414 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003415 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003416 mSavedState = null;
3417 }
3418
Adam Cohen1462de32012-07-24 22:34:36 -07003419 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003420
Patrick Dubroy002cbf42011-03-03 16:36:21 -08003421 // If we received the result of any pending adds while the loader was running (e.g. the
3422 // widget configuration forced an orientation change), process them now.
3423 for (int i = 0; i < sPendingAddList.size(); i++) {
3424 completeAdd(sPendingAddList.get(i));
3425 }
3426 sPendingAddList.clear();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003427
Winson Chungc51db6a2011-10-05 11:44:49 -07003428 // Update the market app icon as necessary (the other icons will be managed in response to
3429 // package changes in bindSearchablesChanged()
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003430 updateAppMarketIcon();
Michael Jurkac1f5d262011-09-30 19:32:27 -07003431
Winson Chungf0c6ae02012-03-21 16:10:31 -07003432 // Animate up any icons as necessary
3433 if (mVisible || mWorkspaceLoading) {
3434 Runnable newAppsRunnable = new Runnable() {
3435 @Override
3436 public void run() {
Winson Chunga2413752012-04-03 14:22:34 -07003437 runNewAppsAnimation(false);
Winson Chungf0c6ae02012-03-21 16:10:31 -07003438 }
3439 };
Winson Chunga2413752012-04-03 14:22:34 -07003440
3441 boolean willSnapPage = mNewShortcutAnimatePage > -1 &&
3442 mNewShortcutAnimatePage != mWorkspace.getCurrentPage();
3443 if (canRunNewAppsAnimation()) {
3444 // If the user has not interacted recently, then either snap to the new page to show
3445 // the new-apps animation or just run them if they are to appear on the current page
3446 if (willSnapPage) {
3447 mWorkspace.snapToPage(mNewShortcutAnimatePage, newAppsRunnable);
3448 } else {
3449 runNewAppsAnimation(false);
3450 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003451 } else {
Winson Chung318eee02012-04-12 10:59:27 -07003452 // If the user has interacted recently, then just add the items in place if they
Winson Chunga2413752012-04-03 14:22:34 -07003453 // are on another page (or just normally if they are added to the current page)
3454 runNewAppsAnimation(willSnapPage);
Winson Chungf0c6ae02012-03-21 16:10:31 -07003455 }
3456 }
3457
3458 mWorkspaceLoading = false;
3459 }
3460
Winson Chunga2413752012-04-03 14:22:34 -07003461 private boolean canRunNewAppsAnimation() {
3462 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
3463 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000);
3464 }
3465
Winson Chungf0c6ae02012-03-21 16:10:31 -07003466 /**
3467 * Runs a new animation that scales up icons that were added while Launcher was in the
3468 * background.
Winson Chunga2413752012-04-03 14:22:34 -07003469 *
3470 * @param immediate whether to run the animation or show the results immediately
Winson Chungf0c6ae02012-03-21 16:10:31 -07003471 */
Winson Chunga2413752012-04-03 14:22:34 -07003472 private void runNewAppsAnimation(boolean immediate) {
Michael Jurka2ecf9952012-06-18 12:52:28 -07003473 AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
Winson Chungf0c6ae02012-03-21 16:10:31 -07003474 Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chunga2413752012-04-03 14:22:34 -07003475
3476 // Order these new views spatially so that they animate in order
Winson Chungf0c6ae02012-03-21 16:10:31 -07003477 Collections.sort(mNewShortcutAnimateViews, new Comparator<View>() {
3478 @Override
3479 public int compare(View a, View b) {
3480 CellLayout.LayoutParams alp = (CellLayout.LayoutParams) a.getLayoutParams();
3481 CellLayout.LayoutParams blp = (CellLayout.LayoutParams) b.getLayoutParams();
3482 int cellCountX = LauncherModel.getCellCountX();
3483 return (alp.cellY * cellCountX + alp.cellX) - (blp.cellY * cellCountX + blp.cellX);
3484 }
3485 });
Winson Chunga2413752012-04-03 14:22:34 -07003486
3487 // Animate each of the views in place (or show them immediately if requested)
3488 if (immediate) {
3489 for (View v : mNewShortcutAnimateViews) {
3490 v.setAlpha(1f);
3491 v.setScaleX(1f);
3492 v.setScaleY(1f);
Winson Chungf0c6ae02012-03-21 16:10:31 -07003493 }
Winson Chunga2413752012-04-03 14:22:34 -07003494 } else {
3495 for (int i = 0; i < mNewShortcutAnimateViews.size(); ++i) {
3496 View v = mNewShortcutAnimateViews.get(i);
Michael Jurka2ecf9952012-06-18 12:52:28 -07003497 ValueAnimator bounceAnim = LauncherAnimUtils.ofPropertyValuesHolder(v,
Winson Chunga2413752012-04-03 14:22:34 -07003498 PropertyValuesHolder.ofFloat("alpha", 1f),
3499 PropertyValuesHolder.ofFloat("scaleX", 1f),
3500 PropertyValuesHolder.ofFloat("scaleY", 1f));
3501 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
3502 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
3503 bounceAnim.setInterpolator(new SmoothPagedView.OvershootInterpolator());
3504 bounceAnims.add(bounceAnim);
3505 }
3506 anim.playTogether(bounceAnims);
3507 anim.addListener(new AnimatorListenerAdapter() {
3508 @Override
3509 public void onAnimationEnd(Animator animation) {
Michael Jurkad6dd7c82012-10-19 17:15:16 +02003510 if (mWorkspace != null) {
3511 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
3512 }
Winson Chunga2413752012-04-03 14:22:34 -07003513 }
3514 });
3515 anim.start();
3516 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003517
3518 // Clean up
3519 mNewShortcutAnimatePage = -1;
3520 mNewShortcutAnimateViews.clear();
3521 new Thread("clearNewAppsThread") {
3522 public void run() {
3523 mSharedPrefs.edit()
3524 .putInt(InstallShortcutReceiver.NEW_APPS_PAGE_KEY, -1)
3525 .putStringSet(InstallShortcutReceiver.NEW_APPS_LIST_KEY, null)
3526 .commit();
3527 }
3528 }.start();
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003529 }
3530
Narayan Kamathcb1a4772011-06-28 13:46:59 +01003531 @Override
3532 public void bindSearchablesChanged() {
Winson Chungc51db6a2011-10-05 11:44:49 -07003533 boolean searchVisible = updateGlobalSearchIcon();
3534 boolean voiceVisible = updateVoiceSearchIcon(searchVisible);
Winson Chungadf0c182012-08-23 14:59:07 -07003535 if (mSearchDropTargetBar != null) {
3536 mSearchDropTargetBar.onSearchPackagesChanged(searchVisible, voiceVisible);
3537 }
Narayan Kamathcb1a4772011-06-28 13:46:59 +01003538 }
3539
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003540 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003541 * Add the icons for all apps.
3542 *
3543 * Implementation of the method from LauncherModel.Callbacks.
3544 */
Michael Jurkac57b7a82011-08-09 22:02:20 -07003545 public void bindAllApplications(final ArrayList<ApplicationInfo> apps) {
Winson Chungc93e5ae2012-07-23 20:48:26 -07003546 Runnable setAllAppsRunnable = new Runnable() {
3547 public void run() {
3548 if (mAppsCustomizeContent != null) {
3549 mAppsCustomizeContent.setApps(apps);
3550 }
3551 }
3552 };
3553
Michael Jurkac57b7a82011-08-09 22:02:20 -07003554 // Remove the progress bar entirely; we could also make it GONE
3555 // but better to remove it since we know it's not going to be used
3556 View progressBar = mAppsCustomizeTabHost.
3557 findViewById(R.id.apps_customize_progress_bar);
3558 if (progressBar != null) {
3559 ((ViewGroup)progressBar.getParent()).removeView(progressBar);
Winson Chungc93e5ae2012-07-23 20:48:26 -07003560
3561 // We just post the call to setApps so the user sees the progress bar
3562 // disappear-- otherwise, it just looks like the progress bar froze
3563 // which doesn't look great
3564 mAppsCustomizeTabHost.post(setAllAppsRunnable);
3565 } else {
3566 // If we did not initialize the spinner in onCreate, then we can directly set the
3567 // list of applications without waiting for any progress bars views to be hidden.
3568 setAllAppsRunnable.run();
Winson Chung785d2eb2011-04-14 16:08:02 -07003569 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003570 }
3571
3572 /**
3573 * A package was installed.
3574 *
3575 * Implementation of the method from LauncherModel.Callbacks.
3576 */
Joe Onorato64e6be72010-03-05 15:05:52 -05003577 public void bindAppsAdded(ArrayList<ApplicationInfo> apps) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003578 setLoadOnResume();
Winson Chungf0ea4d32011-06-06 14:27:16 -07003579
Winson Chung785d2eb2011-04-14 16:08:02 -07003580 if (mAppsCustomizeContent != null) {
3581 mAppsCustomizeContent.addApps(apps);
3582 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003583 }
3584
3585 /**
3586 * A package was updated.
3587 *
3588 * Implementation of the method from LauncherModel.Callbacks.
3589 */
Joe Onorato64e6be72010-03-05 15:05:52 -05003590 public void bindAppsUpdated(ArrayList<ApplicationInfo> apps) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003591 setLoadOnResume();
Patrick Dubroyf5afda72011-02-28 12:04:18 -08003592 if (mWorkspace != null) {
3593 mWorkspace.updateShortcuts(apps);
3594 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003595
Winson Chung785d2eb2011-04-14 16:08:02 -07003596 if (mAppsCustomizeContent != null) {
3597 mAppsCustomizeContent.updateApps(apps);
3598 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003599 }
3600
3601 /**
3602 * A package was uninstalled.
3603 *
3604 * Implementation of the method from LauncherModel.Callbacks.
3605 */
Winson Chungcd810732012-06-18 16:45:43 -07003606 public void bindAppsRemoved(ArrayList<String> packageNames, boolean permanent) {
Joe Onorato36115782010-06-17 13:28:48 -04003607 if (permanent) {
Winson Chungcd810732012-06-18 16:45:43 -07003608 mWorkspace.removeItems(packageNames);
Joe Onorato36115782010-06-17 13:28:48 -04003609 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003610
Winson Chung785d2eb2011-04-14 16:08:02 -07003611 if (mAppsCustomizeContent != null) {
Winson Chungcd810732012-06-18 16:45:43 -07003612 mAppsCustomizeContent.removeApps(packageNames);
Winson Chung785d2eb2011-04-14 16:08:02 -07003613 }
Winson Chunga1820962011-10-03 16:31:06 -07003614
3615 // Notify the drag controller
Winson Chungcd810732012-06-18 16:45:43 -07003616 mDragController.onAppsRemoved(packageNames, this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003617 }
Joe Onoratobe386092009-11-17 17:32:16 -08003618
3619 /**
Winson Chung80baf5a2010-08-09 16:03:15 -07003620 * A number of packages were updated.
3621 */
3622 public void bindPackagesUpdated() {
Winson Chung785d2eb2011-04-14 16:08:02 -07003623 if (mAppsCustomizeContent != null) {
3624 mAppsCustomizeContent.onPackagesUpdated();
3625 }
Winson Chung80baf5a2010-08-09 16:03:15 -07003626 }
3627
Winson Chung400438b2011-01-16 17:53:48 -08003628 private int mapConfigurationOriActivityInfoOri(int configOri) {
3629 final Display d = getWindowManager().getDefaultDisplay();
3630 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
3631 switch (d.getRotation()) {
3632 case Surface.ROTATION_0:
3633 case Surface.ROTATION_180:
3634 // We are currently in the same basic orientation as the natural orientation
3635 naturalOri = configOri;
3636 break;
3637 case Surface.ROTATION_90:
3638 case Surface.ROTATION_270:
3639 // We are currently in the other basic orientation to the natural orientation
3640 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
3641 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
3642 break;
3643 }
3644
3645 int[] oriMap = {
3646 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
3647 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
3648 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
3649 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
3650 };
3651 // Since the map starts at portrait, we need to offset if this device's natural orientation
3652 // is landscape.
3653 int indexOffset = 0;
3654 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
3655 indexOffset = 1;
3656 }
3657 return oriMap[(d.getRotation() + indexOffset) % 4];
3658 }
Adam Cohen446e9402011-09-15 18:21:21 -07003659
Winson Chung4b919f82012-05-01 10:44:08 -07003660 public boolean isRotationEnabled() {
Michael Jurka9bc8eba2012-05-21 20:36:44 -07003661 boolean forceEnableRotation = doesFileExist(FORCE_ENABLE_ROTATION_PROPERTY);
Winson Chung4b919f82012-05-01 10:44:08 -07003662 boolean enableRotation = forceEnableRotation ||
3663 getResources().getBoolean(R.bool.allow_rotation);
3664 return enableRotation;
Winson Chung400438b2011-01-16 17:53:48 -08003665 }
Winson Chung4b919f82012-05-01 10:44:08 -07003666 public void lockScreenOrientation() {
3667 if (isRotationEnabled()) {
3668 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
3669 .getConfiguration().orientation));
3670 }
3671 }
3672 public void unlockScreenOrientation(boolean immediate) {
3673 if (isRotationEnabled()) {
3674 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07003675 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07003676 } else {
3677 mHandler.postDelayed(new Runnable() {
3678 public void run() {
3679 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
3680 }
3681 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07003682 }
Winson Chung4b919f82012-05-01 10:44:08 -07003683 }
Winson Chung400438b2011-01-16 17:53:48 -08003684 }
3685
Winson Chung82f55532011-08-09 14:14:23 -07003686 /* Cling related */
Winson Chung7d7541e2011-09-16 20:14:36 -07003687 private boolean isClingsEnabled() {
Brett Chabot2a9e2282011-08-23 15:03:13 -07003688 // disable clings when running in a test harness
Winson Chung7d7541e2011-09-16 20:14:36 -07003689 if(ActivityManager.isRunningInTestHarness()) return false;
Brett Chabot2a9e2282011-08-23 15:03:13 -07003690
Winson Chung7d7541e2011-09-16 20:14:36 -07003691 return true;
Winson Chung82f55532011-08-09 14:14:23 -07003692 }
Michael Jurka22143132012-10-04 17:42:38 +02003693
Winson Chung7d7541e2011-09-16 20:14:36 -07003694 private Cling initCling(int clingId, int[] positionData, boolean animate, int delay) {
Michael Jurka22143132012-10-04 17:42:38 +02003695 final Cling cling = (Cling) findViewById(clingId);
Winson Chung7d7541e2011-09-16 20:14:36 -07003696 if (cling != null) {
3697 cling.init(this, positionData);
3698 cling.setVisibility(View.VISIBLE);
3699 cling.setLayerType(View.LAYER_TYPE_HARDWARE, null);
3700 if (animate) {
3701 cling.buildLayer();
3702 cling.setAlpha(0f);
3703 cling.animate()
3704 .alpha(1f)
Winson Chung7a74ac92011-09-20 17:43:51 -07003705 .setInterpolator(new AccelerateInterpolator())
Winson Chung7d7541e2011-09-16 20:14:36 -07003706 .setDuration(SHOW_CLING_DURATION)
3707 .setStartDelay(delay)
3708 .start();
3709 } else {
3710 cling.setAlpha(1f);
3711 }
Michael Jurka22143132012-10-04 17:42:38 +02003712 cling.setFocusableInTouchMode(true);
3713 cling.post(new Runnable() {
3714 public void run() {
3715 cling.setFocusable(true);
3716 cling.requestFocus();
3717 }
3718 });
3719 mHideFromAccessibilityHelper.setImportantForAccessibilityToNo(
3720 mDragLayer, clingId == R.id.all_apps_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003721 }
3722 return cling;
3723 }
Michael Jurka22143132012-10-04 17:42:38 +02003724
Winson Chung7d7541e2011-09-16 20:14:36 -07003725 private void dismissCling(final Cling cling, final String flag, int duration) {
Michael Jurka22143132012-10-04 17:42:38 +02003726 if (cling != null && cling.getVisibility() == View.VISIBLE) {
Michael Jurka2ecf9952012-06-18 12:52:28 -07003727 ObjectAnimator anim = LauncherAnimUtils.ofFloat(cling, "alpha", 0f);
Winson Chung7d7541e2011-09-16 20:14:36 -07003728 anim.setDuration(duration);
Winson Chung82f55532011-08-09 14:14:23 -07003729 anim.addListener(new AnimatorListenerAdapter() {
3730 public void onAnimationEnd(Animator animation) {
3731 cling.setVisibility(View.GONE);
3732 cling.cleanup();
Winson Chung46353de2012-02-16 14:05:10 -08003733 // We should update the shared preferences on a background thread
3734 new Thread("dismissClingThread") {
3735 public void run() {
3736 SharedPreferences.Editor editor = mSharedPrefs.edit();
3737 editor.putBoolean(flag, true);
3738 editor.commit();
3739 }
3740 }.start();
Winson Chung82f55532011-08-09 14:14:23 -07003741 };
3742 });
3743 anim.start();
Michael Jurka22143132012-10-04 17:42:38 +02003744 mHideFromAccessibilityHelper.restoreImportantForAccessibility(mDragLayer);
Winson Chung82f55532011-08-09 14:14:23 -07003745 }
3746 }
Michael Jurka22143132012-10-04 17:42:38 +02003747
Winson Chung9d9d74f2011-09-19 11:49:12 -07003748 private void removeCling(int id) {
3749 final View cling = findViewById(id);
3750 if (cling != null) {
3751 final ViewGroup parent = (ViewGroup) cling.getParent();
3752 parent.post(new Runnable() {
3753 @Override
3754 public void run() {
3755 parent.removeView(cling);
3756 }
3757 });
Michael Jurka22143132012-10-04 17:42:38 +02003758 mHideFromAccessibilityHelper.restoreImportantForAccessibility(mDragLayer);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003759 }
3760 }
Michael Jurka974c3862012-05-22 22:00:31 -07003761
3762 private boolean skipCustomClingIfNoAccounts() {
3763 Cling cling = (Cling) findViewById(R.id.workspace_cling);
3764 boolean customCling = cling.getDrawIdentifier().equals("workspace_custom");
3765 if (customCling) {
3766 AccountManager am = AccountManager.get(this);
3767 Account[] accounts = am.getAccountsByType("com.google");
3768 return accounts.length == 0;
3769 }
3770 return false;
3771 }
3772
Winson Chung7d7541e2011-09-16 20:14:36 -07003773 public void showFirstRunWorkspaceCling() {
Winson Chung7d7541e2011-09-16 20:14:36 -07003774 // Enable the clings only if they have not been dismissed before
Winson Chung46353de2012-02-16 14:05:10 -08003775 if (isClingsEnabled() &&
Michael Jurka974c3862012-05-22 22:00:31 -07003776 !mSharedPrefs.getBoolean(Cling.WORKSPACE_CLING_DISMISSED_KEY, false) &&
3777 !skipCustomClingIfNoAccounts() ) {
Michael Jurka45355c42012-10-08 13:21:35 +02003778 // If we're not using the default workspace layout, replace workspace cling
3779 // with a custom workspace cling (usually specified in an overlay)
3780 // For now, only do this on tablets
3781 if (mSharedPrefs.getInt(LauncherProvider.DEFAULT_WORKSPACE_RESOURCE_ID, 0) != 0 &&
Michael Jurkaa1131212012-10-09 14:46:26 +02003782 getResources().getBoolean(R.bool.config_useCustomClings)) {
Michael Jurka45355c42012-10-08 13:21:35 +02003783 // Use a custom cling
3784 View cling = findViewById(R.id.workspace_cling);
3785 ViewGroup clingParent = (ViewGroup) cling.getParent();
3786 int clingIndex = clingParent.indexOfChild(cling);
3787 clingParent.removeViewAt(clingIndex);
3788 View customCling = mInflater.inflate(R.layout.custom_workspace_cling, clingParent, false);
3789 clingParent.addView(customCling, clingIndex);
3790 customCling.setId(R.id.workspace_cling);
3791 }
Winson Chung7d7541e2011-09-16 20:14:36 -07003792 initCling(R.id.workspace_cling, null, false, 0);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003793 } else {
3794 removeCling(R.id.workspace_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003795 }
3796 }
3797 public void showFirstRunAllAppsCling(int[] position) {
Winson Chung7d7541e2011-09-16 20:14:36 -07003798 // Enable the clings only if they have not been dismissed before
Winson Chung46353de2012-02-16 14:05:10 -08003799 if (isClingsEnabled() &&
3800 !mSharedPrefs.getBoolean(Cling.ALLAPPS_CLING_DISMISSED_KEY, false)) {
Winson Chung7d7541e2011-09-16 20:14:36 -07003801 initCling(R.id.all_apps_cling, position, true, 0);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003802 } else {
3803 removeCling(R.id.all_apps_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003804 }
3805 }
3806 public Cling showFirstRunFoldersCling() {
Winson Chung7d7541e2011-09-16 20:14:36 -07003807 // Enable the clings only if they have not been dismissed before
Winson Chung46353de2012-02-16 14:05:10 -08003808 if (isClingsEnabled() &&
3809 !mSharedPrefs.getBoolean(Cling.FOLDER_CLING_DISMISSED_KEY, false)) {
3810 return initCling(R.id.folder_cling, null, true, 0);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003811 } else {
3812 removeCling(R.id.folder_cling);
Winson Chung46353de2012-02-16 14:05:10 -08003813 return null;
Winson Chung7d7541e2011-09-16 20:14:36 -07003814 }
Winson Chung7d7541e2011-09-16 20:14:36 -07003815 }
3816 public boolean isFolderClingVisible() {
3817 Cling cling = (Cling) findViewById(R.id.folder_cling);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003818 if (cling != null) {
3819 return cling.getVisibility() == View.VISIBLE;
3820 }
3821 return false;
Winson Chung7d7541e2011-09-16 20:14:36 -07003822 }
Winson Chung82f55532011-08-09 14:14:23 -07003823 public void dismissWorkspaceCling(View v) {
3824 Cling cling = (Cling) findViewById(R.id.workspace_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003825 dismissCling(cling, Cling.WORKSPACE_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
Winson Chung82f55532011-08-09 14:14:23 -07003826 }
3827 public void dismissAllAppsCling(View v) {
3828 Cling cling = (Cling) findViewById(R.id.all_apps_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003829 dismissCling(cling, Cling.ALLAPPS_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
3830 }
3831 public void dismissFolderCling(View v) {
3832 Cling cling = (Cling) findViewById(R.id.folder_cling);
3833 dismissCling(cling, Cling.FOLDER_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
Winson Chung82f55532011-08-09 14:14:23 -07003834 }
3835
Winson Chung80baf5a2010-08-09 16:03:15 -07003836 /**
Joe Onoratobe386092009-11-17 17:32:16 -08003837 * Prints out out state for debugging.
3838 */
3839 public void dumpState() {
3840 Log.d(TAG, "BEGIN launcher2 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08003841 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08003842 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
3843 Log.d(TAG, "mRestoring=" + mRestoring);
3844 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
3845 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07003846 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08003847 mModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07003848
Winson Chung785d2eb2011-04-14 16:08:02 -07003849 if (mAppsCustomizeContent != null) {
3850 mAppsCustomizeContent.dumpState();
3851 }
Joe Onoratobe386092009-11-17 17:32:16 -08003852 Log.d(TAG, "END launcher2 dump state");
3853 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07003854
3855 @Override
3856 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
3857 super.dump(prefix, fd, writer, args);
3858 writer.println(" ");
3859 writer.println("Debug logs: ");
3860 for (int i = 0; i < sDumpLogs.size(); i++) {
3861 writer.println(" " + sDumpLogs.get(i));
3862 }
3863 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07003864
3865 public static void dumpDebugLogsToConsole() {
3866 Log.d(TAG, "");
3867 Log.d(TAG, "*********************");
3868 Log.d(TAG, "Launcher debug logs: ");
3869 for (int i = 0; i < sDumpLogs.size(); i++) {
3870 Log.d(TAG, " " + sDumpLogs.get(i));
3871 }
3872 Log.d(TAG, "*********************");
3873 Log.d(TAG, "");
3874 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003875}
Michael Jurka2763be32011-02-24 11:19:57 -08003876
Michael Jurkaabded662011-03-04 12:06:57 -08003877interface LauncherTransitionable {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003878 View getContent();
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003879 void onLauncherTransitionPrepare(Launcher l, boolean animated, boolean toWorkspace);
Michael Jurkabed61d22012-02-14 22:51:29 -08003880 void onLauncherTransitionStart(Launcher l, boolean animated, boolean toWorkspace);
Winson Chung70442722012-02-10 15:43:22 -08003881 void onLauncherTransitionStep(Launcher l, float t);
Michael Jurkabed61d22012-02-14 22:51:29 -08003882 void onLauncherTransitionEnd(Launcher l, boolean animated, boolean toWorkspace);
Michael Jurka2763be32011-02-24 11:19:57 -08003883}