blob: 48f39014552984e87a26b1419b57567e01a63efa [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
Gilles Debunnedd6c9922010-10-25 11:23:41 -070020import android.animation.Animator;
Michael Jurka8edd75c2010-12-17 20:15:06 -080021import android.animation.AnimatorListenerAdapter;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070022import android.animation.AnimatorSet;
Adam Cohen2801caf2011-05-13 20:57:39 -070023import android.animation.ObjectAnimator;
24import android.animation.PropertyValuesHolder;
Adam Cohen2854d252014-08-27 16:04:07 -070025import android.animation.TimeInterpolator;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070026import android.animation.ValueAnimator;
Adam Cohen0b395352014-06-09 22:54:36 +000027import android.annotation.TargetApi;
Michael Jurka946ad472010-07-09 18:05:18 -070028import android.app.Activity;
Brett Chabot2a9e2282011-08-23 15:03:13 -070029import android.app.ActivityManager;
Winson Chungc7450e32012-04-17 17:34:08 -070030import android.app.ActivityOptions;
Chris Wren40c5ed32014-06-24 18:24:23 -040031import android.app.AlertDialog;
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;
Chris Wren40c5ed32014-06-24 18:24:23 -040042import android.content.DialogInterface;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080043import android.content.Intent;
Winson Chungf0ea4d32011-06-06 14:27:16 -070044import android.content.IntentFilter;
Adam Cohen173f7112015-03-27 15:14:00 -070045import android.content.IntentSender;
Winson Chung82f55532011-08-09 14:14:23 -070046import android.content.SharedPreferences;
Winson Chungaafa03c2010-06-11 17:34:16 -070047import android.content.pm.ActivityInfo;
Winson Chunge43a1e72014-01-15 10:33:02 -080048import android.content.pm.ApplicationInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080049import android.content.pm.PackageManager;
Adam Cohen716b51e2011-06-30 12:09:54 -070050import android.content.pm.PackageManager.NameNotFoundException;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080051import android.content.res.Configuration;
Karl Rosaen138a0412009-04-23 19:00:21 -070052import android.content.res.Resources;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080053import android.database.ContentObserver;
Adam Cohen3f9c9712014-10-31 11:48:25 -070054import android.database.sqlite.SQLiteDatabase;
Adam Cohen268c4752012-06-06 17:47:33 -070055import android.graphics.Bitmap;
56import android.graphics.Canvas;
Sandeep Siddhartha2efc7d92014-05-16 17:21:15 -070057import android.graphics.Color;
Adam Cohen268c4752012-06-06 17:47:33 -070058import android.graphics.PorterDuff;
Michael Jurkaaf442092010-06-10 17:01:57 -070059import android.graphics.Rect;
Michael Jurkaaf442092010-06-10 17:01:57 -070060import android.graphics.drawable.Drawable;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040061import android.net.Uri;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -070062import android.os.AsyncTask;
Adam Cohen0f668f32014-09-08 19:54:17 +020063import android.os.Build;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080064import android.os.Bundle;
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +020065import android.os.Environment;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080066import android.os.Handler;
Adam Cohended9f8d2010-11-03 13:25:16 -070067import android.os.Message;
Winson Chunga2413752012-04-03 14:22:34 -070068import android.os.StrictMode;
Daniel Sandler843e8602010-06-07 14:59:01 -040069import android.os.SystemClock;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080070import android.text.Selection;
71import android.text.SpannableStringBuilder;
Michael Jurkaa33411c2012-06-14 16:18:21 -070072import android.text.TextUtils;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080073import android.text.method.TextKeyListener;
Joe Onorato7c312c12009-08-13 21:36:53 -070074import android.util.Log;
Adam Cohen96d30a12013-07-16 18:13:21 -070075import android.view.Display;
76import android.view.Gravity;
77import android.view.HapticFeedbackConstants;
78import android.view.KeyEvent;
79import android.view.LayoutInflater;
80import android.view.Menu;
Adam Cohen96d30a12013-07-16 18:13:21 -070081import 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 Cohen2854d252014-08-27 16:04:07 -070086import android.view.ViewAnimationUtils;
Adam Cohen96d30a12013-07-16 18:13:21 -070087import android.view.ViewGroup;
Adam Cohenc2d6e892014-10-16 09:49:24 -070088import android.view.ViewStub;
Adam Cohen96d30a12013-07-16 18:13:21 -070089import android.view.ViewTreeObserver;
Sunny Goyal651077b2014-06-30 14:15:31 -070090import android.view.Window;
Adam Cohen96d30a12013-07-16 18:13:21 -070091import android.view.WindowManager;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -080092import android.view.accessibility.AccessibilityEvent;
Adam Cohen9bfdb762014-07-21 17:44:06 -070093import android.view.animation.AccelerateInterpolator;
Adam Cohenf16e5712011-01-13 13:31:45 -080094import android.view.animation.DecelerateInterpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080095import android.view.inputmethod.InputMethodManager;
Adam Cohen96d30a12013-07-16 18:13:21 -070096import android.widget.Advanceable;
97import android.widget.FrameLayout;
98import android.widget.ImageView;
Adam Cohen96d30a12013-07-16 18:13:21 -070099import android.widget.Toast;
Adam Cohen6c5891a2014-07-09 23:53:15 -0700100
Sunny Goyal651077b2014-06-30 14:15:31 -0700101import com.android.launcher3.DropTarget.DragObject;
102import com.android.launcher3.PagedView.PageSwitchListener;
Sunny Goyalffe83f12014-08-14 17:39:34 -0700103import com.android.launcher3.compat.AppWidgetManagerCompat;
Kenny Guyed131872014-04-30 03:02:21 +0100104import com.android.launcher3.compat.LauncherActivityInfoCompat;
105import com.android.launcher3.compat.LauncherAppsCompat;
Sunny Goyale755d462014-07-22 13:48:29 -0700106import com.android.launcher3.compat.PackageInstallerCompat;
107import com.android.launcher3.compat.PackageInstallerCompat.PackageInstallInfo;
Kenny Guyed131872014-04-30 03:02:21 +0100108import com.android.launcher3.compat.UserHandleCompat;
109import com.android.launcher3.compat.UserManagerCompat;
Adam Cohen6c5891a2014-07-09 23:53:15 -0700110
Adam Cohenc0dcf592011-06-01 15:30:43 -0700111import java.io.DataInputStream;
112import java.io.DataOutputStream;
Adam Cohen4caf2982013-08-20 18:54:31 -0700113import java.io.File;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700114import java.io.FileDescriptor;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700115import java.io.FileNotFoundException;
Adam Cohen4caf2982013-08-20 18:54:31 -0700116import java.io.FileOutputStream;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700117import java.io.IOException;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700118import java.io.PrintWriter;
Adam Cohen0b395352014-06-09 22:54:36 +0000119import java.lang.reflect.Field;
120import java.lang.reflect.InvocationTargetException;
121import java.lang.reflect.Method;
Adam Cohen4caf2982013-08-20 18:54:31 -0700122import java.text.DateFormat;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700123import java.util.ArrayList;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700124import java.util.Collection;
Adam Cohen4caf2982013-08-20 18:54:31 -0700125import java.util.Date;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700126import java.util.HashMap;
Sunny Goyal4390ace2014-10-13 11:33:11 -0700127import java.util.HashSet;
Michael Jurkad7c28052012-04-27 15:43:36 -0700128import java.util.List;
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000129import java.util.concurrent.atomic.AtomicInteger;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700130
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800131/**
132 * Default launcher application.
133 */
Bjorn Bringertc459e522013-06-07 19:36:01 +0100134public class Launcher extends Activity
Michael Jurka0e260592010-06-30 17:07:39 -0700135 implements View.OnClickListener, OnLongClickListener, LauncherModel.Callbacks,
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700136 View.OnTouchListener, PageSwitchListener, LauncherProviderChangeListener {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -0800137 static final String TAG = "Launcher";
Joe Onoratocc67f472010-06-08 10:54:30 -0700138 static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800139
Daniel Sandlerf061f822013-06-27 13:59:36 -0400140 static final boolean PROFILE_STARTUP = false;
Daniel Sandler843e8602010-06-07 14:59:01 -0400141 static final boolean DEBUG_WIDGETS = false;
Winson Chunga2413752012-04-03 14:22:34 -0700142 static final boolean DEBUG_STRICT_MODE = false;
Daniel Sandlerf061f822013-06-27 13:59:36 -0400143 static final boolean DEBUG_RESUME_TIME = false;
Winson Chungede41292013-09-19 16:27:36 -0700144 static final boolean DEBUG_DUMP_LOG = false;
Romain Guy6fefcf12009-06-11 13:07:43 -0700145
Dan Sandlerd5024042014-01-09 15:01:33 -0500146 static final boolean ENABLE_DEBUG_INTENTS = false; // allow DebugIntents to run
147
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800148 private static final int REQUEST_CREATE_SHORTCUT = 1;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700149 private static final int REQUEST_CREATE_APPWIDGET = 5;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800150 private static final int REQUEST_PICK_SHORTCUT = 7;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700151 private static final int REQUEST_PICK_APPWIDGET = 9;
Mike Clerona0618e42009-10-22 13:55:21 -0700152 private static final int REQUEST_PICK_WALLPAPER = 10;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800153
Michael Jurka8b805b12012-04-18 14:23:14 -0700154 private static final int REQUEST_BIND_APPWIDGET = 11;
Sunny Goyalff572272014-07-23 13:58:07 -0700155 private static final int REQUEST_RECONFIGURE_APPWIDGET = 12;
Michael Jurka8b805b12012-04-18 14:23:14 -0700156
Mathew Inwood876a8462013-06-14 14:12:41 +0100157 /**
158 * IntentStarter uses request codes starting with this. This must be greater than all activity
159 * request codes used internally.
160 */
161 protected static final int REQUEST_LAST = 100;
162
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800163 static final String EXTRA_SHORTCUT_DUPLICATE = "duplicate";
164
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800165 static final int SCREEN_COUNT = 5;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800166
Michael Jurka0a457bf2012-11-19 14:05:05 -0800167 // To turn on these properties, type
168 // adb shell setprop log.tag.PROPERTY_NAME [VERBOSE | SUPPRESS]
Michael Jurka0a457bf2012-11-19 14:05:05 -0800169 static final String DUMP_STATE_PROPERTY = "launcher_dump_state";
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -0800170 static final String DISABLE_ALL_APPS_PROPERTY = "launcher_noallapps";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800171
Winson Chung2672ff92012-05-04 16:22:30 -0700172 // The Intent extra that defines whether to ignore the launch animation
173 static final String INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION =
Daniel Sandler325dc232013-06-05 22:57:57 -0400174 "com.android.launcher3.intent.extra.shortcut.INGORE_LAUNCH_ANIMATION";
Winson Chung2672ff92012-05-04 16:22:30 -0700175
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800176 // Type: int
177 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
Michael Jurka883f55b2010-10-21 15:47:14 -0700178 // Type: int
179 private static final String RUNTIME_STATE = "launcher.state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800180 // Type: int
Winson Chung3d503fb2011-07-13 17:25:49 -0700181 private static final String RUNTIME_STATE_PENDING_ADD_CONTAINER = "launcher.add_container";
182 // Type: int
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800183 private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
184 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700185 private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cell_x";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800186 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700187 private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cell_y";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800188 // Type: boolean
189 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME = "launcher.rename_folder";
190 // Type: long
191 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME_ID = "launcher.rename_folder_id";
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700192 // Type: int
193 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_X = "launcher.add_span_x";
194 // Type: int
195 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_Y = "launcher.add_span_y";
196 // Type: parcelable
197 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_INFO = "launcher.add_widget_info";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000198 // Type: parcelable
Adam Cohen4637b5a2013-11-04 18:21:24 -0800199 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_ID = "launcher.add_widget_id";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000200 // Type: int[]
201 private static final String RUNTIME_STATE_VIEW_IDS = "launcher.view_ids";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800202
Adam Cohen432609a2014-03-13 17:03:22 -0700203 static final String INTRO_SCREEN_DISMISSED = "launcher.intro_screen_dismissed";
Adam Cohenb54a5982014-01-08 15:21:04 -0800204 static final String FIRST_RUN_ACTIVITY_DISPLAYED = "launcher.first_run_activity_displayed";
205
Adam Cohen3ed316a2014-07-23 18:21:20 -0700206 static final String FIRST_LOAD_COMPLETE = "launcher.first_load_complete";
207 static final String ACTION_FIRST_LOAD_COMPLETE =
208 "com.android.launcher3.action.FIRST_LOAD_COMPLETE";
209
Adam Cohen39a06042013-07-19 14:30:12 -0700210 public static final String SHOW_WEIGHT_WATCHER = "debug.show_mem";
Daniel Sandler6053b802013-08-15 15:44:26 -0700211 public static final boolean SHOW_WEIGHT_WATCHER_DEFAULT = false;
Adam Cohen39a06042013-07-19 14:30:12 -0700212
Sunny Goyal594d76d2014-11-06 10:12:54 -0800213 private static final String QSB_WIDGET_ID = "qsb_widget_id";
214 private static final String QSB_WIDGET_PROVIDER = "qsb_widget_provider";
215
Winson Chunga6945242014-01-08 14:04:34 -0800216 public static final String USER_HAS_MIGRATED = "launcher.user_migrated_from_old_data";
217
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700218 /** The different states that Launcher can be in. */
Winson Chung4a2afa32012-07-19 14:53:05 -0700219 private enum State { NONE, WORKSPACE, APPS_CUSTOMIZE, APPS_CUSTOMIZE_SPRING_LOADED };
Michael Jurkac0e8fca2010-10-06 16:41:29 -0700220 private State mState = State.WORKSPACE;
221 private AnimatorSet mStateAnimation;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700222
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700223 private boolean mIsSafeModeEnabled;
224
Adam Cohenc2d6e892014-10-16 09:49:24 -0700225 LauncherOverlayCallbacks mLauncherOverlayCallbacks = new LauncherOverlayCallbacksImpl();
226 LauncherOverlay mLauncherOverlay;
Adam Cohena6d04922014-10-23 17:28:30 -0700227 InsettableFrameLayout mLauncherOverlayContainer;
Adam Cohenc2d6e892014-10-16 09:49:24 -0700228
Joe Onorato9c1289c2009-08-17 11:03:03 -0400229 static final int APPWIDGET_HOST_ID = 1024;
Adam Cohenad4e15c2013-10-17 16:21:35 -0700230 public static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
231 private static final int ON_ACTIVITY_RESULT_ANIMATION_DELAY = 500;
Adam Cohen646fdf72014-04-08 16:59:36 -0700232 private static final int ACTIVITY_START_DELAY = 1000;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800233
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800234 private static final Object sLock = new Object();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800235
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000236 private HashMap<Integer, Integer> mItemIdToViewId = new HashMap<Integer, Integer>();
237 private static final AtomicInteger sNextGeneratedId = new AtomicInteger(1);
238
Winson Chunga2413752012-04-03 14:22:34 -0700239 // How long to wait before the new-shortcut animation automatically pans the workspace
Winson Chung94d67682013-09-25 16:29:40 -0700240 private static int NEW_APPS_PAGE_MOVE_DELAY = 500;
241 private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 5;
Winson Chung64359a52013-07-08 17:17:08 -0700242 private static int NEW_APPS_ANIMATION_DELAY = 500;
Adam Cohen63f1ec02014-08-12 09:23:13 -0700243 private static final int SINGLE_FRAME_DELAY = 16;
Winson Chunga2413752012-04-03 14:22:34 -0700244
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800245 private final BroadcastReceiver mCloseSystemDialogsReceiver
246 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800247 private final ContentObserver mWidgetObserver = new AppWidgetResetObserver();
248
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800249 private LayoutInflater mInflater;
250
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800251 private Workspace mWorkspace;
Craig Mautner360310b2012-10-26 15:13:08 -0700252 private View mLauncherView;
Winson Chunga6945242014-01-08 14:04:34 -0800253 private View mPageIndicators;
Michael Jurkab737ee62011-11-15 15:57:22 -0800254 private DragLayer mDragLayer;
255 private DragController mDragController;
Adam Cohen39a06042013-07-19 14:30:12 -0700256 private View mWeightWatcher;
Romain Guycbb89e42009-06-08 15:52:54 -0700257
Sunny Goyalffe83f12014-08-14 17:39:34 -0700258 private AppWidgetManagerCompat mAppWidgetManager;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700259 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700260
Michael Jurkac9d95c52011-08-29 14:03:34 -0700261 private ItemInfo mPendingAddInfo = new ItemInfo();
Adam Cohen59400422014-03-05 18:07:04 -0800262 private LauncherAppWidgetProviderInfo mPendingAddWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800263 private int mPendingAddWidgetId = -1;
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700264
Michael Jurka0280c3b2010-09-17 15:00:07 -0700265 private int[] mTmpAddItemCellCoordinates = new int[2];
266
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800267 private FolderInfo mFolderInfo;
268
Winson Chung3d503fb2011-07-13 17:25:49 -0700269 private Hotseat mHotseat;
Jorim Jaggid017f882014-01-14 17:08:48 -0800270 private ViewGroup mOverviewPanel;
Adam Cohenf358a4b2013-07-23 16:47:31 -0700271
Michael Jurka838a4ca2011-02-07 13:33:06 -0800272 private View mAllAppsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700273
Winson Chungc51db6a2011-10-05 11:44:49 -0700274 private SearchDropTargetBar mSearchDropTargetBar;
Winson Chungf0ea4d32011-06-06 14:27:16 -0700275 private AppsCustomizeTabHost mAppsCustomizeTabHost;
276 private AppsCustomizePagedView mAppsCustomizeContent;
277 private boolean mAutoAdvanceRunning = false;
Sunny Goyal594d76d2014-11-06 10:12:54 -0800278 private AppWidgetHostView mQsb;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800279
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800280 private Bundle mSavedState;
Winson Chung4a2afa32012-07-19 14:53:05 -0700281 // We set the state in both onCreate and then onNewIntent in some cases, which causes both
282 // scroll issues (because the workspace may not have been measured yet) and extra work.
283 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
284 private State mOnResumeState = State.NONE;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800285
286 private SpannableStringBuilder mDefaultKeySsb = null;
287
Joe Onorato9c1289c2009-08-17 11:03:03 -0400288 private boolean mWorkspaceLoading = true;
289
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800290 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800291 private boolean mRestoring;
292 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700293 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800294
Michael Jurka1e2f4652013-07-08 18:03:46 -0700295 private ArrayList<Runnable> mBindOnResumeCallbacks = new ArrayList<Runnable>();
Michael Jurka7607c2f2013-04-03 14:33:19 -0700296 private ArrayList<Runnable> mOnResumeCallbacks = new ArrayList<Runnable>();
297
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800298 private Bundle mSavedInstanceState;
299
Joe Onorato9c1289c2009-08-17 11:03:03 -0400300 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800301 private IconCache mIconCache;
Adam Cohend113e0c2010-11-11 10:48:05 -0800302 private boolean mUserPresent = true;
303 private boolean mVisible = false;
Adam Cohened307df2013-10-02 09:37:31 -0700304 private boolean mHasFocus = false;
Adam Cohend113e0c2010-11-11 10:48:05 -0800305 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400306
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700307 private static LocaleConfiguration sLocaleConfiguration = null;
308
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700309 private static HashMap<Long, FolderInfo> sFolders = new HashMap<Long, FolderInfo>();
Romain Guycbb89e42009-06-08 15:52:54 -0700310
Adam Cohen61f560d2013-09-30 15:58:20 -0700311 private View.OnTouchListener mHapticFeedbackTouchListener;
312
Adam Cohen80e6beb2015-02-13 16:14:33 -0800313 public static final int BUILD_LAYER = 0;
314 public static final int BUILD_AND_SET_LAYER = 1;
315
Adam Cohended9f8d2010-11-03 13:25:16 -0700316 // Related to the auto-advancing of widgets
317 private final int ADVANCE_MSG = 1;
318 private final int mAdvanceInterval = 20000;
319 private final int mAdvanceStagger = 250;
320 private long mAutoAdvanceSentTime;
321 private long mAutoAdvanceTimeLeft = -1;
322 private HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
323 new HashMap<View, AppWidgetProviderInfo>();
324
Winson Chung400438b2011-01-16 17:53:48 -0800325 // Determines how long to wait after a rotation before restoring the screen orientation to
326 // match the sensor state.
327 private final int mRestoreScreenOrientationDelay = 500;
328
Craig Mautner360310b2012-10-26 15:13:08 -0700329 private Drawable mWorkspaceBackgroundDrawable;
Craig Mautner360310b2012-10-26 15:13:08 -0700330
Adam Cohen1462de32012-07-24 22:34:36 -0700331 private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700332 private static final boolean DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE = false;
Adam Cohen1462de32012-07-24 22:34:36 -0700333
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700334 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
Adam Cohen4caf2982013-08-20 18:54:31 -0700335 static Date sDateStamp = new Date();
336 static DateFormat sDateFormat =
337 DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
338 static long sRunStart = System.currentTimeMillis();
339 static final String CORRUPTION_EMAIL_SENT_KEY = "corruptionEmailSent";
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700340
Winson Chung46353de2012-02-16 14:05:10 -0800341 // We only want to get the SharedPreferences once since it does an FS stat each time we get
342 // it from the context.
343 private SharedPreferences mSharedPrefs;
344
Adam Cohene25af792013-06-06 23:08:25 -0700345 private static ArrayList<ComponentName> mIntentsOnWorkspaceFromUpgradePath = null;
346
Winson Chungf0c6ae02012-03-21 16:10:31 -0700347 // Holds the page that we need to animate to, and the icon views that we need to animate up
348 // when we scroll to that page on resume.
Adam Cohen268c4752012-06-06 17:47:33 -0700349 private ImageView mFolderIconImageView;
350 private Bitmap mFolderIconBitmap;
351 private Canvas mFolderIconCanvas;
352 private Rect mRectForFolderAnimation = new Rect();
Adam Cohen2801caf2011-05-13 20:57:39 -0700353
Michael Jurkaddd62e92011-02-16 17:49:14 -0800354 private BubbleTextView mWaitingForResume;
355
Adam Cohen59400422014-03-05 18:07:04 -0800356 protected static HashMap<String, CustomAppWidget> sCustomAppWidgets =
357 new HashMap<String, CustomAppWidget>();
358
359 private static final boolean ENABLE_CUSTOM_WIDGET_TEST = false;
360 static {
361 if (ENABLE_CUSTOM_WIDGET_TEST) {
362 sCustomAppWidgets.put(DummyWidget.class.getName(), new DummyWidget());
363 }
364 }
365
Michael Jurkac1f5d262011-09-30 19:32:27 -0700366 private Runnable mBuildLayersRunnable = new Runnable() {
367 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700368 if (mWorkspace != null) {
369 mWorkspace.buildPageHardwareLayers();
370 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700371 }
372 };
373
Adam Cohendb364c32014-05-20 14:23:40 -0700374 private static PendingAddArguments sPendingAddItem;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800375
376 private static class PendingAddArguments {
377 int requestCode;
378 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700379 long container;
Adam Cohendcd297f2013-06-18 13:13:40 -0700380 long screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800381 int cellX;
382 int cellY;
Adam Cohendb364c32014-05-20 14:23:40 -0700383 int appWidgetId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800384 }
385
Daniel Sandlerff02d492013-08-05 02:12:05 -0400386 private Stats mStats;
387
Sunny Goyaldcbcc862014-08-12 15:58:36 -0700388 FocusIndicatorView mFocusHandler;
389
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800390 @Override
391 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700392 if (DEBUG_STRICT_MODE) {
393 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
394 .detectDiskReads()
395 .detectDiskWrites()
396 .detectNetwork() // or .detectAll() for all detectable problems
397 .penaltyLog()
398 .build());
399 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
400 .detectLeakedSqlLiteObjects()
401 .detectLeakedClosableObjects()
402 .penaltyLog()
403 .penaltyDeath()
404 .build());
405 }
406
Adam Cohen9211d422014-10-07 18:14:53 -0700407 if (mLauncherCallbacks != null) {
408 mLauncherCallbacks.preOnCreate();
409 }
410
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800411 super.onCreate(savedInstanceState);
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400412
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400413 LauncherAppState.setApplicationContext(getApplicationContext());
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400414 LauncherAppState app = LauncherAppState.getInstance();
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700415 LauncherAppState.getLauncherProvider().setLauncherProviderChangeListener(this);
Winson Chung6e1c0d32013-10-25 15:24:24 -0700416
Winson Chung5f8afe62013-08-12 16:19:28 -0700417 // Lazy-initialize the dynamic grid
Sunny Goyal33d44382014-10-16 09:24:19 -0700418 DeviceProfile grid = app.initDynamicGrid(this);
Winson Chung5f8afe62013-08-12 16:19:28 -0700419
420 // the LauncherApplication should call this, but in case of Instrumentation it might not be present yet
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400421 mSharedPrefs = getSharedPreferences(LauncherAppState.getSharedPreferencesKey(),
Winson Chungf0c6ae02012-03-21 16:10:31 -0700422 Context.MODE_PRIVATE);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700423 mIsSafeModeEnabled = getPackageManager().isSafeMode();
Joe Onorato0589f0f2010-02-08 13:44:00 -0800424 mModel = app.setLauncher(this);
425 mIconCache = app.getIconCache();
Winson Chunge5467dc2013-10-14 17:03:04 -0700426 mIconCache.flushInvalidIcons(grid);
Joe Onorato41a12d22009-10-31 18:30:00 -0400427 mDragController = new DragController(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800428 mInflater = getLayoutInflater();
Romain Guycbb89e42009-06-08 15:52:54 -0700429
Daniel Sandlerff02d492013-08-05 02:12:05 -0400430 mStats = new Stats(this);
431
Sunny Goyalffe83f12014-08-14 17:39:34 -0700432 mAppWidgetManager = AppWidgetManagerCompat.getInstance(this);
Adam Cohen53805212013-10-01 10:39:23 -0700433
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700434 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
435 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700436
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700437 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
438 // this also ensures that any synchronous binding below doesn't re-trigger another
439 // LauncherModel load.
440 mPaused = false;
441
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800442 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200443 android.os.Debug.startMethodTracing(
444 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800445 }
446
447 checkForLocaleChange();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800448 setContentView(R.layout.launcher);
Michael Jurka7267fa52013-09-26 15:29:57 -0700449
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800450 setupViews();
Cristina Stancu476493b2013-08-07 17:20:14 +0100451 grid.layout(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800452
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800453 registerContentObservers();
454
Joe Onorato7c312c12009-08-13 21:36:53 -0700455 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700456
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800457 mSavedState = savedInstanceState;
458 restoreState(mSavedState);
459
460 if (PROFILE_STARTUP) {
461 android.os.Debug.stopMethodTracing();
462 }
463
464 if (!mRestoring) {
Adam Cohendb78dc82014-06-19 14:50:51 -0700465 if (DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700466 // If the user leaves launcher, then we should just load items asynchronously when
467 // they return.
Derek Prothro7aff3992013-12-10 14:00:37 -0500468 mModel.startLoader(true, PagedView.INVALID_RESTORE_PAGE);
Winson Chung4a2afa32012-07-19 14:53:05 -0700469 } else {
470 // We only load the page synchronously if the user rotates (or triggers a
471 // configuration change) while launcher is in the foreground
Winson Chung9b9fb962013-11-15 15:39:34 -0800472 mModel.startLoader(true, mWorkspace.getRestorePage());
Winson Chung4a2afa32012-07-19 14:53:05 -0700473 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800474 }
475
476 // For handling default keys
477 mDefaultKeySsb = new SpannableStringBuilder();
478 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800479
480 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
481 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800482
Adam Cohenf9426d52012-06-04 17:26:21 -0700483 // On large interfaces, we want the screen to auto-rotate based on the current orientation
484 unlockScreenOrientation(true);
Winson Chungaf40f202013-09-18 18:26:31 -0700485
Adam Cohen9211d422014-10-07 18:14:53 -0700486 if (mLauncherCallbacks != null) {
487 mLauncherCallbacks.onCreate(savedInstanceState);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700488 if (mLauncherCallbacks.hasLauncherOverlay()) {
489 ViewStub stub = (ViewStub) findViewById(R.id.launcher_overlay_stub);
Adam Cohena6d04922014-10-23 17:28:30 -0700490 mLauncherOverlayContainer = (InsettableFrameLayout) stub.inflate();
491 mLauncherOverlay = mLauncherCallbacks.setLauncherOverlayView(
492 mLauncherOverlayContainer, mLauncherOverlayCallbacks);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700493 mWorkspace.setLauncherOverlay(mLauncherOverlay);
494 }
Adam Cohen9211d422014-10-07 18:14:53 -0700495 }
Adam Cohenc3e12c72014-10-31 16:15:36 -0700496
497 if (shouldShowIntroScreen()) {
498 showIntroScreen();
499 } else {
500 showFirstRunActivity();
501 showFirstRunClings();
502 }
Adam Cohen9211d422014-10-07 18:14:53 -0700503 }
504
505 private LauncherCallbacks mLauncherCallbacks;
506
507 public void onPostCreate(Bundle savedInstanceState) {
508 super.onPostCreate(savedInstanceState);
509 if (mLauncherCallbacks != null) {
510 mLauncherCallbacks.onPostCreate(savedInstanceState);
511 }
512 }
513
514 public boolean setLauncherCallbacks(LauncherCallbacks callbacks) {
515 mLauncherCallbacks = callbacks;
516 return true;
Adam Cohenf9426d52012-06-04 17:26:21 -0700517 }
518
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700519 @Override
Adam Cohen9211d422014-10-07 18:14:53 -0700520 public void onLauncherProviderChange() {
521 if (mLauncherCallbacks != null) {
522 mLauncherCallbacks.onLauncherProviderChange();
523 }
524 }
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700525
Adam Cohen9211d422014-10-07 18:14:53 -0700526 /** To be overridden by subclasses to hint to Launcher that we have custom content */
Winson Chung98ca0f72013-07-29 12:58:51 -0700527 protected boolean hasCustomContentToLeft() {
Adam Cohen9211d422014-10-07 18:14:53 -0700528 if (mLauncherCallbacks != null) {
529 return mLauncherCallbacks.hasCustomContentToLeft();
530 }
Winson Chung98ca0f72013-07-29 12:58:51 -0700531 return false;
532 }
533
Dave Hawkeya8881582013-09-17 15:55:33 -0600534 /**
Derek Prothrodadd9842014-01-17 13:43:50 -0500535 * To be overridden by subclasses to populate the custom content container and call
Dave Hawkeya8881582013-09-17 15:55:33 -0600536 * {@link #addToCustomContentPage}. This will only be invoked if
537 * {@link #hasCustomContentToLeft()} is {@code true}.
538 */
Derek Prothrodadd9842014-01-17 13:43:50 -0500539 protected void populateCustomContentContainer() {
Adam Cohen9211d422014-10-07 18:14:53 -0700540 if (mLauncherCallbacks != null) {
541 mLauncherCallbacks.populateCustomContentContainer();
542 }
Dave Hawkeya8881582013-09-17 15:55:33 -0600543 }
544
545 /**
546 * Invoked by subclasses to signal a change to the {@link #addCustomContentToLeft} value to
547 * ensure the custom content page is added or removed if necessary.
548 */
549 protected void invalidateHasCustomContentToLeft() {
Dave Hawkey3a733a72013-09-30 11:52:21 -0600550 if (mWorkspace == null || mWorkspace.getScreenOrder().isEmpty()) {
Dave Hawkeya8881582013-09-17 15:55:33 -0600551 // Not bound yet, wait for bindScreens to be called.
552 return;
553 }
554
555 if (!mWorkspace.hasCustomContent() && hasCustomContentToLeft()) {
556 // Create the custom content page and call the subclass to populate it.
Derek Prothrodadd9842014-01-17 13:43:50 -0500557 mWorkspace.createCustomContentContainer();
558 populateCustomContentContainer();
Dave Hawkeya8881582013-09-17 15:55:33 -0600559 } else if (mWorkspace.hasCustomContent() && !hasCustomContentToLeft()) {
560 mWorkspace.removeCustomContentPage();
561 }
562 }
563
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800564 private void checkForLocaleChange() {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700565 if (sLocaleConfiguration == null) {
566 new AsyncTask<Void, Void, LocaleConfiguration>() {
567 @Override
568 protected LocaleConfiguration doInBackground(Void... unused) {
569 LocaleConfiguration localeConfiguration = new LocaleConfiguration();
570 readConfiguration(Launcher.this, localeConfiguration);
571 return localeConfiguration;
572 }
573
574 @Override
575 protected void onPostExecute(LocaleConfiguration result) {
576 sLocaleConfiguration = result;
577 checkForLocaleChange(); // recursive, but now with a locale configuration
578 }
579 }.execute();
580 return;
581 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700582
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800583 final Configuration configuration = getResources().getConfiguration();
584
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700585 final String previousLocale = sLocaleConfiguration.locale;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800586 final String locale = configuration.locale.toString();
587
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700588 final int previousMcc = sLocaleConfiguration.mcc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800589 final int mcc = configuration.mcc;
590
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700591 final int previousMnc = sLocaleConfiguration.mnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800592 final int mnc = configuration.mnc;
593
Romain Guy84f296c2009-11-04 15:00:44 -0800594 boolean localeChanged = !locale.equals(previousLocale) || mcc != previousMcc || mnc != previousMnc;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800595
Romain Guy84f296c2009-11-04 15:00:44 -0800596 if (localeChanged) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700597 sLocaleConfiguration.locale = locale;
598 sLocaleConfiguration.mcc = mcc;
599 sLocaleConfiguration.mnc = mnc;
Romain Guy98d01652009-06-30 16:21:04 -0700600
Joe Onorato0589f0f2010-02-08 13:44:00 -0800601 mIconCache.flush();
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700602
603 final LocaleConfiguration localeConfiguration = sLocaleConfiguration;
Michael Jurka43467462013-11-14 12:03:58 +0100604 new AsyncTask<Void, Void, Void>() {
605 public Void doInBackground(Void ... args) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700606 writeConfiguration(Launcher.this, localeConfiguration);
Michael Jurka43467462013-11-14 12:03:58 +0100607 return null;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -0700608 }
Michael Jurka43467462013-11-14 12:03:58 +0100609 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
Romain Guy98d01652009-06-30 16:21:04 -0700610 }
611 }
612
613 private static class LocaleConfiguration {
614 public String locale;
615 public int mcc = -1;
616 public int mnc = -1;
617 }
Jason Samsfd22dac2009-09-20 17:24:16 -0700618
Romain Guy98d01652009-06-30 16:21:04 -0700619 private static void readConfiguration(Context context, LocaleConfiguration configuration) {
620 DataInputStream in = null;
621 try {
Helena Josol28db2802014-10-09 17:04:09 +0100622 in = new DataInputStream(context.openFileInput(LauncherFiles.LAUNCHER_PREFERENCES));
Romain Guy98d01652009-06-30 16:21:04 -0700623 configuration.locale = in.readUTF();
624 configuration.mcc = in.readInt();
625 configuration.mnc = in.readInt();
626 } catch (FileNotFoundException e) {
627 // Ignore
628 } catch (IOException e) {
629 // Ignore
630 } finally {
631 if (in != null) {
632 try {
633 in.close();
634 } catch (IOException e) {
635 // Ignore
636 }
637 }
638 }
639 }
640
641 private static void writeConfiguration(Context context, LocaleConfiguration configuration) {
642 DataOutputStream out = null;
643 try {
Helena Josol4fbbb3e2014-10-06 16:06:46 +0100644 out = new DataOutputStream(context.openFileOutput(
Helena Josol28db2802014-10-09 17:04:09 +0100645 LauncherFiles.LAUNCHER_PREFERENCES, MODE_PRIVATE));
Romain Guy98d01652009-06-30 16:21:04 -0700646 out.writeUTF(configuration.locale);
647 out.writeInt(configuration.mcc);
648 out.writeInt(configuration.mnc);
649 out.flush();
650 } catch (FileNotFoundException e) {
651 // Ignore
652 } catch (IOException e) {
653 //noinspection ResultOfMethodCallIgnored
Helena Josol28db2802014-10-09 17:04:09 +0100654 context.getFileStreamPath(LauncherFiles.LAUNCHER_PREFERENCES).delete();
Romain Guy98d01652009-06-30 16:21:04 -0700655 } finally {
656 if (out != null) {
657 try {
658 out.close();
659 } catch (IOException e) {
660 // Ignore
661 }
662 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800663 }
664 }
665
Anton Hanssona2f665f2013-09-26 12:18:32 +0100666 public Stats getStats() {
667 return mStats;
668 }
669
Bjorn Bringertc459e522013-06-07 19:36:01 +0100670 public LayoutInflater getInflater() {
671 return mInflater;
672 }
673
Winson Chung36a62fe2012-05-06 18:04:42 -0700674 boolean isDraggingEnabled() {
675 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
676 // that is subsequently removed from the workspace in startBinding().
677 return !mModel.isLoadingWorkspace();
678 }
679
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800680 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000681 public static int generateViewId() {
Ian Parkinson0c2918f2014-10-06 14:24:31 +0100682 if (Build.VERSION.SDK_INT >= 17) {
683 return View.generateViewId();
684 } else {
685 // View.generateViewId() is not available. The following fallback logic is a copy
686 // of its implementation.
687 for (;;) {
688 final int result = sNextGeneratedId.get();
689 // aapt-generated IDs have the high byte nonzero; clamp to the range under that.
690 int newValue = result + 1;
691 if (newValue > 0x00FFFFFF) newValue = 1; // Roll over to 1, not 0.
692 if (sNextGeneratedId.compareAndSet(result, newValue)) {
693 return result;
694 }
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000695 }
696 }
697 }
698
699 public int getViewIdForItem(ItemInfo info) {
700 // This cast is safe given the > 2B range for int.
701 int itemId = (int) info.id;
702 if (mItemIdToViewId.containsKey(itemId)) {
703 return mItemIdToViewId.get(itemId);
704 }
705 int viewId = generateViewId();
706 mItemIdToViewId.put(itemId, viewId);
707 return viewId;
708 }
709
710 /**
Winson Chung557d6ed2011-07-08 15:34:52 -0700711 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
712 * a configuration step, this allows the proper animations to run after other transitions.
713 */
Adam Cohendb364c32014-05-20 14:23:40 -0700714 private long completeAdd(PendingAddArguments args) {
Adam Cohen83079e42014-09-19 17:43:08 -0700715 long screenId = args.screenId;
716 if (args.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
717 // When the screen id represents an actual screen (as opposed to a rank) we make sure
718 // that the drop page actually exists.
719 screenId = ensurePendingDropLayoutExists(args.screenId);
720 }
Adam Cohendb364c32014-05-20 14:23:40 -0700721
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800722 switch (args.requestCode) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800723 case REQUEST_CREATE_SHORTCUT:
Adam Cohendb364c32014-05-20 14:23:40 -0700724 completeAddShortcut(args.intent, args.container, screenId, args.cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -0700725 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700726 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800727 case REQUEST_CREATE_APPWIDGET:
Adam Cohendb364c32014-05-20 14:23:40 -0700728 completeAddAppWidget(args.appWidgetId, args.container, screenId, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700729 break;
Sunny Goyalff572272014-07-23 13:58:07 -0700730 case REQUEST_RECONFIGURE_APPWIDGET:
731 completeRestoreAppWidget(args.appWidgetId);
732 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800733 }
Michael Jurka27614d22012-04-02 06:40:22 -0700734 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
735 // if you turned the screen off and then back while in All Apps, Launcher would not
736 // return to the workspace. Clearing mAddInfo.container here fixes this issue
737 resetAddInfo();
Adam Cohendb364c32014-05-20 14:23:40 -0700738 return screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800739 }
740
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800741 private void handleActivityResult(
Michael Jurka8b805b12012-04-18 14:23:14 -0700742 final int requestCode, final int resultCode, final Intent data) {
Winson Chunge341d302013-08-16 14:31:00 -0700743 // Reset the startActivity waiting flag
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700744 setWaitingForResult(false);
Adam Cohendb364c32014-05-20 14:23:40 -0700745 final int pendingAddWidgetId = mPendingAddWidgetId;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800746 mPendingAddWidgetId = -1;
Winson Chunge341d302013-08-16 14:31:00 -0700747
Adam Cohenad4e15c2013-10-17 16:21:35 -0700748 Runnable exitSpringLoaded = new Runnable() {
749 @Override
750 public void run() {
751 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
752 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
753 }
754 };
755
Michael Jurka8b805b12012-04-18 14:23:14 -0700756 if (requestCode == REQUEST_BIND_APPWIDGET) {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700757 final int appWidgetId = data != null ?
Michael Jurka8b805b12012-04-18 14:23:14 -0700758 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
759 if (resultCode == RESULT_CANCELED) {
760 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
Adam Cohen689ff162014-05-08 17:27:56 -0700761 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700762 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
Michael Jurka8b805b12012-04-18 14:23:14 -0700763 } else if (resultCode == RESULT_OK) {
Sunny Goyal8f9a7872015-01-16 16:14:29 -0800764 addAppWidgetImpl(appWidgetId, mPendingAddInfo, null,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700765 mPendingAddWidgetInfo, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
Michael Jurka8b805b12012-04-18 14:23:14 -0700766 }
767 return;
Michael Jurka336fd4f2013-09-12 00:05:02 +0200768 } else if (requestCode == REQUEST_PICK_WALLPAPER) {
769 if (resultCode == RESULT_OK && mWorkspace.isInOverviewMode()) {
770 mWorkspace.exitOverviewMode(false);
771 }
772 return;
Michael Jurka8b805b12012-04-18 14:23:14 -0700773 }
Michael Jurka336fd4f2013-09-12 00:05:02 +0200774
Adam Cohened66b2b2012-01-23 17:28:51 -0800775 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
776 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700777
Adam Cohendb364c32014-05-20 14:23:40 -0700778 final boolean workspaceLocked = isWorkspaceLocked();
Adam Cohened66b2b2012-01-23 17:28:51 -0800779 // We have special handling for widgets
780 if (isWidgetDrop) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800781 final int appWidgetId;
782 int widgetId = data != null ? data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1)
783 : -1;
784 if (widgetId < 0) {
785 appWidgetId = pendingAddWidgetId;
786 } else {
787 appWidgetId = widgetId;
788 }
789
Adam Cohenad4e15c2013-10-17 16:21:35 -0700790 final int result;
Adam Cohenf0129b12013-11-04 17:57:36 -0800791 if (appWidgetId < 0 || resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700792 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not " +
793 "returned from the widget configuration activity.");
Adam Cohenad4e15c2013-10-17 16:21:35 -0700794 result = RESULT_CANCELED;
795 completeTwoStageWidgetDrop(result, appWidgetId);
Adam Cohendb364c32014-05-20 14:23:40 -0700796 final Runnable onComplete = new Runnable() {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700797 @Override
798 public void run() {
799 exitSpringLoadedDragModeDelayed(false, 0, null);
800 }
801 };
Adam Cohendb364c32014-05-20 14:23:40 -0700802 if (workspaceLocked) {
803 // No need to remove the empty screen if we're mid-binding, as the
804 // the bind will not add the empty screen.
805 mWorkspace.postDelayed(onComplete, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
806 } else {
807 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
808 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
809 }
Winson Chung5aaab772012-04-27 15:24:02 -0700810 } else {
Adam Cohendb364c32014-05-20 14:23:40 -0700811 if (!workspaceLocked) {
Adam Cohen83079e42014-09-19 17:43:08 -0700812 if (mPendingAddInfo.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
813 // When the screen id represents an actual screen (as opposed to a rank)
814 // we make sure that the drop page actually exists.
815 mPendingAddInfo.screenId =
816 ensurePendingDropLayoutExists(mPendingAddInfo.screenId);
817 }
Adam Cohendb364c32014-05-20 14:23:40 -0700818 final CellLayout dropLayout = mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
819
820 dropLayout.setDropPending(true);
821 final Runnable onComplete = new Runnable() {
822 @Override
823 public void run() {
824 completeTwoStageWidgetDrop(resultCode, appWidgetId);
825 dropLayout.setDropPending(false);
826 }
827 };
828 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
829 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
830 } else {
831 PendingAddArguments args = preparePendingAddArgs(requestCode, data, appWidgetId,
832 mPendingAddInfo);
833 sPendingAddItem = args;
834 }
Winson Chung5aaab772012-04-27 15:24:02 -0700835 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800836 return;
837 }
838
Sunny Goyalff572272014-07-23 13:58:07 -0700839 if (requestCode == REQUEST_RECONFIGURE_APPWIDGET) {
840 if (resultCode == RESULT_OK) {
841 // Update the widget view.
842 PendingAddArguments args = preparePendingAddArgs(requestCode, data,
843 pendingAddWidgetId, mPendingAddInfo);
844 if (workspaceLocked) {
845 sPendingAddItem = args;
846 } else {
847 completeAdd(args);
848 }
849 }
850 // Leave the widget in the pending state if the user canceled the configure.
851 return;
852 }
853
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800854 // The pattern used here is that a user PICKs a specific application,
855 // which, depending on the target, might need to CREATE the actual target.
Romain Guycbb89e42009-06-08 15:52:54 -0700856
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800857 // For example, the user would PICK_SHORTCUT for "Music playlist", and we
858 // launch over to the Music app to actually CREATE_SHORTCUT.
Winson Chungc7da5552011-08-10 15:28:45 -0700859 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
Adam Cohendb364c32014-05-20 14:23:40 -0700860 final PendingAddArguments args = preparePendingAddArgs(requestCode, data, -1,
861 mPendingAddInfo);
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800862 if (isWorkspaceLocked()) {
Adam Cohendb364c32014-05-20 14:23:40 -0700863 sPendingAddItem = args;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800864 } else {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700865 completeAdd(args);
Adam Cohendb364c32014-05-20 14:23:40 -0700866 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
867 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800868 }
Adam Cohen00074722013-10-11 17:46:09 -0700869 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen689ff162014-05-08 17:27:56 -0700870 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700871 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800872 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800873 mDragLayer.clearAnimatedView();
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800874
875 }
876
877 @Override
878 protected void onActivityResult(
879 final int requestCode, final int resultCode, final Intent data) {
880 handleActivityResult(requestCode, resultCode, data);
881 if (mLauncherCallbacks != null) {
882 mLauncherCallbacks.onActivityResult(requestCode, resultCode, data);
883 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800884 }
885
Adam Cohendb364c32014-05-20 14:23:40 -0700886 private PendingAddArguments preparePendingAddArgs(int requestCode, Intent data, int
887 appWidgetId, ItemInfo info) {
888 PendingAddArguments args = new PendingAddArguments();
889 args.requestCode = requestCode;
890 args.intent = data;
891 args.container = info.container;
892 args.screenId = info.screenId;
893 args.cellX = info.cellX;
894 args.cellY = info.cellY;
895 args.appWidgetId = appWidgetId;
896 return args;
897 }
898
899 /**
900 * Check to see if a given screen id exists. If not, create it at the end, return the new id.
901 *
902 * @param screenId the screen id to check
903 * @return the new screen, or screenId if it exists
904 */
905 private long ensurePendingDropLayoutExists(long screenId) {
906 CellLayout dropLayout =
907 (CellLayout) mWorkspace.getScreenWithId(screenId);
908 if (dropLayout == null) {
909 // it's possible that the add screen was removed because it was
910 // empty and a re-bind occurred
911 mWorkspace.addExtraEmptyScreen();
912 return mWorkspace.commitExtraEmptyScreen();
913 } else {
914 return screenId;
915 }
916 }
917
Adam Cohened66b2b2012-01-23 17:28:51 -0800918 private void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700919 CellLayout cellLayout =
Adam Cohendcd297f2013-06-18 13:13:40 -0700920 (CellLayout) mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800921 Runnable onCompleteRunnable = null;
922 int animationType = 0;
923
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700924 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800925 if (resultCode == RESULT_OK) {
926 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
927 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700928 mPendingAddWidgetInfo);
929 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800930 onCompleteRunnable = new Runnable() {
931 @Override
932 public void run() {
933 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700934 mPendingAddInfo.screenId, layout, null);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700935 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
936 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
Adam Cohened66b2b2012-01-23 17:28:51 -0800937 }
938 };
939 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800940 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800941 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
Adam Cohened66b2b2012-01-23 17:28:51 -0800942 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700943 if (mDragLayer.getAnimatedView() != null) {
944 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
945 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
946 animationType, boundWidget, true);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700947 } else if (onCompleteRunnable != null) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700948 // The animated view may be null in the case of a rotation during widget configuration
949 onCompleteRunnable.run();
950 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800951 }
952
953 @Override
Michael Jurkacd496d72013-04-11 11:32:45 -0700954 protected void onStop() {
955 super.onStop();
956 FirstFrameAnimatorHelper.setIsVisible(false);
Adam Cohen9211d422014-10-07 18:14:53 -0700957
958 if (mLauncherCallbacks != null) {
959 mLauncherCallbacks.onStop();
960 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700961 }
962
963 @Override
964 protected void onStart() {
965 super.onStart();
966 FirstFrameAnimatorHelper.setIsVisible(true);
Adam Cohen9211d422014-10-07 18:14:53 -0700967
968 if (mLauncherCallbacks != null) {
969 mLauncherCallbacks.onStart();
970 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700971 }
972
973 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800974 protected void onResume() {
Michael Jurka447bf842013-05-15 14:52:15 +0200975 long startTime = 0;
976 if (DEBUG_RESUME_TIME) {
977 startTime = System.currentTimeMillis();
Daniel Sandler924b9932013-06-12 00:38:25 -0400978 Log.v(TAG, "Launcher.onResume()");
Michael Jurka447bf842013-05-15 14:52:15 +0200979 }
Adam Cohen9211d422014-10-07 18:14:53 -0700980
981 if (mLauncherCallbacks != null) {
982 mLauncherCallbacks.preOnResume();
983 }
984
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800985 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700986
Winson Chung4a2afa32012-07-19 14:53:05 -0700987 // Restore the previous launcher state
988 if (mOnResumeState == State.WORKSPACE) {
989 showWorkspace(false);
990 } else if (mOnResumeState == State.APPS_CUSTOMIZE) {
Winson Chung07e045c2013-11-06 15:49:51 -0800991 showAllApps(false, mAppsCustomizeContent.getContentType(), false);
Winson Chung4a2afa32012-07-19 14:53:05 -0700992 }
993 mOnResumeState = State.NONE;
994
Craig Mautner360310b2012-10-26 15:13:08 -0700995 // Background was set to gradient in onPause(), restore to black if in all apps.
996 setWorkspaceBackground(mState == State.WORKSPACE);
997
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800998 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700999 if (mRestoring || mOnResumeNeedsLoad) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001000 setWorkspaceLoading(true);
Derek Prothro7aff3992013-12-10 14:00:37 -05001001 mModel.startLoader(true, PagedView.INVALID_RESTORE_PAGE);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001002 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001003 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001004 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001005 if (mBindOnResumeCallbacks.size() > 0) {
Michael Jurkac402cd92013-05-20 15:49:32 +02001006 // We might have postponed some bind calls until onResume (see waitUntilResume) --
1007 // execute them here
1008 long startTimeCallbacks = 0;
1009 if (DEBUG_RESUME_TIME) {
1010 startTimeCallbacks = System.currentTimeMillis();
1011 }
1012
1013 if (mAppsCustomizeContent != null) {
1014 mAppsCustomizeContent.setBulkBind(true);
1015 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001016 for (int i = 0; i < mBindOnResumeCallbacks.size(); i++) {
1017 mBindOnResumeCallbacks.get(i).run();
Michael Jurkac402cd92013-05-20 15:49:32 +02001018 }
1019 if (mAppsCustomizeContent != null) {
1020 mAppsCustomizeContent.setBulkBind(false);
1021 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001022 mBindOnResumeCallbacks.clear();
Michael Jurkac402cd92013-05-20 15:49:32 +02001023 if (DEBUG_RESUME_TIME) {
1024 Log.d(TAG, "Time spent processing callbacks in onResume: " +
1025 (System.currentTimeMillis() - startTimeCallbacks));
1026 }
Michael Jurka447bf842013-05-15 14:52:15 +02001027 }
Michael Jurka54554252013-08-01 12:52:23 +02001028 if (mOnResumeCallbacks.size() > 0) {
1029 for (int i = 0; i < mOnResumeCallbacks.size(); i++) {
1030 mOnResumeCallbacks.get(i).run();
1031 }
1032 mOnResumeCallbacks.clear();
1033 }
Winson Chunge4e50662012-01-23 14:45:13 -08001034
1035 // Reset the pressed state of icons that were locked in the press state while activities
1036 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -08001037 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -08001038 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -08001039 mWaitingForResume.setStayPressed(false);
1040 }
Winson Chung82963d52013-10-09 11:20:57 -07001041
Adam Cohen06dff352012-06-01 17:17:08 -07001042 // It is possible that widgets can receive updates while launcher is not in the foreground.
1043 // Consequently, the widgets will be inflated in the orientation of the foreground activity
1044 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
1045 // orientation.
Adam Cohen3d509322012-06-06 14:10:04 -07001046 getWorkspace().reinflateWidgetsIfNecessary();
Adam Cohenf9426d52012-06-04 17:26:21 -07001047
Winson Chung780fe592013-09-26 14:48:44 -07001048 // Process any items that were added while Launcher was away.
1049 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
1050
Michael Jurka447bf842013-05-15 14:52:15 +02001051 if (DEBUG_RESUME_TIME) {
1052 Log.d(TAG, "Time spent in onResume: " + (System.currentTimeMillis() - startTime));
1053 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001054
1055 if (mWorkspace.getCustomContentCallbacks() != null) {
1056 // If we are resuming and the custom content is the current page, we call onShow().
1057 // It is also poassible that onShow will instead be called slightly after first layout
1058 // if PagedView#setRestorePage was set to the custom content page in onCreate().
1059 if (mWorkspace.isOnOrMovingToCustomContent()) {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001060 mWorkspace.getCustomContentCallbacks().onShow(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001061 }
1062 }
Adam Cohenedaaa302013-10-01 17:33:27 -07001063 mWorkspace.updateInteractionForState();
Adam Cohen53805212013-10-01 10:39:23 -07001064 mWorkspace.onResume();
Sunny Goyale755d462014-07-22 13:48:29 -07001065
1066 PackageInstallerCompat.getInstance(this).onResume();
Adam Cohen9211d422014-10-07 18:14:53 -07001067
1068 if (mLauncherCallbacks != null) {
1069 mLauncherCallbacks.onResume();
1070 }
Adam Cohen06dff352012-06-01 17:17:08 -07001071 }
1072
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001073 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001074 protected void onPause() {
Winson Chung997a9232013-07-24 15:33:46 -07001075 // Ensure that items added to Launcher are queued until Launcher returns
1076 InstallShortcutReceiver.enableInstallQueue();
Sunny Goyale755d462014-07-22 13:48:29 -07001077 PackageInstallerCompat.getInstance(this).onPause();
Winson Chung997a9232013-07-24 15:33:46 -07001078
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001079 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001080 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -08001081 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -07001082 mDragController.resetLastGestureUpTime();
Adam Cohen6fecd412013-10-02 17:41:50 -07001083
1084 // We call onHide() aggressively. The custom content callbacks should be able to
1085 // debounce excess onHide calls.
1086 if (mWorkspace.getCustomContentCallbacks() != null) {
1087 mWorkspace.getCustomContentCallbacks().onHide();
1088 }
Romain Guycbb89e42009-06-08 15:52:54 -07001089
Adam Cohen9211d422014-10-07 18:14:53 -07001090 if (mLauncherCallbacks != null) {
1091 mLauncherCallbacks.onPause();
Adam Cohenbffe7452013-07-22 18:21:45 -07001092 }
Adam Cohenbffe7452013-07-22 18:21:45 -07001093 }
1094
1095 public interface CustomContentCallbacks {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001096 // Custom content is completely shown. {@code fromResume} indicates whether this was caused
1097 // by a onResume or by scrolling otherwise.
1098 public void onShow(boolean fromResume);
Adam Cohenbffe7452013-07-22 18:21:45 -07001099
1100 // Custom content is completely hidden
1101 public void onHide();
Adam Cohenc36fa5c2013-08-29 11:54:42 -07001102
1103 // Custom content scroll progress changed. From 0 (not showing) to 1 (fully showing).
1104 public void onScrollProgressChanged(float progress);
Jan-Willem Maarse2ff91c42014-07-10 15:58:12 -07001105
1106 // Indicates whether the user is allowed to scroll away from the custom content.
1107 boolean isScrollingAllowed();
Adam Cohenbffe7452013-07-22 18:21:45 -07001108 }
1109
Adam Cohenc2d6e892014-10-16 09:49:24 -07001110 public interface LauncherOverlay {
1111
1112 /**
1113 * Touch interaction leading to overscroll has begun
1114 */
1115 public void onScrollInteractionBegin();
1116
1117 /**
1118 * Touch interaction related to overscroll has ended
1119 */
1120 public void onScrollInteractionEnd();
1121
1122 /**
1123 * Scroll progress, between 0 and 100, when the user scrolls beyond the leftmost
1124 * screen (or in the case of RTL, the rightmost screen).
1125 */
1126 public void onScrollChange(int progress, boolean rtl);
1127
1128 /**
1129 * Screen has stopped scrolling
1130 */
1131 public void onScrollSettled();
1132
1133 /**
1134 * This method can be called by the Launcher in order to force the LauncherOverlay
1135 * to exit fully immersive mode.
1136 */
1137 public void forceExitFullImmersion();
1138 }
1139
1140 public interface LauncherOverlayCallbacks {
1141 /**
1142 * This method indicates whether a call to {@link #enterFullImmersion()} will succeed,
1143 * however it doesn't modify any state within the launcher.
1144 */
1145 public boolean canEnterFullImmersion();
1146
1147 /**
1148 * Should be called to tell Launcher that the LauncherOverlay will take over interaction,
1149 * eg. by occupying the full screen and handling all touch events.
1150 *
1151 * @return true if Launcher allows the LauncherOverlay to become fully immersive. In this
1152 * case, Launcher will modify any necessary state and assumes the overlay is
1153 * handling all interaction. If false, the LauncherOverlay should cancel any
1154 *
1155 */
1156 public boolean enterFullImmersion();
1157
1158 /**
1159 * Must be called when exiting fully immersive mode. Indicates to Launcher that it has
1160 * full control over UI and state.
1161 */
1162 public void exitFullImmersion();
1163 }
1164
1165 class LauncherOverlayCallbacksImpl implements LauncherOverlayCallbacks {
1166
1167 @Override
1168 public boolean canEnterFullImmersion() {
1169 return mState == State.WORKSPACE;
1170 }
1171
1172 @Override
1173 public boolean enterFullImmersion() {
1174 if (mState == State.WORKSPACE) {
1175 // When fully immersed, disregard any touches which fall through.
1176 mDragLayer.setBlockTouch(true);
1177 return true;
1178 }
1179 return false;
1180 }
1181
1182 @Override
1183 public void exitFullImmersion() {
1184 mDragLayer.setBlockTouch(false);
1185 }
1186 }
1187
Jorim Jaggid017f882014-01-14 17:08:48 -08001188 protected boolean hasSettings() {
Adam Cohen9211d422014-10-07 18:14:53 -07001189 if (mLauncherCallbacks != null) {
1190 return mLauncherCallbacks.hasSettings();
1191 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001192 return false;
1193 }
1194
Adam Cohenbffe7452013-07-22 18:21:45 -07001195
Adam Cohen9211d422014-10-07 18:14:53 -07001196 public void addToCustomContentPage(View customContent,
Adam Cohen53805212013-10-01 10:39:23 -07001197 CustomContentCallbacks callbacks, String description) {
1198 mWorkspace.addToCustomContentPage(customContent, callbacks, description);
Adam Cohen66a01fd2013-06-11 12:48:00 -07001199 }
1200
Adam Cohenedb40762013-07-18 16:45:45 -07001201 // The custom content needs to offset its content to account for the QSB
1202 public int getTopOffsetForCustomContent() {
1203 return mWorkspace.getPaddingTop();
1204 }
1205
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001206 @Override
1207 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001208 // Flag the loader to stop early before switching
Adam Cohen1a85c582014-09-30 09:48:49 -07001209 if (mModel.isCurrentCallbacks(this)) {
1210 mModel.stopLoader();
1211 }
Winson Chung785d2eb2011-04-14 16:08:02 -07001212 if (mAppsCustomizeContent != null) {
1213 mAppsCustomizeContent.surrender();
1214 }
Romain Guy13c2e7b2010-03-10 19:45:00 -08001215 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001216 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001217
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001218 // We can't hide the IME if it was forced open. So don't bother
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001219 @Override
1220 public void onWindowFocusChanged(boolean hasFocus) {
1221 super.onWindowFocusChanged(hasFocus);
Adam Cohened307df2013-10-02 09:37:31 -07001222 mHasFocus = hasFocus;
Adam Cohen9211d422014-10-07 18:14:53 -07001223
1224 if (mLauncherCallbacks != null) {
1225 mLauncherCallbacks.onWindowFocusChanged(hasFocus);
1226 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001227 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001228
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001229 private boolean acceptFilter() {
1230 final InputMethodManager inputManager = (InputMethodManager)
1231 getSystemService(Context.INPUT_METHOD_SERVICE);
1232 return !inputManager.isFullscreenMode();
1233 }
1234
1235 @Override
1236 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -07001237 final int uniChar = event.getUnicodeChar();
1238 final boolean handled = super.onKeyDown(keyCode, event);
1239 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
1240 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001241 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
1242 keyCode, event);
1243 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001244 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -07001245 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -07001246 // showSearchDialog()
1247 // If there are multiple keystrokes before the search dialog takes focus,
1248 // onSearchRequested() will be called for every keystroke,
1249 // but it is idempotent, so it's fine.
1250 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001251 }
1252 }
1253
Joe Onorato8a9625e2010-01-28 15:55:35 -08001254 // Eat the long press event so the keyboard doesn't come up.
1255 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
1256 return true;
1257 }
1258
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001259 return handled;
1260 }
1261
Karl Rosaen138a0412009-04-23 19:00:21 -07001262 private String getTypedText() {
1263 return mDefaultKeySsb.toString();
1264 }
1265
1266 private void clearTypedText() {
1267 mDefaultKeySsb.clear();
1268 mDefaultKeySsb.clearSpans();
1269 Selection.setSelection(mDefaultKeySsb, 0);
1270 }
1271
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001272 /**
Michael Jurka883f55b2010-10-21 15:47:14 -07001273 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
1274 * State
1275 */
1276 private static State intToState(int stateOrdinal) {
1277 State state = State.WORKSPACE;
1278 final State[] stateValues = State.values();
1279 for (int i = 0; i < stateValues.length; i++) {
1280 if (stateValues[i].ordinal() == stateOrdinal) {
1281 state = stateValues[i];
1282 break;
1283 }
1284 }
1285 return state;
1286 }
1287
1288 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001289 * Restores the previous state, if it exists.
1290 *
1291 * @param savedState The previous state.
1292 */
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001293 @SuppressWarnings("unchecked")
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001294 private void restoreState(Bundle savedState) {
1295 if (savedState == null) {
1296 return;
1297 }
1298
Michael Jurka883f55b2010-10-21 15:47:14 -07001299 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungf0ea4d32011-06-06 14:27:16 -07001300 if (state == State.APPS_CUSTOMIZE) {
Winson Chung4a2afa32012-07-19 14:53:05 -07001301 mOnResumeState = State.APPS_CUSTOMIZE;
Joe Onorato3a8820b2009-11-10 15:06:42 -08001302 }
1303
Adam Cohen21cd0022013-10-09 18:57:02 -07001304 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN,
1305 PagedView.INVALID_RESTORE_PAGE);
1306 if (currentScreen != PagedView.INVALID_RESTORE_PAGE) {
Winson Chung8c87cd82013-07-23 16:20:10 -07001307 mWorkspace.setRestorePage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001308 }
1309
Winson Chung3d503fb2011-07-13 17:25:49 -07001310 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
Adam Cohendcd297f2013-06-18 13:13:40 -07001311 final long pendingAddScreen = savedState.getLong(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001312
Winson Chung3d503fb2011-07-13 17:25:49 -07001313 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
1314 mPendingAddInfo.container = pendingAddContainer;
Adam Cohendcd297f2013-06-18 13:13:40 -07001315 mPendingAddInfo.screenId = pendingAddScreen;
Winson Chung3d503fb2011-07-13 17:25:49 -07001316 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
1317 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001318 mPendingAddInfo.spanX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_X);
1319 mPendingAddInfo.spanY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y);
Adam Cohenb823ae42015-03-27 18:07:52 -07001320 AppWidgetProviderInfo info = savedState.getParcelable(
1321 RUNTIME_STATE_PENDING_ADD_WIDGET_INFO);
Sunny Goyala6095962015-05-12 13:30:07 -07001322 mPendingAddWidgetInfo = info == null ?
1323 null : LauncherAppWidgetProviderInfo.fromProviderInfo(this, info);
1324
Adam Cohen4637b5a2013-11-04 18:21:24 -08001325 mPendingAddWidgetId = savedState.getInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID);
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001326 setWaitingForResult(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001327 mRestoring = true;
1328 }
1329
1330 boolean renameFolder = savedState.getBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, false);
1331 if (renameFolder) {
1332 long id = savedState.getLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07001333 mFolderInfo = mModel.getFolderById(this, sFolders, id);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001334 mRestoring = true;
1335 }
Winson Chunga12a2502010-12-20 14:41:35 -08001336
Winson Chung785d2eb2011-04-14 16:08:02 -07001337 // Restore the AppsCustomize tab
1338 if (mAppsCustomizeTabHost != null) {
1339 String curTab = savedState.getString("apps_customize_currentTab");
1340 if (curTab != null) {
Winson Chungc93e5ae2012-07-23 20:48:26 -07001341 mAppsCustomizeTabHost.setContentTypeImmediate(
Winson Chung785d2eb2011-04-14 16:08:02 -07001342 mAppsCustomizeTabHost.getContentTypeForTabTag(curTab));
Winson Chungf314b0e2011-08-16 11:54:27 -07001343 mAppsCustomizeContent.loadAssociatedPages(
1344 mAppsCustomizeContent.getCurrentPage());
Winson Chung785d2eb2011-04-14 16:08:02 -07001345 }
1346
Winson Chung5afbf7b2011-07-25 11:53:08 -07001347 int currentIndex = savedState.getInt("apps_customize_currentIndex");
1348 mAppsCustomizeContent.restorePageForIndex(currentIndex);
Winson Chung785d2eb2011-04-14 16:08:02 -07001349 }
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001350 mItemIdToViewId = (HashMap<Integer, Integer>)
1351 savedState.getSerializable(RUNTIME_STATE_VIEW_IDS);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001352 }
1353
1354 /**
1355 * Finds all the views we need and configure them properly.
1356 */
1357 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -07001358 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -04001359
Craig Mautner360310b2012-10-26 15:13:08 -07001360 mLauncherView = findViewById(R.id.launcher);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001361 mFocusHandler = (FocusIndicatorView) findViewById(R.id.focus_indicator);
Winson Chung4c98d922011-05-31 16:50:48 -07001362 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
1363 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Anjali Koppalf5d29132014-02-28 13:33:27 -08001364 mWorkspace.setPageSwitchListener(this);
Winson Chunga6945242014-01-08 14:04:34 -08001365 mPageIndicators = mDragLayer.findViewById(R.id.page_indicator);
Craig Mautner360310b2012-10-26 15:13:08 -07001366
John Spurlock77e1f472013-09-11 10:09:51 -04001367 mLauncherView.setSystemUiVisibility(
1368 View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
Craig Mautner360310b2012-10-26 15:13:08 -07001369 mWorkspaceBackgroundDrawable = getResources().getDrawable(R.drawable.workspace_bg);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001370
Winson Chung4c98d922011-05-31 16:50:48 -07001371 // Setup the drag layer
1372 mDragLayer.setup(this, dragController);
1373
Winson Chung3d503fb2011-07-13 17:25:49 -07001374 // Setup the hotseat
1375 mHotseat = (Hotseat) findViewById(R.id.hotseat);
1376 if (mHotseat != null) {
1377 mHotseat.setup(this);
Winson Chung11a1a532013-09-13 11:14:45 -07001378 mHotseat.setOnLongClickListener(this);
Winson Chung3d503fb2011-07-13 17:25:49 -07001379 }
1380
Jorim Jaggid017f882014-01-14 17:08:48 -08001381 mOverviewPanel = (ViewGroup) findViewById(R.id.overview_panel);
Adam Cohen61f560d2013-09-30 15:58:20 -07001382 View widgetButton = findViewById(R.id.widget_button);
1383 widgetButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001384 @Override
1385 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001386 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001387 onClickAddWidgetButton(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001388 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001389 }
1390 });
Adam Cohen61f560d2013-09-30 15:58:20 -07001391 widgetButton.setOnTouchListener(getHapticFeedbackTouchListener());
1392
1393 View wallpaperButton = findViewById(R.id.wallpaper_button);
1394 wallpaperButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001395 @Override
1396 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001397 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001398 onClickWallpaperPicker(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001399 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001400 }
1401 });
Adam Cohen61f560d2013-09-30 15:58:20 -07001402 wallpaperButton.setOnTouchListener(getHapticFeedbackTouchListener());
1403
1404 View settingsButton = findViewById(R.id.settings_button);
Jorim Jaggid017f882014-01-14 17:08:48 -08001405 if (hasSettings()) {
1406 settingsButton.setOnClickListener(new OnClickListener() {
1407 @Override
1408 public void onClick(View arg0) {
1409 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001410 onClickSettingsButton(arg0);
Jorim Jaggid017f882014-01-14 17:08:48 -08001411 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08001412 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001413 });
1414 settingsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1415 } else {
1416 settingsButton.setVisibility(View.GONE);
Jorim Jaggid017f882014-01-14 17:08:48 -08001417 }
1418
Adam Cohendbdff6b2013-09-18 19:09:15 -07001419 mOverviewPanel.setAlpha(0f);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001420
Winson Chung4c98d922011-05-31 16:50:48 -07001421 // Setup the workspace
1422 mWorkspace.setHapticFeedbackEnabled(false);
1423 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -07001424 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -07001425 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001426
Winson Chungf0ea4d32011-06-06 14:27:16 -07001427 // Get the search/delete bar
Adam Cohen24ce0b32014-01-14 16:18:14 -08001428 mSearchDropTargetBar = (SearchDropTargetBar)
1429 mDragLayer.findViewById(R.id.search_drop_target_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001430
Winson Chungf0ea4d32011-06-06 14:27:16 -07001431 // Setup AppsCustomize
Craig Mautner360310b2012-10-26 15:13:08 -07001432 mAppsCustomizeTabHost = (AppsCustomizeTabHost) findViewById(R.id.apps_customize_pane);
Winson Chungf0ea4d32011-06-06 14:27:16 -07001433 mAppsCustomizeContent = (AppsCustomizePagedView)
1434 mAppsCustomizeTabHost.findViewById(R.id.apps_customize_pane_content);
1435 mAppsCustomizeContent.setup(this, dragController);
Craig Mautner360310b2012-10-26 15:13:08 -07001436
Winson Chung3d503fb2011-07-13 17:25:49 -07001437 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -07001438 dragController.setDragScoller(mWorkspace);
1439 dragController.setScrollView(mDragLayer);
1440 dragController.setMoveTarget(mWorkspace);
1441 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -07001442 if (mSearchDropTargetBar != null) {
1443 mSearchDropTargetBar.setup(this, dragController);
Sunny Goyal594d76d2014-11-06 10:12:54 -08001444 mSearchDropTargetBar.setQsbSearchBar(getQsbBar());
Michael Jurkae0f5a612011-02-07 16:45:41 -08001445 }
Daniel Sandler924b9932013-06-12 00:38:25 -04001446
Daniel Sandlera127b7a2013-06-17 14:25:46 -04001447 if (getResources().getBoolean(R.bool.debug_memory_enabled)) {
Daniel Sandler924b9932013-06-12 00:38:25 -04001448 Log.v(TAG, "adding WeightWatcher");
Adam Cohen39a06042013-07-19 14:30:12 -07001449 mWeightWatcher = new WeightWatcher(this);
1450 mWeightWatcher.setAlpha(0.5f);
1451 ((FrameLayout) mLauncherView).addView(mWeightWatcher,
Daniel Sandler924b9932013-06-12 00:38:25 -04001452 new FrameLayout.LayoutParams(
1453 FrameLayout.LayoutParams.MATCH_PARENT,
Daniel Sandlerb9eb2862013-06-14 20:17:30 -04001454 FrameLayout.LayoutParams.WRAP_CONTENT,
Daniel Sandler924b9932013-06-12 00:38:25 -04001455 Gravity.BOTTOM)
1456 );
Adam Cohen39a06042013-07-19 14:30:12 -07001457
1458 boolean show = shouldShowWeightWatcher();
1459 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
Daniel Sandler924b9932013-06-12 00:38:25 -04001460 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001461 }
1462
1463 /**
Anjali Koppal5ad44842014-03-10 20:34:39 -07001464 * Sets the all apps button. This method is called from {@link Hotseat}.
1465 */
1466 public void setAllAppsButton(View allAppsButton) {
1467 mAllAppsButton = allAppsButton;
1468 }
1469
1470 public View getAllAppsButton() {
1471 return mAllAppsButton;
1472 }
1473
1474 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001475 * Creates a view representing a shortcut.
1476 *
1477 * @param info The data structure describing the shortcut.
1478 *
1479 * @return A View inflated from R.layout.application.
1480 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001481 View createShortcut(ShortcutInfo info) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001482 return createShortcut(R.layout.application,
Michael Jurka0142d492010-08-25 17:46:15 -07001483 (ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001484 }
1485
1486 /**
1487 * Creates a view representing a shortcut inflated from the specified resource.
1488 *
1489 * @param layoutResId The id of the XML layout used to create the shortcut.
1490 * @param parent The group the shortcut belongs to.
1491 * @param info The data structure describing the shortcut.
1492 *
1493 * @return A View inflated from layoutResId.
1494 */
Adam Cohen59400422014-03-05 18:07:04 -08001495 public View createShortcut(int layoutResId, ViewGroup parent, ShortcutInfo info) {
Michael Jurka67b2f6c2010-11-17 12:33:46 -08001496 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(layoutResId, parent, false);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07001497 favorite.applyFromShortcutInfo(info, mIconCache, true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001498 favorite.setOnClickListener(this);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001499 favorite.setOnFocusChangeListener(mFocusHandler);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001500 return favorite;
1501 }
1502
1503 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001504 * Add a shortcut to the workspace.
1505 *
1506 * @param data The intent describing the shortcut.
1507 * @param cellInfo The position on screen where to create the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001508 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001509 private void completeAddShortcut(Intent data, long container, long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07001510 int cellY) {
1511 int[] cellXY = mTmpAddItemCellCoordinates;
1512 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohendcd297f2013-06-18 13:13:40 -07001513 CellLayout layout = getCellLayout(container, screenId);
Romain Guycbb89e42009-06-08 15:52:54 -07001514
Michael Jurkad3ef3062010-11-23 16:23:58 -08001515 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001516
Sunny Goyal2350bc92014-10-14 16:42:54 -07001517 ShortcutInfo info = mModel.infoFromShortcutIntent(this, data);
Adam Cohend9198822011-11-22 16:42:47 -08001518 if (info == null) {
1519 return;
1520 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001521 final View view = createShortcut(info);
1522
Adam Cohenfbba09b2011-07-18 21:43:05 -07001523 // First we check if we already know the exact location where we want to add this item.
1524 if (cellX >= 0 && cellY >= 0) {
1525 cellXY[0] = cellX;
1526 cellXY[1] = cellY;
1527 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001528
1529 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001530 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001531 true, null,null)) {
1532 return;
1533 }
1534 DragObject dragObject = new DragObject();
1535 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001536 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1537 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001538 return;
1539 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001540 } else if (touchXY != null) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08001541 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001542 int[] result = layout.findNearestVacantArea(touchXY[0], touchXY[1], 1, 1, cellXY);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001543 foundCellSpan = (result != null);
1544 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001545 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001546 }
1547
1548 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001549 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001550 return;
1551 }
1552
Adam Cohendcd297f2013-06-18 13:13:40 -07001553 LauncherModel.addItemToDatabase(this, info, container, screenId, cellXY[0], cellXY[1], false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001554
1555 if (!mRestoring) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001556 mWorkspace.addInScreen(view, container, screenId, cellXY[0], cellXY[1], 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07001557 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001558 }
1559 }
1560
Adam Cohen2f093b62012-04-30 18:59:53 -07001561 static int[] getSpanForWidget(Context context, ComponentName component, int minWidth,
1562 int minHeight) {
1563 Rect padding = AppWidgetHostView.getDefaultPaddingForWidget(context, component, null);
Adam Cohenf814aa02011-09-01 13:48:05 -07001564 // We want to account for the extra amount of padding that we are adding to the widget
1565 // to ensure that it gets the full amount of space that it has requested
1566 int requiredWidth = minWidth + padding.left + padding.right;
1567 int requiredHeight = minHeight + padding.top + padding.bottom;
Winson Chung66700732013-08-20 16:56:15 -07001568 return CellLayout.rectToCell(requiredWidth, requiredHeight, null);
Adam Cohenf814aa02011-09-01 13:48:05 -07001569 }
1570
Adam Cohen2f093b62012-04-30 18:59:53 -07001571 static int[] getSpanForWidget(Context context, AppWidgetProviderInfo info) {
1572 return getSpanForWidget(context, info.provider, info.minWidth, info.minHeight);
Adam Cohenf814aa02011-09-01 13:48:05 -07001573 }
1574
Adam Cohen2f093b62012-04-30 18:59:53 -07001575 static int[] getMinSpanForWidget(Context context, AppWidgetProviderInfo info) {
1576 return getSpanForWidget(context, info.provider, info.minResizeWidth, info.minResizeHeight);
Adam Cohencbf47e32011-09-16 17:32:37 -07001577 }
1578
Adam Cohen2f093b62012-04-30 18:59:53 -07001579 static int[] getSpanForWidget(Context context, PendingAddWidgetInfo info) {
1580 return getSpanForWidget(context, info.componentName, info.minWidth, info.minHeight);
Adam Cohenf814aa02011-09-01 13:48:05 -07001581 }
1582
Adam Cohen2f093b62012-04-30 18:59:53 -07001583 static int[] getMinSpanForWidget(Context context, PendingAddWidgetInfo info) {
1584 return getSpanForWidget(context, info.componentName, info.minResizeWidth,
Winson Chunga5c96362012-04-12 14:04:41 -07001585 info.minResizeHeight);
Adam Cohend41fbf52012-02-16 23:53:59 -08001586 }
1587
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001588 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001589 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001590 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001591 * @param appWidgetId The app widget id
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001592 */
Adam Cohen59400422014-03-05 18:07:04 -08001593 private void completeAddAppWidget(int appWidgetId, long container, long screenId,
1594 AppWidgetHostView hostView, LauncherAppWidgetProviderInfo appWidgetInfo) {
1595
1596 ItemInfo info = mPendingAddInfo;
Adam Cohened66b2b2012-01-23 17:28:51 -08001597 if (appWidgetInfo == null) {
Adam Cohen59400422014-03-05 18:07:04 -08001598 appWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(this,
1599 mAppWidgetManager.getAppWidgetInfo(appWidgetId));
Adam Cohened66b2b2012-01-23 17:28:51 -08001600 }
Romain Guycbb89e42009-06-08 15:52:54 -07001601
Adam Cohen59400422014-03-05 18:07:04 -08001602 if (appWidgetInfo.isCustomWidget) {
1603 appWidgetId = LauncherAppWidgetInfo.CUSTOM_WIDGET_ID;
Michael Jurkaa63c4522010-08-19 13:52:27 -07001604 }
1605
Adam Cohen59400422014-03-05 18:07:04 -08001606 LauncherAppWidgetInfo launcherInfo;
1607 launcherInfo = new LauncherAppWidgetInfo(appWidgetId, appWidgetInfo.provider);
1608 launcherInfo.spanX = info.spanX;
1609 launcherInfo.spanY = info.spanY;
1610 launcherInfo.minSpanX = info.minSpanX;
1611 launcherInfo.minSpanY = info.minSpanY;
Sunny Goyalffe83f12014-08-14 17:39:34 -07001612 launcherInfo.user = mAppWidgetManager.getUser(appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001613
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001614 LauncherModel.addItemToDatabase(this, launcherInfo,
Adam Cohen59400422014-03-05 18:07:04 -08001615 container, screenId, info.cellX, info.cellY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001616
1617 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001618 if (hostView == null) {
1619 // Perform actual inflation because we're live
Adam Cohen59400422014-03-05 18:07:04 -08001620 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId,
1621 appWidgetInfo);
Adam Cohened66b2b2012-01-23 17:28:51 -08001622 } else {
1623 // The AppWidgetHostView has already been inflated and instantiated
1624 launcherInfo.hostView = hostView;
1625 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001626 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001627 launcherInfo.hostView.setVisibility(View.VISIBLE);
Adam Cohenaaa5c212012-10-05 18:14:31 -07001628 launcherInfo.notifyWidgetSizeChanged(this);
1629
Adam Cohen59400422014-03-05 18:07:04 -08001630 mWorkspace.addInScreen(launcherInfo.hostView, container, screenId, info.cellX,
1631 info.cellY, launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001632
1633 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001634 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001635 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001636 }
Romain Guycbb89e42009-06-08 15:52:54 -07001637
Adam Cohended9f8d2010-11-03 13:25:16 -07001638 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1639 @Override
1640 public void onReceive(Context context, Intent intent) {
1641 final String action = intent.getAction();
1642 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1643 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001644 mDragLayer.clearAllResizeFrames();
Adam Cohended9f8d2010-11-03 13:25:16 -07001645 updateRunning();
Winson Chung337cd9d2011-03-30 10:39:30 -07001646
Winson Chungc100e8e2011-08-09 16:02:43 -07001647 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001648 // processing a multi-step drop
Winson Chungc100e8e2011-08-09 16:02:43 -07001649 if (mAppsCustomizeTabHost != null && mPendingAddInfo.container == ItemInfo.NO_ID) {
Adam Cohened307df2013-10-02 09:37:31 -07001650 showWorkspace(false);
Winson Chung785d2eb2011-04-14 16:08:02 -07001651 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001652 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1653 mUserPresent = true;
1654 updateRunning();
Dan Sandlerd5024042014-01-09 15:01:33 -05001655 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.DELETE_DATABASE.equals(action)) {
1656 mModel.resetLoadedState(false, true);
1657 mModel.startLoader(false, PagedView.INVALID_RESTORE_PAGE,
1658 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE);
1659 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.MIGRATE_DATABASE.equals(action)) {
1660 mModel.resetLoadedState(false, true);
1661 mModel.startLoader(false, PagedView.INVALID_RESTORE_PAGE,
1662 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE
1663 | LauncherModel.LOADER_FLAG_MIGRATE_SHORTCUTS);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001664 } else if (LauncherAppsCompat.ACTION_MANAGED_PROFILE_ADDED.equals(action)
1665 || LauncherAppsCompat.ACTION_MANAGED_PROFILE_REMOVED.equals(action)) {
1666 getModel().forceReload();
Adam Cohended9f8d2010-11-03 13:25:16 -07001667 }
1668 }
1669 };
1670
1671 @Override
1672 public void onAttachedToWindow() {
1673 super.onAttachedToWindow();
1674
1675 // Listen for broadcasts related to user-presence
1676 final IntentFilter filter = new IntentFilter();
1677 filter.addAction(Intent.ACTION_SCREEN_OFF);
1678 filter.addAction(Intent.ACTION_USER_PRESENT);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001679 // For handling managed profiles
1680 filter.addAction(LauncherAppsCompat.ACTION_MANAGED_PROFILE_ADDED);
1681 filter.addAction(LauncherAppsCompat.ACTION_MANAGED_PROFILE_REMOVED);
Dan Sandlerd5024042014-01-09 15:01:33 -05001682 if (ENABLE_DEBUG_INTENTS) {
1683 filter.addAction(DebugIntents.DELETE_DATABASE);
1684 filter.addAction(DebugIntents.MIGRATE_DATABASE);
1685 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001686 registerReceiver(mReceiver, filter);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001687 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Adam Cohen0b395352014-06-09 22:54:36 +00001688 setupTransparentSystemBarsForLmp();
Adam Cohend113e0c2010-11-11 10:48:05 -08001689 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001690 mVisible = true;
1691 }
1692
Adam Cohen0b395352014-06-09 22:54:36 +00001693 /**
1694 * Sets up transparent navigation and status bars in LMP.
1695 * This method is a no-op for other platform versions.
1696 */
1697 @TargetApi(19)
1698 private void setupTransparentSystemBarsForLmp() {
1699 // TODO(sansid): use the APIs directly when compiling against L sdk.
1700 // Currently we use reflection to access the flags and the API to set the transparency
1701 // on the System bars.
Kenny Guyd794a3f2014-09-16 15:17:58 +01001702 if (Utilities.isLmpOrAbove()) {
Adam Cohen0b395352014-06-09 22:54:36 +00001703 try {
1704 getWindow().getAttributes().systemUiVisibility |=
1705 (View.SYSTEM_UI_FLAG_LAYOUT_STABLE
1706 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
1707 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
1708 getWindow().clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS
1709 | WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
1710 Field drawsSysBackgroundsField = WindowManager.LayoutParams.class.getField(
1711 "FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS");
1712 getWindow().addFlags(drawsSysBackgroundsField.getInt(null));
1713
1714 Method setStatusBarColorMethod =
1715 Window.class.getDeclaredMethod("setStatusBarColor", int.class);
1716 Method setNavigationBarColorMethod =
1717 Window.class.getDeclaredMethod("setNavigationBarColor", int.class);
1718 setStatusBarColorMethod.invoke(getWindow(), Color.TRANSPARENT);
1719 setNavigationBarColorMethod.invoke(getWindow(), Color.TRANSPARENT);
1720 } catch (NoSuchFieldException e) {
1721 Log.w(TAG, "NoSuchFieldException while setting up transparent bars");
1722 } catch (NoSuchMethodException ex) {
1723 Log.w(TAG, "NoSuchMethodException while setting up transparent bars");
1724 } catch (IllegalAccessException e) {
1725 Log.w(TAG, "IllegalAccessException while setting up transparent bars");
1726 } catch (IllegalArgumentException e) {
1727 Log.w(TAG, "IllegalArgumentException while setting up transparent bars");
1728 } catch (InvocationTargetException e) {
1729 Log.w(TAG, "InvocationTargetException while setting up transparent bars");
1730 } finally {}
1731 }
1732 }
1733
Adam Cohended9f8d2010-11-03 13:25:16 -07001734 @Override
1735 public void onDetachedFromWindow() {
1736 super.onDetachedFromWindow();
1737 mVisible = false;
1738
Adam Cohend113e0c2010-11-11 10:48:05 -08001739 if (mAttached) {
1740 unregisterReceiver(mReceiver);
1741 mAttached = false;
1742 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001743 updateRunning();
1744 }
1745
1746 public void onWindowVisibilityChanged(int visibility) {
1747 mVisible = visibility == View.VISIBLE;
1748 updateRunning();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001749 // The following code used to be in onResume, but it turns out onResume is called when
1750 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1751 // is a more appropriate event to handle
1752 if (mVisible) {
1753 mAppsCustomizeTabHost.onWindowVisible();
1754 if (!mWorkspaceLoading) {
1755 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001756 // We want to let Launcher draw itself at least once before we force it to build
1757 // layers on all the workspace pages, so that transitioning to Launcher from other
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001758 // apps is nice and speedy.
1759 observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001760 private boolean mStarted = false;
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001761 public void onDraw() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001762 if (mStarted) return;
1763 mStarted = true;
Michael Jurka6ee21d22012-02-21 18:20:27 -08001764 // We delay the layer building a bit in order to give
1765 // other message processing a time to run. In particular
1766 // this avoids a delay in hiding the IME if it was
1767 // currently shown, because doing that may involve
1768 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001769 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurkadf96add2013-04-03 16:25:02 -07001770 final ViewTreeObserver.OnDrawListener listener = this;
1771 mWorkspace.post(new Runnable() {
1772 public void run() {
Michael Jurkab68e03a2013-04-11 11:36:41 -07001773 if (mWorkspace != null &&
1774 mWorkspace.getViewTreeObserver() != null) {
1775 mWorkspace.getViewTreeObserver().
1776 removeOnDrawListener(listener);
1777 }
Michael Jurkadf96add2013-04-03 16:25:02 -07001778 }
1779 });
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001780 return;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001781 }
1782 });
1783 }
1784 clearTypedText();
1785 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001786 }
1787
1788 private void sendAdvanceMessage(long delay) {
1789 mHandler.removeMessages(ADVANCE_MSG);
1790 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1791 mHandler.sendMessageDelayed(msg, delay);
1792 mAutoAdvanceSentTime = System.currentTimeMillis();
1793 }
1794
1795 private void updateRunning() {
1796 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1797 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1798 mAutoAdvanceRunning = autoAdvanceRunning;
1799 if (autoAdvanceRunning) {
1800 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1801 sendAdvanceMessage(delay);
1802 } else {
1803 if (!mWidgetsToAdvance.isEmpty()) {
1804 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1805 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1806 }
1807 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001808 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001809 }
1810 }
1811 }
1812
1813 private final Handler mHandler = new Handler() {
1814 @Override
1815 public void handleMessage(Message msg) {
1816 if (msg.what == ADVANCE_MSG) {
1817 int i = 0;
1818 for (View key: mWidgetsToAdvance.keySet()) {
1819 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1820 final int delay = mAdvanceStagger * i;
1821 if (v instanceof Advanceable) {
1822 postDelayed(new Runnable() {
1823 public void run() {
1824 ((Advanceable) v).advance();
1825 }
1826 }, delay);
1827 }
1828 i++;
1829 }
1830 sendAdvanceMessage(mAdvanceInterval);
1831 }
1832 }
1833 };
1834
1835 void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001836 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001837 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1838 if (v instanceof Advanceable) {
1839 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001840 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Adam Cohended9f8d2010-11-03 13:25:16 -07001841 updateRunning();
1842 }
1843 }
1844
1845 void removeWidgetToAutoAdvance(View hostView) {
1846 if (mWidgetsToAdvance.containsKey(hostView)) {
1847 mWidgetsToAdvance.remove(hostView);
1848 updateRunning();
1849 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001850 }
1851
Joe Onorato9c1289c2009-08-17 11:03:03 -04001852 public void removeAppWidget(LauncherAppWidgetInfo launcherInfo) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001853 removeWidgetToAutoAdvance(launcherInfo.hostView);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001854 launcherInfo.hostView = null;
1855 }
1856
Winson Chung93eef082012-03-23 15:59:27 -07001857 void showOutOfSpaceMessage(boolean isHotseatLayout) {
1858 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1859 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001860 }
1861
Adam Cohen59400422014-03-05 18:07:04 -08001862 public ArrayList<AppInfo> getAllAppsList() {
1863 return mAppsCustomizeContent.getApps();
1864 }
1865
Winson Chunga6945242014-01-08 14:04:34 -08001866 public DragLayer getDragLayer() {
1867 return mDragLayer;
1868 }
1869
1870 public Workspace getWorkspace() {
1871 return mWorkspace;
1872 }
1873
1874 public Hotseat getHotseat() {
1875 return mHotseat;
1876 }
1877
Jorim Jaggid017f882014-01-14 17:08:48 -08001878 public ViewGroup getOverviewPanel() {
Winson Chunga6945242014-01-08 14:04:34 -08001879 return mOverviewPanel;
1880 }
1881
1882 public SearchDropTargetBar getSearchBar() {
1883 return mSearchDropTargetBar;
1884 }
1885
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001886 public LauncherAppWidgetHost getAppWidgetHost() {
1887 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001888 }
Romain Guycbb89e42009-06-08 15:52:54 -07001889
Winson Chunga9abd0e2010-10-27 17:18:37 -07001890 public LauncherModel getModel() {
1891 return mModel;
1892 }
1893
Winson Chunga6945242014-01-08 14:04:34 -08001894 protected SharedPreferences getSharedPrefs() {
1895 return mSharedPrefs;
1896 }
1897
Bjorn Bringertc459e522013-06-07 19:36:01 +01001898 public void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001899 getWindow().closeAllPanels();
1900
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001901 // Whatever we were doing is hereby canceled.
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001902 setWaitingForResult(false);
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001903 }
1904
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001905 @Override
1906 protected void onNewIntent(Intent intent) {
Michael Jurka447bf842013-05-15 14:52:15 +02001907 long startTime = 0;
1908 if (DEBUG_RESUME_TIME) {
1909 startTime = System.currentTimeMillis();
1910 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001911 super.onNewIntent(intent);
1912
1913 // Close the menu
1914 if (Intent.ACTION_MAIN.equals(intent.getAction())) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001915 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001916 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001917
Adam Cohened307df2013-10-02 09:37:31 -07001918 final boolean alreadyOnHome = mHasFocus && ((intent.getFlags() &
1919 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1920 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
Michael Jurka01f0ed42010-08-20 00:41:17 -07001921
Adam Cohen6fecd412013-10-02 17:41:50 -07001922 if (mWorkspace == null) {
1923 // Can be cases where mWorkspace is null, this prevents a NPE
1924 return;
1925 }
1926 Folder openFolder = mWorkspace.getOpenFolder();
1927 // In all these cases, only animate if we're already on home
1928 mWorkspace.exitWidgetResizeMode();
Adam Cohen9211d422014-10-07 18:14:53 -07001929
1930 boolean moveToDefaultScreen = mLauncherCallbacks != null ?
1931 mLauncherCallbacks.shouldMoveToDefaultScreenOnHomeIntent() : true;
Adam Cohen6fecd412013-10-02 17:41:50 -07001932 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
Adam Cohen9211d422014-10-07 18:14:53 -07001933 openFolder == null && moveToDefaultScreen) {
Adam Cohen6fecd412013-10-02 17:41:50 -07001934 mWorkspace.moveToDefaultScreen(true);
Winson Chung4a2afa32012-07-19 14:53:05 -07001935 }
Romain Guy1dd3a072009-07-16 13:21:01 -07001936
Adam Cohen6fecd412013-10-02 17:41:50 -07001937 closeFolder();
1938 exitSpringLoadedDragMode();
1939
1940 // If we are already on home, then just animate back to the workspace,
1941 // otherwise, just wait until onResume to set the state back to Workspace
1942 if (alreadyOnHome) {
Adam Cohened307df2013-10-02 09:37:31 -07001943 showWorkspace(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001944 } else {
1945 mOnResumeState = State.WORKSPACE;
1946 }
1947
1948 final View v = getWindow().peekDecorView();
1949 if (v != null && v.getWindowToken() != null) {
1950 InputMethodManager imm = (InputMethodManager)getSystemService(
1951 INPUT_METHOD_SERVICE);
1952 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1953 }
1954
1955 // Reset the apps customize page
Winson Chunge7e97e62013-12-02 17:02:50 -08001956 if (!alreadyOnHome && mAppsCustomizeTabHost != null) {
Adam Cohen6fecd412013-10-02 17:41:50 -07001957 mAppsCustomizeTabHost.reset();
1958 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001959
Adam Cohen9211d422014-10-07 18:14:53 -07001960 if (mLauncherCallbacks != null) {
1961 mLauncherCallbacks.onHomeIntent();
1962 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001963 }
Adam Cohened307df2013-10-02 09:37:31 -07001964
Michael Jurka447bf842013-05-15 14:52:15 +02001965 if (DEBUG_RESUME_TIME) {
1966 Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime));
1967 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001968
Adam Cohen9211d422014-10-07 18:14:53 -07001969 if (mLauncherCallbacks != null) {
1970 mLauncherCallbacks.onNewIntent(intent);
1971 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001972 }
1973
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001974 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001975 public void onRestoreInstanceState(Bundle state) {
1976 super.onRestoreInstanceState(state);
1977 for (int page: mSynchronouslyBoundPages) {
1978 mWorkspace.restoreInstanceStateForChild(page);
1979 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001980 }
1981
1982 @Override
1983 protected void onSaveInstanceState(Bundle outState) {
Adam Cohen21cd0022013-10-09 18:57:02 -07001984 if (mWorkspace.getChildCount() > 0) {
Winson Chung9b9fb962013-11-15 15:39:34 -08001985 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN,
1986 mWorkspace.getCurrentPageOffsetFromCustomContent());
Adam Cohen21cd0022013-10-09 18:57:02 -07001987 }
Adam Cohen95bb8002011-07-03 23:40:28 -07001988 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001989
Michael Jurka883f55b2010-10-21 15:47:14 -07001990 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001991 // We close any open folder since it will not be re-opened, and we need to make sure
1992 // this state is reflected.
1993 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001994
Adam Cohendcd297f2013-06-18 13:13:40 -07001995 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screenId > -1 &&
Winson Chung3d503fb2011-07-13 17:25:49 -07001996 mWaitingForResult) {
1997 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
Adam Cohendcd297f2013-06-18 13:13:40 -07001998 outState.putLong(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screenId);
Winson Chung3d503fb2011-07-13 17:25:49 -07001999 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
2000 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002001 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_X, mPendingAddInfo.spanX);
2002 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y, mPendingAddInfo.spanY);
2003 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
Adam Cohen4637b5a2013-11-04 18:21:24 -08002004 outState.putInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID, mPendingAddWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002005 }
2006
2007 if (mFolderInfo != null && mWaitingForResult) {
2008 outState.putBoolean(RUNTIME_STATE_PENDING_FOLDER_RENAME, true);
2009 outState.putLong(RUNTIME_STATE_PENDING_FOLDER_RENAME_ID, mFolderInfo.id);
2010 }
Michael Jurka946ad472010-07-09 18:05:18 -07002011
Winson Chung785d2eb2011-04-14 16:08:02 -07002012 // Save the current AppsCustomize tab
2013 if (mAppsCustomizeTabHost != null) {
Winson Chung07e045c2013-11-06 15:49:51 -08002014 AppsCustomizePagedView.ContentType type = mAppsCustomizeContent.getContentType();
2015 String currentTabTag = mAppsCustomizeTabHost.getTabTagForContentType(type);
Winson Chung785d2eb2011-04-14 16:08:02 -07002016 if (currentTabTag != null) {
2017 outState.putString("apps_customize_currentTab", currentTabTag);
2018 }
Winson Chung5afbf7b2011-07-25 11:53:08 -07002019 int currentIndex = mAppsCustomizeContent.getSaveInstanceStateIndex();
2020 outState.putInt("apps_customize_currentIndex", currentIndex);
Winson Chung785d2eb2011-04-14 16:08:02 -07002021 }
Adam Cohenc76e1dd2013-11-14 11:09:14 +00002022 outState.putSerializable(RUNTIME_STATE_VIEW_IDS, mItemIdToViewId);
Adam Cohen9211d422014-10-07 18:14:53 -07002023
2024 if (mLauncherCallbacks != null) {
2025 mLauncherCallbacks.onSaveInstanceState(outState);
2026 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002027 }
2028
2029 @Override
2030 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002031 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07002032
Winson Chunge7a03942011-08-05 15:05:12 -07002033 // Remove all pending runnables
2034 mHandler.removeMessages(ADVANCE_MSG);
2035 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07002036 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07002037
Winson Chungcd2b0142011-06-08 16:02:26 -07002038 // Stop callbacks from LauncherModel
Daniel Sandlercc8befa2013-06-11 14:45:48 -04002039 LauncherAppState app = (LauncherAppState.getInstance());
Adam Cohen1a85c582014-09-30 09:48:49 -07002040
2041 // It's possible to receive onDestroy after a new Launcher activity has
2042 // been created. In this case, don't interfere with the new Launcher.
2043 if (mModel.isCurrentCallbacks(this)) {
2044 mModel.stopLoader();
2045 app.setLauncher(null);
2046 }
Winson Chungcd2b0142011-06-08 16:02:26 -07002047
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002048 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07002049 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002050 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002051 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002052 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002053 mAppWidgetHost = null;
2054
2055 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002056
2057 TextKeyListener.getInstance().release();
2058
Winson Chung81b52252012-08-27 15:34:29 -07002059 // Disconnect any of the callbacks and drawables associated with ItemInfos on the workspace
2060 // to prevent leaking Launcher activities on orientation change.
2061 if (mModel != null) {
2062 mModel.unbindItemInfosAndClearQueuedBindRunnables();
2063 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002064
2065 getContentResolver().unregisterContentObserver(mWidgetObserver);
Joe Onorato34a0e1b2009-12-14 17:44:51 -08002066 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002067
Adam Cohenaccf3bf2012-04-30 16:07:43 -07002068 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002069 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
Adam Cohend552dd92013-11-26 12:13:11 -08002070 mWorkspace.removeAllWorkspaceScreens();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002071 mWorkspace = null;
2072 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08002073
Michael Jurka2ecf9952012-06-18 12:52:28 -07002074 LauncherAnimUtils.onDestroyActivity();
Adam Cohen9211d422014-10-07 18:14:53 -07002075
2076 if (mLauncherCallbacks != null) {
2077 mLauncherCallbacks.onDestroy();
2078 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002079 }
2080
Adam Cohena9cf38f2011-05-02 15:36:58 -07002081 public DragController getDragController() {
2082 return mDragController;
2083 }
2084
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002085 @Override
2086 public void startActivityForResult(Intent intent, int requestCode) {
Adam Cohen173f7112015-03-27 15:14:00 -07002087 onStartForResult(requestCode);
2088 super.startActivityForResult(intent, requestCode);
2089 }
2090
2091 @Override
2092 public void startIntentSenderForResult (IntentSender intent, int requestCode,
2093 Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) {
2094 onStartForResult(requestCode);
2095 try {
2096 super.startIntentSenderForResult(intent, requestCode,
2097 fillInIntent, flagsMask, flagsValues, extraFlags, options);
2098 } catch (IntentSender.SendIntentException e) {
2099 throw new ActivityNotFoundException();
2100 }
2101 }
2102
2103 private void onStartForResult(int requestCode) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002104 if (requestCode >= 0) {
2105 setWaitingForResult(true);
2106 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002107 }
2108
Winson Chung70d72102011-08-12 11:24:35 -07002109 /**
2110 * Indicates that we want global search for this activity by setting the globalSearch
2111 * argument for {@link #startSearch} to true.
2112 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002113 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07002114 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002115 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002116
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002117 showWorkspace(true);
Romain Guycbb89e42009-06-08 15:52:54 -07002118
Karl Rosaen138a0412009-04-23 19:00:21 -07002119 if (initialQuery == null) {
2120 // Use any text typed in the launcher as the initial query
2121 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07002122 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002123 if (appSearchData == null) {
2124 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01002125 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002126 }
Winson Chungadf0c182012-08-23 14:59:07 -07002127 Rect sourceBounds = new Rect();
2128 if (mSearchDropTargetBar != null) {
2129 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
2130 }
Romain Guycbb89e42009-06-08 15:52:54 -07002131
Ian Parkinson047036e2014-09-01 15:40:53 +01002132 boolean clearTextImmediately = startSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002133 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002134 if (clearTextImmediately) {
2135 clearTypedText();
2136 }
Bjorn Bringertc459e522013-06-07 19:36:01 +01002137 }
2138
Ian Parkinson047036e2014-09-01 15:40:53 +01002139 /**
2140 * Start a text search.
2141 *
2142 * @return {@code true} if the search will start immediately, so any further keypresses
2143 * will be handled directly by the search UI. {@code false} if {@link Launcher} should continue
2144 * to buffer keypresses.
2145 */
2146 public boolean startSearch(String initialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002147 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Adam Cohen9211d422014-10-07 18:14:53 -07002148 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
2149 return mLauncherCallbacks.startSearch(initialQuery, selectInitialQuery, appSearchData,
2150 sourceBounds);
2151 }
2152
Michael Jurkaa33411c2012-06-14 16:18:21 -07002153 startGlobalSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002154 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002155 return false;
Michael Jurkaa33411c2012-06-14 16:18:21 -07002156 }
2157
2158 /**
2159 * Starts the global search activity. This code is a copied from SearchManager
2160 */
Bjorn Bringertc459e522013-06-07 19:36:01 +01002161 private void startGlobalSearch(String initialQuery,
Michael Jurkaa33411c2012-06-14 16:18:21 -07002162 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002163 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07002164 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2165 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
2166 if (globalSearchActivity == null) {
2167 Log.w(TAG, "No global search activity found.");
2168 return;
2169 }
2170 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
2171 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2172 intent.setComponent(globalSearchActivity);
2173 // Make sure that we have a Bundle to put source in
2174 if (appSearchData == null) {
2175 appSearchData = new Bundle();
2176 } else {
2177 appSearchData = new Bundle(appSearchData);
2178 }
Adam Cohen9211d422014-10-07 18:14:53 -07002179 // Set source to package name of app that starts global search if not set already.
Michael Jurkaa33411c2012-06-14 16:18:21 -07002180 if (!appSearchData.containsKey("source")) {
2181 appSearchData.putString("source", getPackageName());
2182 }
2183 intent.putExtra(SearchManager.APP_DATA, appSearchData);
2184 if (!TextUtils.isEmpty(initialQuery)) {
2185 intent.putExtra(SearchManager.QUERY, initialQuery);
2186 }
2187 if (selectInitialQuery) {
2188 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
2189 }
2190 intent.setSourceBounds(sourceBounds);
2191 try {
2192 startActivity(intent);
2193 } catch (ActivityNotFoundException ex) {
2194 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
2195 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002196 }
2197
Yura4f93ec62014-02-04 14:15:21 +00002198 public boolean isOnCustomContent() {
2199 return mWorkspace.isOnOrMovingToCustomContent();
2200 }
2201
Winson Chung70d72102011-08-12 11:24:35 -07002202 @Override
Winson Chung70d72102011-08-12 11:24:35 -07002203 public boolean onPrepareOptionsMenu(Menu menu) {
2204 super.onPrepareOptionsMenu(menu);
Yura4f93ec62014-02-04 14:15:21 +00002205 if (!isOnCustomContent()) {
2206 // Close any open folders
2207 closeFolder();
2208 // Stop resizing any widgets
2209 mWorkspace.exitWidgetResizeMode();
2210 if (!mWorkspace.isInOverviewMode()) {
2211 // Show the overview mode
2212 showOverviewMode(true);
2213 } else {
2214 showWorkspace(true);
2215 }
Winson Chunge0298742014-01-17 12:03:00 -08002216 }
Adam Cohen9211d422014-10-07 18:14:53 -07002217 if (mLauncherCallbacks != null) {
2218 return mLauncherCallbacks.onPrepareOptionsMenu(menu);
2219 }
2220
Michael Jurkab94f3f82013-09-11 18:08:54 +02002221 return false;
Winson Chung70d72102011-08-12 11:24:35 -07002222 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002223
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002224 @Override
2225 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07002226 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07002227 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07002228 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002229 }
2230
Joe Onorato9c1289c2009-08-17 11:03:03 -04002231 public boolean isWorkspaceLocked() {
2232 return mWorkspaceLoading || mWaitingForResult;
2233 }
2234
Adam Cohen517a7f52014-03-01 12:12:59 -08002235 public boolean isWorkspaceLoading() {
2236 return mWorkspaceLoading;
2237 }
2238
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002239 private void setWorkspaceLoading(boolean value) {
2240 boolean isLocked = isWorkspaceLocked();
2241 mWorkspaceLoading = value;
2242 if (isLocked != isWorkspaceLocked()) {
2243 onWorkspaceLockedChanged();
2244 }
2245 }
2246
2247 private void setWaitingForResult(boolean value) {
2248 boolean isLocked = isWorkspaceLocked();
2249 mWaitingForResult = value;
2250 if (isLocked != isWorkspaceLocked()) {
2251 onWorkspaceLockedChanged();
2252 }
2253 }
2254
Adam Cohen9211d422014-10-07 18:14:53 -07002255 protected void onWorkspaceLockedChanged() {
2256 if (mLauncherCallbacks != null) {
2257 mLauncherCallbacks.onWorkspaceLockedChanged();
2258 }
2259 }
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002260
Michael Jurka0280c3b2010-09-17 15:00:07 -07002261 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07002262 mPendingAddInfo.container = ItemInfo.NO_ID;
Adam Cohendcd297f2013-06-18 13:13:40 -07002263 mPendingAddInfo.screenId = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002264 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
2265 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Adam Cohend41fbf52012-02-16 23:53:59 -08002266 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002267 mPendingAddInfo.dropPos = null;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002268 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07002269
Sunny Goyal8f9a7872015-01-16 16:14:29 -08002270 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info, final
Adam Cohen59400422014-03-05 18:07:04 -08002271 AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo) {
Adam Cohenad4e15c2013-10-17 16:21:35 -07002272 addAppWidgetImpl(appWidgetId, info, boundWidget, appWidgetInfo, 0);
2273 }
2274
Sunny Goyal8f9a7872015-01-16 16:14:29 -08002275 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
Adam Cohen59400422014-03-05 18:07:04 -08002276 final AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo,
2277 int delay) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002278 if (appWidgetInfo.configure != null) {
2279 mPendingAddWidgetInfo = appWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -08002280 mPendingAddWidgetId = appWidgetId;
Michael Jurkaaf442092010-06-10 17:01:57 -07002281
Bjorn Bringert7984c942009-12-09 15:38:25 +00002282 // Launch over to configure widget, if needed
Sunny Goyalffe83f12014-08-14 17:39:34 -07002283 mAppWidgetManager.startConfigActivity(appWidgetInfo, appWidgetId, this,
2284 mAppWidgetHost, REQUEST_CREATE_APPWIDGET);
2285
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002286 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00002287 // Otherwise just add it
Adam Cohenad4e15c2013-10-17 16:21:35 -07002288 Runnable onComplete = new Runnable() {
2289 @Override
2290 public void run() {
2291 // Exit spring loaded mode if necessary after adding the widget
2292 exitSpringLoadedDragModeDelayed(true, EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT,
2293 null);
2294 }
2295 };
Adam Cohendcd297f2013-06-18 13:13:40 -07002296 completeAddAppWidget(appWidgetId, info.container, info.screenId, boundWidget,
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002297 appWidgetInfo);
Adam Cohen689ff162014-05-08 17:27:56 -07002298 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, delay, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002299 }
2300 }
Romain Guycbb89e42009-06-08 15:52:54 -07002301
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002302 protected void moveToCustomContentScreen(boolean animate) {
Sandeep Siddharthaf2b47f12013-09-26 19:49:27 -07002303 // Close any folders that may be open.
2304 closeFolder();
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002305 mWorkspace.moveToCustomContentScreen(animate);
2306 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002307
2308 public void addPendingItem(PendingAddItemInfo info, long container, long screenId,
2309 int[] cell, int spanX, int spanY) {
2310 switch (info.itemType) {
2311 case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET:
2312 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
2313 int span[] = new int[2];
2314 span[0] = spanX;
2315 span[1] = spanY;
2316 addAppWidgetFromDrop((PendingAddWidgetInfo) info,
2317 container, screenId, cell, span);
2318 break;
2319 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
2320 processShortcutFromDrop(info.componentName, container, screenId, cell);
2321 break;
2322 default:
2323 throw new IllegalStateException("Unknown item type: " + info.itemType);
2324 }
2325 }
2326
Adam Cohenfbba09b2011-07-18 21:43:05 -07002327 /**
2328 * Process a shortcut drop.
2329 *
2330 * @param componentName The name of the component
Adam Cohendcd297f2013-06-18 13:13:40 -07002331 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002332 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002333 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002334 private void processShortcutFromDrop(ComponentName componentName, long container, long screenId,
2335 int[] cell) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002336 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002337 mPendingAddInfo.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002338 mPendingAddInfo.screenId = screenId;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002339 mPendingAddInfo.dropPos = null;
Adam Cohenfbba09b2011-07-18 21:43:05 -07002340
2341 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002342 mPendingAddInfo.cellX = cell[0];
2343 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002344 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002345
2346 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
2347 createShortcutIntent.setComponent(componentName);
2348 processShortcut(createShortcutIntent);
2349 }
2350
Adam Cohenfbba09b2011-07-18 21:43:05 -07002351 /**
2352 * Process a widget drop.
2353 *
2354 * @param info The PendingAppWidgetInfo of the widget being added.
Adam Cohendcd297f2013-06-18 13:13:40 -07002355 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002356 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002357 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002358 private void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, long screenId,
2359 int[] cell, int[] span) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07002360 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002361 mPendingAddInfo.container = info.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002362 mPendingAddInfo.screenId = info.screenId = screenId;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002363 mPendingAddInfo.dropPos = null;
Adam Cohend41fbf52012-02-16 23:53:59 -08002364 mPendingAddInfo.minSpanX = info.minSpanX;
2365 mPendingAddInfo.minSpanY = info.minSpanY;
2366
Adam Cohenfbba09b2011-07-18 21:43:05 -07002367 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002368 mPendingAddInfo.cellX = cell[0];
2369 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002370 }
Adam Cohend41fbf52012-02-16 23:53:59 -08002371 if (span != null) {
2372 mPendingAddInfo.spanX = span[0];
2373 mPendingAddInfo.spanY = span[1];
2374 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002375
Adam Cohened66b2b2012-01-23 17:28:51 -08002376 AppWidgetHostView hostView = info.boundWidget;
2377 int appWidgetId;
2378 if (hostView != null) {
2379 appWidgetId = hostView.getAppWidgetId();
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002380 addAppWidgetImpl(appWidgetId, info, hostView, info.info);
Adam Cohened66b2b2012-01-23 17:28:51 -08002381 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002382 // In this case, we either need to start an activity to get permission to bind
2383 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08002384 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07002385 Bundle options = info.bindOptions;
2386
Sunny Goyalffe83f12014-08-14 17:39:34 -07002387 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
2388 appWidgetId, info.info, options);
Adam Cohendd70d662012-10-04 16:53:44 -07002389 if (success) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002390 addAppWidgetImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07002391 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002392 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07002393 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
2394 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
2395 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Sunny Goyalffe83f12014-08-14 17:39:34 -07002396 mAppWidgetManager.getUser(mPendingAddWidgetInfo)
2397 .addToIntent(intent, AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE);
Adam Cohendd70d662012-10-04 16:53:44 -07002398 // TODO: we need to make sure that this accounts for the options bundle.
2399 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07002400 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
2401 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002402 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002403 }
2404
Joe Onoratodeb98af2010-02-19 14:59:39 -08002405 void processShortcut(Intent intent) {
Kenny Guyed131872014-04-30 03:02:21 +01002406 Utilities.startActivityForResultSafely(this, intent, REQUEST_CREATE_SHORTCUT);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002407 }
2408
Winson Chung24ab2f12010-09-16 14:10:47 -07002409 void processWallpaper(Intent intent) {
2410 startActivityForResult(intent, REQUEST_PICK_WALLPAPER);
2411 }
2412
Adam Cohendcd297f2013-06-18 13:13:40 -07002413 FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07002414 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07002415 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002416 folderInfo.title = getText(R.string.folder_name);
2417
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002418 // Update the model
Adam Cohendcd297f2013-06-18 13:13:40 -07002419 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId, cellX, cellY,
Winson Chung3d503fb2011-07-13 17:25:49 -07002420 false);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002421 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002422
2423 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07002424 FolderIcon newFolder =
2425 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07002426 mWorkspace.addInScreen(newFolder, container, screenId, cellX, cellY, 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07002427 isWorkspaceLocked());
Winson Chung5f8afe62013-08-12 16:19:28 -07002428 // Force measure the new folder icon
2429 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
2430 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07002431 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002432 }
Romain Guycbb89e42009-06-08 15:52:54 -07002433
Joe Onorato9c1289c2009-08-17 11:03:03 -04002434 void removeFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002435 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002436 }
2437
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002438 protected ComponentName getWallpaperPickerComponent() {
Adam Cohen9211d422014-10-07 18:14:53 -07002439 if (mLauncherCallbacks != null) {
2440 return mLauncherCallbacks.getWallpaperPickerComponent();
2441 }
Michael Jurka7ad868b2013-12-12 15:04:25 +01002442 return new ComponentName(getPackageName(), LauncherWallpaperPickerActivity.class.getName());
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002443 }
2444
Joe Onorato2ca0ae72009-11-10 13:14:13 -08002445 /**
2446 * Registers various content observers. The current implementation registers
2447 * only a favorites observer to keep track of the favorites applications.
2448 */
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002449 private void registerContentObservers() {
2450 ContentResolver resolver = getContentResolver();
2451 resolver.registerContentObserver(LauncherProvider.CONTENT_APPWIDGET_RESET_URI,
2452 true, mWidgetObserver);
2453 }
2454
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002455 @Override
2456 public boolean dispatchKeyEvent(KeyEvent event) {
2457 if (event.getAction() == KeyEvent.ACTION_DOWN) {
2458 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002459 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07002460 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08002461 case KeyEvent.KEYCODE_VOLUME_DOWN:
Sunny Goyal4bbf4192014-11-11 12:23:59 -08002462 if (Utilities.isPropertyEnabled(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08002463 dumpState();
2464 return true;
2465 }
2466 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07002467 }
2468 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2469 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07002470 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002471 return true;
2472 }
2473 }
2474
2475 return super.dispatchKeyEvent(event);
2476 }
2477
Joe Onorato88ec0992009-11-19 13:16:06 -08002478 @Override
2479 public void onBackPressed() {
Adam Cohen9211d422014-10-07 18:14:53 -07002480 if (mLauncherCallbacks != null && mLauncherCallbacks.handleBackPressed()) {
2481 return;
2482 }
2483
Winson Chungc93e5ae2012-07-23 20:48:26 -07002484 if (isAllAppsVisible()) {
Adam Cohened307df2013-10-02 09:37:31 -07002485 if (mAppsCustomizeContent.getContentType() ==
2486 AppsCustomizePagedView.ContentType.Applications) {
2487 showWorkspace(true);
2488 } else {
2489 showOverviewMode(true);
2490 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07002491 } else if (mWorkspace.isInOverviewMode()) {
Michael Jurka336fd4f2013-09-12 00:05:02 +02002492 mWorkspace.exitOverviewMode(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002493 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07002494 Folder openFolder = mWorkspace.getOpenFolder();
2495 if (openFolder.isEditingName()) {
2496 openFolder.dismissEditingName();
2497 } else {
2498 closeFolder();
2499 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002500 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08002501 mWorkspace.exitWidgetResizeMode();
2502
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002503 // Back button is a no-op here, but give at least some feedback for the button press
2504 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07002505 }
Joe Onorato88ec0992009-11-19 13:16:06 -08002506 }
2507
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002508 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002509 * Re-listen when widgets are reset.
2510 */
2511 private void onAppWidgetReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08002512 if (mAppWidgetHost != null) {
2513 mAppWidgetHost.startListening();
2514 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002515 }
2516
2517 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002518 * Launches the intent referred by the clicked shortcut.
2519 *
2520 * @param v The view representing the clicked shortcut.
2521 */
2522 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002523 // Make sure that rogue clicks don't get through while allapps is launching, or after the
2524 // view has detached (it's possible for this to happen if the view is removed mid touch).
2525 if (v.getWindowToken() == null) {
2526 return;
2527 }
2528
Winson Chung9b0b2fe2012-02-24 13:03:34 -08002529 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002530 return;
2531 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07002532
Adam Cohen1697b792013-09-17 19:08:21 -07002533 if (v instanceof Workspace) {
2534 if (mWorkspace.isInOverviewMode()) {
2535 mWorkspace.exitOverviewMode(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002536 }
2537 return;
2538 }
2539
2540 if (v instanceof CellLayout) {
2541 if (mWorkspace.isInOverviewMode()) {
Michael Jurka336fd4f2013-09-12 00:05:02 +02002542 mWorkspace.exitOverviewMode(mWorkspace.indexOfChild(v), true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002543 }
2544 }
2545
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002546 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002547 if (tag instanceof ShortcutInfo) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002548 onClickAppShortcut(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002549 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002550 if (v instanceof FolderIcon) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002551 onClickFolderIcon(v);
Adam Cohena9cf38f2011-05-02 15:36:58 -07002552 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002553 } else if (v == mAllAppsButton) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002554 onClickAllAppsButton(v);
Sunny Goyal508da152014-08-14 10:53:27 -07002555 } else if (tag instanceof AppInfo) {
2556 startAppShortcutOrInfoActivity(v);
Sunny Goyalff572272014-07-23 13:58:07 -07002557 } else if (tag instanceof LauncherAppWidgetInfo) {
2558 if (v instanceof PendingAppWidgetHostView) {
2559 onClickPendingWidget((PendingAppWidgetHostView) v);
2560 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002561 }
2562 }
2563
Sunny Goyal508da152014-08-14 10:53:27 -07002564 public void onClickPagedViewIcon(View v) {
2565 startAppShortcutOrInfoActivity(v);
Adam Cohen9211d422014-10-07 18:14:53 -07002566 if (mLauncherCallbacks != null) {
2567 mLauncherCallbacks.onClickPagedViewIcon(v);
2568 }
Sunny Goyal508da152014-08-14 10:53:27 -07002569 }
2570
Michael Jurka0e260592010-06-30 17:07:39 -07002571 public boolean onTouch(View v, MotionEvent event) {
Michael Jurka0e260592010-06-30 17:07:39 -07002572 return false;
2573 }
2574
Michael Jurkaaf442092010-06-10 17:01:57 -07002575 /**
Sunny Goyalff572272014-07-23 13:58:07 -07002576 * Event handler for the app widget view which has not fully restored.
2577 */
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002578 public void onClickPendingWidget(final PendingAppWidgetHostView v) {
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002579 if (mIsSafeModeEnabled) {
2580 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2581 return;
2582 }
2583
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002584 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) v.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07002585 if (v.isReadyForClickSetup()) {
Sunny Goyalff572272014-07-23 13:58:07 -07002586 int widgetId = info.appWidgetId;
2587 AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
2588 if (appWidgetInfo != null) {
Adam Cohen59400422014-03-05 18:07:04 -08002589 mPendingAddWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(
2590 this, appWidgetInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07002591 mPendingAddInfo.copyFrom(info);
2592 mPendingAddWidgetId = widgetId;
2593
Sunny Goyalffe83f12014-08-14 17:39:34 -07002594 AppWidgetManagerCompat.getInstance(this).startConfigActivity(appWidgetInfo,
2595 info.appWidgetId, this, mAppWidgetHost, REQUEST_RECONFIGURE_APPWIDGET);
Sunny Goyalff572272014-07-23 13:58:07 -07002596 }
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002597 } else if (info.installProgress < 0) {
2598 // The install has not been queued
2599 final String packageName = info.providerName.getPackageName();
2600 showBrokenAppInstallDialog(packageName,
2601 new DialogInterface.OnClickListener() {
2602 public void onClick(DialogInterface dialog, int id) {
2603 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
2604 }
2605 });
2606 } else {
2607 // Download has started.
2608 final String packageName = info.providerName.getPackageName();
2609 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
Sunny Goyalff572272014-07-23 13:58:07 -07002610 }
2611 }
2612
2613 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002614 * Event handler for the "grid" button that appears on the home screen, which
2615 * enters all apps mode.
2616 *
2617 * @param v The view that was clicked.
2618 */
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002619 protected void onClickAllAppsButton(View v) {
2620 if (LOGD) Log.d(TAG, "onClickAllAppsButton");
2621 if (isAllAppsVisible()) {
2622 showWorkspace(true);
2623 } else {
2624 showAllApps(true, AppsCustomizePagedView.ContentType.Applications, false);
2625 }
Adam Cohen9211d422014-10-07 18:14:53 -07002626 if (mLauncherCallbacks != null) {
2627 mLauncherCallbacks.onClickAllAppsButton(v);
2628 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002629 }
2630
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002631 private void showBrokenAppInstallDialog(final String packageName,
2632 DialogInterface.OnClickListener onSearchClickListener) {
Sunny Goyale03b8122014-10-08 09:55:24 -07002633 new AlertDialog.Builder(this)
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002634 .setTitle(R.string.abandoned_promises_title)
2635 .setMessage(R.string.abandoned_promise_explanation)
2636 .setPositiveButton(R.string.abandoned_search, onSearchClickListener)
2637 .setNeutralButton(R.string.abandoned_clean_this,
2638 new DialogInterface.OnClickListener() {
2639 public void onClick(DialogInterface dialog, int id) {
2640 final UserHandleCompat user = UserHandleCompat.myUserHandle();
2641 mWorkspace.removeAbandonedPromise(packageName, user);
2642 }
2643 })
2644 .create().show();
2645 return;
2646 }
2647
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002648 /**
2649 * Event handler for an app shortcut click.
2650 *
2651 * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.
2652 */
Chris Wren40c5ed32014-06-24 18:24:23 -04002653 protected void onClickAppShortcut(final View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002654 if (LOGD) Log.d(TAG, "onClickAppShortcut");
2655 Object tag = v.getTag();
2656 if (!(tag instanceof ShortcutInfo)) {
2657 throw new IllegalArgumentException("Input must be a Shortcut");
2658 }
2659
2660 // Open shortcut
2661 final ShortcutInfo shortcut = (ShortcutInfo) tag;
Sunny Goyal1a745e82014-10-02 15:58:31 -07002662
2663 if (shortcut.isDisabled != 0) {
2664 int error = R.string.activity_not_available;
2665 if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_SAFEMODE) != 0) {
2666 error = R.string.safemode_shortcut_error;
2667 }
2668 Toast.makeText(this, error, Toast.LENGTH_SHORT).show();
2669 return;
2670 }
2671
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002672 final Intent intent = shortcut.intent;
2673
2674 // Check for special shortcuts
2675 if (intent.getComponent() != null) {
2676 final String shortcutClass = intent.getComponent().getClassName();
2677
2678 if (shortcutClass.equals(MemoryDumpActivity.class.getName())) {
2679 MemoryDumpActivity.startDump(this);
2680 return;
2681 } else if (shortcutClass.equals(ToggleWeightWatcher.class.getName())) {
2682 toggleShowWeightWatcher();
2683 return;
2684 }
2685 }
2686
Chris Wren40c5ed32014-06-24 18:24:23 -04002687 // Check for abandoned promise
Sunny Goyal34942622014-08-29 17:20:55 -07002688 if ((v instanceof BubbleTextView)
2689 && shortcut.isPromise()
2690 && !shortcut.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE)) {
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002691 showBrokenAppInstallDialog(
Sunny Goyal34942622014-08-29 17:20:55 -07002692 shortcut.getTargetComponent().getPackageName(),
Chris Wren40c5ed32014-06-24 18:24:23 -04002693 new DialogInterface.OnClickListener() {
2694 public void onClick(DialogInterface dialog, int id) {
Sunny Goyal508da152014-08-14 10:53:27 -07002695 startAppShortcutOrInfoActivity(v);
Chris Wren40c5ed32014-06-24 18:24:23 -04002696 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002697 });
Chris Wren40c5ed32014-06-24 18:24:23 -04002698 return;
2699 }
2700
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002701 // Start activities
Sunny Goyal508da152014-08-14 10:53:27 -07002702 startAppShortcutOrInfoActivity(v);
Adam Cohen9211d422014-10-07 18:14:53 -07002703
2704 if (mLauncherCallbacks != null) {
2705 mLauncherCallbacks.onClickAppShortcut(v);
2706 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002707 }
2708
Sunny Goyal508da152014-08-14 10:53:27 -07002709 private void startAppShortcutOrInfoActivity(View v) {
Chris Wren40c5ed32014-06-24 18:24:23 -04002710 Object tag = v.getTag();
Sunny Goyal508da152014-08-14 10:53:27 -07002711 final ShortcutInfo shortcut;
2712 final Intent intent;
2713 if (tag instanceof ShortcutInfo) {
2714 shortcut = (ShortcutInfo) tag;
2715 intent = shortcut.intent;
2716 int[] pos = new int[2];
2717 v.getLocationOnScreen(pos);
2718 intent.setSourceBounds(new Rect(pos[0], pos[1],
2719 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Chris Wren40c5ed32014-06-24 18:24:23 -04002720
Sunny Goyal508da152014-08-14 10:53:27 -07002721 } else if (tag instanceof AppInfo) {
2722 shortcut = null;
2723 intent = ((AppInfo) tag).intent;
2724 } else {
2725 throw new IllegalArgumentException("Input must be a Shortcut or AppInfo");
2726 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002727
2728 boolean success = startActivitySafely(v, intent, tag);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002729 mStats.recordLaunch(intent, shortcut);
2730
2731 if (success && v instanceof BubbleTextView) {
2732 mWaitingForResume = (BubbleTextView) v;
2733 mWaitingForResume.setStayPressed(true);
2734 }
2735 }
2736
2737 /**
2738 * Event handler for a folder icon click.
2739 *
2740 * @param v The view that was clicked. Must be an instance of {@link FolderIcon}.
2741 */
2742 protected void onClickFolderIcon(View v) {
2743 if (LOGD) Log.d(TAG, "onClickFolder");
2744 if (!(v instanceof FolderIcon)){
2745 throw new IllegalArgumentException("Input must be a FolderIcon");
2746 }
2747
2748 FolderIcon folderIcon = (FolderIcon) v;
2749 final FolderInfo info = folderIcon.getFolderInfo();
2750 Folder openFolder = mWorkspace.getFolderForTag(info);
2751
2752 // If the folder info reports that the associated folder is open, then verify that
2753 // it is actually opened. There have been a few instances where this gets out of sync.
2754 if (info.opened && openFolder == null) {
2755 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2756 + info.screenId + " (" + info.cellX + ", " + info.cellY + ")");
2757 info.opened = false;
2758 }
2759
2760 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
2761 // Close any open folder
2762 closeFolder();
2763 // Open the requested folder
2764 openFolder(folderIcon);
2765 } else {
2766 // Find the open folder...
2767 int folderScreen;
2768 if (openFolder != null) {
2769 folderScreen = mWorkspace.getPageForView(openFolder);
2770 // .. and close it
2771 closeFolder(openFolder);
2772 if (folderScreen != mWorkspace.getCurrentPage()) {
2773 // Close any folder open on the current screen
2774 closeFolder();
2775 // Pull the folder onto this screen
2776 openFolder(folderIcon);
2777 }
2778 }
2779 }
Adam Cohen9211d422014-10-07 18:14:53 -07002780
2781 if (mLauncherCallbacks != null) {
2782 mLauncherCallbacks.onClickFolderIcon(v);
2783 }
Michael Jurka5130e402011-10-13 04:55:35 -07002784 }
2785
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002786 /**
2787 * Event handler for the (Add) Widgets button that appears after a long press
2788 * on the home screen.
2789 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002790 protected void onClickAddWidgetButton(View view) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002791 if (LOGD) Log.d(TAG, "onClickAddWidgetButton");
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002792 if (mIsSafeModeEnabled) {
2793 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2794 } else {
2795 showAllApps(true, AppsCustomizePagedView.ContentType.Widgets, true);
2796 if (mLauncherCallbacks != null) {
2797 mLauncherCallbacks.onClickAddWidgetButton(view);
2798 }
Adam Cohen9211d422014-10-07 18:14:53 -07002799 }
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002800 }
2801
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002802 /**
2803 * Event handler for the wallpaper picker button that appears after a long press
2804 * on the home screen.
2805 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002806 protected void onClickWallpaperPicker(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002807 if (LOGD) Log.d(TAG, "onClickWallpaperPicker");
2808 final Intent pickWallpaper = new Intent(Intent.ACTION_SET_WALLPAPER);
2809 pickWallpaper.setComponent(getWallpaperPickerComponent());
2810 startActivityForResult(pickWallpaper, REQUEST_PICK_WALLPAPER);
Adam Cohen9211d422014-10-07 18:14:53 -07002811
2812 if (mLauncherCallbacks != null) {
2813 mLauncherCallbacks.onClickWallpaperPicker(v);
2814 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002815 }
2816
2817 /**
2818 * Event handler for a click on the settings button that appears after a long press
2819 * on the home screen.
2820 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002821 protected void onClickSettingsButton(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002822 if (LOGD) Log.d(TAG, "onClickSettingsButton");
Adam Cohen9211d422014-10-07 18:14:53 -07002823 if (mLauncherCallbacks != null) {
2824 mLauncherCallbacks.onClickSettingsButton(v);
2825 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002826 }
2827
Michael Jurka5130e402011-10-13 04:55:35 -07002828 public void onTouchDownAllAppsButton(View v) {
Michael Jurka2a552322011-10-11 15:22:05 -07002829 // Provide the same haptic feedback that the system offers for virtual keys.
2830 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002831 }
2832
Adam Cohen61f560d2013-09-30 15:58:20 -07002833 public void performHapticFeedbackOnTouchDown(View v) {
2834 // Provide the same haptic feedback that the system offers for virtual keys.
2835 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2836 }
2837
2838 public View.OnTouchListener getHapticFeedbackTouchListener() {
2839 if (mHapticFeedbackTouchListener == null) {
2840 mHapticFeedbackTouchListener = new View.OnTouchListener() {
2841 @Override
2842 public boolean onTouch(View v, MotionEvent event) {
2843 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
2844 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2845 }
2846 return false;
2847 }
2848 };
2849 }
2850 return mHapticFeedbackTouchListener;
2851 }
2852
Adam Cohen9211d422014-10-07 18:14:53 -07002853 public void onDragStarted(View view) {
2854 if (isOnCustomContent()) {
2855 // Custom content screen doesn't participate in drag and drop. If on custom
2856 // content screen, move to default.
2857 moveWorkspaceToDefaultScreen();
2858 }
2859
2860 if (mLauncherCallbacks != null) {
2861 mLauncherCallbacks.onDragStarted(view);
2862 }
2863 }
Anjali Koppal62d18ed2014-03-10 17:04:03 -07002864
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002865 /**
2866 * Called when the user stops interacting with the launcher.
2867 * This implies that the user is now on the homescreen and is not doing housekeeping.
2868 */
Adam Cohen9211d422014-10-07 18:14:53 -07002869 protected void onInteractionEnd() {
2870 if (mLauncherCallbacks != null) {
2871 mLauncherCallbacks.onInteractionEnd();
2872 }
2873 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002874
2875 /**
2876 * Called when the user starts interacting with the launcher.
2877 * The possible interactions are:
2878 * - open all apps
2879 * - reorder an app shortcut, or a widget
2880 * - open the overview mode.
2881 * This is a good time to stop doing things that only make sense
2882 * when the user is on the homescreen and not doing housekeeping.
2883 */
Adam Cohen9211d422014-10-07 18:14:53 -07002884 protected void onInteractionBegin() {
2885 if (mLauncherCallbacks != null) {
2886 mLauncherCallbacks.onInteractionBegin();
2887 }
2888 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002889
Kenny Guyf07af7b2014-07-31 11:39:16 +01002890 void startApplicationDetailsActivity(ComponentName componentName, UserHandleCompat user) {
Kenny Guyf07af7b2014-07-31 11:39:16 +01002891 try {
2892 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Kenny Guyf07af7b2014-07-31 11:39:16 +01002893 launcherApps.showAppDetailsForProfile(componentName, user);
2894 } catch (SecurityException e) {
2895 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2896 Log.e(TAG, "Launcher does not have permission to launch settings");
2897 } catch (ActivityNotFoundException e) {
2898 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2899 Log.e(TAG, "Unable to launch settings");
2900 }
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002901 }
2902
Michael Jurka1e2f4652013-07-08 18:03:46 -07002903 // returns true if the activity was started
Kenny Guyd31df542014-06-30 15:12:11 +01002904 boolean startApplicationUninstallActivity(ComponentName componentName, int flags,
2905 UserHandleCompat user) {
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002906 if ((flags & AppInfo.DOWNLOADED_FLAG) == 0) {
Patrick Dubroy5539af72010-09-07 15:22:01 -07002907 // System applications cannot be installed. For now, show a toast explaining that.
2908 // We may give them the option of disabling apps this way.
2909 int messageId = R.string.uninstall_system_app_text;
2910 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
Michael Jurka1e2f4652013-07-08 18:03:46 -07002911 return false;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002912 } else {
Michael Jurka1e2f4652013-07-08 18:03:46 -07002913 String packageName = componentName.getPackageName();
2914 String className = componentName.getClassName();
Patrick Dubroy5539af72010-09-07 15:22:01 -07002915 Intent intent = new Intent(
2916 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002917 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2918 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Kenny Guyd31df542014-06-30 15:12:11 +01002919 if (user != null) {
2920 user.addToIntent(intent, Intent.EXTRA_USER);
2921 }
Patrick Dubroy5539af72010-09-07 15:22:01 -07002922 startActivity(intent);
Michael Jurka1e2f4652013-07-08 18:03:46 -07002923 return true;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002924 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002925 }
2926
Michael Jurka86a720e2012-05-09 11:23:23 -07002927 boolean startActivity(View v, Intent intent, Object tag) {
Kenny Guyb6cc40b2014-05-13 15:58:58 +01002928 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002929 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002930 // Only launch using the new animation if the shortcut has not opted out (this is a
2931 // private contract between launcher and may be ignored in the future).
2932 boolean useLaunchAnimation = (v != null) &&
2933 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
Kenny Guyed131872014-04-30 03:02:21 +01002934 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
2935 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyed131872014-04-30 03:02:21 +01002936
Kenny Guy1317e2d2014-05-08 18:52:50 +01002937 UserHandleCompat user = null;
2938 if (intent.hasExtra(AppInfo.EXTRA_PROFILE)) {
2939 long serialNumber = intent.getLongExtra(AppInfo.EXTRA_PROFILE, -1);
2940 user = userManager.getUserForSerialNumber(serialNumber);
2941 }
2942
2943 Bundle optsBundle = null;
Adam Cohen68fdeaa2015-04-02 11:53:23 -07002944 if (useLaunchAnimation && !Utilities.isLmpOrAbove()) {
2945 // On pre-L devices, we use the scale up transition.
Adam Cohen68fdeaa2015-04-02 11:53:23 -07002946 ActivityOptions opts =
Adam Cohen4da294d2014-07-28 10:56:19 -07002947 ActivityOptions.makeScaleUpAnimation(v, 0, 0, v.getMeasuredWidth(), v.getMeasuredHeight());
Adam Cohen6ea3b112014-06-11 11:38:49 -07002948 optsBundle = opts.toBundle();
Adam Cohenc3d45532015-05-22 14:36:14 -07002949 } else if (useLaunchAnimation && Utilities.isLmpMr1()) {
2950 // On L-MR1 devices, we use custom slide up animation without a delay
2951 // On L devices, we use the system default slide up.
2952 ActivityOptions opts = ActivityOptions.makeCustomAnimation(this,
2953 R.anim.task_open_enter, R.anim.no_anim);
2954 optsBundle = opts.toBundle();
Adam Cohen6ea3b112014-06-11 11:38:49 -07002955 }
Kenny Guy1317e2d2014-05-08 18:52:50 +01002956
2957 if (user == null || user.equals(UserHandleCompat.myUserHandle())) {
2958 // Could be launching some bookkeeping activity
2959 startActivity(intent, optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002960 } else {
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002961 // TODO Component can be null when shortcuts are supported for secondary user
Kenny Guyc2bd8102014-06-30 12:30:31 +01002962 launcherApps.startActivityForProfile(intent.getComponent(), user,
2963 intent.getSourceBounds(), optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002964 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002965 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002966 } catch (SecurityException e) {
2967 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002968 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002969 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07002970 "or use the exported attribute for this activity. "
2971 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002972 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002973 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002974 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002975
Michael Jurka86a720e2012-05-09 11:23:23 -07002976 boolean startActivitySafely(View v, Intent intent, Object tag) {
2977 boolean success = false;
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002978 if (mIsSafeModeEnabled && !Utilities.isSystemApp(this, intent)) {
2979 Toast.makeText(this, R.string.safemode_shortcut_error, Toast.LENGTH_SHORT).show();
2980 return false;
2981 }
Michael Jurka86a720e2012-05-09 11:23:23 -07002982 try {
2983 success = startActivity(v, intent, tag);
2984 } catch (ActivityNotFoundException e) {
2985 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2986 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
2987 }
2988 return success;
2989 }
2990
Adam Cohen268c4752012-06-06 17:47:33 -07002991 /**
2992 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
2993 * in the DragLayer in the exact absolute location of the original FolderIcon.
2994 */
2995 private void copyFolderIconToImage(FolderIcon fi) {
2996 final int width = fi.getMeasuredWidth();
2997 final int height = fi.getMeasuredHeight();
2998
2999 // Lazy load ImageView, Bitmap and Canvas
3000 if (mFolderIconImageView == null) {
3001 mFolderIconImageView = new ImageView(this);
3002 }
3003 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
3004 mFolderIconBitmap.getHeight() != height) {
3005 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
3006 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
3007 }
3008
3009 DragLayer.LayoutParams lp;
3010 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
3011 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
3012 } else {
3013 lp = new DragLayer.LayoutParams(width, height);
3014 }
3015
Adam Cohen307fe232012-08-16 17:55:58 -07003016 // The layout from which the folder is being opened may be scaled, adjust the starting
3017 // view size by this scale factor.
3018 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07003019 lp.customPosition = true;
3020 lp.x = mRectForFolderAnimation.left;
3021 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07003022 lp.width = (int) (scale * width);
3023 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07003024
3025 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
3026 fi.draw(mFolderIconCanvas);
3027 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07003028 if (fi.getFolder() != null) {
3029 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
3030 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07003031 }
Adam Cohen268c4752012-06-06 17:47:33 -07003032 // Just in case this image view is still in the drag layer from a previous animation,
3033 // we remove it and re-add it.
3034 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
3035 mDragLayer.removeView(mFolderIconImageView);
3036 }
3037 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07003038 if (fi.getFolder() != null) {
3039 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07003040 }
Adam Cohen268c4752012-06-06 17:47:33 -07003041 }
3042
Adam Cohen2801caf2011-05-13 20:57:39 -07003043 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003044 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003045 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
3046 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
3047 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
3048
Adam Cohenc51934b2011-07-26 21:07:43 -07003049 FolderInfo info = (FolderInfo) fi.getTag();
3050 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3051 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07003052 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
3053 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07003054 }
3055
Adam Cohen268c4752012-06-06 17:47:33 -07003056 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
3057 copyFolderIconToImage(fi);
3058 fi.setVisibility(View.INVISIBLE);
3059
Michael Jurka2ecf9952012-06-18 12:52:28 -07003060 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003061 scaleX, scaleY);
Kenny Guyd794a3f2014-09-16 15:17:58 +01003062 if (Utilities.isLmpOrAbove()) {
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003063 oa.setInterpolator(new LogDecelerateInterpolator(100, 0));
3064 }
3065 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohen2801caf2011-05-13 20:57:39 -07003066 oa.start();
3067 }
3068
Adam Cohen268c4752012-06-06 17:47:33 -07003069 private void shrinkAndFadeInFolderIcon(final FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003070 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003071 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
3072 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
3073 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
3074
Adam Cohen268c4752012-06-06 17:47:33 -07003075 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07003076
Adam Cohen268c4752012-06-06 17:47:33 -07003077 // We remove and re-draw the FolderIcon in-case it has changed
3078 mDragLayer.removeView(mFolderIconImageView);
3079 copyFolderIconToImage(fi);
Michael Jurka2ecf9952012-06-18 12:52:28 -07003080 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003081 scaleX, scaleY);
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003082 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07003083 oa.addListener(new AnimatorListenerAdapter() {
3084 @Override
3085 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07003086 if (cl != null) {
3087 cl.clearFolderLeaveBehind();
3088 // Remove the ImageView copy of the FolderIcon and make the original visible.
3089 mDragLayer.removeView(mFolderIconImageView);
3090 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07003091 }
3092 }
3093 });
Adam Cohen2801caf2011-05-13 20:57:39 -07003094 oa.start();
3095 }
3096
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003097 /**
Michael Jurka774bd372010-10-22 13:40:50 -07003098 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003099 * is animated relative to the specified View. If the View is null, no animation
3100 * is played.
3101 *
3102 * @param folderInfo The FolderInfo describing the folder to open.
3103 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07003104 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07003105 Folder folder = folderIcon.getFolder();
Adam Cohena9cf38f2011-05-02 15:36:58 -07003106 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003107
Adam Cohena9cf38f2011-05-02 15:36:58 -07003108 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003109
Adam Cohen4554ee12011-08-03 16:13:21 -07003110 // Just verify that the folder hasn't already been added to the DragLayer.
3111 // There was a one-off crash where the folder had a parent already.
3112 if (folder.getParent() == null) {
3113 mDragLayer.addView(folder);
3114 mDragController.addDropTarget((DropTarget) folder);
3115 } else {
3116 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
3117 folder.getParent() + ").");
3118 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07003119 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07003120 growAndFadeOutFolderIcon(folderIcon);
Winson Chung83ca4802013-04-12 15:10:52 -07003121
3122 // Notify the accessibility manager that this folder "window" has appeared and occluded
3123 // the workspace items
3124 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
3125 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07003126 }
3127
3128 public void closeFolder() {
Adam Cohen37c717f2013-11-26 11:50:15 -08003129 Folder folder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
Adam Cohen4554ee12011-08-03 16:13:21 -07003130 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07003131 if (folder.isEditingName()) {
3132 folder.dismissEditingName();
3133 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003134 closeFolder(folder);
3135 }
3136 }
3137
3138 void closeFolder(Folder folder) {
3139 folder.getInfo().opened = false;
3140
3141 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
3142 if (parent != null) {
3143 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
3144 shrinkAndFadeInFolderIcon(fi);
3145 }
3146 folder.animateClosed();
Winson Chung83ca4802013-04-12 15:10:52 -07003147
3148 // Notify the accessibility manager that this folder "window" has disappeard and no
3149 // longer occludeds the workspace items
3150 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003151 }
3152
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003153 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07003154 if (!isDraggingEnabled()) return false;
3155 if (isWorkspaceLocked()) return false;
3156 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003157
Adam Cohen1697b792013-09-17 19:08:21 -07003158 if (v instanceof Workspace) {
3159 if (!mWorkspace.isInOverviewMode()) {
Adam Cohen93c97562013-09-26 13:48:01 -07003160 if (mWorkspace.enterOverviewMode()) {
3161 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3162 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
3163 return true;
3164 } else {
3165 return false;
3166 }
Adam Cohenaa4c8c12014-06-06 11:52:52 -07003167 } else {
3168 return false;
Adam Cohen1697b792013-09-17 19:08:21 -07003169 }
Adam Cohen1697b792013-09-17 19:08:21 -07003170 }
3171
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003172 CellLayout.CellInfo longClickCellInfo = null;
3173 View itemUnderLongClick = null;
3174 if (v.getTag() instanceof ItemInfo) {
3175 ItemInfo info = (ItemInfo) v.getTag();
3176 longClickCellInfo = new CellLayout.CellInfo(v, info);;
3177 itemUnderLongClick = longClickCellInfo.cell;
3178 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003179 }
3180
Winson Chung3d503fb2011-07-13 17:25:49 -07003181 // The hotseat touch handling does not go through Workspace, and we always allow long press
3182 // on hotseat items.
Dan Sandlere26d0942014-01-13 14:30:14 -05003183 final boolean inHotseat = isHotseatLayout(v);
3184 boolean allowLongPress = inHotseat || mWorkspace.allowLongPress();
Winson Chung3d503fb2011-07-13 17:25:49 -07003185 if (allowLongPress && !mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07003186 if (itemUnderLongClick == null) {
Adam Cohend3ecce92013-09-16 14:58:00 -07003187 // User long pressed on empty space
3188 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3189 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Adam Cohend3ecce92013-09-16 14:58:00 -07003190 if (mWorkspace.isInOverviewMode()) {
3191 mWorkspace.startReordering(v);
3192 } else {
3193 mWorkspace.enterOverviewMode();
Adam Cohendedbd962013-07-11 14:21:49 -07003194 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003195 } else {
Dan Sandlere26d0942014-01-13 14:30:14 -05003196 final boolean isAllAppsButton = inHotseat && isAllAppsButtonRank(
3197 mHotseat.getOrderInHotseat(
3198 longClickCellInfo.cellX,
3199 longClickCellInfo.cellY));
3200 if (!(itemUnderLongClick instanceof Folder || isAllAppsButton)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003201 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07003202 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003203 }
3204 }
3205 }
3206 return true;
3207 }
3208
Winson Chung3d503fb2011-07-13 17:25:49 -07003209 boolean isHotseatLayout(View layout) {
3210 return mHotseat != null && layout != null &&
3211 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
3212 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08003213
Winson Chung3d503fb2011-07-13 17:25:49 -07003214 /**
3215 * Returns the CellLayout of the specified container at the specified screen.
3216 */
Adam Cohendcd297f2013-06-18 13:13:40 -07003217 CellLayout getCellLayout(long container, long screenId) {
Winson Chung3d503fb2011-07-13 17:25:49 -07003218 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3219 if (mHotseat != null) {
3220 return mHotseat.getLayout();
3221 } else {
3222 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08003223 }
Winson Chung3d503fb2011-07-13 17:25:49 -07003224 } else {
Adam Cohendcd297f2013-06-18 13:13:40 -07003225 return (CellLayout) mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08003226 }
3227 }
3228
Daniel Sandler843e8602010-06-07 14:59:01 -04003229 public boolean isAllAppsVisible() {
Winson Chungc93e5ae2012-07-23 20:48:26 -07003230 return (mState == State.APPS_CUSTOMIZE) || (mOnResumeState == State.APPS_CUSTOMIZE);
Joe Onoratofb0ca672009-09-14 17:55:46 -04003231 }
3232
Craig Mautner360310b2012-10-26 15:13:08 -07003233 private void setWorkspaceBackground(boolean workspace) {
3234 mLauncherView.setBackground(workspace ?
Michael Jurka496fefb2013-05-06 15:39:11 +02003235 mWorkspaceBackgroundDrawable : null);
Craig Mautner360310b2012-10-26 15:13:08 -07003236 }
3237
Selim Cinek3a8a8f72014-01-16 10:38:38 -08003238 protected void changeWallpaperVisiblity(boolean visible) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003239 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
3240 int curflags = getWindow().getAttributes().flags
3241 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
3242 if (wpflags != curflags) {
3243 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
3244 }
Craig Mautner360310b2012-10-26 15:13:08 -07003245 setWorkspaceBackground(visible);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003246 }
3247
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003248 private void dispatchOnLauncherTransitionPrepare(View v, boolean animated, boolean toWorkspace) {
3249 if (v instanceof LauncherTransitionable) {
3250 ((LauncherTransitionable) v).onLauncherTransitionPrepare(this, animated, toWorkspace);
3251 }
3252 }
3253
Michael Jurkabed61d22012-02-14 22:51:29 -08003254 private void dispatchOnLauncherTransitionStart(View v, boolean animated, boolean toWorkspace) {
3255 if (v instanceof LauncherTransitionable) {
3256 ((LauncherTransitionable) v).onLauncherTransitionStart(this, animated, toWorkspace);
3257 }
Winson Chung70442722012-02-10 15:43:22 -08003258
3259 // Update the workspace transition step as well
3260 dispatchOnLauncherTransitionStep(v, 0f);
3261 }
3262
3263 private void dispatchOnLauncherTransitionStep(View v, float t) {
3264 if (v instanceof LauncherTransitionable) {
3265 ((LauncherTransitionable) v).onLauncherTransitionStep(this, t);
3266 }
Michael Jurkabed61d22012-02-14 22:51:29 -08003267 }
3268
3269 private void dispatchOnLauncherTransitionEnd(View v, boolean animated, boolean toWorkspace) {
3270 if (v instanceof LauncherTransitionable) {
3271 ((LauncherTransitionable) v).onLauncherTransitionEnd(this, animated, toWorkspace);
3272 }
Winson Chung70442722012-02-10 15:43:22 -08003273
3274 // Update the workspace transition step as well
3275 dispatchOnLauncherTransitionStep(v, 1f);
Michael Jurkabed61d22012-02-14 22:51:29 -08003276 }
3277
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003278 /**
Michael Jurkab3e22d92011-10-31 15:58:33 -07003279 * Things to test when changing the following seven functions.
3280 * - Home from workspace
3281 * - from center screen
3282 * - from other screens
3283 * - Home from all apps
3284 * - from center screen
3285 * - from other screens
3286 * - Back from all apps
3287 * - from center screen
3288 * - from other screens
3289 * - Launch app from workspace and quit
3290 * - with back
3291 * - with home
3292 * - Launch app from all apps and quit
3293 * - with back
3294 * - with home
3295 * - Go to a screen that's not the default, then all
3296 * apps, and launch and app, and go back
3297 * - with back
3298 * -with home
3299 * - On workspace, long press power and go back
3300 * - with back
3301 * - with home
3302 * - On all apps, long press power and go back
3303 * - with back
3304 * - with home
3305 * - On workspace, power off
3306 * - On all apps, power off
3307 * - Launch an app and turn off the screen while in that app
3308 * - Go back with home key
3309 * - Go back with back key TODO: make this not go to workspace
3310 * - From all apps
3311 * - From workspace
3312 * - Enter and exit car mode (becuase it causes an extra configuration changed)
3313 * - From all apps
3314 * - From the center workspace
3315 * - From another workspace
3316 */
3317
3318 /**
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003319 * Zoom the camera out from the workspace to reveal 'toView'.
3320 * Assumes that the view to show is anchored at either the very top or very bottom
3321 * of the screen.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003322 */
Michael Jurkabed61d22012-02-14 22:51:29 -08003323 private void showAppsCustomizeHelper(final boolean animated, final boolean springLoaded) {
Winson Chungc58497e2013-09-03 17:48:37 -07003324 AppsCustomizePagedView.ContentType contentType = mAppsCustomizeContent.getContentType();
3325 showAppsCustomizeHelper(animated, springLoaded, contentType);
3326 }
Adam Cohen6c5891a2014-07-09 23:53:15 -07003327
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08003328 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Winson Chungc58497e2013-09-03 17:48:37 -07003329 private void showAppsCustomizeHelper(final boolean animated, final boolean springLoaded,
3330 final AppsCustomizePagedView.ContentType contentType) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003331 if (mStateAnimation != null) {
Michael Jurkaf1ad6082013-03-13 12:55:46 +01003332 mStateAnimation.setDuration(0);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003333 mStateAnimation.cancel();
3334 mStateAnimation = null;
3335 }
Adam Cohen6c5891a2014-07-09 23:53:15 -07003336
Kenny Guyd794a3f2014-09-16 15:17:58 +01003337 boolean material = Utilities.isLmpOrAbove();
Adam Cohen6c5891a2014-07-09 23:53:15 -07003338
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003339 final Resources res = getResources();
Adam Cohenf16e5712011-01-13 13:31:45 -08003340
Adam Cohen6c5891a2014-07-09 23:53:15 -07003341 final int revealDuration = res.getInteger(R.integer.config_appsCustomizeRevealTime);
Adam Cohen9bfdb762014-07-21 17:44:06 -07003342 final int itemsAlphaStagger =
3343 res.getInteger(R.integer.config_appsCustomizeItemsAlphaStagger);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003344
Michael Jurkabed61d22012-02-14 22:51:29 -08003345 final View fromView = mWorkspace;
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003346 final AppsCustomizeTabHost toView = mAppsCustomizeTabHost;
Patrick Dubroy558654c2010-07-23 16:48:11 -07003347
Adam Cohen80e6beb2015-02-13 16:14:33 -08003348 final HashMap<View, Integer> layerViews = new HashMap<View, Integer>();
Adam Cohen2854d252014-08-27 16:04:07 -07003349
Adam Cohen6c5891a2014-07-09 23:53:15 -07003350 Workspace.State workspaceState = contentType == AppsCustomizePagedView.ContentType.Widgets ?
3351 Workspace.State.OVERVIEW_HIDDEN : Workspace.State.NORMAL_HIDDEN;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003352 Animator workspaceAnim =
Adam Cohen2854d252014-08-27 16:04:07 -07003353 mWorkspace.getChangeStateAnimation(workspaceState, animated, layerViews);
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -08003354 if (!LauncherAppState.isDisableAllApps()
Nilesh Agrawal306c1cf2013-12-12 14:56:00 -08003355 || contentType == AppsCustomizePagedView.ContentType.Widgets) {
3356 // Set the content type for the all apps/widgets space
Winson Chungc58497e2013-09-03 17:48:37 -07003357 mAppsCustomizeTabHost.setContentTypeImmediate(contentType);
3358 }
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003359
Adam Cohena38dc902014-09-07 17:48:55 +02003360 // If for some reason our views aren't initialized, don't animate
3361 boolean initialized = getAllAppsButton() != null;
3362
3363 if (animated && initialized) {
Adam Cohen9bfdb762014-07-21 17:44:06 -07003364 mStateAnimation = LauncherAnimUtils.createAnimatorSet();
Adam Cohen9bfdb762014-07-21 17:44:06 -07003365 final AppsCustomizePagedView content = (AppsCustomizePagedView)
3366 toView.findViewById(R.id.apps_customize_pane_content);
Adam Cohenf16e5712011-01-13 13:31:45 -08003367
Adam Cohen9bfdb762014-07-21 17:44:06 -07003368 final View page = content.getPageAt(content.getCurrentPage());
3369 final View revealView = toView.findViewById(R.id.fake_page);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003370
Adam Cohen63f1ec02014-08-12 09:23:13 -07003371 final boolean isWidgetTray = contentType == AppsCustomizePagedView.ContentType.Widgets;
3372 if (isWidgetTray) {
Adam Cohen4e243a22014-08-10 18:30:55 -07003373 revealView.setBackground(res.getDrawable(R.drawable.quantum_panel_dark));
3374 } else {
3375 revealView.setBackground(res.getDrawable(R.drawable.quantum_panel));
3376 }
3377
Adam Cohen9bfdb762014-07-21 17:44:06 -07003378 // Hide the real page background, and swap in the fake one
Adam Cohen9bfdb762014-07-21 17:44:06 -07003379 content.setPageBackgroundsVisible(false);
Adam Cohen2854d252014-08-27 16:04:07 -07003380 revealView.setVisibility(View.VISIBLE);
3381 // We need to hide this view as the animation start will be posted.
3382 revealView.setAlpha(0);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003383
Adam Cohen9bfdb762014-07-21 17:44:06 -07003384 int width = revealView.getMeasuredWidth();
3385 int height = revealView.getMeasuredHeight();
Adam Cohen9bfdb762014-07-21 17:44:06 -07003386 float revealRadius = (float) Math.sqrt((width * width) / 4 + (height * height) / 4);
Adam Cohen2854d252014-08-27 16:04:07 -07003387
Adam Cohen63f1ec02014-08-12 09:23:13 -07003388 revealView.setTranslationY(0);
Adam Cohen94afab42014-08-24 16:10:54 -07003389 revealView.setTranslationX(0);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003390
Adam Cohen63f1ec02014-08-12 09:23:13 -07003391 // Get the y delta between the center of the page and the center of the all apps button
3392 int[] allAppsToPanelDelta = Utilities.getCenterDeltaInScreenSpace(revealView,
3393 getAllAppsButton(), null);
Adam Cohen63f1ec02014-08-12 09:23:13 -07003394
Adam Cohen2854d252014-08-27 16:04:07 -07003395 float alpha = 0;
3396 float xDrift = 0;
3397 float yDrift = 0;
3398 if (material) {
3399 alpha = isWidgetTray ? 0.3f : 1f;
3400 yDrift = isWidgetTray ? height / 2 : allAppsToPanelDelta[1];
3401 xDrift = isWidgetTray ? 0 : allAppsToPanelDelta[0];
3402 } else {
3403 yDrift = 2 * height / 3;
3404 xDrift = 0;
3405 }
3406 final float initAlpha = alpha;
3407
Adam Cohen80e6beb2015-02-13 16:14:33 -08003408 layerViews.put(revealView, BUILD_AND_SET_LAYER);
Adam Cohen63f1ec02014-08-12 09:23:13 -07003409 PropertyValuesHolder panelAlpha = PropertyValuesHolder.ofFloat("alpha", initAlpha, 1f);
Adam Cohen94afab42014-08-24 16:10:54 -07003410 PropertyValuesHolder panelDriftY =
Adam Cohen63f1ec02014-08-12 09:23:13 -07003411 PropertyValuesHolder.ofFloat("translationY", yDrift, 0);
Adam Cohen94afab42014-08-24 16:10:54 -07003412 PropertyValuesHolder panelDriftX =
3413 PropertyValuesHolder.ofFloat("translationX", xDrift, 0);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003414
Adam Cohen2854d252014-08-27 16:04:07 -07003415 ObjectAnimator panelAlphaAndDrift = ObjectAnimator.ofPropertyValuesHolder(revealView,
3416 panelAlpha, panelDriftY, panelDriftX);
3417
Adam Cohen9bfdb762014-07-21 17:44:06 -07003418 panelAlphaAndDrift.setDuration(revealDuration);
3419 panelAlphaAndDrift.setInterpolator(new LogDecelerateInterpolator(100, 0));
Adam Cohen6c5891a2014-07-09 23:53:15 -07003420
Adam Cohen9bfdb762014-07-21 17:44:06 -07003421 mStateAnimation.play(panelAlphaAndDrift);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003422
Adam Cohen4e243a22014-08-10 18:30:55 -07003423 if (page != null) {
3424 page.setVisibility(View.VISIBLE);
Adam Cohen80e6beb2015-02-13 16:14:33 -08003425 layerViews.put(page, BUILD_AND_SET_LAYER);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003426
Adam Cohen2854d252014-08-27 16:04:07 -07003427 ObjectAnimator pageDrift = ObjectAnimator.ofFloat(page, "translationY", yDrift, 0);
3428 page.setTranslationY(yDrift);
Adam Cohen4e243a22014-08-10 18:30:55 -07003429 pageDrift.setDuration(revealDuration);
3430 pageDrift.setInterpolator(new LogDecelerateInterpolator(100, 0));
Adam Cohen63f1ec02014-08-12 09:23:13 -07003431 pageDrift.setStartDelay(itemsAlphaStagger);
Adam Cohen4e243a22014-08-10 18:30:55 -07003432 mStateAnimation.play(pageDrift);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003433
Adam Cohen63f1ec02014-08-12 09:23:13 -07003434 page.setAlpha(0f);
Adam Cohen2854d252014-08-27 16:04:07 -07003435 ObjectAnimator itemsAlpha = ObjectAnimator.ofFloat(page, "alpha", 0f, 1f);
Adam Cohen4e243a22014-08-10 18:30:55 -07003436 itemsAlpha.setDuration(revealDuration);
3437 itemsAlpha.setInterpolator(new AccelerateInterpolator(1.5f));
3438 itemsAlpha.setStartDelay(itemsAlphaStagger);
3439 mStateAnimation.play(itemsAlpha);
3440 }
Adam Cohen6c5891a2014-07-09 23:53:15 -07003441
Adam Cohen4e243a22014-08-10 18:30:55 -07003442 View pageIndicators = toView.findViewById(R.id.apps_customize_page_indicator);
3443 pageIndicators.setAlpha(0.01f);
Adam Cohen9bfdb762014-07-21 17:44:06 -07003444 ObjectAnimator indicatorsAlpha =
Adam Cohen2854d252014-08-27 16:04:07 -07003445 ObjectAnimator.ofFloat(pageIndicators, "alpha", 1f);
Adam Cohen9bfdb762014-07-21 17:44:06 -07003446 indicatorsAlpha.setDuration(revealDuration);
3447 mStateAnimation.play(indicatorsAlpha);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003448
Adam Cohen9bfdb762014-07-21 17:44:06 -07003449 if (material) {
Adam Cohen63f1ec02014-08-12 09:23:13 -07003450 final View allApps = getAllAppsButton();
3451 int allAppsButtonSize = LauncherAppState.getInstance().
3452 getDynamicGrid().getDeviceProfile().allAppsButtonVisualSize;
3453 float startRadius = isWidgetTray ? 0 : allAppsButtonSize / 2;
Adam Cohen2854d252014-08-27 16:04:07 -07003454 Animator reveal = ViewAnimationUtils.createCircularReveal(revealView, width / 2,
Adam Cohen63f1ec02014-08-12 09:23:13 -07003455 height / 2, startRadius, revealRadius);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003456 reveal.setDuration(revealDuration);
3457 reveal.setInterpolator(new LogDecelerateInterpolator(100, 0));
Adam Cohen63f1ec02014-08-12 09:23:13 -07003458
3459 reveal.addListener(new AnimatorListenerAdapter() {
3460 public void onAnimationStart(Animator animation) {
3461 if (!isWidgetTray) {
3462 allApps.setVisibility(View.INVISIBLE);
3463 }
3464 }
3465 public void onAnimationEnd(Animator animation) {
3466 if (!isWidgetTray) {
3467 allApps.setVisibility(View.VISIBLE);
3468 }
3469 }
3470 });
Adam Cohen6c5891a2014-07-09 23:53:15 -07003471 mStateAnimation.play(reveal);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003472 }
Michael Jurka1899a362011-11-03 13:50:45 -07003473
Adam Cohen9bfdb762014-07-21 17:44:06 -07003474 mStateAnimation.addListener(new AnimatorListenerAdapter() {
3475 @Override
3476 public void onAnimationEnd(Animator animation) {
3477 dispatchOnLauncherTransitionEnd(fromView, animated, false);
3478 dispatchOnLauncherTransitionEnd(toView, animated, false);
3479
3480 revealView.setVisibility(View.INVISIBLE);
Adam Cohen80e6beb2015-02-13 16:14:33 -08003481
3482 for (View v : layerViews.keySet()) {
3483 if (layerViews.get(v) == BUILD_AND_SET_LAYER) {
3484 v.setLayerType(View.LAYER_TYPE_NONE, null);
3485 }
Adam Cohen4e243a22014-08-10 18:30:55 -07003486 }
Adam Cohen9bfdb762014-07-21 17:44:06 -07003487 content.setPageBackgroundsVisible(true);
3488
3489 // Hide the search bar
3490 if (mSearchDropTargetBar != null) {
3491 mSearchDropTargetBar.hideSearchBar(false);
3492 }
Adam Cohen3f9c9712014-10-31 11:48:25 -07003493
3494 // This can hold unnecessary references to views.
3495 mStateAnimation = null;
Adam Cohen9bfdb762014-07-21 17:44:06 -07003496 }
3497
Adam Cohen9bfdb762014-07-21 17:44:06 -07003498 });
3499
Adam Cohen6c5891a2014-07-09 23:53:15 -07003500 if (workspaceAnim != null) {
3501 mStateAnimation.play(workspaceAnim);
3502 }
Adam Cohen2854d252014-08-27 16:04:07 -07003503
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003504 dispatchOnLauncherTransitionPrepare(fromView, animated, false);
3505 dispatchOnLauncherTransitionPrepare(toView, animated, false);
Michael Jurka3dcd79e2012-05-31 07:50:33 -07003506 final AnimatorSet stateAnimation = mStateAnimation;
3507 final Runnable startAnimRunnable = new Runnable() {
3508 public void run() {
3509 // Check that mStateAnimation hasn't changed while
3510 // we waited for a layout/draw pass
3511 if (mStateAnimation != stateAnimation)
3512 return;
Michael Jurka3dcd79e2012-05-31 07:50:33 -07003513 dispatchOnLauncherTransitionStart(fromView, animated, false);
3514 dispatchOnLauncherTransitionStart(toView, animated, false);
Adam Cohen2854d252014-08-27 16:04:07 -07003515
3516 revealView.setAlpha(initAlpha);
Adam Cohen80e6beb2015-02-13 16:14:33 -08003517
3518 for (View v : layerViews.keySet()) {
3519 if (layerViews.get(v) == BUILD_AND_SET_LAYER) {
3520 v.setLayerType(View.LAYER_TYPE_HARDWARE, null);
3521 }
3522 }
3523
Kenny Guyd794a3f2014-09-16 15:17:58 +01003524 if (Utilities.isLmpOrAbove()) {
Adam Cohen80e6beb2015-02-13 16:14:33 -08003525 for (View v : layerViews.keySet()) {
3526 if (Utilities.isViewAttachedToWindow(v)) v.buildLayer();
Adam Cohen2854d252014-08-27 16:04:07 -07003527 }
3528 }
3529 mStateAnimation.start();
Michael Jurka3dcd79e2012-05-31 07:50:33 -07003530 }
3531 };
Adam Cohen2854d252014-08-27 16:04:07 -07003532 toView.bringToFront();
3533 toView.setVisibility(View.VISIBLE);
3534 toView.post(startAnimRunnable);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003535 } else {
3536 toView.setTranslationX(0.0f);
3537 toView.setTranslationY(0.0f);
3538 toView.setScaleX(1.0f);
3539 toView.setScaleY(1.0f);
3540 toView.setVisibility(View.VISIBLE);
Winson Chung785d2eb2011-04-14 16:08:02 -07003541 toView.bringToFront();
Winson Chung3ac74c52011-06-30 17:39:37 -07003542
Daniel Sandlere4f98912013-06-25 15:13:26 -04003543 if (!springLoaded && !LauncherAppState.getInstance().isScreenLarge()) {
Winson Chungc7d2b602012-05-16 17:02:20 -07003544 // Hide the search bar
Winson Chungadf0c182012-08-23 14:59:07 -07003545 if (mSearchDropTargetBar != null) {
3546 mSearchDropTargetBar.hideSearchBar(false);
3547 }
Michael Jurkaabded662011-03-04 12:06:57 -08003548 }
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003549 dispatchOnLauncherTransitionPrepare(fromView, animated, false);
Michael Jurkabed61d22012-02-14 22:51:29 -08003550 dispatchOnLauncherTransitionStart(fromView, animated, false);
3551 dispatchOnLauncherTransitionEnd(fromView, animated, false);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003552 dispatchOnLauncherTransitionPrepare(toView, animated, false);
Michael Jurkabed61d22012-02-14 22:51:29 -08003553 dispatchOnLauncherTransitionStart(toView, animated, false);
3554 dispatchOnLauncherTransitionEnd(toView, animated, false);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003555 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003556 }
3557
3558 /**
3559 * Zoom the camera back into the workspace, hiding 'fromView'.
Michael Jurkab3e22d92011-10-31 15:58:33 -07003560 * This is the opposite of showAppsCustomizeHelper.
Patrick Dubroy6b509c12010-08-23 15:08:16 -07003561 * @param animated If true, the transition will be animated.
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003562 */
Adam Cohened307df2013-10-02 09:37:31 -07003563 private void hideAppsCustomizeHelper(Workspace.State toState, final boolean animated,
Adam Cohened66b2b2012-01-23 17:28:51 -08003564 final boolean springLoaded, final Runnable onCompleteRunnable) {
Michael Jurkabed61d22012-02-14 22:51:29 -08003565
Michael Jurkab3e22d92011-10-31 15:58:33 -07003566 if (mStateAnimation != null) {
Michael Jurkaf1ad6082013-03-13 12:55:46 +01003567 mStateAnimation.setDuration(0);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003568 mStateAnimation.cancel();
3569 mStateAnimation = null;
3570 }
Adam Cohen6c5891a2014-07-09 23:53:15 -07003571
Kenny Guyd794a3f2014-09-16 15:17:58 +01003572 boolean material = Utilities.isLmpOrAbove();
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003573 Resources res = getResources();
Adam Cohenf16e5712011-01-13 13:31:45 -08003574
Adam Cohen63f1ec02014-08-12 09:23:13 -07003575 final int revealDuration = res.getInteger(R.integer.config_appsCustomizeConcealTime);
Adam Cohen9bfdb762014-07-21 17:44:06 -07003576 final int itemsAlphaStagger =
3577 res.getInteger(R.integer.config_appsCustomizeItemsAlphaStagger);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003578
Winson Chungf0ea4d32011-06-06 14:27:16 -07003579 final View fromView = mAppsCustomizeTabHost;
Michael Jurkabed61d22012-02-14 22:51:29 -08003580 final View toView = mWorkspace;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003581 Animator workspaceAnim = null;
Adam Cohen80e6beb2015-02-13 16:14:33 -08003582 final HashMap<View, Integer> layerViews = new HashMap<View, Integer>();
Adam Cohen2854d252014-08-27 16:04:07 -07003583
Adam Cohened307df2013-10-02 09:37:31 -07003584 if (toState == Workspace.State.NORMAL) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003585 workspaceAnim = mWorkspace.getChangeStateAnimation(
Adam Cohen2854d252014-08-27 16:04:07 -07003586 toState, animated, layerViews);
Adam Cohened307df2013-10-02 09:37:31 -07003587 } else if (toState == Workspace.State.SPRING_LOADED ||
3588 toState == Workspace.State.OVERVIEW) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003589 workspaceAnim = mWorkspace.getChangeStateAnimation(
Adam Cohen2854d252014-08-27 16:04:07 -07003590 toState, animated, layerViews);
Michael Jurka2a4b1a82011-12-07 14:00:02 -08003591 }
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07003592
Adam Cohena38dc902014-09-07 17:48:55 +02003593 // If for some reason our views aren't initialized, don't animate
3594 boolean initialized = getAllAppsButton() != null;
3595
3596 if (animated && initialized) {
Adam Cohen9bfdb762014-07-21 17:44:06 -07003597 mStateAnimation = LauncherAnimUtils.createAnimatorSet();
Adam Cohen2854d252014-08-27 16:04:07 -07003598 if (workspaceAnim != null) {
3599 mStateAnimation.play(workspaceAnim);
3600 }
Michael Jurka159b4cc2012-01-17 03:00:35 -08003601
Adam Cohen9bfdb762014-07-21 17:44:06 -07003602 final AppsCustomizePagedView content = (AppsCustomizePagedView)
3603 fromView.findViewById(R.id.apps_customize_pane_content);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003604
Adam Cohen9bfdb762014-07-21 17:44:06 -07003605 final View page = content.getPageAt(content.getNextPage());
Adam Cohen8e894fa2014-09-08 19:45:43 +02003606
3607 // We need to hide side pages of the Apps / Widget tray to avoid some ugly edge cases
3608 int count = content.getChildCount();
3609 for (int i = 0; i < count; i++) {
3610 View child = content.getChildAt(i);
3611 if (child != page) {
3612 child.setVisibility(View.INVISIBLE);
3613 }
3614 }
Adam Cohen9bfdb762014-07-21 17:44:06 -07003615 final View revealView = fromView.findViewById(R.id.fake_page);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003616
Adam Cohen2854d252014-08-27 16:04:07 -07003617 // hideAppsCustomizeHelper is called in some cases when it is already hidden
3618 // don't perform all these no-op animations. In particularly, this was causing
3619 // the all-apps button to pop in and out.
3620 if (fromView.getVisibility() == View.VISIBLE) {
3621 AppsCustomizePagedView.ContentType contentType = content.getContentType();
3622 final boolean isWidgetTray =
3623 contentType == AppsCustomizePagedView.ContentType.Widgets;
Adam Cohen63f1ec02014-08-12 09:23:13 -07003624
Adam Cohen2854d252014-08-27 16:04:07 -07003625 if (isWidgetTray) {
3626 revealView.setBackground(res.getDrawable(R.drawable.quantum_panel_dark));
3627 } else {
3628 revealView.setBackground(res.getDrawable(R.drawable.quantum_panel));
Adam Cohen63f1ec02014-08-12 09:23:13 -07003629 }
Adam Cohen6c5891a2014-07-09 23:53:15 -07003630
Adam Cohen2854d252014-08-27 16:04:07 -07003631 int width = revealView.getMeasuredWidth();
3632 int height = revealView.getMeasuredHeight();
3633 float revealRadius = (float) Math.sqrt((width * width) / 4 + (height * height) / 4);
3634
3635 // Hide the real page background, and swap in the fake one
3636 revealView.setVisibility(View.VISIBLE);
3637 content.setPageBackgroundsVisible(false);
3638
3639 final View allAppsButton = getAllAppsButton();
3640 revealView.setTranslationY(0);
3641 int[] allAppsToPanelDelta = Utilities.getCenterDeltaInScreenSpace(revealView,
3642 allAppsButton, null);
3643
3644 float xDrift = 0;
3645 float yDrift = 0;
3646 if (material) {
3647 yDrift = isWidgetTray ? height / 2 : allAppsToPanelDelta[1];
3648 xDrift = isWidgetTray ? 0 : allAppsToPanelDelta[0];
3649 } else {
Adam Cohen0fb5ce22014-10-24 13:50:20 -07003650 yDrift = 2 * height / 3;
Adam Cohen2854d252014-08-27 16:04:07 -07003651 xDrift = 0;
3652 }
3653
Adam Cohen80e6beb2015-02-13 16:14:33 -08003654 layerViews.put(revealView, BUILD_AND_SET_LAYER);
Adam Cohen2854d252014-08-27 16:04:07 -07003655 TimeInterpolator decelerateInterpolator = material ?
3656 new LogDecelerateInterpolator(100, 0) :
Adam Cohen0fb5ce22014-10-24 13:50:20 -07003657 new DecelerateInterpolator(1f);
Adam Cohen2854d252014-08-27 16:04:07 -07003658
3659 // The vertical motion of the apps panel should be delayed by one frame
3660 // from the conceal animation in order to give the right feel. We correpsondingly
3661 // shorten the duration so that the slide and conceal end at the same time.
3662 ObjectAnimator panelDriftY = LauncherAnimUtils.ofFloat(revealView, "translationY",
3663 0, yDrift);
3664 panelDriftY.setDuration(revealDuration - SINGLE_FRAME_DELAY);
3665 panelDriftY.setStartDelay(itemsAlphaStagger + SINGLE_FRAME_DELAY);
3666 panelDriftY.setInterpolator(decelerateInterpolator);
3667 mStateAnimation.play(panelDriftY);
3668
3669 ObjectAnimator panelDriftX = LauncherAnimUtils.ofFloat(revealView, "translationX",
3670 0, xDrift);
3671 panelDriftX.setDuration(revealDuration - SINGLE_FRAME_DELAY);
3672 panelDriftX.setStartDelay(itemsAlphaStagger + SINGLE_FRAME_DELAY);
3673 panelDriftX.setInterpolator(decelerateInterpolator);
3674 mStateAnimation.play(panelDriftX);
3675
3676 if (isWidgetTray || !material) {
3677 float finalAlpha = material ? 0.4f : 0f;
3678 revealView.setAlpha(1f);
3679 ObjectAnimator panelAlpha = LauncherAnimUtils.ofFloat(revealView, "alpha",
3680 1f, finalAlpha);
Adam Cohen0fb5ce22014-10-24 13:50:20 -07003681 panelAlpha.setDuration(material ? revealDuration : 150);
3682 panelAlpha.setInterpolator(decelerateInterpolator);
3683 panelAlpha.setStartDelay(material ? 0 : itemsAlphaStagger + SINGLE_FRAME_DELAY);
Adam Cohen2854d252014-08-27 16:04:07 -07003684 mStateAnimation.play(panelAlpha);
3685 }
3686
3687 if (page != null) {
Adam Cohen80e6beb2015-02-13 16:14:33 -08003688 layerViews.put(page, BUILD_AND_SET_LAYER);
Adam Cohen2854d252014-08-27 16:04:07 -07003689
3690 ObjectAnimator pageDrift = LauncherAnimUtils.ofFloat(page, "translationY",
3691 0, yDrift);
3692 page.setTranslationY(0);
3693 pageDrift.setDuration(revealDuration - SINGLE_FRAME_DELAY);
3694 pageDrift.setInterpolator(decelerateInterpolator);
3695 pageDrift.setStartDelay(itemsAlphaStagger + SINGLE_FRAME_DELAY);
3696 mStateAnimation.play(pageDrift);
3697
3698 page.setAlpha(1f);
3699 ObjectAnimator itemsAlpha = LauncherAnimUtils.ofFloat(page, "alpha", 1f, 0f);
3700 itemsAlpha.setDuration(100);
3701 itemsAlpha.setInterpolator(decelerateInterpolator);
3702 mStateAnimation.play(itemsAlpha);
3703 }
3704
3705 View pageIndicators = fromView.findViewById(R.id.apps_customize_page_indicator);
3706 pageIndicators.setAlpha(1f);
3707 ObjectAnimator indicatorsAlpha =
3708 LauncherAnimUtils.ofFloat(pageIndicators, "alpha", 0f);
3709 indicatorsAlpha.setDuration(revealDuration);
3710 indicatorsAlpha.setInterpolator(new DecelerateInterpolator(1.5f));
3711 mStateAnimation.play(indicatorsAlpha);
3712
3713 width = revealView.getMeasuredWidth();
3714
3715 if (material) {
3716 if (!isWidgetTray) {
3717 allAppsButton.setVisibility(View.INVISIBLE);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003718 }
Adam Cohen2854d252014-08-27 16:04:07 -07003719 int allAppsButtonSize = LauncherAppState.getInstance().
3720 getDynamicGrid().getDeviceProfile().allAppsButtonVisualSize;
3721 float finalRadius = isWidgetTray ? 0 : allAppsButtonSize / 2;
3722 Animator reveal =
3723 LauncherAnimUtils.createCircularReveal(revealView, width / 2,
3724 height / 2, revealRadius, finalRadius);
3725 reveal.setInterpolator(new LogDecelerateInterpolator(100, 0));
3726 reveal.setDuration(revealDuration);
3727 reveal.setStartDelay(itemsAlphaStagger);
Adam Cohen6c5891a2014-07-09 23:53:15 -07003728
Adam Cohen2854d252014-08-27 16:04:07 -07003729 reveal.addListener(new AnimatorListenerAdapter() {
3730 public void onAnimationEnd(Animator animation) {
3731 revealView.setVisibility(View.INVISIBLE);
3732 if (!isWidgetTray) {
3733 allAppsButton.setVisibility(View.VISIBLE);
3734 }
3735 }
3736 });
Adam Cohen9bfdb762014-07-21 17:44:06 -07003737
Adam Cohen2854d252014-08-27 16:04:07 -07003738 mStateAnimation.play(reveal);
3739 }
Adam Cohen9bfdb762014-07-21 17:44:06 -07003740
Adam Cohen2854d252014-08-27 16:04:07 -07003741 dispatchOnLauncherTransitionPrepare(fromView, animated, true);
3742 dispatchOnLauncherTransitionPrepare(toView, animated, true);
3743 mAppsCustomizeContent.stopScrolling();
Adam Cohen6c5891a2014-07-09 23:53:15 -07003744 }
Michael Jurkabed61d22012-02-14 22:51:29 -08003745
3746 mStateAnimation.addListener(new AnimatorListenerAdapter() {
Gilles Debunnedd6c9922010-10-25 11:23:41 -07003747 @Override
Michael Jurka8edd75c2010-12-17 20:15:06 -08003748 public void onAnimationEnd(Animator animation) {
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003749 fromView.setVisibility(View.GONE);
Michael Jurkabed61d22012-02-14 22:51:29 -08003750 dispatchOnLauncherTransitionEnd(fromView, animated, true);
3751 dispatchOnLauncherTransitionEnd(toView, animated, true);
Adam Cohened66b2b2012-01-23 17:28:51 -08003752 if (onCompleteRunnable != null) {
3753 onCompleteRunnable.run();
3754 }
Adam Cohen9bfdb762014-07-21 17:44:06 -07003755
Adam Cohen80e6beb2015-02-13 16:14:33 -08003756 for (View v : layerViews.keySet()) {
3757 if (layerViews.get(v) == BUILD_AND_SET_LAYER) {
3758 v.setLayerType(View.LAYER_TYPE_NONE, null);
3759 }
Adam Cohen4e243a22014-08-10 18:30:55 -07003760 }
Adam Cohen80e6beb2015-02-13 16:14:33 -08003761
Adam Cohen9bfdb762014-07-21 17:44:06 -07003762 content.setPageBackgroundsVisible(true);
Adam Cohen8e894fa2014-09-08 19:45:43 +02003763 // Unhide side pages
3764 int count = content.getChildCount();
3765 for (int i = 0; i < count; i++) {
3766 View child = content.getChildAt(i);
3767 child.setVisibility(View.VISIBLE);
3768 }
3769
3770 // Reset page transforms
Adam Cohen493f6bc2014-09-18 08:11:05 -07003771 if (page != null) {
3772 page.setTranslationX(0);
3773 page.setTranslationY(0);
3774 page.setAlpha(1);
3775 }
Adam Cohen8e894fa2014-09-08 19:45:43 +02003776 content.setCurrentPage(content.getNextPage());
3777
Chet Haasebc2f0822012-10-26 17:59:53 -07003778 mAppsCustomizeContent.updateCurrentPageScroll();
Adam Cohen3f9c9712014-10-31 11:48:25 -07003779
3780 // This can hold unnecessary references to views.
3781 mStateAnimation = null;
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003782 }
3783 });
3784
Adam Cohen2854d252014-08-27 16:04:07 -07003785 final AnimatorSet stateAnimation = mStateAnimation;
3786 final Runnable startAnimRunnable = new Runnable() {
3787 public void run() {
3788 // Check that mStateAnimation hasn't changed while
3789 // we waited for a layout/draw pass
3790 if (mStateAnimation != stateAnimation)
3791 return;
3792 dispatchOnLauncherTransitionStart(fromView, animated, false);
3793 dispatchOnLauncherTransitionStart(toView, animated, false);
3794
Adam Cohen80e6beb2015-02-13 16:14:33 -08003795 for (View v : layerViews.keySet()) {
3796 if (layerViews.get(v) == BUILD_AND_SET_LAYER) {
3797 v.setLayerType(View.LAYER_TYPE_HARDWARE, null);
3798 }
3799 }
3800
Kenny Guyd794a3f2014-09-16 15:17:58 +01003801 if (Utilities.isLmpOrAbove()) {
Adam Cohen80e6beb2015-02-13 16:14:33 -08003802 for (View v : layerViews.keySet()) {
3803 if (Utilities.isViewAttachedToWindow(v)) v.buildLayer();
Adam Cohen2854d252014-08-27 16:04:07 -07003804 }
3805 }
3806 mStateAnimation.start();
3807 }
3808 };
3809 fromView.post(startAnimRunnable);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003810 } else {
3811 fromView.setVisibility(View.GONE);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003812 dispatchOnLauncherTransitionPrepare(fromView, animated, true);
Michael Jurkabed61d22012-02-14 22:51:29 -08003813 dispatchOnLauncherTransitionStart(fromView, animated, true);
3814 dispatchOnLauncherTransitionEnd(fromView, animated, true);
Michael Jurkaa35e35a2012-04-26 15:04:28 -07003815 dispatchOnLauncherTransitionPrepare(toView, animated, true);
Michael Jurkabed61d22012-02-14 22:51:29 -08003816 dispatchOnLauncherTransitionStart(toView, animated, true);
3817 dispatchOnLauncherTransitionEnd(toView, animated, true);
Patrick Dubroydf7c3a72010-08-26 17:52:56 -07003818 }
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07003819 }
3820
Michael Jurkae326f182011-11-21 14:05:46 -08003821 @Override
3822 public void onTrimMemory(int level) {
3823 super.onTrimMemory(level);
Adam Cohen3f9c9712014-10-31 11:48:25 -07003824 if (level >= ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
3825 // The widget preview db can result in holding onto over
3826 // 3MB of memory for caching which isn't necessary.
3827 SQLiteDatabase.releaseMemory();
3828
Adam Cohenc8f4e1b2014-11-19 16:03:20 -08003829 // This clears all widget bitmaps from the widget tray
Adam Cohen3f9c9712014-10-31 11:48:25 -07003830 if (mAppsCustomizeTabHost != null) {
Adam Cohenc8f4e1b2014-11-19 16:03:20 -08003831 mAppsCustomizeTabHost.trimMemory();
Adam Cohen3f9c9712014-10-31 11:48:25 -07003832 }
Michael Jurkae326f182011-11-21 14:05:46 -08003833 }
Robert Kozikowski67c30862015-03-30 23:46:46 +01003834 if (mLauncherCallbacks != null) {
3835 mLauncherCallbacks.onTrimMemory(level);
3836 }
Michael Jurkae326f182011-11-21 14:05:46 -08003837 }
3838
Adam Cohened307df2013-10-02 09:37:31 -07003839 protected void showWorkspace(boolean animated) {
Adam Cohened66b2b2012-01-23 17:28:51 -08003840 showWorkspace(animated, null);
3841 }
3842
Adam Cohened307df2013-10-02 09:37:31 -07003843 protected void showWorkspace() {
3844 showWorkspace(true);
3845 }
3846
Adam Cohened66b2b2012-01-23 17:28:51 -08003847 void showWorkspace(boolean animated, Runnable onCompleteRunnable) {
Adam Cohene25c5d12014-06-18 10:34:58 -07003848 if (mState != State.WORKSPACE || mWorkspace.getState() != Workspace.State.NORMAL) {
Winson Chung2d75f122013-09-23 16:53:31 -07003849 boolean wasInSpringLoadedMode = (mState != State.WORKSPACE);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003850 mWorkspace.setVisibility(View.VISIBLE);
Adam Cohened307df2013-10-02 09:37:31 -07003851 hideAppsCustomizeHelper(Workspace.State.NORMAL, animated, false, onCompleteRunnable);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003852
Winson Chungc7d2b602012-05-16 17:02:20 -07003853 // Show the search bar (only animate if we were showing the drop target bar in spring
3854 // loaded mode)
Winson Chungadf0c182012-08-23 14:59:07 -07003855 if (mSearchDropTargetBar != null) {
Winson Chung04c0a5c2013-10-08 17:13:12 -07003856 mSearchDropTargetBar.showSearchBar(animated && wasInSpringLoadedMode);
Winson Chungadf0c182012-08-23 14:59:07 -07003857 }
Winson Chungc7d2b602012-05-16 17:02:20 -07003858
Michael Jurkab3e22d92011-10-31 15:58:33 -07003859 // Set focus to the AppsCustomize button
3860 if (mAllAppsButton != null) {
3861 mAllAppsButton.requestFocus();
3862 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003863 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07003864
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003865 // Change the state *after* we've called all the transition code
3866 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08003867
Winson Chung5fb63472011-02-02 17:03:37 -08003868 // Resume the auto-advance of widgets
3869 mUserPresent = true;
3870 updateRunning();
3871
alanv1d4fde62012-10-17 13:15:47 -07003872 // Send an accessibility event to announce the context change
3873 getWindow().getDecorView()
3874 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Bjorn Bringertc459e522013-06-07 19:36:01 +01003875
Bjorn Bringert69688aa2013-06-11 20:26:38 +01003876 onWorkspaceShown(animated);
Bjorn Bringertc459e522013-06-07 19:36:01 +01003877 }
3878
Adam Cohened307df2013-10-02 09:37:31 -07003879 void showOverviewMode(boolean animated) {
3880 mWorkspace.setVisibility(View.VISIBLE);
3881 hideAppsCustomizeHelper(Workspace.State.OVERVIEW, animated, false, null);
3882 mState = State.WORKSPACE;
3883 onWorkspaceShown(animated);
3884 }
3885
Bjorn Bringert69688aa2013-06-11 20:26:38 +01003886 public void onWorkspaceShown(boolean animated) {
Joe Onorato00acb122009-08-04 16:04:30 -04003887 }
3888
Winson Chung82963d52013-10-09 11:20:57 -07003889 void showAllApps(boolean animated, AppsCustomizePagedView.ContentType contentType,
3890 boolean resetPageToZero) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003891 if (mState != State.WORKSPACE) return;
3892
Winson Chung82963d52013-10-09 11:20:57 -07003893 if (resetPageToZero) {
3894 mAppsCustomizeTabHost.reset();
3895 }
Winson Chungc58497e2013-09-03 17:48:37 -07003896 showAppsCustomizeHelper(animated, false, contentType);
Adam Cohendcc5e712014-06-23 15:38:55 -04003897 mAppsCustomizeTabHost.post(new Runnable() {
3898 @Override
3899 public void run() {
3900 // We post this in-case the all apps view isn't yet constructed.
3901 mAppsCustomizeTabHost.requestFocus();
3902 }
3903 });
Michael Jurkab3e22d92011-10-31 15:58:33 -07003904
Michael Jurkab3e22d92011-10-31 15:58:33 -07003905 // Change the state *after* we've called all the transition code
3906 mState = State.APPS_CUSTOMIZE;
3907
3908 // Pause the auto-advance of widgets until we are out of AllApps
3909 mUserPresent = false;
3910 updateRunning();
3911 closeFolder();
3912
3913 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07003914 getWindow().getDecorView()
3915 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003916 }
3917
Adam Cohen7777d962011-08-18 18:58:38 -07003918 void enterSpringLoadedDragMode() {
Winson Chungc93e5ae2012-07-23 20:48:26 -07003919 if (isAllAppsVisible()) {
Adam Cohened307df2013-10-02 09:37:31 -07003920 hideAppsCustomizeHelper(Workspace.State.SPRING_LOADED, true, true, null);
Winson Chungc07918d2011-07-01 15:35:26 -07003921 mState = State.APPS_CUSTOMIZE_SPRING_LOADED;
Winson Chungb26f3d62011-06-02 10:49:29 -07003922 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08003923 }
Adam Cohen7777d962011-08-18 18:58:38 -07003924
Adam Cohenad4e15c2013-10-17 16:21:35 -07003925 void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, int delay,
Adam Cohened66b2b2012-01-23 17:28:51 -08003926 final Runnable onCompleteRunnable) {
Winson Chung09bfc452011-09-09 11:30:20 -07003927 if (mState != State.APPS_CUSTOMIZE_SPRING_LOADED) return;
3928
Winson Chunge7a03942011-08-05 15:05:12 -07003929 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07003930 @Override
3931 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003932 if (successfulDrop) {
Michael Jurka7bdb25a2011-08-03 15:16:44 -07003933 // Before we show workspace, hide all apps again because
3934 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
3935 // clean up our state transition functions
3936 mAppsCustomizeTabHost.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003937 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07003938 } else {
3939 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003940 }
Winson Chung557d6ed2011-07-08 15:34:52 -07003941 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07003942 }, delay);
Winson Chung557d6ed2011-07-08 15:34:52 -07003943 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003944
Michael Jurkad3ef3062010-11-23 16:23:58 -08003945 void exitSpringLoadedDragMode() {
Winson Chungb26f3d62011-06-02 10:49:29 -07003946 if (mState == State.APPS_CUSTOMIZE_SPRING_LOADED) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003947 final boolean animated = true;
3948 final boolean springLoaded = true;
3949 showAppsCustomizeHelper(animated, springLoaded);
Winson Chungb26f3d62011-06-02 10:49:29 -07003950 mState = State.APPS_CUSTOMIZE;
Winson Chungf0ea4d32011-06-06 14:27:16 -07003951 }
3952 // Otherwise, we are not in spring loaded mode, so don't do anything.
3953 }
3954
Michael Jurkab3e22d92011-10-31 15:58:33 -07003955 void lockAllApps() {
3956 // TODO
3957 }
3958
3959 void unlockAllApps() {
3960 // TODO
3961 }
3962
Sunny Goyal594d76d2014-11-06 10:12:54 -08003963 protected void disableVoiceButtonProxy(boolean disable) {
3964 // NO-OP
Winson Chungbb185bd2011-11-21 12:31:42 -08003965 }
3966
Cristina Stancu476493b2013-08-07 17:20:14 +01003967 public View getQsbBar() {
Adam Cohenc2d6e892014-10-16 09:49:24 -07003968 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
3969 return mLauncherCallbacks.getQsbBar();
Adam Cohen9211d422014-10-07 18:14:53 -07003970 }
3971
Adam Cohen24ce0b32014-01-14 16:18:14 -08003972 if (mQsb == null) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003973 AppWidgetProviderInfo searchProvider = Utilities.getSearchWidgetProvider(this);
3974 if (searchProvider == null) {
3975 return null;
3976 }
3977
3978 Bundle opts = new Bundle();
3979 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_HOST_CATEGORY,
3980 AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX);
3981
3982 SharedPreferences sp = getSharedPreferences(
3983 LauncherAppState.getSharedPreferencesKey(), MODE_PRIVATE);
3984 int widgetId = sp.getInt(QSB_WIDGET_ID, -1);
Sunny Goyal416541c2014-11-14 11:59:57 -08003985 AppWidgetProviderInfo widgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003986 if (!searchProvider.provider.flattenToString().equals(
3987 sp.getString(QSB_WIDGET_PROVIDER, null))
Sunny Goyal416541c2014-11-14 11:59:57 -08003988 || (widgetInfo == null)
3989 || !widgetInfo.provider.equals(searchProvider.provider)) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003990 // A valid widget is not already bound.
3991 if (widgetId > -1) {
3992 mAppWidgetHost.deleteAppWidgetId(widgetId);
3993 widgetId = -1;
3994 }
3995
3996 // Try to bind a new widget
3997 widgetId = mAppWidgetHost.allocateAppWidgetId();
3998
3999 if (!AppWidgetManagerCompat.getInstance(this)
4000 .bindAppWidgetIdIfAllowed(widgetId, searchProvider, opts)) {
4001 mAppWidgetHost.deleteAppWidgetId(widgetId);
4002 widgetId = -1;
4003 }
4004
4005 sp.edit()
4006 .putInt(QSB_WIDGET_ID, widgetId)
4007 .putString(QSB_WIDGET_PROVIDER, searchProvider.provider.flattenToString())
4008 .commit();
4009 }
4010
4011 if (widgetId != -1) {
4012 mQsb = mAppWidgetHost.createView(this, widgetId, searchProvider);
4013 mQsb.updateAppWidgetOptions(opts);
4014 mQsb.setPadding(0, 0, 0, 0);
4015 mSearchDropTargetBar.addView(mQsb);
4016 }
Cristina Stancu476493b2013-08-07 17:20:14 +01004017 }
Adam Cohen24ce0b32014-01-14 16:18:14 -08004018 return mQsb;
Cristina Stancu476493b2013-08-07 17:20:14 +01004019 }
4020
Michael Jurkad7c28052012-04-27 15:43:36 -07004021 @Override
4022 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07004023 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07004024 final List<CharSequence> text = event.getText();
4025 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07004026 // Populate event with a fake title based on the current state.
4027 if (mState == State.APPS_CUSTOMIZE) {
Adam Cohen6c5891a2014-07-09 23:53:15 -07004028 text.add(mAppsCustomizeTabHost.getContentTag());
alanv1d4fde62012-10-17 13:15:47 -07004029 } else {
4030 text.add(getString(R.string.all_apps_home_button_label));
4031 }
Michael Jurkad7c28052012-04-27 15:43:36 -07004032 return result;
4033 }
4034
Patrick Dubroyceae05d2010-08-30 10:40:53 -07004035 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07004036 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08004037 */
4038 private class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
4039 @Override
4040 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08004041 closeSystemDialogs();
4042 }
4043 }
4044
4045 /**
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08004046 * Receives notifications whenever the appwidgets are reset.
4047 */
4048 private class AppWidgetResetObserver extends ContentObserver {
4049 public AppWidgetResetObserver() {
4050 super(new Handler());
4051 }
4052
4053 @Override
4054 public void onChange(boolean selfChange) {
4055 onAppWidgetReset();
4056 }
4057 }
4058
4059 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07004060 * If the activity is currently paused, signal that we need to run the passed Runnable
4061 * in onResume.
4062 *
4063 * This needs to be called from incoming places where resources might have been loaded
4064 * while we are paused. That is becaues the Configuration might be wrong
4065 * when we're not running, and if it comes back to what it was when we
4066 * were paused, we are not restarted.
4067 *
4068 * Implementation of the method from LauncherModel.Callbacks.
4069 *
4070 * @return true if we are currently paused. The caller might be able to
4071 * skip some work in that case since we will come back again.
4072 */
Michael Jurkac402cd92013-05-20 15:49:32 +02004073 private boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004074 if (mPaused) {
4075 Log.i(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02004076 if (deletePreviousRunnables) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07004077 while (mBindOnResumeCallbacks.remove(run)) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004078 }
4079 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07004080 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07004081 return true;
4082 } else {
4083 return false;
4084 }
4085 }
4086
Michael Jurkac402cd92013-05-20 15:49:32 +02004087 private boolean waitUntilResume(Runnable run) {
4088 return waitUntilResume(run, false);
4089 }
4090
Michael Jurka1e2f4652013-07-08 18:03:46 -07004091 public void addOnResumeCallback(Runnable run) {
Michael Jurka54554252013-08-01 12:52:23 +02004092 mOnResumeCallbacks.add(run);
Michael Jurka1e2f4652013-07-08 18:03:46 -07004093 }
4094
Michael Jurka7607c2f2013-04-03 14:33:19 -07004095 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07004096 * If the activity is currently paused, signal that we need to re-run the loader
4097 * in onResume.
4098 *
4099 * This needs to be called from incoming places where resources might have been loaded
4100 * while we are paused. That is becaues the Configuration might be wrong
4101 * when we're not running, and if it comes back to what it was when we
4102 * were paused, we are not restarted.
4103 *
4104 * Implementation of the method from LauncherModel.Callbacks.
4105 *
4106 * @return true if we are currently paused. The caller might be able to
4107 * skip some work in that case since we will come back again.
4108 */
4109 public boolean setLoadOnResume() {
4110 if (mPaused) {
4111 Log.i(TAG, "setLoadOnResume");
4112 mOnResumeNeedsLoad = true;
4113 return true;
4114 } else {
4115 return false;
4116 }
4117 }
4118
4119 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004120 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004121 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04004122 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07004123 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07004124 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07004125 } else {
4126 return SCREEN_COUNT / 2;
4127 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004128 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07004129
Joe Onorato9c1289c2009-08-17 11:03:03 -04004130 /**
4131 * Refreshes the shortcuts shown on the workspace.
4132 *
4133 * Implementation of the method from LauncherModel.Callbacks.
4134 */
4135 public void startBinding() {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004136 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08004137
Michael Jurka7607c2f2013-04-03 14:33:19 -07004138 // If we're starting binding all over again, clear any bind calls we'd postponed in
4139 // the past (see waitUntilResume) -- we don't need them since we're starting binding
4140 // from scratch again
Michael Jurka1e2f4652013-07-08 18:03:46 -07004141 mBindOnResumeCallbacks.clear();
Adam Cohendf035382011-04-11 17:22:04 -07004142
Winson Chungd64d1762013-08-20 14:37:16 -07004143 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07004144 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07004145 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07004146
Michael Jurka05bf6442011-11-30 20:28:53 -08004147 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07004148 if (mHotseat != null) {
4149 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004150 }
4151 }
4152
Adam Cohendcd297f2013-06-18 13:13:40 -07004153 @Override
4154 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Winson Chung64359a52013-07-08 17:17:08 -07004155 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07004156
Adam Cohen5084cba2013-09-03 12:01:16 -07004157 // If there are no screens, we need to have an empty screen
4158 if (orderedScreenIds.size() == 0) {
4159 mWorkspace.addExtraEmptyScreen();
4160 }
Winson Chung0e6a7132013-08-23 12:55:10 -07004161
4162 // Create the custom content page (this call updates mDefaultScreen which calls
Dave Hawkeya8881582013-09-17 15:55:33 -06004163 // setCurrentPage() so ensure that all pages are added before calling this).
Derek Prothrodadd9842014-01-17 13:43:50 -05004164 if (hasCustomContentToLeft()) {
4165 mWorkspace.createCustomContentContainer();
4166 populateCustomContentContainer();
Winson Chung0e6a7132013-08-23 12:55:10 -07004167 }
Winson Chung64359a52013-07-08 17:17:08 -07004168 }
4169
4170 @Override
4171 public void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Winson Chunga90303b2013-11-15 13:05:06 -08004172 // Log to disk
4173 Launcher.addDumpLog(TAG, "11683562 - bindAddScreens()", true);
4174 Launcher.addDumpLog(TAG, "11683562 - orderedScreenIds: " +
4175 TextUtils.join(", ", orderedScreenIds), true);
Adam Cohendcd297f2013-06-18 13:13:40 -07004176 int count = orderedScreenIds.size();
4177 for (int i = 0; i < count; i++) {
Adam Cohen89bddfa2013-08-20 11:57:13 -07004178 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(orderedScreenIds.get(i));
Adam Cohendcd297f2013-06-18 13:13:40 -07004179 }
Adam Cohendcd297f2013-06-18 13:13:40 -07004180 }
4181
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08004182 @Override
4183 public void bindAddPendingItem(final PendingAddItemInfo info, final long container,
4184 final long screenId, final int[] cell, final int spanX, final int spanY) {
4185 showWorkspace(true, new Runnable() {
4186
4187 @Override
4188 public void run() {
4189 mWorkspace.snapToPage(mWorkspace.getPageIndexForScreenId(screenId));
4190 addPendingItem(info, container, screenId, cell, spanX, spanY);
4191 }
4192 });
4193 }
4194
Adam Cohen39a06042013-07-19 14:30:12 -07004195 private boolean shouldShowWeightWatcher() {
4196 String spKey = LauncherAppState.getSharedPreferencesKey();
4197 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
Daniel Sandler6053b802013-08-15 15:44:26 -07004198 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, SHOW_WEIGHT_WATCHER_DEFAULT);
Adam Cohen39a06042013-07-19 14:30:12 -07004199
4200 return show;
4201 }
4202
4203 private void toggleShowWeightWatcher() {
4204 String spKey = LauncherAppState.getSharedPreferencesKey();
4205 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
4206 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, true);
4207
4208 show = !show;
4209
4210 SharedPreferences.Editor editor = sp.edit();
4211 editor.putBoolean(SHOW_WEIGHT_WATCHER, show);
4212 editor.commit();
4213
4214 if (mWeightWatcher != null) {
4215 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
4216 }
4217 }
4218
Winson Chungd64d1762013-08-20 14:37:16 -07004219 public void bindAppsAdded(final ArrayList<Long> newScreens,
4220 final ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -07004221 final ArrayList<ItemInfo> addAnimated,
4222 final ArrayList<AppInfo> addedApps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004223 Runnable r = new Runnable() {
4224 public void run() {
Winson Chungc58497e2013-09-03 17:48:37 -07004225 bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps);
Winson Chungd64d1762013-08-20 14:37:16 -07004226 }
4227 };
4228 if (waitUntilResume(r)) {
4229 return;
4230 }
4231
Winson Chungd64d1762013-08-20 14:37:16 -07004232 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08004233 if (newScreens != null) {
4234 bindAddScreens(newScreens);
4235 }
Winson Chungd64d1762013-08-20 14:37:16 -07004236
4237 // We add the items without animation on non-visible pages, and with
4238 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08004239 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07004240 bindItems(addNotAnimated, 0,
4241 addNotAnimated.size(), false);
4242 }
Adam Cohen76a47a12014-02-05 11:47:43 -08004243 if (addAnimated != null && !addAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07004244 bindItems(addAnimated, 0,
4245 addAnimated.size(), true);
4246 }
Winson Chungc58497e2013-09-03 17:48:37 -07004247
Winson Chung87412982013-10-03 18:34:14 -07004248 // Remove the extra empty screen
Adam Cohen689ff162014-05-08 17:27:56 -07004249 mWorkspace.removeExtraEmptyScreen(false, false);
Winson Chung87412982013-10-03 18:34:14 -07004250
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -08004251 if (!LauncherAppState.isDisableAllApps() &&
Winson Chungc58497e2013-09-03 17:48:37 -07004252 addedApps != null && mAppsCustomizeContent != null) {
4253 mAppsCustomizeContent.addApps(addedApps);
4254 }
Winson Chungd64d1762013-08-20 14:37:16 -07004255 }
4256
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004257 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004258 * Bind the items start-end from the list.
4259 *
4260 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004261 */
Winson Chung64359a52013-07-08 17:17:08 -07004262 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end,
4263 final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07004264 Runnable r = new Runnable() {
4265 public void run() {
4266 bindItems(shortcuts, start, end, forceAnimateIcons);
4267 }
4268 };
4269 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004270 return;
4271 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07004272
Winson Chungf0c6ae02012-03-21 16:10:31 -07004273 // Get the list of added shortcuts and intersect them with the set of shortcuts here
Winson Chung64359a52013-07-08 17:17:08 -07004274 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
4275 final Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chung997a9232013-07-24 15:33:46 -07004276 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07004277 Workspace workspace = mWorkspace;
Winson Chung997a9232013-07-24 15:33:46 -07004278 long newShortcutsScreenId = -1;
Winson Chungf0c6ae02012-03-21 16:10:31 -07004279 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04004280 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07004281
4282 // Short circuit if we are loading dock items for a configuration which has no dock
4283 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
4284 mHotseat == null) {
4285 continue;
4286 }
4287
Joe Onorato9c1289c2009-08-17 11:03:03 -04004288 switch (item.itemType) {
4289 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
4290 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07004291 ShortcutInfo info = (ShortcutInfo) item;
Winson Chungf0c6ae02012-03-21 16:10:31 -07004292 View shortcut = createShortcut(info);
Adam Cohendcd297f2013-06-18 13:13:40 -07004293
Winson Chung64359a52013-07-08 17:17:08 -07004294 /*
4295 * TODO: FIX collision case
4296 */
Winson Chungce376632013-07-11 16:12:41 -07004297 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
4298 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
4299 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07004300 View v = cl.getChildAt(item.cellX, item.cellY);
4301 Object tag = v.getTag();
4302 String desc = "Collision while binding workspace item: " + item
4303 + ". Collides with " + tag;
4304 if (LauncherAppState.isDogfoodBuild()) {
4305 throw (new RuntimeException(desc));
4306 } else {
4307 Log.d(TAG, desc);
4308 }
Winson Chungce376632013-07-11 16:12:41 -07004309 }
Winson Chung64359a52013-07-08 17:17:08 -07004310 }
4311
Adam Cohendcd297f2013-06-18 13:13:40 -07004312 workspace.addInScreenFromBind(shortcut, item.container, item.screenId, item.cellX,
4313 item.cellY, 1, 1);
Winson Chung997a9232013-07-24 15:33:46 -07004314 if (animateIcons) {
Winson Chung64359a52013-07-08 17:17:08 -07004315 // Animate all the applications up now
4316 shortcut.setAlpha(0f);
4317 shortcut.setScaleX(0f);
4318 shortcut.setScaleY(0f);
4319 bounceAnims.add(createNewAppBounceAnimation(shortcut, i));
Winson Chung997a9232013-07-24 15:33:46 -07004320 newShortcutsScreenId = item.screenId;
Winson Chungf0c6ae02012-03-21 16:10:31 -07004321 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004322 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07004323 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Winson Chung3d503fb2011-07-13 17:25:49 -07004324 FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07004325 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07004326 (FolderInfo) item, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07004327 workspace.addInScreenFromBind(newFolder, item.container, item.screenId, item.cellX,
4328 item.cellY, 1, 1);
Joe Onorato9c1289c2009-08-17 11:03:03 -04004329 break;
Winson Chungc763c4e2013-07-19 13:49:06 -07004330 default:
4331 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04004332 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004333 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004334
Winson Chung997a9232013-07-24 15:33:46 -07004335 if (animateIcons) {
4336 // Animate to the correct page
4337 if (newShortcutsScreenId > -1) {
4338 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Winson Chung94d67682013-09-25 16:29:40 -07004339 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId);
Winson Chungb2323832013-10-03 15:22:09 -07004340 final Runnable startBounceAnimRunnable = new Runnable() {
4341 public void run() {
4342 anim.playTogether(bounceAnims);
4343 anim.start();
4344 }
4345 };
Winson Chung997a9232013-07-24 15:33:46 -07004346 if (newShortcutsScreenId != currentScreenId) {
Winson Chung94d67682013-09-25 16:29:40 -07004347 // We post the animation slightly delayed to prevent slowdowns
4348 // when we are loading right after we return to launcher.
4349 mWorkspace.postDelayed(new Runnable() {
4350 public void run() {
Ian Parkinson94449152014-01-21 13:09:59 +00004351 if (mWorkspace != null) {
4352 mWorkspace.snapToPage(newScreenIndex);
4353 mWorkspace.postDelayed(startBounceAnimRunnable,
4354 NEW_APPS_ANIMATION_DELAY);
4355 }
Winson Chung94d67682013-09-25 16:29:40 -07004356 }
4357 }, NEW_APPS_PAGE_MOVE_DELAY);
Winson Chungb2323832013-10-03 15:22:09 -07004358 } else {
4359 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07004360 }
4361 }
Winson Chung64359a52013-07-08 17:17:08 -07004362 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004363 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004364 }
4365
Joe Onorato9c1289c2009-08-17 11:03:03 -04004366 /**
4367 * Implementation of the method from LauncherModel.Callbacks.
4368 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07004369 public void bindFolders(final HashMap<Long, FolderInfo> folders) {
Winson Chungd64d1762013-08-20 14:37:16 -07004370 Runnable r = new Runnable() {
4371 public void run() {
4372 bindFolders(folders);
4373 }
4374 };
4375 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004376 return;
4377 }
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004378 sFolders.clear();
4379 sFolders.putAll(folders);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004380 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004381
4382 /**
4383 * Add the views for a widget to the workspace.
4384 *
4385 * Implementation of the method from LauncherModel.Callbacks.
4386 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07004387 public void bindAppWidget(final LauncherAppWidgetInfo item) {
Winson Chungd64d1762013-08-20 14:37:16 -07004388 Runnable r = new Runnable() {
4389 public void run() {
4390 bindAppWidget(item);
4391 }
4392 };
4393 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004394 return;
4395 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07004396
Daniel Sandler843e8602010-06-07 14:59:01 -04004397 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
4398 if (DEBUG_WIDGETS) {
4399 Log.d(TAG, "bindAppWidget: " + item);
4400 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004401 final Workspace workspace = mWorkspace;
4402
Adam Cohen59400422014-03-05 18:07:04 -08004403 LauncherAppWidgetProviderInfo appWidgetInfo =
Robin Lee2dd9f012015-03-16 19:41:43 +00004404 LauncherModel.getProviderInfo(this, item.providerName, item.user);
Adam Cohen59400422014-03-05 18:07:04 -08004405
Sunny Goyal9b4b0812014-10-08 10:47:28 -07004406 if (!mIsSafeModeEnabled
4407 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY) == 0)
4408 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_ID_NOT_VALID) != 0)) {
Sunny Goyalff572272014-07-23 13:58:07 -07004409 if (appWidgetInfo == null) {
4410 if (DEBUG_WIDGETS) {
4411 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
4412 + " belongs to component " + item.providerName
4413 + ", as the povider is null");
4414 }
4415 LauncherModel.deleteItemFromDatabase(this, item);
4416 return;
4417 }
4418 // Note: This assumes that the id remap broadcast is received before this step.
4419 // If that is not the case, the id remap will be ignored and user may see the
4420 // click to setup view.
Adam Cohen59400422014-03-05 18:07:04 -08004421 PendingAddWidgetInfo pendingInfo = new PendingAddWidgetInfo(appWidgetInfo, null);
Sunny Goyalff572272014-07-23 13:58:07 -07004422 pendingInfo.spanX = item.spanX;
4423 pendingInfo.spanY = item.spanY;
4424 pendingInfo.minSpanX = item.minSpanX;
4425 pendingInfo.minSpanY = item.minSpanY;
4426 Bundle options =
4427 AppsCustomizePagedView.getDefaultOptionsForWidget(this, pendingInfo);
4428
Sunny Goyalff572272014-07-23 13:58:07 -07004429 int newWidgetId = mAppWidgetHost.allocateAppWidgetId();
Sunny Goyalffe83f12014-08-14 17:39:34 -07004430 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
4431 newWidgetId, appWidgetInfo, options);
Sunny Goyalff572272014-07-23 13:58:07 -07004432
4433 // TODO consider showing a permission dialog when the widget is clicked.
4434 if (!success) {
4435 mAppWidgetHost.deleteAppWidgetId(newWidgetId);
4436 if (DEBUG_WIDGETS) {
4437 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
4438 + " belongs to component " + item.providerName
4439 + ", as the launcher is unable to bing a new widget id");
4440 }
4441 LauncherModel.deleteItemFromDatabase(this, item);
4442 return;
4443 }
4444
4445 item.appWidgetId = newWidgetId;
4446
4447 // If the widget has a configure activity, it is still needs to set it up, otherwise
4448 // the widget is ready to go.
4449 item.restoreStatus = (appWidgetInfo.configure == null)
4450 ? LauncherAppWidgetInfo.RESTORE_COMPLETED
4451 : LauncherAppWidgetInfo.FLAG_UI_NOT_READY;
4452
4453 LauncherModel.updateItemInDatabase(this, item);
4454 }
4455
Sunny Goyal9b4b0812014-10-08 10:47:28 -07004456 if (!mIsSafeModeEnabled && item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
Sunny Goyal651077b2014-06-30 14:15:31 -07004457 final int appWidgetId = item.appWidgetId;
Sunny Goyal651077b2014-06-30 14:15:31 -07004458 if (DEBUG_WIDGETS) {
Adam Cohen59400422014-03-05 18:07:04 -08004459 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component "
4460 + appWidgetInfo.provider);
Sunny Goyal651077b2014-06-30 14:15:31 -07004461 }
Daniel Sandler843e8602010-06-07 14:59:01 -04004462
Sunny Goyal651077b2014-06-30 14:15:31 -07004463 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
4464 } else {
4465 appWidgetInfo = null;
Sunny Goyal9b4b0812014-10-08 10:47:28 -07004466 PendingAppWidgetHostView view = new PendingAppWidgetHostView(this, item,
4467 mIsSafeModeEnabled);
Sunny Goyal0fc1be12014-08-11 17:05:23 -07004468 view.updateIcon(mIconCache);
4469 item.hostView = view;
Sunny Goyal651077b2014-06-30 14:15:31 -07004470 item.hostView.updateAppWidget(null);
Sunny Goyalff572272014-07-23 13:58:07 -07004471 item.hostView.setOnClickListener(this);
Sunny Goyal651077b2014-06-30 14:15:31 -07004472 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004473
Joe Onorato9c1289c2009-08-17 11:03:03 -04004474 item.hostView.setTag(item);
Winson Chung211bac32012-05-15 13:43:57 -07004475 item.onBindAppWidget(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04004476
Adam Cohendcd297f2013-06-18 13:13:40 -07004477 workspace.addInScreen(item.hostView, item.container, item.screenId, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04004478 item.cellY, item.spanX, item.spanY, false);
Adam Cohen59400422014-03-05 18:07:04 -08004479 if (!item.isCustomWidget()) {
4480 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
4481 }
Adam Cohended9f8d2010-11-03 13:25:16 -07004482
Joe Onorato9c1289c2009-08-17 11:03:03 -04004483 workspace.requestLayout();
4484
Daniel Sandler843e8602010-06-07 14:59:01 -04004485 if (DEBUG_WIDGETS) {
4486 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
4487 + (SystemClock.uptimeMillis()-start) + "ms");
4488 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004489 }
4490
Sunny Goyalff572272014-07-23 13:58:07 -07004491 /**
4492 * Restores a pending widget.
4493 *
4494 * @param appWidgetId The app widget id
4495 * @param cellInfo The position on screen where to create the widget.
4496 */
4497 private void completeRestoreAppWidget(final int appWidgetId) {
4498 LauncherAppWidgetHostView view = mWorkspace.getWidgetForAppWidgetId(appWidgetId);
4499 if ((view == null) || !(view instanceof PendingAppWidgetHostView)) {
4500 Log.e(TAG, "Widget update called, when the widget no longer exists.");
4501 return;
4502 }
4503
Sunny Goyal0fc1be12014-08-11 17:05:23 -07004504 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) view.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07004505 info.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
4506
4507 mWorkspace.reinflateWidgetsIfNecessary();
4508 LauncherModel.updateItemInDatabase(this, info);
4509 }
4510
Adam Cohen1462de32012-07-24 22:34:36 -07004511 public void onPageBoundSynchronously(int page) {
4512 mSynchronouslyBoundPages.add(page);
4513 }
4514
Joe Onorato9c1289c2009-08-17 11:03:03 -04004515 /**
4516 * Callback saying that there aren't any more items to bind.
4517 *
4518 * Implementation of the method from LauncherModel.Callbacks.
4519 */
Adam Cohene25af792013-06-06 23:08:25 -07004520 public void finishBindingItems(final boolean upgradePath) {
Winson Chungd64d1762013-08-20 14:37:16 -07004521 Runnable r = new Runnable() {
4522 public void run() {
4523 finishBindingItems(upgradePath);
4524 }
4525 };
4526 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004527 return;
4528 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004529 if (mSavedState != null) {
4530 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07004531 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004532 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004533 mSavedState = null;
4534 }
4535
Adam Cohen1462de32012-07-24 22:34:36 -07004536 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004537
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004538 setWorkspaceLoading(false);
Adam Cohen3ed316a2014-07-23 18:21:20 -07004539 sendLoadingCompleteBroadcastIfNecessary();
Adam Cohendb364c32014-05-20 14:23:40 -07004540
4541 // If we received the result of any pending adds while the loader was running (e.g. the
4542 // widget configuration forced an orientation change), process them now.
4543 if (sPendingAddItem != null) {
4544 final long screenId = completeAdd(sPendingAddItem);
4545
4546 // TODO: this moves the user to the page where the pending item was added. Ideally,
4547 // the screen would be guaranteed to exist after bind, and the page would be set through
4548 // the workspace restore process.
4549 mWorkspace.post(new Runnable() {
4550 @Override
4551 public void run() {
4552 mWorkspace.snapToScreenId(screenId);
4553 }
4554 });
4555 sPendingAddItem = null;
4556 }
4557
Adam Cohene25af792013-06-06 23:08:25 -07004558 if (upgradePath) {
Adam Cohen4caf2982013-08-20 18:54:31 -07004559 mWorkspace.getUniqueComponents(true, null);
4560 mIntentsOnWorkspaceFromUpgradePath = mWorkspace.getUniqueComponents(true, null);
Adam Cohene25af792013-06-06 23:08:25 -07004561 }
Sunny Goyale755d462014-07-22 13:48:29 -07004562 PackageInstallerCompat.getInstance(this).onFinishBind();
Adam Cohen9211d422014-10-07 18:14:53 -07004563
4564 if (mLauncherCallbacks != null) {
4565 mLauncherCallbacks.finishBindingItems(upgradePath);
4566 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004567 }
4568
Adam Cohen3ed316a2014-07-23 18:21:20 -07004569 private void sendLoadingCompleteBroadcastIfNecessary() {
4570 if (!mSharedPrefs.getBoolean(FIRST_LOAD_COMPLETE, false)) {
4571 String permission =
4572 getResources().getString(R.string.receive_first_load_broadcast_permission);
4573 Intent intent = new Intent(ACTION_FIRST_LOAD_COMPLETE);
4574 sendBroadcast(intent, permission);
4575 SharedPreferences.Editor editor = mSharedPrefs.edit();
4576 editor.putBoolean(FIRST_LOAD_COMPLETE, true);
4577 editor.apply();
4578 }
4579 }
4580
Winson Chunga0b7e862013-09-05 16:03:15 -07004581 public boolean isAllAppsButtonRank(int rank) {
4582 if (mHotseat != null) {
4583 return mHotseat.isAllAppsButtonRank(rank);
4584 }
4585 return false;
4586 }
4587
Winson Chunga2413752012-04-03 14:22:34 -07004588 private boolean canRunNewAppsAnimation() {
4589 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
4590 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000);
4591 }
4592
Winson Chungc9168342013-06-26 14:54:55 -07004593 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
4594 ValueAnimator bounceAnim = LauncherAnimUtils.ofPropertyValuesHolder(v,
4595 PropertyValuesHolder.ofFloat("alpha", 1f),
4596 PropertyValuesHolder.ofFloat("scaleX", 1f),
4597 PropertyValuesHolder.ofFloat("scaleY", 1f));
4598 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
4599 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
4600 bounceAnim.setInterpolator(new SmoothPagedView.OvershootInterpolator());
4601 return bounceAnim;
4602 }
4603
Adam Cohen27772732013-11-11 14:00:56 +00004604 public boolean useVerticalBarLayout() {
4605 return LauncherAppState.getInstance().getDynamicGrid().
4606 getDeviceProfile().isVerticalBarLayout();
4607 }
4608
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004609 protected Rect getSearchBarBounds() {
4610 return LauncherAppState.getInstance().getDynamicGrid().
4611 getDeviceProfile().getSearchBarBounds();
4612 }
4613
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004614 public void bindSearchablesChanged() {
Sunny Goyal594d76d2014-11-06 10:12:54 -08004615 if (mSearchDropTargetBar == null) {
4616 return;
Winson Chungadf0c182012-08-23 14:59:07 -07004617 }
Sunny Goyal594d76d2014-11-06 10:12:54 -08004618 if (mQsb != null) {
4619 mSearchDropTargetBar.removeView(mQsb);
4620 mQsb = null;
4621 }
4622 mSearchDropTargetBar.setQsbSearchBar(getQsbBar());
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004623 }
4624
Amith Yamasani6d7fe502010-11-16 09:05:07 -08004625 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004626 * Add the icons for all apps.
4627 *
4628 * Implementation of the method from LauncherModel.Callbacks.
4629 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004630 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -08004631 if (LauncherAppState.isDisableAllApps()) {
Winson Chungc58497e2013-09-03 17:48:37 -07004632 if (mIntentsOnWorkspaceFromUpgradePath != null) {
4633 if (LauncherModel.UPGRADE_USE_MORE_APPS_FOLDER) {
4634 getHotseat().addAllAppsFolder(mIconCache, apps,
4635 mIntentsOnWorkspaceFromUpgradePath, Launcher.this, mWorkspace);
4636 }
4637 mIntentsOnWorkspaceFromUpgradePath = null;
Daniel Sandler8707e0f2013-08-15 15:54:18 -07004638 }
Nilesh Agrawal306c1cf2013-12-12 14:56:00 -08004639 if (mAppsCustomizeContent != null) {
4640 mAppsCustomizeContent.onPackagesUpdated(
Hyunyoung Songfe1dcbf2015-03-11 16:36:52 -07004641 LauncherModel.getSortedWidgetsAndShortcuts(this, false /* refresh */));
Nilesh Agrawal306c1cf2013-12-12 14:56:00 -08004642 }
Winson Chungc58497e2013-09-03 17:48:37 -07004643 } else {
Winson Chungad7db6e2013-10-08 14:01:06 -07004644 if (mAppsCustomizeContent != null) {
Winson Chungc58497e2013-09-03 17:48:37 -07004645 mAppsCustomizeContent.setApps(apps);
Winson Chung6e1c0d32013-10-25 15:24:24 -07004646 mAppsCustomizeContent.onPackagesUpdated(
Hyunyoung Songfe1dcbf2015-03-11 16:36:52 -07004647 LauncherModel.getSortedWidgetsAndShortcuts(this, false /* refresh */));
Winson Chungc58497e2013-09-03 17:48:37 -07004648 }
Winson Chung785d2eb2011-04-14 16:08:02 -07004649 }
Adam Cohen9211d422014-10-07 18:14:53 -07004650 if (mLauncherCallbacks != null) {
4651 mLauncherCallbacks.bindAllApplications(apps);
4652 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004653 }
4654
4655 /**
4656 * A package was updated.
4657 *
4658 * Implementation of the method from LauncherModel.Callbacks.
4659 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004660 public void bindAppsUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004661 Runnable r = new Runnable() {
4662 public void run() {
4663 bindAppsUpdated(apps);
4664 }
4665 };
4666 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004667 return;
4668 }
4669
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -08004670 if (!LauncherAppState.isDisableAllApps() &&
Winson Chungc58497e2013-09-03 17:48:37 -07004671 mAppsCustomizeContent != null) {
4672 mAppsCustomizeContent.updateApps(apps);
4673 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004674 }
4675
Sunny Goyal4390ace2014-10-13 11:33:11 -07004676 @Override
4677 public void bindWidgetsRestored(final ArrayList<LauncherAppWidgetInfo> widgets) {
4678 Runnable r = new Runnable() {
4679 public void run() {
4680 bindWidgetsRestored(widgets);
4681 }
4682 };
4683 if (waitUntilResume(r)) {
4684 return;
4685 }
4686 mWorkspace.widgetsRestored(widgets);
4687 }
4688
Joe Onorato9c1289c2009-08-17 11:03:03 -04004689 /**
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004690 * Some shortcuts were updated in the background.
4691 *
4692 * Implementation of the method from LauncherModel.Callbacks.
4693 */
Sunny Goyal4390ace2014-10-13 11:33:11 -07004694 @Override
4695 public void bindShortcutsChanged(final ArrayList<ShortcutInfo> updated,
4696 final ArrayList<ShortcutInfo> removed, final UserHandleCompat user) {
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004697 Runnable r = new Runnable() {
4698 public void run() {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004699 bindShortcutsChanged(updated, removed, user);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004700 }
4701 };
4702 if (waitUntilResume(r)) {
4703 return;
4704 }
4705
Sunny Goyal4390ace2014-10-13 11:33:11 -07004706 if (!updated.isEmpty()) {
4707 mWorkspace.updateShortcuts(updated);
4708 }
4709
4710 if (!removed.isEmpty()) {
4711 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4712 for (ShortcutInfo si : removed) {
4713 removedComponents.add(si.getTargetComponent());
4714 }
4715 mWorkspace.removeItemsByComponentName(removedComponents, user);
4716 // Notify the drag controller
4717 mDragController.onAppsRemoved(new ArrayList<String>(), removedComponents);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004718 }
4719 }
4720
4721 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004722 * Update the state of a package, typically related to install state.
4723 *
4724 * Implementation of the method from LauncherModel.Callbacks.
4725 */
Sunny Goyale755d462014-07-22 13:48:29 -07004726 @Override
4727 public void updatePackageState(ArrayList<PackageInstallInfo> installInfo) {
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004728 if (mWorkspace != null) {
Sunny Goyale755d462014-07-22 13:48:29 -07004729 mWorkspace.updatePackageState(installInfo);
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004730 }
4731 }
4732
4733 /**
Sunny Goyala22666f2014-09-18 13:25:15 -07004734 * Update the label and icon of all the icons in a package
4735 *
4736 * Implementation of the method from LauncherModel.Callbacks.
4737 */
4738 @Override
4739 public void updatePackageBadge(String packageName) {
4740 if (mWorkspace != null) {
4741 mWorkspace.updatePackageBadge(packageName, UserHandleCompat.myUserHandle());
4742 }
4743 }
4744
4745 /**
Winson Chung83892cc2013-05-01 16:53:33 -07004746 * A package was uninstalled. We take both the super set of packageNames
4747 * in addition to specific applications to remove, the reason being that
4748 * this can be called when a package is updated as well. In that scenario,
4749 * we only remove specific components from the workspace, where as
4750 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004751 *
Sunny Goyal1a745e82014-10-02 15:58:31 -07004752 * @param reason if non-zero, the icons are not permanently removed, rather marked as disabled.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004753 * Implementation of the method from LauncherModel.Callbacks.
4754 */
Sunny Goyal1a745e82014-10-02 15:58:31 -07004755 @Override
Winson Chung83892cc2013-05-01 16:53:33 -07004756 public void bindComponentsRemoved(final ArrayList<String> packageNames,
Sunny Goyal1a745e82014-10-02 15:58:31 -07004757 final ArrayList<AppInfo> appInfos, final UserHandleCompat user, final int reason) {
Winson Chungd64d1762013-08-20 14:37:16 -07004758 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004759 public void run() {
Sunny Goyal1a745e82014-10-02 15:58:31 -07004760 bindComponentsRemoved(packageNames, appInfos, user, reason);
Winson Chung83892cc2013-05-01 16:53:33 -07004761 }
Winson Chungd64d1762013-08-20 14:37:16 -07004762 };
4763 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07004764 return;
4765 }
4766
Sunny Goyal1a745e82014-10-02 15:58:31 -07004767 if (reason == 0) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004768 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4769 for (AppInfo info : appInfos) {
4770 removedComponents.add(info.componentName);
4771 }
Sunny Goyal1a745e82014-10-02 15:58:31 -07004772 if (!packageNames.isEmpty()) {
4773 mWorkspace.removeItemsByPackageName(packageNames, user);
4774 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004775 if (!removedComponents.isEmpty()) {
4776 mWorkspace.removeItemsByComponentName(removedComponents, user);
Sunny Goyal1a745e82014-10-02 15:58:31 -07004777 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004778 // Notify the drag controller
4779 mDragController.onAppsRemoved(packageNames, removedComponents);
4780
Sunny Goyal1a745e82014-10-02 15:58:31 -07004781 } else {
4782 mWorkspace.disableShortcutsByPackageName(packageNames, user, reason);
Joe Onorato36115782010-06-17 13:28:48 -04004783 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07004784
Winson Chungdf95eb12013-10-16 14:57:07 -07004785 // Update AllApps
Nilesh Agrawal16f3ea82014-01-09 17:14:01 -08004786 if (!LauncherAppState.isDisableAllApps() &&
Winson Chungc58497e2013-09-03 17:48:37 -07004787 mAppsCustomizeContent != null) {
4788 mAppsCustomizeContent.removeApps(appInfos);
4789 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004790 }
Joe Onoratobe386092009-11-17 17:32:16 -08004791
4792 /**
Winson Chung80baf5a2010-08-09 16:03:15 -07004793 * A number of packages were updated.
4794 */
Michael Jurkac402cd92013-05-20 15:49:32 +02004795 private ArrayList<Object> mWidgetsAndShortcuts;
4796 private Runnable mBindPackagesUpdatedRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004797 public void run() {
Michael Jurkac402cd92013-05-20 15:49:32 +02004798 bindPackagesUpdated(mWidgetsAndShortcuts);
4799 mWidgetsAndShortcuts = null;
Winson Chung83892cc2013-05-01 16:53:33 -07004800 }
Michael Jurkac402cd92013-05-20 15:49:32 +02004801 };
Michael Jurkac402cd92013-05-20 15:49:32 +02004802 public void bindPackagesUpdated(final ArrayList<Object> widgetsAndShortcuts) {
4803 if (waitUntilResume(mBindPackagesUpdatedRunnable, true)) {
4804 mWidgetsAndShortcuts = widgetsAndShortcuts;
Winson Chung83892cc2013-05-01 16:53:33 -07004805 return;
4806 }
4807
Winson Chung64359a52013-07-08 17:17:08 -07004808 // Update the widgets pane
Nilesh Agrawal306c1cf2013-12-12 14:56:00 -08004809 if (mAppsCustomizeContent != null) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004810 mAppsCustomizeContent.onPackagesUpdated(widgetsAndShortcuts);
Winson Chung785d2eb2011-04-14 16:08:02 -07004811 }
Winson Chung80baf5a2010-08-09 16:03:15 -07004812 }
4813
Winson Chung400438b2011-01-16 17:53:48 -08004814 private int mapConfigurationOriActivityInfoOri(int configOri) {
4815 final Display d = getWindowManager().getDefaultDisplay();
4816 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
4817 switch (d.getRotation()) {
4818 case Surface.ROTATION_0:
4819 case Surface.ROTATION_180:
4820 // We are currently in the same basic orientation as the natural orientation
4821 naturalOri = configOri;
4822 break;
4823 case Surface.ROTATION_90:
4824 case Surface.ROTATION_270:
4825 // We are currently in the other basic orientation to the natural orientation
4826 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
4827 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
4828 break;
4829 }
4830
4831 int[] oriMap = {
4832 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
4833 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
4834 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
4835 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
4836 };
4837 // Since the map starts at portrait, we need to offset if this device's natural orientation
4838 // is landscape.
4839 int indexOffset = 0;
4840 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
4841 indexOffset = 1;
4842 }
4843 return oriMap[(d.getRotation() + indexOffset) % 4];
4844 }
Adam Cohen446e9402011-09-15 18:21:21 -07004845
Winson Chung4b919f82012-05-01 10:44:08 -07004846 public void lockScreenOrientation() {
Sunny Goyal4bbf4192014-11-11 12:23:59 -08004847 if (Utilities.isRotationEnabled(this)) {
Sunny Goyal7470c812015-02-10 14:28:44 -08004848 if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN_MR2) {
4849 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
4850 .getConfiguration().orientation));
4851 } else {
4852 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LOCKED);
4853 }
Winson Chung4b919f82012-05-01 10:44:08 -07004854 }
4855 }
4856 public void unlockScreenOrientation(boolean immediate) {
Sunny Goyal4bbf4192014-11-11 12:23:59 -08004857 if (Utilities.isRotationEnabled(this)) {
Winson Chung4b919f82012-05-01 10:44:08 -07004858 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07004859 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07004860 } else {
4861 mHandler.postDelayed(new Runnable() {
4862 public void run() {
4863 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4864 }
4865 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07004866 }
Winson Chung4b919f82012-05-01 10:44:08 -07004867 }
Winson Chung400438b2011-01-16 17:53:48 -08004868 }
4869
Winson Chunge43a1e72014-01-15 10:33:02 -08004870 protected boolean isLauncherPreinstalled() {
Adam Cohen9211d422014-10-07 18:14:53 -07004871 if (mLauncherCallbacks != null) {
4872 return mLauncherCallbacks.isLauncherPreinstalled();
4873 }
Winson Chunge43a1e72014-01-15 10:33:02 -08004874 PackageManager pm = getPackageManager();
4875 try {
4876 ApplicationInfo ai = pm.getApplicationInfo(getComponentName().getPackageName(), 0);
4877 if ((ai.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
4878 return true;
4879 } else {
4880 return false;
4881 }
4882 } catch (NameNotFoundException e) {
4883 e.printStackTrace();
4884 return false;
4885 }
4886 }
4887
Adam Cohenea90f832014-05-21 15:03:34 -07004888 /**
4889 * This method indicates whether or not we should suggest default wallpaper dimensions
4890 * when our wallpaper cropper was not yet used to set a wallpaper.
4891 */
4892 protected boolean overrideWallpaperDimensions() {
Adam Cohen9211d422014-10-07 18:14:53 -07004893 if (mLauncherCallbacks != null) {
4894 return mLauncherCallbacks.overrideWallpaperDimensions();
4895 }
Adam Cohenea90f832014-05-21 15:03:34 -07004896 return true;
4897 }
4898
Adam Cohen432609a2014-03-13 17:03:22 -07004899 /**
4900 * To be overridden by subclasses to indicate that there is an activity to launch
4901 * before showing the standard launcher experience.
4902 */
4903 protected boolean hasFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004904 if (mLauncherCallbacks != null) {
4905 return mLauncherCallbacks.hasFirstRunActivity();
4906 }
Adam Cohen432609a2014-03-13 17:03:22 -07004907 return false;
4908 }
4909
4910 /**
4911 * To be overridden by subclasses to launch any first run activity
4912 */
4913 protected Intent getFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004914 if (mLauncherCallbacks != null) {
4915 return mLauncherCallbacks.getFirstRunActivity();
4916 }
Adam Cohen432609a2014-03-13 17:03:22 -07004917 return null;
4918 }
4919
Winson Chunga6945242014-01-08 14:04:34 -08004920 private boolean shouldRunFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004921 return !ActivityManager.isRunningInTestHarness() &&
4922 !mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
Winson Chunga6945242014-01-08 14:04:34 -08004923 }
4924
Adam Cohen4a9423d2014-03-28 14:22:31 -07004925 protected boolean hasRunFirstRunActivity() {
4926 return mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
4927 }
4928
Adam Cohen432609a2014-03-13 17:03:22 -07004929 public boolean showFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004930 if (shouldRunFirstRunActivity() &&
4931 hasFirstRunActivity()) {
Winson Chunga6945242014-01-08 14:04:34 -08004932 Intent firstRunIntent = getFirstRunActivity();
4933 if (firstRunIntent != null) {
4934 startActivity(firstRunIntent);
4935 markFirstRunActivityShown();
Adam Cohen432609a2014-03-13 17:03:22 -07004936 return true;
Winson Chunga6945242014-01-08 14:04:34 -08004937 }
4938 }
Adam Cohen432609a2014-03-13 17:03:22 -07004939 return false;
Winson Chunga6945242014-01-08 14:04:34 -08004940 }
4941
4942 private void markFirstRunActivityShown() {
4943 SharedPreferences.Editor editor = mSharedPrefs.edit();
4944 editor.putBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, true);
4945 editor.apply();
4946 }
4947
Adam Cohen432609a2014-03-13 17:03:22 -07004948 /**
4949 * To be overridden by subclasses to indicate that there is an in-activity full-screen intro
4950 * screen that must be displayed and dismissed.
4951 */
4952 protected boolean hasDismissableIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004953 if (mLauncherCallbacks != null) {
4954 return mLauncherCallbacks.hasDismissableIntroScreen();
4955 }
Adam Cohen432609a2014-03-13 17:03:22 -07004956 return false;
4957 }
4958
4959 /**
4960 * Full screen intro screen to be shown and dismissed before the launcher can be used.
4961 */
4962 protected View getIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004963 if (mLauncherCallbacks != null) {
4964 return mLauncherCallbacks.getIntroScreen();
4965 }
Adam Cohen432609a2014-03-13 17:03:22 -07004966 return null;
4967 }
4968
4969 /**
4970 * To be overriden by subclasses to indicate whether the in-activity intro screen has been
4971 * dismissed. This method is ignored if #hasDismissableIntroScreen returns false.
4972 */
4973 private boolean shouldShowIntroScreen() {
4974 return hasDismissableIntroScreen() &&
4975 !mSharedPrefs.getBoolean(INTRO_SCREEN_DISMISSED, false);
4976 }
4977
4978 protected void showIntroScreen() {
4979 View introScreen = getIntroScreen();
4980 changeWallpaperVisiblity(false);
4981 if (introScreen != null) {
4982 mDragLayer.showOverlayView(introScreen);
4983 }
Adam Cohenc3e12c72014-10-31 16:15:36 -07004984 if (mLauncherOverlayContainer != null) {
4985 mLauncherOverlayContainer.setVisibility(View.INVISIBLE);
4986 }
Adam Cohen432609a2014-03-13 17:03:22 -07004987 }
4988
4989 public void dismissIntroScreen() {
4990 markIntroScreenDismissed();
4991 if (showFirstRunActivity()) {
4992 // We delay hiding the intro view until the first run activity is showing. This
4993 // avoids a blip.
4994 mWorkspace.postDelayed(new Runnable() {
4995 @Override
4996 public void run() {
4997 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004998 if (mLauncherOverlayContainer != null) {
4999 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
5000 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07005001 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07005002 }
5003 }, ACTIVITY_START_DELAY);
5004 } else {
5005 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07005006 if (mLauncherOverlayContainer != null) {
5007 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
5008 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07005009 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07005010 }
5011 changeWallpaperVisiblity(true);
5012 }
5013
5014 private void markIntroScreenDismissed() {
5015 SharedPreferences.Editor editor = mSharedPrefs.edit();
5016 editor.putBoolean(INTRO_SCREEN_DISMISSED, true);
5017 editor.apply();
5018 }
5019
Sunny Goyal88d60f12014-09-08 03:47:29 -07005020 private void showFirstRunClings() {
5021 // The two first run cling paths are mutually exclusive, if the launcher is preinstalled
5022 // on the device, then we always show the first run cling experience (or if there is no
5023 // launcher2). Otherwise, we prompt the user upon started for migration
5024 LauncherClings launcherClings = new LauncherClings(this);
5025 if (launcherClings.shouldShowFirstRunOrMigrationClings()) {
5026 if (mModel.canMigrateFromOldLauncherDb(this)) {
5027 launcherClings.showMigrationCling();
5028 } else {
Sunny Goyalaf0628f2014-09-19 10:14:48 -07005029 launcherClings.showLongPressCling(true);
Sunny Goyal88d60f12014-09-08 03:47:29 -07005030 }
5031 }
5032 }
5033
Winson Chunga6945242014-01-08 14:04:34 -08005034 void showWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08005035 if (mWorkspace != null) mWorkspace.setAlpha(1f);
5036 if (mHotseat != null) mHotseat.setAlpha(1f);
5037 if (mPageIndicators != null) mPageIndicators.setAlpha(1f);
5038 if (mSearchDropTargetBar != null) mSearchDropTargetBar.showSearchBar(false);
Winson Chunga6945242014-01-08 14:04:34 -08005039 }
5040
5041 void hideWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08005042 if (mWorkspace != null) mWorkspace.setAlpha(0f);
5043 if (mHotseat != null) mHotseat.setAlpha(0f);
5044 if (mPageIndicators != null) mPageIndicators.setAlpha(0f);
5045 if (mSearchDropTargetBar != null) mSearchDropTargetBar.hideSearchBar(false);
Winson Chunga6945242014-01-08 14:04:34 -08005046 }
5047
Mathew Inwood72fbec12013-11-19 15:45:07 +00005048 public ItemInfo createAppDragInfo(Intent appLaunchIntent) {
Kenny Guyed131872014-04-30 03:02:21 +01005049 // Called from search suggestion, not supported in other profiles.
5050 final UserHandleCompat myUser = UserHandleCompat.myUserHandle();
5051 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
5052 LauncherActivityInfoCompat activityInfo = launcherApps.resolveActivity(appLaunchIntent,
5053 myUser);
5054 if (activityInfo == null) {
Mathew Inwood72fbec12013-11-19 15:45:07 +00005055 return null;
5056 }
Kenny Guyed131872014-04-30 03:02:21 +01005057 return new AppInfo(this, activityInfo, myUser, mIconCache, null);
Mathew Inwood72fbec12013-11-19 15:45:07 +00005058 }
5059
5060 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
5061 Bitmap icon) {
Kenny Guyed131872014-04-30 03:02:21 +01005062 // Called from search suggestion, not supported in other profiles.
5063 return createShortcutDragInfo(shortcutIntent, caption, icon,
5064 UserHandleCompat.myUserHandle());
5065 }
5066
5067 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
5068 Bitmap icon, UserHandleCompat user) {
Kenny Guyc2bd8102014-06-30 12:30:31 +01005069 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyd6fe5262014-07-21 17:11:41 +01005070 CharSequence contentDescription = userManager.getBadgedLabelForUser(caption, user);
Kenny Guyc2bd8102014-06-30 12:30:31 +01005071 return new ShortcutInfo(shortcutIntent, caption, contentDescription, icon, user);
Mathew Inwood72fbec12013-11-19 15:45:07 +00005072 }
5073
Mathew Inwoodb90860a2014-04-11 17:17:39 +01005074 protected void moveWorkspaceToDefaultScreen() {
5075 mWorkspace.moveToDefaultScreen(false);
5076 }
5077
Mathew Inwood72fbec12013-11-19 15:45:07 +00005078 public void startDrag(View dragView, ItemInfo dragInfo, DragSource source) {
5079 dragView.setTag(dragInfo);
Winson Chungbabb53e2014-04-14 17:12:49 -07005080 mWorkspace.onExternalDragStartedWithItem(dragView);
5081 mWorkspace.beginExternalDragShared(dragView, source);
Mathew Inwood72fbec12013-11-19 15:45:07 +00005082 }
5083
Anjali Koppalf5d29132014-02-28 13:33:27 -08005084 @Override
5085 public void onPageSwitch(View newPage, int newPageIndex) {
Adam Cohen9211d422014-10-07 18:14:53 -07005086 if (mLauncherCallbacks != null) {
5087 mLauncherCallbacks.onPageSwitch(newPage, newPageIndex);
5088 }
Anjali Koppalf5d29132014-02-28 13:33:27 -08005089 }
5090
Winson Chung80baf5a2010-08-09 16:03:15 -07005091 /**
Joe Onoratobe386092009-11-17 17:32:16 -08005092 * Prints out out state for debugging.
5093 */
5094 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04005095 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08005096 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08005097 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
5098 Log.d(TAG, "mRestoring=" + mRestoring);
5099 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
5100 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07005101 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08005102 mModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07005103
Winson Chung785d2eb2011-04-14 16:08:02 -07005104 if (mAppsCustomizeContent != null) {
5105 mAppsCustomizeContent.dumpState();
5106 }
Daniel Sandler325dc232013-06-05 22:57:57 -04005107 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08005108 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07005109
5110 @Override
5111 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
5112 super.dump(prefix, fd, writer, args);
Adam Cohen4caf2982013-08-20 18:54:31 -07005113 synchronized (sDumpLogs) {
5114 writer.println(" ");
5115 writer.println("Debug logs: ");
5116 for (int i = 0; i < sDumpLogs.size(); i++) {
5117 writer.println(" " + sDumpLogs.get(i));
5118 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07005119 }
Adam Cohen9211d422014-10-07 18:14:53 -07005120 if (mLauncherCallbacks != null) {
5121 mLauncherCallbacks.dump(prefix, fd, writer, args);
5122 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07005123 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07005124
5125 public static void dumpDebugLogsToConsole() {
Winson Chungede41292013-09-19 16:27:36 -07005126 if (DEBUG_DUMP_LOG) {
5127 synchronized (sDumpLogs) {
5128 Log.d(TAG, "");
5129 Log.d(TAG, "*********************");
5130 Log.d(TAG, "Launcher debug logs: ");
5131 for (int i = 0; i < sDumpLogs.size(); i++) {
5132 Log.d(TAG, " " + sDumpLogs.get(i));
5133 }
5134 Log.d(TAG, "*********************");
5135 Log.d(TAG, "");
Adam Cohen4caf2982013-08-20 18:54:31 -07005136 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07005137 }
Adam Cohen4caf2982013-08-20 18:54:31 -07005138 }
5139
5140 public static void addDumpLog(String tag, String log, boolean debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05005141 addDumpLog(tag, log, null, debugLog);
5142 }
5143
5144 public static void addDumpLog(String tag, String log, Exception e, boolean debugLog) {
Adam Cohen4caf2982013-08-20 18:54:31 -07005145 if (debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05005146 if (e != null) {
5147 Log.d(tag, log, e);
5148 } else {
5149 Log.d(tag, log);
5150 }
Adam Cohen4caf2982013-08-20 18:54:31 -07005151 }
Winson Chungede41292013-09-19 16:27:36 -07005152 if (DEBUG_DUMP_LOG) {
5153 sDateStamp.setTime(System.currentTimeMillis());
5154 synchronized (sDumpLogs) {
Dan Sandler295ae182013-12-10 16:05:47 -05005155 sDumpLogs.add(sDateFormat.format(sDateStamp) + ": " + tag + ", " + log
5156 + (e == null ? "" : (", Exception: " + e)));
Adam Cohen4caf2982013-08-20 18:54:31 -07005157 }
Winson Chungede41292013-09-19 16:27:36 -07005158 }
Adam Cohen4caf2982013-08-20 18:54:31 -07005159 }
5160
Adam Cohen59400422014-03-05 18:07:04 -08005161 public static CustomAppWidget getCustomAppWidget(String name) {
5162 return sCustomAppWidgets.get(name);
5163 }
5164
5165 public static HashMap<String, CustomAppWidget> getCustomAppWidgets() {
5166 return sCustomAppWidgets;
5167 }
5168
Winson Chungede41292013-09-19 16:27:36 -07005169 public void dumpLogsToLocalData() {
5170 if (DEBUG_DUMP_LOG) {
Michael Jurka43467462013-11-14 12:03:58 +01005171 new AsyncTask<Void, Void, Void>() {
5172 public Void doInBackground(Void ... args) {
Winson Chungede41292013-09-19 16:27:36 -07005173 boolean success = false;
5174 sDateStamp.setTime(sRunStart);
5175 String FILENAME = sDateStamp.getMonth() + "-"
5176 + sDateStamp.getDay() + "_"
5177 + sDateStamp.getHours() + "-"
5178 + sDateStamp.getMinutes() + "_"
5179 + sDateStamp.getSeconds() + ".txt";
5180
5181 FileOutputStream fos = null;
5182 File outFile = null;
5183 try {
5184 outFile = new File(getFilesDir(), FILENAME);
5185 outFile.createNewFile();
5186 fos = new FileOutputStream(outFile);
5187 } catch (Exception e) {
5188 e.printStackTrace();
5189 }
5190 if (fos != null) {
5191 PrintWriter writer = new PrintWriter(fos);
5192
5193 writer.println(" ");
5194 writer.println("Debug logs: ");
5195 synchronized (sDumpLogs) {
5196 for (int i = 0; i < sDumpLogs.size(); i++) {
5197 writer.println(" " + sDumpLogs.get(i));
5198 }
5199 }
5200 writer.close();
5201 }
5202 try {
5203 if (fos != null) {
5204 fos.close();
5205 success = true;
5206 }
5207 } catch (IOException e) {
5208 e.printStackTrace();
5209 }
Michael Jurka43467462013-11-14 12:03:58 +01005210 return null;
Winson Chungede41292013-09-19 16:27:36 -07005211 }
Michael Jurka43467462013-11-14 12:03:58 +01005212 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
Adam Cohen4caf2982013-08-20 18:54:31 -07005213 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07005214 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08005215}
Michael Jurka2763be32011-02-24 11:19:57 -08005216
Michael Jurkaabded662011-03-04 12:06:57 -08005217interface LauncherTransitionable {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08005218 View getContent();
Michael Jurkaa35e35a2012-04-26 15:04:28 -07005219 void onLauncherTransitionPrepare(Launcher l, boolean animated, boolean toWorkspace);
Michael Jurkabed61d22012-02-14 22:51:29 -08005220 void onLauncherTransitionStart(Launcher l, boolean animated, boolean toWorkspace);
Winson Chung70442722012-02-10 15:43:22 -08005221 void onLauncherTransitionStep(Launcher l, float t);
Michael Jurkabed61d22012-02-14 22:51:29 -08005222 void onLauncherTransitionEnd(Launcher l, boolean animated, boolean toWorkspace);
Michael Jurka2763be32011-02-24 11:19:57 -08005223}
Dan Sandlerd5024042014-01-09 15:01:33 -05005224
5225interface DebugIntents {
5226 static final String DELETE_DATABASE = "com.android.launcher3.action.DELETE_DATABASE";
5227 static final String MIGRATE_DATABASE = "com.android.launcher3.action.MIGRATE_DATABASE";
Adam Cohen8b5b05b2014-01-10 21:42:39 +00005228}