blob: 70c641b920bff071a757b02ec89c838ccc8eb3d0 [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;
Joe Onoratobe386092009-11-17 17:32:16 -080064import android.os.SystemProperties;
Patrick Dubroy4ed62782010-08-17 15:11:18 -070065import android.provider.Settings;
Amith Yamasani6d7fe502010-11-16 09:05:07 -080066import android.speech.RecognizerIntent;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080067import android.text.Selection;
68import android.text.SpannableStringBuilder;
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;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700102import java.io.FileNotFoundException;
103import java.io.IOException;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700104import java.io.PrintWriter;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700105import java.util.ArrayList;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700106import java.util.Collection;
107import java.util.Collections;
108import java.util.Comparator;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700109import java.util.HashMap;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700110import java.util.HashSet;
Michael Jurkad7c28052012-04-27 15:43:36 -0700111import java.util.List;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700112import java.util.Set;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700113
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800114/**
115 * Default launcher application.
116 */
Michael Jurka946ad472010-07-09 18:05:18 -0700117public final class Launcher extends Activity
Michael Jurka0e260592010-06-30 17:07:39 -0700118 implements View.OnClickListener, OnLongClickListener, LauncherModel.Callbacks,
119 AllAppsView.Watcher, View.OnTouchListener {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800120 static final String TAG = "Launcher";
Joe Onoratocc67f472010-06-08 10:54:30 -0700121 static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800122
Joe Onorato9c1289c2009-08-17 11:03:03 -0400123 static final boolean PROFILE_STARTUP = false;
Daniel Sandler843e8602010-06-07 14:59:01 -0400124 static final boolean DEBUG_WIDGETS = false;
Winson Chunga2413752012-04-03 14:22:34 -0700125 static final boolean DEBUG_STRICT_MODE = false;
Romain Guy6fefcf12009-06-11 13:07:43 -0700126
Winson Chung70d72102011-08-12 11:24:35 -0700127 private static final int MENU_GROUP_WALLPAPER = 1;
128 private static final int MENU_WALLPAPER_SETTINGS = Menu.FIRST + 1;
129 private static final int MENU_MANAGE_APPS = MENU_WALLPAPER_SETTINGS + 1;
Winson Chung236d4312011-08-22 15:12:27 -0700130 private static final int MENU_SYSTEM_SETTINGS = MENU_MANAGE_APPS + 1;
131 private static final int MENU_HELP = MENU_SYSTEM_SETTINGS + 1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800132
133 private static final int REQUEST_CREATE_SHORTCUT = 1;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700134 private static final int REQUEST_CREATE_APPWIDGET = 5;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800135 private static final int REQUEST_PICK_APPLICATION = 6;
136 private static final int REQUEST_PICK_SHORTCUT = 7;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700137 private static final int REQUEST_PICK_APPWIDGET = 9;
Mike Clerona0618e42009-10-22 13:55:21 -0700138 private static final int REQUEST_PICK_WALLPAPER = 10;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800139
Michael Jurka8b805b12012-04-18 14:23:14 -0700140 private static final int REQUEST_BIND_APPWIDGET = 11;
141
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800142 static final String EXTRA_SHORTCUT_DUPLICATE = "duplicate";
143
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800144 static final int SCREEN_COUNT = 5;
145 static final int DEFAULT_SCREEN = 2;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800146
Romain Guy98d01652009-06-30 16:21:04 -0700147 private static final String PREFERENCES = "launcher.preferences";
Adam Cohen23a4d302011-12-01 17:26:44 -0800148 static final String FORCE_ENABLE_ROTATION_PROPERTY = "launcher.force_enable_rotation";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800149
Winson Chung2672ff92012-05-04 16:22:30 -0700150 // The Intent extra that defines whether to ignore the launch animation
151 static final String INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION =
152 "com.android.launcher.intent.extra.shortcut.INGORE_LAUNCH_ANIMATION";
153
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800154 // Type: int
155 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
Michael Jurka883f55b2010-10-21 15:47:14 -0700156 // Type: int
157 private static final String RUNTIME_STATE = "launcher.state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800158 // Type: int
Winson Chung3d503fb2011-07-13 17:25:49 -0700159 private static final String RUNTIME_STATE_PENDING_ADD_CONTAINER = "launcher.add_container";
160 // Type: int
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800161 private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
162 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700163 private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cell_x";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800164 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700165 private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cell_y";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800166 // Type: boolean
167 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME = "launcher.rename_folder";
168 // Type: long
169 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME_ID = "launcher.rename_folder_id";
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700170 // Type: int
171 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_X = "launcher.add_span_x";
172 // Type: int
173 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_Y = "launcher.add_span_y";
174 // Type: parcelable
175 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_INFO = "launcher.add_widget_info";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800176
Patrick Dubroyceae05d2010-08-30 10:40:53 -0700177 private static final String TOOLBAR_ICON_METADATA_NAME = "com.android.launcher.toolbar_icon";
Michael Jurkaae65ee32012-04-30 11:45:54 -0700178 private static final String TOOLBAR_SEARCH_ICON_METADATA_NAME =
179 "com.android.launcher.toolbar_search_icon";
180 private static final String TOOLBAR_VOICE_SEARCH_ICON_METADATA_NAME =
181 "com.android.launcher.toolbar_voice_search_icon";
Patrick Dubroyceae05d2010-08-30 10:40:53 -0700182
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700183 /** The different states that Launcher can be in. */
Winson Chung36e6c5b2012-07-19 14:53:05 -0700184 private enum State { NONE, WORKSPACE, APPS_CUSTOMIZE, APPS_CUSTOMIZE_SPRING_LOADED };
Michael Jurkac0e8fca2010-10-06 16:41:29 -0700185 private State mState = State.WORKSPACE;
186 private AnimatorSet mStateAnimation;
Michael Jurkab737ee62011-11-15 15:57:22 -0800187 private AnimatorSet mDividerAnimator;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700188
Joe Onorato9c1289c2009-08-17 11:03:03 -0400189 static final int APPWIDGET_HOST_ID = 1024;
Winson Chung557d6ed2011-07-08 15:34:52 -0700190 private static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
191 private static final int EXIT_SPRINGLOADED_MODE_LONG_TIMEOUT = 600;
Winson Chung7a74ac92011-09-20 17:43:51 -0700192 private static final int SHOW_CLING_DURATION = 550;
Winson Chung7d7541e2011-09-16 20:14:36 -0700193 private static final int DISMISS_CLING_DURATION = 250;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800194
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800195 private static final Object sLock = new Object();
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800196 private static int sScreen = DEFAULT_SCREEN;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800197
Winson Chunga2413752012-04-03 14:22:34 -0700198 // How long to wait before the new-shortcut animation automatically pans the workspace
199 private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 10;
200
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800201 private final BroadcastReceiver mCloseSystemDialogsReceiver
202 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800203 private final ContentObserver mWidgetObserver = new AppWidgetResetObserver();
204
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800205 private LayoutInflater mInflater;
206
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800207 private Workspace mWorkspace;
Michael Jurkab737ee62011-11-15 15:57:22 -0800208 private View mQsbDivider;
209 private View mDockDivider;
210 private DragLayer mDragLayer;
211 private DragController mDragController;
Romain Guycbb89e42009-06-08 15:52:54 -0700212
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700213 private AppWidgetManager mAppWidgetManager;
214 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700215
Michael Jurkac9d95c52011-08-29 14:03:34 -0700216 private ItemInfo mPendingAddInfo = new ItemInfo();
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700217 private AppWidgetProviderInfo mPendingAddWidgetInfo;
218
Michael Jurka0280c3b2010-09-17 15:00:07 -0700219 private int[] mTmpAddItemCellCoordinates = new int[2];
220
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800221 private FolderInfo mFolderInfo;
222
Winson Chung3d503fb2011-07-13 17:25:49 -0700223 private Hotseat mHotseat;
Michael Jurka838a4ca2011-02-07 13:33:06 -0800224 private View mAllAppsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700225
Winson Chungc51db6a2011-10-05 11:44:49 -0700226 private SearchDropTargetBar mSearchDropTargetBar;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700227 private AppsCustomizeTabHost mAppsCustomizeTabHost;
228 private AppsCustomizePagedView mAppsCustomizeContent;
229 private boolean mAutoAdvanceRunning = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800230
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800231 private Bundle mSavedState;
Winson Chung36e6c5b2012-07-19 14:53:05 -0700232 // We set the state in both onCreate and then onNewIntent in some cases, which causes both
233 // scroll issues (because the workspace may not have been measured yet) and extra work.
234 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
235 private State mOnResumeState = State.NONE;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800236
237 private SpannableStringBuilder mDefaultKeySsb = null;
238
Joe Onorato9c1289c2009-08-17 11:03:03 -0400239 private boolean mWorkspaceLoading = true;
240
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800241 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800242 private boolean mRestoring;
243 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700244 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800245
Winson Chung36e6c5b2012-07-19 14:53:05 -0700246 // Keep track of whether the user has left launcher
247 private static boolean sPausedFromUserAction = false;
248
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800249 private Bundle mSavedInstanceState;
250
Joe Onorato9c1289c2009-08-17 11:03:03 -0400251 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800252 private IconCache mIconCache;
Adam Cohend113e0c2010-11-11 10:48:05 -0800253 private boolean mUserPresent = true;
254 private boolean mVisible = false;
255 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400256
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700257 private static LocaleConfiguration sLocaleConfiguration = null;
258
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700259 private static HashMap<Long, FolderInfo> sFolders = new HashMap<Long, FolderInfo>();
Romain Guycbb89e42009-06-08 15:52:54 -0700260
Patrick Dubroyceae05d2010-08-30 10:40:53 -0700261 private Intent mAppMarketIntent = null;
262
Adam Cohended9f8d2010-11-03 13:25:16 -0700263 // Related to the auto-advancing of widgets
264 private final int ADVANCE_MSG = 1;
265 private final int mAdvanceInterval = 20000;
266 private final int mAdvanceStagger = 250;
267 private long mAutoAdvanceSentTime;
268 private long mAutoAdvanceTimeLeft = -1;
269 private HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
270 new HashMap<View, AppWidgetProviderInfo>();
271
Winson Chung400438b2011-01-16 17:53:48 -0800272 // Determines how long to wait after a rotation before restoring the screen orientation to
273 // match the sensor state.
274 private final int mRestoreScreenOrientationDelay = 500;
275
Michael Jurka4ef207b2010-11-29 17:05:45 -0800276 // External icons saved in case of resource changes, orientation, etc.
Winson Chungdff8ebb2011-09-08 17:25:31 -0700277 private static Drawable.ConstantState[] sGlobalSearchIcon = new Drawable.ConstantState[2];
278 private static Drawable.ConstantState[] sVoiceSearchIcon = new Drawable.ConstantState[2];
279 private static Drawable.ConstantState[] sAppMarketIcon = new Drawable.ConstantState[2];
Michael Jurka4ef207b2010-11-29 17:05:45 -0800280
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700281 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
282
Winson Chung46353de2012-02-16 14:05:10 -0800283 // We only want to get the SharedPreferences once since it does an FS stat each time we get
284 // it from the context.
285 private SharedPreferences mSharedPrefs;
286
Winson Chungf0c6ae02012-03-21 16:10:31 -0700287 // Holds the page that we need to animate to, and the icon views that we need to animate up
288 // when we scroll to that page on resume.
289 private int mNewShortcutAnimatePage = -1;
290 private ArrayList<View> mNewShortcutAnimateViews = new ArrayList<View>();
Adam Cohen268c4752012-06-06 17:47:33 -0700291 private ImageView mFolderIconImageView;
292 private Bitmap mFolderIconBitmap;
293 private Canvas mFolderIconCanvas;
294 private Rect mRectForFolderAnimation = new Rect();
Adam Cohen2801caf2011-05-13 20:57:39 -0700295
Michael Jurkaddd62e92011-02-16 17:49:14 -0800296 private BubbleTextView mWaitingForResume;
297
Michael Jurkac1f5d262011-09-30 19:32:27 -0700298 private Runnable mBuildLayersRunnable = new Runnable() {
299 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700300 if (mWorkspace != null) {
301 mWorkspace.buildPageHardwareLayers();
302 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700303 }
304 };
305
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800306 private static ArrayList<PendingAddArguments> sPendingAddList
307 = new ArrayList<PendingAddArguments>();
308
309 private static class PendingAddArguments {
310 int requestCode;
311 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700312 long container;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800313 int screen;
314 int cellX;
315 int cellY;
316 }
317
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800318 @Override
319 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700320 if (DEBUG_STRICT_MODE) {
321 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
322 .detectDiskReads()
323 .detectDiskWrites()
324 .detectNetwork() // or .detectAll() for all detectable problems
325 .penaltyLog()
326 .build());
327 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
328 .detectLeakedSqlLiteObjects()
329 .detectLeakedClosableObjects()
330 .penaltyLog()
331 .penaltyDeath()
332 .build());
333 }
334
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800335 super.onCreate(savedInstanceState);
Joe Onorato0589f0f2010-02-08 13:44:00 -0800336 LauncherApplication app = ((LauncherApplication)getApplication());
Winson Chungf0c6ae02012-03-21 16:10:31 -0700337 mSharedPrefs = getSharedPreferences(LauncherApplication.getSharedPreferencesKey(),
338 Context.MODE_PRIVATE);
Joe Onorato0589f0f2010-02-08 13:44:00 -0800339 mModel = app.setLauncher(this);
340 mIconCache = app.getIconCache();
Joe Onorato41a12d22009-10-31 18:30:00 -0400341 mDragController = new DragController(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800342 mInflater = getLayoutInflater();
Romain Guycbb89e42009-06-08 15:52:54 -0700343
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700344 mAppWidgetManager = AppWidgetManager.getInstance(this);
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700345 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
346 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700347
Adam Cohend7d37b12012-07-18 16:15:08 -0700348 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
349 // this also ensures that any synchronous binding below doesn't re-trigger another
350 // LauncherModel load.
351 mPaused = false;
352
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800353 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200354 android.os.Debug.startMethodTracing(
355 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800356 }
357
358 checkForLocaleChange();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800359 setContentView(R.layout.launcher);
360 setupViews();
Winson Chung7d7541e2011-09-16 20:14:36 -0700361 showFirstRunWorkspaceCling();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800362
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800363 registerContentObservers();
364
Joe Onorato7c312c12009-08-13 21:36:53 -0700365 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700366
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800367 mSavedState = savedInstanceState;
368 restoreState(mSavedState);
369
Winson Chunga12a2502010-12-20 14:41:35 -0800370 // Update customization drawer _after_ restoring the states
Winson Chung785d2eb2011-04-14 16:08:02 -0700371 if (mAppsCustomizeContent != null) {
372 mAppsCustomizeContent.onPackagesUpdated();
373 }
Winson Chunga12a2502010-12-20 14:41:35 -0800374
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800375 if (PROFILE_STARTUP) {
376 android.os.Debug.stopMethodTracing();
377 }
378
379 if (!mRestoring) {
Winson Chung36e6c5b2012-07-19 14:53:05 -0700380 if (sPausedFromUserAction) {
381 // If the user leaves launcher, then we should just load items asynchronously when
382 // they return.
383 mModel.startLoader(true, -1);
384 } else {
385 // We only load the page synchronously if the user rotates (or triggers a
386 // configuration change) while launcher is in the foreground
387 mModel.startLoader(true, mWorkspace.getCurrentPage());
388 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800389 }
390
Michael Jurkac57b7a82011-08-09 22:02:20 -0700391 if (!mModel.isAllAppsLoaded()) {
392 ViewGroup appsCustomizeContentParent = (ViewGroup) mAppsCustomizeContent.getParent();
393 mInflater.inflate(R.layout.apps_customize_progressbar, appsCustomizeContentParent);
394 }
395
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800396 // For handling default keys
397 mDefaultKeySsb = new SpannableStringBuilder();
398 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800399
400 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
401 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800402
Adam Cohenf9426d52012-06-04 17:26:21 -0700403 updateGlobalIcons();
404
405 // On large interfaces, we want the screen to auto-rotate based on the current orientation
406 unlockScreenOrientation(true);
407 }
408
Winson Chung36e6c5b2012-07-19 14:53:05 -0700409 protected void onUserLeaveHint() {
410 super.onUserLeaveHint();
411 sPausedFromUserAction = true;
412 }
413
Adam Cohenf9426d52012-06-04 17:26:21 -0700414 private void updateGlobalIcons() {
Winson Chungc51db6a2011-10-05 11:44:49 -0700415 boolean searchVisible = false;
416 boolean voiceVisible = false;
Michael Jurka4ef207b2010-11-29 17:05:45 -0800417 // If we have a saved version of these external icons, we load them up immediately
Winson Chungdff8ebb2011-09-08 17:25:31 -0700418 int coi = getCurrentOrientationIndexForGlobalIcons();
419 if (sGlobalSearchIcon[coi] == null || sVoiceSearchIcon[coi] == null ||
420 sAppMarketIcon[coi] == null) {
Winson Chungc51db6a2011-10-05 11:44:49 -0700421 updateAppMarketIcon();
422 searchVisible = updateGlobalSearchIcon();
423 voiceVisible = updateVoiceSearchIcon(searchVisible);
Winson Chungf0ea4d32011-06-06 14:27:16 -0700424 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700425 if (sGlobalSearchIcon[coi] != null) {
426 updateGlobalSearchIcon(sGlobalSearchIcon[coi]);
Winson Chungc51db6a2011-10-05 11:44:49 -0700427 searchVisible = true;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700428 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700429 if (sVoiceSearchIcon[coi] != null) {
430 updateVoiceSearchIcon(sVoiceSearchIcon[coi]);
Winson Chungc51db6a2011-10-05 11:44:49 -0700431 voiceVisible = true;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700432 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700433 if (sAppMarketIcon[coi] != null) {
434 updateAppMarketIcon(sAppMarketIcon[coi]);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800435 }
Winson Chungc51db6a2011-10-05 11:44:49 -0700436 mSearchDropTargetBar.onSearchPackagesChanged(searchVisible, voiceVisible);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800437 }
Romain Guycbb89e42009-06-08 15:52:54 -0700438
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800439 private void checkForLocaleChange() {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700440 if (sLocaleConfiguration == null) {
441 new AsyncTask<Void, Void, LocaleConfiguration>() {
442 @Override
443 protected LocaleConfiguration doInBackground(Void... unused) {
444 LocaleConfiguration localeConfiguration = new LocaleConfiguration();
445 readConfiguration(Launcher.this, localeConfiguration);
446 return localeConfiguration;
447 }
448
449 @Override
450 protected void onPostExecute(LocaleConfiguration result) {
451 sLocaleConfiguration = result;
452 checkForLocaleChange(); // recursive, but now with a locale configuration
453 }
454 }.execute();
455 return;
456 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700457
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800458 final Configuration configuration = getResources().getConfiguration();
459
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700460 final String previousLocale = sLocaleConfiguration.locale;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800461 final String locale = configuration.locale.toString();
462
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700463 final int previousMcc = sLocaleConfiguration.mcc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800464 final int mcc = configuration.mcc;
465
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700466 final int previousMnc = sLocaleConfiguration.mnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800467 final int mnc = configuration.mnc;
468
Romain Guy84f296c2009-11-04 15:00:44 -0800469 boolean localeChanged = !locale.equals(previousLocale) || mcc != previousMcc || mnc != previousMnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800470
Romain Guy84f296c2009-11-04 15:00:44 -0800471 if (localeChanged) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700472 sLocaleConfiguration.locale = locale;
473 sLocaleConfiguration.mcc = mcc;
474 sLocaleConfiguration.mnc = mnc;
Romain Guy98d01652009-06-30 16:21:04 -0700475
Joe Onorato0589f0f2010-02-08 13:44:00 -0800476 mIconCache.flush();
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700477
478 final LocaleConfiguration localeConfiguration = sLocaleConfiguration;
479 new Thread("WriteLocaleConfiguration") {
Gilles Debunnedd6c9922010-10-25 11:23:41 -0700480 @Override
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700481 public void run() {
482 writeConfiguration(Launcher.this, localeConfiguration);
483 }
484 }.start();
Romain Guy98d01652009-06-30 16:21:04 -0700485 }
486 }
487
488 private static class LocaleConfiguration {
489 public String locale;
490 public int mcc = -1;
491 public int mnc = -1;
492 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700493
Romain Guy98d01652009-06-30 16:21:04 -0700494 private static void readConfiguration(Context context, LocaleConfiguration configuration) {
495 DataInputStream in = null;
496 try {
497 in = new DataInputStream(context.openFileInput(PREFERENCES));
498 configuration.locale = in.readUTF();
499 configuration.mcc = in.readInt();
500 configuration.mnc = in.readInt();
501 } catch (FileNotFoundException e) {
502 // Ignore
503 } catch (IOException e) {
504 // Ignore
505 } finally {
506 if (in != null) {
507 try {
508 in.close();
509 } catch (IOException e) {
510 // Ignore
511 }
512 }
513 }
514 }
515
516 private static void writeConfiguration(Context context, LocaleConfiguration configuration) {
517 DataOutputStream out = null;
518 try {
519 out = new DataOutputStream(context.openFileOutput(PREFERENCES, MODE_PRIVATE));
520 out.writeUTF(configuration.locale);
521 out.writeInt(configuration.mcc);
522 out.writeInt(configuration.mnc);
523 out.flush();
524 } catch (FileNotFoundException e) {
525 // Ignore
526 } catch (IOException e) {
527 //noinspection ResultOfMethodCallIgnored
528 context.getFileStreamPath(PREFERENCES).delete();
529 } finally {
530 if (out != null) {
531 try {
532 out.close();
533 } catch (IOException e) {
534 // Ignore
535 }
536 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800537 }
538 }
539
Adam Cohen716b51e2011-06-30 12:09:54 -0700540 public DragLayer getDragLayer() {
541 return mDragLayer;
542 }
543
Winson Chung36a62fe2012-05-06 18:04:42 -0700544 boolean isDraggingEnabled() {
545 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
546 // that is subsequently removed from the workspace in startBinding().
547 return !mModel.isLoadingWorkspace();
548 }
549
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800550 static int getScreen() {
551 synchronized (sLock) {
552 return sScreen;
553 }
554 }
555
556 static void setScreen(int screen) {
557 synchronized (sLock) {
558 sScreen = screen;
559 }
560 }
561
Winson Chung557d6ed2011-07-08 15:34:52 -0700562 /**
563 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
564 * a configuration step, this allows the proper animations to run after other transitions.
565 */
566 private boolean completeAdd(PendingAddArguments args) {
Winson Chungb8472bb2011-08-05 13:49:21 -0700567 boolean result = false;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800568 switch (args.requestCode) {
569 case REQUEST_PICK_APPLICATION:
Winson Chung3d503fb2011-07-13 17:25:49 -0700570 completeAddApplication(args.intent, args.container, args.screen, args.cellX,
571 args.cellY);
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800572 break;
573 case REQUEST_PICK_SHORTCUT:
574 processShortcut(args.intent);
575 break;
576 case REQUEST_CREATE_SHORTCUT:
Winson Chung3d503fb2011-07-13 17:25:49 -0700577 completeAddShortcut(args.intent, args.container, args.screen, args.cellX,
578 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700579 result = true;
580 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800581 case REQUEST_CREATE_APPWIDGET:
582 int appWidgetId = args.intent.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1);
Adam Cohened66b2b2012-01-23 17:28:51 -0800583 completeAddAppWidget(appWidgetId, args.container, args.screen, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700584 result = true;
585 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800586 case REQUEST_PICK_WALLPAPER:
587 // We just wanted the activity result here so we can clear mWaitingForResult
588 break;
589 }
Michael Jurka27614d22012-04-02 06:40:22 -0700590 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
591 // if you turned the screen off and then back while in All Apps, Launcher would not
592 // return to the workspace. Clearing mAddInfo.container here fixes this issue
593 resetAddInfo();
Winson Chungb8472bb2011-08-05 13:49:21 -0700594 return result;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800595 }
596
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800597 @Override
Michael Jurka8b805b12012-04-18 14:23:14 -0700598 protected void onActivityResult(
599 final int requestCode, final int resultCode, final Intent data) {
600 if (requestCode == REQUEST_BIND_APPWIDGET) {
601 int appWidgetId = data != null ?
602 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
603 if (resultCode == RESULT_CANCELED) {
604 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
605 } else if (resultCode == RESULT_OK) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700606 addAppWidgetImpl(appWidgetId, mPendingAddInfo, null, mPendingAddWidgetInfo);
Michael Jurka8b805b12012-04-18 14:23:14 -0700607 }
608 return;
609 }
Winson Chung557d6ed2011-07-08 15:34:52 -0700610 boolean delayExitSpringLoadedMode = false;
Adam Cohened66b2b2012-01-23 17:28:51 -0800611 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
612 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700613 mWaitingForResult = false;
614
Adam Cohened66b2b2012-01-23 17:28:51 -0800615 // We have special handling for widgets
616 if (isWidgetDrop) {
617 int appWidgetId = data != null ?
618 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
Winson Chung5aaab772012-04-27 15:24:02 -0700619 if (appWidgetId < 0) {
620 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not returned from the \\" +
621 "widget configuration activity.");
622 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
623 } else {
624 completeTwoStageWidgetDrop(resultCode, appWidgetId);
625 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800626 return;
627 }
628
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800629 // The pattern used here is that a user PICKs a specific application,
630 // which, depending on the target, might need to CREATE the actual target.
Romain Guycbb89e42009-06-08 15:52:54 -0700631
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800632 // For example, the user would PICK_SHORTCUT for "Music playlist", and we
633 // launch over to the Music app to actually CREATE_SHORTCUT.
Winson Chungc7da5552011-08-10 15:28:45 -0700634 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800635 final PendingAddArguments args = new PendingAddArguments();
636 args.requestCode = requestCode;
637 args.intent = data;
Winson Chung3d503fb2011-07-13 17:25:49 -0700638 args.container = mPendingAddInfo.container;
639 args.screen = mPendingAddInfo.screen;
640 args.cellX = mPendingAddInfo.cellX;
641 args.cellY = mPendingAddInfo.cellY;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800642 if (isWorkspaceLocked()) {
643 sPendingAddList.add(args);
644 } else {
Winson Chung557d6ed2011-07-08 15:34:52 -0700645 delayExitSpringLoadedMode = completeAdd(args);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800646 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800647 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800648 mDragLayer.clearAnimatedView();
Winson Chung557d6ed2011-07-08 15:34:52 -0700649 // Exit spring loaded mode if necessary after cancelling the configuration of a widget
Adam Cohened66b2b2012-01-23 17:28:51 -0800650 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED), delayExitSpringLoadedMode,
651 null);
652 }
653
654 private void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700655 CellLayout cellLayout =
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700656 (CellLayout) mWorkspace.getChildAt(mPendingAddInfo.screen);
Adam Cohened66b2b2012-01-23 17:28:51 -0800657 Runnable onCompleteRunnable = null;
658 int animationType = 0;
659
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700660 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800661 if (resultCode == RESULT_OK) {
662 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
663 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700664 mPendingAddWidgetInfo);
665 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800666 onCompleteRunnable = new Runnable() {
667 @Override
668 public void run() {
669 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
670 mPendingAddInfo.screen, layout, null);
671 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED), false,
672 null);
673 }
674 };
675 } else if (resultCode == RESULT_CANCELED) {
676 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
677 onCompleteRunnable = new Runnable() {
678 @Override
679 public void run() {
680 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED), false,
681 null);
682 }
683 };
684 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700685 if (mDragLayer.getAnimatedView() != null) {
686 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
687 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
688 animationType, boundWidget, true);
689 } else {
690 // The animated view may be null in the case of a rotation during widget configuration
691 onCompleteRunnable.run();
692 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800693 }
694
695 @Override
696 protected void onResume() {
697 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700698
Winson Chung36e6c5b2012-07-19 14:53:05 -0700699 // Restore the previous launcher state
700 if (mOnResumeState == State.WORKSPACE) {
701 showWorkspace(false);
702 } else if (mOnResumeState == State.APPS_CUSTOMIZE) {
703 showAllApps(false);
704 }
705 mOnResumeState = State.NONE;
706
Winson Chungde0fb8f2012-05-08 14:37:08 -0700707 // Process any items that were added while Launcher was away
708 InstallShortcutReceiver.flushInstallQueue(this);
709
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800710 mPaused = false;
Winson Chung36e6c5b2012-07-19 14:53:05 -0700711 sPausedFromUserAction = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700712 if (mRestoring || mOnResumeNeedsLoad) {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400713 mWorkspaceLoading = true;
Adam Cohend7d37b12012-07-18 16:15:08 -0700714 mModel.startLoader(true, -1);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400715 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700716 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800717 }
Winson Chunge4e50662012-01-23 14:45:13 -0800718
719 // Reset the pressed state of icons that were locked in the press state while activities
720 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -0800721 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -0800722 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -0800723 mWaitingForResume.setStayPressed(false);
724 }
Winson Chunge4e50662012-01-23 14:45:13 -0800725 if (mAppsCustomizeContent != null) {
726 // Resets the previous all apps icon press state
727 mAppsCustomizeContent.resetDrawableState();
728 }
Adam Cohen06dff352012-06-01 17:17:08 -0700729 // It is possible that widgets can receive updates while launcher is not in the foreground.
730 // Consequently, the widgets will be inflated in the orientation of the foreground activity
731 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
732 // orientation.
Adam Cohen3d509322012-06-06 14:10:04 -0700733 getWorkspace().reinflateWidgetsIfNecessary();
Adam Cohenf9426d52012-06-04 17:26:21 -0700734
735 // Again, as with the above scenario, it's possible that one or more of the global icons
736 // were updated in the wrong orientation.
737 updateGlobalIcons();
Adam Cohen06dff352012-06-01 17:17:08 -0700738 }
739
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800740 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700741 protected void onPause() {
Winson Chungca889b32012-05-07 15:34:34 -0700742 // NOTE: We want all transitions from launcher to act as if the wallpaper were enabled
743 // to be consistent. So re-enable the flag here, and we will re-disable it as necessary
744 // when Launcher resumes and we are still in AllApps.
745 updateWallpaperVisibility(true);
746
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700747 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700748 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -0800749 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -0700750 mDragController.resetLastGestureUpTime();
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700751 }
Romain Guycbb89e42009-06-08 15:52:54 -0700752
Jeffrey Sharkey99c87582009-03-24 17:59:43 -0700753 @Override
754 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400755 // Flag the loader to stop early before switching
756 mModel.stopLoader();
Winson Chung785d2eb2011-04-14 16:08:02 -0700757 if (mAppsCustomizeContent != null) {
758 mAppsCustomizeContent.surrender();
759 }
Romain Guy13c2e7b2010-03-10 19:45:00 -0800760 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -0700761 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700762
Joe Onorato2d7e7d02010-01-29 15:57:19 -0800763 // We can't hide the IME if it was forced open. So don't bother
764 /*
765 @Override
766 public void onWindowFocusChanged(boolean hasFocus) {
767 super.onWindowFocusChanged(hasFocus);
768
769 if (hasFocus) {
770 final InputMethodManager inputManager = (InputMethodManager)
771 getSystemService(Context.INPUT_METHOD_SERVICE);
772 WindowManager.LayoutParams lp = getWindow().getAttributes();
773 inputManager.hideSoftInputFromWindow(lp.token, 0, new android.os.ResultReceiver(new
774 android.os.Handler()) {
775 protected void onReceiveResult(int resultCode, Bundle resultData) {
776 Log.d(TAG, "ResultReceiver got resultCode=" + resultCode);
777 }
778 });
779 Log.d(TAG, "called hideSoftInputFromWindow from onWindowFocusChanged");
780 }
781 }
782 */
783
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800784 private boolean acceptFilter() {
785 final InputMethodManager inputManager = (InputMethodManager)
786 getSystemService(Context.INPUT_METHOD_SERVICE);
787 return !inputManager.isFullscreenMode();
788 }
789
790 @Override
791 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -0700792 final int uniChar = event.getUnicodeChar();
793 final boolean handled = super.onKeyDown(keyCode, event);
794 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
795 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800796 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
797 keyCode, event);
798 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -0700799 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -0700800 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -0700801 // showSearchDialog()
802 // If there are multiple keystrokes before the search dialog takes focus,
803 // onSearchRequested() will be called for every keystroke,
804 // but it is idempotent, so it's fine.
805 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800806 }
807 }
808
Joe Onorato8a9625e2010-01-28 15:55:35 -0800809 // Eat the long press event so the keyboard doesn't come up.
810 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
811 return true;
812 }
813
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800814 return handled;
815 }
816
Karl Rosaen138a0412009-04-23 19:00:21 -0700817 private String getTypedText() {
818 return mDefaultKeySsb.toString();
819 }
820
821 private void clearTypedText() {
822 mDefaultKeySsb.clear();
823 mDefaultKeySsb.clearSpans();
824 Selection.setSelection(mDefaultKeySsb, 0);
825 }
826
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800827 /**
Michael Jurka883f55b2010-10-21 15:47:14 -0700828 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
829 * State
830 */
831 private static State intToState(int stateOrdinal) {
832 State state = State.WORKSPACE;
833 final State[] stateValues = State.values();
834 for (int i = 0; i < stateValues.length; i++) {
835 if (stateValues[i].ordinal() == stateOrdinal) {
836 state = stateValues[i];
837 break;
838 }
839 }
840 return state;
841 }
842
843 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800844 * Restores the previous state, if it exists.
845 *
846 * @param savedState The previous state.
847 */
848 private void restoreState(Bundle savedState) {
849 if (savedState == null) {
850 return;
851 }
852
Michael Jurka883f55b2010-10-21 15:47:14 -0700853 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungf0ea4d32011-06-06 14:27:16 -0700854 if (state == State.APPS_CUSTOMIZE) {
Winson Chung36e6c5b2012-07-19 14:53:05 -0700855 mOnResumeState = State.APPS_CUSTOMIZE;
Joe Onorato3a8820b2009-11-10 15:06:42 -0800856 }
857
Winson Chungf0c6ae02012-03-21 16:10:31 -0700858 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN, -1);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800859 if (currentScreen > -1) {
Michael Jurka0142d492010-08-25 17:46:15 -0700860 mWorkspace.setCurrentPage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800861 }
862
Winson Chung3d503fb2011-07-13 17:25:49 -0700863 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
864 final int pendingAddScreen = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -0700865
Winson Chung3d503fb2011-07-13 17:25:49 -0700866 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
867 mPendingAddInfo.container = pendingAddContainer;
868 mPendingAddInfo.screen = pendingAddScreen;
869 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
870 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700871 mPendingAddInfo.spanX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_X);
872 mPendingAddInfo.spanY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y);
873 mPendingAddWidgetInfo = savedState.getParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO);
Adam Cohen87a9f5b2012-05-29 16:16:51 -0700874 mWaitingForResult = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800875 mRestoring = true;
876 }
877
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700878
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800879 boolean renameFolder = savedState.getBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, false);
880 if (renameFolder) {
881 long id = savedState.getLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700882 mFolderInfo = mModel.getFolderById(this, sFolders, id);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800883 mRestoring = true;
884 }
Winson Chunga12a2502010-12-20 14:41:35 -0800885
Winson Chung785d2eb2011-04-14 16:08:02 -0700886
887 // Restore the AppsCustomize tab
888 if (mAppsCustomizeTabHost != null) {
889 String curTab = savedState.getString("apps_customize_currentTab");
890 if (curTab != null) {
Winson Chungf0ea4d32011-06-06 14:27:16 -0700891 // We set this directly so that there is no delay before the tab is set
Winson Chung785d2eb2011-04-14 16:08:02 -0700892 mAppsCustomizeContent.setContentType(
893 mAppsCustomizeTabHost.getContentTypeForTabTag(curTab));
894 mAppsCustomizeTabHost.setCurrentTabByTag(curTab);
Winson Chungf314b0e2011-08-16 11:54:27 -0700895 mAppsCustomizeContent.loadAssociatedPages(
896 mAppsCustomizeContent.getCurrentPage());
Winson Chung785d2eb2011-04-14 16:08:02 -0700897 }
898
Winson Chung5afbf7b2011-07-25 11:53:08 -0700899 int currentIndex = savedState.getInt("apps_customize_currentIndex");
900 mAppsCustomizeContent.restorePageForIndex(currentIndex);
Winson Chung785d2eb2011-04-14 16:08:02 -0700901 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800902 }
903
904 /**
905 * Finds all the views we need and configure them properly.
906 */
907 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -0700908 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -0400909
Winson Chung4c98d922011-05-31 16:50:48 -0700910 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
911 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Michael Jurkab737ee62011-11-15 15:57:22 -0800912 mQsbDivider = (ImageView) findViewById(R.id.qsb_divider);
913 mDockDivider = (ImageView) findViewById(R.id.dock_divider);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800914
Winson Chung4c98d922011-05-31 16:50:48 -0700915 // Setup the drag layer
916 mDragLayer.setup(this, dragController);
917
Winson Chung3d503fb2011-07-13 17:25:49 -0700918 // Setup the hotseat
919 mHotseat = (Hotseat) findViewById(R.id.hotseat);
920 if (mHotseat != null) {
921 mHotseat.setup(this);
922 }
923
Winson Chung4c98d922011-05-31 16:50:48 -0700924 // Setup the workspace
925 mWorkspace.setHapticFeedbackEnabled(false);
926 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -0700927 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -0700928 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -0700929
Winson Chungf0ea4d32011-06-06 14:27:16 -0700930 // Get the search/delete bar
Winson Chungc51db6a2011-10-05 11:44:49 -0700931 mSearchDropTargetBar = (SearchDropTargetBar) mDragLayer.findViewById(R.id.qsb_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -0700932
Winson Chungf0ea4d32011-06-06 14:27:16 -0700933 // Setup AppsCustomize
934 mAppsCustomizeTabHost = (AppsCustomizeTabHost)
935 findViewById(R.id.apps_customize_pane);
936 mAppsCustomizeContent = (AppsCustomizePagedView)
937 mAppsCustomizeTabHost.findViewById(R.id.apps_customize_pane_content);
Winson Chungc7450e32012-04-17 17:34:08 -0700938 mAppsCustomizeTabHost.setup(this);
Winson Chungf0ea4d32011-06-06 14:27:16 -0700939 mAppsCustomizeContent.setup(this, dragController);
Daniel Sandlerc9b18772010-04-22 14:37:59 -0400940
Michael Jurka5130e402011-10-13 04:55:35 -0700941 // Get the all apps button
942 mAllAppsButton = findViewById(R.id.all_apps_button);
943 if (mAllAppsButton != null) {
944 mAllAppsButton.setOnTouchListener(new View.OnTouchListener() {
945 @Override
946 public boolean onTouch(View v, MotionEvent event) {
947 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
948 onTouchDownAllAppsButton(v);
949 }
950 return false;
951 }
952 });
953 }
Winson Chung3d503fb2011-07-13 17:25:49 -0700954 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -0700955 dragController.setDragScoller(mWorkspace);
956 dragController.setScrollView(mDragLayer);
957 dragController.setMoveTarget(mWorkspace);
958 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -0700959 if (mSearchDropTargetBar != null) {
960 mSearchDropTargetBar.setup(this, dragController);
Michael Jurkae0f5a612011-02-07 16:45:41 -0800961 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800962 }
963
964 /**
965 * Creates a view representing a shortcut.
966 *
967 * @param info The data structure describing the shortcut.
968 *
969 * @return A View inflated from R.layout.application.
970 */
Joe Onorato0589f0f2010-02-08 13:44:00 -0800971 View createShortcut(ShortcutInfo info) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800972 return createShortcut(R.layout.application,
Michael Jurka0142d492010-08-25 17:46:15 -0700973 (ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800974 }
975
976 /**
977 * Creates a view representing a shortcut inflated from the specified resource.
978 *
979 * @param layoutResId The id of the XML layout used to create the shortcut.
980 * @param parent The group the shortcut belongs to.
981 * @param info The data structure describing the shortcut.
982 *
983 * @return A View inflated from layoutResId.
984 */
Joe Onorato0589f0f2010-02-08 13:44:00 -0800985 View createShortcut(int layoutResId, ViewGroup parent, ShortcutInfo info) {
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800986 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(layoutResId, parent, false);
987 favorite.applyFromShortcutInfo(info, mIconCache);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800988 favorite.setOnClickListener(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800989 return favorite;
990 }
991
992 /**
993 * Add an application shortcut to the workspace.
994 *
995 * @param data The intent describing the application.
996 * @param cellInfo The position on screen where to create the shortcut.
997 */
Winson Chung3d503fb2011-07-13 17:25:49 -0700998 void completeAddApplication(Intent data, long container, int screen, int cellX, int cellY) {
Michael Jurka0280c3b2010-09-17 15:00:07 -0700999 final int[] cellXY = mTmpAddItemCellCoordinates;
Winson Chung3d503fb2011-07-13 17:25:49 -07001000 final CellLayout layout = getCellLayout(container, screen);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001001
Adam Cohenfbba09b2011-07-18 21:43:05 -07001002 // First we check if we already know the exact location where we want to add this item.
1003 if (cellX >= 0 && cellY >= 0) {
1004 cellXY[0] = cellX;
1005 cellXY[1] = cellY;
1006 } else if (!layout.findCellForSpan(cellXY, 1, 1)) {
Winson Chung93eef082012-03-23 15:59:27 -07001007 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001008 return;
1009 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001010
Patrick Dubroy002cbf42011-03-03 16:36:21 -08001011 final ShortcutInfo info = mModel.getShortcutInfo(getPackageManager(), data, this);
Joe Onorato0589f0f2010-02-08 13:44:00 -08001012
Romain Guy73b979d2009-06-09 12:57:21 -07001013 if (info != null) {
Joe Onorato0589f0f2010-02-08 13:44:00 -08001014 info.setActivity(data.getComponent(), Intent.FLAG_ACTIVITY_NEW_TASK |
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001015 Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Joe Onorato0589f0f2010-02-08 13:44:00 -08001016 info.container = ItemInfo.NO_ID;
Winson Chung3d503fb2011-07-13 17:25:49 -07001017 mWorkspace.addApplicationShortcut(info, layout, container, screen, cellXY[0], cellXY[1],
Adam Cohenfbba09b2011-07-18 21:43:05 -07001018 isWorkspaceLocked(), cellX, cellY);
Joe Onorato0589f0f2010-02-08 13:44:00 -08001019 } else {
1020 Log.e(TAG, "Couldn't find ActivityInfo for selected application: " + data);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001021 }
1022 }
Romain Guycbb89e42009-06-08 15:52:54 -07001023
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001024 /**
1025 * Add a shortcut to the workspace.
1026 *
1027 * @param data The intent describing the shortcut.
1028 * @param cellInfo The position on screen where to create the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001029 */
Winson Chung3d503fb2011-07-13 17:25:49 -07001030 private void completeAddShortcut(Intent data, long container, int screen, int cellX,
1031 int cellY) {
1032 int[] cellXY = mTmpAddItemCellCoordinates;
1033 int[] touchXY = mPendingAddInfo.dropPos;
1034 CellLayout layout = getCellLayout(container, screen);
Romain Guycbb89e42009-06-08 15:52:54 -07001035
Michael Jurkad3ef3062010-11-23 16:23:58 -08001036 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001037
Adam Cohen558baaf2011-08-15 15:22:57 -07001038 ShortcutInfo info = mModel.infoFromShortcutIntent(this, data, null);
Adam Cohend9198822011-11-22 16:42:47 -08001039 if (info == null) {
1040 return;
1041 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001042 final View view = createShortcut(info);
1043
Adam Cohenfbba09b2011-07-18 21:43:05 -07001044 // First we check if we already know the exact location where we want to add this item.
1045 if (cellX >= 0 && cellY >= 0) {
1046 cellXY[0] = cellX;
1047 cellXY[1] = cellY;
1048 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001049
1050 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001051 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001052 true, null,null)) {
1053 return;
1054 }
1055 DragObject dragObject = new DragObject();
1056 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001057 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1058 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001059 return;
1060 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001061 } else if (touchXY != null) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08001062 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001063 int[] result = layout.findNearestVacantArea(touchXY[0], touchXY[1], 1, 1, cellXY);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001064 foundCellSpan = (result != null);
1065 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001066 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001067 }
1068
1069 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001070 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001071 return;
1072 }
1073
Adam Cohen558baaf2011-08-15 15:22:57 -07001074 LauncherModel.addItemToDatabase(this, info, container, screen, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001075
1076 if (!mRestoring) {
Winson Chung3d503fb2011-07-13 17:25:49 -07001077 mWorkspace.addInScreen(view, container, screen, cellXY[0], cellXY[1], 1, 1,
1078 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001079 }
1080 }
1081
Adam Cohen2f093b62012-04-30 18:59:53 -07001082 static int[] getSpanForWidget(Context context, ComponentName component, int minWidth,
1083 int minHeight) {
1084 Rect padding = AppWidgetHostView.getDefaultPaddingForWidget(context, component, null);
Adam Cohenf814aa02011-09-01 13:48:05 -07001085 // We want to account for the extra amount of padding that we are adding to the widget
1086 // to ensure that it gets the full amount of space that it has requested
1087 int requiredWidth = minWidth + padding.left + padding.right;
1088 int requiredHeight = minHeight + padding.top + padding.bottom;
Adam Cohen2f093b62012-04-30 18:59:53 -07001089 return CellLayout.rectToCell(context.getResources(), requiredWidth, requiredHeight, null);
Adam Cohenf814aa02011-09-01 13:48:05 -07001090 }
1091
Adam Cohen2f093b62012-04-30 18:59:53 -07001092 static int[] getSpanForWidget(Context context, AppWidgetProviderInfo info) {
1093 return getSpanForWidget(context, info.provider, info.minWidth, info.minHeight);
Adam Cohenf814aa02011-09-01 13:48:05 -07001094 }
1095
Adam Cohen2f093b62012-04-30 18:59:53 -07001096 static int[] getMinSpanForWidget(Context context, AppWidgetProviderInfo info) {
1097 return getSpanForWidget(context, info.provider, info.minResizeWidth, info.minResizeHeight);
Adam Cohencbf47e32011-09-16 17:32:37 -07001098 }
1099
Adam Cohen2f093b62012-04-30 18:59:53 -07001100 static int[] getSpanForWidget(Context context, PendingAddWidgetInfo info) {
1101 return getSpanForWidget(context, info.componentName, info.minWidth, info.minHeight);
Adam Cohenf814aa02011-09-01 13:48:05 -07001102 }
1103
Adam Cohen2f093b62012-04-30 18:59:53 -07001104 static int[] getMinSpanForWidget(Context context, PendingAddWidgetInfo info) {
1105 return getSpanForWidget(context, info.componentName, info.minResizeWidth,
Winson Chunga5c96362012-04-12 14:04:41 -07001106 info.minResizeHeight);
Adam Cohend41fbf52012-02-16 23:53:59 -08001107 }
1108
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001109 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001110 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001111 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001112 * @param appWidgetId The app widget id
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001113 * @param cellInfo The position on screen where to create the widget.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001114 */
Adam Cohened66b2b2012-01-23 17:28:51 -08001115 private void completeAddAppWidget(final int appWidgetId, long container, int screen,
1116 AppWidgetHostView hostView, AppWidgetProviderInfo appWidgetInfo) {
1117 if (appWidgetInfo == null) {
1118 appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
1119 }
Romain Guycbb89e42009-06-08 15:52:54 -07001120
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001121 // Calculate the grid spans needed to fit this widget
Winson Chung3d503fb2011-07-13 17:25:49 -07001122 CellLayout layout = getCellLayout(container, screen);
Adam Cohen09353862011-07-14 16:10:03 -07001123
Adam Cohen2f093b62012-04-30 18:59:53 -07001124 int[] minSpanXY = getMinSpanForWidget(this, appWidgetInfo);
1125 int[] spanXY = getSpanForWidget(this, appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001126
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001127 // Try finding open space on Launcher screen
Michael Jurkaa63c4522010-08-19 13:52:27 -07001128 // We have saved the position to which the widget was dragged-- this really only matters
1129 // if we are placing widgets on a "spring-loaded" screen
Winson Chung3d503fb2011-07-13 17:25:49 -07001130 int[] cellXY = mTmpAddItemCellCoordinates;
1131 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohend41fbf52012-02-16 23:53:59 -08001132 int[] finalSpan = new int[2];
Michael Jurka0280c3b2010-09-17 15:00:07 -07001133 boolean foundCellSpan = false;
Winson Chung3d503fb2011-07-13 17:25:49 -07001134 if (mPendingAddInfo.cellX >= 0 && mPendingAddInfo.cellY >= 0) {
1135 cellXY[0] = mPendingAddInfo.cellX;
1136 cellXY[1] = mPendingAddInfo.cellY;
Adam Cohend41fbf52012-02-16 23:53:59 -08001137 spanXY[0] = mPendingAddInfo.spanX;
1138 spanXY[1] = mPendingAddInfo.spanY;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001139 foundCellSpan = true;
1140 } else if (touchXY != null) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001141 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001142 int[] result = layout.findNearestVacantArea(
Adam Cohend41fbf52012-02-16 23:53:59 -08001143 touchXY[0], touchXY[1], minSpanXY[0], minSpanXY[1], spanXY[0],
1144 spanXY[1], cellXY, finalSpan);
1145 spanXY[0] = finalSpan[0];
1146 spanXY[1] = finalSpan[1];
Michael Jurkad3ef3062010-11-23 16:23:58 -08001147 foundCellSpan = (result != null);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001148 } else {
Adam Cohend41fbf52012-02-16 23:53:59 -08001149 foundCellSpan = layout.findCellForSpan(cellXY, minSpanXY[0], minSpanXY[1]);
Michael Jurkaa63c4522010-08-19 13:52:27 -07001150 }
1151
Michael Jurka0280c3b2010-09-17 15:00:07 -07001152 if (!foundCellSpan) {
Winson Chungf7640c82011-02-28 13:47:29 -08001153 if (appWidgetId != -1) {
1154 // Deleting an app widget ID is a void call but writes to disk before returning
1155 // to the caller...
Winson Chungf7640c82011-02-28 13:47:29 -08001156 new Thread("deleteAppWidgetId") {
1157 public void run() {
1158 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
1159 }
1160 }.start();
1161 }
Winson Chung93eef082012-03-23 15:59:27 -07001162 showOutOfSpaceMessage(isHotseatLayout(layout));
Romain Guy18042c82009-11-06 11:44:55 -08001163 return;
1164 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001165
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001166 // Build Launcher-specific widget info and save to database
Winson Chung11a49372012-04-27 15:12:38 -07001167 LauncherAppWidgetInfo launcherInfo = new LauncherAppWidgetInfo(appWidgetId,
1168 appWidgetInfo.provider);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001169 launcherInfo.spanX = spanXY[0];
1170 launcherInfo.spanY = spanXY[1];
Adam Cohend41fbf52012-02-16 23:53:59 -08001171 launcherInfo.minSpanX = mPendingAddInfo.minSpanX;
1172 launcherInfo.minSpanY = mPendingAddInfo.minSpanY;
Romain Guycbb89e42009-06-08 15:52:54 -07001173
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001174 LauncherModel.addItemToDatabase(this, launcherInfo,
Winson Chung3d503fb2011-07-13 17:25:49 -07001175 container, screen, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001176
1177 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001178 if (hostView == null) {
1179 // Perform actual inflation because we're live
1180 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
1181 launcherInfo.hostView.setAppWidget(appWidgetId, appWidgetInfo);
1182 } else {
1183 // The AppWidgetHostView has already been inflated and instantiated
1184 launcherInfo.hostView = hostView;
1185 }
Romain Guycbb89e42009-06-08 15:52:54 -07001186
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001187 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001188 launcherInfo.hostView.setVisibility(View.VISIBLE);
Winson Chung211bac32012-05-15 13:43:57 -07001189 launcherInfo.notifyWidgetSizeChanged(this);
Winson Chung3d503fb2011-07-13 17:25:49 -07001190 mWorkspace.addInScreen(launcherInfo.hostView, container, screen, cellXY[0], cellXY[1],
Joe Onorato9c1289c2009-08-17 11:03:03 -04001191 launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001192
1193 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001194 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001195 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001196 }
Romain Guycbb89e42009-06-08 15:52:54 -07001197
Adam Cohended9f8d2010-11-03 13:25:16 -07001198 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1199 @Override
1200 public void onReceive(Context context, Intent intent) {
1201 final String action = intent.getAction();
1202 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1203 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001204 mDragLayer.clearAllResizeFrames();
Adam Cohended9f8d2010-11-03 13:25:16 -07001205 updateRunning();
Winson Chung337cd9d2011-03-30 10:39:30 -07001206
Winson Chungc100e8e2011-08-09 16:02:43 -07001207 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001208 // processing a multi-step drop
Winson Chungc100e8e2011-08-09 16:02:43 -07001209 if (mAppsCustomizeTabHost != null && mPendingAddInfo.container == ItemInfo.NO_ID) {
1210 mAppsCustomizeTabHost.reset();
1211 showWorkspace(false);
Winson Chung785d2eb2011-04-14 16:08:02 -07001212 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001213 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1214 mUserPresent = true;
1215 updateRunning();
1216 }
1217 }
1218 };
1219
1220 @Override
1221 public void onAttachedToWindow() {
1222 super.onAttachedToWindow();
1223
1224 // Listen for broadcasts related to user-presence
1225 final IntentFilter filter = new IntentFilter();
1226 filter.addAction(Intent.ACTION_SCREEN_OFF);
1227 filter.addAction(Intent.ACTION_USER_PRESENT);
1228 registerReceiver(mReceiver, filter);
1229
Adam Cohend113e0c2010-11-11 10:48:05 -08001230 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001231 mVisible = true;
1232 }
1233
1234 @Override
1235 public void onDetachedFromWindow() {
1236 super.onDetachedFromWindow();
1237 mVisible = false;
1238
Adam Cohend113e0c2010-11-11 10:48:05 -08001239 if (mAttached) {
1240 unregisterReceiver(mReceiver);
1241 mAttached = false;
1242 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001243 updateRunning();
1244 }
1245
1246 public void onWindowVisibilityChanged(int visibility) {
1247 mVisible = visibility == View.VISIBLE;
1248 updateRunning();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001249 // The following code used to be in onResume, but it turns out onResume is called when
1250 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1251 // is a more appropriate event to handle
1252 if (mVisible) {
1253 mAppsCustomizeTabHost.onWindowVisible();
1254 if (!mWorkspaceLoading) {
1255 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001256 // We want to let Launcher draw itself at least once before we force it to build
1257 // layers on all the workspace pages, so that transitioning to Launcher from other
1258 // apps is nice and speedy. Usually the first call to preDraw doesn't correspond to
1259 // a true draw so we wait until the second preDraw call to be safe
1260 observer.addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener() {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001261 public boolean onPreDraw() {
Michael Jurka6ee21d22012-02-21 18:20:27 -08001262 // We delay the layer building a bit in order to give
1263 // other message processing a time to run. In particular
1264 // this avoids a delay in hiding the IME if it was
1265 // currently shown, because doing that may involve
1266 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001267 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Winson Chung31ce0732012-05-06 13:36:43 -07001268
Michael Jurka6ee21d22012-02-21 18:20:27 -08001269 observer.removeOnPreDrawListener(this);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001270 return true;
1271 }
1272 });
1273 }
Michael Jurka6ee21d22012-02-21 18:20:27 -08001274 // When Launcher comes back to foreground, a different Activity might be responsible for
1275 // the app market intent, so refresh the icon
1276 updateAppMarketIcon();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001277 clearTypedText();
1278 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001279 }
1280
1281 private void sendAdvanceMessage(long delay) {
1282 mHandler.removeMessages(ADVANCE_MSG);
1283 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1284 mHandler.sendMessageDelayed(msg, delay);
1285 mAutoAdvanceSentTime = System.currentTimeMillis();
1286 }
1287
1288 private void updateRunning() {
1289 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1290 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1291 mAutoAdvanceRunning = autoAdvanceRunning;
1292 if (autoAdvanceRunning) {
1293 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1294 sendAdvanceMessage(delay);
1295 } else {
1296 if (!mWidgetsToAdvance.isEmpty()) {
1297 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1298 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1299 }
1300 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001301 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001302 }
1303 }
1304 }
1305
1306 private final Handler mHandler = new Handler() {
1307 @Override
1308 public void handleMessage(Message msg) {
1309 if (msg.what == ADVANCE_MSG) {
1310 int i = 0;
1311 for (View key: mWidgetsToAdvance.keySet()) {
1312 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1313 final int delay = mAdvanceStagger * i;
1314 if (v instanceof Advanceable) {
1315 postDelayed(new Runnable() {
1316 public void run() {
1317 ((Advanceable) v).advance();
1318 }
1319 }, delay);
1320 }
1321 i++;
1322 }
1323 sendAdvanceMessage(mAdvanceInterval);
1324 }
1325 }
1326 };
1327
1328 void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001329 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001330 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1331 if (v instanceof Advanceable) {
1332 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001333 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Adam Cohended9f8d2010-11-03 13:25:16 -07001334 updateRunning();
1335 }
1336 }
1337
1338 void removeWidgetToAutoAdvance(View hostView) {
1339 if (mWidgetsToAdvance.containsKey(hostView)) {
1340 mWidgetsToAdvance.remove(hostView);
1341 updateRunning();
1342 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001343 }
1344
Joe Onorato9c1289c2009-08-17 11:03:03 -04001345 public void removeAppWidget(LauncherAppWidgetInfo launcherInfo) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001346 removeWidgetToAutoAdvance(launcherInfo.hostView);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001347 launcherInfo.hostView = null;
1348 }
1349
Winson Chung93eef082012-03-23 15:59:27 -07001350 void showOutOfSpaceMessage(boolean isHotseatLayout) {
1351 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1352 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001353 }
1354
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001355 public LauncherAppWidgetHost getAppWidgetHost() {
1356 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001357 }
Romain Guycbb89e42009-06-08 15:52:54 -07001358
Winson Chunga9abd0e2010-10-27 17:18:37 -07001359 public LauncherModel getModel() {
1360 return mModel;
1361 }
1362
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001363 void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001364 getWindow().closeAllPanels();
1365
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001366 // Whatever we were doing is hereby canceled.
1367 mWaitingForResult = false;
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001368 }
1369
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001370 @Override
1371 protected void onNewIntent(Intent intent) {
1372 super.onNewIntent(intent);
1373
1374 // Close the menu
1375 if (Intent.ACTION_MAIN.equals(intent.getAction())) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001376 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001377 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001378
Joe Onorato14f122b2009-11-19 14:06:36 -08001379 boolean alreadyOnHome = ((intent.getFlags() & Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1380 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
Michael Jurka01f0ed42010-08-20 00:41:17 -07001381
Adam Cohenac56cff2011-09-28 20:45:37 -07001382 Folder openFolder = mWorkspace.getOpenFolder();
Patrick Dubroy6ec2e182011-02-23 13:31:16 -08001383 // In all these cases, only animate if we're already on home
Patrick Dubroy758a9232011-03-03 19:54:56 -08001384 mWorkspace.exitWidgetResizeMode();
Adam Cohenac56cff2011-09-28 20:45:37 -07001385 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
1386 openFolder == null) {
Patrick Dubroy6ec2e182011-02-23 13:31:16 -08001387 mWorkspace.moveToDefaultScreen(true);
Joe Onorato3a8820b2009-11-10 15:06:42 -08001388 }
Adam Cohenac56cff2011-09-28 20:45:37 -07001389
1390 closeFolder();
Winson Chungde1af762011-07-21 16:44:07 -07001391 exitSpringLoadedDragMode();
Winson Chung36e6c5b2012-07-19 14:53:05 -07001392
1393 // If we are already on home, then just animate back to the workspace, otherwise, just
1394 // wait until onResume to set the state back to Workspace
1395 if (alreadyOnHome) {
1396 showWorkspace(true);
1397 } else {
1398 mOnResumeState = State.WORKSPACE;
1399 }
Romain Guy1dd3a072009-07-16 13:21:01 -07001400
Joe Onorato3a8820b2009-11-10 15:06:42 -08001401 final View v = getWindow().peekDecorView();
1402 if (v != null && v.getWindowToken() != null) {
1403 InputMethodManager imm = (InputMethodManager)getSystemService(
1404 INPUT_METHOD_SERVICE);
1405 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001406 }
Winson Chung337cd9d2011-03-30 10:39:30 -07001407
Michael Jurka35aa14d2011-07-07 17:01:08 -07001408 // Reset AllApps to its initial state
Adam Cohenb64d36e2011-10-17 21:48:02 -07001409 if (!alreadyOnHome && mAppsCustomizeTabHost != null) {
Winson Chungc100e8e2011-08-09 16:02:43 -07001410 mAppsCustomizeTabHost.reset();
Winson Chung785d2eb2011-04-14 16:08:02 -07001411 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001412 }
1413 }
1414
1415 @Override
1416 protected void onRestoreInstanceState(Bundle savedInstanceState) {
1417 // Do not call super here
1418 mSavedInstanceState = savedInstanceState;
1419 }
1420
1421 @Override
1422 protected void onSaveInstanceState(Bundle outState) {
Michael Jurka0142d492010-08-25 17:46:15 -07001423 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN, mWorkspace.getCurrentPage());
Adam Cohen95bb8002011-07-03 23:40:28 -07001424 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001425
Michael Jurka883f55b2010-10-21 15:47:14 -07001426 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001427 // We close any open folder since it will not be re-opened, and we need to make sure
1428 // this state is reflected.
1429 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001430
Winson Chung3d503fb2011-07-13 17:25:49 -07001431 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screen > -1 &&
1432 mWaitingForResult) {
1433 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
1434 outState.putInt(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screen);
1435 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1436 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001437 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_X, mPendingAddInfo.spanX);
1438 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y, mPendingAddInfo.spanY);
1439 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001440 }
1441
1442 if (mFolderInfo != null && mWaitingForResult) {
1443 outState.putBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, true);
1444 outState.putLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID, mFolderInfo.id);
1445 }
Michael Jurka946ad472010-07-09 18:05:18 -07001446
Winson Chung785d2eb2011-04-14 16:08:02 -07001447 // Save the current AppsCustomize tab
1448 if (mAppsCustomizeTabHost != null) {
1449 String currentTabTag = mAppsCustomizeTabHost.getCurrentTabTag();
1450 if (currentTabTag != null) {
1451 outState.putString("apps_customize_currentTab", currentTabTag);
1452 }
Winson Chung5afbf7b2011-07-25 11:53:08 -07001453 int currentIndex = mAppsCustomizeContent.getSaveInstanceStateIndex();
1454 outState.putInt("apps_customize_currentIndex", currentIndex);
Winson Chung785d2eb2011-04-14 16:08:02 -07001455 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001456 }
1457
1458 @Override
1459 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001460 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001461
Winson Chunge7a03942011-08-05 15:05:12 -07001462 // Remove all pending runnables
1463 mHandler.removeMessages(ADVANCE_MSG);
1464 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07001465 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07001466
Winson Chungcd2b0142011-06-08 16:02:26 -07001467 // Stop callbacks from LauncherModel
1468 LauncherApplication app = ((LauncherApplication) getApplication());
1469 mModel.stopLoader();
1470 app.setLauncher(null);
1471
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001472 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001473 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001474 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001475 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001476 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001477 mAppWidgetHost = null;
1478
1479 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001480
1481 TextKeyListener.getInstance().release();
1482
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001483
Winson Chung3d503fb2011-07-13 17:25:49 -07001484 unbindWorkspaceAndHotseatItems();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001485
1486 getContentResolver().unregisterContentObserver(mWidgetObserver);
Joe Onorato34a0e1b2009-12-14 17:44:51 -08001487 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001488
Adam Cohenaccf3bf2012-04-30 16:07:43 -07001489 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001490 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
1491 mWorkspace.removeAllViews();
1492 mWorkspace = null;
1493 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08001494
1495 ValueAnimator.clearAllAnimations();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001496 }
1497
Adam Cohena9cf38f2011-05-02 15:36:58 -07001498 public DragController getDragController() {
1499 return mDragController;
1500 }
1501
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001502 @Override
1503 public void startActivityForResult(Intent intent, int requestCode) {
Romain Guy08f97492009-06-29 14:41:20 -07001504 if (requestCode >= 0) mWaitingForResult = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001505 super.startActivityForResult(intent, requestCode);
1506 }
1507
Winson Chung70d72102011-08-12 11:24:35 -07001508 /**
1509 * Indicates that we want global search for this activity by setting the globalSearch
1510 * argument for {@link #startSearch} to true.
1511 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001512 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07001513 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001514 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001515
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001516 showWorkspace(true);
Romain Guycbb89e42009-06-08 15:52:54 -07001517
Karl Rosaen138a0412009-04-23 19:00:21 -07001518 if (initialQuery == null) {
1519 // Use any text typed in the launcher as the initial query
1520 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07001521 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001522 if (appSearchData == null) {
1523 appSearchData = new Bundle();
Bjorn Bringert3e244cf2010-02-10 14:17:35 +00001524 appSearchData.putString(Search.SOURCE, "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001525 }
Mathew Inwoodcf7f63b2011-10-13 11:31:38 +01001526 Rect sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
Romain Guycbb89e42009-06-08 15:52:54 -07001527
Karl Rosaen138a0412009-04-23 19:00:21 -07001528 final SearchManager searchManager =
1529 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
Karl Rosaen138a0412009-04-23 19:00:21 -07001530 searchManager.startSearch(initialQuery, selectInitialQuery, getComponentName(),
Mathew Inwoodcf7f63b2011-10-13 11:31:38 +01001531 appSearchData, globalSearch, sourceBounds);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001532 }
1533
Winson Chung70d72102011-08-12 11:24:35 -07001534 @Override
1535 public boolean onCreateOptionsMenu(Menu menu) {
1536 if (isWorkspaceLocked()) {
1537 return false;
1538 }
1539
1540 super.onCreateOptionsMenu(menu);
Winson Chungdff8ebb2011-09-08 17:25:31 -07001541
1542 Intent manageApps = new Intent(Settings.ACTION_MANAGE_ALL_APPLICATIONS_SETTINGS);
1543 manageApps.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1544 | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Winson Chung236d4312011-08-22 15:12:27 -07001545 Intent settings = new Intent(android.provider.Settings.ACTION_SETTINGS);
1546 settings.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1547 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Michael Jurkab964f9c2011-09-27 22:10:05 -07001548 String helpUrl = getString(R.string.help_url);
1549 Intent help = new Intent(Intent.ACTION_VIEW, Uri.parse(helpUrl));
Winson Chungdff8ebb2011-09-08 17:25:31 -07001550 help.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1551 | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
1552
Winson Chung70d72102011-08-12 11:24:35 -07001553 menu.add(MENU_GROUP_WALLPAPER, MENU_WALLPAPER_SETTINGS, 0, R.string.menu_wallpaper)
1554 .setIcon(android.R.drawable.ic_menu_gallery)
1555 .setAlphabeticShortcut('W');
1556 menu.add(0, MENU_MANAGE_APPS, 0, R.string.menu_manage_apps)
1557 .setIcon(android.R.drawable.ic_menu_manage)
Winson Chungdff8ebb2011-09-08 17:25:31 -07001558 .setIntent(manageApps)
Winson Chung70d72102011-08-12 11:24:35 -07001559 .setAlphabeticShortcut('M');
Winson Chung236d4312011-08-22 15:12:27 -07001560 menu.add(0, MENU_SYSTEM_SETTINGS, 0, R.string.menu_settings)
1561 .setIcon(android.R.drawable.ic_menu_preferences)
1562 .setIntent(settings)
1563 .setAlphabeticShortcut('P');
Michael Jurkab964f9c2011-09-27 22:10:05 -07001564 if (!helpUrl.isEmpty()) {
1565 menu.add(0, MENU_HELP, 0, R.string.menu_help)
1566 .setIcon(android.R.drawable.ic_menu_help)
1567 .setIntent(help)
1568 .setAlphabeticShortcut('H');
1569 }
Winson Chung70d72102011-08-12 11:24:35 -07001570 return true;
1571 }
1572
1573 @Override
1574 public boolean onPrepareOptionsMenu(Menu menu) {
1575 super.onPrepareOptionsMenu(menu);
1576
1577 if (mAppsCustomizeTabHost.isTransitioning()) {
1578 return false;
1579 }
1580 boolean allAppsVisible = (mAppsCustomizeTabHost.getVisibility() == View.VISIBLE);
1581 menu.setGroupVisible(MENU_GROUP_WALLPAPER, !allAppsVisible);
1582
1583 return true;
1584 }
1585
1586 @Override
1587 public boolean onOptionsItemSelected(MenuItem item) {
1588 switch (item.getItemId()) {
1589 case MENU_WALLPAPER_SETTINGS:
1590 startWallpaper();
1591 return true;
Winson Chung70d72102011-08-12 11:24:35 -07001592 }
1593
1594 return super.onOptionsItemSelected(item);
1595 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001596
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07001597 @Override
1598 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07001599 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07001600 // Use a custom animation for launching search
1601 overridePendingTransition(R.anim.fade_in_fast, R.anim.fade_out_fast);
Karl Rosaen138a0412009-04-23 19:00:21 -07001602 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07001603 }
1604
Joe Onorato9c1289c2009-08-17 11:03:03 -04001605 public boolean isWorkspaceLocked() {
1606 return mWorkspaceLoading || mWaitingForResult;
1607 }
1608
Michael Jurka0280c3b2010-09-17 15:00:07 -07001609 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07001610 mPendingAddInfo.container = ItemInfo.NO_ID;
1611 mPendingAddInfo.screen = -1;
1612 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
1613 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Adam Cohend41fbf52012-02-16 23:53:59 -08001614 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07001615 mPendingAddInfo.dropPos = null;
Michael Jurka0280c3b2010-09-17 15:00:07 -07001616 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07001617
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001618 void addAppWidgetImpl(final int appWidgetId, ItemInfo info, AppWidgetHostView boundWidget,
1619 AppWidgetProviderInfo appWidgetInfo) {
1620 if (appWidgetInfo.configure != null) {
1621 mPendingAddWidgetInfo = appWidgetInfo;
Michael Jurkaaf442092010-06-10 17:01:57 -07001622
Bjorn Bringert7984c942009-12-09 15:38:25 +00001623 // Launch over to configure widget, if needed
1624 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_CONFIGURE);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001625 intent.setComponent(appWidgetInfo.configure);
Bjorn Bringert7984c942009-12-09 15:38:25 +00001626 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
Romain Guy8e633c52010-03-04 12:51:36 -08001627 startActivityForResultSafely(intent, REQUEST_CREATE_APPWIDGET);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001628 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00001629 // Otherwise just add it
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001630 completeAddAppWidget(appWidgetId, info.container, info.screen, boundWidget,
1631 appWidgetInfo);
Winson Chung557d6ed2011-07-08 15:34:52 -07001632 // Exit spring loaded mode if necessary after adding the widget
Adam Cohened66b2b2012-01-23 17:28:51 -08001633 exitSpringLoadedDragModeDelayed(true, false, null);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001634 }
1635 }
Romain Guycbb89e42009-06-08 15:52:54 -07001636
Adam Cohenfbba09b2011-07-18 21:43:05 -07001637 /**
1638 * Process a shortcut drop.
1639 *
1640 * @param componentName The name of the component
1641 * @param screen The screen where it should be added
1642 * @param cell The cell it should be added to, optional
1643 * @param position The location on the screen where it was dropped, optional
1644 */
Winson Chung3d503fb2011-07-13 17:25:49 -07001645 void processShortcutFromDrop(ComponentName componentName, long container, int screen,
1646 int[] cell, int[] loc) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001647 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07001648 mPendingAddInfo.container = container;
1649 mPendingAddInfo.screen = screen;
1650 mPendingAddInfo.dropPos = loc;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001651
1652 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07001653 mPendingAddInfo.cellX = cell[0];
1654 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07001655 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001656
1657 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
1658 createShortcutIntent.setComponent(componentName);
1659 processShortcut(createShortcutIntent);
1660 }
1661
Adam Cohenfbba09b2011-07-18 21:43:05 -07001662 /**
1663 * Process a widget drop.
1664 *
1665 * @param info The PendingAppWidgetInfo of the widget being added.
1666 * @param screen The screen where it should be added
1667 * @param cell The cell it should be added to, optional
1668 * @param position The location on the screen where it was dropped, optional
1669 */
Winson Chung3d503fb2011-07-13 17:25:49 -07001670 void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, int screen,
Adam Cohend41fbf52012-02-16 23:53:59 -08001671 int[] cell, int[] span, int[] loc) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001672 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07001673 mPendingAddInfo.container = info.container = container;
1674 mPendingAddInfo.screen = info.screen = screen;
1675 mPendingAddInfo.dropPos = loc;
Adam Cohend41fbf52012-02-16 23:53:59 -08001676 mPendingAddInfo.minSpanX = info.minSpanX;
1677 mPendingAddInfo.minSpanY = info.minSpanY;
1678
Adam Cohenfbba09b2011-07-18 21:43:05 -07001679 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07001680 mPendingAddInfo.cellX = cell[0];
1681 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07001682 }
Adam Cohend41fbf52012-02-16 23:53:59 -08001683 if (span != null) {
1684 mPendingAddInfo.spanX = span[0];
1685 mPendingAddInfo.spanY = span[1];
1686 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001687
Adam Cohened66b2b2012-01-23 17:28:51 -08001688 AppWidgetHostView hostView = info.boundWidget;
1689 int appWidgetId;
1690 if (hostView != null) {
1691 appWidgetId = hostView.getAppWidgetId();
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001692 addAppWidgetImpl(appWidgetId, info, hostView, info.info);
Adam Cohened66b2b2012-01-23 17:28:51 -08001693 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001694 // In this case, we either need to start an activity to get permission to bind
1695 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08001696 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Michael Jurka8b805b12012-04-18 14:23:14 -07001697 if (mAppWidgetManager.bindAppWidgetIdIfAllowed(appWidgetId, info.componentName)) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001698 addAppWidgetImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07001699 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001700 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07001701 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
1702 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
1703 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
1704 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
1705 }
Adam Cohened66b2b2012-01-23 17:28:51 -08001706 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001707 }
1708
Joe Onoratodeb98af2010-02-19 14:59:39 -08001709 void processShortcut(Intent intent) {
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001710 // Handle case where user selected "Applications"
1711 String applicationName = getResources().getString(R.string.group_applications);
1712 String shortcutName = intent.getStringExtra(Intent.EXTRA_SHORTCUT_NAME);
Romain Guycbb89e42009-06-08 15:52:54 -07001713
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001714 if (applicationName != null && applicationName.equals(shortcutName)) {
1715 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
1716 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
Romain Guycbb89e42009-06-08 15:52:54 -07001717
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001718 Intent pickIntent = new Intent(Intent.ACTION_PICK_ACTIVITY);
1719 pickIntent.putExtra(Intent.EXTRA_INTENT, mainIntent);
Winson Chung58f20882010-10-01 13:44:56 -07001720 pickIntent.putExtra(Intent.EXTRA_TITLE, getText(R.string.title_select_application));
Joe Onorato4a79a042010-09-24 16:17:21 -07001721 startActivityForResultSafely(pickIntent, REQUEST_PICK_APPLICATION);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001722 } else {
Joe Onorato4a79a042010-09-24 16:17:21 -07001723 startActivityForResultSafely(intent, REQUEST_CREATE_SHORTCUT);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07001724 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001725 }
1726
Winson Chung24ab2f12010-09-16 14:10:47 -07001727 void processWallpaper(Intent intent) {
1728 startActivityForResult(intent, REQUEST_PICK_WALLPAPER);
1729 }
1730
Winson Chung3d503fb2011-07-13 17:25:49 -07001731 FolderIcon addFolder(CellLayout layout, long container, final int screen, int cellX,
1732 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07001733 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001734 folderInfo.title = getText(R.string.folder_name);
1735
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001736 // Update the model
Winson Chung3d503fb2011-07-13 17:25:49 -07001737 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screen, cellX, cellY,
1738 false);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001739 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001740
1741 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07001742 FolderIcon newFolder =
1743 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
1744 mWorkspace.addInScreen(newFolder, container, screen, cellX, cellY, 1, 1,
1745 isWorkspaceLocked());
Adam Cohendf035382011-04-11 17:22:04 -07001746 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001747 }
Romain Guycbb89e42009-06-08 15:52:54 -07001748
Joe Onorato9c1289c2009-08-17 11:03:03 -04001749 void removeFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001750 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001751 }
1752
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001753 private void startWallpaper() {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001754 showWorkspace(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001755 final Intent pickWallpaper = new Intent(Intent.ACTION_SET_WALLPAPER);
Dianne Hackborn8355ae32009-09-07 21:47:51 -07001756 Intent chooser = Intent.createChooser(pickWallpaper,
1757 getText(R.string.chooser_wallpaper));
Romain Guyf2826c72009-11-12 17:39:34 -08001758 // NOTE: Adds a configure option to the chooser if the wallpaper supports it
1759 // Removed in Eclair MR1
1760// WallpaperManager wm = (WallpaperManager)
1761// getSystemService(Context.WALLPAPER_SERVICE);
1762// WallpaperInfo wi = wm.getWallpaperInfo();
1763// if (wi != null && wi.getSettingsActivity() != null) {
1764// LabeledIntent li = new LabeledIntent(getPackageName(),
1765// R.string.configure_wallpaper, 0);
1766// li.setClassName(wi.getPackageName(), wi.getSettingsActivity());
1767// chooser.putExtra(Intent.EXTRA_INITIAL_INTENTS, new Intent[] { li });
1768// }
Mike Clerona0618e42009-10-22 13:55:21 -07001769 startActivityForResult(chooser, REQUEST_PICK_WALLPAPER);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001770 }
1771
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001772 /**
1773 * Registers various content observers. The current implementation registers
1774 * only a favorites observer to keep track of the favorites applications.
1775 */
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001776 private void registerContentObservers() {
1777 ContentResolver resolver = getContentResolver();
1778 resolver.registerContentObserver(LauncherProvider.CONTENT_APPWIDGET_RESET_URI,
1779 true, mWidgetObserver);
1780 }
1781
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001782 @Override
1783 public boolean dispatchKeyEvent(KeyEvent event) {
1784 if (event.getAction() == KeyEvent.ACTION_DOWN) {
1785 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001786 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07001787 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08001788 case KeyEvent.KEYCODE_VOLUME_DOWN:
Jason Samseb5615d2009-11-30 11:50:10 -08001789 if (SystemProperties.getInt("debug.launcher2.dumpstate", 0) != 0) {
Joe Onoratobe386092009-11-17 17:32:16 -08001790 dumpState();
1791 return true;
1792 }
1793 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07001794 }
1795 } else if (event.getAction() == KeyEvent.ACTION_UP) {
1796 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07001797 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001798 return true;
1799 }
1800 }
1801
1802 return super.dispatchKeyEvent(event);
1803 }
1804
Joe Onorato88ec0992009-11-19 13:16:06 -08001805 @Override
1806 public void onBackPressed() {
Winson Chungf0ea4d32011-06-06 14:27:16 -07001807 if (mState == State.APPS_CUSTOMIZE) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001808 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08001809 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07001810 Folder openFolder = mWorkspace.getOpenFolder();
1811 if (openFolder.isEditingName()) {
1812 openFolder.dismissEditingName();
1813 } else {
1814 closeFolder();
1815 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08001816 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08001817 mWorkspace.exitWidgetResizeMode();
1818
Patrick Dubroy94f78a52011-02-28 17:39:16 -08001819 // Back button is a no-op here, but give at least some feedback for the button press
1820 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07001821 }
Joe Onorato88ec0992009-11-19 13:16:06 -08001822 }
1823
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001824 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001825 * Re-listen when widgets are reset.
1826 */
1827 private void onAppWidgetReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08001828 if (mAppWidgetHost != null) {
1829 mAppWidgetHost.startListening();
1830 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001831 }
1832
1833 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04001834 * Go through the and disconnect any of the callbacks in the drawables and the views or we
1835 * leak the previous Home screen on orientation change.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001836 */
Winson Chung3d503fb2011-07-13 17:25:49 -07001837 private void unbindWorkspaceAndHotseatItems() {
Winson Chung603bcb92011-09-02 11:45:39 -07001838 if (mModel != null) {
1839 mModel.unbindWorkspaceItems();
1840 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001841 }
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001842
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001843 /**
1844 * Launches the intent referred by the clicked shortcut.
1845 *
1846 * @param v The view representing the clicked shortcut.
1847 */
1848 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07001849 // Make sure that rogue clicks don't get through while allapps is launching, or after the
1850 // view has detached (it's possible for this to happen if the view is removed mid touch).
1851 if (v.getWindowToken() == null) {
1852 return;
1853 }
1854
Winson Chung9b0b2fe2012-02-24 13:03:34 -08001855 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07001856 return;
1857 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07001858
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001859 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08001860 if (tag instanceof ShortcutInfo) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001861 // Open shortcut
Romain Guyfb5411e2010-02-24 10:04:17 -08001862 final Intent intent = ((ShortcutInfo) tag).intent;
Joe Onorato13724ea2009-12-02 21:16:35 -08001863 int[] pos = new int[2];
1864 v.getLocationOnScreen(pos);
Romain Guyfb5411e2010-02-24 10:04:17 -08001865 intent.setSourceBounds(new Rect(pos[0], pos[1],
1866 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Winson Chungc7450e32012-04-17 17:34:08 -07001867
1868 boolean success = startActivitySafely(v, intent, tag);
Michael Jurkaddd62e92011-02-16 17:49:14 -08001869
1870 if (success && v instanceof BubbleTextView) {
1871 mWaitingForResume = (BubbleTextView) v;
1872 mWaitingForResume.setStayPressed(true);
1873 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001874 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07001875 if (v instanceof FolderIcon) {
1876 FolderIcon fi = (FolderIcon) v;
1877 handleFolderClick(fi);
1878 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07001879 } else if (v == mAllAppsButton) {
1880 if (mState == State.APPS_CUSTOMIZE) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001881 showWorkspace(true);
Joe Onorato7404ee42009-07-31 11:54:44 -07001882 } else {
Michael Jurka2a552322011-10-11 15:22:05 -07001883 onClickAllAppsButton(v);
Joe Onorato7404ee42009-07-31 11:54:44 -07001884 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001885 }
1886 }
1887
Michael Jurka0e260592010-06-30 17:07:39 -07001888 public boolean onTouch(View v, MotionEvent event) {
Michael Jurkadee05892010-07-27 10:01:56 -07001889 // this is an intercepted event being forwarded from mWorkspace;
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001890 // clicking anywhere on the workspace causes the customization drawer to slide down
1891 showWorkspace(true);
Michael Jurka0e260592010-06-30 17:07:39 -07001892 return false;
1893 }
1894
Michael Jurkaaf442092010-06-10 17:01:57 -07001895 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001896 * Event handler for the search button
1897 *
1898 * @param v The view that was clicked.
1899 */
1900 public void onClickSearchButton(View v) {
Winson Chungbb185bd2011-11-21 12:31:42 -08001901 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
1902
Amith Yamasania135ba82011-08-09 17:42:01 -07001903 onSearchRequested();
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001904 }
1905
1906 /**
Amith Yamasani6d7fe502010-11-16 09:05:07 -08001907 * Event handler for the voice button
1908 *
1909 * @param v The view that was clicked.
1910 */
1911 public void onClickVoiceButton(View v) {
Winson Chungbb185bd2011-11-21 12:31:42 -08001912 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
Amith Yamasani6d7fe502010-11-16 09:05:07 -08001913
Michael Jurkaae65ee32012-04-30 11:45:54 -07001914 try {
1915 final SearchManager searchManager =
1916 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
1917 ComponentName activityName = searchManager.getGlobalSearchActivity();
1918 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
Andy Huangf615f712012-06-07 13:38:04 -07001919 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Michael Jurkaae65ee32012-04-30 11:45:54 -07001920 if (activityName != null) {
1921 intent.setPackage(activityName.getPackageName());
1922 }
Michael Jurka86a720e2012-05-09 11:23:23 -07001923 startActivity(null, intent, "onClickVoiceButton");
Winson Chung01b0b632012-05-22 10:18:14 -07001924 overridePendingTransition(R.anim.fade_in_fast, R.anim.fade_out_fast);
Michael Jurkaae65ee32012-04-30 11:45:54 -07001925 } catch (ActivityNotFoundException e) {
1926 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
Andy Huangf615f712012-06-07 13:38:04 -07001927 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Michael Jurkaae65ee32012-04-30 11:45:54 -07001928 startActivitySafely(null, intent, "onClickVoiceButton");
1929 }
Amith Yamasani6d7fe502010-11-16 09:05:07 -08001930 }
1931
1932 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001933 * Event handler for the "grid" button that appears on the home screen, which
1934 * enters all apps mode.
1935 *
1936 * @param v The view that was clicked.
1937 */
1938 public void onClickAllAppsButton(View v) {
Michael Jurka5130e402011-10-13 04:55:35 -07001939 showAllApps(true);
1940 }
1941
1942 public void onTouchDownAllAppsButton(View v) {
Michael Jurka2a552322011-10-11 15:22:05 -07001943 // Provide the same haptic feedback that the system offers for virtual keys.
1944 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
Michael Jurka2c3af5f2010-08-03 13:53:20 -07001945 }
1946
Patrick Dubroyceae05d2010-08-30 10:40:53 -07001947 public void onClickAppMarketButton(View v) {
1948 if (mAppMarketIntent != null) {
Winson Chungc7450e32012-04-17 17:34:08 -07001949 startActivitySafely(v, mAppMarketIntent, "app market");
Winson Chung4f916f42012-03-26 15:30:59 -07001950 } else {
1951 Log.e(TAG, "Invalid app market intent.");
Patrick Dubroyceae05d2010-08-30 10:40:53 -07001952 }
1953 }
1954
Patrick Dubroybc6840b2010-09-01 11:54:27 -07001955 void startApplicationDetailsActivity(ComponentName componentName) {
1956 String packageName = componentName.getPackageName();
Patrick Dubroy4ed62782010-08-17 15:11:18 -07001957 Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS,
1958 Uri.fromParts("package", packageName, null));
Winson Chungdff8ebb2011-09-08 17:25:31 -07001959 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Winson Chung3b1b36b2012-04-24 18:51:14 -07001960 startActivitySafely(null, intent, "startApplicationDetailsActivity");
Patrick Dubroy4ed62782010-08-17 15:11:18 -07001961 }
1962
Patrick Dubroy5539af72010-09-07 15:22:01 -07001963 void startApplicationUninstallActivity(ApplicationInfo appInfo) {
1964 if ((appInfo.flags & ApplicationInfo.DOWNLOADED_FLAG) == 0) {
1965 // System applications cannot be installed. For now, show a toast explaining that.
1966 // We may give them the option of disabling apps this way.
1967 int messageId = R.string.uninstall_system_app_text;
1968 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
1969 } else {
1970 String packageName = appInfo.componentName.getPackageName();
1971 String className = appInfo.componentName.getClassName();
1972 Intent intent = new Intent(
1973 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07001974 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
1975 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Patrick Dubroy5539af72010-09-07 15:22:01 -07001976 startActivity(intent);
1977 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07001978 }
1979
Michael Jurka86a720e2012-05-09 11:23:23 -07001980 boolean startActivity(View v, Intent intent, Object tag) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001981 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Winson Chungc7450e32012-04-17 17:34:08 -07001982
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001983 try {
Winson Chung2672ff92012-05-04 16:22:30 -07001984 // Only launch using the new animation if the shortcut has not opted out (this is a
1985 // private contract between launcher and may be ignored in the future).
1986 boolean useLaunchAnimation = (v != null) &&
1987 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
1988 if (useLaunchAnimation) {
Winson Chungc7450e32012-04-17 17:34:08 -07001989 ActivityOptions opts = ActivityOptions.makeScaleUpAnimation(v, 0, 0,
1990 v.getMeasuredWidth(), v.getMeasuredHeight());
1991
1992 startActivity(intent, opts.toBundle());
1993 } else {
1994 startActivity(intent);
1995 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08001996 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001997 } catch (SecurityException e) {
1998 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001999 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002000 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07002001 "or use the exported attribute for this activity. "
2002 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002003 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002004 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002005 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002006
Michael Jurka86a720e2012-05-09 11:23:23 -07002007 boolean startActivitySafely(View v, Intent intent, Object tag) {
2008 boolean success = false;
2009 try {
2010 success = startActivity(v, intent, tag);
2011 } catch (ActivityNotFoundException e) {
2012 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2013 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
2014 }
2015 return success;
2016 }
2017
Romain Guy8e633c52010-03-04 12:51:36 -08002018 void startActivityForResultSafely(Intent intent, int requestCode) {
2019 try {
2020 startActivityForResult(intent, requestCode);
2021 } catch (ActivityNotFoundException e) {
2022 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2023 } catch (SecurityException e) {
2024 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2025 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
2026 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
2027 "or use the exported attribute for this activity.", e);
2028 }
2029 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002030
Adam Cohena9cf38f2011-05-02 15:36:58 -07002031 private void handleFolderClick(FolderIcon folderIcon) {
2032 final FolderInfo info = folderIcon.mInfo;
Adam Cohen3c81a382011-08-31 22:25:51 -07002033 Folder openFolder = mWorkspace.getFolderForTag(info);
2034
2035 // If the folder info reports that the associated folder is open, then verify that
2036 // it is actually opened. There have been a few instances where this gets out of sync.
2037 if (info.opened && openFolder == null) {
2038 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2039 + info.screen + " (" + info.cellX + ", " + info.cellY + ")");
2040 info.opened = false;
2041 }
2042
Adam Cohena9cf38f2011-05-02 15:36:58 -07002043 if (!info.opened) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002044 // Close any open folder
2045 closeFolder();
2046 // Open the requested folder
Adam Cohena9cf38f2011-05-02 15:36:58 -07002047 openFolder(folderIcon);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002048 } else {
2049 // Find the open folder...
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002050 int folderScreen;
2051 if (openFolder != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07002052 folderScreen = mWorkspace.getPageForView(openFolder);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002053 // .. and close it
2054 closeFolder(openFolder);
Michael Jurka0142d492010-08-25 17:46:15 -07002055 if (folderScreen != mWorkspace.getCurrentPage()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002056 // Close any folder open on the current screen
2057 closeFolder();
2058 // Pull the folder onto this screen
Adam Cohena9cf38f2011-05-02 15:36:58 -07002059 openFolder(folderIcon);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002060 }
2061 }
2062 }
2063 }
2064
Adam Cohen268c4752012-06-06 17:47:33 -07002065 /**
2066 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
2067 * in the DragLayer in the exact absolute location of the original FolderIcon.
2068 */
2069 private void copyFolderIconToImage(FolderIcon fi) {
2070 final int width = fi.getMeasuredWidth();
2071 final int height = fi.getMeasuredHeight();
2072
2073 // Lazy load ImageView, Bitmap and Canvas
2074 if (mFolderIconImageView == null) {
2075 mFolderIconImageView = new ImageView(this);
2076 }
2077 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
2078 mFolderIconBitmap.getHeight() != height) {
2079 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
2080 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
2081 }
2082
2083 DragLayer.LayoutParams lp;
2084 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
2085 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
2086 } else {
2087 lp = new DragLayer.LayoutParams(width, height);
2088 }
2089
2090 mDragLayer.getViewRectRelativeToSelf(fi, mRectForFolderAnimation);
2091 lp.customPosition = true;
2092 lp.x = mRectForFolderAnimation.left;
2093 lp.y = mRectForFolderAnimation.top;
Adam Cohen8ec23032012-06-08 14:46:22 -07002094 lp.width = width;
2095 lp.height = height;
Adam Cohen268c4752012-06-06 17:47:33 -07002096
2097 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
2098 fi.draw(mFolderIconCanvas);
2099 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohen8ec23032012-06-08 14:46:22 -07002100 if (fi.mFolder != null) {
2101 mFolderIconImageView.setPivotX(fi.mFolder.getPivotXForIconAnimation());
2102 mFolderIconImageView.setPivotY(fi.mFolder.getPivotYForIconAnimation());
2103 }
Adam Cohen268c4752012-06-06 17:47:33 -07002104 // Just in case this image view is still in the drag layer from a previous animation,
2105 // we remove it and re-add it.
2106 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
2107 mDragLayer.removeView(mFolderIconImageView);
2108 }
2109 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohen8ec23032012-06-08 14:46:22 -07002110 if (fi.mFolder != null) {
2111 fi.mFolder.bringToFront();
2112 }
Adam Cohen268c4752012-06-06 17:47:33 -07002113 }
2114
Adam Cohen2801caf2011-05-13 20:57:39 -07002115 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002116 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07002117 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
2118 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
2119 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
2120
Adam Cohenc51934b2011-07-26 21:07:43 -07002121 FolderInfo info = (FolderInfo) fi.getTag();
2122 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
2123 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07002124 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
2125 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07002126 }
2127
Adam Cohen268c4752012-06-06 17:47:33 -07002128 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
2129 copyFolderIconToImage(fi);
2130 fi.setVisibility(View.INVISIBLE);
2131
2132 ObjectAnimator oa = ObjectAnimator.ofPropertyValuesHolder(mFolderIconImageView, alpha,
2133 scaleX, scaleY);
Adam Cohen2801caf2011-05-13 20:57:39 -07002134 oa.setDuration(getResources().getInteger(R.integer.config_folderAnimDuration));
2135 oa.start();
2136 }
2137
Adam Cohen268c4752012-06-06 17:47:33 -07002138 private void shrinkAndFadeInFolderIcon(final FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002139 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07002140 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
2141 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
2142 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
2143
Adam Cohen268c4752012-06-06 17:47:33 -07002144 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07002145
Adam Cohen268c4752012-06-06 17:47:33 -07002146 // We remove and re-draw the FolderIcon in-case it has changed
2147 mDragLayer.removeView(mFolderIconImageView);
2148 copyFolderIconToImage(fi);
Adam Cohen268c4752012-06-06 17:47:33 -07002149 ObjectAnimator oa = ObjectAnimator.ofPropertyValuesHolder(mFolderIconImageView, alpha,
2150 scaleX, scaleY);
Adam Cohen2801caf2011-05-13 20:57:39 -07002151 oa.setDuration(getResources().getInteger(R.integer.config_folderAnimDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07002152 oa.addListener(new AnimatorListenerAdapter() {
2153 @Override
2154 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07002155 if (cl != null) {
2156 cl.clearFolderLeaveBehind();
2157 // Remove the ImageView copy of the FolderIcon and make the original visible.
2158 mDragLayer.removeView(mFolderIconImageView);
2159 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07002160 }
2161 }
2162 });
Adam Cohen2801caf2011-05-13 20:57:39 -07002163 oa.start();
2164 }
2165
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002166 /**
Michael Jurka774bd372010-10-22 13:40:50 -07002167 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002168 * is animated relative to the specified View. If the View is null, no animation
2169 * is played.
2170 *
2171 * @param folderInfo The FolderInfo describing the folder to open.
2172 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07002173 public void openFolder(FolderIcon folderIcon) {
2174 Folder folder = folderIcon.mFolder;
2175 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002176
Adam Cohena9cf38f2011-05-02 15:36:58 -07002177 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002178
Adam Cohen4554ee12011-08-03 16:13:21 -07002179 // Just verify that the folder hasn't already been added to the DragLayer.
2180 // There was a one-off crash where the folder had a parent already.
2181 if (folder.getParent() == null) {
2182 mDragLayer.addView(folder);
2183 mDragController.addDropTarget((DropTarget) folder);
2184 } else {
2185 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
2186 folder.getParent() + ").");
2187 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07002188 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07002189 growAndFadeOutFolderIcon(folderIcon);
Adam Cohen4554ee12011-08-03 16:13:21 -07002190 }
2191
2192 public void closeFolder() {
2193 Folder folder = mWorkspace.getOpenFolder();
2194 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07002195 if (folder.isEditingName()) {
2196 folder.dismissEditingName();
2197 }
Adam Cohen4554ee12011-08-03 16:13:21 -07002198 closeFolder(folder);
Winson Chung7d7541e2011-09-16 20:14:36 -07002199
2200 // Dismiss the folder cling
2201 dismissFolderCling(null);
Adam Cohen4554ee12011-08-03 16:13:21 -07002202 }
2203 }
2204
2205 void closeFolder(Folder folder) {
2206 folder.getInfo().opened = false;
2207
2208 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
2209 if (parent != null) {
2210 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
2211 shrinkAndFadeInFolderIcon(fi);
2212 }
2213 folder.animateClosed();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002214 }
2215
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002216 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07002217 if (!isDraggingEnabled()) return false;
2218 if (isWorkspaceLocked()) return false;
2219 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002220
2221 if (!(v instanceof CellLayout)) {
Michael Jurka8c920dd2011-01-20 14:16:56 -08002222 v = (View) v.getParent().getParent();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002223 }
2224
Michael Jurka0280c3b2010-09-17 15:00:07 -07002225 resetAddInfo();
2226 CellLayout.CellInfo longClickCellInfo = (CellLayout.CellInfo) v.getTag();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002227 // This happens when long clicking an item with the dpad/trackball
Adam Cohenfaea1f82011-07-21 16:23:57 -07002228 if (longClickCellInfo == null) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002229 return true;
2230 }
2231
Winson Chung3d503fb2011-07-13 17:25:49 -07002232 // The hotseat touch handling does not go through Workspace, and we always allow long press
2233 // on hotseat items.
Michael Jurka0280c3b2010-09-17 15:00:07 -07002234 final View itemUnderLongClick = longClickCellInfo.cell;
Winson Chung3d503fb2011-07-13 17:25:49 -07002235 boolean allowLongPress = isHotseatLayout(v) || mWorkspace.allowLongPress();
2236 if (allowLongPress && !mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002237 if (itemUnderLongClick == null) {
2238 // User long pressed on empty space
Michael Jurka0280c3b2010-09-17 15:00:07 -07002239 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
2240 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Winson Chung6a3fd3f2011-08-02 14:03:26 -07002241 startWallpaper();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002242 } else {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002243 if (!(itemUnderLongClick instanceof Folder)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002244 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07002245 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002246 }
2247 }
2248 }
2249 return true;
2250 }
2251
Winson Chung3d503fb2011-07-13 17:25:49 -07002252 boolean isHotseatLayout(View layout) {
2253 return mHotseat != null && layout != null &&
2254 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
2255 }
2256 Hotseat getHotseat() {
2257 return mHotseat;
Romain Guy1fbc1c82009-11-09 20:43:08 -08002258 }
Adam Cohenebea84d2011-11-09 17:20:41 -08002259 SearchDropTargetBar getSearchBar() {
2260 return mSearchDropTargetBar;
2261 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08002262
Winson Chung3d503fb2011-07-13 17:25:49 -07002263 /**
2264 * Returns the CellLayout of the specified container at the specified screen.
2265 */
2266 CellLayout getCellLayout(long container, int screen) {
2267 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
2268 if (mHotseat != null) {
2269 return mHotseat.getLayout();
2270 } else {
2271 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08002272 }
Winson Chung3d503fb2011-07-13 17:25:49 -07002273 } else {
2274 return (CellLayout) mWorkspace.getChildAt(screen);
Romain Guya6abce82009-11-10 02:54:41 -08002275 }
2276 }
2277
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002278 Workspace getWorkspace() {
2279 return mWorkspace;
2280 }
2281
Daniel Sandler843e8602010-06-07 14:59:01 -04002282 // Now a part of LauncherModel.Callbacks. Used to reorder loading steps.
2283 public boolean isAllAppsVisible() {
Winson Chungf0ea4d32011-06-06 14:27:16 -07002284 return (mState == State.APPS_CUSTOMIZE);
Joe Onoratofb0ca672009-09-14 17:55:46 -04002285 }
2286
Andrew Flynn0dca1ec2012-02-29 13:33:22 -08002287 public boolean isAllAppsButtonRank(int rank) {
2288 return mHotseat.isAllAppsButtonRank(rank);
2289 }
2290
Daniel Sandlerc351eb82010-03-03 15:05:19 -05002291 // AllAppsView.Watcher
2292 public void zoomed(float zoom) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07002293 if (zoom == 1.0f) {
Daniel Sandlerc351eb82010-03-03 15:05:19 -05002294 mWorkspace.setVisibility(View.GONE);
2295 }
2296 }
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002297
2298 /**
2299 * Helper method for the cameraZoomIn/cameraZoomOut animations
2300 * @param view The view being animated
Winson Chungf0ea4d32011-06-06 14:27:16 -07002301 * @param state The state that we are moving in or out of (eg. APPS_CUSTOMIZE)
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002302 * @param scaleFactor The scale factor used for the zoom
2303 */
Michael Jurkab3e22d92011-10-31 15:58:33 -07002304 private void setPivotsForZoom(View view, float scaleFactor) {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002305 view.setPivotX(view.getWidth() / 2.0f);
Adam Cohen7777d962011-08-18 18:58:38 -07002306 view.setPivotY(view.getHeight() / 2.0f);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002307 }
Daniel Sandlerc351eb82010-03-03 15:05:19 -05002308
Winson Chung18f41f82012-05-09 13:28:10 -07002309 void disableWallpaperIfInAllApps() {
2310 // Only disable it if we are in all apps
2311 if (mState == State.APPS_CUSTOMIZE) {
2312 if (mAppsCustomizeTabHost != null &&
2313 !mAppsCustomizeTabHost.isTransitioning()) {
2314 updateWallpaperVisibility(false);
2315 }
2316 }
2317 }
2318
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002319 void updateWallpaperVisibility(boolean visible) {
2320 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
2321 int curflags = getWindow().getAttributes().flags
2322 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
2323 if (wpflags != curflags) {
2324 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
2325 }
2326 }
2327
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002328 private void dispatchOnLauncherTransitionPrepare(View v, boolean animated, boolean toWorkspace) {
2329 if (v instanceof LauncherTransitionable) {
2330 ((LauncherTransitionable) v).onLauncherTransitionPrepare(this, animated, toWorkspace);
2331 }
2332 }
2333
Michael Jurkabed61d22012-02-14 22:51:29 -08002334 private void dispatchOnLauncherTransitionStart(View v, boolean animated, boolean toWorkspace) {
2335 if (v instanceof LauncherTransitionable) {
2336 ((LauncherTransitionable) v).onLauncherTransitionStart(this, animated, toWorkspace);
2337 }
Winson Chung70442722012-02-10 15:43:22 -08002338
2339 // Update the workspace transition step as well
2340 dispatchOnLauncherTransitionStep(v, 0f);
2341 }
2342
2343 private void dispatchOnLauncherTransitionStep(View v, float t) {
2344 if (v instanceof LauncherTransitionable) {
2345 ((LauncherTransitionable) v).onLauncherTransitionStep(this, t);
2346 }
Michael Jurkabed61d22012-02-14 22:51:29 -08002347 }
2348
2349 private void dispatchOnLauncherTransitionEnd(View v, boolean animated, boolean toWorkspace) {
2350 if (v instanceof LauncherTransitionable) {
2351 ((LauncherTransitionable) v).onLauncherTransitionEnd(this, animated, toWorkspace);
2352 }
Winson Chung70442722012-02-10 15:43:22 -08002353
2354 // Update the workspace transition step as well
2355 dispatchOnLauncherTransitionStep(v, 1f);
Michael Jurkabed61d22012-02-14 22:51:29 -08002356 }
2357
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002358 /**
Michael Jurkab3e22d92011-10-31 15:58:33 -07002359 * Things to test when changing the following seven functions.
2360 * - Home from workspace
2361 * - from center screen
2362 * - from other screens
2363 * - Home from all apps
2364 * - from center screen
2365 * - from other screens
2366 * - Back from all apps
2367 * - from center screen
2368 * - from other screens
2369 * - Launch app from workspace and quit
2370 * - with back
2371 * - with home
2372 * - Launch app from all apps and quit
2373 * - with back
2374 * - with home
2375 * - Go to a screen that's not the default, then all
2376 * apps, and launch and app, and go back
2377 * - with back
2378 * -with home
2379 * - On workspace, long press power and go back
2380 * - with back
2381 * - with home
2382 * - On all apps, long press power and go back
2383 * - with back
2384 * - with home
2385 * - On workspace, power off
2386 * - On all apps, power off
2387 * - Launch an app and turn off the screen while in that app
2388 * - Go back with home key
2389 * - Go back with back key TODO: make this not go to workspace
2390 * - From all apps
2391 * - From workspace
2392 * - Enter and exit car mode (becuase it causes an extra configuration changed)
2393 * - From all apps
2394 * - From the center workspace
2395 * - From another workspace
2396 */
2397
2398 /**
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002399 * Zoom the camera out from the workspace to reveal 'toView'.
2400 * Assumes that the view to show is anchored at either the very top or very bottom
2401 * of the screen.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002402 */
Michael Jurkabed61d22012-02-14 22:51:29 -08002403 private void showAppsCustomizeHelper(final boolean animated, final boolean springLoaded) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07002404 if (mStateAnimation != null) {
2405 mStateAnimation.cancel();
2406 mStateAnimation = null;
2407 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002408 final Resources res = getResources();
Adam Cohenf16e5712011-01-13 13:31:45 -08002409
Winson Chungf0ea4d32011-06-06 14:27:16 -07002410 final int duration = res.getInteger(R.integer.config_appsCustomizeZoomInTime);
2411 final int fadeDuration = res.getInteger(R.integer.config_appsCustomizeFadeInTime);
2412 final float scale = (float) res.getInteger(R.integer.config_appsCustomizeZoomScaleFactor);
Michael Jurkabed61d22012-02-14 22:51:29 -08002413 final View fromView = mWorkspace;
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002414 final AppsCustomizeTabHost toView = mAppsCustomizeTabHost;
Adam Cohencff6af82011-09-13 14:51:53 -07002415 final int startDelay =
2416 res.getInteger(R.integer.config_workspaceAppsCustomizeAnimationStagger);
Patrick Dubroy558654c2010-07-23 16:48:11 -07002417
Michael Jurkab3e22d92011-10-31 15:58:33 -07002418 setPivotsForZoom(toView, scale);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002419
Michael Jurkad74c9842011-07-10 12:44:21 -07002420 // Shrink workspaces away if going to AppsCustomize from workspace
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002421 Animator workspaceAnim =
2422 mWorkspace.getChangeStateAnimation(Workspace.State.SMALL, animated);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002423
2424 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08002425 toView.setScaleX(scale);
2426 toView.setScaleY(scale);
2427 final LauncherViewPropertyAnimator scaleAnim = new LauncherViewPropertyAnimator(toView);
2428 scaleAnim.
2429 scaleX(1f).scaleY(1f).
2430 setDuration(duration).
2431 setInterpolator(new Workspace.ZoomOutInterpolator());
Adam Cohen61033d32010-11-15 18:29:44 -08002432
Winson Chungf0ea4d32011-06-06 14:27:16 -07002433 toView.setVisibility(View.VISIBLE);
Adam Cohenc00f0b92011-12-06 19:45:06 -08002434 toView.setAlpha(0f);
Michael Jurka159b4cc2012-01-17 03:00:35 -08002435 final ObjectAnimator alphaAnim = ObjectAnimator
2436 .ofFloat(toView, "alpha", 0f, 1f)
2437 .setDuration(fadeDuration);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002438 alphaAnim.setInterpolator(new DecelerateInterpolator(1.5f));
Winson Chung70442722012-02-10 15:43:22 -08002439 alphaAnim.addUpdateListener(new AnimatorUpdateListener() {
2440 @Override
2441 public void onAnimationUpdate(ValueAnimator animation) {
2442 float t = (Float) animation.getAnimatedValue();
2443 dispatchOnLauncherTransitionStep(fromView, t);
2444 dispatchOnLauncherTransitionStep(toView, t);
2445 }
2446 });
Adam Cohenf16e5712011-01-13 13:31:45 -08002447
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002448 // toView should appear right at the end of the workspace shrink
2449 // animation
2450 mStateAnimation = new AnimatorSet();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002451 mStateAnimation.play(scaleAnim).after(startDelay);
Michael Jurka7407d2a2011-12-12 21:48:38 -08002452 mStateAnimation.play(alphaAnim).after(startDelay);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002453
2454 mStateAnimation.addListener(new AnimatorListenerAdapter() {
Adam Cohenf4ddea32011-09-12 13:46:42 -07002455 boolean animationCancelled = false;
2456
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002457 @Override
Chet Haaseb1254a62010-09-07 13:35:00 -07002458 public void onAnimationStart(Animator animation) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002459 updateWallpaperVisibility(true);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002460 // Prepare the position
2461 toView.setTranslationX(0.0f);
2462 toView.setTranslationY(0.0f);
2463 toView.setVisibility(View.VISIBLE);
Winson Chung785d2eb2011-04-14 16:08:02 -07002464 toView.bringToFront();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002465 }
Michael Jurka3c4c20f2010-10-28 15:36:06 -07002466 @Override
Michael Jurka8edd75c2010-12-17 20:15:06 -08002467 public void onAnimationEnd(Animator animation) {
Michael Jurkabed61d22012-02-14 22:51:29 -08002468 dispatchOnLauncherTransitionEnd(fromView, animated, false);
2469 dispatchOnLauncherTransitionEnd(toView, animated, false);
Winson Chung32174c82011-07-19 15:47:55 -07002470
2471 if (!springLoaded && !LauncherApplication.isScreenLarge()) {
2472 // Hide the workspace scrollbar
2473 mWorkspace.hideScrollingIndicator(true);
Michael Jurkab737ee62011-11-15 15:57:22 -08002474 hideDockDivider();
Winson Chung32174c82011-07-19 15:47:55 -07002475 }
Adam Cohenf4ddea32011-09-12 13:46:42 -07002476 if (!animationCancelled) {
2477 updateWallpaperVisibility(false);
2478 }
Winson Chungc7d2b602012-05-16 17:02:20 -07002479
2480 // Hide the search bar
2481 mSearchDropTargetBar.hideSearchBar(false);
Adam Cohenf4ddea32011-09-12 13:46:42 -07002482 }
2483
Adam Cohencff6af82011-09-13 14:51:53 -07002484 @Override
Adam Cohenf4ddea32011-09-12 13:46:42 -07002485 public void onAnimationCancel(Animator animation) {
2486 animationCancelled = true;
Michael Jurka3c4c20f2010-10-28 15:36:06 -07002487 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002488 });
2489
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002490 if (workspaceAnim != null) {
2491 mStateAnimation.play(workspaceAnim);
2492 }
Michael Jurka1899a362011-11-03 13:50:45 -07002493
2494 boolean delayAnim = false;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002495 final ViewTreeObserver observer;
2496
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002497 dispatchOnLauncherTransitionPrepare(fromView, animated, false);
2498 dispatchOnLauncherTransitionPrepare(toView, animated, false);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002499
2500 // If any of the objects being animated haven't been measured/laid out
2501 // yet, delay the animation until we get a layout pass
Michael Jurkabed61d22012-02-14 22:51:29 -08002502 if ((((LauncherTransitionable) toView).getContent().getMeasuredWidth() == 0) ||
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002503 (mWorkspace.getMeasuredWidth() == 0) ||
2504 (toView.getMeasuredWidth() == 0)) {
2505 observer = mWorkspace.getViewTreeObserver();
2506 delayAnim = true;
2507 } else {
2508 observer = null;
Michael Jurka1899a362011-11-03 13:50:45 -07002509 }
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002510
Michael Jurka3dcd79e2012-05-31 07:50:33 -07002511 final AnimatorSet stateAnimation = mStateAnimation;
2512 final Runnable startAnimRunnable = new Runnable() {
2513 public void run() {
2514 // Check that mStateAnimation hasn't changed while
2515 // we waited for a layout/draw pass
2516 if (mStateAnimation != stateAnimation)
2517 return;
2518 setPivotsForZoom(toView, scale);
2519 dispatchOnLauncherTransitionStart(fromView, animated, false);
2520 dispatchOnLauncherTransitionStart(toView, animated, false);
Michael Jurka382aa182012-06-11 15:42:07 -07002521 toView.post(new Runnable() {
Michael Jurka3dcd79e2012-05-31 07:50:33 -07002522 public void run() {
2523 // Check that mStateAnimation hasn't changed while
2524 // we waited for a layout/draw pass
2525 if (mStateAnimation != stateAnimation)
2526 return;
2527 mStateAnimation.start();
2528 }
2529 });
2530 }
2531 };
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002532 if (delayAnim) {
2533 final OnGlobalLayoutListener delayedStart = new OnGlobalLayoutListener() {
2534 public void onGlobalLayout() {
Michael Jurka382aa182012-06-11 15:42:07 -07002535 toView.post(startAnimRunnable);
Michael Jurka3a9fced2012-04-13 14:44:29 -07002536 observer.removeOnGlobalLayoutListener(this);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002537 }
2538 };
2539 observer.addOnGlobalLayoutListener(delayedStart);
2540 } else {
Michael Jurka3dcd79e2012-05-31 07:50:33 -07002541 startAnimRunnable.run();
Michael Jurka1899a362011-11-03 13:50:45 -07002542 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002543 } else {
2544 toView.setTranslationX(0.0f);
2545 toView.setTranslationY(0.0f);
2546 toView.setScaleX(1.0f);
2547 toView.setScaleY(1.0f);
2548 toView.setVisibility(View.VISIBLE);
Winson Chung785d2eb2011-04-14 16:08:02 -07002549 toView.bringToFront();
Winson Chung3ac74c52011-06-30 17:39:37 -07002550
Michael Jurkabed61d22012-02-14 22:51:29 -08002551 if (!springLoaded && !LauncherApplication.isScreenLarge()) {
2552 // Hide the workspace scrollbar
2553 mWorkspace.hideScrollingIndicator(true);
2554 hideDockDivider();
Winson Chungc7d2b602012-05-16 17:02:20 -07002555
2556 // Hide the search bar
2557 mSearchDropTargetBar.hideSearchBar(false);
Michael Jurkaabded662011-03-04 12:06:57 -08002558 }
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002559 dispatchOnLauncherTransitionPrepare(fromView, animated, false);
Michael Jurkabed61d22012-02-14 22:51:29 -08002560 dispatchOnLauncherTransitionStart(fromView, animated, false);
2561 dispatchOnLauncherTransitionEnd(fromView, animated, false);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002562 dispatchOnLauncherTransitionPrepare(toView, animated, false);
Michael Jurkabed61d22012-02-14 22:51:29 -08002563 dispatchOnLauncherTransitionStart(toView, animated, false);
2564 dispatchOnLauncherTransitionEnd(toView, animated, false);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002565 updateWallpaperVisibility(false);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002566 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002567 }
2568
2569 /**
2570 * Zoom the camera back into the workspace, hiding 'fromView'.
Michael Jurkab3e22d92011-10-31 15:58:33 -07002571 * This is the opposite of showAppsCustomizeHelper.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002572 * @param animated If true, the transition will be animated.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002573 */
Adam Cohened66b2b2012-01-23 17:28:51 -08002574 private void hideAppsCustomizeHelper(State toState, final boolean animated,
2575 final boolean springLoaded, final Runnable onCompleteRunnable) {
Michael Jurkabed61d22012-02-14 22:51:29 -08002576
Michael Jurkab3e22d92011-10-31 15:58:33 -07002577 if (mStateAnimation != null) {
2578 mStateAnimation.cancel();
2579 mStateAnimation = null;
2580 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002581 Resources res = getResources();
Adam Cohenf16e5712011-01-13 13:31:45 -08002582
Winson Chungf0ea4d32011-06-06 14:27:16 -07002583 final int duration = res.getInteger(R.integer.config_appsCustomizeZoomOutTime);
Michael Jurka159b4cc2012-01-17 03:00:35 -08002584 final int fadeOutDuration =
2585 res.getInteger(R.integer.config_appsCustomizeFadeOutTime);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002586 final float scaleFactor = (float)
2587 res.getInteger(R.integer.config_appsCustomizeZoomScaleFactor);
2588 final View fromView = mAppsCustomizeTabHost;
Michael Jurkabed61d22012-02-14 22:51:29 -08002589 final View toView = mWorkspace;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002590 Animator workspaceAnim = null;
2591
2592 if (toState == State.WORKSPACE) {
2593 int stagger = res.getInteger(R.integer.config_appsCustomizeWorkspaceAnimationStagger);
2594 workspaceAnim = mWorkspace.getChangeStateAnimation(
2595 Workspace.State.NORMAL, animated, stagger);
2596 } else if (toState == State.APPS_CUSTOMIZE_SPRING_LOADED) {
2597 workspaceAnim = mWorkspace.getChangeStateAnimation(
2598 Workspace.State.SPRING_LOADED, animated);
2599 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07002600
Michael Jurkab3e22d92011-10-31 15:58:33 -07002601 setPivotsForZoom(fromView, scaleFactor);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002602 updateWallpaperVisibility(true);
Winson Chung4afe9b32011-07-27 17:46:20 -07002603 showHotseat(animated);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002604 if (animated) {
Michael Jurka159b4cc2012-01-17 03:00:35 -08002605 final LauncherViewPropertyAnimator scaleAnim =
2606 new LauncherViewPropertyAnimator(fromView);
2607 scaleAnim.
2608 scaleX(scaleFactor).scaleY(scaleFactor).
2609 setDuration(duration).
2610 setInterpolator(new Workspace.ZoomInInterpolator());
2611
2612 final ObjectAnimator alphaAnim = ObjectAnimator
2613 .ofFloat(fromView, "alpha", 1f, 0f)
2614 .setDuration(fadeOutDuration);
Adam Cohencff6af82011-09-13 14:51:53 -07002615 alphaAnim.setInterpolator(new AccelerateDecelerateInterpolator());
Winson Chung70442722012-02-10 15:43:22 -08002616 alphaAnim.addUpdateListener(new AnimatorUpdateListener() {
2617 @Override
2618 public void onAnimationUpdate(ValueAnimator animation) {
2619 float t = 1f - (Float) animation.getAnimatedValue();
2620 dispatchOnLauncherTransitionStep(fromView, t);
2621 dispatchOnLauncherTransitionStep(toView, t);
2622 }
2623 });
Michael Jurka159b4cc2012-01-17 03:00:35 -08002624
Michael Jurkabed61d22012-02-14 22:51:29 -08002625 mStateAnimation = new AnimatorSet();
2626
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002627 dispatchOnLauncherTransitionPrepare(fromView, animated, true);
2628 dispatchOnLauncherTransitionPrepare(toView, animated, true);
Michael Jurkabed61d22012-02-14 22:51:29 -08002629
2630 mStateAnimation.addListener(new AnimatorListenerAdapter() {
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002631 @Override
Michael Jurka8edd75c2010-12-17 20:15:06 -08002632 public void onAnimationEnd(Animator animation) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002633 updateWallpaperVisibility(true);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002634 fromView.setVisibility(View.GONE);
Michael Jurkabed61d22012-02-14 22:51:29 -08002635 dispatchOnLauncherTransitionEnd(fromView, animated, true);
2636 dispatchOnLauncherTransitionEnd(toView, animated, true);
Michael Jurkabafdaaf2012-04-26 13:43:25 -07002637 if (mWorkspace != null) {
2638 mWorkspace.hideScrollingIndicator(false);
2639 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002640 if (onCompleteRunnable != null) {
2641 onCompleteRunnable.run();
2642 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002643 }
2644 });
2645
Winson Chungf0ea4d32011-06-06 14:27:16 -07002646 mStateAnimation.playTogether(scaleAnim, alphaAnim);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002647 if (workspaceAnim != null) {
2648 mStateAnimation.play(workspaceAnim);
2649 }
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002650 dispatchOnLauncherTransitionStart(fromView, animated, true);
2651 dispatchOnLauncherTransitionStart(toView, animated, true);
Michael Jurka3dcd79e2012-05-31 07:50:33 -07002652 final Animator stateAnimation = mStateAnimation;
2653 mWorkspace.post(new Runnable() {
2654 public void run() {
2655 if (stateAnimation != mStateAnimation)
2656 return;
2657 mStateAnimation.start();
2658 }
2659 });
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002660 } else {
2661 fromView.setVisibility(View.GONE);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002662 dispatchOnLauncherTransitionPrepare(fromView, animated, true);
Michael Jurkabed61d22012-02-14 22:51:29 -08002663 dispatchOnLauncherTransitionStart(fromView, animated, true);
2664 dispatchOnLauncherTransitionEnd(fromView, animated, true);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002665 dispatchOnLauncherTransitionPrepare(toView, animated, true);
Michael Jurkabed61d22012-02-14 22:51:29 -08002666 dispatchOnLauncherTransitionStart(toView, animated, true);
2667 dispatchOnLauncherTransitionEnd(toView, animated, true);
Michael Jurkab737ee62011-11-15 15:57:22 -08002668 mWorkspace.hideScrollingIndicator(false);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002669 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002670 }
2671
Michael Jurkae326f182011-11-21 14:05:46 -08002672 @Override
2673 public void onTrimMemory(int level) {
2674 super.onTrimMemory(level);
Winson Chungc7450e32012-04-17 17:34:08 -07002675 if (level >= ComponentCallbacks2.TRIM_MEMORY_MODERATE) {
Michael Jurkae326f182011-11-21 14:05:46 -08002676 mAppsCustomizeTabHost.onTrimMemory();
2677 }
2678 }
2679
Winson Chung18f41f82012-05-09 13:28:10 -07002680 @Override
2681 public void onWindowFocusChanged(boolean hasFocus) {
2682 if (!hasFocus) {
2683 // When another window occludes launcher (like the notification shade, or recents),
2684 // ensure that we enable the wallpaper flag so that transitions are done correctly.
2685 updateWallpaperVisibility(true);
2686 } else {
2687 // When launcher has focus again, disable the wallpaper if we are in AllApps
Winson Chung6cf79092012-06-07 14:50:10 -07002688 mWorkspace.postDelayed(new Runnable() {
2689 @Override
2690 public void run() {
2691 disableWallpaperIfInAllApps();
2692 }
2693 }, 500);
Winson Chung18f41f82012-05-09 13:28:10 -07002694 }
2695 }
2696
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002697 void showWorkspace(boolean animated) {
Adam Cohened66b2b2012-01-23 17:28:51 -08002698 showWorkspace(animated, null);
2699 }
2700
2701 void showWorkspace(boolean animated, Runnable onCompleteRunnable) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07002702 if (mState != State.WORKSPACE) {
Winson Chungc7d2b602012-05-16 17:02:20 -07002703 boolean wasInSpringLoadedMode = (mState == State.APPS_CUSTOMIZE_SPRING_LOADED);
Michael Jurkab3e22d92011-10-31 15:58:33 -07002704 mWorkspace.setVisibility(View.VISIBLE);
Adam Cohened66b2b2012-01-23 17:28:51 -08002705 hideAppsCustomizeHelper(State.WORKSPACE, animated, false, onCompleteRunnable);
Michael Jurkab3e22d92011-10-31 15:58:33 -07002706
Winson Chungc7d2b602012-05-16 17:02:20 -07002707 // Show the search bar (only animate if we were showing the drop target bar in spring
2708 // loaded mode)
2709 mSearchDropTargetBar.showSearchBar(wasInSpringLoadedMode);
2710
Michael Jurkab737ee62011-11-15 15:57:22 -08002711 // We only need to animate in the dock divider if we're going from spring loaded mode
Winson Chungc7d2b602012-05-16 17:02:20 -07002712 showDockDivider(animated && wasInSpringLoadedMode);
Michael Jurkab3e22d92011-10-31 15:58:33 -07002713
2714 // Set focus to the AppsCustomize button
2715 if (mAllAppsButton != null) {
2716 mAllAppsButton.requestFocus();
2717 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002718 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07002719
Michael Jurkab737ee62011-11-15 15:57:22 -08002720 mWorkspace.flashScrollingIndicator(animated);
Adam Cohen7777d962011-08-18 18:58:38 -07002721
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002722 // Change the state *after* we've called all the transition code
2723 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08002724
Winson Chung5fb63472011-02-02 17:03:37 -08002725 // Resume the auto-advance of widgets
2726 mUserPresent = true;
2727 updateRunning();
2728
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08002729 // send an accessibility event to announce the context change
2730 getWindow().getDecorView().sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_SELECTED);
Joe Onorato00acb122009-08-04 16:04:30 -04002731 }
2732
Michael Jurkab3e22d92011-10-31 15:58:33 -07002733 void showAllApps(boolean animated) {
2734 if (mState != State.WORKSPACE) return;
2735
2736 showAppsCustomizeHelper(animated, false);
2737 mAppsCustomizeTabHost.requestFocus();
2738
Michael Jurkab3e22d92011-10-31 15:58:33 -07002739 // Change the state *after* we've called all the transition code
2740 mState = State.APPS_CUSTOMIZE;
2741
2742 // Pause the auto-advance of widgets until we are out of AllApps
2743 mUserPresent = false;
2744 updateRunning();
2745 closeFolder();
2746
2747 // Send an accessibility event to announce the context change
2748 getWindow().getDecorView().sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_SELECTED);
2749 }
2750
Adam Cohen7777d962011-08-18 18:58:38 -07002751 void enterSpringLoadedDragMode() {
Winson Chungb26f3d62011-06-02 10:49:29 -07002752 if (mState == State.APPS_CUSTOMIZE) {
Adam Cohened66b2b2012-01-23 17:28:51 -08002753 hideAppsCustomizeHelper(State.APPS_CUSTOMIZE_SPRING_LOADED, true, true, null);
Michael Jurkab737ee62011-11-15 15:57:22 -08002754 hideDockDivider();
Winson Chungc07918d2011-07-01 15:35:26 -07002755 mState = State.APPS_CUSTOMIZE_SPRING_LOADED;
Winson Chungb26f3d62011-06-02 10:49:29 -07002756 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08002757 }
Adam Cohen7777d962011-08-18 18:58:38 -07002758
Adam Cohened66b2b2012-01-23 17:28:51 -08002759 void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, boolean extendedDelay,
2760 final Runnable onCompleteRunnable) {
Winson Chung09bfc452011-09-09 11:30:20 -07002761 if (mState != State.APPS_CUSTOMIZE_SPRING_LOADED) return;
2762
Winson Chunge7a03942011-08-05 15:05:12 -07002763 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07002764 @Override
2765 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07002766 if (successfulDrop) {
Michael Jurka7bdb25a2011-08-03 15:16:44 -07002767 // Before we show workspace, hide all apps again because
2768 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
2769 // clean up our state transition functions
2770 mAppsCustomizeTabHost.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08002771 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07002772 } else {
2773 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07002774 }
Winson Chung557d6ed2011-07-08 15:34:52 -07002775 }
2776 }, (extendedDelay ?
2777 EXIT_SPRINGLOADED_MODE_LONG_TIMEOUT :
2778 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT));
2779 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07002780
Michael Jurkad3ef3062010-11-23 16:23:58 -08002781 void exitSpringLoadedDragMode() {
Winson Chungb26f3d62011-06-02 10:49:29 -07002782 if (mState == State.APPS_CUSTOMIZE_SPRING_LOADED) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07002783 final boolean animated = true;
2784 final boolean springLoaded = true;
2785 showAppsCustomizeHelper(animated, springLoaded);
Winson Chungb26f3d62011-06-02 10:49:29 -07002786 mState = State.APPS_CUSTOMIZE;
Winson Chungf0ea4d32011-06-06 14:27:16 -07002787 }
2788 // Otherwise, we are not in spring loaded mode, so don't do anything.
2789 }
2790
Michael Jurkab737ee62011-11-15 15:57:22 -08002791 void hideDockDivider() {
2792 if (mQsbDivider != null && mDockDivider != null) {
2793 mQsbDivider.setVisibility(View.INVISIBLE);
2794 mDockDivider.setVisibility(View.INVISIBLE);
2795 }
2796 }
2797
2798 void showDockDivider(boolean animated) {
2799 if (mQsbDivider != null && mDockDivider != null) {
2800 mQsbDivider.setVisibility(View.VISIBLE);
2801 mDockDivider.setVisibility(View.VISIBLE);
2802 if (mDividerAnimator != null) {
2803 mDividerAnimator.cancel();
2804 mQsbDivider.setAlpha(1f);
2805 mDockDivider.setAlpha(1f);
2806 mDividerAnimator = null;
2807 }
2808 if (animated) {
2809 mDividerAnimator = new AnimatorSet();
2810 mDividerAnimator.playTogether(ObjectAnimator.ofFloat(mQsbDivider, "alpha", 1f),
2811 ObjectAnimator.ofFloat(mDockDivider, "alpha", 1f));
2812 mDividerAnimator.setDuration(mSearchDropTargetBar.getTransitionInDuration());
2813 mDividerAnimator.start();
2814 }
2815 }
2816 }
2817
Michael Jurkab3e22d92011-10-31 15:58:33 -07002818 void lockAllApps() {
2819 // TODO
2820 }
2821
2822 void unlockAllApps() {
2823 // TODO
2824 }
2825
Adam Cohenfc53cd22011-07-20 15:45:11 -07002826 public boolean isAllAppsCustomizeOpen() {
2827 return mState == State.APPS_CUSTOMIZE;
2828 }
2829
Winson Chungf0ea4d32011-06-06 14:27:16 -07002830 /**
Winson Chung3d503fb2011-07-13 17:25:49 -07002831 * Shows the hotseat area.
Winson Chungf0ea4d32011-06-06 14:27:16 -07002832 */
Winson Chung3d503fb2011-07-13 17:25:49 -07002833 void showHotseat(boolean animated) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07002834 if (!LauncherApplication.isScreenLarge()) {
2835 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08002836 if (mHotseat.getAlpha() != 1f) {
2837 int duration = mSearchDropTargetBar.getTransitionInDuration();
2838 mHotseat.animate().alpha(1f).setDuration(duration);
2839 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002840 } else {
Winson Chung3d503fb2011-07-13 17:25:49 -07002841 mHotseat.setAlpha(1f);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002842 }
2843 }
2844 }
2845
2846 /**
Winson Chung3d503fb2011-07-13 17:25:49 -07002847 * Hides the hotseat area.
Winson Chungf0ea4d32011-06-06 14:27:16 -07002848 */
Winson Chung3d503fb2011-07-13 17:25:49 -07002849 void hideHotseat(boolean animated) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07002850 if (!LauncherApplication.isScreenLarge()) {
2851 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08002852 if (mHotseat.getAlpha() != 0f) {
2853 int duration = mSearchDropTargetBar.getTransitionOutDuration();
2854 mHotseat.animate().alpha(0f).setDuration(duration);
2855 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002856 } else {
Winson Chung3d503fb2011-07-13 17:25:49 -07002857 mHotseat.setAlpha(0f);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002858 }
Winson Chungb26f3d62011-06-02 10:49:29 -07002859 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08002860 }
2861
Patrick Dubroy5f445422011-02-18 14:35:21 -08002862 /**
2863 * Add an item from all apps or customize onto the given workspace screen.
2864 * If layout is null, add to the current screen.
2865 */
2866 void addExternalItemToScreen(ItemInfo itemInfo, final CellLayout layout) {
Michael Jurka6b4b25d2010-10-20 18:19:45 -07002867 if (!mWorkspace.addExternalItemToScreen(itemInfo, layout)) {
Winson Chung93eef082012-03-23 15:59:27 -07002868 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka213d9632010-07-28 11:29:25 -07002869 }
Michael Jurka6b4b25d2010-10-20 18:19:45 -07002870 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07002871
Winson Chungdff8ebb2011-09-08 17:25:31 -07002872 /** Maps the current orientation to an index for referencing orientation correct global icons */
2873 private int getCurrentOrientationIndexForGlobalIcons() {
2874 // default - 0, landscape - 1
2875 switch (getResources().getConfiguration().orientation) {
2876 case Configuration.ORIENTATION_LANDSCAPE:
2877 return 1;
2878 default:
2879 return 0;
2880 }
2881 }
2882
Michael Jurkaae65ee32012-04-30 11:45:54 -07002883 private Drawable getExternalPackageToolbarIcon(ComponentName activityName, String resourceName) {
Michael Jurka0423dcf2010-10-05 14:56:18 -07002884 try {
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002885 PackageManager packageManager = getPackageManager();
Michael Jurka0423dcf2010-10-05 14:56:18 -07002886 // Look for the toolbar icon specified in the activity meta-data
2887 Bundle metaData = packageManager.getActivityInfo(
2888 activityName, PackageManager.GET_META_DATA).metaData;
2889 if (metaData != null) {
Michael Jurkaae65ee32012-04-30 11:45:54 -07002890 int iconResId = metaData.getInt(resourceName);
Michael Jurka0423dcf2010-10-05 14:56:18 -07002891 if (iconResId != 0) {
2892 Resources res = packageManager.getResourcesForActivity(activityName);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002893 return res.getDrawable(iconResId);
Michael Jurka0423dcf2010-10-05 14:56:18 -07002894 }
2895 }
2896 } catch (NameNotFoundException e) {
Michael Jurkab6052a92011-07-12 17:02:45 -07002897 // This can happen if the activity defines an invalid drawable
2898 Log.w(TAG, "Failed to load toolbar icon; " + activityName.flattenToShortString() +
2899 " not found", e);
Mathew Inwood70d51022011-07-12 13:41:41 +01002900 } catch (Resources.NotFoundException nfe) {
2901 // This can happen if the activity defines an invalid drawable
2902 Log.w(TAG, "Failed to load toolbar icon from " + activityName.flattenToShortString(),
2903 nfe);
Michael Jurka0423dcf2010-10-05 14:56:18 -07002904 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002905 return null;
2906 }
2907
2908 // if successful in getting icon, return it; otherwise, set button to use default drawable
2909 private Drawable.ConstantState updateTextButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07002910 int buttonId, ComponentName activityName, int fallbackDrawableId,
2911 String toolbarResourceName) {
2912 Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName, toolbarResourceName);
Winson Chung128bbcd2011-08-31 16:58:52 -07002913 Resources r = getResources();
2914 int w = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_width);
2915 int h = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_height);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002916
Michael Jurka4da7a3e2011-10-28 15:04:35 -07002917 TextView button = (TextView) findViewById(buttonId);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002918 // If we were unable to find the icon via the meta-data, use a generic one
2919 if (toolbarIcon == null) {
Winson Chung128bbcd2011-08-31 16:58:52 -07002920 toolbarIcon = r.getDrawable(fallbackDrawableId);
2921 toolbarIcon.setBounds(0, 0, w, h);
Michael Jurka4da7a3e2011-10-28 15:04:35 -07002922 if (button != null) {
2923 button.setCompoundDrawables(toolbarIcon, null, null, null);
2924 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002925 return null;
2926 } else {
Winson Chung128bbcd2011-08-31 16:58:52 -07002927 toolbarIcon.setBounds(0, 0, w, h);
Michael Jurka4da7a3e2011-10-28 15:04:35 -07002928 if (button != null) {
2929 button.setCompoundDrawables(toolbarIcon, null, null, null);
2930 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002931 return toolbarIcon.getConstantState();
2932 }
2933 }
2934
2935 // if successful in getting icon, return it; otherwise, set button to use default drawable
2936 private Drawable.ConstantState updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07002937 int buttonId, ComponentName activityName, int fallbackDrawableId,
2938 String toolbarResourceName) {
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002939 ImageView button = (ImageView) findViewById(buttonId);
Michael Jurkaae65ee32012-04-30 11:45:54 -07002940 Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName, toolbarResourceName);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002941
Michael Jurka19e0fc52011-07-22 18:00:21 -07002942 if (button != null) {
2943 // If we were unable to find the icon via the meta-data, use a
2944 // generic one
2945 if (toolbarIcon == null) {
2946 button.setImageResource(fallbackDrawableId);
2947 } else {
2948 button.setImageDrawable(toolbarIcon);
2949 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07002950 }
Michael Jurka19e0fc52011-07-22 18:00:21 -07002951
2952 return toolbarIcon != null ? toolbarIcon.getConstantState() : null;
2953
Michael Jurka0423dcf2010-10-05 14:56:18 -07002954 }
2955
Winson Chung1b884092012-06-08 17:13:02 -07002956 private void updateTextButtonWithDrawable(int buttonId, Drawable d) {
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002957 TextView button = (TextView) findViewById(buttonId);
Winson Chung1b884092012-06-08 17:13:02 -07002958 button.setCompoundDrawables(d, null, null, null);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08002959 }
2960
Michael Jurkae7bf83b2010-12-14 18:02:21 -08002961 private void updateButtonWithDrawable(int buttonId, Drawable.ConstantState d) {
Michael Jurka4ef207b2010-11-29 17:05:45 -08002962 ImageView button = (ImageView) findViewById(buttonId);
Michael Jurkae7bf83b2010-12-14 18:02:21 -08002963 button.setImageDrawable(d.newDrawable(getResources()));
Michael Jurka4ef207b2010-11-29 17:05:45 -08002964 }
2965
Winson Chungbb185bd2011-11-21 12:31:42 -08002966 private void invalidatePressedFocusedStates(View container, View button) {
2967 if (container instanceof HolographicLinearLayout) {
2968 HolographicLinearLayout layout = (HolographicLinearLayout) container;
2969 layout.invalidatePressedFocusedStates();
2970 } else if (button instanceof HolographicImageView) {
2971 HolographicImageView view = (HolographicImageView) button;
2972 view.invalidatePressedFocusedStates();
2973 }
2974 }
2975
Winson Chungc51db6a2011-10-05 11:44:49 -07002976 private boolean updateGlobalSearchIcon() {
2977 final View searchButtonContainer = findViewById(R.id.search_button_container);
Winson Chung1cad91e2011-05-25 17:41:01 -07002978 final ImageView searchButton = (ImageView) findViewById(R.id.search_button);
2979 final View searchDivider = findViewById(R.id.search_divider);
Winson Chungc51db6a2011-10-05 11:44:49 -07002980 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
Winson Chungcbf7c4d2011-08-23 11:58:54 -07002981 final View voiceButton = findViewById(R.id.voice_button);
Winson Chunge3fbfa92012-04-24 14:34:28 -07002982 final View voiceButtonProxy = findViewById(R.id.voice_button_proxy);
Winson Chung97d85d22011-04-13 11:27:36 -07002983
Winson Chung1cad91e2011-05-25 17:41:01 -07002984 final SearchManager searchManager =
2985 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2986 ComponentName activityName = searchManager.getGlobalSearchActivity();
2987 if (activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07002988 int coi = getCurrentOrientationIndexForGlobalIcons();
2989 sGlobalSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07002990 R.id.search_button, activityName, R.drawable.ic_home_search_normal_holo,
2991 TOOLBAR_SEARCH_ICON_METADATA_NAME);
2992 if (sGlobalSearchIcon[coi] == null) {
2993 sGlobalSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
2994 R.id.search_button, activityName, R.drawable.ic_home_search_normal_holo,
2995 TOOLBAR_ICON_METADATA_NAME);
2996 }
2997
Winson Chung649723c2011-07-06 20:41:23 -07002998 if (searchDivider != null) searchDivider.setVisibility(View.VISIBLE);
Winson Chungc51db6a2011-10-05 11:44:49 -07002999 if (searchButtonContainer != null) searchButtonContainer.setVisibility(View.VISIBLE);
3000 searchButton.setVisibility(View.VISIBLE);
Winson Chungbb185bd2011-11-21 12:31:42 -08003001 invalidatePressedFocusedStates(searchButtonContainer, searchButton);
Winson Chungc51db6a2011-10-05 11:44:49 -07003002 return true;
Winson Chung1cad91e2011-05-25 17:41:01 -07003003 } else {
Winson Chungcbf7c4d2011-08-23 11:58:54 -07003004 // We disable both search and voice search when there is no global search provider
Winson Chung649723c2011-07-06 20:41:23 -07003005 if (searchDivider != null) searchDivider.setVisibility(View.GONE);
Winson Chungc51db6a2011-10-05 11:44:49 -07003006 if (searchButtonContainer != null) searchButtonContainer.setVisibility(View.GONE);
3007 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.GONE);
3008 searchButton.setVisibility(View.GONE);
Winson Chungcbf7c4d2011-08-23 11:58:54 -07003009 voiceButton.setVisibility(View.GONE);
Michael Jurkac60498a2012-05-07 15:29:42 -07003010 if (voiceButtonProxy != null) {
3011 voiceButtonProxy.setVisibility(View.GONE);
3012 }
Winson Chungc51db6a2011-10-05 11:44:49 -07003013 return false;
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003014 }
3015 }
3016
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003017 private void updateGlobalSearchIcon(Drawable.ConstantState d) {
Winson Chungbb185bd2011-11-21 12:31:42 -08003018 final View searchButtonContainer = findViewById(R.id.search_button_container);
3019 final View searchButton = (ImageView) findViewById(R.id.search_button);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003020 updateButtonWithDrawable(R.id.search_button, d);
Winson Chungbb185bd2011-11-21 12:31:42 -08003021 invalidatePressedFocusedStates(searchButtonContainer, searchButton);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003022 }
3023
Winson Chungc51db6a2011-10-05 11:44:49 -07003024 private boolean updateVoiceSearchIcon(boolean searchVisible) {
Winson Chung1cad91e2011-05-25 17:41:01 -07003025 final View searchDivider = findViewById(R.id.search_divider);
Winson Chungc51db6a2011-10-05 11:44:49 -07003026 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
Winson Chung1cad91e2011-05-25 17:41:01 -07003027 final View voiceButton = findViewById(R.id.voice_button);
Winson Chunge3fbfa92012-04-24 14:34:28 -07003028 final View voiceButtonProxy = findViewById(R.id.voice_button_proxy);
Winson Chung97d85d22011-04-13 11:27:36 -07003029
Winson Chungc51db6a2011-10-05 11:44:49 -07003030 // We only show/update the voice search icon if the search icon is enabled as well
Michael Jurkaae65ee32012-04-30 11:45:54 -07003031 final SearchManager searchManager =
3032 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
3033 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
3034
3035 ComponentName activityName = null;
3036 if (globalSearchActivity != null) {
3037 // Check if the global search activity handles voice search
3038 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
3039 intent.setPackage(globalSearchActivity.getPackageName());
3040 activityName = intent.resolveActivity(getPackageManager());
3041 }
3042
3043 if (activityName == null) {
3044 // Fallback: check if an activity other than the global search activity
3045 // resolves this
3046 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
3047 activityName = intent.resolveActivity(getPackageManager());
3048 }
Winson Chungc51db6a2011-10-05 11:44:49 -07003049 if (searchVisible && activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07003050 int coi = getCurrentOrientationIndexForGlobalIcons();
3051 sVoiceSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003052 R.id.voice_button, activityName, R.drawable.ic_home_voice_search_holo,
3053 TOOLBAR_VOICE_SEARCH_ICON_METADATA_NAME);
3054 if (sVoiceSearchIcon[coi] == null) {
3055 sVoiceSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
3056 R.id.voice_button, activityName, R.drawable.ic_home_voice_search_holo,
3057 TOOLBAR_ICON_METADATA_NAME);
3058 }
Winson Chung649723c2011-07-06 20:41:23 -07003059 if (searchDivider != null) searchDivider.setVisibility(View.VISIBLE);
Winson Chungc51db6a2011-10-05 11:44:49 -07003060 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.VISIBLE);
Winson Chung1cad91e2011-05-25 17:41:01 -07003061 voiceButton.setVisibility(View.VISIBLE);
Jim Miller14091b12012-04-24 19:27:54 -07003062 if (voiceButtonProxy != null) {
3063 voiceButtonProxy.setVisibility(View.VISIBLE);
3064 }
Winson Chungbb185bd2011-11-21 12:31:42 -08003065 invalidatePressedFocusedStates(voiceButtonContainer, voiceButton);
Winson Chungc51db6a2011-10-05 11:44:49 -07003066 return true;
Winson Chung1cad91e2011-05-25 17:41:01 -07003067 } else {
Winson Chung649723c2011-07-06 20:41:23 -07003068 if (searchDivider != null) searchDivider.setVisibility(View.GONE);
Winson Chungc51db6a2011-10-05 11:44:49 -07003069 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.GONE);
Winson Chung1cad91e2011-05-25 17:41:01 -07003070 voiceButton.setVisibility(View.GONE);
Jim Miller14091b12012-04-24 19:27:54 -07003071 if (voiceButtonProxy != null) {
3072 voiceButtonProxy.setVisibility(View.GONE);
3073 }
Winson Chungc51db6a2011-10-05 11:44:49 -07003074 return false;
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003075 }
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003076 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07003077
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003078 private void updateVoiceSearchIcon(Drawable.ConstantState d) {
Winson Chungbb185bd2011-11-21 12:31:42 -08003079 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
3080 final View voiceButton = findViewById(R.id.voice_button);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003081 updateButtonWithDrawable(R.id.voice_button, d);
Winson Chungbb185bd2011-11-21 12:31:42 -08003082 invalidatePressedFocusedStates(voiceButtonContainer, voiceButton);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003083 }
3084
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003085 /**
Winson Chungeb66b142011-06-16 13:14:22 -07003086 * Sets the app market icon
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003087 */
3088 private void updateAppMarketIcon() {
Winson Chung785d2eb2011-04-14 16:08:02 -07003089 final View marketButton = findViewById(R.id.market_button);
3090 Intent intent = new Intent(Intent.ACTION_MAIN).addCategory(Intent.CATEGORY_APP_MARKET);
3091 // Find the app market activity by resolving an intent.
3092 // (If multiple app markets are installed, it will return the ResolverActivity.)
3093 ComponentName activityName = intent.resolveActivity(getPackageManager());
Winson Chung6a26e5b2011-05-26 14:36:06 -07003094 if (activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07003095 int coi = getCurrentOrientationIndexForGlobalIcons();
Winson Chung785d2eb2011-04-14 16:08:02 -07003096 mAppMarketIntent = intent;
Winson Chungdff8ebb2011-09-08 17:25:31 -07003097 sAppMarketIcon[coi] = updateTextButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003098 R.id.market_button, activityName, R.drawable.ic_launcher_market_holo,
3099 TOOLBAR_ICON_METADATA_NAME);
Winson Chung785d2eb2011-04-14 16:08:02 -07003100 marketButton.setVisibility(View.VISIBLE);
3101 } else {
3102 // We should hide and disable the view so that we don't try and restore the visibility
3103 // of it when we swap between drag & normal states from IconDropTarget subclasses.
3104 marketButton.setVisibility(View.GONE);
3105 marketButton.setEnabled(false);
Michael Jurka0423dcf2010-10-05 14:56:18 -07003106 }
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003107 }
3108
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003109 private void updateAppMarketIcon(Drawable.ConstantState d) {
Winson Chung1b884092012-06-08 17:13:02 -07003110 // Ensure that the new drawable we are creating has the approprate toolbar icon bounds
3111 Resources r = getResources();
3112 Drawable marketIconDrawable = d.newDrawable(r);
3113 int w = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_width);
3114 int h = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_height);
3115 marketIconDrawable.setBounds(0, 0, w, h);
3116
3117 updateTextButtonWithDrawable(R.id.market_button, marketIconDrawable);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003118 }
3119
Michael Jurkad7c28052012-04-27 15:43:36 -07003120 @Override
3121 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
3122 boolean result = super.dispatchPopulateAccessibilityEvent(event);
3123 final List<CharSequence> text = event.getText();
3124 text.clear();
3125 text.add(getString(R.string.home));
3126 return result;
3127 }
3128
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003129 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003130 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003131 */
3132 private class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
3133 @Override
3134 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003135 closeSystemDialogs();
3136 }
3137 }
3138
3139 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08003140 * Receives notifications whenever the appwidgets are reset.
3141 */
3142 private class AppWidgetResetObserver extends ContentObserver {
3143 public AppWidgetResetObserver() {
3144 super(new Handler());
3145 }
3146
3147 @Override
3148 public void onChange(boolean selfChange) {
3149 onAppWidgetReset();
3150 }
3151 }
3152
3153 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003154 * If the activity is currently paused, signal that we need to re-run the loader
3155 * in onResume.
3156 *
3157 * This needs to be called from incoming places where resources might have been loaded
3158 * while we are paused. That is becaues the Configuration might be wrong
3159 * when we're not running, and if it comes back to what it was when we
3160 * were paused, we are not restarted.
3161 *
3162 * Implementation of the method from LauncherModel.Callbacks.
3163 *
3164 * @return true if we are currently paused. The caller might be able to
3165 * skip some work in that case since we will come back again.
3166 */
3167 public boolean setLoadOnResume() {
3168 if (mPaused) {
3169 Log.i(TAG, "setLoadOnResume");
3170 mOnResumeNeedsLoad = true;
3171 return true;
3172 } else {
3173 return false;
3174 }
3175 }
3176
3177 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003178 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003179 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003180 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003181 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003182 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003183 } else {
3184 return SCREEN_COUNT / 2;
3185 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003186 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003187
Joe Onorato9c1289c2009-08-17 11:03:03 -04003188 /**
3189 * Refreshes the shortcuts shown on the workspace.
3190 *
3191 * Implementation of the method from LauncherModel.Callbacks.
3192 */
3193 public void startBinding() {
3194 final Workspace workspace = mWorkspace;
Adam Cohendf035382011-04-11 17:22:04 -07003195
Winson Chungf0c6ae02012-03-21 16:10:31 -07003196 mNewShortcutAnimatePage = -1;
3197 mNewShortcutAnimateViews.clear();
Adam Cohendf035382011-04-11 17:22:04 -07003198 mWorkspace.clearDropTargets();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003199 int count = workspace.getChildCount();
3200 for (int i = 0; i < count; i++) {
Joe Onorato3c2f7e12009-10-31 19:17:31 -04003201 // Use removeAllViewsInLayout() to avoid an extra requestLayout() and invalidate().
Winson Chung7a25a9e2011-01-30 13:33:56 -08003202 final CellLayout layoutParent = (CellLayout) workspace.getChildAt(i);
3203 layoutParent.removeAllViewsInLayout();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003204 }
Michael Jurka05bf6442011-11-30 20:28:53 -08003205 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003206 if (mHotseat != null) {
3207 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003208 }
3209 }
3210
3211 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003212 * Bind the items start-end from the list.
3213 *
3214 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003215 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003216 public void bindItems(ArrayList<ItemInfo> shortcuts, int start, int end) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003217 setLoadOnResume();
3218
Winson Chungf0c6ae02012-03-21 16:10:31 -07003219 // Get the list of added shortcuts and intersect them with the set of shortcuts here
3220 Set<String> newApps = new HashSet<String>();
3221 newApps = mSharedPrefs.getStringSet(InstallShortcutReceiver.NEW_APPS_LIST_KEY, newApps);
3222
3223 Workspace workspace = mWorkspace;
3224 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003225 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003226
3227 // Short circuit if we are loading dock items for a configuration which has no dock
3228 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3229 mHotseat == null) {
3230 continue;
3231 }
3232
Joe Onorato9c1289c2009-08-17 11:03:03 -04003233 switch (item.itemType) {
3234 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3235 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07003236 ShortcutInfo info = (ShortcutInfo) item;
3237 String uri = info.intent.toUri(0).toString();
3238 View shortcut = createShortcut(info);
Winson Chung3d503fb2011-07-13 17:25:49 -07003239 workspace.addInScreen(shortcut, item.container, item.screen, item.cellX,
3240 item.cellY, 1, 1, false);
Winson Chungbfeac062012-06-06 15:56:08 -07003241 boolean animateIconUp = false;
3242 synchronized (newApps) {
3243 if (newApps.contains(uri)) {
3244 animateIconUp = newApps.remove(uri);
3245 }
3246 }
3247 if (animateIconUp) {
Winson Chungf0c6ae02012-03-21 16:10:31 -07003248 // Prepare the view to be animated up
3249 shortcut.setAlpha(0f);
3250 shortcut.setScaleX(0f);
3251 shortcut.setScaleY(0f);
3252 mNewShortcutAnimatePage = item.screen;
3253 if (!mNewShortcutAnimateViews.contains(shortcut)) {
3254 mNewShortcutAnimateViews.add(shortcut);
3255 }
3256 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003257 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003258 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Winson Chung3d503fb2011-07-13 17:25:49 -07003259 FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003260 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003261 (FolderInfo) item, mIconCache);
Winson Chung3d503fb2011-07-13 17:25:49 -07003262 workspace.addInScreen(newFolder, item.container, item.screen, item.cellX,
3263 item.cellY, 1, 1, false);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003264 break;
Joe Onorato9c1289c2009-08-17 11:03:03 -04003265 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003266 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003267
Joe Onorato9c1289c2009-08-17 11:03:03 -04003268 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003269 }
3270
Joe Onorato9c1289c2009-08-17 11:03:03 -04003271 /**
3272 * Implementation of the method from LauncherModel.Callbacks.
3273 */
Joe Onoratoad72e172009-11-06 16:25:04 -05003274 public void bindFolders(HashMap<Long, FolderInfo> folders) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003275 setLoadOnResume();
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07003276 sFolders.clear();
3277 sFolders.putAll(folders);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003278 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003279
3280 /**
3281 * Add the views for a widget to the workspace.
3282 *
3283 * Implementation of the method from LauncherModel.Callbacks.
3284 */
3285 public void bindAppWidget(LauncherAppWidgetInfo item) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003286 setLoadOnResume();
3287
Daniel Sandler843e8602010-06-07 14:59:01 -04003288 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
3289 if (DEBUG_WIDGETS) {
3290 Log.d(TAG, "bindAppWidget: " + item);
3291 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003292 final Workspace workspace = mWorkspace;
3293
3294 final int appWidgetId = item.appWidgetId;
3295 final AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
Daniel Sandler843e8602010-06-07 14:59:01 -04003296 if (DEBUG_WIDGETS) {
3297 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component " + appWidgetInfo.provider);
3298 }
3299
Joe Onorato9c1289c2009-08-17 11:03:03 -04003300 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
3301
Joe Onorato9c1289c2009-08-17 11:03:03 -04003302 item.hostView.setTag(item);
Winson Chung211bac32012-05-15 13:43:57 -07003303 item.onBindAppWidget(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003304
Winson Chung3d503fb2011-07-13 17:25:49 -07003305 workspace.addInScreen(item.hostView, item.container, item.screen, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04003306 item.cellY, item.spanX, item.spanY, false);
Adam Cohended9f8d2010-11-03 13:25:16 -07003307 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
3308
Joe Onorato9c1289c2009-08-17 11:03:03 -04003309 workspace.requestLayout();
3310
Daniel Sandler843e8602010-06-07 14:59:01 -04003311 if (DEBUG_WIDGETS) {
3312 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
3313 + (SystemClock.uptimeMillis()-start) + "ms");
3314 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003315 }
3316
3317 /**
3318 * Callback saying that there aren't any more items to bind.
3319 *
3320 * Implementation of the method from LauncherModel.Callbacks.
3321 */
3322 public void finishBindingItems() {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003323 setLoadOnResume();
3324
Joe Onorato9c1289c2009-08-17 11:03:03 -04003325 if (mSavedState != null) {
3326 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07003327 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003328 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003329 mSavedState = null;
3330 }
3331
3332 if (mSavedInstanceState != null) {
3333 super.onRestoreInstanceState(mSavedInstanceState);
3334 mSavedInstanceState = null;
3335 }
3336
Patrick Dubroy002cbf42011-03-03 16:36:21 -08003337 // If we received the result of any pending adds while the loader was running (e.g. the
3338 // widget configuration forced an orientation change), process them now.
3339 for (int i = 0; i < sPendingAddList.size(); i++) {
3340 completeAdd(sPendingAddList.get(i));
3341 }
3342 sPendingAddList.clear();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003343
Winson Chungc51db6a2011-10-05 11:44:49 -07003344 // Update the market app icon as necessary (the other icons will be managed in response to
3345 // package changes in bindSearchablesChanged()
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003346 updateAppMarketIcon();
Michael Jurkac1f5d262011-09-30 19:32:27 -07003347
Winson Chungf0c6ae02012-03-21 16:10:31 -07003348 // Animate up any icons as necessary
3349 if (mVisible || mWorkspaceLoading) {
3350 Runnable newAppsRunnable = new Runnable() {
3351 @Override
3352 public void run() {
Winson Chunga2413752012-04-03 14:22:34 -07003353 runNewAppsAnimation(false);
Winson Chungf0c6ae02012-03-21 16:10:31 -07003354 }
3355 };
Winson Chunga2413752012-04-03 14:22:34 -07003356
3357 boolean willSnapPage = mNewShortcutAnimatePage > -1 &&
3358 mNewShortcutAnimatePage != mWorkspace.getCurrentPage();
3359 if (canRunNewAppsAnimation()) {
3360 // If the user has not interacted recently, then either snap to the new page to show
3361 // the new-apps animation or just run them if they are to appear on the current page
3362 if (willSnapPage) {
3363 mWorkspace.snapToPage(mNewShortcutAnimatePage, newAppsRunnable);
3364 } else {
3365 runNewAppsAnimation(false);
3366 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003367 } else {
Winson Chung318eee02012-04-12 10:59:27 -07003368 // If the user has interacted recently, then just add the items in place if they
Winson Chunga2413752012-04-03 14:22:34 -07003369 // are on another page (or just normally if they are added to the current page)
3370 runNewAppsAnimation(willSnapPage);
Winson Chungf0c6ae02012-03-21 16:10:31 -07003371 }
3372 }
3373
3374 mWorkspaceLoading = false;
3375 }
3376
Winson Chunga2413752012-04-03 14:22:34 -07003377 private boolean canRunNewAppsAnimation() {
3378 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
3379 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000);
3380 }
3381
Winson Chungf0c6ae02012-03-21 16:10:31 -07003382 /**
3383 * Runs a new animation that scales up icons that were added while Launcher was in the
3384 * background.
Winson Chunga2413752012-04-03 14:22:34 -07003385 *
3386 * @param immediate whether to run the animation or show the results immediately
Winson Chungf0c6ae02012-03-21 16:10:31 -07003387 */
Winson Chunga2413752012-04-03 14:22:34 -07003388 private void runNewAppsAnimation(boolean immediate) {
Winson Chungf0c6ae02012-03-21 16:10:31 -07003389 AnimatorSet anim = new AnimatorSet();
3390 Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chunga2413752012-04-03 14:22:34 -07003391
3392 // Order these new views spatially so that they animate in order
Winson Chungf0c6ae02012-03-21 16:10:31 -07003393 Collections.sort(mNewShortcutAnimateViews, new Comparator<View>() {
3394 @Override
3395 public int compare(View a, View b) {
3396 CellLayout.LayoutParams alp = (CellLayout.LayoutParams) a.getLayoutParams();
3397 CellLayout.LayoutParams blp = (CellLayout.LayoutParams) b.getLayoutParams();
3398 int cellCountX = LauncherModel.getCellCountX();
3399 return (alp.cellY * cellCountX + alp.cellX) - (blp.cellY * cellCountX + blp.cellX);
3400 }
3401 });
Winson Chunga2413752012-04-03 14:22:34 -07003402
3403 // Animate each of the views in place (or show them immediately if requested)
3404 if (immediate) {
3405 for (View v : mNewShortcutAnimateViews) {
3406 v.setAlpha(1f);
3407 v.setScaleX(1f);
3408 v.setScaleY(1f);
Winson Chungf0c6ae02012-03-21 16:10:31 -07003409 }
Winson Chunga2413752012-04-03 14:22:34 -07003410 } else {
3411 for (int i = 0; i < mNewShortcutAnimateViews.size(); ++i) {
3412 View v = mNewShortcutAnimateViews.get(i);
3413 ValueAnimator bounceAnim = ObjectAnimator.ofPropertyValuesHolder(v,
3414 PropertyValuesHolder.ofFloat("alpha", 1f),
3415 PropertyValuesHolder.ofFloat("scaleX", 1f),
3416 PropertyValuesHolder.ofFloat("scaleY", 1f));
3417 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
3418 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
3419 bounceAnim.setInterpolator(new SmoothPagedView.OvershootInterpolator());
3420 bounceAnims.add(bounceAnim);
3421 }
3422 anim.playTogether(bounceAnims);
3423 anim.addListener(new AnimatorListenerAdapter() {
3424 @Override
3425 public void onAnimationEnd(Animator animation) {
3426 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
3427 }
3428 });
3429 anim.start();
3430 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003431
3432 // Clean up
3433 mNewShortcutAnimatePage = -1;
3434 mNewShortcutAnimateViews.clear();
3435 new Thread("clearNewAppsThread") {
3436 public void run() {
3437 mSharedPrefs.edit()
3438 .putInt(InstallShortcutReceiver.NEW_APPS_PAGE_KEY, -1)
3439 .putStringSet(InstallShortcutReceiver.NEW_APPS_LIST_KEY, null)
3440 .commit();
3441 }
3442 }.start();
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003443 }
3444
Narayan Kamathcb1a4772011-06-28 13:46:59 +01003445 @Override
3446 public void bindSearchablesChanged() {
Winson Chungc51db6a2011-10-05 11:44:49 -07003447 boolean searchVisible = updateGlobalSearchIcon();
3448 boolean voiceVisible = updateVoiceSearchIcon(searchVisible);
3449 mSearchDropTargetBar.onSearchPackagesChanged(searchVisible, voiceVisible);
Narayan Kamathcb1a4772011-06-28 13:46:59 +01003450 }
3451
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003452 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003453 * Add the icons for all apps.
3454 *
3455 * Implementation of the method from LauncherModel.Callbacks.
3456 */
Michael Jurkac57b7a82011-08-09 22:02:20 -07003457 public void bindAllApplications(final ArrayList<ApplicationInfo> apps) {
3458 // Remove the progress bar entirely; we could also make it GONE
3459 // but better to remove it since we know it's not going to be used
3460 View progressBar = mAppsCustomizeTabHost.
3461 findViewById(R.id.apps_customize_progress_bar);
3462 if (progressBar != null) {
3463 ((ViewGroup)progressBar.getParent()).removeView(progressBar);
Winson Chung785d2eb2011-04-14 16:08:02 -07003464 }
Michael Jurkac57b7a82011-08-09 22:02:20 -07003465 // We just post the call to setApps so the user sees the progress bar
3466 // disappear-- otherwise, it just looks like the progress bar froze
3467 // which doesn't look great
3468 mAppsCustomizeTabHost.post(new Runnable() {
3469 public void run() {
3470 if (mAppsCustomizeContent != null) {
3471 mAppsCustomizeContent.setApps(apps);
3472 }
3473 }
3474 });
Joe Onorato9c1289c2009-08-17 11:03:03 -04003475 }
3476
3477 /**
3478 * A package was installed.
3479 *
3480 * Implementation of the method from LauncherModel.Callbacks.
3481 */
Joe Onorato64e6be72010-03-05 15:05:52 -05003482 public void bindAppsAdded(ArrayList<ApplicationInfo> apps) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003483 setLoadOnResume();
Winson Chungf0ea4d32011-06-06 14:27:16 -07003484
Winson Chung785d2eb2011-04-14 16:08:02 -07003485 if (mAppsCustomizeContent != null) {
3486 mAppsCustomizeContent.addApps(apps);
3487 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003488 }
3489
3490 /**
3491 * A package was updated.
3492 *
3493 * Implementation of the method from LauncherModel.Callbacks.
3494 */
Joe Onorato64e6be72010-03-05 15:05:52 -05003495 public void bindAppsUpdated(ArrayList<ApplicationInfo> apps) {
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003496 setLoadOnResume();
Patrick Dubroyf5afda72011-02-28 12:04:18 -08003497 if (mWorkspace != null) {
3498 mWorkspace.updateShortcuts(apps);
3499 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003500
Winson Chung785d2eb2011-04-14 16:08:02 -07003501 if (mAppsCustomizeContent != null) {
3502 mAppsCustomizeContent.updateApps(apps);
3503 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003504 }
3505
3506 /**
3507 * A package was uninstalled.
3508 *
3509 * Implementation of the method from LauncherModel.Callbacks.
3510 */
Joe Onorato36115782010-06-17 13:28:48 -04003511 public void bindAppsRemoved(ArrayList<ApplicationInfo> apps, boolean permanent) {
Joe Onorato36115782010-06-17 13:28:48 -04003512 if (permanent) {
3513 mWorkspace.removeItems(apps);
3514 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003515
Winson Chung785d2eb2011-04-14 16:08:02 -07003516 if (mAppsCustomizeContent != null) {
3517 mAppsCustomizeContent.removeApps(apps);
3518 }
Winson Chunga1820962011-10-03 16:31:06 -07003519
3520 // Notify the drag controller
3521 mDragController.onAppsRemoved(apps, this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003522 }
Joe Onoratobe386092009-11-17 17:32:16 -08003523
3524 /**
Winson Chung80baf5a2010-08-09 16:03:15 -07003525 * A number of packages were updated.
3526 */
3527 public void bindPackagesUpdated() {
Winson Chung785d2eb2011-04-14 16:08:02 -07003528 if (mAppsCustomizeContent != null) {
3529 mAppsCustomizeContent.onPackagesUpdated();
3530 }
Winson Chung80baf5a2010-08-09 16:03:15 -07003531 }
3532
Winson Chung400438b2011-01-16 17:53:48 -08003533 private int mapConfigurationOriActivityInfoOri(int configOri) {
3534 final Display d = getWindowManager().getDefaultDisplay();
3535 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
3536 switch (d.getRotation()) {
3537 case Surface.ROTATION_0:
3538 case Surface.ROTATION_180:
3539 // We are currently in the same basic orientation as the natural orientation
3540 naturalOri = configOri;
3541 break;
3542 case Surface.ROTATION_90:
3543 case Surface.ROTATION_270:
3544 // We are currently in the other basic orientation to the natural orientation
3545 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
3546 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
3547 break;
3548 }
3549
3550 int[] oriMap = {
3551 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
3552 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
3553 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
3554 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
3555 };
3556 // Since the map starts at portrait, we need to offset if this device's natural orientation
3557 // is landscape.
3558 int indexOffset = 0;
3559 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
3560 indexOffset = 1;
3561 }
3562 return oriMap[(d.getRotation() + indexOffset) % 4];
3563 }
Adam Cohen446e9402011-09-15 18:21:21 -07003564
Winson Chung4b919f82012-05-01 10:44:08 -07003565 public boolean isRotationEnabled() {
3566 boolean forceEnableRotation = "true".equalsIgnoreCase(SystemProperties.get(
3567 FORCE_ENABLE_ROTATION_PROPERTY, "false"));
3568 boolean enableRotation = forceEnableRotation ||
3569 getResources().getBoolean(R.bool.allow_rotation);
3570 return enableRotation;
Winson Chung400438b2011-01-16 17:53:48 -08003571 }
Winson Chung4b919f82012-05-01 10:44:08 -07003572 public void lockScreenOrientation() {
3573 if (isRotationEnabled()) {
3574 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
3575 .getConfiguration().orientation));
3576 }
3577 }
3578 public void unlockScreenOrientation(boolean immediate) {
3579 if (isRotationEnabled()) {
3580 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07003581 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07003582 } else {
3583 mHandler.postDelayed(new Runnable() {
3584 public void run() {
3585 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
3586 }
3587 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07003588 }
Winson Chung4b919f82012-05-01 10:44:08 -07003589 }
Winson Chung400438b2011-01-16 17:53:48 -08003590 }
3591
Winson Chung82f55532011-08-09 14:14:23 -07003592 /* Cling related */
Winson Chung7d7541e2011-09-16 20:14:36 -07003593 private boolean isClingsEnabled() {
Brett Chabot2a9e2282011-08-23 15:03:13 -07003594 // disable clings when running in a test harness
Winson Chung7d7541e2011-09-16 20:14:36 -07003595 if(ActivityManager.isRunningInTestHarness()) return false;
Brett Chabot2a9e2282011-08-23 15:03:13 -07003596
Winson Chung7d7541e2011-09-16 20:14:36 -07003597 return true;
Winson Chung82f55532011-08-09 14:14:23 -07003598 }
Winson Chung7d7541e2011-09-16 20:14:36 -07003599 private Cling initCling(int clingId, int[] positionData, boolean animate, int delay) {
3600 Cling cling = (Cling) findViewById(clingId);
3601 if (cling != null) {
3602 cling.init(this, positionData);
3603 cling.setVisibility(View.VISIBLE);
3604 cling.setLayerType(View.LAYER_TYPE_HARDWARE, null);
Svetoslav Ganov55d225d2012-05-22 15:19:14 -07003605 cling.requestAccessibilityFocus();
Winson Chung7d7541e2011-09-16 20:14:36 -07003606 if (animate) {
3607 cling.buildLayer();
3608 cling.setAlpha(0f);
3609 cling.animate()
3610 .alpha(1f)
Winson Chung7a74ac92011-09-20 17:43:51 -07003611 .setInterpolator(new AccelerateInterpolator())
Winson Chung7d7541e2011-09-16 20:14:36 -07003612 .setDuration(SHOW_CLING_DURATION)
3613 .setStartDelay(delay)
3614 .start();
3615 } else {
3616 cling.setAlpha(1f);
3617 }
3618 }
3619 return cling;
3620 }
3621 private void dismissCling(final Cling cling, final String flag, int duration) {
Winson Chung82f55532011-08-09 14:14:23 -07003622 if (cling != null) {
3623 ObjectAnimator anim = ObjectAnimator.ofFloat(cling, "alpha", 0f);
Winson Chung7d7541e2011-09-16 20:14:36 -07003624 anim.setDuration(duration);
Winson Chung82f55532011-08-09 14:14:23 -07003625 anim.addListener(new AnimatorListenerAdapter() {
3626 public void onAnimationEnd(Animator animation) {
3627 cling.setVisibility(View.GONE);
3628 cling.cleanup();
Winson Chung46353de2012-02-16 14:05:10 -08003629 // We should update the shared preferences on a background thread
3630 new Thread("dismissClingThread") {
3631 public void run() {
3632 SharedPreferences.Editor editor = mSharedPrefs.edit();
3633 editor.putBoolean(flag, true);
3634 editor.commit();
3635 }
3636 }.start();
Winson Chung82f55532011-08-09 14:14:23 -07003637 };
3638 });
3639 anim.start();
3640 }
3641 }
Winson Chung9d9d74f2011-09-19 11:49:12 -07003642 private void removeCling(int id) {
3643 final View cling = findViewById(id);
3644 if (cling != null) {
3645 final ViewGroup parent = (ViewGroup) cling.getParent();
3646 parent.post(new Runnable() {
3647 @Override
3648 public void run() {
3649 parent.removeView(cling);
3650 }
3651 });
3652 }
3653 }
Michael Jurka974c3862012-05-22 22:00:31 -07003654
3655 private boolean skipCustomClingIfNoAccounts() {
3656 Cling cling = (Cling) findViewById(R.id.workspace_cling);
3657 boolean customCling = cling.getDrawIdentifier().equals("workspace_custom");
3658 if (customCling) {
3659 AccountManager am = AccountManager.get(this);
3660 Account[] accounts = am.getAccountsByType("com.google");
3661 return accounts.length == 0;
3662 }
3663 return false;
3664 }
3665
Winson Chung7d7541e2011-09-16 20:14:36 -07003666 public void showFirstRunWorkspaceCling() {
Winson Chung7d7541e2011-09-16 20:14:36 -07003667 // Enable the clings only if they have not been dismissed before
Winson Chung46353de2012-02-16 14:05:10 -08003668 if (isClingsEnabled() &&
Michael Jurka974c3862012-05-22 22:00:31 -07003669 !mSharedPrefs.getBoolean(Cling.WORKSPACE_CLING_DISMISSED_KEY, false) &&
3670 !skipCustomClingIfNoAccounts() ) {
Winson Chung7d7541e2011-09-16 20:14:36 -07003671 initCling(R.id.workspace_cling, null, false, 0);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003672 } else {
3673 removeCling(R.id.workspace_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003674 }
3675 }
3676 public void showFirstRunAllAppsCling(int[] position) {
Winson Chung7d7541e2011-09-16 20:14:36 -07003677 // Enable the clings only if they have not been dismissed before
Winson Chung46353de2012-02-16 14:05:10 -08003678 if (isClingsEnabled() &&
3679 !mSharedPrefs.getBoolean(Cling.ALLAPPS_CLING_DISMISSED_KEY, false)) {
Winson Chung7d7541e2011-09-16 20:14:36 -07003680 initCling(R.id.all_apps_cling, position, true, 0);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003681 } else {
3682 removeCling(R.id.all_apps_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003683 }
3684 }
3685 public Cling showFirstRunFoldersCling() {
Winson Chung7d7541e2011-09-16 20:14:36 -07003686 // Enable the clings only if they have not been dismissed before
Winson Chung46353de2012-02-16 14:05:10 -08003687 if (isClingsEnabled() &&
3688 !mSharedPrefs.getBoolean(Cling.FOLDER_CLING_DISMISSED_KEY, false)) {
3689 return initCling(R.id.folder_cling, null, true, 0);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003690 } else {
3691 removeCling(R.id.folder_cling);
Winson Chung46353de2012-02-16 14:05:10 -08003692 return null;
Winson Chung7d7541e2011-09-16 20:14:36 -07003693 }
Winson Chung7d7541e2011-09-16 20:14:36 -07003694 }
3695 public boolean isFolderClingVisible() {
3696 Cling cling = (Cling) findViewById(R.id.folder_cling);
Winson Chung9d9d74f2011-09-19 11:49:12 -07003697 if (cling != null) {
3698 return cling.getVisibility() == View.VISIBLE;
3699 }
3700 return false;
Winson Chung7d7541e2011-09-16 20:14:36 -07003701 }
Winson Chung82f55532011-08-09 14:14:23 -07003702 public void dismissWorkspaceCling(View v) {
3703 Cling cling = (Cling) findViewById(R.id.workspace_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003704 dismissCling(cling, Cling.WORKSPACE_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
Winson Chung82f55532011-08-09 14:14:23 -07003705 }
3706 public void dismissAllAppsCling(View v) {
3707 Cling cling = (Cling) findViewById(R.id.all_apps_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07003708 dismissCling(cling, Cling.ALLAPPS_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
3709 }
3710 public void dismissFolderCling(View v) {
3711 Cling cling = (Cling) findViewById(R.id.folder_cling);
3712 dismissCling(cling, Cling.FOLDER_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
Winson Chung82f55532011-08-09 14:14:23 -07003713 }
3714
Winson Chung80baf5a2010-08-09 16:03:15 -07003715 /**
Joe Onoratobe386092009-11-17 17:32:16 -08003716 * Prints out out state for debugging.
3717 */
3718 public void dumpState() {
3719 Log.d(TAG, "BEGIN launcher2 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08003720 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08003721 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
3722 Log.d(TAG, "mRestoring=" + mRestoring);
3723 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
3724 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07003725 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08003726 mModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07003727
Winson Chung785d2eb2011-04-14 16:08:02 -07003728 if (mAppsCustomizeContent != null) {
3729 mAppsCustomizeContent.dumpState();
3730 }
Joe Onoratobe386092009-11-17 17:32:16 -08003731 Log.d(TAG, "END launcher2 dump state");
3732 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07003733
3734 @Override
3735 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
3736 super.dump(prefix, fd, writer, args);
3737 writer.println(" ");
3738 writer.println("Debug logs: ");
3739 for (int i = 0; i < sDumpLogs.size(); i++) {
3740 writer.println(" " + sDumpLogs.get(i));
3741 }
3742 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003743}
Michael Jurka2763be32011-02-24 11:19:57 -08003744
Michael Jurkaabded662011-03-04 12:06:57 -08003745interface LauncherTransitionable {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003746 View getContent();
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003747 void onLauncherTransitionPrepare(Launcher l, boolean animated, boolean toWorkspace);
Michael Jurkabed61d22012-02-14 22:51:29 -08003748 void onLauncherTransitionStart(Launcher l, boolean animated, boolean toWorkspace);
Winson Chung70442722012-02-10 15:43:22 -08003749 void onLauncherTransitionStep(Launcher l, float t);
Michael Jurkabed61d22012-02-14 22:51:29 -08003750 void onLauncherTransitionEnd(Launcher l, boolean animated, boolean toWorkspace);
Michael Jurka2763be32011-02-24 11:19:57 -08003751}