blob: bdd9add145a1814ce16b32273652c8c825d79feb [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
Daniel Sandler325dc232013-06-05 22:57:57 -040018package com.android.launcher3;
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;
Bjorn Bringert85f418d2013-09-06 12:50:05 +010048import android.content.pm.ResolveInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080049import android.content.res.Configuration;
Karl Rosaen138a0412009-04-23 19:00:21 -070050import android.content.res.Resources;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080051import android.database.ContentObserver;
Adam Cohen268c4752012-06-06 17:47:33 -070052import android.graphics.Bitmap;
53import android.graphics.Canvas;
Winson Chung5f8afe62013-08-12 16:19:28 -070054import android.graphics.Point;
Adam Cohen268c4752012-06-06 17:47:33 -070055import android.graphics.PorterDuff;
Michael Jurkaaf442092010-06-10 17:01:57 -070056import android.graphics.Rect;
Michael Jurkaaf442092010-06-10 17:01:57 -070057import android.graphics.drawable.Drawable;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040058import android.net.Uri;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -070059import android.os.AsyncTask;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080060import android.os.Bundle;
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +020061import android.os.Environment;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080062import android.os.Handler;
Adam Cohended9f8d2010-11-03 13:25:16 -070063import android.os.Message;
Winson Chunga2413752012-04-03 14:22:34 -070064import android.os.StrictMode;
Daniel Sandler843e8602010-06-07 14:59:01 -040065import android.os.SystemClock;
Patrick Dubroy4ed62782010-08-17 15:11:18 -070066import android.provider.Settings;
Amith Yamasani6d7fe502010-11-16 09:05:07 -080067import android.speech.RecognizerIntent;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080068import android.text.Selection;
69import android.text.SpannableStringBuilder;
Michael Jurkaa33411c2012-06-14 16:18:21 -070070import android.text.TextUtils;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080071import android.text.method.TextKeyListener;
Winson Chung892c74d2013-08-22 16:15:50 -070072import android.util.DisplayMetrics;
Joe Onorato7c312c12009-08-13 21:36:53 -070073import android.util.Log;
Adam Cohen96d30a12013-07-16 18:13:21 -070074import android.view.Display;
75import android.view.Gravity;
76import android.view.HapticFeedbackConstants;
77import android.view.KeyEvent;
78import android.view.LayoutInflater;
79import android.view.Menu;
80import android.view.MenuItem;
81import android.view.MotionEvent;
82import android.view.Surface;
83import android.view.View;
Adam Cohenf358a4b2013-07-23 16:47:31 -070084import android.view.View.OnClickListener;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080085import android.view.View.OnLongClickListener;
Adam Cohen96d30a12013-07-16 18:13:21 -070086import android.view.ViewGroup;
87import android.view.ViewTreeObserver;
Michael Jurka2a4b1a82011-12-07 14:00:02 -080088import android.view.ViewTreeObserver.OnGlobalLayoutListener;
Adam Cohen96d30a12013-07-16 18:13:21 -070089import android.view.WindowManager;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -080090import android.view.accessibility.AccessibilityEvent;
Adam Cohencff6af82011-09-13 14:51:53 -070091import android.view.animation.AccelerateDecelerateInterpolator;
Winson Chung7a74ac92011-09-20 17:43:51 -070092import android.view.animation.AccelerateInterpolator;
Adam Cohenf16e5712011-01-13 13:31:45 -080093import android.view.animation.DecelerateInterpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080094import android.view.inputmethod.InputMethodManager;
Adam Cohen96d30a12013-07-16 18:13:21 -070095import android.widget.Advanceable;
96import android.widget.FrameLayout;
97import android.widget.ImageView;
98import android.widget.TextView;
99import android.widget.Toast;
Patrick Dubroy4ed62782010-08-17 15:11:18 -0700100
Daniel Sandler325dc232013-06-05 22:57:57 -0400101import com.android.launcher3.DropTarget.DragObject;
Romain Guyedcce092010-03-04 13:03:17 -0800102
Adam Cohenc0dcf592011-06-01 15:30:43 -0700103import java.io.DataInputStream;
104import java.io.DataOutputStream;
Adam Cohen4caf2982013-08-20 18:54:31 -0700105import java.io.File;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700106import java.io.FileDescriptor;
Adam Cohen4caf2982013-08-20 18:54:31 -0700107import java.io.FileInputStream;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700108import java.io.FileNotFoundException;
Adam Cohen4caf2982013-08-20 18:54:31 -0700109import java.io.FileOutputStream;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700110import java.io.IOException;
Adam Cohen4caf2982013-08-20 18:54:31 -0700111import java.io.InputStream;
112import java.io.OutputStream;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700113import java.io.PrintWriter;
Adam Cohen4caf2982013-08-20 18:54:31 -0700114import java.text.DateFormat;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700115import java.util.ArrayList;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700116import java.util.Collection;
Adam Cohen4caf2982013-08-20 18:54:31 -0700117import java.util.Date;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700118import java.util.HashMap;
Michael Jurkad7c28052012-04-27 15:43:36 -0700119import java.util.List;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700120
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800121/**
122 * Default launcher application.
123 */
Bjorn Bringertc459e522013-06-07 19:36:01 +0100124public class Launcher extends Activity
Michael Jurka0e260592010-06-30 17:07:39 -0700125 implements View.OnClickListener, OnLongClickListener, LauncherModel.Callbacks,
Winson Chungcd810732012-06-18 16:45:43 -0700126 View.OnTouchListener {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800127 static final String TAG = "Launcher";
Joe Onoratocc67f472010-06-08 10:54:30 -0700128 static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800129
Daniel Sandlerf061f822013-06-27 13:59:36 -0400130 static final boolean PROFILE_STARTUP = false;
Daniel Sandler843e8602010-06-07 14:59:01 -0400131 static final boolean DEBUG_WIDGETS = false;
Winson Chunga2413752012-04-03 14:22:34 -0700132 static final boolean DEBUG_STRICT_MODE = false;
Daniel Sandlerf061f822013-06-27 13:59:36 -0400133 static final boolean DEBUG_RESUME_TIME = false;
Romain Guy6fefcf12009-06-11 13:07:43 -0700134
Winson Chung70d72102011-08-12 11:24:35 -0700135 private static final int MENU_GROUP_WALLPAPER = 1;
136 private static final int MENU_WALLPAPER_SETTINGS = Menu.FIRST + 1;
137 private static final int MENU_MANAGE_APPS = MENU_WALLPAPER_SETTINGS + 1;
Winson Chung236d4312011-08-22 15:12:27 -0700138 private static final int MENU_SYSTEM_SETTINGS = MENU_MANAGE_APPS + 1;
139 private static final int MENU_HELP = MENU_SYSTEM_SETTINGS + 1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800140
141 private static final int REQUEST_CREATE_SHORTCUT = 1;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700142 private static final int REQUEST_CREATE_APPWIDGET = 5;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800143 private static final int REQUEST_PICK_APPLICATION = 6;
144 private static final int REQUEST_PICK_SHORTCUT = 7;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700145 private static final int REQUEST_PICK_APPWIDGET = 9;
Mike Clerona0618e42009-10-22 13:55:21 -0700146 private static final int REQUEST_PICK_WALLPAPER = 10;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800147
Michael Jurka8b805b12012-04-18 14:23:14 -0700148 private static final int REQUEST_BIND_APPWIDGET = 11;
149
Mathew Inwood876a8462013-06-14 14:12:41 +0100150 /**
151 * IntentStarter uses request codes starting with this. This must be greater than all activity
152 * request codes used internally.
153 */
154 protected static final int REQUEST_LAST = 100;
155
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800156 static final String EXTRA_SHORTCUT_DUPLICATE = "duplicate";
157
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800158 static final int SCREEN_COUNT = 5;
159 static final int DEFAULT_SCREEN = 2;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800160
Romain Guy98d01652009-06-30 16:21:04 -0700161 private static final String PREFERENCES = "launcher.preferences";
Michael Jurka0a457bf2012-11-19 14:05:05 -0800162 // To turn on these properties, type
163 // adb shell setprop log.tag.PROPERTY_NAME [VERBOSE | SUPPRESS]
164 static final String FORCE_ENABLE_ROTATION_PROPERTY = "launcher_force_rotate";
165 static final String DUMP_STATE_PROPERTY = "launcher_dump_state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800166
Winson Chung2672ff92012-05-04 16:22:30 -0700167 // The Intent extra that defines whether to ignore the launch animation
168 static final String INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION =
Daniel Sandler325dc232013-06-05 22:57:57 -0400169 "com.android.launcher3.intent.extra.shortcut.INGORE_LAUNCH_ANIMATION";
Winson Chung2672ff92012-05-04 16:22:30 -0700170
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800171 // Type: int
172 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
Michael Jurka883f55b2010-10-21 15:47:14 -0700173 // Type: int
174 private static final String RUNTIME_STATE = "launcher.state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800175 // Type: int
Winson Chung3d503fb2011-07-13 17:25:49 -0700176 private static final String RUNTIME_STATE_PENDING_ADD_CONTAINER = "launcher.add_container";
177 // Type: int
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800178 private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
179 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700180 private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cell_x";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800181 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700182 private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cell_y";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800183 // Type: boolean
184 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME = "launcher.rename_folder";
185 // Type: long
186 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME_ID = "launcher.rename_folder_id";
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700187 // Type: int
188 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_X = "launcher.add_span_x";
189 // Type: int
190 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_Y = "launcher.add_span_y";
191 // Type: parcelable
192 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_INFO = "launcher.add_widget_info";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800193
Bjorn Bringerte441bbc2013-06-06 21:54:20 +0100194 private static final String TOOLBAR_ICON_METADATA_NAME = "com.android.launcher.toolbar_icon";
Michael Jurkaae65ee32012-04-30 11:45:54 -0700195 private static final String TOOLBAR_SEARCH_ICON_METADATA_NAME =
Bjorn Bringerte441bbc2013-06-06 21:54:20 +0100196 "com.android.launcher.toolbar_search_icon";
Michael Jurkaae65ee32012-04-30 11:45:54 -0700197 private static final String TOOLBAR_VOICE_SEARCH_ICON_METADATA_NAME =
Bjorn Bringerte441bbc2013-06-06 21:54:20 +0100198 "com.android.launcher.toolbar_voice_search_icon";
Patrick Dubroyceae05d2010-08-30 10:40:53 -0700199
Adam Cohen39a06042013-07-19 14:30:12 -0700200 public static final String SHOW_WEIGHT_WATCHER = "debug.show_mem";
Daniel Sandler6053b8002013-08-15 15:44:26 -0700201 public static final boolean SHOW_WEIGHT_WATCHER_DEFAULT = false;
Adam Cohen39a06042013-07-19 14:30:12 -0700202
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700203 /** The different states that Launcher can be in. */
Winson Chung4a2afa32012-07-19 14:53:05 -0700204 private enum State { NONE, WORKSPACE, APPS_CUSTOMIZE, APPS_CUSTOMIZE_SPRING_LOADED };
Michael Jurkac0e8fca2010-10-06 16:41:29 -0700205 private State mState = State.WORKSPACE;
206 private AnimatorSet mStateAnimation;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700207
Joe Onorato9c1289c2009-08-17 11:03:03 -0400208 static final int APPWIDGET_HOST_ID = 1024;
Winson Chung557d6ed2011-07-08 15:34:52 -0700209 private static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
210 private static final int EXIT_SPRINGLOADED_MODE_LONG_TIMEOUT = 600;
Winson Chung7a74ac92011-09-20 17:43:51 -0700211 private static final int SHOW_CLING_DURATION = 550;
Winson Chung7d7541e2011-09-16 20:14:36 -0700212 private static final int DISMISS_CLING_DURATION = 250;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800213
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800214 private static final Object sLock = new Object();
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800215 private static int sScreen = DEFAULT_SCREEN;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800216
Winson Chunga2413752012-04-03 14:22:34 -0700217 // How long to wait before the new-shortcut animation automatically pans the workspace
218 private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 10;
Winson Chung64359a52013-07-08 17:17:08 -0700219 private static int NEW_APPS_ANIMATION_DELAY = 500;
Winson Chunga2413752012-04-03 14:22:34 -0700220
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800221 private final BroadcastReceiver mCloseSystemDialogsReceiver
222 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800223 private final ContentObserver mWidgetObserver = new AppWidgetResetObserver();
224
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800225 private LayoutInflater mInflater;
226
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800227 private Workspace mWorkspace;
Craig Mautner360310b2012-10-26 15:13:08 -0700228 private View mLauncherView;
Michael Jurkab737ee62011-11-15 15:57:22 -0800229 private DragLayer mDragLayer;
230 private DragController mDragController;
Adam Cohen39a06042013-07-19 14:30:12 -0700231 private View mWeightWatcher;
Romain Guycbb89e42009-06-08 15:52:54 -0700232
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700233 private AppWidgetManager mAppWidgetManager;
234 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700235
Michael Jurkac9d95c52011-08-29 14:03:34 -0700236 private ItemInfo mPendingAddInfo = new ItemInfo();
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700237 private AppWidgetProviderInfo mPendingAddWidgetInfo;
238
Michael Jurka0280c3b2010-09-17 15:00:07 -0700239 private int[] mTmpAddItemCellCoordinates = new int[2];
240
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800241 private FolderInfo mFolderInfo;
242
Winson Chung3d503fb2011-07-13 17:25:49 -0700243 private Hotseat mHotseat;
Adam Cohenf358a4b2013-07-23 16:47:31 -0700244 private View mOverviewPanel;
245
Michael Jurka838a4ca2011-02-07 13:33:06 -0800246 private View mAllAppsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700247
Winson Chungc51db6a2011-10-05 11:44:49 -0700248 private SearchDropTargetBar mSearchDropTargetBar;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700249 private AppsCustomizeTabHost mAppsCustomizeTabHost;
250 private AppsCustomizePagedView mAppsCustomizeContent;
251 private boolean mAutoAdvanceRunning = false;
Cristina Stancu476493b2013-08-07 17:20:14 +0100252 private View mQsbBar;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800253
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800254 private Bundle mSavedState;
Winson Chung4a2afa32012-07-19 14:53:05 -0700255 // We set the state in both onCreate and then onNewIntent in some cases, which causes both
256 // scroll issues (because the workspace may not have been measured yet) and extra work.
257 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
258 private State mOnResumeState = State.NONE;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800259
260 private SpannableStringBuilder mDefaultKeySsb = null;
261
Joe Onorato9c1289c2009-08-17 11:03:03 -0400262 private boolean mWorkspaceLoading = true;
263
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800264 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800265 private boolean mRestoring;
266 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700267 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800268
Michael Jurka1e2f4652013-07-08 18:03:46 -0700269 private ArrayList<Runnable> mBindOnResumeCallbacks = new ArrayList<Runnable>();
Michael Jurka7607c2f2013-04-03 14:33:19 -0700270 private ArrayList<Runnable> mOnResumeCallbacks = new ArrayList<Runnable>();
271
Winson Chung4a2afa32012-07-19 14:53:05 -0700272 // Keep track of whether the user has left launcher
273 private static boolean sPausedFromUserAction = false;
274
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800275 private Bundle mSavedInstanceState;
276
Joe Onorato9c1289c2009-08-17 11:03:03 -0400277 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800278 private IconCache mIconCache;
Adam Cohend113e0c2010-11-11 10:48:05 -0800279 private boolean mUserPresent = true;
280 private boolean mVisible = false;
281 private boolean mAttached = false;
Adam Cohen7564d982013-06-06 23:11:58 -0700282 private static final boolean DISABLE_CLINGS = true;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400283
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700284 private static LocaleConfiguration sLocaleConfiguration = null;
285
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700286 private static HashMap<Long, FolderInfo> sFolders = new HashMap<Long, FolderInfo>();
Romain Guycbb89e42009-06-08 15:52:54 -0700287
Patrick Dubroyceae05d2010-08-30 10:40:53 -0700288 private Intent mAppMarketIntent = null;
289
Adam Cohended9f8d2010-11-03 13:25:16 -0700290 // Related to the auto-advancing of widgets
291 private final int ADVANCE_MSG = 1;
292 private final int mAdvanceInterval = 20000;
293 private final int mAdvanceStagger = 250;
294 private long mAutoAdvanceSentTime;
295 private long mAutoAdvanceTimeLeft = -1;
296 private HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
297 new HashMap<View, AppWidgetProviderInfo>();
298
Winson Chung400438b2011-01-16 17:53:48 -0800299 // Determines how long to wait after a rotation before restoring the screen orientation to
300 // match the sensor state.
301 private final int mRestoreScreenOrientationDelay = 500;
302
Michael Jurka4ef207b2010-11-29 17:05:45 -0800303 // External icons saved in case of resource changes, orientation, etc.
Winson Chungdff8ebb2011-09-08 17:25:31 -0700304 private static Drawable.ConstantState[] sGlobalSearchIcon = new Drawable.ConstantState[2];
305 private static Drawable.ConstantState[] sVoiceSearchIcon = new Drawable.ConstantState[2];
306 private static Drawable.ConstantState[] sAppMarketIcon = new Drawable.ConstantState[2];
Michael Jurka4ef207b2010-11-29 17:05:45 -0800307
Craig Mautner360310b2012-10-26 15:13:08 -0700308 private Drawable mWorkspaceBackgroundDrawable;
Craig Mautner360310b2012-10-26 15:13:08 -0700309
Adam Cohen1462de32012-07-24 22:34:36 -0700310 private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>();
311
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700312 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
Adam Cohen4caf2982013-08-20 18:54:31 -0700313 static Date sDateStamp = new Date();
314 static DateFormat sDateFormat =
315 DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
316 static long sRunStart = System.currentTimeMillis();
317 static final String CORRUPTION_EMAIL_SENT_KEY = "corruptionEmailSent";
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700318
Winson Chung46353de2012-02-16 14:05:10 -0800319 // We only want to get the SharedPreferences once since it does an FS stat each time we get
320 // it from the context.
321 private SharedPreferences mSharedPrefs;
322
Adam Cohene25af792013-06-06 23:08:25 -0700323 private static ArrayList<ComponentName> mIntentsOnWorkspaceFromUpgradePath = null;
324
Winson Chungf0c6ae02012-03-21 16:10:31 -0700325 // Holds the page that we need to animate to, and the icon views that we need to animate up
326 // when we scroll to that page on resume.
Adam Cohen268c4752012-06-06 17:47:33 -0700327 private ImageView mFolderIconImageView;
328 private Bitmap mFolderIconBitmap;
329 private Canvas mFolderIconCanvas;
330 private Rect mRectForFolderAnimation = new Rect();
Adam Cohen2801caf2011-05-13 20:57:39 -0700331
Michael Jurkaddd62e92011-02-16 17:49:14 -0800332 private BubbleTextView mWaitingForResume;
333
Michael Jurka22143132012-10-04 17:42:38 +0200334 private HideFromAccessibilityHelper mHideFromAccessibilityHelper
335 = new HideFromAccessibilityHelper();
336
Michael Jurkac1f5d262011-09-30 19:32:27 -0700337 private Runnable mBuildLayersRunnable = new Runnable() {
338 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700339 if (mWorkspace != null) {
340 mWorkspace.buildPageHardwareLayers();
341 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700342 }
343 };
344
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800345 private static ArrayList<PendingAddArguments> sPendingAddList
346 = new ArrayList<PendingAddArguments>();
347
Michael Jurka0a457bf2012-11-19 14:05:05 -0800348 private static boolean sForceEnableRotation = isPropertyEnabled(FORCE_ENABLE_ROTATION_PROPERTY);
349
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800350 private static class PendingAddArguments {
351 int requestCode;
352 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700353 long container;
Adam Cohendcd297f2013-06-18 13:13:40 -0700354 long screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800355 int cellX;
356 int cellY;
357 }
358
Daniel Sandlerff02d492013-08-05 02:12:05 -0400359 private Stats mStats;
360
Michael Jurka0a457bf2012-11-19 14:05:05 -0800361 private static boolean isPropertyEnabled(String propertyName) {
362 return Log.isLoggable(propertyName, Log.VERBOSE);
Michael Jurka9bc8eba2012-05-21 20:36:44 -0700363 }
364
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800365 @Override
366 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700367 if (DEBUG_STRICT_MODE) {
368 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
369 .detectDiskReads()
370 .detectDiskWrites()
371 .detectNetwork() // or .detectAll() for all detectable problems
372 .penaltyLog()
373 .build());
374 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
375 .detectLeakedSqlLiteObjects()
376 .detectLeakedClosableObjects()
377 .penaltyLog()
378 .penaltyDeath()
379 .build());
380 }
381
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800382 super.onCreate(savedInstanceState);
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400383
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400384 LauncherAppState.setApplicationContext(getApplicationContext());
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400385 LauncherAppState app = LauncherAppState.getInstance();
Winson Chung5f8afe62013-08-12 16:19:28 -0700386
387 // Determine the dynamic grid properties
388 Point smallestSize = new Point();
389 Point largestSize = new Point();
390 Point realSize = new Point();
391 Display display = getWindowManager().getDefaultDisplay();
392 display.getCurrentSizeRange(smallestSize, largestSize);
393 display.getRealSize(realSize);
Winson Chung892c74d2013-08-22 16:15:50 -0700394 DisplayMetrics dm = new DisplayMetrics();
395 display.getMetrics(dm);
Winson Chung5f8afe62013-08-12 16:19:28 -0700396 // Lazy-initialize the dynamic grid
397 DeviceProfile grid = app.initDynamicGrid(this,
398 Math.min(smallestSize.x, smallestSize.y),
399 Math.min(largestSize.x, largestSize.y),
Winson Chung892c74d2013-08-22 16:15:50 -0700400 realSize.x, realSize.y,
401 dm.widthPixels, dm.heightPixels);
Winson Chung5f8afe62013-08-12 16:19:28 -0700402
403 // the LauncherApplication should call this, but in case of Instrumentation it might not be present yet
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400404 mSharedPrefs = getSharedPreferences(LauncherAppState.getSharedPreferencesKey(),
Winson Chungf0c6ae02012-03-21 16:10:31 -0700405 Context.MODE_PRIVATE);
Joe Onorato0589f0f2010-02-08 13:44:00 -0800406 mModel = app.setLauncher(this);
407 mIconCache = app.getIconCache();
Joe Onorato41a12d22009-10-31 18:30:00 -0400408 mDragController = new DragController(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800409 mInflater = getLayoutInflater();
Romain Guycbb89e42009-06-08 15:52:54 -0700410
Daniel Sandlerff02d492013-08-05 02:12:05 -0400411 mStats = new Stats(this);
412
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700413 mAppWidgetManager = AppWidgetManager.getInstance(this);
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700414 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
415 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700416
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700417 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
418 // this also ensures that any synchronous binding below doesn't re-trigger another
419 // LauncherModel load.
420 mPaused = false;
421
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800422 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200423 android.os.Debug.startMethodTracing(
424 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800425 }
426
427 checkForLocaleChange();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800428 setContentView(R.layout.launcher);
429 setupViews();
Cristina Stancu476493b2013-08-07 17:20:14 +0100430 grid.layout(this);
Winson Chung7d7541e2011-09-16 20:14:36 -0700431 showFirstRunWorkspaceCling();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800432
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800433 registerContentObservers();
434
Joe Onorato7c312c12009-08-13 21:36:53 -0700435 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700436
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800437 mSavedState = savedInstanceState;
438 restoreState(mSavedState);
439
Winson Chunga12a2502010-12-20 14:41:35 -0800440 // Update customization drawer _after_ restoring the states
Winson Chung785d2eb2011-04-14 16:08:02 -0700441 if (mAppsCustomizeContent != null) {
Michael Jurkac402cd92013-05-20 15:49:32 +0200442 mAppsCustomizeContent.onPackagesUpdated(
443 LauncherModel.getSortedWidgetsAndShortcuts(this));
Winson Chung785d2eb2011-04-14 16:08:02 -0700444 }
Winson Chunga12a2502010-12-20 14:41:35 -0800445
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800446 if (PROFILE_STARTUP) {
447 android.os.Debug.stopMethodTracing();
448 }
449
450 if (!mRestoring) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700451 if (sPausedFromUserAction) {
452 // If the user leaves launcher, then we should just load items asynchronously when
453 // they return.
454 mModel.startLoader(true, -1);
455 } else {
456 // We only load the page synchronously if the user rotates (or triggers a
457 // configuration change) while launcher is in the foreground
458 mModel.startLoader(true, mWorkspace.getCurrentPage());
459 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800460 }
461
462 // For handling default keys
463 mDefaultKeySsb = new SpannableStringBuilder();
464 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800465
466 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
467 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800468
Adam Cohenf9426d52012-06-04 17:26:21 -0700469 updateGlobalIcons();
470
471 // On large interfaces, we want the screen to auto-rotate based on the current orientation
472 unlockScreenOrientation(true);
473 }
474
Winson Chung4a2afa32012-07-19 14:53:05 -0700475 protected void onUserLeaveHint() {
476 super.onUserLeaveHint();
477 sPausedFromUserAction = true;
478 }
479
Winson Chung98ca0f72013-07-29 12:58:51 -0700480 /** To be overriden by subclasses to hint to Launcher that we have custom content */
481 protected boolean hasCustomContentToLeft() {
482 return false;
483 }
484
Adam Cohenf9426d52012-06-04 17:26:21 -0700485 private void updateGlobalIcons() {
Winson Chungc51db6a2011-10-05 11:44:49 -0700486 boolean searchVisible = false;
487 boolean voiceVisible = false;
Michael Jurka4ef207b2010-11-29 17:05:45 -0800488 // If we have a saved version of these external icons, we load them up immediately
Winson Chungdff8ebb2011-09-08 17:25:31 -0700489 int coi = getCurrentOrientationIndexForGlobalIcons();
490 if (sGlobalSearchIcon[coi] == null || sVoiceSearchIcon[coi] == null ||
491 sAppMarketIcon[coi] == null) {
Winson Chungc51db6a2011-10-05 11:44:49 -0700492 updateAppMarketIcon();
493 searchVisible = updateGlobalSearchIcon();
494 voiceVisible = updateVoiceSearchIcon(searchVisible);
Winson Chungf0ea4d32011-06-06 14:27:16 -0700495 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700496 if (sGlobalSearchIcon[coi] != null) {
497 updateGlobalSearchIcon(sGlobalSearchIcon[coi]);
Winson Chungc51db6a2011-10-05 11:44:49 -0700498 searchVisible = true;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700499 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700500 if (sVoiceSearchIcon[coi] != null) {
501 updateVoiceSearchIcon(sVoiceSearchIcon[coi]);
Winson Chungc51db6a2011-10-05 11:44:49 -0700502 voiceVisible = true;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700503 }
Winson Chungdff8ebb2011-09-08 17:25:31 -0700504 if (sAppMarketIcon[coi] != null) {
505 updateAppMarketIcon(sAppMarketIcon[coi]);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800506 }
Winson Chungadf0c182012-08-23 14:59:07 -0700507 if (mSearchDropTargetBar != null) {
508 mSearchDropTargetBar.onSearchPackagesChanged(searchVisible, voiceVisible);
509 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800510 }
Romain Guycbb89e42009-06-08 15:52:54 -0700511
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800512 private void checkForLocaleChange() {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700513 if (sLocaleConfiguration == null) {
514 new AsyncTask<Void, Void, LocaleConfiguration>() {
515 @Override
516 protected LocaleConfiguration doInBackground(Void... unused) {
517 LocaleConfiguration localeConfiguration = new LocaleConfiguration();
518 readConfiguration(Launcher.this, localeConfiguration);
519 return localeConfiguration;
520 }
521
522 @Override
523 protected void onPostExecute(LocaleConfiguration result) {
524 sLocaleConfiguration = result;
525 checkForLocaleChange(); // recursive, but now with a locale configuration
526 }
527 }.execute();
528 return;
529 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700530
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800531 final Configuration configuration = getResources().getConfiguration();
532
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700533 final String previousLocale = sLocaleConfiguration.locale;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800534 final String locale = configuration.locale.toString();
535
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700536 final int previousMcc = sLocaleConfiguration.mcc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800537 final int mcc = configuration.mcc;
538
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700539 final int previousMnc = sLocaleConfiguration.mnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800540 final int mnc = configuration.mnc;
541
Romain Guy84f296c2009-11-04 15:00:44 -0800542 boolean localeChanged = !locale.equals(previousLocale) || mcc != previousMcc || mnc != previousMnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800543
Romain Guy84f296c2009-11-04 15:00:44 -0800544 if (localeChanged) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700545 sLocaleConfiguration.locale = locale;
546 sLocaleConfiguration.mcc = mcc;
547 sLocaleConfiguration.mnc = mnc;
Romain Guy98d01652009-06-30 16:21:04 -0700548
Joe Onorato0589f0f2010-02-08 13:44:00 -0800549 mIconCache.flush();
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700550
551 final LocaleConfiguration localeConfiguration = sLocaleConfiguration;
552 new Thread("WriteLocaleConfiguration") {
Gilles Debunnedd6c9922010-10-25 11:23:41 -0700553 @Override
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700554 public void run() {
555 writeConfiguration(Launcher.this, localeConfiguration);
556 }
557 }.start();
Romain Guy98d01652009-06-30 16:21:04 -0700558 }
559 }
560
561 private static class LocaleConfiguration {
562 public String locale;
563 public int mcc = -1;
564 public int mnc = -1;
565 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700566
Romain Guy98d01652009-06-30 16:21:04 -0700567 private static void readConfiguration(Context context, LocaleConfiguration configuration) {
568 DataInputStream in = null;
569 try {
570 in = new DataInputStream(context.openFileInput(PREFERENCES));
571 configuration.locale = in.readUTF();
572 configuration.mcc = in.readInt();
573 configuration.mnc = in.readInt();
574 } catch (FileNotFoundException e) {
575 // Ignore
576 } catch (IOException e) {
577 // Ignore
578 } finally {
579 if (in != null) {
580 try {
581 in.close();
582 } catch (IOException e) {
583 // Ignore
584 }
585 }
586 }
587 }
588
589 private static void writeConfiguration(Context context, LocaleConfiguration configuration) {
590 DataOutputStream out = null;
591 try {
592 out = new DataOutputStream(context.openFileOutput(PREFERENCES, MODE_PRIVATE));
593 out.writeUTF(configuration.locale);
594 out.writeInt(configuration.mcc);
595 out.writeInt(configuration.mnc);
596 out.flush();
597 } catch (FileNotFoundException e) {
598 // Ignore
599 } catch (IOException e) {
600 //noinspection ResultOfMethodCallIgnored
601 context.getFileStreamPath(PREFERENCES).delete();
602 } finally {
603 if (out != null) {
604 try {
605 out.close();
606 } catch (IOException e) {
607 // Ignore
608 }
609 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800610 }
611 }
612
Bjorn Bringertc459e522013-06-07 19:36:01 +0100613 public LayoutInflater getInflater() {
614 return mInflater;
615 }
616
Adam Cohen716b51e2011-06-30 12:09:54 -0700617 public DragLayer getDragLayer() {
618 return mDragLayer;
619 }
620
Winson Chung36a62fe2012-05-06 18:04:42 -0700621 boolean isDraggingEnabled() {
622 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
623 // that is subsequently removed from the workspace in startBinding().
624 return !mModel.isLoadingWorkspace();
625 }
626
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800627 static int getScreen() {
628 synchronized (sLock) {
629 return sScreen;
630 }
631 }
632
633 static void setScreen(int screen) {
634 synchronized (sLock) {
635 sScreen = screen;
636 }
637 }
638
Winson Chung557d6ed2011-07-08 15:34:52 -0700639 /**
640 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
641 * a configuration step, this allows the proper animations to run after other transitions.
642 */
643 private boolean completeAdd(PendingAddArguments args) {
Winson Chungb8472bb2011-08-05 13:49:21 -0700644 boolean result = false;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800645 switch (args.requestCode) {
646 case REQUEST_PICK_APPLICATION:
Adam Cohendcd297f2013-06-18 13:13:40 -0700647 completeAddApplication(args.intent, args.container, args.screenId, args.cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -0700648 args.cellY);
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800649 break;
650 case REQUEST_PICK_SHORTCUT:
651 processShortcut(args.intent);
652 break;
653 case REQUEST_CREATE_SHORTCUT:
Adam Cohendcd297f2013-06-18 13:13:40 -0700654 completeAddShortcut(args.intent, args.container, args.screenId, args.cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -0700655 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700656 result = true;
657 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800658 case REQUEST_CREATE_APPWIDGET:
659 int appWidgetId = args.intent.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1);
Adam Cohendcd297f2013-06-18 13:13:40 -0700660 completeAddAppWidget(appWidgetId, args.container, args.screenId, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700661 result = true;
662 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800663 case REQUEST_PICK_WALLPAPER:
664 // We just wanted the activity result here so we can clear mWaitingForResult
665 break;
666 }
Michael Jurka27614d22012-04-02 06:40:22 -0700667 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
668 // if you turned the screen off and then back while in All Apps, Launcher would not
669 // return to the workspace. Clearing mAddInfo.container here fixes this issue
670 resetAddInfo();
Winson Chungb8472bb2011-08-05 13:49:21 -0700671 return result;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800672 }
673
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800674 @Override
Michael Jurka8b805b12012-04-18 14:23:14 -0700675 protected void onActivityResult(
676 final int requestCode, final int resultCode, final Intent data) {
Winson Chunge341d302013-08-16 14:31:00 -0700677 // Reset the startActivity waiting flag
678 mWaitingForResult = false;
679
Michael Jurka8b805b12012-04-18 14:23:14 -0700680 if (requestCode == REQUEST_BIND_APPWIDGET) {
681 int appWidgetId = data != null ?
682 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
683 if (resultCode == RESULT_CANCELED) {
684 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
685 } else if (resultCode == RESULT_OK) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700686 addAppWidgetImpl(appWidgetId, mPendingAddInfo, null, mPendingAddWidgetInfo);
Michael Jurka8b805b12012-04-18 14:23:14 -0700687 }
688 return;
689 }
Winson Chung557d6ed2011-07-08 15:34:52 -0700690 boolean delayExitSpringLoadedMode = false;
Adam Cohened66b2b2012-01-23 17:28:51 -0800691 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
692 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700693
Adam Cohened66b2b2012-01-23 17:28:51 -0800694 // We have special handling for widgets
695 if (isWidgetDrop) {
696 int appWidgetId = data != null ?
697 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
Winson Chung5aaab772012-04-27 15:24:02 -0700698 if (appWidgetId < 0) {
699 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not returned from the \\" +
700 "widget configuration activity.");
701 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
702 } else {
703 completeTwoStageWidgetDrop(resultCode, appWidgetId);
704 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800705 return;
706 }
707
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800708 // The pattern used here is that a user PICKs a specific application,
709 // which, depending on the target, might need to CREATE the actual target.
Romain Guycbb89e42009-06-08 15:52:54 -0700710
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800711 // For example, the user would PICK_SHORTCUT for "Music playlist", and we
712 // launch over to the Music app to actually CREATE_SHORTCUT.
Winson Chungc7da5552011-08-10 15:28:45 -0700713 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800714 final PendingAddArguments args = new PendingAddArguments();
715 args.requestCode = requestCode;
716 args.intent = data;
Winson Chung3d503fb2011-07-13 17:25:49 -0700717 args.container = mPendingAddInfo.container;
Adam Cohendcd297f2013-06-18 13:13:40 -0700718 args.screenId = mPendingAddInfo.screenId;
Winson Chung3d503fb2011-07-13 17:25:49 -0700719 args.cellX = mPendingAddInfo.cellX;
720 args.cellY = mPendingAddInfo.cellY;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800721 if (isWorkspaceLocked()) {
722 sPendingAddList.add(args);
723 } else {
Winson Chung557d6ed2011-07-08 15:34:52 -0700724 delayExitSpringLoadedMode = completeAdd(args);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800725 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800726 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800727 mDragLayer.clearAnimatedView();
Winson Chung557d6ed2011-07-08 15:34:52 -0700728 // Exit spring loaded mode if necessary after cancelling the configuration of a widget
Adam Cohened66b2b2012-01-23 17:28:51 -0800729 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED), delayExitSpringLoadedMode,
730 null);
731 }
732
733 private void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700734 CellLayout cellLayout =
Adam Cohendcd297f2013-06-18 13:13:40 -0700735 (CellLayout) mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800736 Runnable onCompleteRunnable = null;
737 int animationType = 0;
738
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700739 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800740 if (resultCode == RESULT_OK) {
741 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
742 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700743 mPendingAddWidgetInfo);
744 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800745 onCompleteRunnable = new Runnable() {
746 @Override
747 public void run() {
748 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700749 mPendingAddInfo.screenId, layout, null);
Adam Cohened66b2b2012-01-23 17:28:51 -0800750 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED), false,
751 null);
752 }
753 };
754 } else if (resultCode == RESULT_CANCELED) {
755 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
756 onCompleteRunnable = new Runnable() {
757 @Override
758 public void run() {
759 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED), false,
760 null);
761 }
762 };
763 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700764 if (mDragLayer.getAnimatedView() != null) {
765 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
766 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
767 animationType, boundWidget, true);
768 } else {
769 // The animated view may be null in the case of a rotation during widget configuration
770 onCompleteRunnable.run();
771 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800772 }
773
774 @Override
Michael Jurkacd496d72013-04-11 11:32:45 -0700775 protected void onStop() {
776 super.onStop();
777 FirstFrameAnimatorHelper.setIsVisible(false);
778 }
779
780 @Override
781 protected void onStart() {
782 super.onStart();
783 FirstFrameAnimatorHelper.setIsVisible(true);
784 }
785
786 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800787 protected void onResume() {
Michael Jurka447bf842013-05-15 14:52:15 +0200788 long startTime = 0;
789 if (DEBUG_RESUME_TIME) {
790 startTime = System.currentTimeMillis();
Daniel Sandler924b9932013-06-12 00:38:25 -0400791 Log.v(TAG, "Launcher.onResume()");
Michael Jurka447bf842013-05-15 14:52:15 +0200792 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800793 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700794
Winson Chung4a2afa32012-07-19 14:53:05 -0700795 // Restore the previous launcher state
796 if (mOnResumeState == State.WORKSPACE) {
797 showWorkspace(false);
798 } else if (mOnResumeState == State.APPS_CUSTOMIZE) {
Winson Chungc58497e2013-09-03 17:48:37 -0700799 showAllApps(false, AppsCustomizePagedView.ContentType.Applications);
Winson Chung4a2afa32012-07-19 14:53:05 -0700800 }
801 mOnResumeState = State.NONE;
802
Craig Mautner360310b2012-10-26 15:13:08 -0700803 // Background was set to gradient in onPause(), restore to black if in all apps.
804 setWorkspaceBackground(mState == State.WORKSPACE);
805
Winson Chungde0fb8f2012-05-08 14:37:08 -0700806 // Process any items that were added while Launcher was away
Winson Chung997a9232013-07-24 15:33:46 -0700807 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
Winson Chungde0fb8f2012-05-08 14:37:08 -0700808
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800809 mPaused = false;
Winson Chung4a2afa32012-07-19 14:53:05 -0700810 sPausedFromUserAction = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700811 if (mRestoring || mOnResumeNeedsLoad) {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400812 mWorkspaceLoading = true;
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700813 mModel.startLoader(true, -1);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400814 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700815 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800816 }
Michael Jurka1e2f4652013-07-08 18:03:46 -0700817 if (mBindOnResumeCallbacks.size() > 0) {
Michael Jurkac402cd92013-05-20 15:49:32 +0200818 // We might have postponed some bind calls until onResume (see waitUntilResume) --
819 // execute them here
820 long startTimeCallbacks = 0;
821 if (DEBUG_RESUME_TIME) {
822 startTimeCallbacks = System.currentTimeMillis();
823 }
824
825 if (mAppsCustomizeContent != null) {
826 mAppsCustomizeContent.setBulkBind(true);
827 }
Michael Jurka1e2f4652013-07-08 18:03:46 -0700828 for (int i = 0; i < mBindOnResumeCallbacks.size(); i++) {
829 mBindOnResumeCallbacks.get(i).run();
Michael Jurkac402cd92013-05-20 15:49:32 +0200830 }
831 if (mAppsCustomizeContent != null) {
832 mAppsCustomizeContent.setBulkBind(false);
833 }
Michael Jurka1e2f4652013-07-08 18:03:46 -0700834 mBindOnResumeCallbacks.clear();
Michael Jurkac402cd92013-05-20 15:49:32 +0200835 if (DEBUG_RESUME_TIME) {
836 Log.d(TAG, "Time spent processing callbacks in onResume: " +
837 (System.currentTimeMillis() - startTimeCallbacks));
838 }
Michael Jurka447bf842013-05-15 14:52:15 +0200839 }
Michael Jurka54554252013-08-01 12:52:23 +0200840 if (mOnResumeCallbacks.size() > 0) {
841 for (int i = 0; i < mOnResumeCallbacks.size(); i++) {
842 mOnResumeCallbacks.get(i).run();
843 }
844 mOnResumeCallbacks.clear();
845 }
Winson Chunge4e50662012-01-23 14:45:13 -0800846
847 // Reset the pressed state of icons that were locked in the press state while activities
848 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -0800849 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -0800850 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -0800851 mWaitingForResume.setStayPressed(false);
852 }
Winson Chunge4e50662012-01-23 14:45:13 -0800853 if (mAppsCustomizeContent != null) {
854 // Resets the previous all apps icon press state
855 mAppsCustomizeContent.resetDrawableState();
856 }
Adam Cohen06dff352012-06-01 17:17:08 -0700857 // It is possible that widgets can receive updates while launcher is not in the foreground.
858 // Consequently, the widgets will be inflated in the orientation of the foreground activity
859 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
860 // orientation.
Adam Cohen3d509322012-06-06 14:10:04 -0700861 getWorkspace().reinflateWidgetsIfNecessary();
Adam Cohenf9426d52012-06-04 17:26:21 -0700862
863 // Again, as with the above scenario, it's possible that one or more of the global icons
864 // were updated in the wrong orientation.
865 updateGlobalIcons();
Michael Jurka447bf842013-05-15 14:52:15 +0200866 if (DEBUG_RESUME_TIME) {
867 Log.d(TAG, "Time spent in onResume: " + (System.currentTimeMillis() - startTime));
868 }
Adam Cohen4caf2982013-08-20 18:54:31 -0700869
870 // Write all the logs to disk
871 Launcher.addDumpLog(TAG, "10249126 - onResume() - dumping logs to disk", true);
872 dumpLogsToLocalData(false);
Adam Cohen06dff352012-06-01 17:17:08 -0700873 }
874
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800875 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700876 protected void onPause() {
Winson Chungca889b32012-05-07 15:34:34 -0700877 // NOTE: We want all transitions from launcher to act as if the wallpaper were enabled
878 // to be consistent. So re-enable the flag here, and we will re-disable it as necessary
879 // when Launcher resumes and we are still in AllApps.
880 updateWallpaperVisibility(true);
881
Winson Chung997a9232013-07-24 15:33:46 -0700882 // Ensure that items added to Launcher are queued until Launcher returns
883 InstallShortcutReceiver.enableInstallQueue();
884
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700885 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700886 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -0800887 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -0700888 mDragController.resetLastGestureUpTime();
Adam Cohen4caf2982013-08-20 18:54:31 -0700889
890 // Write all the logs to disk
891 Launcher.addDumpLog(TAG, "10249126 - onPause() - dumping logs to disk", true);
892 dumpLogsToLocalData(false);
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700893 }
Romain Guycbb89e42009-06-08 15:52:54 -0700894
Adam Cohen66a01fd2013-06-11 12:48:00 -0700895 protected void onFinishBindingItems() {
896 }
897
Adam Cohenbffe7452013-07-22 18:21:45 -0700898 QSBScroller mQsbScroller = new QSBScroller() {
899 int scrollY = 0;
900
901 @Override
902 public void setScrollY(int scroll) {
903 scrollY = scroll;
904
905 if (mWorkspace.isOnOrMovingToCustomContent()) {
906 mSearchDropTargetBar.setTranslationY(- scrollY);
907 }
908 }
909 };
910
911 public void resetQSBScroll() {
912 mSearchDropTargetBar.animate().translationY(0).start();
913 }
914
915 public interface CustomContentCallbacks {
916 // Custom content is completely shown
917 public void onShow();
918
919 // Custom content is completely hidden
920 public void onHide();
Adam Cohenc36fa5c2013-08-29 11:54:42 -0700921
922 // Custom content scroll progress changed. From 0 (not showing) to 1 (fully showing).
923 public void onScrollProgressChanged(float progress);
Adam Cohenbffe7452013-07-22 18:21:45 -0700924 }
925
Adam Cohen30bacb22013-08-29 14:25:25 -0700926 protected void startSettings() {
927 }
928
Adam Cohenbffe7452013-07-22 18:21:45 -0700929 public interface QSBScroller {
930 public void setScrollY(int scrollY);
931 }
932
Adam Cohen66a01fd2013-06-11 12:48:00 -0700933 // Add a fullscreen unpadded view to the workspace to the left all other screens.
Winson Chung98ca0f72013-07-29 12:58:51 -0700934 public QSBScroller addToCustomContentPage(View customContent) {
935 return addToCustomContentPage(customContent, null);
Adam Cohenbffe7452013-07-22 18:21:45 -0700936 }
937
Winson Chung98ca0f72013-07-29 12:58:51 -0700938 public QSBScroller addToCustomContentPage(View customContent,
Adam Cohenbffe7452013-07-22 18:21:45 -0700939 CustomContentCallbacks callbacks) {
Winson Chung98ca0f72013-07-29 12:58:51 -0700940 mWorkspace.addToCustomContentPage(customContent, callbacks);
Adam Cohenbffe7452013-07-22 18:21:45 -0700941 return mQsbScroller;
Adam Cohen66a01fd2013-06-11 12:48:00 -0700942 }
943
Adam Cohenedb40762013-07-18 16:45:45 -0700944 // The custom content needs to offset its content to account for the QSB
945 public int getTopOffsetForCustomContent() {
946 return mWorkspace.getPaddingTop();
947 }
948
Jeffrey Sharkey99c87582009-03-24 17:59:43 -0700949 @Override
950 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400951 // Flag the loader to stop early before switching
952 mModel.stopLoader();
Winson Chung785d2eb2011-04-14 16:08:02 -0700953 if (mAppsCustomizeContent != null) {
954 mAppsCustomizeContent.surrender();
955 }
Romain Guy13c2e7b2010-03-10 19:45:00 -0800956 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -0700957 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700958
Joe Onorato2d7e7d02010-01-29 15:57:19 -0800959 // We can't hide the IME if it was forced open. So don't bother
960 /*
961 @Override
962 public void onWindowFocusChanged(boolean hasFocus) {
963 super.onWindowFocusChanged(hasFocus);
964
965 if (hasFocus) {
966 final InputMethodManager inputManager = (InputMethodManager)
967 getSystemService(Context.INPUT_METHOD_SERVICE);
968 WindowManager.LayoutParams lp = getWindow().getAttributes();
969 inputManager.hideSoftInputFromWindow(lp.token, 0, new android.os.ResultReceiver(new
970 android.os.Handler()) {
971 protected void onReceiveResult(int resultCode, Bundle resultData) {
972 Log.d(TAG, "ResultReceiver got resultCode=" + resultCode);
973 }
974 });
975 Log.d(TAG, "called hideSoftInputFromWindow from onWindowFocusChanged");
976 }
977 }
978 */
979
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800980 private boolean acceptFilter() {
981 final InputMethodManager inputManager = (InputMethodManager)
982 getSystemService(Context.INPUT_METHOD_SERVICE);
983 return !inputManager.isFullscreenMode();
984 }
985
986 @Override
987 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -0700988 final int uniChar = event.getUnicodeChar();
989 final boolean handled = super.onKeyDown(keyCode, event);
990 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
991 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800992 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
993 keyCode, event);
994 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -0700995 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -0700996 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -0700997 // showSearchDialog()
998 // If there are multiple keystrokes before the search dialog takes focus,
999 // onSearchRequested() will be called for every keystroke,
1000 // but it is idempotent, so it's fine.
1001 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001002 }
1003 }
1004
Joe Onorato8a9625e2010-01-28 15:55:35 -08001005 // Eat the long press event so the keyboard doesn't come up.
1006 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
1007 return true;
1008 }
1009
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001010 return handled;
1011 }
1012
Karl Rosaen138a0412009-04-23 19:00:21 -07001013 private String getTypedText() {
1014 return mDefaultKeySsb.toString();
1015 }
1016
1017 private void clearTypedText() {
1018 mDefaultKeySsb.clear();
1019 mDefaultKeySsb.clearSpans();
1020 Selection.setSelection(mDefaultKeySsb, 0);
1021 }
1022
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001023 /**
Michael Jurka883f55b2010-10-21 15:47:14 -07001024 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
1025 * State
1026 */
1027 private static State intToState(int stateOrdinal) {
1028 State state = State.WORKSPACE;
1029 final State[] stateValues = State.values();
1030 for (int i = 0; i < stateValues.length; i++) {
1031 if (stateValues[i].ordinal() == stateOrdinal) {
1032 state = stateValues[i];
1033 break;
1034 }
1035 }
1036 return state;
1037 }
1038
1039 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001040 * Restores the previous state, if it exists.
1041 *
1042 * @param savedState The previous state.
1043 */
1044 private void restoreState(Bundle savedState) {
1045 if (savedState == null) {
1046 return;
1047 }
1048
Michael Jurka883f55b2010-10-21 15:47:14 -07001049 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungf0ea4d32011-06-06 14:27:16 -07001050 if (state == State.APPS_CUSTOMIZE) {
Winson Chung4a2afa32012-07-19 14:53:05 -07001051 mOnResumeState = State.APPS_CUSTOMIZE;
Joe Onorato3a8820b2009-11-10 15:06:42 -08001052 }
1053
Winson Chungf0c6ae02012-03-21 16:10:31 -07001054 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN, -1);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001055 if (currentScreen > -1) {
Winson Chung8c87cd82013-07-23 16:20:10 -07001056 mWorkspace.setRestorePage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001057 }
1058
Winson Chung3d503fb2011-07-13 17:25:49 -07001059 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
Adam Cohendcd297f2013-06-18 13:13:40 -07001060 final long pendingAddScreen = savedState.getLong(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001061
Winson Chung3d503fb2011-07-13 17:25:49 -07001062 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
1063 mPendingAddInfo.container = pendingAddContainer;
Adam Cohendcd297f2013-06-18 13:13:40 -07001064 mPendingAddInfo.screenId = pendingAddScreen;
Winson Chung3d503fb2011-07-13 17:25:49 -07001065 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
1066 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001067 mPendingAddInfo.spanX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_X);
1068 mPendingAddInfo.spanY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y);
1069 mPendingAddWidgetInfo = savedState.getParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO);
Adam Cohen87a9f5b2012-05-29 16:16:51 -07001070 mWaitingForResult = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001071 mRestoring = true;
1072 }
1073
1074 boolean renameFolder = savedState.getBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, false);
1075 if (renameFolder) {
1076 long id = savedState.getLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001077 mFolderInfo = mModel.getFolderById(this, sFolders, id);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001078 mRestoring = true;
1079 }
Winson Chunga12a2502010-12-20 14:41:35 -08001080
Winson Chung785d2eb2011-04-14 16:08:02 -07001081 // Restore the AppsCustomize tab
1082 if (mAppsCustomizeTabHost != null) {
1083 String curTab = savedState.getString("apps_customize_currentTab");
1084 if (curTab != null) {
Winson Chungc93e5ae2012-07-23 20:48:26 -07001085 mAppsCustomizeTabHost.setContentTypeImmediate(
Winson Chung785d2eb2011-04-14 16:08:02 -07001086 mAppsCustomizeTabHost.getContentTypeForTabTag(curTab));
Winson Chungf314b0e2011-08-16 11:54:27 -07001087 mAppsCustomizeContent.loadAssociatedPages(
1088 mAppsCustomizeContent.getCurrentPage());
Winson Chung785d2eb2011-04-14 16:08:02 -07001089 }
1090
Winson Chung5afbf7b2011-07-25 11:53:08 -07001091 int currentIndex = savedState.getInt("apps_customize_currentIndex");
1092 mAppsCustomizeContent.restorePageForIndex(currentIndex);
Winson Chung785d2eb2011-04-14 16:08:02 -07001093 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001094 }
1095
1096 /**
1097 * Finds all the views we need and configure them properly.
1098 */
1099 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -07001100 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -04001101
Craig Mautner360310b2012-10-26 15:13:08 -07001102 mLauncherView = findViewById(R.id.launcher);
Winson Chung4c98d922011-05-31 16:50:48 -07001103 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
1104 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Craig Mautner360310b2012-10-26 15:13:08 -07001105
1106 mLauncherView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN);
1107 mWorkspaceBackgroundDrawable = getResources().getDrawable(R.drawable.workspace_bg);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001108
Winson Chung4c98d922011-05-31 16:50:48 -07001109 // Setup the drag layer
1110 mDragLayer.setup(this, dragController);
1111
Winson Chung3d503fb2011-07-13 17:25:49 -07001112 // Setup the hotseat
1113 mHotseat = (Hotseat) findViewById(R.id.hotseat);
1114 if (mHotseat != null) {
1115 mHotseat.setup(this);
1116 }
1117
Adam Cohenf358a4b2013-07-23 16:47:31 -07001118 mOverviewPanel = findViewById(R.id.overview_panel);
1119 findViewById(R.id.widget_button).setOnClickListener(new OnClickListener() {
1120 @Override
1121 public void onClick(View arg0) {
Winson Chungc58497e2013-09-03 17:48:37 -07001122 showAllApps(true, AppsCustomizePagedView.ContentType.Widgets);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001123 }
1124 });
1125 findViewById(R.id.wallpaper_button).setOnClickListener(new OnClickListener() {
1126 @Override
1127 public void onClick(View arg0) {
1128 startWallpaper();
1129 }
1130 });
Adam Cohen30bacb22013-08-29 14:25:25 -07001131 findViewById(R.id.settings_button).setOnClickListener(new OnClickListener() {
1132 @Override
1133 public void onClick(View arg0) {
1134 startSettings();
1135 }
1136 });
Adam Cohenf358a4b2013-07-23 16:47:31 -07001137
Winson Chung4c98d922011-05-31 16:50:48 -07001138 // Setup the workspace
1139 mWorkspace.setHapticFeedbackEnabled(false);
1140 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -07001141 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -07001142 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001143
Winson Chungf0ea4d32011-06-06 14:27:16 -07001144 // Get the search/delete bar
Winson Chungc51db6a2011-10-05 11:44:49 -07001145 mSearchDropTargetBar = (SearchDropTargetBar) mDragLayer.findViewById(R.id.qsb_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001146
Winson Chungf0ea4d32011-06-06 14:27:16 -07001147 // Setup AppsCustomize
Craig Mautner360310b2012-10-26 15:13:08 -07001148 mAppsCustomizeTabHost = (AppsCustomizeTabHost) findViewById(R.id.apps_customize_pane);
Winson Chungf0ea4d32011-06-06 14:27:16 -07001149 mAppsCustomizeContent = (AppsCustomizePagedView)
1150 mAppsCustomizeTabHost.findViewById(R.id.apps_customize_pane_content);
1151 mAppsCustomizeContent.setup(this, dragController);
Craig Mautner360310b2012-10-26 15:13:08 -07001152
Winson Chung3d503fb2011-07-13 17:25:49 -07001153 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -07001154 dragController.setDragScoller(mWorkspace);
1155 dragController.setScrollView(mDragLayer);
1156 dragController.setMoveTarget(mWorkspace);
1157 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -07001158 if (mSearchDropTargetBar != null) {
1159 mSearchDropTargetBar.setup(this, dragController);
Michael Jurkae0f5a612011-02-07 16:45:41 -08001160 }
Daniel Sandler924b9932013-06-12 00:38:25 -04001161
Daniel Sandlera127b7a2013-06-17 14:25:46 -04001162 if (getResources().getBoolean(R.bool.debug_memory_enabled)) {
Daniel Sandler924b9932013-06-12 00:38:25 -04001163 Log.v(TAG, "adding WeightWatcher");
Adam Cohen39a06042013-07-19 14:30:12 -07001164 mWeightWatcher = new WeightWatcher(this);
1165 mWeightWatcher.setAlpha(0.5f);
1166 ((FrameLayout) mLauncherView).addView(mWeightWatcher,
Daniel Sandler924b9932013-06-12 00:38:25 -04001167 new FrameLayout.LayoutParams(
1168 FrameLayout.LayoutParams.MATCH_PARENT,
Daniel Sandlerb9eb2862013-06-14 20:17:30 -04001169 FrameLayout.LayoutParams.WRAP_CONTENT,
Daniel Sandler924b9932013-06-12 00:38:25 -04001170 Gravity.BOTTOM)
1171 );
Adam Cohen39a06042013-07-19 14:30:12 -07001172
1173 boolean show = shouldShowWeightWatcher();
1174 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
Daniel Sandler924b9932013-06-12 00:38:25 -04001175 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001176 }
1177
1178 /**
1179 * Creates a view representing a shortcut.
1180 *
1181 * @param info The data structure describing the shortcut.
1182 *
1183 * @return A View inflated from R.layout.application.
1184 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001185 View createShortcut(ShortcutInfo info) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001186 return createShortcut(R.layout.application,
Michael Jurka0142d492010-08-25 17:46:15 -07001187 (ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001188 }
1189
1190 /**
1191 * Creates a view representing a shortcut inflated from the specified resource.
1192 *
1193 * @param layoutResId The id of the XML layout used to create the shortcut.
1194 * @param parent The group the shortcut belongs to.
1195 * @param info The data structure describing the shortcut.
1196 *
1197 * @return A View inflated from layoutResId.
1198 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001199 View createShortcut(int layoutResId, ViewGroup parent, ShortcutInfo info) {
Michael Jurka67b2f6c2010-11-17 12:33:46 -08001200 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(layoutResId, parent, false);
1201 favorite.applyFromShortcutInfo(info, mIconCache);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001202 favorite.setOnClickListener(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001203 return favorite;
1204 }
1205
1206 /**
1207 * Add an application shortcut to the workspace.
1208 *
1209 * @param data The intent describing the application.
1210 * @param cellInfo The position on screen where to create the shortcut.
1211 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001212 void completeAddApplication(Intent data, long container, long screenId, int cellX, int cellY) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001213 final int[] cellXY = mTmpAddItemCellCoordinates;
Adam Cohendcd297f2013-06-18 13:13:40 -07001214 final CellLayout layout = getCellLayout(container, screenId);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001215
Adam Cohenfbba09b2011-07-18 21:43:05 -07001216 // First we check if we already know the exact location where we want to add this item.
1217 if (cellX >= 0 && cellY >= 0) {
1218 cellXY[0] = cellX;
1219 cellXY[1] = cellY;
1220 } else if (!layout.findCellForSpan(cellXY, 1, 1)) {
Winson Chung93eef082012-03-23 15:59:27 -07001221 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001222 return;
1223 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001224
Patrick Dubroy002cbf42011-03-03 16:36:21 -08001225 final ShortcutInfo info = mModel.getShortcutInfo(getPackageManager(), data, this);
Joe Onorato0589f0f2010-02-08 13:44:00 -08001226
Romain Guy73b979d2009-06-09 12:57:21 -07001227 if (info != null) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07001228 info.setActivity(this, data.getComponent(), Intent.FLAG_ACTIVITY_NEW_TASK |
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001229 Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Joe Onorato0589f0f2010-02-08 13:44:00 -08001230 info.container = ItemInfo.NO_ID;
Adam Cohendcd297f2013-06-18 13:13:40 -07001231 mWorkspace.addApplicationShortcut(info, layout, container, screenId, cellXY[0], cellXY[1],
Adam Cohenfbba09b2011-07-18 21:43:05 -07001232 isWorkspaceLocked(), cellX, cellY);
Joe Onorato0589f0f2010-02-08 13:44:00 -08001233 } else {
1234 Log.e(TAG, "Couldn't find ActivityInfo for selected application: " + data);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001235 }
1236 }
Romain Guycbb89e42009-06-08 15:52:54 -07001237
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001238 /**
1239 * Add a shortcut to the workspace.
1240 *
1241 * @param data The intent describing the shortcut.
1242 * @param cellInfo The position on screen where to create the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001243 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001244 private void completeAddShortcut(Intent data, long container, long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07001245 int cellY) {
1246 int[] cellXY = mTmpAddItemCellCoordinates;
1247 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohendcd297f2013-06-18 13:13:40 -07001248 CellLayout layout = getCellLayout(container, screenId);
Romain Guycbb89e42009-06-08 15:52:54 -07001249
Michael Jurkad3ef3062010-11-23 16:23:58 -08001250 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001251
Adam Cohen558baaf2011-08-15 15:22:57 -07001252 ShortcutInfo info = mModel.infoFromShortcutIntent(this, data, null);
Adam Cohend9198822011-11-22 16:42:47 -08001253 if (info == null) {
1254 return;
1255 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001256 final View view = createShortcut(info);
1257
Adam Cohenfbba09b2011-07-18 21:43:05 -07001258 // First we check if we already know the exact location where we want to add this item.
1259 if (cellX >= 0 && cellY >= 0) {
1260 cellXY[0] = cellX;
1261 cellXY[1] = cellY;
1262 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001263
1264 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001265 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001266 true, null,null)) {
1267 return;
1268 }
1269 DragObject dragObject = new DragObject();
1270 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001271 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1272 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001273 return;
1274 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001275 } else if (touchXY != null) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08001276 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001277 int[] result = layout.findNearestVacantArea(touchXY[0], touchXY[1], 1, 1, cellXY);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001278 foundCellSpan = (result != null);
1279 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001280 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001281 }
1282
1283 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001284 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001285 return;
1286 }
1287
Adam Cohendcd297f2013-06-18 13:13:40 -07001288 LauncherModel.addItemToDatabase(this, info, container, screenId, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001289
1290 if (!mRestoring) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001291 mWorkspace.addInScreen(view, container, screenId, cellXY[0], cellXY[1], 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07001292 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001293 }
1294 }
1295
Adam Cohen2f093b62012-04-30 18:59:53 -07001296 static int[] getSpanForWidget(Context context, ComponentName component, int minWidth,
1297 int minHeight) {
1298 Rect padding = AppWidgetHostView.getDefaultPaddingForWidget(context, component, null);
Adam Cohenf814aa02011-09-01 13:48:05 -07001299 // We want to account for the extra amount of padding that we are adding to the widget
1300 // to ensure that it gets the full amount of space that it has requested
1301 int requiredWidth = minWidth + padding.left + padding.right;
1302 int requiredHeight = minHeight + padding.top + padding.bottom;
Winson Chung66700732013-08-20 16:56:15 -07001303 return CellLayout.rectToCell(requiredWidth, requiredHeight, null);
Adam Cohenf814aa02011-09-01 13:48:05 -07001304 }
1305
Adam Cohen2f093b62012-04-30 18:59:53 -07001306 static int[] getSpanForWidget(Context context, AppWidgetProviderInfo info) {
1307 return getSpanForWidget(context, info.provider, info.minWidth, info.minHeight);
Adam Cohenf814aa02011-09-01 13:48:05 -07001308 }
1309
Adam Cohen2f093b62012-04-30 18:59:53 -07001310 static int[] getMinSpanForWidget(Context context, AppWidgetProviderInfo info) {
1311 return getSpanForWidget(context, info.provider, info.minResizeWidth, info.minResizeHeight);
Adam Cohencbf47e32011-09-16 17:32:37 -07001312 }
1313
Adam Cohen2f093b62012-04-30 18:59:53 -07001314 static int[] getSpanForWidget(Context context, PendingAddWidgetInfo info) {
1315 return getSpanForWidget(context, info.componentName, info.minWidth, info.minHeight);
Adam Cohenf814aa02011-09-01 13:48:05 -07001316 }
1317
Adam Cohen2f093b62012-04-30 18:59:53 -07001318 static int[] getMinSpanForWidget(Context context, PendingAddWidgetInfo info) {
1319 return getSpanForWidget(context, info.componentName, info.minResizeWidth,
Winson Chunga5c96362012-04-12 14:04:41 -07001320 info.minResizeHeight);
Adam Cohend41fbf52012-02-16 23:53:59 -08001321 }
1322
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001323 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001324 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001325 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001326 * @param appWidgetId The app widget id
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001327 * @param cellInfo The position on screen where to create the widget.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001328 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001329 private void completeAddAppWidget(final int appWidgetId, long container, long screenId,
Adam Cohened66b2b2012-01-23 17:28:51 -08001330 AppWidgetHostView hostView, AppWidgetProviderInfo appWidgetInfo) {
1331 if (appWidgetInfo == null) {
1332 appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
1333 }
Romain Guycbb89e42009-06-08 15:52:54 -07001334
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001335 // Calculate the grid spans needed to fit this widget
Adam Cohendcd297f2013-06-18 13:13:40 -07001336 CellLayout layout = getCellLayout(container, screenId);
Adam Cohen09353862011-07-14 16:10:03 -07001337
Adam Cohen2f093b62012-04-30 18:59:53 -07001338 int[] minSpanXY = getMinSpanForWidget(this, appWidgetInfo);
1339 int[] spanXY = getSpanForWidget(this, appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001340
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001341 // Try finding open space on Launcher screen
Michael Jurkaa63c4522010-08-19 13:52:27 -07001342 // We have saved the position to which the widget was dragged-- this really only matters
1343 // if we are placing widgets on a "spring-loaded" screen
Winson Chung3d503fb2011-07-13 17:25:49 -07001344 int[] cellXY = mTmpAddItemCellCoordinates;
1345 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohend41fbf52012-02-16 23:53:59 -08001346 int[] finalSpan = new int[2];
Michael Jurka0280c3b2010-09-17 15:00:07 -07001347 boolean foundCellSpan = false;
Winson Chung3d503fb2011-07-13 17:25:49 -07001348 if (mPendingAddInfo.cellX >= 0 && mPendingAddInfo.cellY >= 0) {
1349 cellXY[0] = mPendingAddInfo.cellX;
1350 cellXY[1] = mPendingAddInfo.cellY;
Adam Cohend41fbf52012-02-16 23:53:59 -08001351 spanXY[0] = mPendingAddInfo.spanX;
1352 spanXY[1] = mPendingAddInfo.spanY;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001353 foundCellSpan = true;
1354 } else if (touchXY != null) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001355 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001356 int[] result = layout.findNearestVacantArea(
Adam Cohend41fbf52012-02-16 23:53:59 -08001357 touchXY[0], touchXY[1], minSpanXY[0], minSpanXY[1], spanXY[0],
1358 spanXY[1], cellXY, finalSpan);
1359 spanXY[0] = finalSpan[0];
1360 spanXY[1] = finalSpan[1];
Michael Jurkad3ef3062010-11-23 16:23:58 -08001361 foundCellSpan = (result != null);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001362 } else {
Adam Cohend41fbf52012-02-16 23:53:59 -08001363 foundCellSpan = layout.findCellForSpan(cellXY, minSpanXY[0], minSpanXY[1]);
Michael Jurkaa63c4522010-08-19 13:52:27 -07001364 }
1365
Michael Jurka0280c3b2010-09-17 15:00:07 -07001366 if (!foundCellSpan) {
Winson Chungf7640c82011-02-28 13:47:29 -08001367 if (appWidgetId != -1) {
1368 // Deleting an app widget ID is a void call but writes to disk before returning
1369 // to the caller...
Winson Chungf7640c82011-02-28 13:47:29 -08001370 new Thread("deleteAppWidgetId") {
1371 public void run() {
1372 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
1373 }
1374 }.start();
1375 }
Winson Chung93eef082012-03-23 15:59:27 -07001376 showOutOfSpaceMessage(isHotseatLayout(layout));
Romain Guy18042c82009-11-06 11:44:55 -08001377 return;
1378 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001379
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001380 // Build Launcher-specific widget info and save to database
Winson Chung11a49372012-04-27 15:12:38 -07001381 LauncherAppWidgetInfo launcherInfo = new LauncherAppWidgetInfo(appWidgetId,
1382 appWidgetInfo.provider);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001383 launcherInfo.spanX = spanXY[0];
1384 launcherInfo.spanY = spanXY[1];
Adam Cohend41fbf52012-02-16 23:53:59 -08001385 launcherInfo.minSpanX = mPendingAddInfo.minSpanX;
1386 launcherInfo.minSpanY = mPendingAddInfo.minSpanY;
Romain Guycbb89e42009-06-08 15:52:54 -07001387
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001388 LauncherModel.addItemToDatabase(this, launcherInfo,
Adam Cohendcd297f2013-06-18 13:13:40 -07001389 container, screenId, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001390
1391 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001392 if (hostView == null) {
1393 // Perform actual inflation because we're live
1394 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
1395 launcherInfo.hostView.setAppWidget(appWidgetId, appWidgetInfo);
1396 } else {
1397 // The AppWidgetHostView has already been inflated and instantiated
1398 launcherInfo.hostView = hostView;
1399 }
Romain Guycbb89e42009-06-08 15:52:54 -07001400
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001401 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001402 launcherInfo.hostView.setVisibility(View.VISIBLE);
Adam Cohenaaa5c212012-10-05 18:14:31 -07001403 launcherInfo.notifyWidgetSizeChanged(this);
1404
Adam Cohendcd297f2013-06-18 13:13:40 -07001405 mWorkspace.addInScreen(launcherInfo.hostView, container, screenId, cellXY[0], cellXY[1],
Joe Onorato9c1289c2009-08-17 11:03:03 -04001406 launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001407
1408 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001409 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001410 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001411 }
Romain Guycbb89e42009-06-08 15:52:54 -07001412
Adam Cohended9f8d2010-11-03 13:25:16 -07001413 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1414 @Override
1415 public void onReceive(Context context, Intent intent) {
1416 final String action = intent.getAction();
1417 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1418 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001419 mDragLayer.clearAllResizeFrames();
Adam Cohended9f8d2010-11-03 13:25:16 -07001420 updateRunning();
Winson Chung337cd9d2011-03-30 10:39:30 -07001421
Winson Chungc100e8e2011-08-09 16:02:43 -07001422 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001423 // processing a multi-step drop
Winson Chungc100e8e2011-08-09 16:02:43 -07001424 if (mAppsCustomizeTabHost != null && mPendingAddInfo.container == ItemInfo.NO_ID) {
1425 mAppsCustomizeTabHost.reset();
1426 showWorkspace(false);
Winson Chung785d2eb2011-04-14 16:08:02 -07001427 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001428 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1429 mUserPresent = true;
1430 updateRunning();
1431 }
1432 }
1433 };
1434
1435 @Override
1436 public void onAttachedToWindow() {
1437 super.onAttachedToWindow();
1438
1439 // Listen for broadcasts related to user-presence
1440 final IntentFilter filter = new IntentFilter();
1441 filter.addAction(Intent.ACTION_SCREEN_OFF);
1442 filter.addAction(Intent.ACTION_USER_PRESENT);
1443 registerReceiver(mReceiver, filter);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001444 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Adam Cohend113e0c2010-11-11 10:48:05 -08001445 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001446 mVisible = true;
1447 }
1448
1449 @Override
1450 public void onDetachedFromWindow() {
1451 super.onDetachedFromWindow();
1452 mVisible = false;
1453
Adam Cohend113e0c2010-11-11 10:48:05 -08001454 if (mAttached) {
1455 unregisterReceiver(mReceiver);
1456 mAttached = false;
1457 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001458 updateRunning();
1459 }
1460
1461 public void onWindowVisibilityChanged(int visibility) {
1462 mVisible = visibility == View.VISIBLE;
1463 updateRunning();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001464 // The following code used to be in onResume, but it turns out onResume is called when
1465 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1466 // is a more appropriate event to handle
1467 if (mVisible) {
1468 mAppsCustomizeTabHost.onWindowVisible();
1469 if (!mWorkspaceLoading) {
1470 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001471 // We want to let Launcher draw itself at least once before we force it to build
1472 // layers on all the workspace pages, so that transitioning to Launcher from other
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001473 // apps is nice and speedy.
1474 observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001475 private boolean mStarted = false;
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001476 public void onDraw() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001477 if (mStarted) return;
1478 mStarted = true;
Michael Jurka6ee21d22012-02-21 18:20:27 -08001479 // We delay the layer building a bit in order to give
1480 // other message processing a time to run. In particular
1481 // this avoids a delay in hiding the IME if it was
1482 // currently shown, because doing that may involve
1483 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001484 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurkadf96add2013-04-03 16:25:02 -07001485 final ViewTreeObserver.OnDrawListener listener = this;
1486 mWorkspace.post(new Runnable() {
1487 public void run() {
Michael Jurkab68e03a2013-04-11 11:36:41 -07001488 if (mWorkspace != null &&
1489 mWorkspace.getViewTreeObserver() != null) {
1490 mWorkspace.getViewTreeObserver().
1491 removeOnDrawListener(listener);
1492 }
Michael Jurkadf96add2013-04-03 16:25:02 -07001493 }
1494 });
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001495 return;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001496 }
1497 });
1498 }
Michael Jurka6ee21d22012-02-21 18:20:27 -08001499 // When Launcher comes back to foreground, a different Activity might be responsible for
1500 // the app market intent, so refresh the icon
1501 updateAppMarketIcon();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001502 clearTypedText();
1503 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001504 }
1505
1506 private void sendAdvanceMessage(long delay) {
1507 mHandler.removeMessages(ADVANCE_MSG);
1508 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1509 mHandler.sendMessageDelayed(msg, delay);
1510 mAutoAdvanceSentTime = System.currentTimeMillis();
1511 }
1512
1513 private void updateRunning() {
1514 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1515 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1516 mAutoAdvanceRunning = autoAdvanceRunning;
1517 if (autoAdvanceRunning) {
1518 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1519 sendAdvanceMessage(delay);
1520 } else {
1521 if (!mWidgetsToAdvance.isEmpty()) {
1522 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1523 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1524 }
1525 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001526 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001527 }
1528 }
1529 }
1530
1531 private final Handler mHandler = new Handler() {
1532 @Override
1533 public void handleMessage(Message msg) {
1534 if (msg.what == ADVANCE_MSG) {
1535 int i = 0;
1536 for (View key: mWidgetsToAdvance.keySet()) {
1537 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1538 final int delay = mAdvanceStagger * i;
1539 if (v instanceof Advanceable) {
1540 postDelayed(new Runnable() {
1541 public void run() {
1542 ((Advanceable) v).advance();
1543 }
1544 }, delay);
1545 }
1546 i++;
1547 }
1548 sendAdvanceMessage(mAdvanceInterval);
1549 }
1550 }
1551 };
1552
1553 void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001554 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001555 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1556 if (v instanceof Advanceable) {
1557 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001558 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Adam Cohended9f8d2010-11-03 13:25:16 -07001559 updateRunning();
1560 }
1561 }
1562
1563 void removeWidgetToAutoAdvance(View hostView) {
1564 if (mWidgetsToAdvance.containsKey(hostView)) {
1565 mWidgetsToAdvance.remove(hostView);
1566 updateRunning();
1567 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001568 }
1569
Joe Onorato9c1289c2009-08-17 11:03:03 -04001570 public void removeAppWidget(LauncherAppWidgetInfo launcherInfo) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001571 removeWidgetToAutoAdvance(launcherInfo.hostView);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001572 launcherInfo.hostView = null;
1573 }
1574
Winson Chung93eef082012-03-23 15:59:27 -07001575 void showOutOfSpaceMessage(boolean isHotseatLayout) {
1576 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1577 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001578 }
1579
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001580 public LauncherAppWidgetHost getAppWidgetHost() {
1581 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001582 }
Romain Guycbb89e42009-06-08 15:52:54 -07001583
Winson Chunga9abd0e2010-10-27 17:18:37 -07001584 public LauncherModel getModel() {
1585 return mModel;
1586 }
1587
Bjorn Bringertc459e522013-06-07 19:36:01 +01001588 public void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001589 getWindow().closeAllPanels();
1590
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001591 // Whatever we were doing is hereby canceled.
1592 mWaitingForResult = false;
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001593 }
1594
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001595 @Override
1596 protected void onNewIntent(Intent intent) {
Michael Jurka447bf842013-05-15 14:52:15 +02001597 long startTime = 0;
1598 if (DEBUG_RESUME_TIME) {
1599 startTime = System.currentTimeMillis();
1600 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001601 super.onNewIntent(intent);
1602
1603 // Close the menu
1604 if (Intent.ACTION_MAIN.equals(intent.getAction())) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001605 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001606 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001607
Jamie Genniscb222e82012-10-23 15:44:26 -07001608 final boolean alreadyOnHome =
1609 ((intent.getFlags() & Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
Joe Onorato14f122b2009-11-19 14:06:36 -08001610 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
Michael Jurka01f0ed42010-08-20 00:41:17 -07001611
Jamie Genniscb222e82012-10-23 15:44:26 -07001612 Runnable processIntent = new Runnable() {
1613 public void run() {
Michael Jurkaffc26822012-11-16 18:21:22 -08001614 if (mWorkspace == null) {
1615 // Can be cases where mWorkspace is null, this prevents a NPE
1616 return;
1617 }
Jamie Genniscb222e82012-10-23 15:44:26 -07001618 Folder openFolder = mWorkspace.getOpenFolder();
1619 // In all these cases, only animate if we're already on home
1620 mWorkspace.exitWidgetResizeMode();
1621 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
1622 openFolder == null) {
1623 mWorkspace.moveToDefaultScreen(true);
1624 }
Adam Cohenac56cff2011-09-28 20:45:37 -07001625
Jamie Genniscb222e82012-10-23 15:44:26 -07001626 closeFolder();
1627 exitSpringLoadedDragMode();
Winson Chung4a2afa32012-07-19 14:53:05 -07001628
Jamie Genniscb222e82012-10-23 15:44:26 -07001629 // If we are already on home, then just animate back to the workspace,
1630 // otherwise, just wait until onResume to set the state back to Workspace
1631 if (alreadyOnHome) {
1632 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001633 if (mWorkspace.isInOverviewMode()) {
1634 mWorkspace.exitOverviewMode();
1635 }
Jamie Genniscb222e82012-10-23 15:44:26 -07001636 } else {
1637 mOnResumeState = State.WORKSPACE;
1638 }
1639
1640 final View v = getWindow().peekDecorView();
1641 if (v != null && v.getWindowToken() != null) {
1642 InputMethodManager imm = (InputMethodManager)getSystemService(
1643 INPUT_METHOD_SERVICE);
1644 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1645 }
1646
1647 // Reset AllApps to its initial state
1648 if (!alreadyOnHome && mAppsCustomizeTabHost != null) {
1649 mAppsCustomizeTabHost.reset();
1650 }
1651 }
1652 };
1653
1654 if (alreadyOnHome && !mWorkspace.hasWindowFocus()) {
1655 // Delay processing of the intent to allow the status bar animation to finish
1656 // first in order to avoid janky animations.
1657 mWorkspace.postDelayed(processIntent, 350);
Winson Chung4a2afa32012-07-19 14:53:05 -07001658 } else {
Jamie Genniscb222e82012-10-23 15:44:26 -07001659 // Process the intent immediately.
1660 processIntent.run();
Winson Chung4a2afa32012-07-19 14:53:05 -07001661 }
Romain Guy1dd3a072009-07-16 13:21:01 -07001662
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001663 }
Michael Jurka447bf842013-05-15 14:52:15 +02001664 if (DEBUG_RESUME_TIME) {
1665 Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime));
1666 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001667 }
1668
1669 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001670 public void onRestoreInstanceState(Bundle state) {
1671 super.onRestoreInstanceState(state);
1672 for (int page: mSynchronouslyBoundPages) {
1673 mWorkspace.restoreInstanceStateForChild(page);
1674 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001675 }
1676
1677 @Override
1678 protected void onSaveInstanceState(Bundle outState) {
Winson Chungc93e5ae2012-07-23 20:48:26 -07001679 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN, mWorkspace.getNextPage());
Adam Cohen95bb8002011-07-03 23:40:28 -07001680 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001681
Michael Jurka883f55b2010-10-21 15:47:14 -07001682 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001683 // We close any open folder since it will not be re-opened, and we need to make sure
1684 // this state is reflected.
1685 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001686
Adam Cohendcd297f2013-06-18 13:13:40 -07001687 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screenId > -1 &&
Winson Chung3d503fb2011-07-13 17:25:49 -07001688 mWaitingForResult) {
1689 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
Adam Cohendcd297f2013-06-18 13:13:40 -07001690 outState.putLong(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screenId);
Winson Chung3d503fb2011-07-13 17:25:49 -07001691 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1692 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001693 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_X, mPendingAddInfo.spanX);
1694 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y, mPendingAddInfo.spanY);
1695 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001696 }
1697
1698 if (mFolderInfo != null && mWaitingForResult) {
1699 outState.putBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, true);
1700 outState.putLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID, mFolderInfo.id);
1701 }
Michael Jurka946ad472010-07-09 18:05:18 -07001702
Winson Chung785d2eb2011-04-14 16:08:02 -07001703 // Save the current AppsCustomize tab
1704 if (mAppsCustomizeTabHost != null) {
1705 String currentTabTag = mAppsCustomizeTabHost.getCurrentTabTag();
1706 if (currentTabTag != null) {
1707 outState.putString("apps_customize_currentTab", currentTabTag);
1708 }
Winson Chung5afbf7b2011-07-25 11:53:08 -07001709 int currentIndex = mAppsCustomizeContent.getSaveInstanceStateIndex();
1710 outState.putInt("apps_customize_currentIndex", currentIndex);
Winson Chung785d2eb2011-04-14 16:08:02 -07001711 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001712 }
1713
1714 @Override
1715 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001716 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001717
Winson Chunge7a03942011-08-05 15:05:12 -07001718 // Remove all pending runnables
1719 mHandler.removeMessages(ADVANCE_MSG);
1720 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07001721 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07001722
Winson Chungcd2b0142011-06-08 16:02:26 -07001723 // Stop callbacks from LauncherModel
Daniel Sandlercc8befa2013-06-11 14:45:48 -04001724 LauncherAppState app = (LauncherAppState.getInstance());
Winson Chungcd2b0142011-06-08 16:02:26 -07001725 mModel.stopLoader();
1726 app.setLauncher(null);
1727
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001728 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001729 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001730 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001731 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001732 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001733 mAppWidgetHost = null;
1734
1735 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001736
1737 TextKeyListener.getInstance().release();
1738
Winson Chung81b52252012-08-27 15:34:29 -07001739 // Disconnect any of the callbacks and drawables associated with ItemInfos on the workspace
1740 // to prevent leaking Launcher activities on orientation change.
1741 if (mModel != null) {
1742 mModel.unbindItemInfosAndClearQueuedBindRunnables();
1743 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08001744
1745 getContentResolver().unregisterContentObserver(mWidgetObserver);
Joe Onorato34a0e1b2009-12-14 17:44:51 -08001746 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001747
Adam Cohenaccf3bf2012-04-30 16:07:43 -07001748 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001749 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
1750 mWorkspace.removeAllViews();
1751 mWorkspace = null;
1752 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08001753
Michael Jurka2ecf9952012-06-18 12:52:28 -07001754 LauncherAnimUtils.onDestroyActivity();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001755 }
1756
Adam Cohena9cf38f2011-05-02 15:36:58 -07001757 public DragController getDragController() {
1758 return mDragController;
1759 }
1760
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001761 @Override
1762 public void startActivityForResult(Intent intent, int requestCode) {
Romain Guy08f97492009-06-29 14:41:20 -07001763 if (requestCode >= 0) mWaitingForResult = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001764 super.startActivityForResult(intent, requestCode);
1765 }
1766
Winson Chung70d72102011-08-12 11:24:35 -07001767 /**
1768 * Indicates that we want global search for this activity by setting the globalSearch
1769 * argument for {@link #startSearch} to true.
1770 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001771 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07001772 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001773 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001774
Michael Jurkac0e8fca2010-10-06 16:41:29 -07001775 showWorkspace(true);
Romain Guycbb89e42009-06-08 15:52:54 -07001776
Karl Rosaen138a0412009-04-23 19:00:21 -07001777 if (initialQuery == null) {
1778 // Use any text typed in the launcher as the initial query
1779 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07001780 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001781 if (appSearchData == null) {
1782 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01001783 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001784 }
Winson Chungadf0c182012-08-23 14:59:07 -07001785 Rect sourceBounds = new Rect();
1786 if (mSearchDropTargetBar != null) {
1787 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
1788 }
Romain Guycbb89e42009-06-08 15:52:54 -07001789
Bjorn Bringertc459e522013-06-07 19:36:01 +01001790 startSearch(initialQuery, selectInitialQuery,
1791 appSearchData, sourceBounds);
1792 }
1793
1794 public void startSearch(String initialQuery,
1795 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Michael Jurkaa33411c2012-06-14 16:18:21 -07001796 startGlobalSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01001797 appSearchData, sourceBounds);
Michael Jurkaa33411c2012-06-14 16:18:21 -07001798 }
1799
1800 /**
1801 * Starts the global search activity. This code is a copied from SearchManager
1802 */
Bjorn Bringertc459e522013-06-07 19:36:01 +01001803 private void startGlobalSearch(String initialQuery,
Michael Jurkaa33411c2012-06-14 16:18:21 -07001804 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001805 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07001806 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
1807 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
1808 if (globalSearchActivity == null) {
1809 Log.w(TAG, "No global search activity found.");
1810 return;
1811 }
1812 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
1813 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
1814 intent.setComponent(globalSearchActivity);
1815 // Make sure that we have a Bundle to put source in
1816 if (appSearchData == null) {
1817 appSearchData = new Bundle();
1818 } else {
1819 appSearchData = new Bundle(appSearchData);
1820 }
1821 // Set source to package name of app that starts global search, if not set already.
1822 if (!appSearchData.containsKey("source")) {
1823 appSearchData.putString("source", getPackageName());
1824 }
1825 intent.putExtra(SearchManager.APP_DATA, appSearchData);
1826 if (!TextUtils.isEmpty(initialQuery)) {
1827 intent.putExtra(SearchManager.QUERY, initialQuery);
1828 }
1829 if (selectInitialQuery) {
1830 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
1831 }
1832 intent.setSourceBounds(sourceBounds);
1833 try {
1834 startActivity(intent);
1835 } catch (ActivityNotFoundException ex) {
1836 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
1837 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001838 }
1839
Winson Chung70d72102011-08-12 11:24:35 -07001840 @Override
1841 public boolean onCreateOptionsMenu(Menu menu) {
1842 if (isWorkspaceLocked()) {
1843 return false;
1844 }
1845
1846 super.onCreateOptionsMenu(menu);
Winson Chungdff8ebb2011-09-08 17:25:31 -07001847
1848 Intent manageApps = new Intent(Settings.ACTION_MANAGE_ALL_APPLICATIONS_SETTINGS);
1849 manageApps.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1850 | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Winson Chung236d4312011-08-22 15:12:27 -07001851 Intent settings = new Intent(android.provider.Settings.ACTION_SETTINGS);
1852 settings.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1853 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Michael Jurkab964f9c2011-09-27 22:10:05 -07001854 String helpUrl = getString(R.string.help_url);
1855 Intent help = new Intent(Intent.ACTION_VIEW, Uri.parse(helpUrl));
Winson Chungdff8ebb2011-09-08 17:25:31 -07001856 help.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1857 | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
1858
Winson Chung70d72102011-08-12 11:24:35 -07001859 menu.add(MENU_GROUP_WALLPAPER, MENU_WALLPAPER_SETTINGS, 0, R.string.menu_wallpaper)
1860 .setIcon(android.R.drawable.ic_menu_gallery)
1861 .setAlphabeticShortcut('W');
1862 menu.add(0, MENU_MANAGE_APPS, 0, R.string.menu_manage_apps)
1863 .setIcon(android.R.drawable.ic_menu_manage)
Winson Chungdff8ebb2011-09-08 17:25:31 -07001864 .setIntent(manageApps)
Winson Chung70d72102011-08-12 11:24:35 -07001865 .setAlphabeticShortcut('M');
Winson Chung236d4312011-08-22 15:12:27 -07001866 menu.add(0, MENU_SYSTEM_SETTINGS, 0, R.string.menu_settings)
1867 .setIcon(android.R.drawable.ic_menu_preferences)
1868 .setIntent(settings)
1869 .setAlphabeticShortcut('P');
Michael Jurkab964f9c2011-09-27 22:10:05 -07001870 if (!helpUrl.isEmpty()) {
1871 menu.add(0, MENU_HELP, 0, R.string.menu_help)
1872 .setIcon(android.R.drawable.ic_menu_help)
1873 .setIntent(help)
1874 .setAlphabeticShortcut('H');
1875 }
Winson Chung70d72102011-08-12 11:24:35 -07001876 return true;
1877 }
1878
1879 @Override
1880 public boolean onPrepareOptionsMenu(Menu menu) {
1881 super.onPrepareOptionsMenu(menu);
1882
1883 if (mAppsCustomizeTabHost.isTransitioning()) {
1884 return false;
1885 }
1886 boolean allAppsVisible = (mAppsCustomizeTabHost.getVisibility() == View.VISIBLE);
1887 menu.setGroupVisible(MENU_GROUP_WALLPAPER, !allAppsVisible);
1888
1889 return true;
1890 }
1891
1892 @Override
1893 public boolean onOptionsItemSelected(MenuItem item) {
1894 switch (item.getItemId()) {
1895 case MENU_WALLPAPER_SETTINGS:
1896 startWallpaper();
1897 return true;
Winson Chung70d72102011-08-12 11:24:35 -07001898 }
1899
1900 return super.onOptionsItemSelected(item);
1901 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001902
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07001903 @Override
1904 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07001905 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07001906 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07001907 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07001908 }
1909
Joe Onorato9c1289c2009-08-17 11:03:03 -04001910 public boolean isWorkspaceLocked() {
1911 return mWorkspaceLoading || mWaitingForResult;
1912 }
1913
Michael Jurka0280c3b2010-09-17 15:00:07 -07001914 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07001915 mPendingAddInfo.container = ItemInfo.NO_ID;
Adam Cohendcd297f2013-06-18 13:13:40 -07001916 mPendingAddInfo.screenId = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07001917 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
1918 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Adam Cohend41fbf52012-02-16 23:53:59 -08001919 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07001920 mPendingAddInfo.dropPos = null;
Michael Jurka0280c3b2010-09-17 15:00:07 -07001921 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07001922
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001923 void addAppWidgetImpl(final int appWidgetId, ItemInfo info, AppWidgetHostView boundWidget,
1924 AppWidgetProviderInfo appWidgetInfo) {
1925 if (appWidgetInfo.configure != null) {
1926 mPendingAddWidgetInfo = appWidgetInfo;
Michael Jurkaaf442092010-06-10 17:01:57 -07001927
Bjorn Bringert7984c942009-12-09 15:38:25 +00001928 // Launch over to configure widget, if needed
1929 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_CONFIGURE);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001930 intent.setComponent(appWidgetInfo.configure);
Bjorn Bringert7984c942009-12-09 15:38:25 +00001931 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
Michael Jurkaa805e1a2013-08-22 15:00:33 +02001932 Utilities.startActivityForResultSafely(this, intent, REQUEST_CREATE_APPWIDGET);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001933 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00001934 // Otherwise just add it
Adam Cohendcd297f2013-06-18 13:13:40 -07001935 completeAddAppWidget(appWidgetId, info.container, info.screenId, boundWidget,
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001936 appWidgetInfo);
Winson Chung557d6ed2011-07-08 15:34:52 -07001937 // Exit spring loaded mode if necessary after adding the widget
Adam Cohened66b2b2012-01-23 17:28:51 -08001938 exitSpringLoadedDragModeDelayed(true, false, null);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001939 }
1940 }
Romain Guycbb89e42009-06-08 15:52:54 -07001941
Adam Cohenfbba09b2011-07-18 21:43:05 -07001942 /**
1943 * Process a shortcut drop.
1944 *
1945 * @param componentName The name of the component
Adam Cohendcd297f2013-06-18 13:13:40 -07001946 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07001947 * @param cell The cell it should be added to, optional
1948 * @param position The location on the screen where it was dropped, optional
1949 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001950 void processShortcutFromDrop(ComponentName componentName, long container, long screenId,
Winson Chung3d503fb2011-07-13 17:25:49 -07001951 int[] cell, int[] loc) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07001952 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07001953 mPendingAddInfo.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07001954 mPendingAddInfo.screenId = screenId;
Winson Chung3d503fb2011-07-13 17:25:49 -07001955 mPendingAddInfo.dropPos = loc;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001956
1957 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07001958 mPendingAddInfo.cellX = cell[0];
1959 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07001960 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001961
1962 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
1963 createShortcutIntent.setComponent(componentName);
1964 processShortcut(createShortcutIntent);
1965 }
1966
Adam Cohenfbba09b2011-07-18 21:43:05 -07001967 /**
1968 * Process a widget drop.
1969 *
1970 * @param info The PendingAppWidgetInfo of the widget being added.
Adam Cohendcd297f2013-06-18 13:13:40 -07001971 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07001972 * @param cell The cell it should be added to, optional
1973 * @param position The location on the screen where it was dropped, optional
1974 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001975 void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, long screenId,
Adam Cohend41fbf52012-02-16 23:53:59 -08001976 int[] cell, int[] span, int[] loc) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001977 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07001978 mPendingAddInfo.container = info.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07001979 mPendingAddInfo.screenId = info.screenId = screenId;
Winson Chung3d503fb2011-07-13 17:25:49 -07001980 mPendingAddInfo.dropPos = loc;
Adam Cohend41fbf52012-02-16 23:53:59 -08001981 mPendingAddInfo.minSpanX = info.minSpanX;
1982 mPendingAddInfo.minSpanY = info.minSpanY;
1983
Adam Cohenfbba09b2011-07-18 21:43:05 -07001984 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07001985 mPendingAddInfo.cellX = cell[0];
1986 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07001987 }
Adam Cohend41fbf52012-02-16 23:53:59 -08001988 if (span != null) {
1989 mPendingAddInfo.spanX = span[0];
1990 mPendingAddInfo.spanY = span[1];
1991 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001992
Adam Cohened66b2b2012-01-23 17:28:51 -08001993 AppWidgetHostView hostView = info.boundWidget;
1994 int appWidgetId;
1995 if (hostView != null) {
1996 appWidgetId = hostView.getAppWidgetId();
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001997 addAppWidgetImpl(appWidgetId, info, hostView, info.info);
Adam Cohened66b2b2012-01-23 17:28:51 -08001998 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001999 // In this case, we either need to start an activity to get permission to bind
2000 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08002001 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07002002 Bundle options = info.bindOptions;
2003
2004 boolean success = false;
2005 if (options != null) {
2006 success = mAppWidgetManager.bindAppWidgetIdIfAllowed(appWidgetId,
2007 info.componentName, options);
2008 } else {
2009 success = mAppWidgetManager.bindAppWidgetIdIfAllowed(appWidgetId,
2010 info.componentName);
2011 }
2012 if (success) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002013 addAppWidgetImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07002014 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002015 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07002016 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
2017 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
2018 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Adam Cohendd70d662012-10-04 16:53:44 -07002019 // TODO: we need to make sure that this accounts for the options bundle.
2020 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07002021 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
2022 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002023 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002024 }
2025
Joe Onoratodeb98af2010-02-19 14:59:39 -08002026 void processShortcut(Intent intent) {
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002027 // Handle case where user selected "Applications"
2028 String applicationName = getResources().getString(R.string.group_applications);
2029 String shortcutName = intent.getStringExtra(Intent.EXTRA_SHORTCUT_NAME);
Romain Guycbb89e42009-06-08 15:52:54 -07002030
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002031 if (applicationName != null && applicationName.equals(shortcutName)) {
2032 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
2033 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
Romain Guycbb89e42009-06-08 15:52:54 -07002034
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002035 Intent pickIntent = new Intent(Intent.ACTION_PICK_ACTIVITY);
2036 pickIntent.putExtra(Intent.EXTRA_INTENT, mainIntent);
Winson Chung58f20882010-10-01 13:44:56 -07002037 pickIntent.putExtra(Intent.EXTRA_TITLE, getText(R.string.title_select_application));
Michael Jurkaa805e1a2013-08-22 15:00:33 +02002038 Utilities.startActivityForResultSafely(this, pickIntent, REQUEST_PICK_APPLICATION);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002039 } else {
Michael Jurkaa805e1a2013-08-22 15:00:33 +02002040 Utilities.startActivityForResultSafely(this, intent, REQUEST_CREATE_SHORTCUT);
Jeffrey Sharkeyc7fdae12009-03-24 20:41:22 -07002041 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002042 }
2043
Winson Chung24ab2f12010-09-16 14:10:47 -07002044 void processWallpaper(Intent intent) {
2045 startActivityForResult(intent, REQUEST_PICK_WALLPAPER);
2046 }
2047
Adam Cohendcd297f2013-06-18 13:13:40 -07002048 FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07002049 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07002050 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002051 folderInfo.title = getText(R.string.folder_name);
2052
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002053 // Update the model
Adam Cohendcd297f2013-06-18 13:13:40 -07002054 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId, cellX, cellY,
Winson Chung3d503fb2011-07-13 17:25:49 -07002055 false);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002056 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002057
2058 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07002059 FolderIcon newFolder =
2060 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07002061 mWorkspace.addInScreen(newFolder, container, screenId, cellX, cellY, 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07002062 isWorkspaceLocked());
Winson Chung5f8afe62013-08-12 16:19:28 -07002063 // Force measure the new folder icon
2064 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
2065 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07002066 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002067 }
Romain Guycbb89e42009-06-08 15:52:54 -07002068
Joe Onorato9c1289c2009-08-17 11:03:03 -04002069 void removeFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002070 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002071 }
2072
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002073 protected void startWallpaper() {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002074 showWorkspace(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002075 final Intent pickWallpaper = new Intent(Intent.ACTION_SET_WALLPAPER);
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002076 pickWallpaper.setComponent(getWallpaperPickerComponent());
Michael Jurka104c4562013-07-08 18:03:46 -07002077 startActivityForResult(pickWallpaper, REQUEST_PICK_WALLPAPER);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002078 }
2079
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002080 protected ComponentName getWallpaperPickerComponent() {
2081 return new ComponentName(getPackageName(), WallpaperPickerActivity.class.getName());
2082 }
2083
Joe Onorato2ca0ae72009-11-10 13:14:13 -08002084 /**
2085 * Registers various content observers. The current implementation registers
2086 * only a favorites observer to keep track of the favorites applications.
2087 */
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002088 private void registerContentObservers() {
2089 ContentResolver resolver = getContentResolver();
2090 resolver.registerContentObserver(LauncherProvider.CONTENT_APPWIDGET_RESET_URI,
2091 true, mWidgetObserver);
2092 }
2093
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002094 @Override
2095 public boolean dispatchKeyEvent(KeyEvent event) {
2096 if (event.getAction() == KeyEvent.ACTION_DOWN) {
2097 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002098 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07002099 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08002100 case KeyEvent.KEYCODE_VOLUME_DOWN:
Michael Jurka0a457bf2012-11-19 14:05:05 -08002101 if (isPropertyEnabled(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08002102 dumpState();
2103 return true;
2104 }
2105 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07002106 }
2107 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2108 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07002109 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002110 return true;
2111 }
2112 }
2113
2114 return super.dispatchKeyEvent(event);
2115 }
2116
Joe Onorato88ec0992009-11-19 13:16:06 -08002117 @Override
2118 public void onBackPressed() {
Winson Chungc93e5ae2012-07-23 20:48:26 -07002119 if (isAllAppsVisible()) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002120 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002121 } else if (mWorkspace.isInOverviewMode()) {
2122 mWorkspace.exitOverviewMode();
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002123 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07002124 Folder openFolder = mWorkspace.getOpenFolder();
2125 if (openFolder.isEditingName()) {
2126 openFolder.dismissEditingName();
2127 } else {
2128 closeFolder();
2129 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002130 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08002131 mWorkspace.exitWidgetResizeMode();
2132
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002133 // Back button is a no-op here, but give at least some feedback for the button press
2134 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07002135 }
Joe Onorato88ec0992009-11-19 13:16:06 -08002136 }
2137
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002138 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002139 * Re-listen when widgets are reset.
2140 */
2141 private void onAppWidgetReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08002142 if (mAppWidgetHost != null) {
2143 mAppWidgetHost.startListening();
2144 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002145 }
2146
2147 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002148 * Launches the intent referred by the clicked shortcut.
2149 *
2150 * @param v The view representing the clicked shortcut.
2151 */
2152 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002153 // Make sure that rogue clicks don't get through while allapps is launching, or after the
2154 // view has detached (it's possible for this to happen if the view is removed mid touch).
2155 if (v.getWindowToken() == null) {
2156 return;
2157 }
2158
Winson Chung9b0b2fe2012-02-24 13:03:34 -08002159 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002160 return;
2161 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07002162
Adam Cohenf358a4b2013-07-23 16:47:31 -07002163 if (v instanceof PageIndicator) {
2164 if (!mWorkspace.isInOverviewMode()) {
2165 mWorkspace.enterOverviewMode();
2166 }
2167 return;
2168 }
2169
2170 if (v instanceof CellLayout) {
2171 if (mWorkspace.isInOverviewMode()) {
2172 mWorkspace.exitOverviewMode(mWorkspace.indexOfChild(v));
2173 }
2174 }
2175
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002176 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002177 if (tag instanceof ShortcutInfo) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002178 // Open shortcut
Daniel Sandlerff02d492013-08-05 02:12:05 -04002179 final ShortcutInfo shortcut = (ShortcutInfo) tag;
2180 final Intent intent = shortcut.intent;
Adam Cohenb5fe60c2013-06-06 22:03:51 -07002181
Daniel Sandlerf8577a32013-06-26 14:04:59 -04002182 // Check for special shortcuts
2183 if (intent.getComponent() != null) {
2184 final String shortcutClass = intent.getComponent().getClassName();
2185
2186 if (shortcutClass.equals(WidgetAdder.class.getName())) {
Winson Chungc58497e2013-09-03 17:48:37 -07002187 showAllApps(true, AppsCustomizePagedView.ContentType.Widgets);
Daniel Sandlerf8577a32013-06-26 14:04:59 -04002188 return;
2189 } else if (shortcutClass.equals(MemoryDumpActivity.class.getName())) {
2190 MemoryDumpActivity.startDump(this);
2191 return;
Adam Cohen39a06042013-07-19 14:30:12 -07002192 } else if (shortcutClass.equals(ToggleWeightWatcher.class.getName())) {
2193 toggleShowWeightWatcher();
2194 return;
Daniel Sandlerf8577a32013-06-26 14:04:59 -04002195 }
Adam Cohenb5fe60c2013-06-06 22:03:51 -07002196 }
Daniel Sandlerf8577a32013-06-26 14:04:59 -04002197
2198 // Start activities
Joe Onorato13724ea2009-12-02 21:16:35 -08002199 int[] pos = new int[2];
2200 v.getLocationOnScreen(pos);
Romain Guyfb5411e2010-02-24 10:04:17 -08002201 intent.setSourceBounds(new Rect(pos[0], pos[1],
2202 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Winson Chungc7450e32012-04-17 17:34:08 -07002203
2204 boolean success = startActivitySafely(v, intent, tag);
Michael Jurkaddd62e92011-02-16 17:49:14 -08002205
Daniel Sandlerff02d492013-08-05 02:12:05 -04002206 mStats.recordLaunch(intent, shortcut);
2207
Michael Jurkaddd62e92011-02-16 17:49:14 -08002208 if (success && v instanceof BubbleTextView) {
2209 mWaitingForResume = (BubbleTextView) v;
2210 mWaitingForResume.setStayPressed(true);
2211 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002212 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002213 if (v instanceof FolderIcon) {
2214 FolderIcon fi = (FolderIcon) v;
2215 handleFolderClick(fi);
2216 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002217 } else if (v == mAllAppsButton) {
Winson Chungc93e5ae2012-07-23 20:48:26 -07002218 if (isAllAppsVisible()) {
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002219 showWorkspace(true);
Joe Onorato7404ee42009-07-31 11:54:44 -07002220 } else {
Michael Jurka2a552322011-10-11 15:22:05 -07002221 onClickAllAppsButton(v);
Joe Onorato7404ee42009-07-31 11:54:44 -07002222 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002223 }
2224 }
2225
Michael Jurka0e260592010-06-30 17:07:39 -07002226 public boolean onTouch(View v, MotionEvent event) {
Michael Jurka0e260592010-06-30 17:07:39 -07002227 return false;
2228 }
2229
Michael Jurkaaf442092010-06-10 17:01:57 -07002230 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002231 * Event handler for the search button
2232 *
2233 * @param v The view that was clicked.
2234 */
2235 public void onClickSearchButton(View v) {
Winson Chungbb185bd2011-11-21 12:31:42 -08002236 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2237
Amith Yamasania135ba82011-08-09 17:42:01 -07002238 onSearchRequested();
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002239 }
2240
2241 /**
Amith Yamasani6d7fe502010-11-16 09:05:07 -08002242 * Event handler for the voice button
2243 *
2244 * @param v The view that was clicked.
2245 */
2246 public void onClickVoiceButton(View v) {
Winson Chungbb185bd2011-11-21 12:31:42 -08002247 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
Amith Yamasani6d7fe502010-11-16 09:05:07 -08002248
Bjorn Bringertc459e522013-06-07 19:36:01 +01002249 startVoice();
2250 }
2251
2252 public void startVoice() {
Michael Jurkaae65ee32012-04-30 11:45:54 -07002253 try {
2254 final SearchManager searchManager =
2255 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2256 ComponentName activityName = searchManager.getGlobalSearchActivity();
2257 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
Andy Huangf615f712012-06-07 13:38:04 -07002258 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Michael Jurkaae65ee32012-04-30 11:45:54 -07002259 if (activityName != null) {
2260 intent.setPackage(activityName.getPackageName());
2261 }
Michael Jurka86a720e2012-05-09 11:23:23 -07002262 startActivity(null, intent, "onClickVoiceButton");
Michael Jurkaae65ee32012-04-30 11:45:54 -07002263 } catch (ActivityNotFoundException e) {
2264 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
Andy Huangf615f712012-06-07 13:38:04 -07002265 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Michael Jurkaae65ee32012-04-30 11:45:54 -07002266 startActivitySafely(null, intent, "onClickVoiceButton");
2267 }
Amith Yamasani6d7fe502010-11-16 09:05:07 -08002268 }
2269
2270 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002271 * Event handler for the "grid" button that appears on the home screen, which
2272 * enters all apps mode.
2273 *
2274 * @param v The view that was clicked.
2275 */
2276 public void onClickAllAppsButton(View v) {
Winson Chungc58497e2013-09-03 17:48:37 -07002277 showAllApps(true, AppsCustomizePagedView.ContentType.Applications);
Michael Jurka5130e402011-10-13 04:55:35 -07002278 }
2279
2280 public void onTouchDownAllAppsButton(View v) {
Michael Jurka2a552322011-10-11 15:22:05 -07002281 // Provide the same haptic feedback that the system offers for virtual keys.
2282 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002283 }
2284
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002285 public void onClickAppMarketButton(View v) {
2286 if (mAppMarketIntent != null) {
Winson Chungc7450e32012-04-17 17:34:08 -07002287 startActivitySafely(v, mAppMarketIntent, "app market");
Winson Chung4f916f42012-03-26 15:30:59 -07002288 } else {
2289 Log.e(TAG, "Invalid app market intent.");
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002290 }
2291 }
2292
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002293 void startApplicationDetailsActivity(ComponentName componentName) {
2294 String packageName = componentName.getPackageName();
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002295 Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS,
2296 Uri.fromParts("package", packageName, null));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002297 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Winson Chung3b1b36b2012-04-24 18:51:14 -07002298 startActivitySafely(null, intent, "startApplicationDetailsActivity");
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002299 }
2300
Michael Jurka1e2f4652013-07-08 18:03:46 -07002301 // returns true if the activity was started
2302 boolean startApplicationUninstallActivity(ComponentName componentName, int flags) {
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002303 if ((flags & AppInfo.DOWNLOADED_FLAG) == 0) {
Patrick Dubroy5539af72010-09-07 15:22:01 -07002304 // System applications cannot be installed. For now, show a toast explaining that.
2305 // We may give them the option of disabling apps this way.
2306 int messageId = R.string.uninstall_system_app_text;
2307 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
Michael Jurka1e2f4652013-07-08 18:03:46 -07002308 return false;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002309 } else {
Michael Jurka1e2f4652013-07-08 18:03:46 -07002310 String packageName = componentName.getPackageName();
2311 String className = componentName.getClassName();
Patrick Dubroy5539af72010-09-07 15:22:01 -07002312 Intent intent = new Intent(
2313 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002314 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2315 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Patrick Dubroy5539af72010-09-07 15:22:01 -07002316 startActivity(intent);
Michael Jurka1e2f4652013-07-08 18:03:46 -07002317 return true;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002318 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002319 }
2320
Michael Jurka86a720e2012-05-09 11:23:23 -07002321 boolean startActivity(View v, Intent intent, Object tag) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002322 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Winson Chungc7450e32012-04-17 17:34:08 -07002323
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002324 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002325 // Only launch using the new animation if the shortcut has not opted out (this is a
2326 // private contract between launcher and may be ignored in the future).
2327 boolean useLaunchAnimation = (v != null) &&
2328 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
2329 if (useLaunchAnimation) {
Winson Chungc7450e32012-04-17 17:34:08 -07002330 ActivityOptions opts = ActivityOptions.makeScaleUpAnimation(v, 0, 0,
2331 v.getMeasuredWidth(), v.getMeasuredHeight());
2332
2333 startActivity(intent, opts.toBundle());
2334 } else {
2335 startActivity(intent);
2336 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002337 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002338 } catch (SecurityException e) {
2339 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002340 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002341 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07002342 "or use the exported attribute for this activity. "
2343 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002344 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002345 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002346 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002347
Michael Jurka86a720e2012-05-09 11:23:23 -07002348 boolean startActivitySafely(View v, Intent intent, Object tag) {
2349 boolean success = false;
2350 try {
2351 success = startActivity(v, intent, tag);
2352 } catch (ActivityNotFoundException e) {
2353 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2354 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
2355 }
2356 return success;
2357 }
2358
Adam Cohena9cf38f2011-05-02 15:36:58 -07002359 private void handleFolderClick(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07002360 final FolderInfo info = folderIcon.getFolderInfo();
Adam Cohen3c81a382011-08-31 22:25:51 -07002361 Folder openFolder = mWorkspace.getFolderForTag(info);
2362
2363 // If the folder info reports that the associated folder is open, then verify that
2364 // it is actually opened. There have been a few instances where this gets out of sync.
2365 if (info.opened && openFolder == null) {
2366 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
Adam Cohendcd297f2013-06-18 13:13:40 -07002367 + info.screenId + " (" + info.cellX + ", " + info.cellY + ")");
Adam Cohen3c81a382011-08-31 22:25:51 -07002368 info.opened = false;
2369 }
2370
Adam Cohenfb91f302012-06-11 15:45:18 -07002371 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002372 // Close any open folder
2373 closeFolder();
2374 // Open the requested folder
Adam Cohena9cf38f2011-05-02 15:36:58 -07002375 openFolder(folderIcon);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002376 } else {
2377 // Find the open folder...
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002378 int folderScreen;
2379 if (openFolder != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07002380 folderScreen = mWorkspace.getPageForView(openFolder);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002381 // .. and close it
2382 closeFolder(openFolder);
Michael Jurka0142d492010-08-25 17:46:15 -07002383 if (folderScreen != mWorkspace.getCurrentPage()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002384 // Close any folder open on the current screen
2385 closeFolder();
2386 // Pull the folder onto this screen
Adam Cohena9cf38f2011-05-02 15:36:58 -07002387 openFolder(folderIcon);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002388 }
2389 }
2390 }
2391 }
2392
Adam Cohen268c4752012-06-06 17:47:33 -07002393 /**
2394 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
2395 * in the DragLayer in the exact absolute location of the original FolderIcon.
2396 */
2397 private void copyFolderIconToImage(FolderIcon fi) {
2398 final int width = fi.getMeasuredWidth();
2399 final int height = fi.getMeasuredHeight();
2400
2401 // Lazy load ImageView, Bitmap and Canvas
2402 if (mFolderIconImageView == null) {
2403 mFolderIconImageView = new ImageView(this);
2404 }
2405 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
2406 mFolderIconBitmap.getHeight() != height) {
2407 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
2408 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
2409 }
2410
2411 DragLayer.LayoutParams lp;
2412 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
2413 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
2414 } else {
2415 lp = new DragLayer.LayoutParams(width, height);
2416 }
2417
Adam Cohen307fe232012-08-16 17:55:58 -07002418 // The layout from which the folder is being opened may be scaled, adjust the starting
2419 // view size by this scale factor.
2420 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07002421 lp.customPosition = true;
2422 lp.x = mRectForFolderAnimation.left;
2423 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07002424 lp.width = (int) (scale * width);
2425 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07002426
2427 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
2428 fi.draw(mFolderIconCanvas);
2429 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07002430 if (fi.getFolder() != null) {
2431 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
2432 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07002433 }
Adam Cohen268c4752012-06-06 17:47:33 -07002434 // Just in case this image view is still in the drag layer from a previous animation,
2435 // we remove it and re-add it.
2436 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
2437 mDragLayer.removeView(mFolderIconImageView);
2438 }
2439 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07002440 if (fi.getFolder() != null) {
2441 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07002442 }
Adam Cohen268c4752012-06-06 17:47:33 -07002443 }
2444
Adam Cohen2801caf2011-05-13 20:57:39 -07002445 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002446 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07002447 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
2448 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
2449 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
2450
Adam Cohenc51934b2011-07-26 21:07:43 -07002451 FolderInfo info = (FolderInfo) fi.getTag();
2452 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
2453 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07002454 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
2455 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07002456 }
2457
Adam Cohen268c4752012-06-06 17:47:33 -07002458 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
2459 copyFolderIconToImage(fi);
2460 fi.setVisibility(View.INVISIBLE);
2461
Michael Jurka2ecf9952012-06-18 12:52:28 -07002462 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07002463 scaleX, scaleY);
Adam Cohen2801caf2011-05-13 20:57:39 -07002464 oa.setDuration(getResources().getInteger(R.integer.config_folderAnimDuration));
2465 oa.start();
2466 }
2467
Adam Cohen268c4752012-06-06 17:47:33 -07002468 private void shrinkAndFadeInFolderIcon(final FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002469 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07002470 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
2471 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
2472 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
2473
Adam Cohen268c4752012-06-06 17:47:33 -07002474 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07002475
Adam Cohen268c4752012-06-06 17:47:33 -07002476 // We remove and re-draw the FolderIcon in-case it has changed
2477 mDragLayer.removeView(mFolderIconImageView);
2478 copyFolderIconToImage(fi);
Michael Jurka2ecf9952012-06-18 12:52:28 -07002479 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07002480 scaleX, scaleY);
Adam Cohen2801caf2011-05-13 20:57:39 -07002481 oa.setDuration(getResources().getInteger(R.integer.config_folderAnimDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07002482 oa.addListener(new AnimatorListenerAdapter() {
2483 @Override
2484 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07002485 if (cl != null) {
2486 cl.clearFolderLeaveBehind();
2487 // Remove the ImageView copy of the FolderIcon and make the original visible.
2488 mDragLayer.removeView(mFolderIconImageView);
2489 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07002490 }
2491 }
2492 });
Adam Cohen2801caf2011-05-13 20:57:39 -07002493 oa.start();
2494 }
2495
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002496 /**
Michael Jurka774bd372010-10-22 13:40:50 -07002497 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002498 * is animated relative to the specified View. If the View is null, no animation
2499 * is played.
2500 *
2501 * @param folderInfo The FolderInfo describing the folder to open.
2502 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07002503 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07002504 Folder folder = folderIcon.getFolder();
Adam Cohena9cf38f2011-05-02 15:36:58 -07002505 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002506
Adam Cohena9cf38f2011-05-02 15:36:58 -07002507 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002508
Adam Cohen4554ee12011-08-03 16:13:21 -07002509 // Just verify that the folder hasn't already been added to the DragLayer.
2510 // There was a one-off crash where the folder had a parent already.
2511 if (folder.getParent() == null) {
2512 mDragLayer.addView(folder);
2513 mDragController.addDropTarget((DropTarget) folder);
2514 } else {
2515 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
2516 folder.getParent() + ").");
2517 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07002518 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07002519 growAndFadeOutFolderIcon(folderIcon);
Winson Chung83ca4802013-04-12 15:10:52 -07002520
2521 // Notify the accessibility manager that this folder "window" has appeared and occluded
2522 // the workspace items
2523 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
2524 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07002525 }
2526
2527 public void closeFolder() {
2528 Folder folder = mWorkspace.getOpenFolder();
2529 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07002530 if (folder.isEditingName()) {
2531 folder.dismissEditingName();
2532 }
Adam Cohen4554ee12011-08-03 16:13:21 -07002533 closeFolder(folder);
Winson Chung7d7541e2011-09-16 20:14:36 -07002534
2535 // Dismiss the folder cling
2536 dismissFolderCling(null);
Adam Cohen4554ee12011-08-03 16:13:21 -07002537 }
2538 }
2539
2540 void closeFolder(Folder folder) {
2541 folder.getInfo().opened = false;
2542
2543 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
2544 if (parent != null) {
2545 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
2546 shrinkAndFadeInFolderIcon(fi);
2547 }
2548 folder.animateClosed();
Winson Chung83ca4802013-04-12 15:10:52 -07002549
2550 // Notify the accessibility manager that this folder "window" has disappeard and no
2551 // longer occludeds the workspace items
2552 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002553 }
2554
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002555 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07002556 if (!isDraggingEnabled()) return false;
2557 if (isWorkspaceLocked()) return false;
2558 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002559
2560 if (!(v instanceof CellLayout)) {
Michael Jurka8c920dd2011-01-20 14:16:56 -08002561 v = (View) v.getParent().getParent();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002562 }
2563
Michael Jurka0280c3b2010-09-17 15:00:07 -07002564 resetAddInfo();
2565 CellLayout.CellInfo longClickCellInfo = (CellLayout.CellInfo) v.getTag();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002566 // This happens when long clicking an item with the dpad/trackball
Adam Cohenfaea1f82011-07-21 16:23:57 -07002567 if (longClickCellInfo == null) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002568 return true;
2569 }
2570
Winson Chung3d503fb2011-07-13 17:25:49 -07002571 // The hotseat touch handling does not go through Workspace, and we always allow long press
2572 // on hotseat items.
Michael Jurka0280c3b2010-09-17 15:00:07 -07002573 final View itemUnderLongClick = longClickCellInfo.cell;
Winson Chung3d503fb2011-07-13 17:25:49 -07002574 boolean allowLongPress = isHotseatLayout(v) || mWorkspace.allowLongPress();
2575 if (allowLongPress && !mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002576 if (itemUnderLongClick == null) {
Winson Chung0e6a7132013-08-23 12:55:10 -07002577 if (mWorkspace.hasNonCustomEmptyScreens()) {
2578 // User long pressed on empty space
2579 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
2580 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
2581 // Disabling reordering until we sort out some issues.
2582 if (mWorkspace.isInOverviewMode()) {
2583 mWorkspace.startReordering(v);
2584 } else {
2585 mWorkspace.enterOverviewMode();
2586 }
Adam Cohendedbd962013-07-11 14:21:49 -07002587 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002588 } else {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002589 if (!(itemUnderLongClick instanceof Folder)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002590 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07002591 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002592 }
2593 }
2594 }
2595 return true;
2596 }
2597
Winson Chung3d503fb2011-07-13 17:25:49 -07002598 boolean isHotseatLayout(View layout) {
2599 return mHotseat != null && layout != null &&
2600 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
2601 }
2602 Hotseat getHotseat() {
2603 return mHotseat;
Romain Guy1fbc1c82009-11-09 20:43:08 -08002604 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07002605 View getOverviewPanel() {
2606 return mOverviewPanel;
2607 }
Adam Cohenebea84d2011-11-09 17:20:41 -08002608 SearchDropTargetBar getSearchBar() {
2609 return mSearchDropTargetBar;
2610 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08002611
Winson Chung3d503fb2011-07-13 17:25:49 -07002612 /**
2613 * Returns the CellLayout of the specified container at the specified screen.
2614 */
Adam Cohendcd297f2013-06-18 13:13:40 -07002615 CellLayout getCellLayout(long container, long screenId) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002616 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
2617 if (mHotseat != null) {
2618 return mHotseat.getLayout();
2619 } else {
2620 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08002621 }
Winson Chung3d503fb2011-07-13 17:25:49 -07002622 } else {
Adam Cohendcd297f2013-06-18 13:13:40 -07002623 return (CellLayout) mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08002624 }
2625 }
2626
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002627 Workspace getWorkspace() {
2628 return mWorkspace;
2629 }
2630
Daniel Sandler843e8602010-06-07 14:59:01 -04002631 public boolean isAllAppsVisible() {
Winson Chungc93e5ae2012-07-23 20:48:26 -07002632 return (mState == State.APPS_CUSTOMIZE) || (mOnResumeState == State.APPS_CUSTOMIZE);
Joe Onoratofb0ca672009-09-14 17:55:46 -04002633 }
2634
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002635 /**
2636 * Helper method for the cameraZoomIn/cameraZoomOut animations
2637 * @param view The view being animated
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002638 * @param scaleFactor The scale factor used for the zoom
2639 */
Michael Jurkab3e22d92011-10-31 15:58:33 -07002640 private void setPivotsForZoom(View view, float scaleFactor) {
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002641 view.setPivotX(view.getWidth() / 2.0f);
Adam Cohen7777d962011-08-18 18:58:38 -07002642 view.setPivotY(view.getHeight() / 2.0f);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002643 }
Daniel Sandlerc351eb82010-03-03 15:05:19 -05002644
Winson Chung18f41f82012-05-09 13:28:10 -07002645 void disableWallpaperIfInAllApps() {
2646 // Only disable it if we are in all apps
Winson Chungc93e5ae2012-07-23 20:48:26 -07002647 if (isAllAppsVisible()) {
Winson Chung18f41f82012-05-09 13:28:10 -07002648 if (mAppsCustomizeTabHost != null &&
2649 !mAppsCustomizeTabHost.isTransitioning()) {
2650 updateWallpaperVisibility(false);
2651 }
2652 }
2653 }
2654
Craig Mautner360310b2012-10-26 15:13:08 -07002655 private void setWorkspaceBackground(boolean workspace) {
2656 mLauncherView.setBackground(workspace ?
Michael Jurka496fefb2013-05-06 15:39:11 +02002657 mWorkspaceBackgroundDrawable : null);
Craig Mautner360310b2012-10-26 15:13:08 -07002658 }
2659
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002660 void updateWallpaperVisibility(boolean visible) {
2661 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
2662 int curflags = getWindow().getAttributes().flags
2663 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
2664 if (wpflags != curflags) {
2665 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
2666 }
Craig Mautner360310b2012-10-26 15:13:08 -07002667 setWorkspaceBackground(visible);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002668 }
2669
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002670 private void dispatchOnLauncherTransitionPrepare(View v, boolean animated, boolean toWorkspace) {
2671 if (v instanceof LauncherTransitionable) {
2672 ((LauncherTransitionable) v).onLauncherTransitionPrepare(this, animated, toWorkspace);
2673 }
2674 }
2675
Michael Jurkabed61d22012-02-14 22:51:29 -08002676 private void dispatchOnLauncherTransitionStart(View v, boolean animated, boolean toWorkspace) {
2677 if (v instanceof LauncherTransitionable) {
2678 ((LauncherTransitionable) v).onLauncherTransitionStart(this, animated, toWorkspace);
2679 }
Winson Chung70442722012-02-10 15:43:22 -08002680
2681 // Update the workspace transition step as well
2682 dispatchOnLauncherTransitionStep(v, 0f);
2683 }
2684
2685 private void dispatchOnLauncherTransitionStep(View v, float t) {
2686 if (v instanceof LauncherTransitionable) {
2687 ((LauncherTransitionable) v).onLauncherTransitionStep(this, t);
2688 }
Michael Jurkabed61d22012-02-14 22:51:29 -08002689 }
2690
2691 private void dispatchOnLauncherTransitionEnd(View v, boolean animated, boolean toWorkspace) {
2692 if (v instanceof LauncherTransitionable) {
2693 ((LauncherTransitionable) v).onLauncherTransitionEnd(this, animated, toWorkspace);
2694 }
Winson Chung70442722012-02-10 15:43:22 -08002695
2696 // Update the workspace transition step as well
2697 dispatchOnLauncherTransitionStep(v, 1f);
Michael Jurkabed61d22012-02-14 22:51:29 -08002698 }
2699
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002700 /**
Michael Jurkab3e22d92011-10-31 15:58:33 -07002701 * Things to test when changing the following seven functions.
2702 * - Home from workspace
2703 * - from center screen
2704 * - from other screens
2705 * - Home from all apps
2706 * - from center screen
2707 * - from other screens
2708 * - Back from all apps
2709 * - from center screen
2710 * - from other screens
2711 * - Launch app from workspace and quit
2712 * - with back
2713 * - with home
2714 * - Launch app from all apps and quit
2715 * - with back
2716 * - with home
2717 * - Go to a screen that's not the default, then all
2718 * apps, and launch and app, and go back
2719 * - with back
2720 * -with home
2721 * - On workspace, long press power and go back
2722 * - with back
2723 * - with home
2724 * - On all apps, long press power and go back
2725 * - with back
2726 * - with home
2727 * - On workspace, power off
2728 * - On all apps, power off
2729 * - Launch an app and turn off the screen while in that app
2730 * - Go back with home key
2731 * - Go back with back key TODO: make this not go to workspace
2732 * - From all apps
2733 * - From workspace
2734 * - Enter and exit car mode (becuase it causes an extra configuration changed)
2735 * - From all apps
2736 * - From the center workspace
2737 * - From another workspace
2738 */
2739
2740 /**
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002741 * Zoom the camera out from the workspace to reveal 'toView'.
2742 * Assumes that the view to show is anchored at either the very top or very bottom
2743 * of the screen.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002744 */
Michael Jurkabed61d22012-02-14 22:51:29 -08002745 private void showAppsCustomizeHelper(final boolean animated, final boolean springLoaded) {
Winson Chungc58497e2013-09-03 17:48:37 -07002746 AppsCustomizePagedView.ContentType contentType = mAppsCustomizeContent.getContentType();
2747 showAppsCustomizeHelper(animated, springLoaded, contentType);
2748 }
2749 private void showAppsCustomizeHelper(final boolean animated, final boolean springLoaded,
2750 final AppsCustomizePagedView.ContentType contentType) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07002751 if (mStateAnimation != null) {
Michael Jurkaf1ad6082013-03-13 12:55:46 +01002752 mStateAnimation.setDuration(0);
Michael Jurkab3e22d92011-10-31 15:58:33 -07002753 mStateAnimation.cancel();
2754 mStateAnimation = null;
2755 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002756 final Resources res = getResources();
Adam Cohenf16e5712011-01-13 13:31:45 -08002757
Winson Chungf0ea4d32011-06-06 14:27:16 -07002758 final int duration = res.getInteger(R.integer.config_appsCustomizeZoomInTime);
2759 final int fadeDuration = res.getInteger(R.integer.config_appsCustomizeFadeInTime);
2760 final float scale = (float) res.getInteger(R.integer.config_appsCustomizeZoomScaleFactor);
Michael Jurkabed61d22012-02-14 22:51:29 -08002761 final View fromView = mWorkspace;
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002762 final AppsCustomizeTabHost toView = mAppsCustomizeTabHost;
Adam Cohencff6af82011-09-13 14:51:53 -07002763 final int startDelay =
2764 res.getInteger(R.integer.config_workspaceAppsCustomizeAnimationStagger);
Patrick Dubroy558654c2010-07-23 16:48:11 -07002765
Michael Jurkab3e22d92011-10-31 15:58:33 -07002766 setPivotsForZoom(toView, scale);
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002767
Michael Jurkad74c9842011-07-10 12:44:21 -07002768 // Shrink workspaces away if going to AppsCustomize from workspace
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002769 Animator workspaceAnim =
2770 mWorkspace.getChangeStateAnimation(Workspace.State.SMALL, animated);
Winson Chungc58497e2013-09-03 17:48:37 -07002771 if (!AppsCustomizePagedView.DISABLE_ALL_APPS) {
2772 // Set the content type for the all apps space
2773 mAppsCustomizeTabHost.setContentTypeImmediate(contentType);
2774 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002775
2776 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08002777 toView.setScaleX(scale);
2778 toView.setScaleY(scale);
2779 final LauncherViewPropertyAnimator scaleAnim = new LauncherViewPropertyAnimator(toView);
2780 scaleAnim.
2781 scaleX(1f).scaleY(1f).
2782 setDuration(duration).
2783 setInterpolator(new Workspace.ZoomOutInterpolator());
Adam Cohen61033d32010-11-15 18:29:44 -08002784
Winson Chungf0ea4d32011-06-06 14:27:16 -07002785 toView.setVisibility(View.VISIBLE);
Adam Cohenc00f0b92011-12-06 19:45:06 -08002786 toView.setAlpha(0f);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01002787 final ObjectAnimator alphaAnim = LauncherAnimUtils
Michael Jurka159b4cc2012-01-17 03:00:35 -08002788 .ofFloat(toView, "alpha", 0f, 1f)
2789 .setDuration(fadeDuration);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002790 alphaAnim.setInterpolator(new DecelerateInterpolator(1.5f));
Winson Chung70442722012-02-10 15:43:22 -08002791 alphaAnim.addUpdateListener(new AnimatorUpdateListener() {
2792 @Override
2793 public void onAnimationUpdate(ValueAnimator animation) {
Michael Jurka059798a2012-09-04 09:20:16 -07002794 if (animation == null) {
2795 throw new RuntimeException("animation is null");
2796 }
Winson Chung70442722012-02-10 15:43:22 -08002797 float t = (Float) animation.getAnimatedValue();
2798 dispatchOnLauncherTransitionStep(fromView, t);
2799 dispatchOnLauncherTransitionStep(toView, t);
2800 }
2801 });
Adam Cohenf16e5712011-01-13 13:31:45 -08002802
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002803 // toView should appear right at the end of the workspace shrink
2804 // animation
Michael Jurka2ecf9952012-06-18 12:52:28 -07002805 mStateAnimation = LauncherAnimUtils.createAnimatorSet();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002806 mStateAnimation.play(scaleAnim).after(startDelay);
Michael Jurka7407d2a2011-12-12 21:48:38 -08002807 mStateAnimation.play(alphaAnim).after(startDelay);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002808
2809 mStateAnimation.addListener(new AnimatorListenerAdapter() {
Adam Cohenf4ddea32011-09-12 13:46:42 -07002810 boolean animationCancelled = false;
2811
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002812 @Override
Chet Haaseb1254a62010-09-07 13:35:00 -07002813 public void onAnimationStart(Animator animation) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002814 updateWallpaperVisibility(true);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002815 // Prepare the position
2816 toView.setTranslationX(0.0f);
2817 toView.setTranslationY(0.0f);
2818 toView.setVisibility(View.VISIBLE);
Winson Chung785d2eb2011-04-14 16:08:02 -07002819 toView.bringToFront();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002820 }
Michael Jurka3c4c20f2010-10-28 15:36:06 -07002821 @Override
Michael Jurka8edd75c2010-12-17 20:15:06 -08002822 public void onAnimationEnd(Animator animation) {
Michael Jurkabed61d22012-02-14 22:51:29 -08002823 dispatchOnLauncherTransitionEnd(fromView, animated, false);
2824 dispatchOnLauncherTransitionEnd(toView, animated, false);
Winson Chung32174c82011-07-19 15:47:55 -07002825
Adam Cohenf4ddea32011-09-12 13:46:42 -07002826 if (!animationCancelled) {
2827 updateWallpaperVisibility(false);
2828 }
Winson Chungc7d2b602012-05-16 17:02:20 -07002829
2830 // Hide the search bar
Winson Chungadf0c182012-08-23 14:59:07 -07002831 if (mSearchDropTargetBar != null) {
2832 mSearchDropTargetBar.hideSearchBar(false);
2833 }
Adam Cohenf4ddea32011-09-12 13:46:42 -07002834 }
2835
Adam Cohencff6af82011-09-13 14:51:53 -07002836 @Override
Adam Cohenf4ddea32011-09-12 13:46:42 -07002837 public void onAnimationCancel(Animator animation) {
2838 animationCancelled = true;
Michael Jurka3c4c20f2010-10-28 15:36:06 -07002839 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002840 });
2841
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002842 if (workspaceAnim != null) {
2843 mStateAnimation.play(workspaceAnim);
2844 }
Michael Jurka1899a362011-11-03 13:50:45 -07002845
2846 boolean delayAnim = false;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002847
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002848 dispatchOnLauncherTransitionPrepare(fromView, animated, false);
2849 dispatchOnLauncherTransitionPrepare(toView, animated, false);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002850
2851 // If any of the objects being animated haven't been measured/laid out
2852 // yet, delay the animation until we get a layout pass
Michael Jurkabed61d22012-02-14 22:51:29 -08002853 if ((((LauncherTransitionable) toView).getContent().getMeasuredWidth() == 0) ||
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002854 (mWorkspace.getMeasuredWidth() == 0) ||
2855 (toView.getMeasuredWidth() == 0)) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002856 delayAnim = true;
Michael Jurka1899a362011-11-03 13:50:45 -07002857 }
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002858
Michael Jurka3dcd79e2012-05-31 07:50:33 -07002859 final AnimatorSet stateAnimation = mStateAnimation;
2860 final Runnable startAnimRunnable = new Runnable() {
2861 public void run() {
2862 // Check that mStateAnimation hasn't changed while
2863 // we waited for a layout/draw pass
2864 if (mStateAnimation != stateAnimation)
2865 return;
2866 setPivotsForZoom(toView, scale);
2867 dispatchOnLauncherTransitionStart(fromView, animated, false);
2868 dispatchOnLauncherTransitionStart(toView, animated, false);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01002869 LauncherAnimUtils.startAnimationAfterNextDraw(mStateAnimation, toView);
Michael Jurka3dcd79e2012-05-31 07:50:33 -07002870 }
2871 };
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002872 if (delayAnim) {
Michael Jurkaf1ad6082013-03-13 12:55:46 +01002873 final ViewTreeObserver observer = toView.getViewTreeObserver();
2874 observer.addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
2875 public void onGlobalLayout() {
2876 startAnimRunnable.run();
2877 toView.getViewTreeObserver().removeOnGlobalLayoutListener(this);
2878 }
2879 });
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002880 } else {
Michael Jurka3dcd79e2012-05-31 07:50:33 -07002881 startAnimRunnable.run();
Michael Jurka1899a362011-11-03 13:50:45 -07002882 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002883 } else {
2884 toView.setTranslationX(0.0f);
2885 toView.setTranslationY(0.0f);
2886 toView.setScaleX(1.0f);
2887 toView.setScaleY(1.0f);
2888 toView.setVisibility(View.VISIBLE);
Winson Chung785d2eb2011-04-14 16:08:02 -07002889 toView.bringToFront();
Winson Chung3ac74c52011-06-30 17:39:37 -07002890
Daniel Sandlere4f98912013-06-25 15:13:26 -04002891 if (!springLoaded && !LauncherAppState.getInstance().isScreenLarge()) {
Winson Chungc7d2b602012-05-16 17:02:20 -07002892 // Hide the search bar
Winson Chungadf0c182012-08-23 14:59:07 -07002893 if (mSearchDropTargetBar != null) {
2894 mSearchDropTargetBar.hideSearchBar(false);
2895 }
Michael Jurkaabded662011-03-04 12:06:57 -08002896 }
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002897 dispatchOnLauncherTransitionPrepare(fromView, animated, false);
Michael Jurkabed61d22012-02-14 22:51:29 -08002898 dispatchOnLauncherTransitionStart(fromView, animated, false);
2899 dispatchOnLauncherTransitionEnd(fromView, animated, false);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002900 dispatchOnLauncherTransitionPrepare(toView, animated, false);
Michael Jurkabed61d22012-02-14 22:51:29 -08002901 dispatchOnLauncherTransitionStart(toView, animated, false);
2902 dispatchOnLauncherTransitionEnd(toView, animated, false);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002903 updateWallpaperVisibility(false);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002904 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002905 }
2906
2907 /**
2908 * Zoom the camera back into the workspace, hiding 'fromView'.
Michael Jurkab3e22d92011-10-31 15:58:33 -07002909 * This is the opposite of showAppsCustomizeHelper.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07002910 * @param animated If true, the transition will be animated.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002911 */
Adam Cohened66b2b2012-01-23 17:28:51 -08002912 private void hideAppsCustomizeHelper(State toState, final boolean animated,
2913 final boolean springLoaded, final Runnable onCompleteRunnable) {
Michael Jurkabed61d22012-02-14 22:51:29 -08002914
Michael Jurkab3e22d92011-10-31 15:58:33 -07002915 if (mStateAnimation != null) {
Michael Jurkaf1ad6082013-03-13 12:55:46 +01002916 mStateAnimation.setDuration(0);
Michael Jurkab3e22d92011-10-31 15:58:33 -07002917 mStateAnimation.cancel();
2918 mStateAnimation = null;
2919 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07002920 Resources res = getResources();
Adam Cohenf16e5712011-01-13 13:31:45 -08002921
Winson Chungf0ea4d32011-06-06 14:27:16 -07002922 final int duration = res.getInteger(R.integer.config_appsCustomizeZoomOutTime);
Michael Jurka159b4cc2012-01-17 03:00:35 -08002923 final int fadeOutDuration =
2924 res.getInteger(R.integer.config_appsCustomizeFadeOutTime);
Winson Chungf0ea4d32011-06-06 14:27:16 -07002925 final float scaleFactor = (float)
2926 res.getInteger(R.integer.config_appsCustomizeZoomScaleFactor);
2927 final View fromView = mAppsCustomizeTabHost;
Michael Jurkabed61d22012-02-14 22:51:29 -08002928 final View toView = mWorkspace;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002929 Animator workspaceAnim = null;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002930 if (toState == State.WORKSPACE) {
2931 int stagger = res.getInteger(R.integer.config_appsCustomizeWorkspaceAnimationStagger);
2932 workspaceAnim = mWorkspace.getChangeStateAnimation(
Adam Cohenf358a4b2013-07-23 16:47:31 -07002933 Workspace.State.NORMAL, animated, stagger, -1);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002934 } else if (toState == State.APPS_CUSTOMIZE_SPRING_LOADED) {
2935 workspaceAnim = mWorkspace.getChangeStateAnimation(
2936 Workspace.State.SPRING_LOADED, animated);
2937 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07002938
Michael Jurkab3e22d92011-10-31 15:58:33 -07002939 setPivotsForZoom(fromView, scaleFactor);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002940 updateWallpaperVisibility(true);
Winson Chung4afe9b32011-07-27 17:46:20 -07002941 showHotseat(animated);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002942 if (animated) {
Michael Jurka159b4cc2012-01-17 03:00:35 -08002943 final LauncherViewPropertyAnimator scaleAnim =
2944 new LauncherViewPropertyAnimator(fromView);
2945 scaleAnim.
2946 scaleX(scaleFactor).scaleY(scaleFactor).
2947 setDuration(duration).
2948 setInterpolator(new Workspace.ZoomInInterpolator());
2949
Michael Jurkaf1ad6082013-03-13 12:55:46 +01002950 final ObjectAnimator alphaAnim = LauncherAnimUtils
Michael Jurka159b4cc2012-01-17 03:00:35 -08002951 .ofFloat(fromView, "alpha", 1f, 0f)
2952 .setDuration(fadeOutDuration);
Adam Cohencff6af82011-09-13 14:51:53 -07002953 alphaAnim.setInterpolator(new AccelerateDecelerateInterpolator());
Winson Chung70442722012-02-10 15:43:22 -08002954 alphaAnim.addUpdateListener(new AnimatorUpdateListener() {
2955 @Override
2956 public void onAnimationUpdate(ValueAnimator animation) {
2957 float t = 1f - (Float) animation.getAnimatedValue();
2958 dispatchOnLauncherTransitionStep(fromView, t);
2959 dispatchOnLauncherTransitionStep(toView, t);
2960 }
2961 });
Michael Jurka159b4cc2012-01-17 03:00:35 -08002962
Michael Jurka2ecf9952012-06-18 12:52:28 -07002963 mStateAnimation = LauncherAnimUtils.createAnimatorSet();
Michael Jurkabed61d22012-02-14 22:51:29 -08002964
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002965 dispatchOnLauncherTransitionPrepare(fromView, animated, true);
2966 dispatchOnLauncherTransitionPrepare(toView, animated, true);
Chet Haasebc2f0822012-10-26 17:59:53 -07002967 mAppsCustomizeContent.pauseScrolling();
Michael Jurkabed61d22012-02-14 22:51:29 -08002968
2969 mStateAnimation.addListener(new AnimatorListenerAdapter() {
Gilles Debunnedd6c9922010-10-25 11:23:41 -07002970 @Override
Michael Jurka8edd75c2010-12-17 20:15:06 -08002971 public void onAnimationEnd(Animator animation) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07002972 updateWallpaperVisibility(true);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002973 fromView.setVisibility(View.GONE);
Michael Jurkabed61d22012-02-14 22:51:29 -08002974 dispatchOnLauncherTransitionEnd(fromView, animated, true);
2975 dispatchOnLauncherTransitionEnd(toView, animated, true);
Adam Cohened66b2b2012-01-23 17:28:51 -08002976 if (onCompleteRunnable != null) {
2977 onCompleteRunnable.run();
2978 }
Chet Haasebc2f0822012-10-26 17:59:53 -07002979 mAppsCustomizeContent.updateCurrentPageScroll();
2980 mAppsCustomizeContent.resumeScrolling();
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002981 }
2982 });
2983
Winson Chungf0ea4d32011-06-06 14:27:16 -07002984 mStateAnimation.playTogether(scaleAnim, alphaAnim);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08002985 if (workspaceAnim != null) {
2986 mStateAnimation.play(workspaceAnim);
2987 }
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002988 dispatchOnLauncherTransitionStart(fromView, animated, true);
2989 dispatchOnLauncherTransitionStart(toView, animated, true);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01002990 LauncherAnimUtils.startAnimationAfterNextDraw(mStateAnimation, toView);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002991 } else {
2992 fromView.setVisibility(View.GONE);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002993 dispatchOnLauncherTransitionPrepare(fromView, animated, true);
Michael Jurkabed61d22012-02-14 22:51:29 -08002994 dispatchOnLauncherTransitionStart(fromView, animated, true);
2995 dispatchOnLauncherTransitionEnd(fromView, animated, true);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07002996 dispatchOnLauncherTransitionPrepare(toView, animated, true);
Michael Jurkabed61d22012-02-14 22:51:29 -08002997 dispatchOnLauncherTransitionStart(toView, animated, true);
2998 dispatchOnLauncherTransitionEnd(toView, animated, true);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07002999 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003000 }
3001
Michael Jurkae326f182011-11-21 14:05:46 -08003002 @Override
3003 public void onTrimMemory(int level) {
3004 super.onTrimMemory(level);
Winson Chungc7450e32012-04-17 17:34:08 -07003005 if (level >= ComponentCallbacks2.TRIM_MEMORY_MODERATE) {
Michael Jurkae326f182011-11-21 14:05:46 -08003006 mAppsCustomizeTabHost.onTrimMemory();
3007 }
3008 }
3009
Winson Chung18f41f82012-05-09 13:28:10 -07003010 @Override
3011 public void onWindowFocusChanged(boolean hasFocus) {
3012 if (!hasFocus) {
3013 // When another window occludes launcher (like the notification shade, or recents),
3014 // ensure that we enable the wallpaper flag so that transitions are done correctly.
3015 updateWallpaperVisibility(true);
3016 } else {
3017 // When launcher has focus again, disable the wallpaper if we are in AllApps
Winson Chung6cf79092012-06-07 14:50:10 -07003018 mWorkspace.postDelayed(new Runnable() {
3019 @Override
3020 public void run() {
3021 disableWallpaperIfInAllApps();
3022 }
3023 }, 500);
Winson Chung18f41f82012-05-09 13:28:10 -07003024 }
3025 }
3026
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003027 void showWorkspace(boolean animated) {
Adam Cohened66b2b2012-01-23 17:28:51 -08003028 showWorkspace(animated, null);
3029 }
3030
3031 void showWorkspace(boolean animated, Runnable onCompleteRunnable) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003032 if (mState != State.WORKSPACE) {
Winson Chungc7d2b602012-05-16 17:02:20 -07003033 boolean wasInSpringLoadedMode = (mState == State.APPS_CUSTOMIZE_SPRING_LOADED);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003034 mWorkspace.setVisibility(View.VISIBLE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003035 hideAppsCustomizeHelper(State.WORKSPACE, animated, false, onCompleteRunnable);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003036
Winson Chungc7d2b602012-05-16 17:02:20 -07003037 // Show the search bar (only animate if we were showing the drop target bar in spring
3038 // loaded mode)
Winson Chungadf0c182012-08-23 14:59:07 -07003039 if (mSearchDropTargetBar != null) {
3040 mSearchDropTargetBar.showSearchBar(wasInSpringLoadedMode);
3041 }
Winson Chungc7d2b602012-05-16 17:02:20 -07003042
Michael Jurkab3e22d92011-10-31 15:58:33 -07003043 // Set focus to the AppsCustomize button
3044 if (mAllAppsButton != null) {
3045 mAllAppsButton.requestFocus();
3046 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003047 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07003048
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003049 // Change the state *after* we've called all the transition code
3050 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08003051
Winson Chung5fb63472011-02-02 17:03:37 -08003052 // Resume the auto-advance of widgets
3053 mUserPresent = true;
3054 updateRunning();
3055
alanv1d4fde62012-10-17 13:15:47 -07003056 // Send an accessibility event to announce the context change
3057 getWindow().getDecorView()
3058 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Bjorn Bringertc459e522013-06-07 19:36:01 +01003059
Bjorn Bringert69688aa2013-06-11 20:26:38 +01003060 onWorkspaceShown(animated);
Bjorn Bringertc459e522013-06-07 19:36:01 +01003061 }
3062
Bjorn Bringert69688aa2013-06-11 20:26:38 +01003063 public void onWorkspaceShown(boolean animated) {
Joe Onorato00acb122009-08-04 16:04:30 -04003064 }
3065
Winson Chungc58497e2013-09-03 17:48:37 -07003066 void showAllApps(boolean animated,
3067 AppsCustomizePagedView.ContentType contentType) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003068 if (mState != State.WORKSPACE) return;
3069
Winson Chungc58497e2013-09-03 17:48:37 -07003070 showAppsCustomizeHelper(animated, false, contentType);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003071 mAppsCustomizeTabHost.requestFocus();
3072
Michael Jurkab3e22d92011-10-31 15:58:33 -07003073 // Change the state *after* we've called all the transition code
3074 mState = State.APPS_CUSTOMIZE;
3075
3076 // Pause the auto-advance of widgets until we are out of AllApps
3077 mUserPresent = false;
3078 updateRunning();
3079 closeFolder();
3080
3081 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07003082 getWindow().getDecorView()
3083 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003084 }
3085
Adam Cohen7777d962011-08-18 18:58:38 -07003086 void enterSpringLoadedDragMode() {
Winson Chungc93e5ae2012-07-23 20:48:26 -07003087 if (isAllAppsVisible()) {
Adam Cohened66b2b2012-01-23 17:28:51 -08003088 hideAppsCustomizeHelper(State.APPS_CUSTOMIZE_SPRING_LOADED, true, true, null);
Winson Chungc07918d2011-07-01 15:35:26 -07003089 mState = State.APPS_CUSTOMIZE_SPRING_LOADED;
Winson Chungb26f3d62011-06-02 10:49:29 -07003090 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08003091 }
Adam Cohen7777d962011-08-18 18:58:38 -07003092
Adam Cohened66b2b2012-01-23 17:28:51 -08003093 void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, boolean extendedDelay,
3094 final Runnable onCompleteRunnable) {
Winson Chung09bfc452011-09-09 11:30:20 -07003095 if (mState != State.APPS_CUSTOMIZE_SPRING_LOADED) return;
3096
Winson Chunge7a03942011-08-05 15:05:12 -07003097 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07003098 @Override
3099 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003100 if (successfulDrop) {
Michael Jurka7bdb25a2011-08-03 15:16:44 -07003101 // Before we show workspace, hide all apps again because
3102 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
3103 // clean up our state transition functions
3104 mAppsCustomizeTabHost.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003105 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07003106 } else {
3107 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003108 }
Winson Chung557d6ed2011-07-08 15:34:52 -07003109 }
3110 }, (extendedDelay ?
3111 EXIT_SPRINGLOADED_MODE_LONG_TIMEOUT :
3112 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT));
3113 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003114
Michael Jurkad3ef3062010-11-23 16:23:58 -08003115 void exitSpringLoadedDragMode() {
Winson Chungb26f3d62011-06-02 10:49:29 -07003116 if (mState == State.APPS_CUSTOMIZE_SPRING_LOADED) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003117 final boolean animated = true;
3118 final boolean springLoaded = true;
3119 showAppsCustomizeHelper(animated, springLoaded);
Winson Chungb26f3d62011-06-02 10:49:29 -07003120 mState = State.APPS_CUSTOMIZE;
Winson Chungf0ea4d32011-06-06 14:27:16 -07003121 }
3122 // Otherwise, we are not in spring loaded mode, so don't do anything.
3123 }
3124
Michael Jurkab3e22d92011-10-31 15:58:33 -07003125 void lockAllApps() {
3126 // TODO
3127 }
3128
3129 void unlockAllApps() {
3130 // TODO
3131 }
3132
Winson Chungf0ea4d32011-06-06 14:27:16 -07003133 /**
Winson Chung3d503fb2011-07-13 17:25:49 -07003134 * Shows the hotseat area.
Winson Chungf0ea4d32011-06-06 14:27:16 -07003135 */
Winson Chung3d503fb2011-07-13 17:25:49 -07003136 void showHotseat(boolean animated) {
Daniel Sandlere4f98912013-06-25 15:13:26 -04003137 if (!LauncherAppState.getInstance().isScreenLarge()) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07003138 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08003139 if (mHotseat.getAlpha() != 1f) {
Winson Chungadf0c182012-08-23 14:59:07 -07003140 int duration = 0;
3141 if (mSearchDropTargetBar != null) {
3142 duration = mSearchDropTargetBar.getTransitionInDuration();
3143 }
Michael Jurka7407d2a2011-12-12 21:48:38 -08003144 mHotseat.animate().alpha(1f).setDuration(duration);
3145 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003146 } else {
Winson Chung3d503fb2011-07-13 17:25:49 -07003147 mHotseat.setAlpha(1f);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003148 }
3149 }
3150 }
3151
3152 /**
Winson Chung3d503fb2011-07-13 17:25:49 -07003153 * Hides the hotseat area.
Winson Chungf0ea4d32011-06-06 14:27:16 -07003154 */
Winson Chung3d503fb2011-07-13 17:25:49 -07003155 void hideHotseat(boolean animated) {
Daniel Sandlere4f98912013-06-25 15:13:26 -04003156 if (!LauncherAppState.getInstance().isScreenLarge()) {
Winson Chungf0ea4d32011-06-06 14:27:16 -07003157 if (animated) {
Michael Jurka7407d2a2011-12-12 21:48:38 -08003158 if (mHotseat.getAlpha() != 0f) {
Winson Chungadf0c182012-08-23 14:59:07 -07003159 int duration = 0;
3160 if (mSearchDropTargetBar != null) {
3161 duration = mSearchDropTargetBar.getTransitionOutDuration();
3162 }
Michael Jurka7407d2a2011-12-12 21:48:38 -08003163 mHotseat.animate().alpha(0f).setDuration(duration);
3164 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003165 } else {
Winson Chung3d503fb2011-07-13 17:25:49 -07003166 mHotseat.setAlpha(0f);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003167 }
Winson Chungb26f3d62011-06-02 10:49:29 -07003168 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08003169 }
3170
Patrick Dubroy5f445422011-02-18 14:35:21 -08003171 /**
3172 * Add an item from all apps or customize onto the given workspace screen.
3173 * If layout is null, add to the current screen.
3174 */
3175 void addExternalItemToScreen(ItemInfo itemInfo, final CellLayout layout) {
Michael Jurka6b4b25d2010-10-20 18:19:45 -07003176 if (!mWorkspace.addExternalItemToScreen(itemInfo, layout)) {
Winson Chung93eef082012-03-23 15:59:27 -07003177 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka213d9632010-07-28 11:29:25 -07003178 }
Michael Jurka6b4b25d2010-10-20 18:19:45 -07003179 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07003180
Winson Chungdff8ebb2011-09-08 17:25:31 -07003181 /** Maps the current orientation to an index for referencing orientation correct global icons */
3182 private int getCurrentOrientationIndexForGlobalIcons() {
3183 // default - 0, landscape - 1
3184 switch (getResources().getConfiguration().orientation) {
3185 case Configuration.ORIENTATION_LANDSCAPE:
3186 return 1;
3187 default:
3188 return 0;
3189 }
3190 }
3191
Michael Jurkaae65ee32012-04-30 11:45:54 -07003192 private Drawable getExternalPackageToolbarIcon(ComponentName activityName, String resourceName) {
Michael Jurka0423dcf2010-10-05 14:56:18 -07003193 try {
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003194 PackageManager packageManager = getPackageManager();
Michael Jurka0423dcf2010-10-05 14:56:18 -07003195 // Look for the toolbar icon specified in the activity meta-data
3196 Bundle metaData = packageManager.getActivityInfo(
3197 activityName, PackageManager.GET_META_DATA).metaData;
3198 if (metaData != null) {
Michael Jurkaae65ee32012-04-30 11:45:54 -07003199 int iconResId = metaData.getInt(resourceName);
Michael Jurka0423dcf2010-10-05 14:56:18 -07003200 if (iconResId != 0) {
3201 Resources res = packageManager.getResourcesForActivity(activityName);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003202 return res.getDrawable(iconResId);
Michael Jurka0423dcf2010-10-05 14:56:18 -07003203 }
3204 }
3205 } catch (NameNotFoundException e) {
Michael Jurkab6052a92011-07-12 17:02:45 -07003206 // This can happen if the activity defines an invalid drawable
3207 Log.w(TAG, "Failed to load toolbar icon; " + activityName.flattenToShortString() +
3208 " not found", e);
Mathew Inwood70d51022011-07-12 13:41:41 +01003209 } catch (Resources.NotFoundException nfe) {
3210 // This can happen if the activity defines an invalid drawable
3211 Log.w(TAG, "Failed to load toolbar icon from " + activityName.flattenToShortString(),
3212 nfe);
Michael Jurka0423dcf2010-10-05 14:56:18 -07003213 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003214 return null;
3215 }
3216
3217 // if successful in getting icon, return it; otherwise, set button to use default drawable
3218 private Drawable.ConstantState updateTextButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003219 int buttonId, ComponentName activityName, int fallbackDrawableId,
3220 String toolbarResourceName) {
3221 Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName, toolbarResourceName);
Winson Chung128bbcd2011-08-31 16:58:52 -07003222 Resources r = getResources();
3223 int w = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_width);
3224 int h = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_height);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003225
Michael Jurka4da7a3e2011-10-28 15:04:35 -07003226 TextView button = (TextView) findViewById(buttonId);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003227 // If we were unable to find the icon via the meta-data, use a generic one
3228 if (toolbarIcon == null) {
Winson Chung128bbcd2011-08-31 16:58:52 -07003229 toolbarIcon = r.getDrawable(fallbackDrawableId);
3230 toolbarIcon.setBounds(0, 0, w, h);
Michael Jurka4da7a3e2011-10-28 15:04:35 -07003231 if (button != null) {
3232 button.setCompoundDrawables(toolbarIcon, null, null, null);
3233 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003234 return null;
3235 } else {
Winson Chung128bbcd2011-08-31 16:58:52 -07003236 toolbarIcon.setBounds(0, 0, w, h);
Michael Jurka4da7a3e2011-10-28 15:04:35 -07003237 if (button != null) {
3238 button.setCompoundDrawables(toolbarIcon, null, null, null);
3239 }
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003240 return toolbarIcon.getConstantState();
3241 }
3242 }
3243
3244 // if successful in getting icon, return it; otherwise, set button to use default drawable
3245 private Drawable.ConstantState updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003246 int buttonId, ComponentName activityName, int fallbackDrawableId,
3247 String toolbarResourceName) {
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003248 ImageView button = (ImageView) findViewById(buttonId);
Michael Jurkaae65ee32012-04-30 11:45:54 -07003249 Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName, toolbarResourceName);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003250
Michael Jurka19e0fc52011-07-22 18:00:21 -07003251 if (button != null) {
3252 // If we were unable to find the icon via the meta-data, use a
3253 // generic one
3254 if (toolbarIcon == null) {
3255 button.setImageResource(fallbackDrawableId);
3256 } else {
3257 button.setImageDrawable(toolbarIcon);
3258 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07003259 }
Michael Jurka19e0fc52011-07-22 18:00:21 -07003260
3261 return toolbarIcon != null ? toolbarIcon.getConstantState() : null;
3262
Michael Jurka0423dcf2010-10-05 14:56:18 -07003263 }
3264
Winson Chung1b884092012-06-08 17:13:02 -07003265 private void updateTextButtonWithDrawable(int buttonId, Drawable d) {
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003266 TextView button = (TextView) findViewById(buttonId);
Winson Chung1b884092012-06-08 17:13:02 -07003267 button.setCompoundDrawables(d, null, null, null);
Winson Chungfbb3d9b2011-03-01 12:43:02 -08003268 }
3269
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003270 private void updateButtonWithDrawable(int buttonId, Drawable.ConstantState d) {
Michael Jurka4ef207b2010-11-29 17:05:45 -08003271 ImageView button = (ImageView) findViewById(buttonId);
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003272 button.setImageDrawable(d.newDrawable(getResources()));
Michael Jurka4ef207b2010-11-29 17:05:45 -08003273 }
3274
Winson Chungbb185bd2011-11-21 12:31:42 -08003275 private void invalidatePressedFocusedStates(View container, View button) {
3276 if (container instanceof HolographicLinearLayout) {
3277 HolographicLinearLayout layout = (HolographicLinearLayout) container;
3278 layout.invalidatePressedFocusedStates();
3279 } else if (button instanceof HolographicImageView) {
3280 HolographicImageView view = (HolographicImageView) button;
3281 view.invalidatePressedFocusedStates();
3282 }
3283 }
3284
Cristina Stancu476493b2013-08-07 17:20:14 +01003285 public View getQsbBar() {
3286 if (mQsbBar == null) {
3287 mQsbBar = mInflater.inflate(R.layout.qsb_bar, mSearchDropTargetBar);
3288 }
3289 return mQsbBar;
3290 }
3291
3292 protected boolean updateGlobalSearchIcon() {
Winson Chungc51db6a2011-10-05 11:44:49 -07003293 final View searchButtonContainer = findViewById(R.id.search_button_container);
Winson Chung1cad91e2011-05-25 17:41:01 -07003294 final ImageView searchButton = (ImageView) findViewById(R.id.search_button);
Winson Chungc51db6a2011-10-05 11:44:49 -07003295 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
Winson Chungcbf7c4d2011-08-23 11:58:54 -07003296 final View voiceButton = findViewById(R.id.voice_button);
Winson Chung97d85d22011-04-13 11:27:36 -07003297
Winson Chung1cad91e2011-05-25 17:41:01 -07003298 final SearchManager searchManager =
3299 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
3300 ComponentName activityName = searchManager.getGlobalSearchActivity();
3301 if (activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07003302 int coi = getCurrentOrientationIndexForGlobalIcons();
3303 sGlobalSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003304 R.id.search_button, activityName, R.drawable.ic_home_search_normal_holo,
3305 TOOLBAR_SEARCH_ICON_METADATA_NAME);
3306 if (sGlobalSearchIcon[coi] == null) {
3307 sGlobalSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
3308 R.id.search_button, activityName, R.drawable.ic_home_search_normal_holo,
3309 TOOLBAR_ICON_METADATA_NAME);
3310 }
3311
Winson Chungc51db6a2011-10-05 11:44:49 -07003312 if (searchButtonContainer != null) searchButtonContainer.setVisibility(View.VISIBLE);
3313 searchButton.setVisibility(View.VISIBLE);
Winson Chungbb185bd2011-11-21 12:31:42 -08003314 invalidatePressedFocusedStates(searchButtonContainer, searchButton);
Winson Chungc51db6a2011-10-05 11:44:49 -07003315 return true;
Winson Chung1cad91e2011-05-25 17:41:01 -07003316 } else {
Winson Chungcbf7c4d2011-08-23 11:58:54 -07003317 // We disable both search and voice search when there is no global search provider
Winson Chungc51db6a2011-10-05 11:44:49 -07003318 if (searchButtonContainer != null) searchButtonContainer.setVisibility(View.GONE);
3319 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.GONE);
3320 searchButton.setVisibility(View.GONE);
Winson Chungcbf7c4d2011-08-23 11:58:54 -07003321 voiceButton.setVisibility(View.GONE);
Bjorn Bringertecf33e42013-06-11 15:46:07 +01003322 setVoiceButtonProxyVisible(false);
Winson Chungc51db6a2011-10-05 11:44:49 -07003323 return false;
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003324 }
3325 }
3326
Cristina Stancu476493b2013-08-07 17:20:14 +01003327 protected void updateGlobalSearchIcon(Drawable.ConstantState d) {
Winson Chungbb185bd2011-11-21 12:31:42 -08003328 final View searchButtonContainer = findViewById(R.id.search_button_container);
3329 final View searchButton = (ImageView) findViewById(R.id.search_button);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003330 updateButtonWithDrawable(R.id.search_button, d);
Winson Chungbb185bd2011-11-21 12:31:42 -08003331 invalidatePressedFocusedStates(searchButtonContainer, searchButton);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003332 }
3333
Cristina Stancu476493b2013-08-07 17:20:14 +01003334 protected boolean updateVoiceSearchIcon(boolean searchVisible) {
Winson Chungc51db6a2011-10-05 11:44:49 -07003335 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
Winson Chung1cad91e2011-05-25 17:41:01 -07003336 final View voiceButton = findViewById(R.id.voice_button);
Winson Chung97d85d22011-04-13 11:27:36 -07003337
Winson Chungc51db6a2011-10-05 11:44:49 -07003338 // We only show/update the voice search icon if the search icon is enabled as well
Michael Jurkaae65ee32012-04-30 11:45:54 -07003339 final SearchManager searchManager =
3340 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
3341 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
3342
3343 ComponentName activityName = null;
3344 if (globalSearchActivity != null) {
3345 // Check if the global search activity handles voice search
3346 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
3347 intent.setPackage(globalSearchActivity.getPackageName());
3348 activityName = intent.resolveActivity(getPackageManager());
3349 }
3350
3351 if (activityName == null) {
3352 // Fallback: check if an activity other than the global search activity
3353 // resolves this
3354 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
3355 activityName = intent.resolveActivity(getPackageManager());
3356 }
Winson Chungc51db6a2011-10-05 11:44:49 -07003357 if (searchVisible && activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07003358 int coi = getCurrentOrientationIndexForGlobalIcons();
3359 sVoiceSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003360 R.id.voice_button, activityName, R.drawable.ic_home_voice_search_holo,
3361 TOOLBAR_VOICE_SEARCH_ICON_METADATA_NAME);
3362 if (sVoiceSearchIcon[coi] == null) {
3363 sVoiceSearchIcon[coi] = updateButtonWithIconFromExternalActivity(
3364 R.id.voice_button, activityName, R.drawable.ic_home_voice_search_holo,
3365 TOOLBAR_ICON_METADATA_NAME);
3366 }
Winson Chungc51db6a2011-10-05 11:44:49 -07003367 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.VISIBLE);
Winson Chung1cad91e2011-05-25 17:41:01 -07003368 voiceButton.setVisibility(View.VISIBLE);
Bjorn Bringertecf33e42013-06-11 15:46:07 +01003369 setVoiceButtonProxyVisible(true);
Winson Chungbb185bd2011-11-21 12:31:42 -08003370 invalidatePressedFocusedStates(voiceButtonContainer, voiceButton);
Winson Chungc51db6a2011-10-05 11:44:49 -07003371 return true;
Winson Chung1cad91e2011-05-25 17:41:01 -07003372 } else {
Winson Chungc51db6a2011-10-05 11:44:49 -07003373 if (voiceButtonContainer != null) voiceButtonContainer.setVisibility(View.GONE);
Winson Chung1cad91e2011-05-25 17:41:01 -07003374 voiceButton.setVisibility(View.GONE);
Bjorn Bringertecf33e42013-06-11 15:46:07 +01003375 setVoiceButtonProxyVisible(false);
Winson Chungc51db6a2011-10-05 11:44:49 -07003376 return false;
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003377 }
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003378 }
Michael Jurka0423dcf2010-10-05 14:56:18 -07003379
Cristina Stancu476493b2013-08-07 17:20:14 +01003380 protected void updateVoiceSearchIcon(Drawable.ConstantState d) {
Winson Chungbb185bd2011-11-21 12:31:42 -08003381 final View voiceButtonContainer = findViewById(R.id.voice_button_container);
3382 final View voiceButton = findViewById(R.id.voice_button);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003383 updateButtonWithDrawable(R.id.voice_button, d);
Winson Chungbb185bd2011-11-21 12:31:42 -08003384 invalidatePressedFocusedStates(voiceButtonContainer, voiceButton);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003385 }
3386
Bjorn Bringertecf33e42013-06-11 15:46:07 +01003387 public void setVoiceButtonProxyVisible(boolean visible) {
3388 final View voiceButtonProxy = findViewById(R.id.voice_button_proxy);
3389 if (voiceButtonProxy != null) {
3390 voiceButtonProxy.setVisibility(visible ? View.VISIBLE : View.GONE);
3391 }
3392 }
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003393 /**
Winson Chungeb66b142011-06-16 13:14:22 -07003394 * Sets the app market icon
Michael Jurka6ae0fcf2010-10-01 12:23:12 -07003395 */
3396 private void updateAppMarketIcon() {
Winson Chung785d2eb2011-04-14 16:08:02 -07003397 final View marketButton = findViewById(R.id.market_button);
3398 Intent intent = new Intent(Intent.ACTION_MAIN).addCategory(Intent.CATEGORY_APP_MARKET);
3399 // Find the app market activity by resolving an intent.
3400 // (If multiple app markets are installed, it will return the ResolverActivity.)
3401 ComponentName activityName = intent.resolveActivity(getPackageManager());
Winson Chung6a26e5b2011-05-26 14:36:06 -07003402 if (activityName != null) {
Winson Chungdff8ebb2011-09-08 17:25:31 -07003403 int coi = getCurrentOrientationIndexForGlobalIcons();
Winson Chung785d2eb2011-04-14 16:08:02 -07003404 mAppMarketIntent = intent;
Winson Chungdff8ebb2011-09-08 17:25:31 -07003405 sAppMarketIcon[coi] = updateTextButtonWithIconFromExternalActivity(
Michael Jurkaae65ee32012-04-30 11:45:54 -07003406 R.id.market_button, activityName, R.drawable.ic_launcher_market_holo,
3407 TOOLBAR_ICON_METADATA_NAME);
Winson Chung785d2eb2011-04-14 16:08:02 -07003408 marketButton.setVisibility(View.VISIBLE);
3409 } else {
3410 // We should hide and disable the view so that we don't try and restore the visibility
3411 // of it when we swap between drag & normal states from IconDropTarget subclasses.
3412 marketButton.setVisibility(View.GONE);
3413 marketButton.setEnabled(false);
Michael Jurka0423dcf2010-10-05 14:56:18 -07003414 }
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003415 }
3416
Michael Jurkae7bf83b2010-12-14 18:02:21 -08003417 private void updateAppMarketIcon(Drawable.ConstantState d) {
Winson Chung1b884092012-06-08 17:13:02 -07003418 // Ensure that the new drawable we are creating has the approprate toolbar icon bounds
3419 Resources r = getResources();
3420 Drawable marketIconDrawable = d.newDrawable(r);
3421 int w = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_width);
3422 int h = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_height);
3423 marketIconDrawable.setBounds(0, 0, w, h);
3424
3425 updateTextButtonWithDrawable(R.id.market_button, marketIconDrawable);
Michael Jurka4ef207b2010-11-29 17:05:45 -08003426 }
3427
Michael Jurkad7c28052012-04-27 15:43:36 -07003428 @Override
3429 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07003430 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07003431 final List<CharSequence> text = event.getText();
3432 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07003433 // Populate event with a fake title based on the current state.
3434 if (mState == State.APPS_CUSTOMIZE) {
3435 text.add(getString(R.string.all_apps_button_label));
3436 } else {
3437 text.add(getString(R.string.all_apps_home_button_label));
3438 }
Michael Jurkad7c28052012-04-27 15:43:36 -07003439 return result;
3440 }
3441
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003442 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003443 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003444 */
3445 private class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
3446 @Override
3447 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003448 closeSystemDialogs();
3449 }
3450 }
3451
3452 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08003453 * Receives notifications whenever the appwidgets are reset.
3454 */
3455 private class AppWidgetResetObserver extends ContentObserver {
3456 public AppWidgetResetObserver() {
3457 super(new Handler());
3458 }
3459
3460 @Override
3461 public void onChange(boolean selfChange) {
3462 onAppWidgetReset();
3463 }
3464 }
3465
3466 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07003467 * If the activity is currently paused, signal that we need to run the passed Runnable
3468 * in onResume.
3469 *
3470 * This needs to be called from incoming places where resources might have been loaded
3471 * while we are paused. That is becaues the Configuration might be wrong
3472 * when we're not running, and if it comes back to what it was when we
3473 * were paused, we are not restarted.
3474 *
3475 * Implementation of the method from LauncherModel.Callbacks.
3476 *
3477 * @return true if we are currently paused. The caller might be able to
3478 * skip some work in that case since we will come back again.
3479 */
Michael Jurkac402cd92013-05-20 15:49:32 +02003480 private boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003481 if (mPaused) {
3482 Log.i(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02003483 if (deletePreviousRunnables) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07003484 while (mBindOnResumeCallbacks.remove(run)) {
Michael Jurkac402cd92013-05-20 15:49:32 +02003485 }
3486 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07003487 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07003488 return true;
3489 } else {
3490 return false;
3491 }
3492 }
3493
Michael Jurkac402cd92013-05-20 15:49:32 +02003494 private boolean waitUntilResume(Runnable run) {
3495 return waitUntilResume(run, false);
3496 }
3497
Michael Jurka1e2f4652013-07-08 18:03:46 -07003498 public void addOnResumeCallback(Runnable run) {
Michael Jurka54554252013-08-01 12:52:23 +02003499 mOnResumeCallbacks.add(run);
Michael Jurka1e2f4652013-07-08 18:03:46 -07003500 }
3501
Michael Jurka7607c2f2013-04-03 14:33:19 -07003502 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003503 * If the activity is currently paused, signal that we need to re-run the loader
3504 * in onResume.
3505 *
3506 * This needs to be called from incoming places where resources might have been loaded
3507 * while we are paused. That is becaues the Configuration might be wrong
3508 * when we're not running, and if it comes back to what it was when we
3509 * were paused, we are not restarted.
3510 *
3511 * Implementation of the method from LauncherModel.Callbacks.
3512 *
3513 * @return true if we are currently paused. The caller might be able to
3514 * skip some work in that case since we will come back again.
3515 */
3516 public boolean setLoadOnResume() {
3517 if (mPaused) {
3518 Log.i(TAG, "setLoadOnResume");
3519 mOnResumeNeedsLoad = true;
3520 return true;
3521 } else {
3522 return false;
3523 }
3524 }
3525
3526 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003527 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003528 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003529 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003530 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003531 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003532 } else {
3533 return SCREEN_COUNT / 2;
3534 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003535 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003536
Joe Onorato9c1289c2009-08-17 11:03:03 -04003537 /**
3538 * Refreshes the shortcuts shown on the workspace.
3539 *
3540 * Implementation of the method from LauncherModel.Callbacks.
3541 */
3542 public void startBinding() {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003543 // If we're starting binding all over again, clear any bind calls we'd postponed in
3544 // the past (see waitUntilResume) -- we don't need them since we're starting binding
3545 // from scratch again
Michael Jurka1e2f4652013-07-08 18:03:46 -07003546 mBindOnResumeCallbacks.clear();
Adam Cohendf035382011-04-11 17:22:04 -07003547
Winson Chungd64d1762013-08-20 14:37:16 -07003548 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07003549 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07003550 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07003551
Michael Jurka05bf644e2011-11-30 20:28:53 -08003552 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003553 if (mHotseat != null) {
3554 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003555 }
3556 }
3557
Adam Cohendcd297f2013-06-18 13:13:40 -07003558 @Override
3559 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Winson Chung64359a52013-07-08 17:17:08 -07003560 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07003561
3562 // Create the new empty page
Winson Chung64359a52013-07-08 17:17:08 -07003563 mWorkspace.addExtraEmptyScreen();
Winson Chung0e6a7132013-08-23 12:55:10 -07003564
3565 // Create the custom content page (this call updates mDefaultScreen which calls
3566 // setCurrentPage() so ensure that all pages are added before calling this)
3567 if (!mWorkspace.hasCustomContent() && hasCustomContentToLeft()) {
3568 mWorkspace.createCustomContentPage();
3569 }
Winson Chung64359a52013-07-08 17:17:08 -07003570 }
3571
3572 @Override
3573 public void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Adam Cohendcd297f2013-06-18 13:13:40 -07003574 int count = orderedScreenIds.size();
3575 for (int i = 0; i < count; i++) {
Adam Cohen4caf2982013-08-20 18:54:31 -07003576 Launcher.addDumpLog(TAG, "10249126 - bindAddScreens(" + orderedScreenIds.get(i) + ")", true);
Adam Cohen89bddfa2013-08-20 11:57:13 -07003577 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(orderedScreenIds.get(i));
Adam Cohendcd297f2013-06-18 13:13:40 -07003578 }
Adam Cohendcd297f2013-06-18 13:13:40 -07003579 }
3580
Adam Cohen39a06042013-07-19 14:30:12 -07003581 private boolean shouldShowWeightWatcher() {
3582 String spKey = LauncherAppState.getSharedPreferencesKey();
3583 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
Daniel Sandler6053b8002013-08-15 15:44:26 -07003584 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, SHOW_WEIGHT_WATCHER_DEFAULT);
Adam Cohen39a06042013-07-19 14:30:12 -07003585
3586 return show;
3587 }
3588
Adam Cohen4caf2982013-08-20 18:54:31 -07003589 private boolean emailSent() {
3590 String spKey = LauncherAppState.getSharedPreferencesKey();
3591 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
3592 boolean show = sp.getBoolean(CORRUPTION_EMAIL_SENT_KEY, false);
3593 return show;
3594 }
3595
3596 private void setEmailSent(boolean sent) {
3597 String spKey = LauncherAppState.getSharedPreferencesKey();
3598 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
3599
3600 SharedPreferences.Editor editor = sp.edit();
3601 editor.putBoolean(CORRUPTION_EMAIL_SENT_KEY, sent);
3602 editor.commit();
3603 }
3604
Adam Cohen39a06042013-07-19 14:30:12 -07003605 private void toggleShowWeightWatcher() {
3606 String spKey = LauncherAppState.getSharedPreferencesKey();
3607 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
3608 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, true);
3609
3610 show = !show;
3611
3612 SharedPreferences.Editor editor = sp.edit();
3613 editor.putBoolean(SHOW_WEIGHT_WATCHER, show);
3614 editor.commit();
3615
3616 if (mWeightWatcher != null) {
3617 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
3618 }
3619 }
3620
Winson Chungd64d1762013-08-20 14:37:16 -07003621 public void bindAppsAdded(final ArrayList<Long> newScreens,
3622 final ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -07003623 final ArrayList<ItemInfo> addAnimated,
3624 final ArrayList<AppInfo> addedApps) {
Winson Chungd64d1762013-08-20 14:37:16 -07003625 Runnable r = new Runnable() {
3626 public void run() {
Winson Chungc58497e2013-09-03 17:48:37 -07003627 bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps);
Winson Chungd64d1762013-08-20 14:37:16 -07003628 }
3629 };
3630 if (waitUntilResume(r)) {
3631 return;
3632 }
3633
Adam Cohen4caf2982013-08-20 18:54:31 -07003634 Launcher.addDumpLog(TAG, "10249126 - bindAppsAdded(" + newScreens.size() + ")", true);
Winson Chungd64d1762013-08-20 14:37:16 -07003635
3636 // Add the new screens
3637 bindAddScreens(newScreens);
3638
3639 // We add the items without animation on non-visible pages, and with
3640 // animations on the new page (which we will try and snap to).
3641 if (!addNotAnimated.isEmpty()) {
3642 bindItems(addNotAnimated, 0,
3643 addNotAnimated.size(), false);
3644 }
3645 if (!addAnimated.isEmpty()) {
3646 bindItems(addAnimated, 0,
3647 addAnimated.size(), true);
3648 }
Winson Chungc58497e2013-09-03 17:48:37 -07003649
3650 if (!AppsCustomizePagedView.DISABLE_ALL_APPS &&
3651 addedApps != null && mAppsCustomizeContent != null) {
3652 mAppsCustomizeContent.addApps(addedApps);
3653 }
Winson Chungd64d1762013-08-20 14:37:16 -07003654 }
3655
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003656 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003657 * Bind the items start-end from the list.
3658 *
3659 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003660 */
Winson Chung64359a52013-07-08 17:17:08 -07003661 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end,
3662 final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07003663 Runnable r = new Runnable() {
3664 public void run() {
3665 bindItems(shortcuts, start, end, forceAnimateIcons);
3666 }
3667 };
3668 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003669 return;
3670 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003671
Winson Chungf0c6ae02012-03-21 16:10:31 -07003672 // Get the list of added shortcuts and intersect them with the set of shortcuts here
Winson Chung64359a52013-07-08 17:17:08 -07003673 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
3674 final Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chung997a9232013-07-24 15:33:46 -07003675 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07003676 Workspace workspace = mWorkspace;
Winson Chung997a9232013-07-24 15:33:46 -07003677 long newShortcutsScreenId = -1;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003678 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003679 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003680
3681 // Short circuit if we are loading dock items for a configuration which has no dock
3682 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3683 mHotseat == null) {
3684 continue;
3685 }
3686
Joe Onorato9c1289c2009-08-17 11:03:03 -04003687 switch (item.itemType) {
3688 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3689 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07003690 ShortcutInfo info = (ShortcutInfo) item;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003691 View shortcut = createShortcut(info);
Adam Cohendcd297f2013-06-18 13:13:40 -07003692
Winson Chung64359a52013-07-08 17:17:08 -07003693 /*
3694 * TODO: FIX collision case
3695 */
Winson Chungce376632013-07-11 16:12:41 -07003696 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
3697 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
3698 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
3699 throw new RuntimeException("OCCUPIED");
3700 }
Winson Chung64359a52013-07-08 17:17:08 -07003701 }
3702
Adam Cohendcd297f2013-06-18 13:13:40 -07003703 workspace.addInScreenFromBind(shortcut, item.container, item.screenId, item.cellX,
3704 item.cellY, 1, 1);
Winson Chung997a9232013-07-24 15:33:46 -07003705 if (animateIcons) {
Winson Chung64359a52013-07-08 17:17:08 -07003706 // Animate all the applications up now
3707 shortcut.setAlpha(0f);
3708 shortcut.setScaleX(0f);
3709 shortcut.setScaleY(0f);
3710 bounceAnims.add(createNewAppBounceAnimation(shortcut, i));
Winson Chung997a9232013-07-24 15:33:46 -07003711 newShortcutsScreenId = item.screenId;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003712 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003713 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003714 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Winson Chung3d503fb2011-07-13 17:25:49 -07003715 FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003716 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003717 (FolderInfo) item, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07003718 workspace.addInScreenFromBind(newFolder, item.container, item.screenId, item.cellX,
3719 item.cellY, 1, 1);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003720 break;
Winson Chungc763c4e2013-07-19 13:49:06 -07003721 default:
3722 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04003723 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003724 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003725
Winson Chung997a9232013-07-24 15:33:46 -07003726 if (animateIcons) {
3727 // Animate to the correct page
3728 if (newShortcutsScreenId > -1) {
3729 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
3730 int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId);
3731 if (newShortcutsScreenId != currentScreenId) {
3732 mWorkspace.snapToPage(newScreenIndex);
3733 }
3734 }
3735
Winson Chung64359a52013-07-08 17:17:08 -07003736 // We post the animation slightly delayed to prevent slowdowns when we are loading
3737 // right after we return to launcher.
3738 mWorkspace.postDelayed(new Runnable() {
3739 public void run() {
3740 anim.playTogether(bounceAnims);
3741 anim.start();
3742 }
3743 }, NEW_APPS_ANIMATION_DELAY);
3744 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003745 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003746 }
3747
Joe Onorato9c1289c2009-08-17 11:03:03 -04003748 /**
3749 * Implementation of the method from LauncherModel.Callbacks.
3750 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07003751 public void bindFolders(final HashMap<Long, FolderInfo> folders) {
Winson Chungd64d1762013-08-20 14:37:16 -07003752 Runnable r = new Runnable() {
3753 public void run() {
3754 bindFolders(folders);
3755 }
3756 };
3757 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003758 return;
3759 }
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07003760 sFolders.clear();
3761 sFolders.putAll(folders);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003762 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003763
3764 /**
3765 * Add the views for a widget to the workspace.
3766 *
3767 * Implementation of the method from LauncherModel.Callbacks.
3768 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07003769 public void bindAppWidget(final LauncherAppWidgetInfo item) {
Winson Chungd64d1762013-08-20 14:37:16 -07003770 Runnable r = new Runnable() {
3771 public void run() {
3772 bindAppWidget(item);
3773 }
3774 };
3775 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003776 return;
3777 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003778
Daniel Sandler843e8602010-06-07 14:59:01 -04003779 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
3780 if (DEBUG_WIDGETS) {
3781 Log.d(TAG, "bindAppWidget: " + item);
3782 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003783 final Workspace workspace = mWorkspace;
3784
3785 final int appWidgetId = item.appWidgetId;
3786 final AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
Daniel Sandler843e8602010-06-07 14:59:01 -04003787 if (DEBUG_WIDGETS) {
3788 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component " + appWidgetInfo.provider);
3789 }
3790
Joe Onorato9c1289c2009-08-17 11:03:03 -04003791 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
3792
Joe Onorato9c1289c2009-08-17 11:03:03 -04003793 item.hostView.setTag(item);
Winson Chung211bac32012-05-15 13:43:57 -07003794 item.onBindAppWidget(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003795
Adam Cohendcd297f2013-06-18 13:13:40 -07003796 workspace.addInScreen(item.hostView, item.container, item.screenId, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04003797 item.cellY, item.spanX, item.spanY, false);
Adam Cohended9f8d2010-11-03 13:25:16 -07003798 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
3799
Joe Onorato9c1289c2009-08-17 11:03:03 -04003800 workspace.requestLayout();
3801
Daniel Sandler843e8602010-06-07 14:59:01 -04003802 if (DEBUG_WIDGETS) {
3803 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
3804 + (SystemClock.uptimeMillis()-start) + "ms");
3805 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003806 }
3807
Adam Cohen1462de32012-07-24 22:34:36 -07003808 public void onPageBoundSynchronously(int page) {
3809 mSynchronouslyBoundPages.add(page);
3810 }
3811
Joe Onorato9c1289c2009-08-17 11:03:03 -04003812 /**
3813 * Callback saying that there aren't any more items to bind.
3814 *
3815 * Implementation of the method from LauncherModel.Callbacks.
3816 */
Adam Cohene25af792013-06-06 23:08:25 -07003817 public void finishBindingItems(final boolean upgradePath) {
Winson Chungd64d1762013-08-20 14:37:16 -07003818 Runnable r = new Runnable() {
3819 public void run() {
3820 finishBindingItems(upgradePath);
3821 }
3822 };
3823 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003824 return;
3825 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003826 if (mSavedState != null) {
3827 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07003828 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003829 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003830 mSavedState = null;
3831 }
3832
Adam Cohen1462de32012-07-24 22:34:36 -07003833 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003834
Patrick Dubroy002cbf42011-03-03 16:36:21 -08003835 // If we received the result of any pending adds while the loader was running (e.g. the
3836 // widget configuration forced an orientation change), process them now.
3837 for (int i = 0; i < sPendingAddList.size(); i++) {
3838 completeAdd(sPendingAddList.get(i));
3839 }
3840 sPendingAddList.clear();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003841
Winson Chungc51db6a2011-10-05 11:44:49 -07003842 // Update the market app icon as necessary (the other icons will be managed in response to
3843 // package changes in bindSearchablesChanged()
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003844 updateAppMarketIcon();
Michael Jurkac1f5d262011-09-30 19:32:27 -07003845
Winson Chungf0c6ae02012-03-21 16:10:31 -07003846 mWorkspaceLoading = false;
Adam Cohene25af792013-06-06 23:08:25 -07003847 if (upgradePath) {
Adam Cohen4caf2982013-08-20 18:54:31 -07003848 mWorkspace.getUniqueComponents(true, null);
3849 mIntentsOnWorkspaceFromUpgradePath = mWorkspace.getUniqueComponents(true, null);
Adam Cohene25af792013-06-06 23:08:25 -07003850 }
Adam Cohen99894d92013-06-14 11:22:59 -07003851
Adam Cohen66a01fd2013-06-11 12:48:00 -07003852 mWorkspace.post(new Runnable() {
3853 @Override
3854 public void run() {
3855 onFinishBindingItems();
3856 }
3857 });
Adam Cohen4caf2982013-08-20 18:54:31 -07003858
3859 // Write all the logs to disk
3860 Launcher.addDumpLog(TAG, "10249126 - finishBindingItems() - dumping logs to disk", true);
3861 dumpLogsToLocalData(false);
Winson Chungf0c6ae02012-03-21 16:10:31 -07003862 }
3863
Winson Chunga2413752012-04-03 14:22:34 -07003864 private boolean canRunNewAppsAnimation() {
3865 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
3866 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000);
3867 }
3868
Winson Chungc9168342013-06-26 14:54:55 -07003869 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
3870 ValueAnimator bounceAnim = LauncherAnimUtils.ofPropertyValuesHolder(v,
3871 PropertyValuesHolder.ofFloat("alpha", 1f),
3872 PropertyValuesHolder.ofFloat("scaleX", 1f),
3873 PropertyValuesHolder.ofFloat("scaleY", 1f));
3874 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
3875 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
3876 bounceAnim.setInterpolator(new SmoothPagedView.OvershootInterpolator());
3877 return bounceAnim;
3878 }
3879
Narayan Kamathcb1a4772011-06-28 13:46:59 +01003880 @Override
3881 public void bindSearchablesChanged() {
Winson Chungc51db6a2011-10-05 11:44:49 -07003882 boolean searchVisible = updateGlobalSearchIcon();
3883 boolean voiceVisible = updateVoiceSearchIcon(searchVisible);
Winson Chungadf0c182012-08-23 14:59:07 -07003884 if (mSearchDropTargetBar != null) {
3885 mSearchDropTargetBar.onSearchPackagesChanged(searchVisible, voiceVisible);
3886 }
Narayan Kamathcb1a4772011-06-28 13:46:59 +01003887 }
3888
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003889 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003890 * Add the icons for all apps.
3891 *
3892 * Implementation of the method from LauncherModel.Callbacks.
3893 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02003894 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Winson Chungc58497e2013-09-03 17:48:37 -07003895 if (AppsCustomizePagedView.DISABLE_ALL_APPS) {
3896 if (mIntentsOnWorkspaceFromUpgradePath != null) {
3897 if (LauncherModel.UPGRADE_USE_MORE_APPS_FOLDER) {
3898 getHotseat().addAllAppsFolder(mIconCache, apps,
3899 mIntentsOnWorkspaceFromUpgradePath, Launcher.this, mWorkspace);
3900 }
3901 mIntentsOnWorkspaceFromUpgradePath = null;
Daniel Sandler8707e0f2013-08-15 15:54:18 -07003902 }
Winson Chungc58497e2013-09-03 17:48:37 -07003903 } else {
3904 if (!AppsCustomizePagedView.DISABLE_ALL_APPS &&
3905 mAppsCustomizeContent != null) {
3906 mAppsCustomizeContent.setApps(apps);
3907 }
Winson Chung785d2eb2011-04-14 16:08:02 -07003908 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003909 }
3910
Bjorn Bringert85f418d2013-09-06 12:50:05 +01003911 @Override
3912 public boolean shouldShowApp(ResolveInfo app) {
3913 return true;
3914 }
3915
Joe Onorato9c1289c2009-08-17 11:03:03 -04003916 /**
3917 * A package was updated.
3918 *
3919 * Implementation of the method from LauncherModel.Callbacks.
3920 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02003921 public void bindAppsUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07003922 Runnable r = new Runnable() {
3923 public void run() {
3924 bindAppsUpdated(apps);
3925 }
3926 };
3927 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003928 return;
3929 }
3930
Patrick Dubroyf5afda72011-02-28 12:04:18 -08003931 if (mWorkspace != null) {
3932 mWorkspace.updateShortcuts(apps);
3933 }
Winson Chungc58497e2013-09-03 17:48:37 -07003934
3935 if (!AppsCustomizePagedView.DISABLE_ALL_APPS &&
3936 mAppsCustomizeContent != null) {
3937 mAppsCustomizeContent.updateApps(apps);
3938 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003939 }
3940
3941 /**
Winson Chung83892cc2013-05-01 16:53:33 -07003942 * A package was uninstalled. We take both the super set of packageNames
3943 * in addition to specific applications to remove, the reason being that
3944 * this can be called when a package is updated as well. In that scenario,
3945 * we only remove specific components from the workspace, where as
3946 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04003947 *
3948 * Implementation of the method from LauncherModel.Callbacks.
3949 */
Winson Chung83892cc2013-05-01 16:53:33 -07003950 public void bindComponentsRemoved(final ArrayList<String> packageNames,
Michael Jurkaeadbfc52013-09-04 00:45:37 +02003951 final ArrayList<AppInfo> appInfos,
Winson Chung64359a52013-07-08 17:17:08 -07003952 final boolean packageRemoved) {
Winson Chungd64d1762013-08-20 14:37:16 -07003953 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07003954 public void run() {
Winson Chung64359a52013-07-08 17:17:08 -07003955 bindComponentsRemoved(packageNames, appInfos, packageRemoved);
Winson Chung83892cc2013-05-01 16:53:33 -07003956 }
Winson Chungd64d1762013-08-20 14:37:16 -07003957 };
3958 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07003959 return;
3960 }
3961
Winson Chung64359a52013-07-08 17:17:08 -07003962 if (packageRemoved) {
Winson Chung83892cc2013-05-01 16:53:33 -07003963 mWorkspace.removeItemsByPackageName(packageNames);
3964 } else {
3965 mWorkspace.removeItemsByApplicationInfo(appInfos);
Joe Onorato36115782010-06-17 13:28:48 -04003966 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003967
Winson Chunga1820962011-10-03 16:31:06 -07003968 // Notify the drag controller
Winson Chung83892cc2013-05-01 16:53:33 -07003969 mDragController.onAppsRemoved(appInfos, this);
Winson Chungc58497e2013-09-03 17:48:37 -07003970
3971 if (!AppsCustomizePagedView.DISABLE_ALL_APPS &&
3972 mAppsCustomizeContent != null) {
3973 mAppsCustomizeContent.removeApps(appInfos);
3974 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003975 }
Joe Onoratobe386092009-11-17 17:32:16 -08003976
3977 /**
Winson Chung80baf5a2010-08-09 16:03:15 -07003978 * A number of packages were updated.
3979 */
Michael Jurkac402cd92013-05-20 15:49:32 +02003980 private ArrayList<Object> mWidgetsAndShortcuts;
3981 private Runnable mBindPackagesUpdatedRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07003982 public void run() {
Michael Jurkac402cd92013-05-20 15:49:32 +02003983 bindPackagesUpdated(mWidgetsAndShortcuts);
3984 mWidgetsAndShortcuts = null;
Winson Chung83892cc2013-05-01 16:53:33 -07003985 }
Michael Jurkac402cd92013-05-20 15:49:32 +02003986 };
3987
3988 public void bindPackagesUpdated(final ArrayList<Object> widgetsAndShortcuts) {
3989 if (waitUntilResume(mBindPackagesUpdatedRunnable, true)) {
3990 mWidgetsAndShortcuts = widgetsAndShortcuts;
Winson Chung83892cc2013-05-01 16:53:33 -07003991 return;
3992 }
3993
Winson Chung64359a52013-07-08 17:17:08 -07003994 // Update the widgets pane
Winson Chungc58497e2013-09-03 17:48:37 -07003995 if (!AppsCustomizePagedView.DISABLE_ALL_APPS &&
3996 mAppsCustomizeContent != null) {
Michael Jurkac402cd92013-05-20 15:49:32 +02003997 mAppsCustomizeContent.onPackagesUpdated(widgetsAndShortcuts);
Winson Chung785d2eb2011-04-14 16:08:02 -07003998 }
Winson Chung80baf5a2010-08-09 16:03:15 -07003999 }
4000
Winson Chung400438b2011-01-16 17:53:48 -08004001 private int mapConfigurationOriActivityInfoOri(int configOri) {
4002 final Display d = getWindowManager().getDefaultDisplay();
4003 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
4004 switch (d.getRotation()) {
4005 case Surface.ROTATION_0:
4006 case Surface.ROTATION_180:
4007 // We are currently in the same basic orientation as the natural orientation
4008 naturalOri = configOri;
4009 break;
4010 case Surface.ROTATION_90:
4011 case Surface.ROTATION_270:
4012 // We are currently in the other basic orientation to the natural orientation
4013 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
4014 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
4015 break;
4016 }
4017
4018 int[] oriMap = {
4019 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
4020 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
4021 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
4022 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
4023 };
4024 // Since the map starts at portrait, we need to offset if this device's natural orientation
4025 // is landscape.
4026 int indexOffset = 0;
4027 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
4028 indexOffset = 1;
4029 }
4030 return oriMap[(d.getRotation() + indexOffset) % 4];
4031 }
Adam Cohen446e9402011-09-15 18:21:21 -07004032
Winson Chung4b919f82012-05-01 10:44:08 -07004033 public boolean isRotationEnabled() {
Michael Jurka0a457bf2012-11-19 14:05:05 -08004034 boolean enableRotation = sForceEnableRotation ||
Winson Chung4b919f82012-05-01 10:44:08 -07004035 getResources().getBoolean(R.bool.allow_rotation);
4036 return enableRotation;
Winson Chung400438b2011-01-16 17:53:48 -08004037 }
Winson Chung4b919f82012-05-01 10:44:08 -07004038 public void lockScreenOrientation() {
4039 if (isRotationEnabled()) {
4040 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
4041 .getConfiguration().orientation));
4042 }
4043 }
4044 public void unlockScreenOrientation(boolean immediate) {
4045 if (isRotationEnabled()) {
4046 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07004047 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07004048 } else {
4049 mHandler.postDelayed(new Runnable() {
4050 public void run() {
4051 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4052 }
4053 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07004054 }
Winson Chung4b919f82012-05-01 10:44:08 -07004055 }
Winson Chung400438b2011-01-16 17:53:48 -08004056 }
4057
Winson Chung82f55532011-08-09 14:14:23 -07004058 /* Cling related */
Winson Chung7d7541e2011-09-16 20:14:36 -07004059 private boolean isClingsEnabled() {
Adam Cohen7564d982013-06-06 23:11:58 -07004060 if (DISABLE_CLINGS) {
4061 return false;
4062 }
4063
Brett Chabot2a9e2282011-08-23 15:03:13 -07004064 // disable clings when running in a test harness
Winson Chung7d7541e2011-09-16 20:14:36 -07004065 if(ActivityManager.isRunningInTestHarness()) return false;
Brett Chabot2a9e2282011-08-23 15:03:13 -07004066
Michael Jurkae233a8b2013-03-19 13:49:20 +01004067 // Restricted secondary users (child mode) will potentially have very few apps
4068 // seeded when they start up for the first time. Clings won't work well with that
Daniel Sandler325dc232013-06-05 22:57:57 -04004069// boolean supportsLimitedUsers =
4070// android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.JELLY_BEAN_MR2;
4071// Account[] accounts = AccountManager.get(this).getAccounts();
4072// if (supportsLimitedUsers && accounts.length == 0) {
4073// UserManager um = (UserManager) getSystemService(Context.USER_SERVICE);
4074// Bundle restrictions = um.getUserRestrictions();
4075// if (restrictions.getBoolean(UserManager.DISALLOW_MODIFY_ACCOUNTS, false)) {
4076// return false;
4077// }
4078// }
Winson Chung7d7541e2011-09-16 20:14:36 -07004079 return true;
Winson Chung82f55532011-08-09 14:14:23 -07004080 }
Michael Jurka22143132012-10-04 17:42:38 +02004081
Winson Chung7d7541e2011-09-16 20:14:36 -07004082 private Cling initCling(int clingId, int[] positionData, boolean animate, int delay) {
Michael Jurka22143132012-10-04 17:42:38 +02004083 final Cling cling = (Cling) findViewById(clingId);
Winson Chung7d7541e2011-09-16 20:14:36 -07004084 if (cling != null) {
4085 cling.init(this, positionData);
4086 cling.setVisibility(View.VISIBLE);
4087 cling.setLayerType(View.LAYER_TYPE_HARDWARE, null);
4088 if (animate) {
4089 cling.buildLayer();
4090 cling.setAlpha(0f);
4091 cling.animate()
4092 .alpha(1f)
Winson Chung7a74ac92011-09-20 17:43:51 -07004093 .setInterpolator(new AccelerateInterpolator())
Winson Chung7d7541e2011-09-16 20:14:36 -07004094 .setDuration(SHOW_CLING_DURATION)
4095 .setStartDelay(delay)
4096 .start();
4097 } else {
4098 cling.setAlpha(1f);
4099 }
Michael Jurka22143132012-10-04 17:42:38 +02004100 cling.setFocusableInTouchMode(true);
4101 cling.post(new Runnable() {
4102 public void run() {
4103 cling.setFocusable(true);
4104 cling.requestFocus();
4105 }
4106 });
4107 mHideFromAccessibilityHelper.setImportantForAccessibilityToNo(
4108 mDragLayer, clingId == R.id.all_apps_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07004109 }
4110 return cling;
4111 }
Michael Jurka22143132012-10-04 17:42:38 +02004112
Winson Chung7d7541e2011-09-16 20:14:36 -07004113 private void dismissCling(final Cling cling, final String flag, int duration) {
Winson Chung7819abd2012-11-29 14:29:38 -08004114 // To catch cases where siblings of top-level views are made invisible, just check whether
4115 // the cling is directly set to GONE before dismissing it.
4116 if (cling != null && cling.getVisibility() != View.GONE) {
Michael Jurka2ecf9952012-06-18 12:52:28 -07004117 ObjectAnimator anim = LauncherAnimUtils.ofFloat(cling, "alpha", 0f);
Winson Chung7d7541e2011-09-16 20:14:36 -07004118 anim.setDuration(duration);
Winson Chung82f55532011-08-09 14:14:23 -07004119 anim.addListener(new AnimatorListenerAdapter() {
4120 public void onAnimationEnd(Animator animation) {
4121 cling.setVisibility(View.GONE);
4122 cling.cleanup();
Winson Chung46353de2012-02-16 14:05:10 -08004123 // We should update the shared preferences on a background thread
4124 new Thread("dismissClingThread") {
4125 public void run() {
4126 SharedPreferences.Editor editor = mSharedPrefs.edit();
4127 editor.putBoolean(flag, true);
4128 editor.commit();
4129 }
4130 }.start();
Winson Chung82f55532011-08-09 14:14:23 -07004131 };
4132 });
4133 anim.start();
Michael Jurka22143132012-10-04 17:42:38 +02004134 mHideFromAccessibilityHelper.restoreImportantForAccessibility(mDragLayer);
Winson Chung82f55532011-08-09 14:14:23 -07004135 }
4136 }
Michael Jurka22143132012-10-04 17:42:38 +02004137
Winson Chung9d9d74f2011-09-19 11:49:12 -07004138 private void removeCling(int id) {
4139 final View cling = findViewById(id);
4140 if (cling != null) {
4141 final ViewGroup parent = (ViewGroup) cling.getParent();
4142 parent.post(new Runnable() {
4143 @Override
4144 public void run() {
4145 parent.removeView(cling);
4146 }
4147 });
Michael Jurka22143132012-10-04 17:42:38 +02004148 mHideFromAccessibilityHelper.restoreImportantForAccessibility(mDragLayer);
Winson Chung9d9d74f2011-09-19 11:49:12 -07004149 }
4150 }
Michael Jurka974c3862012-05-22 22:00:31 -07004151
4152 private boolean skipCustomClingIfNoAccounts() {
4153 Cling cling = (Cling) findViewById(R.id.workspace_cling);
4154 boolean customCling = cling.getDrawIdentifier().equals("workspace_custom");
4155 if (customCling) {
4156 AccountManager am = AccountManager.get(this);
Daniel Sandler325dc232013-06-05 22:57:57 -04004157 if (am == null) return false;
Michael Jurka974c3862012-05-22 22:00:31 -07004158 Account[] accounts = am.getAccountsByType("com.google");
4159 return accounts.length == 0;
4160 }
4161 return false;
4162 }
4163
Winson Chung7d7541e2011-09-16 20:14:36 -07004164 public void showFirstRunWorkspaceCling() {
Winson Chung7d7541e2011-09-16 20:14:36 -07004165 // Enable the clings only if they have not been dismissed before
Winson Chung46353de2012-02-16 14:05:10 -08004166 if (isClingsEnabled() &&
Michael Jurka974c3862012-05-22 22:00:31 -07004167 !mSharedPrefs.getBoolean(Cling.WORKSPACE_CLING_DISMISSED_KEY, false) &&
4168 !skipCustomClingIfNoAccounts() ) {
Michael Jurka45355c42012-10-08 13:21:35 +02004169 // If we're not using the default workspace layout, replace workspace cling
4170 // with a custom workspace cling (usually specified in an overlay)
4171 // For now, only do this on tablets
4172 if (mSharedPrefs.getInt(LauncherProvider.DEFAULT_WORKSPACE_RESOURCE_ID, 0) != 0 &&
Michael Jurkaa1131212012-10-09 14:46:26 +02004173 getResources().getBoolean(R.bool.config_useCustomClings)) {
Michael Jurka45355c42012-10-08 13:21:35 +02004174 // Use a custom cling
4175 View cling = findViewById(R.id.workspace_cling);
4176 ViewGroup clingParent = (ViewGroup) cling.getParent();
4177 int clingIndex = clingParent.indexOfChild(cling);
4178 clingParent.removeViewAt(clingIndex);
4179 View customCling = mInflater.inflate(R.layout.custom_workspace_cling, clingParent, false);
4180 clingParent.addView(customCling, clingIndex);
4181 customCling.setId(R.id.workspace_cling);
4182 }
Winson Chung7d7541e2011-09-16 20:14:36 -07004183 initCling(R.id.workspace_cling, null, false, 0);
Winson Chung9d9d74f2011-09-19 11:49:12 -07004184 } else {
4185 removeCling(R.id.workspace_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07004186 }
4187 }
4188 public void showFirstRunAllAppsCling(int[] position) {
Winson Chung7d7541e2011-09-16 20:14:36 -07004189 // Enable the clings only if they have not been dismissed before
Winson Chung46353de2012-02-16 14:05:10 -08004190 if (isClingsEnabled() &&
4191 !mSharedPrefs.getBoolean(Cling.ALLAPPS_CLING_DISMISSED_KEY, false)) {
Winson Chung7d7541e2011-09-16 20:14:36 -07004192 initCling(R.id.all_apps_cling, position, true, 0);
Winson Chung9d9d74f2011-09-19 11:49:12 -07004193 } else {
4194 removeCling(R.id.all_apps_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07004195 }
4196 }
4197 public Cling showFirstRunFoldersCling() {
Winson Chung7d7541e2011-09-16 20:14:36 -07004198 // Enable the clings only if they have not been dismissed before
Winson Chung46353de2012-02-16 14:05:10 -08004199 if (isClingsEnabled() &&
4200 !mSharedPrefs.getBoolean(Cling.FOLDER_CLING_DISMISSED_KEY, false)) {
4201 return initCling(R.id.folder_cling, null, true, 0);
Winson Chung9d9d74f2011-09-19 11:49:12 -07004202 } else {
4203 removeCling(R.id.folder_cling);
Winson Chung46353de2012-02-16 14:05:10 -08004204 return null;
Winson Chung7d7541e2011-09-16 20:14:36 -07004205 }
Winson Chung7d7541e2011-09-16 20:14:36 -07004206 }
Michael Jurka104c4562013-07-08 18:03:46 -07004207 protected SharedPreferences getSharedPrefs() {
4208 return mSharedPrefs;
4209 }
Winson Chung7d7541e2011-09-16 20:14:36 -07004210 public boolean isFolderClingVisible() {
4211 Cling cling = (Cling) findViewById(R.id.folder_cling);
Winson Chung9d9d74f2011-09-19 11:49:12 -07004212 if (cling != null) {
4213 return cling.getVisibility() == View.VISIBLE;
4214 }
4215 return false;
Winson Chung7d7541e2011-09-16 20:14:36 -07004216 }
Winson Chung82f55532011-08-09 14:14:23 -07004217 public void dismissWorkspaceCling(View v) {
4218 Cling cling = (Cling) findViewById(R.id.workspace_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07004219 dismissCling(cling, Cling.WORKSPACE_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
Winson Chung82f55532011-08-09 14:14:23 -07004220 }
4221 public void dismissAllAppsCling(View v) {
4222 Cling cling = (Cling) findViewById(R.id.all_apps_cling);
Winson Chung7d7541e2011-09-16 20:14:36 -07004223 dismissCling(cling, Cling.ALLAPPS_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
4224 }
4225 public void dismissFolderCling(View v) {
4226 Cling cling = (Cling) findViewById(R.id.folder_cling);
4227 dismissCling(cling, Cling.FOLDER_CLING_DISMISSED_KEY, DISMISS_CLING_DURATION);
Winson Chung82f55532011-08-09 14:14:23 -07004228 }
4229
Winson Chung80baf5a2010-08-09 16:03:15 -07004230 /**
Joe Onoratobe386092009-11-17 17:32:16 -08004231 * Prints out out state for debugging.
4232 */
4233 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04004234 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08004235 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08004236 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
4237 Log.d(TAG, "mRestoring=" + mRestoring);
4238 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
4239 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004240 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08004241 mModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07004242
Winson Chung785d2eb2011-04-14 16:08:02 -07004243 if (mAppsCustomizeContent != null) {
4244 mAppsCustomizeContent.dumpState();
4245 }
Daniel Sandler325dc232013-06-05 22:57:57 -04004246 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08004247 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004248
4249 @Override
4250 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
4251 super.dump(prefix, fd, writer, args);
Adam Cohen4caf2982013-08-20 18:54:31 -07004252 synchronized (sDumpLogs) {
4253 writer.println(" ");
4254 writer.println("Debug logs: ");
4255 for (int i = 0; i < sDumpLogs.size(); i++) {
4256 writer.println(" " + sDumpLogs.get(i));
4257 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004258 }
4259 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004260
4261 public static void dumpDebugLogsToConsole() {
Adam Cohen4caf2982013-08-20 18:54:31 -07004262 synchronized (sDumpLogs) {
4263 Log.d(TAG, "");
4264 Log.d(TAG, "*********************");
4265 Log.d(TAG, "Launcher debug logs: ");
4266 for (int i = 0; i < sDumpLogs.size(); i++) {
4267 Log.d(TAG, " " + sDumpLogs.get(i));
4268 }
4269 Log.d(TAG, "*********************");
4270 Log.d(TAG, "");
Adam Cohen487f7dd2012-06-28 18:12:10 -07004271 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004272 }
4273
4274 public static void addDumpLog(String tag, String log, boolean debugLog) {
4275 if (debugLog) {
4276 Log.d(tag, log);
4277 }
4278 sDateStamp.setTime(System.currentTimeMillis());
4279 synchronized (sDumpLogs) {
4280 sDumpLogs.add(sDateFormat.format(sDateStamp) + ": " + tag + ", " + log);
4281 }
4282 }
4283
4284 public void dumpLogsToLocalData(final boolean email) {
4285 new Thread("DumpLogsToLocalData") {
4286 @Override
4287 public void run() {
4288 boolean success = false;
4289 sDateStamp.setTime(sRunStart);
4290 String FILENAME = sDateStamp.getMonth() + "-"
4291 + sDateStamp.getDay() + "_"
4292 + sDateStamp.getHours() + "-"
4293 + sDateStamp.getMinutes() + "_"
4294 + sDateStamp.getSeconds() + ".txt";
4295
4296 FileOutputStream fos = null;
4297 File outFile = null;
4298 try {
4299 outFile = new File(getFilesDir(), FILENAME);
4300 outFile.createNewFile();
4301 fos = new FileOutputStream(outFile);
4302 } catch (Exception e) {
4303 e.printStackTrace();
4304 }
4305 if (fos != null) {
4306 PrintWriter writer = new PrintWriter(fos);
4307
4308 writer.println(" ");
4309 writer.println("Debug logs: ");
4310 synchronized (sDumpLogs) {
4311 for (int i = 0; i < sDumpLogs.size(); i++) {
4312 writer.println(" " + sDumpLogs.get(i));
4313 }
4314 }
4315 writer.close();
4316 }
4317 try {
4318 if (fos != null) {
4319 fos.close();
4320 success = true;
4321 }
4322 } catch (IOException e) {
4323 e.printStackTrace();
4324 }
4325
4326 if (success && email) {
4327 if (!emailSent()) {
4328 emailFile(outFile);
4329 }
4330 }
4331 }
4332 }.start();
4333 }
4334
4335 private void emailFile(File file) {
4336 File publicCopy = new File(Environment.getExternalStorageDirectory(), file.getName());
4337 try {
4338 copyFile(file, publicCopy);
4339 } catch (IOException e) {
4340 e.printStackTrace();
4341 return;
4342 }
4343
4344 Intent intent = new Intent(Intent.ACTION_SEND);
4345 intent.setType("text/plain");
4346 intent.putExtra(Intent.EXTRA_EMAIL, new String[] {"adamcohen@google.com, winsonc@google.com," +
4347 "mikejurka@google"});
4348 intent.putExtra(Intent.EXTRA_SUBJECT, "Data corruption " + file.getName());
4349 intent.putExtra(Intent.EXTRA_TEXT, "Data corruption has occurred, logs attached");
4350
4351 if (!file.exists() || !file.canRead()) {
4352 Toast.makeText(this, "Attachment Error", Toast.LENGTH_SHORT).show();
4353 finish();
4354 return;
4355 }
4356
4357 Toast.makeText(this, "Data corruption has occurred, please send e-mail", Toast.LENGTH_LONG);
4358 Uri uri = Uri.fromFile(publicCopy);
4359 intent.putExtra(Intent.EXTRA_STREAM, uri);
4360 startActivity(Intent.createChooser(intent, "Please send logs, consider clearing data"));
4361
4362 setEmailSent(true);
4363 }
4364
4365 public void copyFile(File src, File dst) throws IOException {
4366 InputStream in = new FileInputStream(src);
4367 OutputStream out = new FileOutputStream(dst);
4368
4369 // Transfer bytes from in to out
4370 byte[] buf = new byte[1024];
4371 int len;
4372 while ((len = in.read(buf)) > 0) {
4373 out.write(buf, 0, len);
4374 }
4375 in.close();
4376 out.close();
Adam Cohen487f7dd2012-06-28 18:12:10 -07004377 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004378}
Michael Jurka2763be32011-02-24 11:19:57 -08004379
Michael Jurkaabded662011-03-04 12:06:57 -08004380interface LauncherTransitionable {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08004381 View getContent();
Michael Jurkaa35e35a2012-04-26 15:04:28 -07004382 void onLauncherTransitionPrepare(Launcher l, boolean animated, boolean toWorkspace);
Michael Jurkabed61d22012-02-14 22:51:29 -08004383 void onLauncherTransitionStart(Launcher l, boolean animated, boolean toWorkspace);
Winson Chung70442722012-02-10 15:43:22 -08004384 void onLauncherTransitionStep(Launcher l, float t);
Michael Jurkabed61d22012-02-14 22:51:29 -08004385 void onLauncherTransitionEnd(Launcher l, boolean animated, boolean toWorkspace);
Michael Jurka2763be32011-02-24 11:19:57 -08004386}