blob: 3596b71d24d8075c6567336bc56992e81285c654 [file] [log] [blame]
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Daniel Sandler325dc232013-06-05 22:57:57 -040017package com.android.launcher3;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080018
Gilles Debunnedd6c9922010-10-25 11:23:41 -070019import android.animation.Animator;
Michael Jurka8edd75c2010-12-17 20:15:06 -080020import android.animation.AnimatorListenerAdapter;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070021import android.animation.AnimatorSet;
Adam Cohen2801caf2011-05-13 20:57:39 -070022import android.animation.ObjectAnimator;
23import android.animation.PropertyValuesHolder;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070024import android.animation.ValueAnimator;
Sunny Goyal70660032015-05-14 00:07:08 -070025import android.annotation.SuppressLint;
Adam Cohen0b395352014-06-09 22:54:36 +000026import android.annotation.TargetApi;
Michael Jurka946ad472010-07-09 18:05:18 -070027import android.app.Activity;
Brett Chabot2a9e2282011-08-23 15:03:13 -070028import android.app.ActivityManager;
Winson Chungc7450e32012-04-17 17:34:08 -070029import android.app.ActivityOptions;
Chris Wren40c5ed32014-06-24 18:24:23 -040030import android.app.AlertDialog;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080031import android.app.SearchManager;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080032import android.appwidget.AppWidgetHostView;
Michael Jurkaaf442092010-06-10 17:01:57 -070033import android.appwidget.AppWidgetManager;
34import android.appwidget.AppWidgetProviderInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080035import android.content.ActivityNotFoundException;
Joe Onorato2ca0ae72009-11-10 13:14:13 -080036import android.content.BroadcastReceiver;
Michael Jurkae326f182011-11-21 14:05:46 -080037import android.content.ComponentCallbacks2;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040038import android.content.ComponentName;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080039import android.content.Context;
Chris Wren40c5ed32014-06-24 18:24:23 -040040import android.content.DialogInterface;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080041import android.content.Intent;
Winson Chungf0ea4d32011-06-06 14:27:16 -070042import android.content.IntentFilter;
Adam Cohen173f7112015-03-27 15:14:00 -070043import android.content.IntentSender;
Winson Chung82f55532011-08-09 14:14:23 -070044import android.content.SharedPreferences;
Winson Chungaafa03c2010-06-11 17:34:16 -070045import android.content.pm.ActivityInfo;
Winson Chunge43a1e72014-01-15 10:33:02 -080046import android.content.pm.ApplicationInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080047import android.content.pm.PackageManager;
Adam Cohen716b51e2011-06-30 12:09:54 -070048import android.content.pm.PackageManager.NameNotFoundException;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080049import android.content.res.Configuration;
Adam Cohen3f9c9712014-10-31 11:48:25 -070050import android.database.sqlite.SQLiteDatabase;
Adam Cohen268c4752012-06-06 17:47:33 -070051import android.graphics.Bitmap;
52import android.graphics.Canvas;
Sandeep Siddhartha2efc7d92014-05-16 17:21:15 -070053import android.graphics.Color;
Adam Cohen268c4752012-06-06 17:47:33 -070054import android.graphics.PorterDuff;
Michael Jurkaaf442092010-06-10 17:01:57 -070055import android.graphics.Rect;
Sunny Goyal4a6c6f32015-05-19 12:36:46 -070056import android.graphics.drawable.ColorDrawable;
Michael Jurkaaf442092010-06-10 17:01:57 -070057import android.graphics.drawable.Drawable;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040058import android.net.Uri;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -070059import android.os.AsyncTask;
Adam Cohen0f668f32014-09-08 19:54:17 +020060import android.os.Build;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080061import android.os.Bundle;
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +020062import android.os.Environment;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080063import android.os.Handler;
Adam Cohended9f8d2010-11-03 13:25:16 -070064import android.os.Message;
Winson Chunga2413752012-04-03 14:22:34 -070065import android.os.StrictMode;
Daniel Sandler843e8602010-06-07 14:59:01 -040066import android.os.SystemClock;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080067import android.text.Selection;
68import android.text.SpannableStringBuilder;
Michael Jurkaa33411c2012-06-14 16:18:21 -070069import android.text.TextUtils;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080070import android.text.method.TextKeyListener;
Joe Onorato7c312c12009-08-13 21:36:53 -070071import android.util.Log;
Adam Cohen96d30a12013-07-16 18:13:21 -070072import android.view.Display;
73import android.view.Gravity;
74import android.view.HapticFeedbackConstants;
75import android.view.KeyEvent;
76import android.view.LayoutInflater;
77import android.view.Menu;
Adam Cohen96d30a12013-07-16 18:13:21 -070078import android.view.MotionEvent;
79import android.view.Surface;
80import android.view.View;
Adam Cohenf358a4b2013-07-23 16:47:31 -070081import android.view.View.OnClickListener;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080082import android.view.View.OnLongClickListener;
Adam Cohen96d30a12013-07-16 18:13:21 -070083import android.view.ViewGroup;
Adam Cohenc2d6e892014-10-16 09:49:24 -070084import android.view.ViewStub;
Adam Cohen96d30a12013-07-16 18:13:21 -070085import android.view.ViewTreeObserver;
Sunny Goyal651077b2014-06-30 14:15:31 -070086import android.view.Window;
Adam Cohen96d30a12013-07-16 18:13:21 -070087import android.view.WindowManager;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -080088import android.view.accessibility.AccessibilityEvent;
Sunny Goyal5a1f53b2015-05-27 10:24:24 -070089import android.view.animation.OvershootInterpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080090import android.view.inputmethod.InputMethodManager;
Adam Cohen96d30a12013-07-16 18:13:21 -070091import android.widget.Advanceable;
92import android.widget.FrameLayout;
93import android.widget.ImageView;
Chet Haasea8f996d2015-02-17 12:56:04 -080094import android.widget.TextView;
Adam Cohen96d30a12013-07-16 18:13:21 -070095import android.widget.Toast;
Adam Cohen6c5891a2014-07-09 23:53:15 -070096
Sunny Goyal651077b2014-06-30 14:15:31 -070097import com.android.launcher3.DropTarget.DragObject;
98import com.android.launcher3.PagedView.PageSwitchListener;
Winson Chung5f4e0fd2015-05-22 11:12:27 -070099import com.android.launcher3.allapps.AllAppsContainerView;
Winson Chungef7f8742015-06-04 17:18:17 -0700100import com.android.launcher3.allapps.AllAppsSearchBarController;
Sunny Goyalffe83f12014-08-14 17:39:34 -0700101import com.android.launcher3.compat.AppWidgetManagerCompat;
Kenny Guyed131872014-04-30 03:02:21 +0100102import com.android.launcher3.compat.LauncherActivityInfoCompat;
103import com.android.launcher3.compat.LauncherAppsCompat;
104import com.android.launcher3.compat.UserHandleCompat;
105import com.android.launcher3.compat.UserManagerCompat;
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700106import com.android.launcher3.model.WidgetsModel;
Sunny Goyale2df0622015-04-24 11:27:00 -0700107import com.android.launcher3.util.LongArrayMap;
Adam Cohen091440a2015-03-18 14:16:05 -0700108import com.android.launcher3.util.Thunk;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700109import com.android.launcher3.widget.PendingAddWidgetInfo;
Hyunyoung Songb99ff3e2015-04-23 15:17:50 -0700110import com.android.launcher3.widget.WidgetHostViewLoader;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700111import com.android.launcher3.widget.WidgetsContainerView;
Adam Cohen6c5891a2014-07-09 23:53:15 -0700112
Adam Cohen4caf2982013-08-20 18:54:31 -0700113import java.io.File;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700114import java.io.FileDescriptor;
Adam Cohen4caf2982013-08-20 18:54:31 -0700115import java.io.FileOutputStream;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700116import java.io.IOException;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700117import java.io.PrintWriter;
Chet Haasea8f996d2015-02-17 12:56:04 -0800118import java.lang.reflect.InvocationTargetException;
119import java.lang.reflect.Method;
Adam Cohen4caf2982013-08-20 18:54:31 -0700120import java.text.DateFormat;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700121import java.util.ArrayList;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700122import java.util.Collection;
Adam Cohen4caf2982013-08-20 18:54:31 -0700123import java.util.Date;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700124import java.util.HashMap;
Sunny Goyal4390ace2014-10-13 11:33:11 -0700125import java.util.HashSet;
Michael Jurkad7c28052012-04-27 15:43:36 -0700126import java.util.List;
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000127import java.util.concurrent.atomic.AtomicInteger;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700128
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800129/**
130 * Default launcher application.
131 */
Bjorn Bringertc459e522013-06-07 19:36:01 +0100132public class Launcher extends Activity
Michael Jurka0e260592010-06-30 17:07:39 -0700133 implements View.OnClickListener, OnLongClickListener, LauncherModel.Callbacks,
Winson Chungb745afb2015-03-02 11:51:23 -0800134 View.OnTouchListener, PageSwitchListener, LauncherProviderChangeListener,
135 LauncherStateTransitionAnimation.Callbacks {
Hyunyoung Song4e8fb912015-04-11 15:44:32 -0700136 static final String TAG = "Launcher";
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700137 static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800138
Daniel Sandlerf061f822013-06-27 13:59:36 -0400139 static final boolean PROFILE_STARTUP = false;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700140 static final boolean DEBUG_WIDGETS = true;
Winson Chunga2413752012-04-03 14:22:34 -0700141 static final boolean DEBUG_STRICT_MODE = false;
Daniel Sandlerf061f822013-06-27 13:59:36 -0400142 static final boolean DEBUG_RESUME_TIME = false;
Winson Chungede41292013-09-19 16:27:36 -0700143 static final boolean DEBUG_DUMP_LOG = false;
Romain Guy6fefcf12009-06-11 13:07:43 -0700144
Dan Sandlerd5024042014-01-09 15:01:33 -0500145 static final boolean ENABLE_DEBUG_INTENTS = false; // allow DebugIntents to run
146
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800147 private static final int REQUEST_CREATE_SHORTCUT = 1;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700148 private static final int REQUEST_CREATE_APPWIDGET = 5;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700149 private static final int REQUEST_PICK_APPWIDGET = 9;
Mike Clerona0618e42009-10-22 13:55:21 -0700150 private static final int REQUEST_PICK_WALLPAPER = 10;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800151
Michael Jurka8b805b12012-04-18 14:23:14 -0700152 private static final int REQUEST_BIND_APPWIDGET = 11;
Sunny Goyalff572272014-07-23 13:58:07 -0700153 private static final int REQUEST_RECONFIGURE_APPWIDGET = 12;
Michael Jurka8b805b12012-04-18 14:23:14 -0700154
Sunny Goyal4a6c6f32015-05-19 12:36:46 -0700155 private static final int WORKSPACE_BACKGROUND_GRADIENT = 0;
156 private static final int WORKSPACE_BACKGROUND_TRANSPARENT = 1;
157 private static final int WORKSPACE_BACKGROUND_BLACK = 2;
158
Sunny Goyal5a1f53b2015-05-27 10:24:24 -0700159 private static final float BOUNCE_ANIMATION_TENSION = 1.3f;
160
Mathew Inwood876a8462013-06-14 14:12:41 +0100161 /**
162 * IntentStarter uses request codes starting with this. This must be greater than all activity
163 * request codes used internally.
164 */
165 protected static final int REQUEST_LAST = 100;
166
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800167 static final int SCREEN_COUNT = 5;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800168
Michael Jurka0a457bf2012-11-19 14:05:05 -0800169 // To turn on these properties, type
170 // adb shell setprop log.tag.PROPERTY_NAME [VERBOSE | SUPPRESS]
Michael Jurka0a457bf2012-11-19 14:05:05 -0800171 static final String DUMP_STATE_PROPERTY = "launcher_dump_state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800172
Winson Chung2672ff92012-05-04 16:22:30 -0700173 // The Intent extra that defines whether to ignore the launch animation
174 static final String INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION =
Daniel Sandler325dc232013-06-05 22:57:57 -0400175 "com.android.launcher3.intent.extra.shortcut.INGORE_LAUNCH_ANIMATION";
Winson Chung2672ff92012-05-04 16:22:30 -0700176
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800177 // Type: int
178 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
Michael Jurka883f55b2010-10-21 15:47:14 -0700179 // Type: int
180 private static final String RUNTIME_STATE = "launcher.state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800181 // Type: int
Winson Chung3d503fb2011-07-13 17:25:49 -0700182 private static final String RUNTIME_STATE_PENDING_ADD_CONTAINER = "launcher.add_container";
183 // Type: int
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800184 private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
185 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700186 private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cell_x";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800187 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700188 private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cell_y";
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700189 // Type: int
190 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_X = "launcher.add_span_x";
191 // Type: int
192 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_Y = "launcher.add_span_y";
193 // Type: parcelable
194 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_INFO = "launcher.add_widget_info";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000195 // Type: parcelable
Adam Cohen4637b5a2013-11-04 18:21:24 -0800196 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_ID = "launcher.add_widget_id";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000197 // Type: int[]
198 private static final String RUNTIME_STATE_VIEW_IDS = "launcher.view_ids";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800199
Adam Cohen432609a2014-03-13 17:03:22 -0700200 static final String INTRO_SCREEN_DISMISSED = "launcher.intro_screen_dismissed";
Adam Cohenb54a5982014-01-08 15:21:04 -0800201 static final String FIRST_RUN_ACTIVITY_DISPLAYED = "launcher.first_run_activity_displayed";
202
Adam Cohen3ed316a2014-07-23 18:21:20 -0700203 static final String FIRST_LOAD_COMPLETE = "launcher.first_load_complete";
204 static final String ACTION_FIRST_LOAD_COMPLETE =
205 "com.android.launcher3.action.FIRST_LOAD_COMPLETE";
206
Adam Cohen39a06042013-07-19 14:30:12 -0700207 public static final String SHOW_WEIGHT_WATCHER = "debug.show_mem";
Daniel Sandler6053b802013-08-15 15:44:26 -0700208 public static final boolean SHOW_WEIGHT_WATCHER_DEFAULT = false;
Adam Cohen39a06042013-07-19 14:30:12 -0700209
Sunny Goyal594d76d2014-11-06 10:12:54 -0800210 private static final String QSB_WIDGET_ID = "qsb_widget_id";
211 private static final String QSB_WIDGET_PROVIDER = "qsb_widget_provider";
212
Winson Chunga6945242014-01-08 14:04:34 -0800213 public static final String USER_HAS_MIGRATED = "launcher.user_migrated_from_old_data";
214
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700215 /** The different states that Launcher can be in. */
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700216 enum State { NONE, WORKSPACE, APPS, APPS_SPRING_LOADED, WIDGETS, WIDGETS_SPRING_LOADED }
217
Adam Cohen091440a2015-03-18 14:16:05 -0700218 @Thunk State mState = State.WORKSPACE;
Adam Cohen091440a2015-03-18 14:16:05 -0700219 @Thunk LauncherStateTransitionAnimation mStateTransitionAnimation;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700220
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700221 private boolean mIsSafeModeEnabled;
222
Adam Cohenc2d6e892014-10-16 09:49:24 -0700223 LauncherOverlayCallbacks mLauncherOverlayCallbacks = new LauncherOverlayCallbacksImpl();
224 LauncherOverlay mLauncherOverlay;
Adam Cohena6d04922014-10-23 17:28:30 -0700225 InsettableFrameLayout mLauncherOverlayContainer;
Adam Cohenc2d6e892014-10-16 09:49:24 -0700226
Joe Onorato9c1289c2009-08-17 11:03:03 -0400227 static final int APPWIDGET_HOST_ID = 1024;
Adam Cohenad4e15c2013-10-17 16:21:35 -0700228 public static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
229 private static final int ON_ACTIVITY_RESULT_ANIMATION_DELAY = 500;
Adam Cohen646fdf72014-04-08 16:59:36 -0700230 private static final int ACTIVITY_START_DELAY = 1000;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800231
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000232 private HashMap<Integer, Integer> mItemIdToViewId = new HashMap<Integer, Integer>();
233 private static final AtomicInteger sNextGeneratedId = new AtomicInteger(1);
234
Winson Chunga2413752012-04-03 14:22:34 -0700235 // How long to wait before the new-shortcut animation automatically pans the workspace
Winson Chung94d67682013-09-25 16:29:40 -0700236 private static int NEW_APPS_PAGE_MOVE_DELAY = 500;
237 private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 5;
Adam Cohen091440a2015-03-18 14:16:05 -0700238 @Thunk static int NEW_APPS_ANIMATION_DELAY = 500;
Winson Chunga2413752012-04-03 14:22:34 -0700239
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800240 private final BroadcastReceiver mCloseSystemDialogsReceiver
241 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800242
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800243 private LayoutInflater mInflater;
244
Adam Cohen091440a2015-03-18 14:16:05 -0700245 @Thunk Workspace mWorkspace;
Craig Mautner360310b2012-10-26 15:13:08 -0700246 private View mLauncherView;
Winson Chunga6945242014-01-08 14:04:34 -0800247 private View mPageIndicators;
Adam Cohen091440a2015-03-18 14:16:05 -0700248 @Thunk DragLayer mDragLayer;
Michael Jurkab737ee62011-11-15 15:57:22 -0800249 private DragController mDragController;
Adam Cohen39a06042013-07-19 14:30:12 -0700250 private View mWeightWatcher;
Romain Guycbb89e42009-06-08 15:52:54 -0700251
Sunny Goyalffe83f12014-08-14 17:39:34 -0700252 private AppWidgetManagerCompat mAppWidgetManager;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700253 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700254
Adam Cohen091440a2015-03-18 14:16:05 -0700255 @Thunk ItemInfo mPendingAddInfo = new ItemInfo();
Adam Cohen59400422014-03-05 18:07:04 -0800256 private LauncherAppWidgetProviderInfo mPendingAddWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800257 private int mPendingAddWidgetId = -1;
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700258
Michael Jurka0280c3b2010-09-17 15:00:07 -0700259 private int[] mTmpAddItemCellCoordinates = new int[2];
260
Sunny Goyal316490e2015-06-02 09:38:28 -0700261 @Thunk Hotseat mHotseat;
Jorim Jaggid017f882014-01-14 17:08:48 -0800262 private ViewGroup mOverviewPanel;
Adam Cohenf358a4b2013-07-23 16:47:31 -0700263
Michael Jurka838a4ca2011-02-07 13:33:06 -0800264 private View mAllAppsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700265
Winson Chungc51db6a2011-10-05 11:44:49 -0700266 private SearchDropTargetBar mSearchDropTargetBar;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700267
268 // Main container view for the all apps screen.
Winson Chung5f4e0fd2015-05-22 11:12:27 -0700269 @Thunk AllAppsContainerView mAppsView;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700270
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700271 // Main container view and the model for the widget tray screen.
272 @Thunk WidgetsContainerView mWidgetsView;
273 @Thunk WidgetsModel mWidgetsModel;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700274
Winson Chungf0ea4d32011-06-06 14:27:16 -0700275 private boolean mAutoAdvanceRunning = false;
Sunny Goyal594d76d2014-11-06 10:12:54 -0800276 private AppWidgetHostView mQsb;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800277
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800278 private Bundle mSavedState;
Winson Chung4a2afa32012-07-19 14:53:05 -0700279 // We set the state in both onCreate and then onNewIntent in some cases, which causes both
280 // scroll issues (because the workspace may not have been measured yet) and extra work.
281 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
282 private State mOnResumeState = State.NONE;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800283
284 private SpannableStringBuilder mDefaultKeySsb = null;
285
Adam Cohen091440a2015-03-18 14:16:05 -0700286 @Thunk boolean mWorkspaceLoading = true;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400287
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800288 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800289 private boolean mRestoring;
290 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700291 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800292
Michael Jurka1e2f4652013-07-08 18:03:46 -0700293 private ArrayList<Runnable> mBindOnResumeCallbacks = new ArrayList<Runnable>();
Michael Jurka7607c2f2013-04-03 14:33:19 -0700294 private ArrayList<Runnable> mOnResumeCallbacks = new ArrayList<Runnable>();
295
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800296 private Bundle mSavedInstanceState;
297
Joe Onorato9c1289c2009-08-17 11:03:03 -0400298 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800299 private IconCache mIconCache;
Adam Cohen091440a2015-03-18 14:16:05 -0700300 @Thunk boolean mUserPresent = true;
Adam Cohend113e0c2010-11-11 10:48:05 -0800301 private boolean mVisible = false;
Adam Cohened307df2013-10-02 09:37:31 -0700302 private boolean mHasFocus = false;
Adam Cohend113e0c2010-11-11 10:48:05 -0800303 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400304
Sunny Goyale2df0622015-04-24 11:27:00 -0700305 private static LongArrayMap<FolderInfo> sFolders = new LongArrayMap<>();
Romain Guycbb89e42009-06-08 15:52:54 -0700306
Adam Cohen61f560d2013-09-30 15:58:20 -0700307 private View.OnTouchListener mHapticFeedbackTouchListener;
308
Adam Cohended9f8d2010-11-03 13:25:16 -0700309 // Related to the auto-advancing of widgets
310 private final int ADVANCE_MSG = 1;
311 private final int mAdvanceInterval = 20000;
312 private final int mAdvanceStagger = 250;
313 private long mAutoAdvanceSentTime;
314 private long mAutoAdvanceTimeLeft = -1;
Adam Cohen091440a2015-03-18 14:16:05 -0700315 @Thunk HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
Adam Cohended9f8d2010-11-03 13:25:16 -0700316 new HashMap<View, AppWidgetProviderInfo>();
317
Winson Chung400438b2011-01-16 17:53:48 -0800318 // Determines how long to wait after a rotation before restoring the screen orientation to
319 // match the sensor state.
320 private final int mRestoreScreenOrientationDelay = 500;
321
Adam Cohen091440a2015-03-18 14:16:05 -0700322 @Thunk Drawable mWorkspaceBackgroundDrawable;
Craig Mautner360310b2012-10-26 15:13:08 -0700323
Adam Cohen1462de32012-07-24 22:34:36 -0700324 private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700325 private static final boolean DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE = false;
Adam Cohen1462de32012-07-24 22:34:36 -0700326
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700327 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
Adam Cohen4caf2982013-08-20 18:54:31 -0700328 static Date sDateStamp = new Date();
329 static DateFormat sDateFormat =
330 DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
331 static long sRunStart = System.currentTimeMillis();
332 static final String CORRUPTION_EMAIL_SENT_KEY = "corruptionEmailSent";
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700333
Winson Chung46353de2012-02-16 14:05:10 -0800334 // We only want to get the SharedPreferences once since it does an FS stat each time we get
335 // it from the context.
336 private SharedPreferences mSharedPrefs;
337
Winson Chungf0c6ae02012-03-21 16:10:31 -0700338 // Holds the page that we need to animate to, and the icon views that we need to animate up
339 // when we scroll to that page on resume.
Adam Cohen091440a2015-03-18 14:16:05 -0700340 @Thunk ImageView mFolderIconImageView;
Adam Cohen268c4752012-06-06 17:47:33 -0700341 private Bitmap mFolderIconBitmap;
342 private Canvas mFolderIconCanvas;
343 private Rect mRectForFolderAnimation = new Rect();
Adam Cohen2801caf2011-05-13 20:57:39 -0700344
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700345 private DeviceProfile mDeviceProfile;
346
Winson Chung13eb5272015-05-11 16:30:13 -0700347 // This is set to the view that launched the activity that navigated the user away from
348 // launcher. Since there is no callback for when the activity has finished launching, enable
349 // the press state and keep this reference to reset the press state when we return to launcher.
Michael Jurkaddd62e92011-02-16 17:49:14 -0800350 private BubbleTextView mWaitingForResume;
351
Adam Cohen59400422014-03-05 18:07:04 -0800352 protected static HashMap<String, CustomAppWidget> sCustomAppWidgets =
353 new HashMap<String, CustomAppWidget>();
354
355 private static final boolean ENABLE_CUSTOM_WIDGET_TEST = false;
356 static {
357 if (ENABLE_CUSTOM_WIDGET_TEST) {
358 sCustomAppWidgets.put(DummyWidget.class.getName(), new DummyWidget());
359 }
360 }
361
Chet Haasea8f996d2015-02-17 12:56:04 -0800362 // TODO: remove this field and call method directly when Launcher3 can depend on M APIs
363 private static Method sClipRevealMethod = null;
364 static {
365 Class<?> activityOptionsClass = ActivityOptions.class;
366 try {
367 sClipRevealMethod = activityOptionsClass.getDeclaredMethod("makeClipRevealAnimation",
368 View.class, int.class, int.class, int.class, int.class);
369 } catch (Exception e) {
370 // Earlier version
371 }
372 }
373
Adam Cohen091440a2015-03-18 14:16:05 -0700374 @Thunk Runnable mBuildLayersRunnable = new Runnable() {
Michael Jurkac1f5d262011-09-30 19:32:27 -0700375 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700376 if (mWorkspace != null) {
377 mWorkspace.buildPageHardwareLayers();
378 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700379 }
380 };
381
Adam Cohendb364c32014-05-20 14:23:40 -0700382 private static PendingAddArguments sPendingAddItem;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800383
Adam Cohen091440a2015-03-18 14:16:05 -0700384 @Thunk static class PendingAddArguments {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800385 int requestCode;
386 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700387 long container;
Adam Cohendcd297f2013-06-18 13:13:40 -0700388 long screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800389 int cellX;
390 int cellY;
Adam Cohendb364c32014-05-20 14:23:40 -0700391 int appWidgetId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800392 }
393
Daniel Sandlerff02d492013-08-05 02:12:05 -0400394 private Stats mStats;
Sunny Goyaldcbcc862014-08-12 15:58:36 -0700395 FocusIndicatorView mFocusHandler;
Sunny Goyal7779d622015-06-11 16:18:39 -0700396 private boolean mRotationEnabled = false;
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400397
398 @Thunk void setOrientation() {
399 if (mRotationEnabled) {
400 unlockScreenOrientation(true);
401 } else {
402 setRequestedOrientation(
403 ActivityInfo.SCREEN_ORIENTATION_NOSENSOR);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700404 }
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400405 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700406
Sunny Goyal7779d622015-06-11 16:18:39 -0700407 private Runnable mUpdateOrientationRunnable = new Runnable() {
408 public void run() {
409 setOrientation();
410 }
411 };
412
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800413 @Override
414 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700415 if (DEBUG_STRICT_MODE) {
416 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
417 .detectDiskReads()
418 .detectDiskWrites()
419 .detectNetwork() // or .detectAll() for all detectable problems
420 .penaltyLog()
421 .build());
422 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
423 .detectLeakedSqlLiteObjects()
424 .detectLeakedClosableObjects()
425 .penaltyLog()
426 .penaltyDeath()
427 .build());
428 }
429
Adam Cohen9211d422014-10-07 18:14:53 -0700430 if (mLauncherCallbacks != null) {
431 mLauncherCallbacks.preOnCreate();
432 }
433
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800434 super.onCreate(savedInstanceState);
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400435
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400436 LauncherAppState.setApplicationContext(getApplicationContext());
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400437 LauncherAppState app = LauncherAppState.getInstance();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700438
Adam Cohen2e6da152015-05-06 11:42:25 -0700439 // Load configuration-specific DeviceProfile
Sunny Goyalc6205602015-05-21 20:46:33 -0700440 mDeviceProfile = getResources().getConfiguration().orientation
441 == Configuration.ORIENTATION_LANDSCAPE ?
442 app.getInvariantDeviceProfile().landscapeProfile
443 : app.getInvariantDeviceProfile().portraitProfile;
444
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400445 mSharedPrefs = getSharedPreferences(LauncherAppState.getSharedPreferencesKey(),
Winson Chungf0c6ae02012-03-21 16:10:31 -0700446 Context.MODE_PRIVATE);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700447 mIsSafeModeEnabled = getPackageManager().isSafeMode();
Joe Onorato0589f0f2010-02-08 13:44:00 -0800448 mModel = app.setLauncher(this);
449 mIconCache = app.getIconCache();
Adam Cohen2e6da152015-05-06 11:42:25 -0700450
Joe Onorato41a12d22009-10-31 18:30:00 -0400451 mDragController = new DragController(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800452 mInflater = getLayoutInflater();
Winson Chungb745afb2015-03-02 11:51:23 -0800453 mStateTransitionAnimation = new LauncherStateTransitionAnimation(this, this);
Romain Guycbb89e42009-06-08 15:52:54 -0700454
Daniel Sandlerff02d492013-08-05 02:12:05 -0400455 mStats = new Stats(this);
456
Sunny Goyalffe83f12014-08-14 17:39:34 -0700457 mAppWidgetManager = AppWidgetManagerCompat.getInstance(this);
Adam Cohen53805212013-10-01 10:39:23 -0700458
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700459 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
460 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700461
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700462 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
463 // this also ensures that any synchronous binding below doesn't re-trigger another
464 // LauncherModel load.
465 mPaused = false;
466
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800467 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200468 android.os.Debug.startMethodTracing(
469 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800470 }
471
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800472 setContentView(R.layout.launcher);
Michael Jurka7267fa52013-09-26 15:29:57 -0700473
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800474 setupViews();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700475 mDeviceProfile.layout(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800476
Joe Onorato7c312c12009-08-13 21:36:53 -0700477 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700478
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800479 mSavedState = savedInstanceState;
480 restoreState(mSavedState);
481
482 if (PROFILE_STARTUP) {
483 android.os.Debug.stopMethodTracing();
484 }
485
486 if (!mRestoring) {
Adam Cohendb78dc82014-06-19 14:50:51 -0700487 if (DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700488 // If the user leaves launcher, then we should just load items asynchronously when
489 // they return.
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700490 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Winson Chung4a2afa32012-07-19 14:53:05 -0700491 } else {
492 // We only load the page synchronously if the user rotates (or triggers a
493 // configuration change) while launcher is in the foreground
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700494 mModel.startLoader(mWorkspace.getRestorePage());
Winson Chung4a2afa32012-07-19 14:53:05 -0700495 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800496 }
497
498 // For handling default keys
499 mDefaultKeySsb = new SpannableStringBuilder();
500 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800501
502 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
503 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800504
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700505 mRotationEnabled = Utilities.isRotationAllowedForDevice(getApplicationContext());
506 // In case we are on a device with locked rotation, we should look at preferences to check
507 // if the user has specifically allowed rotation.
508 if (!mRotationEnabled) {
Rahul Chaturvedie863fed2015-06-15 14:09:42 -0400509 mRotationEnabled = Utilities.isAllowRotationPrefEnabled(getApplicationContext(), false);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700510 }
511
512 // On large interfaces, or on devices that a user has specifically enabled screen rotation,
513 // we want the screen to auto-rotate based on the current orientation
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400514 setOrientation();
Winson Chungaf40f202013-09-18 18:26:31 -0700515
Adam Cohen9211d422014-10-07 18:14:53 -0700516 if (mLauncherCallbacks != null) {
517 mLauncherCallbacks.onCreate(savedInstanceState);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700518 if (mLauncherCallbacks.hasLauncherOverlay()) {
519 ViewStub stub = (ViewStub) findViewById(R.id.launcher_overlay_stub);
Adam Cohena6d04922014-10-23 17:28:30 -0700520 mLauncherOverlayContainer = (InsettableFrameLayout) stub.inflate();
521 mLauncherOverlay = mLauncherCallbacks.setLauncherOverlayView(
522 mLauncherOverlayContainer, mLauncherOverlayCallbacks);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700523 mWorkspace.setLauncherOverlay(mLauncherOverlay);
524 }
Adam Cohen9211d422014-10-07 18:14:53 -0700525 }
Adam Cohenc3e12c72014-10-31 16:15:36 -0700526
527 if (shouldShowIntroScreen()) {
528 showIntroScreen();
529 } else {
530 showFirstRunActivity();
531 showFirstRunClings();
532 }
Adam Cohen9211d422014-10-07 18:14:53 -0700533 }
534
Sunny Goyal7779d622015-06-11 16:18:39 -0700535 @Override
536 public void onSettingsChanged(String settings, boolean value) {
537 if (Utilities.ALLOW_ROTATION_PREFERENCE_KEY.equals(settings)) {
538 mRotationEnabled = value;
539 if (!waitUntilResume(mUpdateOrientationRunnable, true)) {
540 mUpdateOrientationRunnable.run();
541 }
542 }
543 }
544
Adam Cohen9211d422014-10-07 18:14:53 -0700545 private LauncherCallbacks mLauncherCallbacks;
546
547 public void onPostCreate(Bundle savedInstanceState) {
548 super.onPostCreate(savedInstanceState);
549 if (mLauncherCallbacks != null) {
550 mLauncherCallbacks.onPostCreate(savedInstanceState);
551 }
552 }
553
554 public boolean setLauncherCallbacks(LauncherCallbacks callbacks) {
555 mLauncherCallbacks = callbacks;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700556 mLauncherCallbacks.setLauncherSearchCallback(new Launcher.LauncherSearchCallbacks() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700557 private boolean mWorkspaceImportanceStored = false;
558 private boolean mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700559 private int mWorkspaceImportanceForAccessibility =
560 View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
561 private int mHotseatImportanceForAccessibility = View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
562
563 @Override
564 public void onSearchOverlayOpened() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700565 if (mWorkspaceImportanceStored || mHotseatImportanceStored) {
Jun Mukai8af0cd82015-05-12 12:32:12 -0700566 return;
567 }
568 // The underlying workspace and hotseat are temporarily suppressed by the search
569 // overlay. So they sholudn't be accessible.
Jun Mukaie9819e62015-06-17 10:58:59 -0700570 if (mWorkspace != null) {
571 mWorkspaceImportanceForAccessibility =
572 mWorkspace.getImportantForAccessibility();
573 mWorkspace.setImportantForAccessibility(
574 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
575 mWorkspaceImportanceStored = true;
576 }
577 if (mHotseat != null) {
578 mHotseatImportanceForAccessibility = mHotseat.getImportantForAccessibility();
579 mHotseat.setImportantForAccessibility(
580 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
581 mHotseatImportanceStored = true;
582 }
Jun Mukai8af0cd82015-05-12 12:32:12 -0700583 }
584
585 @Override
586 public void onSearchOverlayClosed() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700587 if (mWorkspaceImportanceStored && mWorkspace != null) {
588 mWorkspace.setImportantForAccessibility(mWorkspaceImportanceForAccessibility);
589 }
590 if (mHotseatImportanceStored && mHotseat != null) {
591 mHotseat.setImportantForAccessibility(mHotseatImportanceForAccessibility);
592 }
593 mWorkspaceImportanceStored = false;
594 mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700595 }
596 });
Adam Cohen9211d422014-10-07 18:14:53 -0700597 return true;
Adam Cohenf9426d52012-06-04 17:26:21 -0700598 }
599
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700600 @Override
Adam Cohen9211d422014-10-07 18:14:53 -0700601 public void onLauncherProviderChange() {
602 if (mLauncherCallbacks != null) {
603 mLauncherCallbacks.onLauncherProviderChange();
604 }
605 }
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700606
Winson Chungef7f8742015-06-04 17:18:17 -0700607 /**
608 * Updates the bounds of all the overlays to match the new fixed bounds.
609 */
610 public void updateOverlayBounds(Rect newBounds) {
611 mAppsView.setSearchBarBounds(newBounds);
612 mWidgetsView.setSearchBarBounds(newBounds);
613 }
614
Adam Cohen9211d422014-10-07 18:14:53 -0700615 /** To be overridden by subclasses to hint to Launcher that we have custom content */
Winson Chung98ca0f72013-07-29 12:58:51 -0700616 protected boolean hasCustomContentToLeft() {
Adam Cohen9211d422014-10-07 18:14:53 -0700617 if (mLauncherCallbacks != null) {
618 return mLauncherCallbacks.hasCustomContentToLeft();
619 }
Winson Chung98ca0f72013-07-29 12:58:51 -0700620 return false;
621 }
622
Dave Hawkeya8881582013-09-17 15:55:33 -0600623 /**
Derek Prothrodadd9842014-01-17 13:43:50 -0500624 * To be overridden by subclasses to populate the custom content container and call
Dave Hawkeya8881582013-09-17 15:55:33 -0600625 * {@link #addToCustomContentPage}. This will only be invoked if
626 * {@link #hasCustomContentToLeft()} is {@code true}.
627 */
Derek Prothrodadd9842014-01-17 13:43:50 -0500628 protected void populateCustomContentContainer() {
Adam Cohen9211d422014-10-07 18:14:53 -0700629 if (mLauncherCallbacks != null) {
630 mLauncherCallbacks.populateCustomContentContainer();
631 }
Dave Hawkeya8881582013-09-17 15:55:33 -0600632 }
633
634 /**
635 * Invoked by subclasses to signal a change to the {@link #addCustomContentToLeft} value to
636 * ensure the custom content page is added or removed if necessary.
637 */
638 protected void invalidateHasCustomContentToLeft() {
Dave Hawkey3a733a72013-09-30 11:52:21 -0600639 if (mWorkspace == null || mWorkspace.getScreenOrder().isEmpty()) {
Dave Hawkeya8881582013-09-17 15:55:33 -0600640 // Not bound yet, wait for bindScreens to be called.
641 return;
642 }
643
644 if (!mWorkspace.hasCustomContent() && hasCustomContentToLeft()) {
645 // Create the custom content page and call the subclass to populate it.
Derek Prothrodadd9842014-01-17 13:43:50 -0500646 mWorkspace.createCustomContentContainer();
647 populateCustomContentContainer();
Dave Hawkeya8881582013-09-17 15:55:33 -0600648 } else if (mWorkspace.hasCustomContent() && !hasCustomContentToLeft()) {
649 mWorkspace.removeCustomContentPage();
650 }
651 }
652
Anton Hanssona2f665f2013-09-26 12:18:32 +0100653 public Stats getStats() {
654 return mStats;
655 }
656
Bjorn Bringertc459e522013-06-07 19:36:01 +0100657 public LayoutInflater getInflater() {
658 return mInflater;
659 }
660
Hyunyoung Song3f471442015-04-08 19:01:34 -0700661 public boolean isDraggingEnabled() {
Winson Chung36a62fe2012-05-06 18:04:42 -0700662 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
663 // that is subsequently removed from the workspace in startBinding().
664 return !mModel.isLoadingWorkspace();
665 }
666
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800667 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000668 public static int generateViewId() {
Ian Parkinson0c2918f2014-10-06 14:24:31 +0100669 if (Build.VERSION.SDK_INT >= 17) {
670 return View.generateViewId();
671 } else {
672 // View.generateViewId() is not available. The following fallback logic is a copy
673 // of its implementation.
674 for (;;) {
675 final int result = sNextGeneratedId.get();
676 // aapt-generated IDs have the high byte nonzero; clamp to the range under that.
677 int newValue = result + 1;
678 if (newValue > 0x00FFFFFF) newValue = 1; // Roll over to 1, not 0.
679 if (sNextGeneratedId.compareAndSet(result, newValue)) {
680 return result;
681 }
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000682 }
683 }
684 }
685
686 public int getViewIdForItem(ItemInfo info) {
687 // This cast is safe given the > 2B range for int.
688 int itemId = (int) info.id;
689 if (mItemIdToViewId.containsKey(itemId)) {
690 return mItemIdToViewId.get(itemId);
691 }
692 int viewId = generateViewId();
693 mItemIdToViewId.put(itemId, viewId);
694 return viewId;
695 }
696
697 /**
Winson Chung557d6ed2011-07-08 15:34:52 -0700698 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
699 * a configuration step, this allows the proper animations to run after other transitions.
700 */
Adam Cohendb364c32014-05-20 14:23:40 -0700701 private long completeAdd(PendingAddArguments args) {
Adam Cohen83079e42014-09-19 17:43:08 -0700702 long screenId = args.screenId;
703 if (args.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
704 // When the screen id represents an actual screen (as opposed to a rank) we make sure
705 // that the drop page actually exists.
706 screenId = ensurePendingDropLayoutExists(args.screenId);
707 }
Adam Cohendb364c32014-05-20 14:23:40 -0700708
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800709 switch (args.requestCode) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800710 case REQUEST_CREATE_SHORTCUT:
Adam Cohendb364c32014-05-20 14:23:40 -0700711 completeAddShortcut(args.intent, args.container, screenId, args.cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -0700712 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700713 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800714 case REQUEST_CREATE_APPWIDGET:
Adam Cohendb364c32014-05-20 14:23:40 -0700715 completeAddAppWidget(args.appWidgetId, args.container, screenId, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700716 break;
Sunny Goyalff572272014-07-23 13:58:07 -0700717 case REQUEST_RECONFIGURE_APPWIDGET:
718 completeRestoreAppWidget(args.appWidgetId);
719 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800720 }
Michael Jurka27614d22012-04-02 06:40:22 -0700721 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
722 // if you turned the screen off and then back while in All Apps, Launcher would not
723 // return to the workspace. Clearing mAddInfo.container here fixes this issue
724 resetAddInfo();
Adam Cohendb364c32014-05-20 14:23:40 -0700725 return screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800726 }
727
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800728 private void handleActivityResult(
Michael Jurka8b805b12012-04-18 14:23:14 -0700729 final int requestCode, final int resultCode, final Intent data) {
Winson Chunge341d302013-08-16 14:31:00 -0700730 // Reset the startActivity waiting flag
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700731 setWaitingForResult(false);
Adam Cohendb364c32014-05-20 14:23:40 -0700732 final int pendingAddWidgetId = mPendingAddWidgetId;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800733 mPendingAddWidgetId = -1;
Winson Chunge341d302013-08-16 14:31:00 -0700734
Adam Cohenad4e15c2013-10-17 16:21:35 -0700735 Runnable exitSpringLoaded = new Runnable() {
736 @Override
737 public void run() {
738 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
739 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
740 }
741 };
742
Michael Jurka8b805b12012-04-18 14:23:14 -0700743 if (requestCode == REQUEST_BIND_APPWIDGET) {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700744 final int appWidgetId = data != null ?
Michael Jurka8b805b12012-04-18 14:23:14 -0700745 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
746 if (resultCode == RESULT_CANCELED) {
747 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
Adam Cohen689ff162014-05-08 17:27:56 -0700748 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700749 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
Michael Jurka8b805b12012-04-18 14:23:14 -0700750 } else if (resultCode == RESULT_OK) {
Sunny Goyale6b63a32015-01-16 16:14:29 -0800751 addAppWidgetImpl(appWidgetId, mPendingAddInfo, null,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700752 mPendingAddWidgetInfo, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
Michael Jurka8b805b12012-04-18 14:23:14 -0700753 }
754 return;
Michael Jurka336fd4f2013-09-12 00:05:02 +0200755 } else if (requestCode == REQUEST_PICK_WALLPAPER) {
756 if (resultCode == RESULT_OK && mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -0700757 showWorkspace(false);
Michael Jurka336fd4f2013-09-12 00:05:02 +0200758 }
759 return;
Michael Jurka8b805b12012-04-18 14:23:14 -0700760 }
Michael Jurka336fd4f2013-09-12 00:05:02 +0200761
Adam Cohened66b2b2012-01-23 17:28:51 -0800762 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
Sunny Goyal5c97f512015-05-19 16:03:28 -0700763 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700764
Adam Cohendb364c32014-05-20 14:23:40 -0700765 final boolean workspaceLocked = isWorkspaceLocked();
Adam Cohened66b2b2012-01-23 17:28:51 -0800766 // We have special handling for widgets
767 if (isWidgetDrop) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800768 final int appWidgetId;
769 int widgetId = data != null ? data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1)
770 : -1;
771 if (widgetId < 0) {
772 appWidgetId = pendingAddWidgetId;
773 } else {
774 appWidgetId = widgetId;
775 }
776
Adam Cohenad4e15c2013-10-17 16:21:35 -0700777 final int result;
Adam Cohenf0129b12013-11-04 17:57:36 -0800778 if (appWidgetId < 0 || resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700779 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not " +
780 "returned from the widget configuration activity.");
Adam Cohenad4e15c2013-10-17 16:21:35 -0700781 result = RESULT_CANCELED;
782 completeTwoStageWidgetDrop(result, appWidgetId);
Adam Cohendb364c32014-05-20 14:23:40 -0700783 final Runnable onComplete = new Runnable() {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700784 @Override
785 public void run() {
786 exitSpringLoadedDragModeDelayed(false, 0, null);
787 }
788 };
Adam Cohendb364c32014-05-20 14:23:40 -0700789 if (workspaceLocked) {
790 // No need to remove the empty screen if we're mid-binding, as the
791 // the bind will not add the empty screen.
792 mWorkspace.postDelayed(onComplete, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
793 } else {
794 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
795 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
796 }
Winson Chung5aaab772012-04-27 15:24:02 -0700797 } else {
Adam Cohendb364c32014-05-20 14:23:40 -0700798 if (!workspaceLocked) {
Adam Cohen83079e42014-09-19 17:43:08 -0700799 if (mPendingAddInfo.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
800 // When the screen id represents an actual screen (as opposed to a rank)
801 // we make sure that the drop page actually exists.
802 mPendingAddInfo.screenId =
803 ensurePendingDropLayoutExists(mPendingAddInfo.screenId);
804 }
Adam Cohendb364c32014-05-20 14:23:40 -0700805 final CellLayout dropLayout = mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
806
807 dropLayout.setDropPending(true);
808 final Runnable onComplete = new Runnable() {
809 @Override
810 public void run() {
811 completeTwoStageWidgetDrop(resultCode, appWidgetId);
812 dropLayout.setDropPending(false);
813 }
814 };
815 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
816 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
817 } else {
818 PendingAddArguments args = preparePendingAddArgs(requestCode, data, appWidgetId,
819 mPendingAddInfo);
820 sPendingAddItem = args;
821 }
Winson Chung5aaab772012-04-27 15:24:02 -0700822 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800823 return;
824 }
825
Sunny Goyalff572272014-07-23 13:58:07 -0700826 if (requestCode == REQUEST_RECONFIGURE_APPWIDGET) {
827 if (resultCode == RESULT_OK) {
828 // Update the widget view.
829 PendingAddArguments args = preparePendingAddArgs(requestCode, data,
830 pendingAddWidgetId, mPendingAddInfo);
831 if (workspaceLocked) {
832 sPendingAddItem = args;
833 } else {
834 completeAdd(args);
835 }
836 }
837 // Leave the widget in the pending state if the user canceled the configure.
838 return;
839 }
840
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800841 // The pattern used here is that a user PICKs a specific application,
842 // which, depending on the target, might need to CREATE the actual target.
Romain Guycbb89e42009-06-08 15:52:54 -0700843
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800844 // For example, the user would PICK_SHORTCUT for "Music playlist", and we
845 // launch over to the Music app to actually CREATE_SHORTCUT.
Winson Chungc7da5552011-08-10 15:28:45 -0700846 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
Adam Cohendb364c32014-05-20 14:23:40 -0700847 final PendingAddArguments args = preparePendingAddArgs(requestCode, data, -1,
848 mPendingAddInfo);
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800849 if (isWorkspaceLocked()) {
Adam Cohendb364c32014-05-20 14:23:40 -0700850 sPendingAddItem = args;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800851 } else {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700852 completeAdd(args);
Adam Cohendb364c32014-05-20 14:23:40 -0700853 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
854 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800855 }
Adam Cohen00074722013-10-11 17:46:09 -0700856 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen689ff162014-05-08 17:27:56 -0700857 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700858 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800859 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800860 mDragLayer.clearAnimatedView();
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800861
862 }
863
864 @Override
865 protected void onActivityResult(
866 final int requestCode, final int resultCode, final Intent data) {
867 handleActivityResult(requestCode, resultCode, data);
868 if (mLauncherCallbacks != null) {
869 mLauncherCallbacks.onActivityResult(requestCode, resultCode, data);
870 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800871 }
872
Adam Cohendb364c32014-05-20 14:23:40 -0700873 private PendingAddArguments preparePendingAddArgs(int requestCode, Intent data, int
874 appWidgetId, ItemInfo info) {
875 PendingAddArguments args = new PendingAddArguments();
876 args.requestCode = requestCode;
877 args.intent = data;
878 args.container = info.container;
879 args.screenId = info.screenId;
880 args.cellX = info.cellX;
881 args.cellY = info.cellY;
882 args.appWidgetId = appWidgetId;
883 return args;
884 }
885
886 /**
887 * Check to see if a given screen id exists. If not, create it at the end, return the new id.
888 *
889 * @param screenId the screen id to check
890 * @return the new screen, or screenId if it exists
891 */
892 private long ensurePendingDropLayoutExists(long screenId) {
893 CellLayout dropLayout =
894 (CellLayout) mWorkspace.getScreenWithId(screenId);
895 if (dropLayout == null) {
896 // it's possible that the add screen was removed because it was
897 // empty and a re-bind occurred
898 mWorkspace.addExtraEmptyScreen();
899 return mWorkspace.commitExtraEmptyScreen();
900 } else {
901 return screenId;
902 }
903 }
904
Adam Cohen091440a2015-03-18 14:16:05 -0700905 @Thunk void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700906 CellLayout cellLayout =
Adam Cohendcd297f2013-06-18 13:13:40 -0700907 (CellLayout) mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800908 Runnable onCompleteRunnable = null;
909 int animationType = 0;
910
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700911 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800912 if (resultCode == RESULT_OK) {
913 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
914 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700915 mPendingAddWidgetInfo);
916 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800917 onCompleteRunnable = new Runnable() {
918 @Override
919 public void run() {
920 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700921 mPendingAddInfo.screenId, layout, null);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700922 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
923 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
Adam Cohened66b2b2012-01-23 17:28:51 -0800924 }
925 };
926 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800927 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800928 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
Adam Cohened66b2b2012-01-23 17:28:51 -0800929 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700930 if (mDragLayer.getAnimatedView() != null) {
931 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
932 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
933 animationType, boundWidget, true);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700934 } else if (onCompleteRunnable != null) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700935 // The animated view may be null in the case of a rotation during widget configuration
936 onCompleteRunnable.run();
937 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800938 }
939
940 @Override
Michael Jurkacd496d72013-04-11 11:32:45 -0700941 protected void onStop() {
942 super.onStop();
943 FirstFrameAnimatorHelper.setIsVisible(false);
Adam Cohen9211d422014-10-07 18:14:53 -0700944
945 if (mLauncherCallbacks != null) {
946 mLauncherCallbacks.onStop();
947 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700948 }
949
950 @Override
951 protected void onStart() {
952 super.onStart();
953 FirstFrameAnimatorHelper.setIsVisible(true);
Adam Cohen9211d422014-10-07 18:14:53 -0700954
955 if (mLauncherCallbacks != null) {
956 mLauncherCallbacks.onStart();
957 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700958 }
959
960 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800961 protected void onResume() {
Michael Jurka447bf842013-05-15 14:52:15 +0200962 long startTime = 0;
963 if (DEBUG_RESUME_TIME) {
964 startTime = System.currentTimeMillis();
Daniel Sandler924b9932013-06-12 00:38:25 -0400965 Log.v(TAG, "Launcher.onResume()");
Michael Jurka447bf842013-05-15 14:52:15 +0200966 }
Adam Cohen9211d422014-10-07 18:14:53 -0700967
968 if (mLauncherCallbacks != null) {
969 mLauncherCallbacks.preOnResume();
970 }
971
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800972 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700973
Winson Chung4a2afa32012-07-19 14:53:05 -0700974 // Restore the previous launcher state
Winson Chung75cc8252015-04-10 10:19:58 -0700975 if (mOnResumeState == State.WORKSPACE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700976 showWorkspace(false);
Winson Chungb745afb2015-03-02 11:51:23 -0800977 } else if (mOnResumeState == State.APPS) {
Winson Chung13eb5272015-05-11 16:30:13 -0700978 boolean launchedFromApp = (mWaitingForResume != null);
Winson Chung4ac30062015-05-08 17:34:17 -0700979 // Don't update the predicted apps if the user is returning to launcher in the apps
Winson Chung13eb5272015-05-11 16:30:13 -0700980 // view after launching an app, as they may be depending on the UI to be static to
981 // switch to another app, otherwise, if it was
Winson Chung4ac30062015-05-08 17:34:17 -0700982 showAppsView(false /* animated */, false /* resetListToTop */,
Winson Chung13eb5272015-05-11 16:30:13 -0700983 !launchedFromApp /* updatePredictedApps */);
Winson Chungb745afb2015-03-02 11:51:23 -0800984 } else if (mOnResumeState == State.WIDGETS) {
985 showWidgetsView(false, false);
Winson Chung4a2afa32012-07-19 14:53:05 -0700986 }
987 mOnResumeState = State.NONE;
988
Sunny Goyal4a6c6f32015-05-19 12:36:46 -0700989 // Background was set to gradient in onPause(), restore to transparent if in all apps.
Sunny Goyald70ad0d2015-05-26 17:20:07 -0700990 setWorkspaceBackground(mState == State.WORKSPACE ? WORKSPACE_BACKGROUND_GRADIENT
991 : WORKSPACE_BACKGROUND_TRANSPARENT);
Craig Mautner360310b2012-10-26 15:13:08 -0700992
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800993 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700994 if (mRestoring || mOnResumeNeedsLoad) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700995 setWorkspaceLoading(true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700996 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400997 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700998 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800999 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001000 if (mBindOnResumeCallbacks.size() > 0) {
Michael Jurkac402cd92013-05-20 15:49:32 +02001001 // We might have postponed some bind calls until onResume (see waitUntilResume) --
1002 // execute them here
1003 long startTimeCallbacks = 0;
1004 if (DEBUG_RESUME_TIME) {
1005 startTimeCallbacks = System.currentTimeMillis();
1006 }
1007
Michael Jurka1e2f4652013-07-08 18:03:46 -07001008 for (int i = 0; i < mBindOnResumeCallbacks.size(); i++) {
1009 mBindOnResumeCallbacks.get(i).run();
Michael Jurkac402cd92013-05-20 15:49:32 +02001010 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001011 mBindOnResumeCallbacks.clear();
Michael Jurkac402cd92013-05-20 15:49:32 +02001012 if (DEBUG_RESUME_TIME) {
1013 Log.d(TAG, "Time spent processing callbacks in onResume: " +
1014 (System.currentTimeMillis() - startTimeCallbacks));
1015 }
Michael Jurka447bf842013-05-15 14:52:15 +02001016 }
Michael Jurka54554252013-08-01 12:52:23 +02001017 if (mOnResumeCallbacks.size() > 0) {
1018 for (int i = 0; i < mOnResumeCallbacks.size(); i++) {
1019 mOnResumeCallbacks.get(i).run();
1020 }
1021 mOnResumeCallbacks.clear();
1022 }
Winson Chunge4e50662012-01-23 14:45:13 -08001023
1024 // Reset the pressed state of icons that were locked in the press state while activities
1025 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -08001026 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -08001027 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -08001028 mWaitingForResume.setStayPressed(false);
1029 }
Winson Chung82963d52013-10-09 11:20:57 -07001030
Adam Cohen06dff352012-06-01 17:17:08 -07001031 // It is possible that widgets can receive updates while launcher is not in the foreground.
1032 // Consequently, the widgets will be inflated in the orientation of the foreground activity
1033 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
1034 // orientation.
Adam Cohen3d509322012-06-06 14:10:04 -07001035 getWorkspace().reinflateWidgetsIfNecessary();
Sunny Goyal22235bc2015-04-03 09:23:43 -07001036 reinflateQSBIfNecessary();
Adam Cohenf9426d52012-06-04 17:26:21 -07001037
Michael Jurka447bf842013-05-15 14:52:15 +02001038 if (DEBUG_RESUME_TIME) {
1039 Log.d(TAG, "Time spent in onResume: " + (System.currentTimeMillis() - startTime));
1040 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001041
1042 if (mWorkspace.getCustomContentCallbacks() != null) {
1043 // If we are resuming and the custom content is the current page, we call onShow().
1044 // It is also poassible that onShow will instead be called slightly after first layout
1045 // if PagedView#setRestorePage was set to the custom content page in onCreate().
1046 if (mWorkspace.isOnOrMovingToCustomContent()) {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001047 mWorkspace.getCustomContentCallbacks().onShow(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001048 }
1049 }
Winson Chungcd99cd32015-04-29 11:03:24 -07001050 updateInteraction(Workspace.State.NORMAL, mWorkspace.getState());
Adam Cohen53805212013-10-01 10:39:23 -07001051 mWorkspace.onResume();
Sunny Goyale755d462014-07-22 13:48:29 -07001052
Sunny Goyal756adbc2015-04-16 15:20:51 -07001053 if (!isWorkspaceLoading()) {
1054 // Process any items that were added while Launcher was away.
1055 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
1056 }
Adam Cohen9211d422014-10-07 18:14:53 -07001057
1058 if (mLauncherCallbacks != null) {
1059 mLauncherCallbacks.onResume();
1060 }
Adam Cohen06dff352012-06-01 17:17:08 -07001061 }
1062
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001063 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001064 protected void onPause() {
Winson Chung997a9232013-07-24 15:33:46 -07001065 // Ensure that items added to Launcher are queued until Launcher returns
1066 InstallShortcutReceiver.enableInstallQueue();
1067
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001068 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001069 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -08001070 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -07001071 mDragController.resetLastGestureUpTime();
Adam Cohen6fecd412013-10-02 17:41:50 -07001072
1073 // We call onHide() aggressively. The custom content callbacks should be able to
1074 // debounce excess onHide calls.
1075 if (mWorkspace.getCustomContentCallbacks() != null) {
1076 mWorkspace.getCustomContentCallbacks().onHide();
1077 }
Romain Guycbb89e42009-06-08 15:52:54 -07001078
Adam Cohen9211d422014-10-07 18:14:53 -07001079 if (mLauncherCallbacks != null) {
1080 mLauncherCallbacks.onPause();
Adam Cohenbffe7452013-07-22 18:21:45 -07001081 }
Adam Cohenbffe7452013-07-22 18:21:45 -07001082 }
1083
1084 public interface CustomContentCallbacks {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001085 // Custom content is completely shown. {@code fromResume} indicates whether this was caused
1086 // by a onResume or by scrolling otherwise.
1087 public void onShow(boolean fromResume);
Adam Cohenbffe7452013-07-22 18:21:45 -07001088
1089 // Custom content is completely hidden
1090 public void onHide();
Adam Cohenc36fa5c2013-08-29 11:54:42 -07001091
1092 // Custom content scroll progress changed. From 0 (not showing) to 1 (fully showing).
1093 public void onScrollProgressChanged(float progress);
Jan-Willem Maarse2ff91c42014-07-10 15:58:12 -07001094
1095 // Indicates whether the user is allowed to scroll away from the custom content.
1096 boolean isScrollingAllowed();
Adam Cohenbffe7452013-07-22 18:21:45 -07001097 }
1098
Adam Cohenc2d6e892014-10-16 09:49:24 -07001099 public interface LauncherOverlay {
1100
1101 /**
1102 * Touch interaction leading to overscroll has begun
1103 */
1104 public void onScrollInteractionBegin();
1105
1106 /**
1107 * Touch interaction related to overscroll has ended
1108 */
1109 public void onScrollInteractionEnd();
1110
1111 /**
1112 * Scroll progress, between 0 and 100, when the user scrolls beyond the leftmost
1113 * screen (or in the case of RTL, the rightmost screen).
1114 */
1115 public void onScrollChange(int progress, boolean rtl);
1116
1117 /**
1118 * Screen has stopped scrolling
1119 */
1120 public void onScrollSettled();
1121
1122 /**
1123 * This method can be called by the Launcher in order to force the LauncherOverlay
1124 * to exit fully immersive mode.
1125 */
1126 public void forceExitFullImmersion();
1127 }
1128
Winson Chung0f785722015-04-08 10:27:49 -07001129 public interface LauncherAppsCallbacks {
1130 /**
1131 * Updates launcher to the available space that AllApps can take so as not to overlap with
1132 * any other views.
1133 */
Winson Chungef7f8742015-06-04 17:18:17 -07001134 @Deprecated
Winson Chung0f785722015-04-08 10:27:49 -07001135 public void onAllAppsBoundsChanged(Rect bounds);
1136
1137 /**
1138 * Called to dismiss all apps if it is showing.
1139 */
Winson Chungef7f8742015-06-04 17:18:17 -07001140 @Deprecated
Winson Chung0f785722015-04-08 10:27:49 -07001141 public void dismissAllApps();
Sunny Goyal5683f872015-05-29 14:54:40 -07001142
1143 /**
1144 * Sets the search manager to be used for app search.
1145 */
Winson Chungef7f8742015-06-04 17:18:17 -07001146 @Deprecated
1147 public void setSearchManager(Object manager);
Winson Chung0f785722015-04-08 10:27:49 -07001148 }
1149
Jun Mukai8af0cd82015-05-12 12:32:12 -07001150 public interface LauncherSearchCallbacks {
1151 /**
1152 * Called when the search overlay is shown.
1153 */
1154 public void onSearchOverlayOpened();
1155
1156 /**
1157 * Called when the search overlay is dismissed.
1158 */
1159 public void onSearchOverlayClosed();
1160 }
1161
Adam Cohenc2d6e892014-10-16 09:49:24 -07001162 public interface LauncherOverlayCallbacks {
1163 /**
1164 * This method indicates whether a call to {@link #enterFullImmersion()} will succeed,
1165 * however it doesn't modify any state within the launcher.
1166 */
1167 public boolean canEnterFullImmersion();
1168
1169 /**
1170 * Should be called to tell Launcher that the LauncherOverlay will take over interaction,
1171 * eg. by occupying the full screen and handling all touch events.
1172 *
1173 * @return true if Launcher allows the LauncherOverlay to become fully immersive. In this
1174 * case, Launcher will modify any necessary state and assumes the overlay is
1175 * handling all interaction. If false, the LauncherOverlay should cancel any
1176 *
1177 */
1178 public boolean enterFullImmersion();
1179
1180 /**
1181 * Must be called when exiting fully immersive mode. Indicates to Launcher that it has
1182 * full control over UI and state.
1183 */
1184 public void exitFullImmersion();
1185 }
1186
1187 class LauncherOverlayCallbacksImpl implements LauncherOverlayCallbacks {
1188
1189 @Override
1190 public boolean canEnterFullImmersion() {
1191 return mState == State.WORKSPACE;
1192 }
1193
1194 @Override
1195 public boolean enterFullImmersion() {
1196 if (mState == State.WORKSPACE) {
1197 // When fully immersed, disregard any touches which fall through.
1198 mDragLayer.setBlockTouch(true);
1199 return true;
1200 }
1201 return false;
1202 }
1203
1204 @Override
1205 public void exitFullImmersion() {
1206 mDragLayer.setBlockTouch(false);
1207 }
1208 }
1209
Jorim Jaggid017f882014-01-14 17:08:48 -08001210 protected boolean hasSettings() {
Adam Cohen9211d422014-10-07 18:14:53 -07001211 if (mLauncherCallbacks != null) {
1212 return mLauncherCallbacks.hasSettings();
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07001213 } else {
1214 // On devices with a locked orientation, we will at least have the allow rotation
1215 // setting.
1216 return !Utilities.isRotationAllowedForDevice(this);
Adam Cohen9211d422014-10-07 18:14:53 -07001217 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001218 }
1219
Adam Cohen9211d422014-10-07 18:14:53 -07001220 public void addToCustomContentPage(View customContent,
Adam Cohen53805212013-10-01 10:39:23 -07001221 CustomContentCallbacks callbacks, String description) {
1222 mWorkspace.addToCustomContentPage(customContent, callbacks, description);
Adam Cohen66a01fd2013-06-11 12:48:00 -07001223 }
1224
Adam Cohenedb40762013-07-18 16:45:45 -07001225 // The custom content needs to offset its content to account for the QSB
1226 public int getTopOffsetForCustomContent() {
1227 return mWorkspace.getPaddingTop();
1228 }
1229
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001230 @Override
1231 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001232 // Flag the loader to stop early before switching
Adam Cohen1a85c582014-09-30 09:48:49 -07001233 if (mModel.isCurrentCallbacks(this)) {
1234 mModel.stopLoader();
1235 }
Hyunyoung Song3f471442015-04-08 19:01:34 -07001236 //TODO(hyunyoungs): stop the widgets loader when there is a rotation.
1237
Romain Guy13c2e7b2010-03-10 19:45:00 -08001238 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001239 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001240
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001241 // We can't hide the IME if it was forced open. So don't bother
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001242 @Override
1243 public void onWindowFocusChanged(boolean hasFocus) {
1244 super.onWindowFocusChanged(hasFocus);
Adam Cohened307df2013-10-02 09:37:31 -07001245 mHasFocus = hasFocus;
Adam Cohen9211d422014-10-07 18:14:53 -07001246
1247 if (mLauncherCallbacks != null) {
1248 mLauncherCallbacks.onWindowFocusChanged(hasFocus);
1249 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001250 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001251
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001252 private boolean acceptFilter() {
1253 final InputMethodManager inputManager = (InputMethodManager)
1254 getSystemService(Context.INPUT_METHOD_SERVICE);
1255 return !inputManager.isFullscreenMode();
1256 }
1257
1258 @Override
1259 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -07001260 final int uniChar = event.getUnicodeChar();
1261 final boolean handled = super.onKeyDown(keyCode, event);
1262 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
1263 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001264 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
1265 keyCode, event);
1266 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001267 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -07001268 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -07001269 // showSearchDialog()
1270 // If there are multiple keystrokes before the search dialog takes focus,
1271 // onSearchRequested() will be called for every keystroke,
1272 // but it is idempotent, so it's fine.
1273 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001274 }
1275 }
1276
Joe Onorato8a9625e2010-01-28 15:55:35 -08001277 // Eat the long press event so the keyboard doesn't come up.
1278 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
1279 return true;
1280 }
1281
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001282 return handled;
1283 }
1284
Karl Rosaen138a0412009-04-23 19:00:21 -07001285 private String getTypedText() {
1286 return mDefaultKeySsb.toString();
1287 }
1288
1289 private void clearTypedText() {
1290 mDefaultKeySsb.clear();
1291 mDefaultKeySsb.clearSpans();
1292 Selection.setSelection(mDefaultKeySsb, 0);
1293 }
1294
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001295 /**
Michael Jurka883f55b2010-10-21 15:47:14 -07001296 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
1297 * State
1298 */
1299 private static State intToState(int stateOrdinal) {
1300 State state = State.WORKSPACE;
1301 final State[] stateValues = State.values();
1302 for (int i = 0; i < stateValues.length; i++) {
1303 if (stateValues[i].ordinal() == stateOrdinal) {
1304 state = stateValues[i];
1305 break;
1306 }
1307 }
1308 return state;
1309 }
1310
1311 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001312 * Restores the previous state, if it exists.
1313 *
1314 * @param savedState The previous state.
1315 */
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001316 @SuppressWarnings("unchecked")
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001317 private void restoreState(Bundle savedState) {
1318 if (savedState == null) {
1319 return;
1320 }
1321
Michael Jurka883f55b2010-10-21 15:47:14 -07001322 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungb745afb2015-03-02 11:51:23 -08001323 if (state == State.APPS || state == State.WIDGETS) {
1324 mOnResumeState = state;
Joe Onorato3a8820b2009-11-10 15:06:42 -08001325 }
1326
Adam Cohen21cd0022013-10-09 18:57:02 -07001327 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN,
1328 PagedView.INVALID_RESTORE_PAGE);
1329 if (currentScreen != PagedView.INVALID_RESTORE_PAGE) {
Winson Chung8c87cd82013-07-23 16:20:10 -07001330 mWorkspace.setRestorePage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001331 }
1332
Winson Chung3d503fb2011-07-13 17:25:49 -07001333 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
Adam Cohendcd297f2013-06-18 13:13:40 -07001334 final long pendingAddScreen = savedState.getLong(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001335
Winson Chung3d503fb2011-07-13 17:25:49 -07001336 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
1337 mPendingAddInfo.container = pendingAddContainer;
Adam Cohendcd297f2013-06-18 13:13:40 -07001338 mPendingAddInfo.screenId = pendingAddScreen;
Winson Chung3d503fb2011-07-13 17:25:49 -07001339 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
1340 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001341 mPendingAddInfo.spanX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_X);
1342 mPendingAddInfo.spanY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y);
Adam Cohenb823ae42015-03-27 18:07:52 -07001343 AppWidgetProviderInfo info = savedState.getParcelable(
1344 RUNTIME_STATE_PENDING_ADD_WIDGET_INFO);
Sunny Goyalf044bb12015-05-12 13:30:07 -07001345 mPendingAddWidgetInfo = info == null ?
1346 null : LauncherAppWidgetProviderInfo.fromProviderInfo(this, info);
1347
Adam Cohen4637b5a2013-11-04 18:21:24 -08001348 mPendingAddWidgetId = savedState.getInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID);
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001349 setWaitingForResult(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001350 mRestoring = true;
1351 }
1352
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001353 mItemIdToViewId = (HashMap<Integer, Integer>)
1354 savedState.getSerializable(RUNTIME_STATE_VIEW_IDS);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001355 }
1356
1357 /**
1358 * Finds all the views we need and configure them properly.
1359 */
1360 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -07001361 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -04001362
Craig Mautner360310b2012-10-26 15:13:08 -07001363 mLauncherView = findViewById(R.id.launcher);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001364 mFocusHandler = (FocusIndicatorView) findViewById(R.id.focus_indicator);
Winson Chung4c98d922011-05-31 16:50:48 -07001365 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
1366 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Anjali Koppalf5d29132014-02-28 13:33:27 -08001367 mWorkspace.setPageSwitchListener(this);
Winson Chunga6945242014-01-08 14:04:34 -08001368 mPageIndicators = mDragLayer.findViewById(R.id.page_indicator);
Craig Mautner360310b2012-10-26 15:13:08 -07001369
John Spurlock77e1f472013-09-11 10:09:51 -04001370 mLauncherView.setSystemUiVisibility(
1371 View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
Craig Mautner360310b2012-10-26 15:13:08 -07001372 mWorkspaceBackgroundDrawable = getResources().getDrawable(R.drawable.workspace_bg);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001373
Winson Chung4c98d922011-05-31 16:50:48 -07001374 // Setup the drag layer
1375 mDragLayer.setup(this, dragController);
1376
Winson Chung3d503fb2011-07-13 17:25:49 -07001377 // Setup the hotseat
1378 mHotseat = (Hotseat) findViewById(R.id.hotseat);
1379 if (mHotseat != null) {
Winson Chung11a1a532013-09-13 11:14:45 -07001380 mHotseat.setOnLongClickListener(this);
Winson Chung3d503fb2011-07-13 17:25:49 -07001381 }
1382
Jorim Jaggid017f882014-01-14 17:08:48 -08001383 mOverviewPanel = (ViewGroup) findViewById(R.id.overview_panel);
Adam Cohen61f560d2013-09-30 15:58:20 -07001384 View widgetButton = findViewById(R.id.widget_button);
1385 widgetButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001386 @Override
1387 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001388 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001389 onClickAddWidgetButton(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001390 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001391 }
1392 });
Adam Cohen61f560d2013-09-30 15:58:20 -07001393 widgetButton.setOnTouchListener(getHapticFeedbackTouchListener());
1394
1395 View wallpaperButton = findViewById(R.id.wallpaper_button);
1396 wallpaperButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001397 @Override
1398 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001399 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001400 onClickWallpaperPicker(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001401 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001402 }
1403 });
Adam Cohen61f560d2013-09-30 15:58:20 -07001404 wallpaperButton.setOnTouchListener(getHapticFeedbackTouchListener());
1405
1406 View settingsButton = findViewById(R.id.settings_button);
Jorim Jaggid017f882014-01-14 17:08:48 -08001407 if (hasSettings()) {
1408 settingsButton.setOnClickListener(new OnClickListener() {
1409 @Override
1410 public void onClick(View arg0) {
1411 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001412 onClickSettingsButton(arg0);
Jorim Jaggid017f882014-01-14 17:08:48 -08001413 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08001414 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001415 });
1416 settingsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1417 } else {
1418 settingsButton.setVisibility(View.GONE);
Jorim Jaggid017f882014-01-14 17:08:48 -08001419 }
1420
Adam Cohendbdff6b2013-09-18 19:09:15 -07001421 mOverviewPanel.setAlpha(0f);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001422
Winson Chung4c98d922011-05-31 16:50:48 -07001423 // Setup the workspace
1424 mWorkspace.setHapticFeedbackEnabled(false);
1425 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -07001426 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -07001427 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001428
Winson Chungf0ea4d32011-06-06 14:27:16 -07001429 // Get the search/delete bar
Adam Cohen24ce0b32014-01-14 16:18:14 -08001430 mSearchDropTargetBar = (SearchDropTargetBar)
1431 mDragLayer.findViewById(R.id.search_drop_target_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001432
Winson Chungef7f8742015-06-04 17:18:17 -07001433 // Setup Apps and Widgets
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001434 mAppsView = (AllAppsContainerView) findViewById(R.id.apps_view);
Hyunyoung Song3f471442015-04-08 19:01:34 -07001435 mWidgetsView = (WidgetsContainerView) findViewById(R.id.widgets_view);
Winson Chungef7f8742015-06-04 17:18:17 -07001436 if (mLauncherCallbacks != null && mLauncherCallbacks.getAllAppsSearchBarController() != null) {
1437 mAppsView.setSearchBarController(mLauncherCallbacks.getAllAppsSearchBarController());
1438 } else {
1439 mAppsView.setSearchBarController(mAppsView.newDefaultAppSearchController());
1440 }
Craig Mautner360310b2012-10-26 15:13:08 -07001441
Winson Chung3d503fb2011-07-13 17:25:49 -07001442 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -07001443 dragController.setDragScoller(mWorkspace);
1444 dragController.setScrollView(mDragLayer);
1445 dragController.setMoveTarget(mWorkspace);
1446 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -07001447 if (mSearchDropTargetBar != null) {
1448 mSearchDropTargetBar.setup(this, dragController);
Adam Cohenb0df1b02015-03-18 22:21:40 -07001449 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Michael Jurkae0f5a612011-02-07 16:45:41 -08001450 }
Daniel Sandler924b9932013-06-12 00:38:25 -04001451
Daniel Sandlera127b7a2013-06-17 14:25:46 -04001452 if (getResources().getBoolean(R.bool.debug_memory_enabled)) {
Daniel Sandler924b9932013-06-12 00:38:25 -04001453 Log.v(TAG, "adding WeightWatcher");
Adam Cohen39a06042013-07-19 14:30:12 -07001454 mWeightWatcher = new WeightWatcher(this);
1455 mWeightWatcher.setAlpha(0.5f);
1456 ((FrameLayout) mLauncherView).addView(mWeightWatcher,
Daniel Sandler924b9932013-06-12 00:38:25 -04001457 new FrameLayout.LayoutParams(
1458 FrameLayout.LayoutParams.MATCH_PARENT,
Daniel Sandlerb9eb2862013-06-14 20:17:30 -04001459 FrameLayout.LayoutParams.WRAP_CONTENT,
Daniel Sandler924b9932013-06-12 00:38:25 -04001460 Gravity.BOTTOM)
1461 );
Adam Cohen39a06042013-07-19 14:30:12 -07001462
1463 boolean show = shouldShowWeightWatcher();
1464 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
Daniel Sandler924b9932013-06-12 00:38:25 -04001465 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001466 }
1467
1468 /**
Anjali Koppal5ad44842014-03-10 20:34:39 -07001469 * Sets the all apps button. This method is called from {@link Hotseat}.
1470 */
1471 public void setAllAppsButton(View allAppsButton) {
1472 mAllAppsButton = allAppsButton;
1473 }
1474
1475 public View getAllAppsButton() {
1476 return mAllAppsButton;
1477 }
1478
1479 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001480 * Creates a view representing a shortcut.
1481 *
1482 * @param info The data structure describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001483 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001484 View createShortcut(ShortcutInfo info) {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001485 return createShortcut((ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001486 }
1487
1488 /**
1489 * Creates a view representing a shortcut inflated from the specified resource.
1490 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001491 * @param parent The group the shortcut belongs to.
1492 * @param info The data structure describing the shortcut.
1493 *
1494 * @return A View inflated from layoutResId.
1495 */
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001496 public View createShortcut(ViewGroup parent, ShortcutInfo info) {
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001497 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(R.layout.app_icon,
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001498 parent, false);
1499 favorite.applyFromShortcutInfo(info, mIconCache);
1500 favorite.setCompoundDrawablePadding(mDeviceProfile.iconDrawablePaddingPx);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001501 favorite.setOnClickListener(this);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001502 favorite.setOnFocusChangeListener(mFocusHandler);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001503 return favorite;
1504 }
1505
1506 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001507 * Add a shortcut to the workspace.
1508 *
1509 * @param data The intent describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001510 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001511 private void completeAddShortcut(Intent data, long container, long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07001512 int cellY) {
1513 int[] cellXY = mTmpAddItemCellCoordinates;
1514 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohendcd297f2013-06-18 13:13:40 -07001515 CellLayout layout = getCellLayout(container, screenId);
Romain Guycbb89e42009-06-08 15:52:54 -07001516
Sunny Goyal5c97f512015-05-19 16:03:28 -07001517 ShortcutInfo info = InstallShortcutReceiver.fromShortcutIntent(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
Sunny Goyal5c97f512015-05-19 16:03:28 -07001523 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001524 // First we check if we already know the exact location where we want to add this item.
1525 if (cellX >= 0 && cellY >= 0) {
1526 cellXY[0] = cellX;
1527 cellXY[1] = cellY;
1528 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001529
1530 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001531 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001532 true, null,null)) {
1533 return;
1534 }
1535 DragObject dragObject = new DragObject();
1536 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001537 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1538 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001539 return;
1540 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001541 } else if (touchXY != null) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08001542 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001543 int[] result = layout.findNearestVacantArea(touchXY[0], touchXY[1], 1, 1, cellXY);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001544 foundCellSpan = (result != null);
1545 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001546 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001547 }
1548
1549 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001550 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001551 return;
1552 }
1553
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001554 LauncherModel.addItemToDatabase(this, info, container, screenId, cellXY[0], cellXY[1]);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001555
1556 if (!mRestoring) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001557 mWorkspace.addInScreen(view, container, screenId, cellXY[0], cellXY[1], 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07001558 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001559 }
1560 }
1561
Adam Cohen2e6da152015-05-06 11:42:25 -07001562 private int[] getSpanForWidget(ComponentName component, int minWidth, int minHeight) {
1563 Rect padding = AppWidgetHostView.getDefaultPaddingForWidget(this, 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;
Adam Cohen2e6da152015-05-06 11:42:25 -07001568 return CellLayout.rectToCell(this, requiredWidth, requiredHeight, null);
Adam Cohenf814aa02011-09-01 13:48:05 -07001569 }
1570
Adam Cohen2e6da152015-05-06 11:42:25 -07001571 public int[] getSpanForWidget(AppWidgetProviderInfo info) {
1572 return getSpanForWidget(info.provider, info.minWidth, info.minHeight);
Adam Cohenf814aa02011-09-01 13:48:05 -07001573 }
1574
Adam Cohen2e6da152015-05-06 11:42:25 -07001575 public int[] getMinSpanForWidget(AppWidgetProviderInfo info) {
1576 return getSpanForWidget(info.provider, info.minResizeWidth, info.minResizeHeight);
Adam Cohend41fbf52012-02-16 23:53:59 -08001577 }
1578
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001579 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001580 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001581 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001582 * @param appWidgetId The app widget id
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001583 */
Adam Cohen091440a2015-03-18 14:16:05 -07001584 @Thunk void completeAddAppWidget(int appWidgetId, long container, long screenId,
Adam Cohen59400422014-03-05 18:07:04 -08001585 AppWidgetHostView hostView, LauncherAppWidgetProviderInfo appWidgetInfo) {
1586
1587 ItemInfo info = mPendingAddInfo;
Adam Cohened66b2b2012-01-23 17:28:51 -08001588 if (appWidgetInfo == null) {
Adam Cohen59400422014-03-05 18:07:04 -08001589 appWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(this,
1590 mAppWidgetManager.getAppWidgetInfo(appWidgetId));
Adam Cohened66b2b2012-01-23 17:28:51 -08001591 }
Romain Guycbb89e42009-06-08 15:52:54 -07001592
Adam Cohen59400422014-03-05 18:07:04 -08001593 if (appWidgetInfo.isCustomWidget) {
1594 appWidgetId = LauncherAppWidgetInfo.CUSTOM_WIDGET_ID;
Michael Jurkaa63c4522010-08-19 13:52:27 -07001595 }
1596
Adam Cohen59400422014-03-05 18:07:04 -08001597 LauncherAppWidgetInfo launcherInfo;
1598 launcherInfo = new LauncherAppWidgetInfo(appWidgetId, appWidgetInfo.provider);
1599 launcherInfo.spanX = info.spanX;
1600 launcherInfo.spanY = info.spanY;
1601 launcherInfo.minSpanX = info.minSpanX;
1602 launcherInfo.minSpanY = info.minSpanY;
Sunny Goyalffe83f12014-08-14 17:39:34 -07001603 launcherInfo.user = mAppWidgetManager.getUser(appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001604
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001605 LauncherModel.addItemToDatabase(this, launcherInfo,
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001606 container, screenId, info.cellX, info.cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001607
1608 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001609 if (hostView == null) {
1610 // Perform actual inflation because we're live
Adam Cohen59400422014-03-05 18:07:04 -08001611 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId,
1612 appWidgetInfo);
Adam Cohened66b2b2012-01-23 17:28:51 -08001613 } else {
1614 // The AppWidgetHostView has already been inflated and instantiated
1615 launcherInfo.hostView = hostView;
1616 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001617 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001618 launcherInfo.hostView.setVisibility(View.VISIBLE);
Adam Cohenaaa5c212012-10-05 18:14:31 -07001619 launcherInfo.notifyWidgetSizeChanged(this);
1620
Adam Cohen59400422014-03-05 18:07:04 -08001621 mWorkspace.addInScreen(launcherInfo.hostView, container, screenId, info.cellX,
1622 info.cellY, launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001623
1624 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001625 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001626 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001627 }
Romain Guycbb89e42009-06-08 15:52:54 -07001628
Adam Cohended9f8d2010-11-03 13:25:16 -07001629 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1630 @Override
1631 public void onReceive(Context context, Intent intent) {
1632 final String action = intent.getAction();
1633 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1634 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001635 mDragLayer.clearAllResizeFrames();
Winson Chungb745afb2015-03-02 11:51:23 -08001636 updateAutoAdvanceState();
Winson Chung337cd9d2011-03-30 10:39:30 -07001637
Winson Chungc100e8e2011-08-09 16:02:43 -07001638 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001639 // processing a multi-step drop
Hyunyoung Song3f471442015-04-08 19:01:34 -07001640 if (mAppsView != null && mWidgetsView != null &&
Winson Chungb745afb2015-03-02 11:51:23 -08001641 mPendingAddInfo.container == ItemInfo.NO_ID) {
Adam Cohened307df2013-10-02 09:37:31 -07001642 showWorkspace(false);
Winson Chung785d2eb2011-04-14 16:08:02 -07001643 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001644 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1645 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08001646 updateAutoAdvanceState();
Dan Sandlerd5024042014-01-09 15:01:33 -05001647 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.DELETE_DATABASE.equals(action)) {
1648 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001649 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001650 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE);
1651 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.MIGRATE_DATABASE.equals(action)) {
1652 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001653 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001654 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE
1655 | LauncherModel.LOADER_FLAG_MIGRATE_SHORTCUTS);
Adam Cohended9f8d2010-11-03 13:25:16 -07001656 }
1657 }
1658 };
1659
1660 @Override
1661 public void onAttachedToWindow() {
1662 super.onAttachedToWindow();
1663
1664 // Listen for broadcasts related to user-presence
1665 final IntentFilter filter = new IntentFilter();
1666 filter.addAction(Intent.ACTION_SCREEN_OFF);
1667 filter.addAction(Intent.ACTION_USER_PRESENT);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001668 // For handling managed profiles
Dan Sandlerd5024042014-01-09 15:01:33 -05001669 if (ENABLE_DEBUG_INTENTS) {
1670 filter.addAction(DebugIntents.DELETE_DATABASE);
1671 filter.addAction(DebugIntents.MIGRATE_DATABASE);
1672 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001673 registerReceiver(mReceiver, filter);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001674 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Adam Cohen0b395352014-06-09 22:54:36 +00001675 setupTransparentSystemBarsForLmp();
Adam Cohend113e0c2010-11-11 10:48:05 -08001676 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001677 mVisible = true;
1678 }
1679
Adam Cohen0b395352014-06-09 22:54:36 +00001680 /**
1681 * Sets up transparent navigation and status bars in LMP.
1682 * This method is a no-op for other platform versions.
1683 */
Sunny Goyald0091012015-01-20 15:55:34 -08001684 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Adam Cohen0b395352014-06-09 22:54:36 +00001685 private void setupTransparentSystemBarsForLmp() {
Kenny Guyd794a3f2014-09-16 15:17:58 +01001686 if (Utilities.isLmpOrAbove()) {
Sunny Goyald0091012015-01-20 15:55:34 -08001687 Window window = getWindow();
1688 window.getAttributes().systemUiVisibility |=
1689 (View.SYSTEM_UI_FLAG_LAYOUT_STABLE
1690 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
1691 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
1692 window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS
1693 | WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
1694 window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
1695 window.setStatusBarColor(Color.TRANSPARENT);
1696 window.setNavigationBarColor(Color.TRANSPARENT);
Adam Cohen0b395352014-06-09 22:54:36 +00001697 }
1698 }
1699
Adam Cohended9f8d2010-11-03 13:25:16 -07001700 @Override
1701 public void onDetachedFromWindow() {
1702 super.onDetachedFromWindow();
1703 mVisible = false;
1704
Adam Cohend113e0c2010-11-11 10:48:05 -08001705 if (mAttached) {
1706 unregisterReceiver(mReceiver);
1707 mAttached = false;
1708 }
Winson Chungb745afb2015-03-02 11:51:23 -08001709 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001710 }
1711
1712 public void onWindowVisibilityChanged(int visibility) {
1713 mVisible = visibility == View.VISIBLE;
Winson Chungb745afb2015-03-02 11:51:23 -08001714 updateAutoAdvanceState();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001715 // The following code used to be in onResume, but it turns out onResume is called when
1716 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1717 // is a more appropriate event to handle
1718 if (mVisible) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001719 if (!mWorkspaceLoading) {
1720 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001721 // We want to let Launcher draw itself at least once before we force it to build
1722 // layers on all the workspace pages, so that transitioning to Launcher from other
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001723 // apps is nice and speedy.
1724 observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001725 private boolean mStarted = false;
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001726 public void onDraw() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001727 if (mStarted) return;
1728 mStarted = true;
Michael Jurka6ee21d22012-02-21 18:20:27 -08001729 // We delay the layer building a bit in order to give
1730 // other message processing a time to run. In particular
1731 // this avoids a delay in hiding the IME if it was
1732 // currently shown, because doing that may involve
1733 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001734 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurkadf96add2013-04-03 16:25:02 -07001735 final ViewTreeObserver.OnDrawListener listener = this;
1736 mWorkspace.post(new Runnable() {
1737 public void run() {
Michael Jurkab68e03a2013-04-11 11:36:41 -07001738 if (mWorkspace != null &&
1739 mWorkspace.getViewTreeObserver() != null) {
1740 mWorkspace.getViewTreeObserver().
1741 removeOnDrawListener(listener);
1742 }
Michael Jurkadf96add2013-04-03 16:25:02 -07001743 }
1744 });
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001745 return;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001746 }
1747 });
1748 }
1749 clearTypedText();
1750 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001751 }
1752
Adam Cohen091440a2015-03-18 14:16:05 -07001753 @Thunk void sendAdvanceMessage(long delay) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001754 mHandler.removeMessages(ADVANCE_MSG);
1755 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1756 mHandler.sendMessageDelayed(msg, delay);
1757 mAutoAdvanceSentTime = System.currentTimeMillis();
1758 }
1759
Adam Cohen091440a2015-03-18 14:16:05 -07001760 @Thunk void updateAutoAdvanceState() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001761 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1762 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1763 mAutoAdvanceRunning = autoAdvanceRunning;
1764 if (autoAdvanceRunning) {
1765 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1766 sendAdvanceMessage(delay);
1767 } else {
1768 if (!mWidgetsToAdvance.isEmpty()) {
1769 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1770 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1771 }
1772 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001773 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001774 }
1775 }
1776 }
1777
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001778 @Thunk final Handler mHandler = new Handler(new Handler.Callback() {
1779
Adam Cohended9f8d2010-11-03 13:25:16 -07001780 @Override
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001781 public boolean handleMessage(Message msg) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001782 if (msg.what == ADVANCE_MSG) {
1783 int i = 0;
1784 for (View key: mWidgetsToAdvance.keySet()) {
1785 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1786 final int delay = mAdvanceStagger * i;
1787 if (v instanceof Advanceable) {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001788 mHandler.postDelayed(new Runnable() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001789 public void run() {
1790 ((Advanceable) v).advance();
1791 }
1792 }, delay);
1793 }
1794 i++;
1795 }
1796 sendAdvanceMessage(mAdvanceInterval);
1797 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001798 return true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001799 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001800 });
Adam Cohended9f8d2010-11-03 13:25:16 -07001801
1802 void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001803 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001804 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1805 if (v instanceof Advanceable) {
1806 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001807 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Winson Chungb745afb2015-03-02 11:51:23 -08001808 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001809 }
1810 }
1811
1812 void removeWidgetToAutoAdvance(View hostView) {
1813 if (mWidgetsToAdvance.containsKey(hostView)) {
1814 mWidgetsToAdvance.remove(hostView);
Winson Chungb745afb2015-03-02 11:51:23 -08001815 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001816 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001817 }
1818
Joe Onorato9c1289c2009-08-17 11:03:03 -04001819 public void removeAppWidget(LauncherAppWidgetInfo launcherInfo) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001820 removeWidgetToAutoAdvance(launcherInfo.hostView);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001821 launcherInfo.hostView = null;
1822 }
1823
Hyunyoung Song3f471442015-04-08 19:01:34 -07001824 public void showOutOfSpaceMessage(boolean isHotseatLayout) {
Winson Chung93eef082012-03-23 15:59:27 -07001825 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1826 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001827 }
1828
Winson Chunga6945242014-01-08 14:04:34 -08001829 public DragLayer getDragLayer() {
1830 return mDragLayer;
1831 }
1832
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001833 public AllAppsContainerView getAppsView() {
Winson Chungb745afb2015-03-02 11:51:23 -08001834 return mAppsView;
1835 }
1836
Hyunyoung Song3f471442015-04-08 19:01:34 -07001837 public WidgetsContainerView getWidgetsView() {
1838 return mWidgetsView;
Winson Chungb745afb2015-03-02 11:51:23 -08001839 }
1840
Winson Chunga6945242014-01-08 14:04:34 -08001841 public Workspace getWorkspace() {
1842 return mWorkspace;
1843 }
1844
1845 public Hotseat getHotseat() {
1846 return mHotseat;
1847 }
1848
Jorim Jaggid017f882014-01-14 17:08:48 -08001849 public ViewGroup getOverviewPanel() {
Winson Chunga6945242014-01-08 14:04:34 -08001850 return mOverviewPanel;
1851 }
1852
1853 public SearchDropTargetBar getSearchBar() {
1854 return mSearchDropTargetBar;
1855 }
1856
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001857 public LauncherAppWidgetHost getAppWidgetHost() {
1858 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001859 }
Romain Guycbb89e42009-06-08 15:52:54 -07001860
Winson Chunga9abd0e2010-10-27 17:18:37 -07001861 public LauncherModel getModel() {
1862 return mModel;
1863 }
1864
Winson Chunga6945242014-01-08 14:04:34 -08001865 protected SharedPreferences getSharedPrefs() {
1866 return mSharedPrefs;
1867 }
1868
Adam Cohen2e6da152015-05-06 11:42:25 -07001869 public DeviceProfile getDeviceProfile() {
1870 return mDeviceProfile;
1871 }
1872
Bjorn Bringertc459e522013-06-07 19:36:01 +01001873 public void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001874 getWindow().closeAllPanels();
1875
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001876 // Whatever we were doing is hereby canceled.
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001877 setWaitingForResult(false);
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001878 }
1879
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001880 @Override
1881 protected void onNewIntent(Intent intent) {
Michael Jurka447bf842013-05-15 14:52:15 +02001882 long startTime = 0;
1883 if (DEBUG_RESUME_TIME) {
1884 startTime = System.currentTimeMillis();
1885 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001886 super.onNewIntent(intent);
1887
1888 // Close the menu
1889 if (Intent.ACTION_MAIN.equals(intent.getAction())) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001890 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001891 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001892
Adam Cohened307df2013-10-02 09:37:31 -07001893 final boolean alreadyOnHome = mHasFocus && ((intent.getFlags() &
1894 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1895 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
Michael Jurka01f0ed42010-08-20 00:41:17 -07001896
Adam Cohen6fecd412013-10-02 17:41:50 -07001897 if (mWorkspace == null) {
1898 // Can be cases where mWorkspace is null, this prevents a NPE
1899 return;
1900 }
1901 Folder openFolder = mWorkspace.getOpenFolder();
1902 // In all these cases, only animate if we're already on home
1903 mWorkspace.exitWidgetResizeMode();
Adam Cohen9211d422014-10-07 18:14:53 -07001904
1905 boolean moveToDefaultScreen = mLauncherCallbacks != null ?
1906 mLauncherCallbacks.shouldMoveToDefaultScreenOnHomeIntent() : true;
Adam Cohen6fecd412013-10-02 17:41:50 -07001907 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
Adam Cohen9211d422014-10-07 18:14:53 -07001908 openFolder == null && moveToDefaultScreen) {
Adam Cohen6fecd412013-10-02 17:41:50 -07001909 mWorkspace.moveToDefaultScreen(true);
Winson Chung4a2afa32012-07-19 14:53:05 -07001910 }
Romain Guy1dd3a072009-07-16 13:21:01 -07001911
Adam Cohen6fecd412013-10-02 17:41:50 -07001912 closeFolder();
1913 exitSpringLoadedDragMode();
1914
1915 // If we are already on home, then just animate back to the workspace,
1916 // otherwise, just wait until onResume to set the state back to Workspace
1917 if (alreadyOnHome) {
Adam Cohened307df2013-10-02 09:37:31 -07001918 showWorkspace(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001919 } else {
1920 mOnResumeState = State.WORKSPACE;
1921 }
1922
1923 final View v = getWindow().peekDecorView();
1924 if (v != null && v.getWindowToken() != null) {
1925 InputMethodManager imm = (InputMethodManager)getSystemService(
1926 INPUT_METHOD_SERVICE);
1927 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1928 }
1929
Winson Chungb745afb2015-03-02 11:51:23 -08001930 // Reset the apps view
1931 if (!alreadyOnHome && mAppsView != null) {
1932 mAppsView.scrollToTop();
1933 }
1934
Hyunyoung Song3f471442015-04-08 19:01:34 -07001935 // Reset the widgets view
1936 if (!alreadyOnHome && mWidgetsView != null) {
1937 mWidgetsView.scrollToTop();
Adam Cohen6fecd412013-10-02 17:41:50 -07001938 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001939
Adam Cohen9211d422014-10-07 18:14:53 -07001940 if (mLauncherCallbacks != null) {
1941 mLauncherCallbacks.onHomeIntent();
1942 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001943 }
Adam Cohened307df2013-10-02 09:37:31 -07001944
Michael Jurka447bf842013-05-15 14:52:15 +02001945 if (DEBUG_RESUME_TIME) {
1946 Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime));
1947 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001948
Adam Cohen9211d422014-10-07 18:14:53 -07001949 if (mLauncherCallbacks != null) {
1950 mLauncherCallbacks.onNewIntent(intent);
1951 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001952 }
1953
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001954 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001955 public void onRestoreInstanceState(Bundle state) {
1956 super.onRestoreInstanceState(state);
1957 for (int page: mSynchronouslyBoundPages) {
1958 mWorkspace.restoreInstanceStateForChild(page);
1959 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001960 }
1961
1962 @Override
1963 protected void onSaveInstanceState(Bundle outState) {
Adam Cohen21cd0022013-10-09 18:57:02 -07001964 if (mWorkspace.getChildCount() > 0) {
Winson Chung9b9fb962013-11-15 15:39:34 -08001965 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN,
1966 mWorkspace.getCurrentPageOffsetFromCustomContent());
Adam Cohen21cd0022013-10-09 18:57:02 -07001967 }
Adam Cohen95bb8002011-07-03 23:40:28 -07001968 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001969
Michael Jurka883f55b2010-10-21 15:47:14 -07001970 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001971 // We close any open folder since it will not be re-opened, and we need to make sure
1972 // this state is reflected.
1973 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001974
Adam Cohendcd297f2013-06-18 13:13:40 -07001975 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screenId > -1 &&
Winson Chung3d503fb2011-07-13 17:25:49 -07001976 mWaitingForResult) {
1977 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
Adam Cohendcd297f2013-06-18 13:13:40 -07001978 outState.putLong(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screenId);
Winson Chung3d503fb2011-07-13 17:25:49 -07001979 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1980 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001981 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_X, mPendingAddInfo.spanX);
1982 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y, mPendingAddInfo.spanY);
1983 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
Adam Cohen4637b5a2013-11-04 18:21:24 -08001984 outState.putInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID, mPendingAddWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001985 }
1986
Hyunyoung Song3f471442015-04-08 19:01:34 -07001987 // Save the current widgets tray?
1988 // TODO(hyunyoungs)
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001989 outState.putSerializable(RUNTIME_STATE_VIEW_IDS, mItemIdToViewId);
Adam Cohen9211d422014-10-07 18:14:53 -07001990
1991 if (mLauncherCallbacks != null) {
1992 mLauncherCallbacks.onSaveInstanceState(outState);
1993 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001994 }
1995
1996 @Override
1997 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001998 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001999
Winson Chunge7a03942011-08-05 15:05:12 -07002000 // Remove all pending runnables
2001 mHandler.removeMessages(ADVANCE_MSG);
2002 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07002003 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07002004
Winson Chungcd2b0142011-06-08 16:02:26 -07002005 // Stop callbacks from LauncherModel
Daniel Sandlercc8befa2013-06-11 14:45:48 -04002006 LauncherAppState app = (LauncherAppState.getInstance());
Adam Cohen1a85c582014-09-30 09:48:49 -07002007
2008 // It's possible to receive onDestroy after a new Launcher activity has
2009 // been created. In this case, don't interfere with the new Launcher.
2010 if (mModel.isCurrentCallbacks(this)) {
2011 mModel.stopLoader();
2012 app.setLauncher(null);
2013 }
Winson Chungcd2b0142011-06-08 16:02:26 -07002014
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002015 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07002016 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002017 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002018 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002019 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002020 mAppWidgetHost = null;
2021
2022 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002023
2024 TextKeyListener.getInstance().release();
2025
Joe Onorato34a0e1b2009-12-14 17:44:51 -08002026 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002027
Adam Cohenaccf3bf2012-04-30 16:07:43 -07002028 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002029 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
Adam Cohend552dd92013-11-26 12:13:11 -08002030 mWorkspace.removeAllWorkspaceScreens();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002031 mWorkspace = null;
2032 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08002033
Michael Jurka2ecf9952012-06-18 12:52:28 -07002034 LauncherAnimUtils.onDestroyActivity();
Adam Cohen9211d422014-10-07 18:14:53 -07002035
2036 if (mLauncherCallbacks != null) {
2037 mLauncherCallbacks.onDestroy();
2038 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002039 }
2040
Adam Cohena9cf38f2011-05-02 15:36:58 -07002041 public DragController getDragController() {
2042 return mDragController;
2043 }
2044
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002045 @Override
2046 public void startActivityForResult(Intent intent, int requestCode) {
Adam Cohen173f7112015-03-27 15:14:00 -07002047 onStartForResult(requestCode);
2048 super.startActivityForResult(intent, requestCode);
2049 }
2050
2051 @Override
2052 public void startIntentSenderForResult (IntentSender intent, int requestCode,
2053 Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) {
2054 onStartForResult(requestCode);
2055 try {
2056 super.startIntentSenderForResult(intent, requestCode,
2057 fillInIntent, flagsMask, flagsValues, extraFlags, options);
2058 } catch (IntentSender.SendIntentException e) {
2059 throw new ActivityNotFoundException();
2060 }
2061 }
2062
2063 private void onStartForResult(int requestCode) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002064 if (requestCode >= 0) {
2065 setWaitingForResult(true);
2066 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002067 }
2068
Winson Chung70d72102011-08-12 11:24:35 -07002069 /**
2070 * Indicates that we want global search for this activity by setting the globalSearch
2071 * argument for {@link #startSearch} to true.
2072 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002073 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07002074 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002075 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002076
Karl Rosaen138a0412009-04-23 19:00:21 -07002077 if (initialQuery == null) {
2078 // Use any text typed in the launcher as the initial query
2079 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07002080 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002081 if (appSearchData == null) {
2082 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01002083 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002084 }
Winson Chungadf0c182012-08-23 14:59:07 -07002085 Rect sourceBounds = new Rect();
2086 if (mSearchDropTargetBar != null) {
2087 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
2088 }
Romain Guycbb89e42009-06-08 15:52:54 -07002089
Ian Parkinson047036e2014-09-01 15:40:53 +01002090 boolean clearTextImmediately = startSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002091 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002092 if (clearTextImmediately) {
2093 clearTypedText();
2094 }
Winson Chungcd99cd32015-04-29 11:03:24 -07002095
2096 // We need to show the workspace after starting the search
2097 showWorkspace(true);
Bjorn Bringertc459e522013-06-07 19:36:01 +01002098 }
2099
Ian Parkinson047036e2014-09-01 15:40:53 +01002100 /**
2101 * Start a text search.
2102 *
2103 * @return {@code true} if the search will start immediately, so any further keypresses
2104 * will be handled directly by the search UI. {@code false} if {@link Launcher} should continue
2105 * to buffer keypresses.
2106 */
2107 public boolean startSearch(String initialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002108 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Adam Cohen9211d422014-10-07 18:14:53 -07002109 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
2110 return mLauncherCallbacks.startSearch(initialQuery, selectInitialQuery, appSearchData,
2111 sourceBounds);
2112 }
2113
Michael Jurkaa33411c2012-06-14 16:18:21 -07002114 startGlobalSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002115 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002116 return false;
Michael Jurkaa33411c2012-06-14 16:18:21 -07002117 }
2118
2119 /**
2120 * Starts the global search activity. This code is a copied from SearchManager
2121 */
Bjorn Bringertc459e522013-06-07 19:36:01 +01002122 private void startGlobalSearch(String initialQuery,
Michael Jurkaa33411c2012-06-14 16:18:21 -07002123 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002124 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07002125 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2126 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
2127 if (globalSearchActivity == null) {
2128 Log.w(TAG, "No global search activity found.");
2129 return;
2130 }
2131 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
2132 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2133 intent.setComponent(globalSearchActivity);
2134 // Make sure that we have a Bundle to put source in
2135 if (appSearchData == null) {
2136 appSearchData = new Bundle();
2137 } else {
2138 appSearchData = new Bundle(appSearchData);
2139 }
Adam Cohen9211d422014-10-07 18:14:53 -07002140 // Set source to package name of app that starts global search if not set already.
Michael Jurkaa33411c2012-06-14 16:18:21 -07002141 if (!appSearchData.containsKey("source")) {
2142 appSearchData.putString("source", getPackageName());
2143 }
2144 intent.putExtra(SearchManager.APP_DATA, appSearchData);
2145 if (!TextUtils.isEmpty(initialQuery)) {
2146 intent.putExtra(SearchManager.QUERY, initialQuery);
2147 }
2148 if (selectInitialQuery) {
2149 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
2150 }
2151 intent.setSourceBounds(sourceBounds);
2152 try {
2153 startActivity(intent);
2154 } catch (ActivityNotFoundException ex) {
2155 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
2156 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002157 }
2158
Yura4f93ec62014-02-04 14:15:21 +00002159 public boolean isOnCustomContent() {
2160 return mWorkspace.isOnOrMovingToCustomContent();
2161 }
2162
Winson Chung70d72102011-08-12 11:24:35 -07002163 @Override
Winson Chung70d72102011-08-12 11:24:35 -07002164 public boolean onPrepareOptionsMenu(Menu menu) {
2165 super.onPrepareOptionsMenu(menu);
Yura4f93ec62014-02-04 14:15:21 +00002166 if (!isOnCustomContent()) {
2167 // Close any open folders
2168 closeFolder();
2169 // Stop resizing any widgets
2170 mWorkspace.exitWidgetResizeMode();
2171 if (!mWorkspace.isInOverviewMode()) {
2172 // Show the overview mode
2173 showOverviewMode(true);
2174 } else {
2175 showWorkspace(true);
2176 }
Winson Chunge0298742014-01-17 12:03:00 -08002177 }
Adam Cohen9211d422014-10-07 18:14:53 -07002178 if (mLauncherCallbacks != null) {
2179 return mLauncherCallbacks.onPrepareOptionsMenu(menu);
2180 }
2181
Michael Jurkab94f3f82013-09-11 18:08:54 +02002182 return false;
Winson Chung70d72102011-08-12 11:24:35 -07002183 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002184
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002185 @Override
2186 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07002187 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07002188 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07002189 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002190 }
2191
Joe Onorato9c1289c2009-08-17 11:03:03 -04002192 public boolean isWorkspaceLocked() {
2193 return mWorkspaceLoading || mWaitingForResult;
2194 }
2195
Adam Cohen517a7f52014-03-01 12:12:59 -08002196 public boolean isWorkspaceLoading() {
2197 return mWorkspaceLoading;
2198 }
2199
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002200 private void setWorkspaceLoading(boolean value) {
2201 boolean isLocked = isWorkspaceLocked();
2202 mWorkspaceLoading = value;
2203 if (isLocked != isWorkspaceLocked()) {
2204 onWorkspaceLockedChanged();
2205 }
2206 }
2207
2208 private void setWaitingForResult(boolean value) {
2209 boolean isLocked = isWorkspaceLocked();
2210 mWaitingForResult = value;
2211 if (isLocked != isWorkspaceLocked()) {
2212 onWorkspaceLockedChanged();
2213 }
2214 }
2215
Adam Cohen9211d422014-10-07 18:14:53 -07002216 protected void onWorkspaceLockedChanged() {
2217 if (mLauncherCallbacks != null) {
2218 mLauncherCallbacks.onWorkspaceLockedChanged();
2219 }
2220 }
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002221
Michael Jurka0280c3b2010-09-17 15:00:07 -07002222 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07002223 mPendingAddInfo.container = ItemInfo.NO_ID;
Adam Cohendcd297f2013-06-18 13:13:40 -07002224 mPendingAddInfo.screenId = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002225 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
2226 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Adam Cohend41fbf52012-02-16 23:53:59 -08002227 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002228 mPendingAddInfo.dropPos = null;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002229 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07002230
Sunny Goyale6b63a32015-01-16 16:14:29 -08002231 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info, final
Adam Cohen59400422014-03-05 18:07:04 -08002232 AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo) {
Adam Cohenad4e15c2013-10-17 16:21:35 -07002233 addAppWidgetImpl(appWidgetId, info, boundWidget, appWidgetInfo, 0);
2234 }
2235
Sunny Goyale6b63a32015-01-16 16:14:29 -08002236 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
Adam Cohen59400422014-03-05 18:07:04 -08002237 final AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo,
2238 int delay) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002239 if (appWidgetInfo.configure != null) {
2240 mPendingAddWidgetInfo = appWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -08002241 mPendingAddWidgetId = appWidgetId;
Michael Jurkaaf442092010-06-10 17:01:57 -07002242
Bjorn Bringert7984c942009-12-09 15:38:25 +00002243 // Launch over to configure widget, if needed
Sunny Goyalffe83f12014-08-14 17:39:34 -07002244 mAppWidgetManager.startConfigActivity(appWidgetInfo, appWidgetId, this,
2245 mAppWidgetHost, REQUEST_CREATE_APPWIDGET);
2246
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002247 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00002248 // Otherwise just add it
Adam Cohenad4e15c2013-10-17 16:21:35 -07002249 Runnable onComplete = new Runnable() {
2250 @Override
2251 public void run() {
2252 // Exit spring loaded mode if necessary after adding the widget
2253 exitSpringLoadedDragModeDelayed(true, EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT,
2254 null);
2255 }
2256 };
Adam Cohendcd297f2013-06-18 13:13:40 -07002257 completeAddAppWidget(appWidgetId, info.container, info.screenId, boundWidget,
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002258 appWidgetInfo);
Adam Cohen689ff162014-05-08 17:27:56 -07002259 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, delay, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002260 }
2261 }
Romain Guycbb89e42009-06-08 15:52:54 -07002262
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002263 protected void moveToCustomContentScreen(boolean animate) {
Sandeep Siddharthaf2b47f12013-09-26 19:49:27 -07002264 // Close any folders that may be open.
2265 closeFolder();
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002266 mWorkspace.moveToCustomContentScreen(animate);
2267 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002268
2269 public void addPendingItem(PendingAddItemInfo info, long container, long screenId,
2270 int[] cell, int spanX, int spanY) {
2271 switch (info.itemType) {
2272 case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET:
2273 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
2274 int span[] = new int[2];
2275 span[0] = spanX;
2276 span[1] = spanY;
2277 addAppWidgetFromDrop((PendingAddWidgetInfo) info,
2278 container, screenId, cell, span);
2279 break;
2280 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
2281 processShortcutFromDrop(info.componentName, container, screenId, cell);
2282 break;
2283 default:
2284 throw new IllegalStateException("Unknown item type: " + info.itemType);
2285 }
2286 }
2287
Adam Cohenfbba09b2011-07-18 21:43:05 -07002288 /**
2289 * Process a shortcut drop.
2290 *
2291 * @param componentName The name of the component
Adam Cohendcd297f2013-06-18 13:13:40 -07002292 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002293 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002294 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002295 private void processShortcutFromDrop(ComponentName componentName, long container, long screenId,
2296 int[] cell) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002297 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002298 mPendingAddInfo.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002299 mPendingAddInfo.screenId = screenId;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002300 mPendingAddInfo.dropPos = null;
Adam Cohenfbba09b2011-07-18 21:43:05 -07002301
2302 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002303 mPendingAddInfo.cellX = cell[0];
2304 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002305 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002306
2307 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
2308 createShortcutIntent.setComponent(componentName);
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002309 Utilities.startActivityForResultSafely(this, createShortcutIntent, REQUEST_CREATE_SHORTCUT);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002310 }
2311
Adam Cohenfbba09b2011-07-18 21:43:05 -07002312 /**
2313 * Process a widget drop.
2314 *
2315 * @param info The PendingAppWidgetInfo of the widget being added.
Adam Cohendcd297f2013-06-18 13:13:40 -07002316 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002317 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002318 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002319 private void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, long screenId,
2320 int[] cell, int[] span) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07002321 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002322 mPendingAddInfo.container = info.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002323 mPendingAddInfo.screenId = info.screenId = screenId;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002324 mPendingAddInfo.dropPos = null;
Adam Cohend41fbf52012-02-16 23:53:59 -08002325 mPendingAddInfo.minSpanX = info.minSpanX;
2326 mPendingAddInfo.minSpanY = info.minSpanY;
2327
Adam Cohenfbba09b2011-07-18 21:43:05 -07002328 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002329 mPendingAddInfo.cellX = cell[0];
2330 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002331 }
Adam Cohend41fbf52012-02-16 23:53:59 -08002332 if (span != null) {
2333 mPendingAddInfo.spanX = span[0];
2334 mPendingAddInfo.spanY = span[1];
2335 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002336
Adam Cohened66b2b2012-01-23 17:28:51 -08002337 AppWidgetHostView hostView = info.boundWidget;
2338 int appWidgetId;
2339 if (hostView != null) {
2340 appWidgetId = hostView.getAppWidgetId();
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002341 addAppWidgetImpl(appWidgetId, info, hostView, info.info);
Sunny Goyal5b9ebca2015-06-01 18:37:32 -07002342
2343 // Clear the boundWidget so that it doesn't get destroyed.
2344 info.boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -08002345 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002346 // In this case, we either need to start an activity to get permission to bind
2347 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08002348 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07002349 Bundle options = info.bindOptions;
2350
Sunny Goyalffe83f12014-08-14 17:39:34 -07002351 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
2352 appWidgetId, info.info, options);
Adam Cohendd70d662012-10-04 16:53:44 -07002353 if (success) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002354 addAppWidgetImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07002355 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002356 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07002357 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
2358 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
2359 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Sunny Goyalffe83f12014-08-14 17:39:34 -07002360 mAppWidgetManager.getUser(mPendingAddWidgetInfo)
2361 .addToIntent(intent, AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE);
Adam Cohendd70d662012-10-04 16:53:44 -07002362 // TODO: we need to make sure that this accounts for the options bundle.
2363 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07002364 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
2365 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002366 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002367 }
2368
Adam Cohendcd297f2013-06-18 13:13:40 -07002369 FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07002370 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07002371 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002372 folderInfo.title = getText(R.string.folder_name);
2373
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002374 // Update the model
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07002375 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId,
2376 cellX, cellY);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002377 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002378
2379 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07002380 FolderIcon newFolder =
2381 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07002382 mWorkspace.addInScreen(newFolder, container, screenId, cellX, cellY, 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07002383 isWorkspaceLocked());
Winson Chung5f8afe62013-08-12 16:19:28 -07002384 // Force measure the new folder icon
2385 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
2386 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07002387 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002388 }
Romain Guycbb89e42009-06-08 15:52:54 -07002389
Joe Onorato9c1289c2009-08-17 11:03:03 -04002390 void removeFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002391 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002392 }
2393
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002394 @Override
2395 public boolean dispatchKeyEvent(KeyEvent event) {
2396 if (event.getAction() == KeyEvent.ACTION_DOWN) {
2397 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002398 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07002399 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08002400 case KeyEvent.KEYCODE_VOLUME_DOWN:
Sunny Goyal4bbf4192014-11-11 12:23:59 -08002401 if (Utilities.isPropertyEnabled(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08002402 dumpState();
2403 return true;
2404 }
2405 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07002406 }
2407 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2408 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07002409 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002410 return true;
2411 }
2412 }
2413
2414 return super.dispatchKeyEvent(event);
2415 }
2416
Joe Onorato88ec0992009-11-19 13:16:06 -08002417 @Override
2418 public void onBackPressed() {
Adam Cohen9211d422014-10-07 18:14:53 -07002419 if (mLauncherCallbacks != null && mLauncherCallbacks.handleBackPressed()) {
2420 return;
2421 }
2422
Sunny Goyal45478022015-06-08 16:52:41 -07002423 if (mDragController.isDragging()) {
2424 mDragController.cancelDrag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08002425 return;
2426 }
2427
Winson Chungb745afb2015-03-02 11:51:23 -08002428 if (isAppsViewVisible()) {
2429 showWorkspace(true);
2430 } else if (isWidgetsViewVisible()) {
2431 showOverviewMode(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002432 } else if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002433 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002434 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07002435 Folder openFolder = mWorkspace.getOpenFolder();
2436 if (openFolder.isEditingName()) {
2437 openFolder.dismissEditingName();
2438 } else {
2439 closeFolder();
2440 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002441 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08002442 mWorkspace.exitWidgetResizeMode();
2443
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002444 // Back button is a no-op here, but give at least some feedback for the button press
2445 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07002446 }
Joe Onorato88ec0992009-11-19 13:16:06 -08002447 }
2448
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002449 /**
Sunny Goyal383c5072015-06-12 21:18:53 -07002450 * Re-listen when widget host is reset.
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002451 */
Sunny Goyal383c5072015-06-12 21:18:53 -07002452 @Override
2453 public void onAppWidgetHostReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08002454 if (mAppWidgetHost != null) {
2455 mAppWidgetHost.startListening();
2456 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002457 }
2458
2459 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002460 * Launches the intent referred by the clicked shortcut.
2461 *
2462 * @param v The view representing the clicked shortcut.
2463 */
2464 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002465 // Make sure that rogue clicks don't get through while allapps is launching, or after the
2466 // view has detached (it's possible for this to happen if the view is removed mid touch).
2467 if (v.getWindowToken() == null) {
2468 return;
2469 }
2470
Winson Chung9b0b2fe2012-02-24 13:03:34 -08002471 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002472 return;
2473 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07002474
Adam Cohen1697b792013-09-17 19:08:21 -07002475 if (v instanceof Workspace) {
2476 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002477 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002478 }
2479 return;
2480 }
2481
2482 if (v instanceof CellLayout) {
2483 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002484 showWorkspace(mWorkspace.indexOfChild(v), true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002485 }
2486 }
2487
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002488 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002489 if (tag instanceof ShortcutInfo) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002490 onClickAppShortcut(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002491 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002492 if (v instanceof FolderIcon) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002493 onClickFolderIcon(v);
Adam Cohena9cf38f2011-05-02 15:36:58 -07002494 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002495 } else if (v == mAllAppsButton) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002496 onClickAllAppsButton(v);
Sunny Goyal508da152014-08-14 10:53:27 -07002497 } else if (tag instanceof AppInfo) {
2498 startAppShortcutOrInfoActivity(v);
Sunny Goyalff572272014-07-23 13:58:07 -07002499 } else if (tag instanceof LauncherAppWidgetInfo) {
2500 if (v instanceof PendingAppWidgetHostView) {
2501 onClickPendingWidget((PendingAppWidgetHostView) v);
2502 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002503 }
2504 }
2505
Sunny Goyal70660032015-05-14 00:07:08 -07002506 @SuppressLint("ClickableViewAccessibility")
Michael Jurka0e260592010-06-30 17:07:39 -07002507 public boolean onTouch(View v, MotionEvent event) {
Michael Jurka0e260592010-06-30 17:07:39 -07002508 return false;
2509 }
2510
Michael Jurkaaf442092010-06-10 17:01:57 -07002511 /**
Sunny Goyalff572272014-07-23 13:58:07 -07002512 * Event handler for the app widget view which has not fully restored.
2513 */
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002514 public void onClickPendingWidget(final PendingAppWidgetHostView v) {
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002515 if (mIsSafeModeEnabled) {
2516 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2517 return;
2518 }
2519
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002520 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) v.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07002521 if (v.isReadyForClickSetup()) {
Sunny Goyalff572272014-07-23 13:58:07 -07002522 int widgetId = info.appWidgetId;
2523 AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
2524 if (appWidgetInfo != null) {
Adam Cohen59400422014-03-05 18:07:04 -08002525 mPendingAddWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(
2526 this, appWidgetInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07002527 mPendingAddInfo.copyFrom(info);
2528 mPendingAddWidgetId = widgetId;
2529
Sunny Goyalffe83f12014-08-14 17:39:34 -07002530 AppWidgetManagerCompat.getInstance(this).startConfigActivity(appWidgetInfo,
2531 info.appWidgetId, this, mAppWidgetHost, REQUEST_RECONFIGURE_APPWIDGET);
Sunny Goyalff572272014-07-23 13:58:07 -07002532 }
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002533 } else if (info.installProgress < 0) {
2534 // The install has not been queued
2535 final String packageName = info.providerName.getPackageName();
2536 showBrokenAppInstallDialog(packageName,
2537 new DialogInterface.OnClickListener() {
2538 public void onClick(DialogInterface dialog, int id) {
2539 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
2540 }
2541 });
2542 } else {
2543 // Download has started.
2544 final String packageName = info.providerName.getPackageName();
2545 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
Sunny Goyalff572272014-07-23 13:58:07 -07002546 }
2547 }
2548
2549 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002550 * Event handler for the "grid" button that appears on the home screen, which
2551 * enters all apps mode.
2552 *
2553 * @param v The view that was clicked.
2554 */
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002555 protected void onClickAllAppsButton(View v) {
2556 if (LOGD) Log.d(TAG, "onClickAllAppsButton");
Winson Chungb745afb2015-03-02 11:51:23 -08002557 if (isAppsViewVisible()) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002558 showWorkspace(true);
2559 } else {
Winson Chung4ac30062015-05-08 17:34:17 -07002560 // Try and refresh the set of predicted apps before we enter launcher
2561 showAppsView(true /* animated */, false /* resetListToTop */,
2562 true /* updatePredictedApps */);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002563 }
2564 }
2565
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002566 private void showBrokenAppInstallDialog(final String packageName,
2567 DialogInterface.OnClickListener onSearchClickListener) {
Sunny Goyale03b8122014-10-08 09:55:24 -07002568 new AlertDialog.Builder(this)
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002569 .setTitle(R.string.abandoned_promises_title)
2570 .setMessage(R.string.abandoned_promise_explanation)
2571 .setPositiveButton(R.string.abandoned_search, onSearchClickListener)
2572 .setNeutralButton(R.string.abandoned_clean_this,
2573 new DialogInterface.OnClickListener() {
2574 public void onClick(DialogInterface dialog, int id) {
2575 final UserHandleCompat user = UserHandleCompat.myUserHandle();
2576 mWorkspace.removeAbandonedPromise(packageName, user);
2577 }
2578 })
2579 .create().show();
2580 return;
2581 }
2582
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002583 /**
2584 * Event handler for an app shortcut click.
2585 *
2586 * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.
2587 */
Chris Wren40c5ed32014-06-24 18:24:23 -04002588 protected void onClickAppShortcut(final View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002589 if (LOGD) Log.d(TAG, "onClickAppShortcut");
2590 Object tag = v.getTag();
2591 if (!(tag instanceof ShortcutInfo)) {
2592 throw new IllegalArgumentException("Input must be a Shortcut");
2593 }
2594
2595 // Open shortcut
2596 final ShortcutInfo shortcut = (ShortcutInfo) tag;
Sunny Goyal1a745e82014-10-02 15:58:31 -07002597
2598 if (shortcut.isDisabled != 0) {
2599 int error = R.string.activity_not_available;
2600 if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_SAFEMODE) != 0) {
2601 error = R.string.safemode_shortcut_error;
2602 }
2603 Toast.makeText(this, error, Toast.LENGTH_SHORT).show();
2604 return;
2605 }
2606
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002607 final Intent intent = shortcut.intent;
2608
2609 // Check for special shortcuts
2610 if (intent.getComponent() != null) {
2611 final String shortcutClass = intent.getComponent().getClassName();
2612
2613 if (shortcutClass.equals(MemoryDumpActivity.class.getName())) {
2614 MemoryDumpActivity.startDump(this);
2615 return;
2616 } else if (shortcutClass.equals(ToggleWeightWatcher.class.getName())) {
2617 toggleShowWeightWatcher();
2618 return;
2619 }
2620 }
2621
Chris Wren40c5ed32014-06-24 18:24:23 -04002622 // Check for abandoned promise
Sunny Goyal34942622014-08-29 17:20:55 -07002623 if ((v instanceof BubbleTextView)
2624 && shortcut.isPromise()
2625 && !shortcut.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE)) {
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002626 showBrokenAppInstallDialog(
Sunny Goyal34942622014-08-29 17:20:55 -07002627 shortcut.getTargetComponent().getPackageName(),
Chris Wren40c5ed32014-06-24 18:24:23 -04002628 new DialogInterface.OnClickListener() {
2629 public void onClick(DialogInterface dialog, int id) {
Sunny Goyal508da152014-08-14 10:53:27 -07002630 startAppShortcutOrInfoActivity(v);
Chris Wren40c5ed32014-06-24 18:24:23 -04002631 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002632 });
Chris Wren40c5ed32014-06-24 18:24:23 -04002633 return;
2634 }
2635
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002636 // Start activities
Sunny Goyal508da152014-08-14 10:53:27 -07002637 startAppShortcutOrInfoActivity(v);
Adam Cohen9211d422014-10-07 18:14:53 -07002638
2639 if (mLauncherCallbacks != null) {
2640 mLauncherCallbacks.onClickAppShortcut(v);
2641 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002642 }
2643
Adam Cohen091440a2015-03-18 14:16:05 -07002644 @Thunk void startAppShortcutOrInfoActivity(View v) {
Chris Wren40c5ed32014-06-24 18:24:23 -04002645 Object tag = v.getTag();
Sunny Goyal508da152014-08-14 10:53:27 -07002646 final ShortcutInfo shortcut;
2647 final Intent intent;
2648 if (tag instanceof ShortcutInfo) {
2649 shortcut = (ShortcutInfo) tag;
2650 intent = shortcut.intent;
2651 int[] pos = new int[2];
2652 v.getLocationOnScreen(pos);
2653 intent.setSourceBounds(new Rect(pos[0], pos[1],
2654 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Chris Wren40c5ed32014-06-24 18:24:23 -04002655
Sunny Goyal508da152014-08-14 10:53:27 -07002656 } else if (tag instanceof AppInfo) {
2657 shortcut = null;
2658 intent = ((AppInfo) tag).intent;
2659 } else {
2660 throw new IllegalArgumentException("Input must be a Shortcut or AppInfo");
2661 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002662
2663 boolean success = startActivitySafely(v, intent, tag);
Winson Chung8f1eff72015-05-28 17:33:40 -07002664 mStats.recordLaunch(v, intent, shortcut);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002665
2666 if (success && v instanceof BubbleTextView) {
2667 mWaitingForResume = (BubbleTextView) v;
2668 mWaitingForResume.setStayPressed(true);
2669 }
2670 }
2671
2672 /**
2673 * Event handler for a folder icon click.
2674 *
2675 * @param v The view that was clicked. Must be an instance of {@link FolderIcon}.
2676 */
2677 protected void onClickFolderIcon(View v) {
2678 if (LOGD) Log.d(TAG, "onClickFolder");
2679 if (!(v instanceof FolderIcon)){
2680 throw new IllegalArgumentException("Input must be a FolderIcon");
2681 }
2682
2683 FolderIcon folderIcon = (FolderIcon) v;
2684 final FolderInfo info = folderIcon.getFolderInfo();
2685 Folder openFolder = mWorkspace.getFolderForTag(info);
2686
2687 // If the folder info reports that the associated folder is open, then verify that
2688 // it is actually opened. There have been a few instances where this gets out of sync.
2689 if (info.opened && openFolder == null) {
2690 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2691 + info.screenId + " (" + info.cellX + ", " + info.cellY + ")");
2692 info.opened = false;
2693 }
2694
2695 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
2696 // Close any open folder
2697 closeFolder();
2698 // Open the requested folder
2699 openFolder(folderIcon);
2700 } else {
2701 // Find the open folder...
2702 int folderScreen;
2703 if (openFolder != null) {
2704 folderScreen = mWorkspace.getPageForView(openFolder);
2705 // .. and close it
2706 closeFolder(openFolder);
2707 if (folderScreen != mWorkspace.getCurrentPage()) {
2708 // Close any folder open on the current screen
2709 closeFolder();
2710 // Pull the folder onto this screen
2711 openFolder(folderIcon);
2712 }
2713 }
2714 }
Adam Cohen9211d422014-10-07 18:14:53 -07002715
2716 if (mLauncherCallbacks != null) {
2717 mLauncherCallbacks.onClickFolderIcon(v);
2718 }
Michael Jurka5130e402011-10-13 04:55:35 -07002719 }
2720
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002721 /**
2722 * Event handler for the (Add) Widgets button that appears after a long press
2723 * on the home screen.
2724 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002725 protected void onClickAddWidgetButton(View view) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002726 if (LOGD) Log.d(TAG, "onClickAddWidgetButton");
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002727 if (mIsSafeModeEnabled) {
2728 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2729 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08002730 showWidgetsView(true /* animated */, true /* resetPageToZero */);
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002731 if (mLauncherCallbacks != null) {
2732 mLauncherCallbacks.onClickAddWidgetButton(view);
2733 }
Adam Cohen9211d422014-10-07 18:14:53 -07002734 }
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002735 }
2736
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002737 /**
2738 * Event handler for the wallpaper picker button that appears after a long press
2739 * on the home screen.
2740 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002741 protected void onClickWallpaperPicker(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002742 if (LOGD) Log.d(TAG, "onClickWallpaperPicker");
Sunny Goyal6a1e95a2015-03-20 17:26:30 -07002743 startActivityForResult(new Intent(Intent.ACTION_SET_WALLPAPER).setPackage(getPackageName()),
2744 REQUEST_PICK_WALLPAPER);
Adam Cohen9211d422014-10-07 18:14:53 -07002745
2746 if (mLauncherCallbacks != null) {
2747 mLauncherCallbacks.onClickWallpaperPicker(v);
2748 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002749 }
2750
2751 /**
2752 * Event handler for a click on the settings button that appears after a long press
2753 * on the home screen.
2754 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002755 protected void onClickSettingsButton(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002756 if (LOGD) Log.d(TAG, "onClickSettingsButton");
Adam Cohen9211d422014-10-07 18:14:53 -07002757 if (mLauncherCallbacks != null) {
2758 mLauncherCallbacks.onClickSettingsButton(v);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07002759 } else {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002760 startActivity(new Intent(this, SettingsActivity.class));
Adam Cohen9211d422014-10-07 18:14:53 -07002761 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002762 }
2763
Adam Cohen61f560d2013-09-30 15:58:20 -07002764 public View.OnTouchListener getHapticFeedbackTouchListener() {
2765 if (mHapticFeedbackTouchListener == null) {
2766 mHapticFeedbackTouchListener = new View.OnTouchListener() {
Sunny Goyal70660032015-05-14 00:07:08 -07002767 @SuppressLint("ClickableViewAccessibility")
Adam Cohen61f560d2013-09-30 15:58:20 -07002768 @Override
2769 public boolean onTouch(View v, MotionEvent event) {
2770 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
2771 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2772 }
2773 return false;
2774 }
2775 };
2776 }
2777 return mHapticFeedbackTouchListener;
2778 }
2779
Adam Cohen9211d422014-10-07 18:14:53 -07002780 public void onDragStarted(View view) {
2781 if (isOnCustomContent()) {
2782 // Custom content screen doesn't participate in drag and drop. If on custom
2783 // content screen, move to default.
2784 moveWorkspaceToDefaultScreen();
2785 }
2786
2787 if (mLauncherCallbacks != null) {
2788 mLauncherCallbacks.onDragStarted(view);
2789 }
2790 }
Anjali Koppal62d18ed2014-03-10 17:04:03 -07002791
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002792 /**
2793 * Called when the user stops interacting with the launcher.
2794 * This implies that the user is now on the homescreen and is not doing housekeeping.
2795 */
Adam Cohen9211d422014-10-07 18:14:53 -07002796 protected void onInteractionEnd() {
2797 if (mLauncherCallbacks != null) {
2798 mLauncherCallbacks.onInteractionEnd();
2799 }
2800 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002801
2802 /**
2803 * Called when the user starts interacting with the launcher.
2804 * The possible interactions are:
2805 * - open all apps
2806 * - reorder an app shortcut, or a widget
2807 * - open the overview mode.
2808 * This is a good time to stop doing things that only make sense
2809 * when the user is on the homescreen and not doing housekeeping.
2810 */
Adam Cohen9211d422014-10-07 18:14:53 -07002811 protected void onInteractionBegin() {
2812 if (mLauncherCallbacks != null) {
2813 mLauncherCallbacks.onInteractionBegin();
2814 }
2815 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002816
Winson Chungcd99cd32015-04-29 11:03:24 -07002817 /** Updates the interaction state. */
2818 public void updateInteraction(Workspace.State fromState, Workspace.State toState) {
Winson Chung83f59ab2015-05-05 17:21:58 -07002819 // Only update the interacting state if we are transitioning to/from a view with an
Winson Chungcd99cd32015-04-29 11:03:24 -07002820 // overlay
Winson Chungef7f8742015-06-04 17:18:17 -07002821 boolean fromStateWithOverlay = fromState != Workspace.State.NORMAL;
2822 boolean toStateWithOverlay = toState != Workspace.State.NORMAL;
Winson Chung83f59ab2015-05-05 17:21:58 -07002823 if (toStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002824 onInteractionBegin();
Winson Chung83f59ab2015-05-05 17:21:58 -07002825 } else if (fromStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002826 onInteractionEnd();
2827 }
2828 }
2829
Kenny Guyf07af7b2014-07-31 11:39:16 +01002830 void startApplicationDetailsActivity(ComponentName componentName, UserHandleCompat user) {
Kenny Guyf07af7b2014-07-31 11:39:16 +01002831 try {
2832 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Kenny Guyf07af7b2014-07-31 11:39:16 +01002833 launcherApps.showAppDetailsForProfile(componentName, user);
2834 } catch (SecurityException e) {
2835 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2836 Log.e(TAG, "Launcher does not have permission to launch settings");
2837 } catch (ActivityNotFoundException e) {
2838 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2839 Log.e(TAG, "Unable to launch settings");
2840 }
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002841 }
2842
Michael Jurka1e2f4652013-07-08 18:03:46 -07002843 // returns true if the activity was started
Kenny Guyd31df542014-06-30 15:12:11 +01002844 boolean startApplicationUninstallActivity(ComponentName componentName, int flags,
2845 UserHandleCompat user) {
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002846 if ((flags & AppInfo.DOWNLOADED_FLAG) == 0) {
Patrick Dubroy5539af72010-09-07 15:22:01 -07002847 // System applications cannot be installed. For now, show a toast explaining that.
2848 // We may give them the option of disabling apps this way.
2849 int messageId = R.string.uninstall_system_app_text;
2850 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
Michael Jurka1e2f4652013-07-08 18:03:46 -07002851 return false;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002852 } else {
Michael Jurka1e2f4652013-07-08 18:03:46 -07002853 String packageName = componentName.getPackageName();
2854 String className = componentName.getClassName();
Patrick Dubroy5539af72010-09-07 15:22:01 -07002855 Intent intent = new Intent(
2856 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002857 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2858 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Kenny Guyd31df542014-06-30 15:12:11 +01002859 if (user != null) {
2860 user.addToIntent(intent, Intent.EXTRA_USER);
2861 }
Patrick Dubroy5539af72010-09-07 15:22:01 -07002862 startActivity(intent);
Michael Jurka1e2f4652013-07-08 18:03:46 -07002863 return true;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002864 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002865 }
2866
Winson Chung8f1eff72015-05-28 17:33:40 -07002867 private boolean startActivity(View v, Intent intent, Object tag) {
Kenny Guyb6cc40b2014-05-13 15:58:58 +01002868 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002869 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002870 // Only launch using the new animation if the shortcut has not opted out (this is a
2871 // private contract between launcher and may be ignored in the future).
2872 boolean useLaunchAnimation = (v != null) &&
2873 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
Kenny Guyed131872014-04-30 03:02:21 +01002874 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
2875 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyed131872014-04-30 03:02:21 +01002876
Kenny Guy1317e2d2014-05-08 18:52:50 +01002877 UserHandleCompat user = null;
2878 if (intent.hasExtra(AppInfo.EXTRA_PROFILE)) {
2879 long serialNumber = intent.getLongExtra(AppInfo.EXTRA_PROFILE, -1);
2880 user = userManager.getUserForSerialNumber(serialNumber);
2881 }
2882
2883 Bundle optsBundle = null;
Winson Chung2672ff92012-05-04 16:22:30 -07002884 if (useLaunchAnimation) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002885 ActivityOptions opts = null;
2886 if (sClipRevealMethod != null) {
2887 // TODO: call method directly when Launcher3 can depend on M APIs
2888 int left = 0, top = 0;
2889 int width = v.getMeasuredWidth(), height = v.getMeasuredHeight();
2890 if (v instanceof TextView) {
2891 // Launch from center of icon, not entire view
Winson Chungb745afb2015-03-02 11:51:23 -08002892 Drawable icon = Workspace.getTextViewIcon((TextView) v);
2893 if (icon != null) {
2894 Rect bounds = icon.getBounds();
Chet Haasea8f996d2015-02-17 12:56:04 -08002895 left = (width - bounds.width()) / 2;
Winson Chungb745afb2015-03-02 11:51:23 -08002896 top = v.getPaddingTop();
Chet Haasea8f996d2015-02-17 12:56:04 -08002897 width = bounds.width();
2898 height = bounds.height();
2899 }
2900 }
2901 try {
2902 opts = (ActivityOptions) sClipRevealMethod.invoke(null, v,
2903 left, top, width, height);
2904 } catch (IllegalAccessException e) {
2905 Log.d(TAG, "Could not call makeClipRevealAnimation: " + e);
2906 sClipRevealMethod = null;
2907 } catch (InvocationTargetException e) {
2908 Log.d(TAG, "Could not call makeClipRevealAnimation: " + e);
2909 sClipRevealMethod = null;
2910 }
2911 }
Adam Cohen2e52c902015-04-06 13:11:28 -07002912 if (opts == null && !Utilities.isLmpOrAbove()) {
2913 opts = ActivityOptions.makeScaleUpAnimation(v, 0, 0,
Chet Haasea8f996d2015-02-17 12:56:04 -08002914 v.getMeasuredWidth(), v.getMeasuredHeight());
2915 }
Adam Cohen2e52c902015-04-06 13:11:28 -07002916 optsBundle = opts != null ? opts.toBundle() : null;
Adam Cohen6ea3b112014-06-11 11:38:49 -07002917 }
Kenny Guy1317e2d2014-05-08 18:52:50 +01002918
2919 if (user == null || user.equals(UserHandleCompat.myUserHandle())) {
2920 // Could be launching some bookkeeping activity
2921 startActivity(intent, optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002922 } else {
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002923 // TODO Component can be null when shortcuts are supported for secondary user
Kenny Guyc2bd8102014-06-30 12:30:31 +01002924 launcherApps.startActivityForProfile(intent.getComponent(), user,
2925 intent.getSourceBounds(), optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002926 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002927 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002928 } catch (SecurityException e) {
2929 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002930 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002931 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07002932 "or use the exported attribute for this activity. "
2933 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002934 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002935 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002936 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002937
Sunny Goyal383c5072015-06-12 21:18:53 -07002938 @Thunk boolean startActivitySafely(View v, Intent intent, Object tag) {
Michael Jurka86a720e2012-05-09 11:23:23 -07002939 boolean success = false;
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002940 if (mIsSafeModeEnabled && !Utilities.isSystemApp(this, intent)) {
2941 Toast.makeText(this, R.string.safemode_shortcut_error, Toast.LENGTH_SHORT).show();
2942 return false;
2943 }
Michael Jurka86a720e2012-05-09 11:23:23 -07002944 try {
2945 success = startActivity(v, intent, tag);
2946 } catch (ActivityNotFoundException e) {
2947 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2948 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
2949 }
2950 return success;
2951 }
2952
Adam Cohen268c4752012-06-06 17:47:33 -07002953 /**
2954 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
2955 * in the DragLayer in the exact absolute location of the original FolderIcon.
2956 */
2957 private void copyFolderIconToImage(FolderIcon fi) {
2958 final int width = fi.getMeasuredWidth();
2959 final int height = fi.getMeasuredHeight();
2960
2961 // Lazy load ImageView, Bitmap and Canvas
2962 if (mFolderIconImageView == null) {
2963 mFolderIconImageView = new ImageView(this);
2964 }
2965 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
2966 mFolderIconBitmap.getHeight() != height) {
2967 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
2968 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
2969 }
2970
2971 DragLayer.LayoutParams lp;
2972 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
2973 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
2974 } else {
2975 lp = new DragLayer.LayoutParams(width, height);
2976 }
2977
Adam Cohen307fe232012-08-16 17:55:58 -07002978 // The layout from which the folder is being opened may be scaled, adjust the starting
2979 // view size by this scale factor.
2980 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07002981 lp.customPosition = true;
2982 lp.x = mRectForFolderAnimation.left;
2983 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07002984 lp.width = (int) (scale * width);
2985 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07002986
2987 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
2988 fi.draw(mFolderIconCanvas);
2989 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07002990 if (fi.getFolder() != null) {
2991 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
2992 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07002993 }
Adam Cohen268c4752012-06-06 17:47:33 -07002994 // Just in case this image view is still in the drag layer from a previous animation,
2995 // we remove it and re-add it.
2996 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
2997 mDragLayer.removeView(mFolderIconImageView);
2998 }
2999 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07003000 if (fi.getFolder() != null) {
3001 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07003002 }
Adam Cohen268c4752012-06-06 17:47:33 -07003003 }
3004
Adam Cohen2801caf2011-05-13 20:57:39 -07003005 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003006 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003007 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
3008 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
3009 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
3010
Adam Cohenc51934b2011-07-26 21:07:43 -07003011 FolderInfo info = (FolderInfo) fi.getTag();
3012 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3013 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07003014 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
3015 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07003016 }
3017
Adam Cohen268c4752012-06-06 17:47:33 -07003018 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
3019 copyFolderIconToImage(fi);
3020 fi.setVisibility(View.INVISIBLE);
3021
Michael Jurka2ecf9952012-06-18 12:52:28 -07003022 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003023 scaleX, scaleY);
Kenny Guyd794a3f2014-09-16 15:17:58 +01003024 if (Utilities.isLmpOrAbove()) {
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003025 oa.setInterpolator(new LogDecelerateInterpolator(100, 0));
3026 }
3027 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohen2801caf2011-05-13 20:57:39 -07003028 oa.start();
3029 }
3030
Adam Cohen268c4752012-06-06 17:47:33 -07003031 private void shrinkAndFadeInFolderIcon(final FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003032 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003033 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
3034 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
3035 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
3036
Adam Cohen268c4752012-06-06 17:47:33 -07003037 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07003038
Adam Cohen268c4752012-06-06 17:47:33 -07003039 // We remove and re-draw the FolderIcon in-case it has changed
3040 mDragLayer.removeView(mFolderIconImageView);
3041 copyFolderIconToImage(fi);
Michael Jurka2ecf9952012-06-18 12:52:28 -07003042 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003043 scaleX, scaleY);
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003044 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07003045 oa.addListener(new AnimatorListenerAdapter() {
3046 @Override
3047 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07003048 if (cl != null) {
3049 cl.clearFolderLeaveBehind();
3050 // Remove the ImageView copy of the FolderIcon and make the original visible.
3051 mDragLayer.removeView(mFolderIconImageView);
3052 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07003053 }
3054 }
3055 });
Adam Cohen2801caf2011-05-13 20:57:39 -07003056 oa.start();
3057 }
3058
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003059 /**
Michael Jurka774bd372010-10-22 13:40:50 -07003060 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003061 * is animated relative to the specified View. If the View is null, no animation
3062 * is played.
3063 *
3064 * @param folderInfo The FolderInfo describing the folder to open.
3065 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07003066 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07003067 Folder folder = folderIcon.getFolder();
Sunny Goyalf4066152015-04-15 09:42:19 -07003068 Folder openFolder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
3069 if (openFolder != null && openFolder != folder) {
3070 // Close any open folder before opening a folder.
3071 closeFolder();
3072 }
3073
Adam Cohena9cf38f2011-05-02 15:36:58 -07003074 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003075
Adam Cohena9cf38f2011-05-02 15:36:58 -07003076 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003077
Sunny Goyalf4066152015-04-15 09:42:19 -07003078 // While the folder is open, the position of the icon cannot change.
3079 ((CellLayout.LayoutParams) folderIcon.getLayoutParams()).canReorder = false;
3080
Adam Cohen4554ee12011-08-03 16:13:21 -07003081 // Just verify that the folder hasn't already been added to the DragLayer.
3082 // There was a one-off crash where the folder had a parent already.
3083 if (folder.getParent() == null) {
3084 mDragLayer.addView(folder);
3085 mDragController.addDropTarget((DropTarget) folder);
3086 } else {
3087 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
3088 folder.getParent() + ").");
3089 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07003090 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07003091 growAndFadeOutFolderIcon(folderIcon);
Winson Chung83ca4802013-04-12 15:10:52 -07003092
3093 // Notify the accessibility manager that this folder "window" has appeared and occluded
3094 // the workspace items
3095 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
3096 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07003097 }
3098
3099 public void closeFolder() {
Adam Cohen37c717f2013-11-26 11:50:15 -08003100 Folder folder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
Adam Cohen4554ee12011-08-03 16:13:21 -07003101 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07003102 if (folder.isEditingName()) {
3103 folder.dismissEditingName();
3104 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003105 closeFolder(folder);
3106 }
3107 }
3108
Sunny Goyal83a8f042015-05-19 12:52:12 -07003109 public void closeFolder(Folder folder) {
Adam Cohen4554ee12011-08-03 16:13:21 -07003110 folder.getInfo().opened = false;
3111
3112 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
3113 if (parent != null) {
3114 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
3115 shrinkAndFadeInFolderIcon(fi);
Sunny Goyalf4066152015-04-15 09:42:19 -07003116 if (fi != null) {
3117 ((CellLayout.LayoutParams) fi.getLayoutParams()).canReorder = true;
3118 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003119 }
3120 folder.animateClosed();
Winson Chung83ca4802013-04-12 15:10:52 -07003121
3122 // Notify the accessibility manager that this folder "window" has disappeard and no
3123 // longer occludeds the workspace items
3124 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003125 }
3126
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003127 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07003128 if (!isDraggingEnabled()) return false;
3129 if (isWorkspaceLocked()) return false;
3130 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003131
Adam Cohen1697b792013-09-17 19:08:21 -07003132 if (v instanceof Workspace) {
3133 if (!mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003134 if (!mWorkspace.isTouchActive()) {
3135 showOverviewMode(true);
Adam Cohen93c97562013-09-26 13:48:01 -07003136 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3137 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
3138 return true;
3139 } else {
3140 return false;
3141 }
Adam Cohenaa4c8c12014-06-06 11:52:52 -07003142 } else {
3143 return false;
Adam Cohen1697b792013-09-17 19:08:21 -07003144 }
Adam Cohen1697b792013-09-17 19:08:21 -07003145 }
3146
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003147 CellLayout.CellInfo longClickCellInfo = null;
3148 View itemUnderLongClick = null;
3149 if (v.getTag() instanceof ItemInfo) {
3150 ItemInfo info = (ItemInfo) v.getTag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08003151 longClickCellInfo = new CellLayout.CellInfo(v, info);
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003152 itemUnderLongClick = longClickCellInfo.cell;
3153 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003154 }
3155
Winson Chung3d503fb2011-07-13 17:25:49 -07003156 // The hotseat touch handling does not go through Workspace, and we always allow long press
3157 // on hotseat items.
Dan Sandlere26d0942014-01-13 14:30:14 -05003158 final boolean inHotseat = isHotseatLayout(v);
Sunny Goyal8e2133b2015-05-06 13:39:07 -07003159 if (!mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07003160 if (itemUnderLongClick == null) {
Adam Cohend3ecce92013-09-16 14:58:00 -07003161 // User long pressed on empty space
3162 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3163 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Adam Cohend3ecce92013-09-16 14:58:00 -07003164 if (mWorkspace.isInOverviewMode()) {
3165 mWorkspace.startReordering(v);
3166 } else {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003167 showOverviewMode(true);
Adam Cohendedbd962013-07-11 14:21:49 -07003168 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003169 } else {
Dan Sandlere26d0942014-01-13 14:30:14 -05003170 final boolean isAllAppsButton = inHotseat && isAllAppsButtonRank(
3171 mHotseat.getOrderInHotseat(
3172 longClickCellInfo.cellX,
3173 longClickCellInfo.cellY));
3174 if (!(itemUnderLongClick instanceof Folder || isAllAppsButton)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003175 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07003176 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003177 }
3178 }
3179 }
3180 return true;
3181 }
3182
Winson Chung3d503fb2011-07-13 17:25:49 -07003183 boolean isHotseatLayout(View layout) {
3184 return mHotseat != null && layout != null &&
3185 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
3186 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08003187
Winson Chung3d503fb2011-07-13 17:25:49 -07003188 /**
3189 * Returns the CellLayout of the specified container at the specified screen.
3190 */
Sunny Goyal92820592015-03-02 11:31:35 -08003191 public CellLayout getCellLayout(long container, long screenId) {
Winson Chung3d503fb2011-07-13 17:25:49 -07003192 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3193 if (mHotseat != null) {
3194 return mHotseat.getLayout();
3195 } else {
3196 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08003197 }
Winson Chung3d503fb2011-07-13 17:25:49 -07003198 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08003199 return mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08003200 }
3201 }
3202
Winson Chungb745afb2015-03-02 11:51:23 -08003203 /**
3204 * For overridden classes.
3205 */
Daniel Sandler843e8602010-06-07 14:59:01 -04003206 public boolean isAllAppsVisible() {
Winson Chungb745afb2015-03-02 11:51:23 -08003207 return isAppsViewVisible();
3208 }
3209
3210 public boolean isAppsViewVisible() {
3211 return (mState == State.APPS) || (mOnResumeState == State.APPS);
3212 }
3213
3214 public boolean isWidgetsViewVisible() {
3215 return (mState == State.WIDGETS) || (mOnResumeState == State.WIDGETS);
Joe Onoratofb0ca672009-09-14 17:55:46 -04003216 }
3217
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003218 private void setWorkspaceBackground(int background) {
3219 switch (background) {
3220 case WORKSPACE_BACKGROUND_TRANSPARENT:
3221 getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
3222 break;
3223 case WORKSPACE_BACKGROUND_BLACK:
3224 getWindow().setBackgroundDrawable(null);
3225 break;
3226 default:
3227 getWindow().setBackgroundDrawable(mWorkspaceBackgroundDrawable);
3228 }
Craig Mautner360310b2012-10-26 15:13:08 -07003229 }
3230
Selim Cinek3a8a8f72014-01-16 10:38:38 -08003231 protected void changeWallpaperVisiblity(boolean visible) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003232 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
3233 int curflags = getWindow().getAttributes().flags
3234 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
3235 if (wpflags != curflags) {
3236 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
3237 }
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003238 setWorkspaceBackground(visible ? WORKSPACE_BACKGROUND_GRADIENT : WORKSPACE_BACKGROUND_BLACK);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003239 }
3240
Michael Jurkae326f182011-11-21 14:05:46 -08003241 @Override
3242 public void onTrimMemory(int level) {
3243 super.onTrimMemory(level);
Adam Cohen3f9c9712014-10-31 11:48:25 -07003244 if (level >= ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
3245 // The widget preview db can result in holding onto over
3246 // 3MB of memory for caching which isn't necessary.
3247 SQLiteDatabase.releaseMemory();
3248
Adam Cohenc8f4e1b2014-11-19 16:03:20 -08003249 // This clears all widget bitmaps from the widget tray
Hyunyoung Song3f471442015-04-08 19:01:34 -07003250 // TODO(hyunyoungs)
Michael Jurkae326f182011-11-21 14:05:46 -08003251 }
Robert Kozikowski67c30862015-03-30 23:46:46 +01003252 if (mLauncherCallbacks != null) {
3253 mLauncherCallbacks.onTrimMemory(level);
3254 }
Michael Jurkae326f182011-11-21 14:05:46 -08003255 }
3256
Winson Chungb745afb2015-03-02 11:51:23 -08003257 @Override
3258 public void onStateTransitionHideSearchBar() {
3259 // Hide the search bar
3260 if (mSearchDropTargetBar != null) {
3261 mSearchDropTargetBar.hideSearchBar(false /* animated */);
3262 }
Adam Cohened66b2b2012-01-23 17:28:51 -08003263 }
3264
Winson Chung5f4e0fd2015-05-22 11:12:27 -07003265 public void showWorkspace(boolean animated) {
Winson Chungef7f8742015-06-04 17:18:17 -07003266 showWorkspace(WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated, null);
Adam Cohened307df2013-10-02 09:37:31 -07003267 }
3268
Sunny Goyal83a8f042015-05-19 12:52:12 -07003269 public void showWorkspace(boolean animated, Runnable onCompleteRunnable) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003270 showWorkspace(WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated,
Winson Chungef7f8742015-06-04 17:18:17 -07003271 onCompleteRunnable);
Winson Chungdc61c4d2015-04-20 18:26:57 -07003272 }
3273
3274 protected void showWorkspace(int snapToPage, boolean animated) {
Winson Chungef7f8742015-06-04 17:18:17 -07003275 showWorkspace(snapToPage, animated, null);
Winson Chungdc61c4d2015-04-20 18:26:57 -07003276 }
3277
Winson Chungef7f8742015-06-04 17:18:17 -07003278 void showWorkspace(int snapToPage, boolean animated, Runnable onCompleteRunnable) {
Winson Chung0f785722015-04-08 10:27:49 -07003279 boolean changed = mState != State.WORKSPACE ||
3280 mWorkspace.getState() != Workspace.State.NORMAL;
3281 if (changed) {
Winson Chung2d75f122013-09-23 16:53:31 -07003282 boolean wasInSpringLoadedMode = (mState != State.WORKSPACE);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003283 mWorkspace.setVisibility(View.VISIBLE);
Winson Chungb745afb2015-03-02 11:51:23 -08003284 mStateTransitionAnimation.startAnimationToWorkspace(mState, Workspace.State.NORMAL,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003285 snapToPage, animated, onCompleteRunnable);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003286
Winson Chungc7d2b602012-05-16 17:02:20 -07003287 // Show the search bar (only animate if we were showing the drop target bar in spring
3288 // loaded mode)
Winson Chungadf0c182012-08-23 14:59:07 -07003289 if (mSearchDropTargetBar != null) {
Winson Chung04c0a5c2013-10-08 17:13:12 -07003290 mSearchDropTargetBar.showSearchBar(animated && wasInSpringLoadedMode);
Winson Chungadf0c182012-08-23 14:59:07 -07003291 }
Winson Chungc7d2b602012-05-16 17:02:20 -07003292
Michael Jurkab3e22d92011-10-31 15:58:33 -07003293 // Set focus to the AppsCustomize button
3294 if (mAllAppsButton != null) {
3295 mAllAppsButton.requestFocus();
3296 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003297 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07003298
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003299 // Change the state *after* we've called all the transition code
3300 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08003301
Winson Chung5fb63472011-02-02 17:03:37 -08003302 // Resume the auto-advance of widgets
3303 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08003304 updateAutoAdvanceState();
Winson Chung5fb63472011-02-02 17:03:37 -08003305
Winson Chung0f785722015-04-08 10:27:49 -07003306 if (changed) {
3307 // Send an accessibility event to announce the context change
3308 getWindow().getDecorView()
3309 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Winson Chung0f785722015-04-08 10:27:49 -07003310 }
Bjorn Bringertc459e522013-06-07 19:36:01 +01003311 }
3312
Adam Cohened307df2013-10-02 09:37:31 -07003313 void showOverviewMode(boolean animated) {
3314 mWorkspace.setVisibility(View.VISIBLE);
Winson Chungb745afb2015-03-02 11:51:23 -08003315 mStateTransitionAnimation.startAnimationToWorkspace(mState, Workspace.State.OVERVIEW,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003316 WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated,
3317 null /* onCompleteRunnable */);
Adam Cohened307df2013-10-02 09:37:31 -07003318 mState = State.WORKSPACE;
Joe Onorato00acb122009-08-04 16:04:30 -04003319 }
3320
Winson Chungb745afb2015-03-02 11:51:23 -08003321 /**
3322 * Shows the apps view.
3323 */
Winson Chung4ac30062015-05-08 17:34:17 -07003324 void showAppsView(boolean animated, boolean resetListToTop, boolean updatePredictedApps) {
Winson Chungb745afb2015-03-02 11:51:23 -08003325 if (resetListToTop) {
3326 mAppsView.scrollToTop();
3327 }
Winson Chung4ac30062015-05-08 17:34:17 -07003328 if (updatePredictedApps) {
3329 tryAndUpdatePredictedApps();
3330 }
Winson Chungb745afb2015-03-02 11:51:23 -08003331 showAppsOrWidgets(animated, State.APPS);
3332 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003333
Winson Chungb745afb2015-03-02 11:51:23 -08003334 /**
3335 * Shows the widgets view.
3336 */
3337 void showWidgetsView(boolean animated, boolean resetPageToZero) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003338 if (LOGD) Log.d(TAG, "showWidgetsView:" + animated + " resetPageToZero:" + resetPageToZero);
Winson Chung82963d52013-10-09 11:20:57 -07003339 if (resetPageToZero) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003340 mWidgetsView.scrollToTop();
Winson Chung82963d52013-10-09 11:20:57 -07003341 }
Winson Chungb745afb2015-03-02 11:51:23 -08003342 showAppsOrWidgets(animated, State.WIDGETS);
Hyunyoung Song3f471442015-04-08 19:01:34 -07003343
3344 mWidgetsView.post(new Runnable() {
Adam Cohendcc5e712014-06-23 15:38:55 -04003345 @Override
3346 public void run() {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003347 mWidgetsView.requestFocus();
Adam Cohendcc5e712014-06-23 15:38:55 -04003348 }
3349 });
Winson Chungb745afb2015-03-02 11:51:23 -08003350 }
3351
3352 /**
3353 * Sets up the transition to show the apps/widgets view.
Hyunyoung Songb7900832015-05-15 16:29:45 -07003354 *
3355 * @return whether the current from and to state allowed this operation
Winson Chungb745afb2015-03-02 11:51:23 -08003356 */
Hyunyoung Songb7900832015-05-15 16:29:45 -07003357 // TODO: calling method should use the return value so that when {@code false} is returned
3358 // the workspace transition doesn't fall into invalid state.
3359 private boolean showAppsOrWidgets(boolean animated, State toState) {
3360 if (mState != State.WORKSPACE && mState != State.APPS_SPRING_LOADED &&
3361 mState != State.WIDGETS_SPRING_LOADED) {
3362 return false;
3363 }
3364 if (toState != State.APPS && toState != State.WIDGETS) {
3365 return false;
3366 }
Winson Chungb745afb2015-03-02 11:51:23 -08003367
3368 if (toState == State.APPS) {
Winson Chungef7f8742015-06-04 17:18:17 -07003369 mStateTransitionAnimation.startAnimationToAllApps(mState, animated);
Winson Chungb745afb2015-03-02 11:51:23 -08003370 } else {
3371 mStateTransitionAnimation.startAnimationToWidgets(animated);
3372 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003373
Michael Jurkab3e22d92011-10-31 15:58:33 -07003374 // Change the state *after* we've called all the transition code
Winson Chungb745afb2015-03-02 11:51:23 -08003375 mState = toState;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003376
3377 // Pause the auto-advance of widgets until we are out of AllApps
3378 mUserPresent = false;
Winson Chungb745afb2015-03-02 11:51:23 -08003379 updateAutoAdvanceState();
Michael Jurkab3e22d92011-10-31 15:58:33 -07003380 closeFolder();
3381
3382 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07003383 getWindow().getDecorView()
3384 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Hyunyoung Songb7900832015-05-15 16:29:45 -07003385 return true;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003386 }
3387
Winson Chungcd99cd32015-04-29 11:03:24 -07003388 /**
3389 * Updates the workspace and interaction state on state change, and return the animation to this
3390 * new state.
3391 */
3392 public Animator startWorkspaceStateChangeAnimation(Workspace.State toState, int toPage,
Winson Chungef7f8742015-06-04 17:18:17 -07003393 boolean animated, boolean hasOverlaySearchBar, HashMap<View, Integer> layerViews) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003394 Workspace.State fromState = mWorkspace.getState();
Winson Chungef7f8742015-06-04 17:18:17 -07003395 Animator anim = mWorkspace.setStateWithAnimation(toState, toPage, animated,
3396 hasOverlaySearchBar, layerViews);
Winson Chungcd99cd32015-04-29 11:03:24 -07003397 updateInteraction(fromState, toState);
3398 return anim;
3399 }
3400
Hyunyoung Song3f471442015-04-08 19:01:34 -07003401 public void enterSpringLoadedDragMode() {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003402 if (LOGD) Log.d(TAG, String.format("enterSpringLoadedDragMode [mState=%s", mState.name()));
Winson Chungb745afb2015-03-02 11:51:23 -08003403 if (mState == State.WORKSPACE || mState == State.APPS_SPRING_LOADED ||
3404 mState == State.WIDGETS_SPRING_LOADED) {
3405 return;
Winson Chungb26f3d62011-06-02 10:49:29 -07003406 }
Winson Chungb745afb2015-03-02 11:51:23 -08003407
3408 mStateTransitionAnimation.startAnimationToWorkspace(mState, Workspace.State.SPRING_LOADED,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003409 WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, true /* animated */,
3410 null /* onCompleteRunnable */);
Winson Chungb745afb2015-03-02 11:51:23 -08003411 mState = isAppsViewVisible() ? State.APPS_SPRING_LOADED : State.WIDGETS_SPRING_LOADED;
Michael Jurkad3ef3062010-11-23 16:23:58 -08003412 }
Adam Cohen7777d962011-08-18 18:58:38 -07003413
Hyunyoung Song3f471442015-04-08 19:01:34 -07003414 public void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, int delay,
Adam Cohened66b2b2012-01-23 17:28:51 -08003415 final Runnable onCompleteRunnable) {
Winson Chungb745afb2015-03-02 11:51:23 -08003416 if (mState != State.APPS_SPRING_LOADED && mState != State.WIDGETS_SPRING_LOADED) return;
Winson Chung09bfc452011-09-09 11:30:20 -07003417
Winson Chunge7a03942011-08-05 15:05:12 -07003418 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07003419 @Override
3420 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003421 if (successfulDrop) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003422 // TODO(hyunyoungs): verify if this hack is still needed, if not, delete.
3423 //
Michael Jurka7bdb25a2011-08-03 15:16:44 -07003424 // Before we show workspace, hide all apps again because
3425 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
3426 // clean up our state transition functions
Hyunyoung Song3f471442015-04-08 19:01:34 -07003427 mWidgetsView.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003428 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07003429 } else {
3430 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003431 }
Winson Chung557d6ed2011-07-08 15:34:52 -07003432 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07003433 }, delay);
Winson Chung557d6ed2011-07-08 15:34:52 -07003434 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003435
Michael Jurkad3ef3062010-11-23 16:23:58 -08003436 void exitSpringLoadedDragMode() {
Winson Chungb745afb2015-03-02 11:51:23 -08003437 if (mState == State.APPS_SPRING_LOADED) {
Winson Chung4ac30062015-05-08 17:34:17 -07003438 showAppsView(true /* animated */, false /* resetListToTop */,
3439 false /* updatePredictedApps */);
Winson Chungb745afb2015-03-02 11:51:23 -08003440 } else if (mState == State.WIDGETS_SPRING_LOADED) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003441 showWidgetsView(true, false);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003442 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003443 }
3444
Winson Chung4ac30062015-05-08 17:34:17 -07003445 /**
3446 * Updates the set of predicted apps if it hasn't been updated since the last time Launcher was
3447 * resumed.
3448 */
3449 private void tryAndUpdatePredictedApps() {
3450 if (mLauncherCallbacks != null) {
3451 List<ComponentName> apps = mLauncherCallbacks.getPredictedApps();
3452 if (!apps.isEmpty()) {
3453 mAppsView.setPredictedApps(apps);
3454 }
3455 }
3456 }
3457
Michael Jurkab3e22d92011-10-31 15:58:33 -07003458 void lockAllApps() {
3459 // TODO
3460 }
3461
3462 void unlockAllApps() {
3463 // TODO
3464 }
3465
Sunny Goyal594d76d2014-11-06 10:12:54 -08003466 protected void disableVoiceButtonProxy(boolean disable) {
3467 // NO-OP
Winson Chungbb185bd2011-11-21 12:31:42 -08003468 }
3469
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003470 public View getOrCreateQsbBar() {
Adam Cohenc2d6e892014-10-16 09:49:24 -07003471 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
3472 return mLauncherCallbacks.getQsbBar();
Adam Cohen9211d422014-10-07 18:14:53 -07003473 }
3474
Adam Cohen24ce0b32014-01-14 16:18:14 -08003475 if (mQsb == null) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003476 AppWidgetProviderInfo searchProvider = Utilities.getSearchWidgetProvider(this);
3477 if (searchProvider == null) {
3478 return null;
3479 }
3480
3481 Bundle opts = new Bundle();
3482 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_HOST_CATEGORY,
Adam Coheneb8e2822015-02-20 16:38:48 +00003483 AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003484
3485 SharedPreferences sp = getSharedPreferences(
3486 LauncherAppState.getSharedPreferencesKey(), MODE_PRIVATE);
3487 int widgetId = sp.getInt(QSB_WIDGET_ID, -1);
Sunny Goyal416541c2014-11-14 11:59:57 -08003488 AppWidgetProviderInfo widgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003489 if (!searchProvider.provider.flattenToString().equals(
3490 sp.getString(QSB_WIDGET_PROVIDER, null))
Sunny Goyal416541c2014-11-14 11:59:57 -08003491 || (widgetInfo == null)
3492 || !widgetInfo.provider.equals(searchProvider.provider)) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003493 // A valid widget is not already bound.
3494 if (widgetId > -1) {
3495 mAppWidgetHost.deleteAppWidgetId(widgetId);
3496 widgetId = -1;
3497 }
3498
3499 // Try to bind a new widget
3500 widgetId = mAppWidgetHost.allocateAppWidgetId();
3501
3502 if (!AppWidgetManagerCompat.getInstance(this)
3503 .bindAppWidgetIdIfAllowed(widgetId, searchProvider, opts)) {
3504 mAppWidgetHost.deleteAppWidgetId(widgetId);
3505 widgetId = -1;
3506 }
3507
3508 sp.edit()
3509 .putInt(QSB_WIDGET_ID, widgetId)
3510 .putString(QSB_WIDGET_PROVIDER, searchProvider.provider.flattenToString())
3511 .commit();
3512 }
3513
3514 if (widgetId != -1) {
3515 mQsb = mAppWidgetHost.createView(this, widgetId, searchProvider);
3516 mQsb.updateAppWidgetOptions(opts);
3517 mQsb.setPadding(0, 0, 0, 0);
3518 mSearchDropTargetBar.addView(mQsb);
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003519 mSearchDropTargetBar.setQsbSearchBar(mQsb);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003520 }
Cristina Stancu476493b2013-08-07 17:20:14 +01003521 }
Adam Cohen24ce0b32014-01-14 16:18:14 -08003522 return mQsb;
Cristina Stancu476493b2013-08-07 17:20:14 +01003523 }
3524
Sunny Goyal22235bc2015-04-03 09:23:43 -07003525 private void reinflateQSBIfNecessary() {
3526 if (mQsb instanceof LauncherAppWidgetHostView &&
3527 ((LauncherAppWidgetHostView) mQsb).isReinflateRequired()) {
3528 mSearchDropTargetBar.removeView(mQsb);
3529 mQsb = null;
3530 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
3531 }
3532 }
3533
Michael Jurkad7c28052012-04-27 15:43:36 -07003534 @Override
3535 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07003536 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07003537 final List<CharSequence> text = event.getText();
3538 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07003539 // Populate event with a fake title based on the current state.
Winson Chungb745afb2015-03-02 11:51:23 -08003540 if (mState == State.APPS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003541 text.add(getString(R.string.all_apps_button_label));
Winson Chungb745afb2015-03-02 11:51:23 -08003542 } else if (mState == State.WIDGETS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003543 text.add(getString(R.string.widget_button_text));
alanv1d4fde62012-10-17 13:15:47 -07003544 } else {
3545 text.add(getString(R.string.all_apps_home_button_label));
3546 }
Michael Jurkad7c28052012-04-27 15:43:36 -07003547 return result;
3548 }
3549
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003550 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003551 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003552 */
Adam Cohen091440a2015-03-18 14:16:05 -07003553 @Thunk class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003554 @Override
3555 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003556 closeSystemDialogs();
3557 }
3558 }
3559
3560 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07003561 * If the activity is currently paused, signal that we need to run the passed Runnable
3562 * in onResume.
3563 *
3564 * This needs to be called from incoming places where resources might have been loaded
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003565 * while the activity is paused. That is because the Configuration (e.g., rotation) might be
3566 * wrong when we're not running, and if the activity comes back to what the configuration was
3567 * when we were paused, activity is not restarted.
Michael Jurka7607c2f2013-04-03 14:33:19 -07003568 *
3569 * Implementation of the method from LauncherModel.Callbacks.
3570 *
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003571 * @return {@code true} if we are currently paused. The caller might be able to skip some work
Michael Jurka7607c2f2013-04-03 14:33:19 -07003572 */
Rahul Chaturvedi799aa042015-06-01 21:26:41 -04003573 @Thunk boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003574 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003575 if (LOGD) Log.d(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02003576 if (deletePreviousRunnables) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07003577 while (mBindOnResumeCallbacks.remove(run)) {
Michael Jurkac402cd92013-05-20 15:49:32 +02003578 }
3579 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07003580 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07003581 return true;
3582 } else {
3583 return false;
3584 }
3585 }
3586
Michael Jurkac402cd92013-05-20 15:49:32 +02003587 private boolean waitUntilResume(Runnable run) {
3588 return waitUntilResume(run, false);
3589 }
3590
Michael Jurka1e2f4652013-07-08 18:03:46 -07003591 public void addOnResumeCallback(Runnable run) {
Michael Jurka54554252013-08-01 12:52:23 +02003592 mOnResumeCallbacks.add(run);
Michael Jurka1e2f4652013-07-08 18:03:46 -07003593 }
3594
Michael Jurka7607c2f2013-04-03 14:33:19 -07003595 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003596 * If the activity is currently paused, signal that we need to re-run the loader
3597 * in onResume.
3598 *
3599 * This needs to be called from incoming places where resources might have been loaded
3600 * while we are paused. That is becaues the Configuration might be wrong
3601 * when we're not running, and if it comes back to what it was when we
3602 * were paused, we are not restarted.
3603 *
3604 * Implementation of the method from LauncherModel.Callbacks.
3605 *
3606 * @return true if we are currently paused. The caller might be able to
3607 * skip some work in that case since we will come back again.
3608 */
3609 public boolean setLoadOnResume() {
3610 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003611 if (LOGD) Log.d(TAG, "setLoadOnResume");
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003612 mOnResumeNeedsLoad = true;
3613 return true;
3614 } else {
3615 return false;
3616 }
3617 }
3618
3619 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003620 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003621 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003622 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003623 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003624 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003625 } else {
3626 return SCREEN_COUNT / 2;
3627 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003628 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003629
Joe Onorato9c1289c2009-08-17 11:03:03 -04003630 /**
3631 * Refreshes the shortcuts shown on the workspace.
3632 *
3633 * Implementation of the method from LauncherModel.Callbacks.
3634 */
3635 public void startBinding() {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07003636 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08003637
Michael Jurka7607c2f2013-04-03 14:33:19 -07003638 // If we're starting binding all over again, clear any bind calls we'd postponed in
3639 // the past (see waitUntilResume) -- we don't need them since we're starting binding
3640 // from scratch again
Michael Jurka1e2f4652013-07-08 18:03:46 -07003641 mBindOnResumeCallbacks.clear();
Adam Cohendf035382011-04-11 17:22:04 -07003642
Winson Chungd64d1762013-08-20 14:37:16 -07003643 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07003644 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07003645 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07003646
Michael Jurka05bf6442011-11-30 20:28:53 -08003647 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003648 if (mHotseat != null) {
3649 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003650 }
3651 }
3652
Adam Cohendcd297f2013-06-18 13:13:40 -07003653 @Override
3654 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Winson Chung64359a52013-07-08 17:17:08 -07003655 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07003656
Adam Cohen5084cba2013-09-03 12:01:16 -07003657 // If there are no screens, we need to have an empty screen
3658 if (orderedScreenIds.size() == 0) {
3659 mWorkspace.addExtraEmptyScreen();
3660 }
Winson Chung0e6a7132013-08-23 12:55:10 -07003661
3662 // Create the custom content page (this call updates mDefaultScreen which calls
Dave Hawkeya8881582013-09-17 15:55:33 -06003663 // setCurrentPage() so ensure that all pages are added before calling this).
Derek Prothrodadd9842014-01-17 13:43:50 -05003664 if (hasCustomContentToLeft()) {
3665 mWorkspace.createCustomContentContainer();
3666 populateCustomContentContainer();
Winson Chung0e6a7132013-08-23 12:55:10 -07003667 }
Winson Chung64359a52013-07-08 17:17:08 -07003668 }
3669
3670 @Override
3671 public void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Adam Cohendcd297f2013-06-18 13:13:40 -07003672 int count = orderedScreenIds.size();
3673 for (int i = 0; i < count; i++) {
Adam Cohen89bddfa2013-08-20 11:57:13 -07003674 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(orderedScreenIds.get(i));
Adam Cohendcd297f2013-06-18 13:13:40 -07003675 }
Adam Cohendcd297f2013-06-18 13:13:40 -07003676 }
3677
Adam Cohen39a06042013-07-19 14:30:12 -07003678 private boolean shouldShowWeightWatcher() {
3679 String spKey = LauncherAppState.getSharedPreferencesKey();
3680 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
Daniel Sandler6053b802013-08-15 15:44:26 -07003681 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, SHOW_WEIGHT_WATCHER_DEFAULT);
Adam Cohen39a06042013-07-19 14:30:12 -07003682
3683 return show;
3684 }
3685
3686 private void toggleShowWeightWatcher() {
3687 String spKey = LauncherAppState.getSharedPreferencesKey();
3688 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
3689 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, true);
3690
3691 show = !show;
3692
3693 SharedPreferences.Editor editor = sp.edit();
3694 editor.putBoolean(SHOW_WEIGHT_WATCHER, show);
3695 editor.commit();
3696
3697 if (mWeightWatcher != null) {
3698 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
3699 }
3700 }
3701
Winson Chungd64d1762013-08-20 14:37:16 -07003702 public void bindAppsAdded(final ArrayList<Long> newScreens,
3703 final ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -07003704 final ArrayList<ItemInfo> addAnimated,
3705 final ArrayList<AppInfo> addedApps) {
Winson Chungd64d1762013-08-20 14:37:16 -07003706 Runnable r = new Runnable() {
3707 public void run() {
Winson Chungc58497e2013-09-03 17:48:37 -07003708 bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps);
Winson Chungd64d1762013-08-20 14:37:16 -07003709 }
3710 };
3711 if (waitUntilResume(r)) {
3712 return;
3713 }
3714
Winson Chungd64d1762013-08-20 14:37:16 -07003715 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08003716 if (newScreens != null) {
3717 bindAddScreens(newScreens);
3718 }
Winson Chungd64d1762013-08-20 14:37:16 -07003719
3720 // We add the items without animation on non-visible pages, and with
3721 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08003722 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003723 bindItems(addNotAnimated, 0,
3724 addNotAnimated.size(), false);
3725 }
Adam Cohen76a47a12014-02-05 11:47:43 -08003726 if (addAnimated != null && !addAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003727 bindItems(addAnimated, 0,
3728 addAnimated.size(), true);
3729 }
Winson Chungc58497e2013-09-03 17:48:37 -07003730
Winson Chung87412982013-10-03 18:34:14 -07003731 // Remove the extra empty screen
Adam Cohen689ff162014-05-08 17:27:56 -07003732 mWorkspace.removeExtraEmptyScreen(false, false);
Winson Chung87412982013-10-03 18:34:14 -07003733
Winson Chungb745afb2015-03-02 11:51:23 -08003734 if (addedApps != null && mAppsView != null) {
3735 mAppsView.addApps(addedApps);
Winson Chungc58497e2013-09-03 17:48:37 -07003736 }
Winson Chungd64d1762013-08-20 14:37:16 -07003737 }
3738
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003739 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003740 * Bind the items start-end from the list.
3741 *
3742 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003743 */
Winson Chung64359a52013-07-08 17:17:08 -07003744 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end,
3745 final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07003746 Runnable r = new Runnable() {
3747 public void run() {
3748 bindItems(shortcuts, start, end, forceAnimateIcons);
3749 }
3750 };
3751 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003752 return;
3753 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003754
Winson Chungf0c6ae02012-03-21 16:10:31 -07003755 // Get the list of added shortcuts and intersect them with the set of shortcuts here
Winson Chung64359a52013-07-08 17:17:08 -07003756 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
3757 final Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chung997a9232013-07-24 15:33:46 -07003758 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07003759 Workspace workspace = mWorkspace;
Winson Chung997a9232013-07-24 15:33:46 -07003760 long newShortcutsScreenId = -1;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003761 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003762 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003763
3764 // Short circuit if we are loading dock items for a configuration which has no dock
3765 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3766 mHotseat == null) {
3767 continue;
3768 }
3769
Joe Onorato9c1289c2009-08-17 11:03:03 -04003770 switch (item.itemType) {
3771 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3772 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07003773 ShortcutInfo info = (ShortcutInfo) item;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003774 View shortcut = createShortcut(info);
Adam Cohendcd297f2013-06-18 13:13:40 -07003775
Winson Chung64359a52013-07-08 17:17:08 -07003776 /*
3777 * TODO: FIX collision case
3778 */
Winson Chungce376632013-07-11 16:12:41 -07003779 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
3780 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
3781 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07003782 View v = cl.getChildAt(item.cellX, item.cellY);
3783 Object tag = v.getTag();
3784 String desc = "Collision while binding workspace item: " + item
3785 + ". Collides with " + tag;
3786 if (LauncherAppState.isDogfoodBuild()) {
3787 throw (new RuntimeException(desc));
3788 } else {
3789 Log.d(TAG, desc);
3790 }
Winson Chungce376632013-07-11 16:12:41 -07003791 }
Winson Chung64359a52013-07-08 17:17:08 -07003792 }
3793
Adam Cohendcd297f2013-06-18 13:13:40 -07003794 workspace.addInScreenFromBind(shortcut, item.container, item.screenId, item.cellX,
3795 item.cellY, 1, 1);
Winson Chung997a9232013-07-24 15:33:46 -07003796 if (animateIcons) {
Winson Chung64359a52013-07-08 17:17:08 -07003797 // Animate all the applications up now
3798 shortcut.setAlpha(0f);
3799 shortcut.setScaleX(0f);
3800 shortcut.setScaleY(0f);
3801 bounceAnims.add(createNewAppBounceAnimation(shortcut, i));
Winson Chung997a9232013-07-24 15:33:46 -07003802 newShortcutsScreenId = item.screenId;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003803 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003804 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003805 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Winson Chung3d503fb2011-07-13 17:25:49 -07003806 FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003807 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003808 (FolderInfo) item, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07003809 workspace.addInScreenFromBind(newFolder, item.container, item.screenId, item.cellX,
3810 item.cellY, 1, 1);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003811 break;
Winson Chungc763c4e2013-07-19 13:49:06 -07003812 default:
3813 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04003814 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003815 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003816
Winson Chung997a9232013-07-24 15:33:46 -07003817 if (animateIcons) {
3818 // Animate to the correct page
3819 if (newShortcutsScreenId > -1) {
3820 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Winson Chung94d67682013-09-25 16:29:40 -07003821 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId);
Winson Chungb2323832013-10-03 15:22:09 -07003822 final Runnable startBounceAnimRunnable = new Runnable() {
3823 public void run() {
3824 anim.playTogether(bounceAnims);
3825 anim.start();
3826 }
3827 };
Winson Chung997a9232013-07-24 15:33:46 -07003828 if (newShortcutsScreenId != currentScreenId) {
Winson Chung94d67682013-09-25 16:29:40 -07003829 // We post the animation slightly delayed to prevent slowdowns
3830 // when we are loading right after we return to launcher.
3831 mWorkspace.postDelayed(new Runnable() {
3832 public void run() {
Ian Parkinson94449152014-01-21 13:09:59 +00003833 if (mWorkspace != null) {
3834 mWorkspace.snapToPage(newScreenIndex);
3835 mWorkspace.postDelayed(startBounceAnimRunnable,
3836 NEW_APPS_ANIMATION_DELAY);
3837 }
Winson Chung94d67682013-09-25 16:29:40 -07003838 }
3839 }, NEW_APPS_PAGE_MOVE_DELAY);
Winson Chungb2323832013-10-03 15:22:09 -07003840 } else {
3841 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07003842 }
3843 }
Winson Chung64359a52013-07-08 17:17:08 -07003844 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003845 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003846 }
3847
Joe Onorato9c1289c2009-08-17 11:03:03 -04003848 /**
3849 * Implementation of the method from LauncherModel.Callbacks.
3850 */
Sunny Goyale2df0622015-04-24 11:27:00 -07003851 public void bindFolders(final LongArrayMap<FolderInfo> folders) {
Winson Chungd64d1762013-08-20 14:37:16 -07003852 Runnable r = new Runnable() {
3853 public void run() {
3854 bindFolders(folders);
3855 }
3856 };
3857 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003858 return;
3859 }
Sunny Goyale2df0622015-04-24 11:27:00 -07003860 sFolders = folders.clone();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003861 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003862
3863 /**
3864 * Add the views for a widget to the workspace.
3865 *
3866 * Implementation of the method from LauncherModel.Callbacks.
3867 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07003868 public void bindAppWidget(final LauncherAppWidgetInfo item) {
Winson Chungd64d1762013-08-20 14:37:16 -07003869 Runnable r = new Runnable() {
3870 public void run() {
3871 bindAppWidget(item);
3872 }
3873 };
3874 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003875 return;
3876 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003877
Daniel Sandler843e8602010-06-07 14:59:01 -04003878 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
3879 if (DEBUG_WIDGETS) {
3880 Log.d(TAG, "bindAppWidget: " + item);
3881 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003882 final Workspace workspace = mWorkspace;
3883
Adam Cohen59400422014-03-05 18:07:04 -08003884 LauncherAppWidgetProviderInfo appWidgetInfo =
Robin Lee26ace122015-03-16 19:41:43 +00003885 LauncherModel.getProviderInfo(this, item.providerName, item.user);
Adam Cohen59400422014-03-05 18:07:04 -08003886
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003887 if (!mIsSafeModeEnabled
3888 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY) == 0)
3889 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_ID_NOT_VALID) != 0)) {
Sunny Goyalff572272014-07-23 13:58:07 -07003890 if (appWidgetInfo == null) {
3891 if (DEBUG_WIDGETS) {
3892 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3893 + " belongs to component " + item.providerName
3894 + ", as the povider is null");
3895 }
3896 LauncherModel.deleteItemFromDatabase(this, item);
3897 return;
3898 }
3899 // Note: This assumes that the id remap broadcast is received before this step.
3900 // If that is not the case, the id remap will be ignored and user may see the
3901 // click to setup view.
Adam Cohen2e6da152015-05-06 11:42:25 -07003902 PendingAddWidgetInfo pendingInfo = new PendingAddWidgetInfo(this, appWidgetInfo, null);
Sunny Goyalff572272014-07-23 13:58:07 -07003903 pendingInfo.spanX = item.spanX;
3904 pendingInfo.spanY = item.spanY;
3905 pendingInfo.minSpanX = item.minSpanX;
3906 pendingInfo.minSpanY = item.minSpanY;
Hyunyoung Song3f471442015-04-08 19:01:34 -07003907 Bundle options = null;
Hyunyoung Songb99ff3e2015-04-23 15:17:50 -07003908 WidgetHostViewLoader.getDefaultOptionsForWidget(this, pendingInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07003909
Sunny Goyalff572272014-07-23 13:58:07 -07003910 int newWidgetId = mAppWidgetHost.allocateAppWidgetId();
Sunny Goyalffe83f12014-08-14 17:39:34 -07003911 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
3912 newWidgetId, appWidgetInfo, options);
Sunny Goyalff572272014-07-23 13:58:07 -07003913
3914 // TODO consider showing a permission dialog when the widget is clicked.
3915 if (!success) {
3916 mAppWidgetHost.deleteAppWidgetId(newWidgetId);
3917 if (DEBUG_WIDGETS) {
3918 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3919 + " belongs to component " + item.providerName
3920 + ", as the launcher is unable to bing a new widget id");
3921 }
3922 LauncherModel.deleteItemFromDatabase(this, item);
3923 return;
3924 }
3925
3926 item.appWidgetId = newWidgetId;
3927
3928 // If the widget has a configure activity, it is still needs to set it up, otherwise
3929 // the widget is ready to go.
3930 item.restoreStatus = (appWidgetInfo.configure == null)
3931 ? LauncherAppWidgetInfo.RESTORE_COMPLETED
3932 : LauncherAppWidgetInfo.FLAG_UI_NOT_READY;
3933
3934 LauncherModel.updateItemInDatabase(this, item);
3935 }
3936
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003937 if (!mIsSafeModeEnabled && item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
Sunny Goyal651077b2014-06-30 14:15:31 -07003938 final int appWidgetId = item.appWidgetId;
Sunny Goyal651077b2014-06-30 14:15:31 -07003939 if (DEBUG_WIDGETS) {
Adam Cohen59400422014-03-05 18:07:04 -08003940 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component "
3941 + appWidgetInfo.provider);
Sunny Goyal651077b2014-06-30 14:15:31 -07003942 }
Daniel Sandler843e8602010-06-07 14:59:01 -04003943
Sunny Goyal651077b2014-06-30 14:15:31 -07003944 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
3945 } else {
3946 appWidgetInfo = null;
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003947 PendingAppWidgetHostView view = new PendingAppWidgetHostView(this, item,
3948 mIsSafeModeEnabled);
Sunny Goyal0fc1be12014-08-11 17:05:23 -07003949 view.updateIcon(mIconCache);
3950 item.hostView = view;
Sunny Goyal651077b2014-06-30 14:15:31 -07003951 item.hostView.updateAppWidget(null);
Sunny Goyalff572272014-07-23 13:58:07 -07003952 item.hostView.setOnClickListener(this);
Sunny Goyal651077b2014-06-30 14:15:31 -07003953 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003954
Joe Onorato9c1289c2009-08-17 11:03:03 -04003955 item.hostView.setTag(item);
Winson Chung211bac32012-05-15 13:43:57 -07003956 item.onBindAppWidget(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003957
Adam Cohendcd297f2013-06-18 13:13:40 -07003958 workspace.addInScreen(item.hostView, item.container, item.screenId, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04003959 item.cellY, item.spanX, item.spanY, false);
Adam Cohen59400422014-03-05 18:07:04 -08003960 if (!item.isCustomWidget()) {
3961 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
3962 }
Adam Cohended9f8d2010-11-03 13:25:16 -07003963
Joe Onorato9c1289c2009-08-17 11:03:03 -04003964 workspace.requestLayout();
3965
Daniel Sandler843e8602010-06-07 14:59:01 -04003966 if (DEBUG_WIDGETS) {
3967 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
3968 + (SystemClock.uptimeMillis()-start) + "ms");
3969 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003970 }
3971
Sunny Goyalff572272014-07-23 13:58:07 -07003972 /**
3973 * Restores a pending widget.
3974 *
3975 * @param appWidgetId The app widget id
3976 * @param cellInfo The position on screen where to create the widget.
3977 */
3978 private void completeRestoreAppWidget(final int appWidgetId) {
3979 LauncherAppWidgetHostView view = mWorkspace.getWidgetForAppWidgetId(appWidgetId);
3980 if ((view == null) || !(view instanceof PendingAppWidgetHostView)) {
3981 Log.e(TAG, "Widget update called, when the widget no longer exists.");
3982 return;
3983 }
3984
Sunny Goyal0fc1be12014-08-11 17:05:23 -07003985 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) view.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07003986 info.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
3987
3988 mWorkspace.reinflateWidgetsIfNecessary();
3989 LauncherModel.updateItemInDatabase(this, info);
3990 }
3991
Adam Cohen1462de32012-07-24 22:34:36 -07003992 public void onPageBoundSynchronously(int page) {
3993 mSynchronouslyBoundPages.add(page);
3994 }
3995
Joe Onorato9c1289c2009-08-17 11:03:03 -04003996 /**
3997 * Callback saying that there aren't any more items to bind.
3998 *
3999 * Implementation of the method from LauncherModel.Callbacks.
4000 */
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004001 public void finishBindingItems() {
Winson Chungd64d1762013-08-20 14:37:16 -07004002 Runnable r = new Runnable() {
4003 public void run() {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004004 finishBindingItems();
Winson Chungd64d1762013-08-20 14:37:16 -07004005 }
4006 };
4007 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004008 return;
4009 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004010 if (mSavedState != null) {
4011 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07004012 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004013 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004014 mSavedState = null;
4015 }
4016
Adam Cohen1462de32012-07-24 22:34:36 -07004017 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004018
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004019 setWorkspaceLoading(false);
Adam Cohen3ed316a2014-07-23 18:21:20 -07004020 sendLoadingCompleteBroadcastIfNecessary();
Adam Cohendb364c32014-05-20 14:23:40 -07004021
4022 // If we received the result of any pending adds while the loader was running (e.g. the
4023 // widget configuration forced an orientation change), process them now.
4024 if (sPendingAddItem != null) {
4025 final long screenId = completeAdd(sPendingAddItem);
4026
4027 // TODO: this moves the user to the page where the pending item was added. Ideally,
4028 // the screen would be guaranteed to exist after bind, and the page would be set through
4029 // the workspace restore process.
4030 mWorkspace.post(new Runnable() {
4031 @Override
4032 public void run() {
4033 mWorkspace.snapToScreenId(screenId);
4034 }
4035 });
4036 sPendingAddItem = null;
4037 }
4038
Sunny Goyal756adbc2015-04-16 15:20:51 -07004039 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
Adam Cohen9211d422014-10-07 18:14:53 -07004040
4041 if (mLauncherCallbacks != null) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004042 mLauncherCallbacks.finishBindingItems(false);
Adam Cohen9211d422014-10-07 18:14:53 -07004043 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004044 }
4045
Adam Cohen3ed316a2014-07-23 18:21:20 -07004046 private void sendLoadingCompleteBroadcastIfNecessary() {
4047 if (!mSharedPrefs.getBoolean(FIRST_LOAD_COMPLETE, false)) {
4048 String permission =
4049 getResources().getString(R.string.receive_first_load_broadcast_permission);
4050 Intent intent = new Intent(ACTION_FIRST_LOAD_COMPLETE);
4051 sendBroadcast(intent, permission);
4052 SharedPreferences.Editor editor = mSharedPrefs.edit();
4053 editor.putBoolean(FIRST_LOAD_COMPLETE, true);
4054 editor.apply();
4055 }
4056 }
4057
Winson Chunga0b7e862013-09-05 16:03:15 -07004058 public boolean isAllAppsButtonRank(int rank) {
4059 if (mHotseat != null) {
4060 return mHotseat.isAllAppsButtonRank(rank);
4061 }
4062 return false;
4063 }
4064
Winson Chunga2413752012-04-03 14:22:34 -07004065 private boolean canRunNewAppsAnimation() {
4066 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
4067 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000);
4068 }
4069
Winson Chungc9168342013-06-26 14:54:55 -07004070 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
4071 ValueAnimator bounceAnim = LauncherAnimUtils.ofPropertyValuesHolder(v,
4072 PropertyValuesHolder.ofFloat("alpha", 1f),
4073 PropertyValuesHolder.ofFloat("scaleX", 1f),
4074 PropertyValuesHolder.ofFloat("scaleY", 1f));
4075 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
4076 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
Sunny Goyal5a1f53b2015-05-27 10:24:24 -07004077 bounceAnim.setInterpolator(new OvershootInterpolator(BOUNCE_ANIMATION_TENSION));
Winson Chungc9168342013-06-26 14:54:55 -07004078 return bounceAnim;
4079 }
4080
Adam Cohen27772732013-11-11 14:00:56 +00004081 public boolean useVerticalBarLayout() {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07004082 return mDeviceProfile.isVerticalBarLayout();
Adam Cohen27772732013-11-11 14:00:56 +00004083 }
4084
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004085 protected Rect getSearchBarBounds() {
Sunny Goyalc6205602015-05-21 20:46:33 -07004086 return mDeviceProfile.getSearchBarBounds(Utilities.isRtl(getResources()));
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004087 }
4088
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004089 public void bindSearchablesChanged() {
Sunny Goyal594d76d2014-11-06 10:12:54 -08004090 if (mSearchDropTargetBar == null) {
4091 return;
Winson Chungadf0c182012-08-23 14:59:07 -07004092 }
Sunny Goyal594d76d2014-11-06 10:12:54 -08004093 if (mQsb != null) {
4094 mSearchDropTargetBar.removeView(mQsb);
4095 mQsb = null;
4096 }
Adam Cohenb0df1b02015-03-18 22:21:40 -07004097 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004098 }
4099
Amith Yamasani6d7fe502010-11-16 09:05:07 -08004100 /**
Winson Chungbb785c62015-05-05 10:05:08 -07004101 * A runnable that we can dequeue and re-enqueue when all applications are bound (to prevent
4102 * multiple calls to bind the same list.)
4103 */
4104 @Thunk ArrayList<AppInfo> mTmpAppsList;
4105 private Runnable mBindAllApplicationsRunnable = new Runnable() {
4106 public void run() {
4107 bindAllApplications(mTmpAppsList);
4108 mTmpAppsList = null;
4109 }
4110 };
4111
4112 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004113 * Add the icons for all apps.
4114 *
4115 * Implementation of the method from LauncherModel.Callbacks.
4116 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004117 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Winson Chungbb785c62015-05-05 10:05:08 -07004118 if (waitUntilResume(mBindAllApplicationsRunnable, true)) {
4119 mTmpAppsList = apps;
4120 return;
4121 }
4122
Winson Chungb745afb2015-03-02 11:51:23 -08004123 if (mAppsView != null) {
4124 mAppsView.setApps(apps);
4125 }
Adam Cohen9211d422014-10-07 18:14:53 -07004126 if (mLauncherCallbacks != null) {
4127 mLauncherCallbacks.bindAllApplications(apps);
4128 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004129 }
4130
4131 /**
4132 * A package was updated.
4133 *
4134 * Implementation of the method from LauncherModel.Callbacks.
4135 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004136 public void bindAppsUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004137 Runnable r = new Runnable() {
4138 public void run() {
4139 bindAppsUpdated(apps);
4140 }
4141 };
4142 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004143 return;
4144 }
4145
Winson Chungb745afb2015-03-02 11:51:23 -08004146 if (mAppsView != null) {
4147 mAppsView.updateApps(apps);
Winson Chungc58497e2013-09-03 17:48:37 -07004148 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004149 }
4150
Sunny Goyal4390ace2014-10-13 11:33:11 -07004151 @Override
4152 public void bindWidgetsRestored(final ArrayList<LauncherAppWidgetInfo> widgets) {
4153 Runnable r = new Runnable() {
4154 public void run() {
4155 bindWidgetsRestored(widgets);
4156 }
4157 };
4158 if (waitUntilResume(r)) {
4159 return;
4160 }
4161 mWorkspace.widgetsRestored(widgets);
4162 }
4163
Joe Onorato9c1289c2009-08-17 11:03:03 -04004164 /**
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004165 * Some shortcuts were updated in the background.
4166 *
4167 * Implementation of the method from LauncherModel.Callbacks.
4168 */
Sunny Goyal4390ace2014-10-13 11:33:11 -07004169 @Override
4170 public void bindShortcutsChanged(final ArrayList<ShortcutInfo> updated,
4171 final ArrayList<ShortcutInfo> removed, final UserHandleCompat user) {
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004172 Runnable r = new Runnable() {
4173 public void run() {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004174 bindShortcutsChanged(updated, removed, user);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004175 }
4176 };
4177 if (waitUntilResume(r)) {
4178 return;
4179 }
4180
Sunny Goyal4390ace2014-10-13 11:33:11 -07004181 if (!updated.isEmpty()) {
4182 mWorkspace.updateShortcuts(updated);
4183 }
4184
4185 if (!removed.isEmpty()) {
4186 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4187 for (ShortcutInfo si : removed) {
4188 removedComponents.add(si.getTargetComponent());
4189 }
4190 mWorkspace.removeItemsByComponentName(removedComponents, user);
4191 // Notify the drag controller
4192 mDragController.onAppsRemoved(new ArrayList<String>(), removedComponents);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004193 }
4194 }
4195
4196 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004197 * Update the state of a package, typically related to install state.
4198 *
4199 * Implementation of the method from LauncherModel.Callbacks.
4200 */
Sunny Goyale755d462014-07-22 13:48:29 -07004201 @Override
Sunny Goyal756adbc2015-04-16 15:20:51 -07004202 public void bindRestoreItemsChange(final HashSet<ItemInfo> updates) {
4203 Runnable r = new Runnable() {
4204 public void run() {
4205 bindRestoreItemsChange(updates);
4206 }
4207 };
4208 if (waitUntilResume(r)) {
4209 return;
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004210 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004211
Sunny Goyal756adbc2015-04-16 15:20:51 -07004212 mWorkspace.updateRestoreItems(updates);
Sunny Goyala22666f2014-09-18 13:25:15 -07004213 }
4214
4215 /**
Winson Chung83892cc2013-05-01 16:53:33 -07004216 * A package was uninstalled. We take both the super set of packageNames
4217 * in addition to specific applications to remove, the reason being that
4218 * this can be called when a package is updated as well. In that scenario,
4219 * we only remove specific components from the workspace, where as
4220 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004221 *
Sunny Goyal1a745e82014-10-02 15:58:31 -07004222 * @param reason if non-zero, the icons are not permanently removed, rather marked as disabled.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004223 * Implementation of the method from LauncherModel.Callbacks.
4224 */
Sunny Goyal1a745e82014-10-02 15:58:31 -07004225 @Override
Winson Chung83892cc2013-05-01 16:53:33 -07004226 public void bindComponentsRemoved(final ArrayList<String> packageNames,
Sunny Goyal1a745e82014-10-02 15:58:31 -07004227 final ArrayList<AppInfo> appInfos, final UserHandleCompat user, final int reason) {
Winson Chungd64d1762013-08-20 14:37:16 -07004228 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004229 public void run() {
Sunny Goyal1a745e82014-10-02 15:58:31 -07004230 bindComponentsRemoved(packageNames, appInfos, user, reason);
Winson Chung83892cc2013-05-01 16:53:33 -07004231 }
Winson Chungd64d1762013-08-20 14:37:16 -07004232 };
4233 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07004234 return;
4235 }
4236
Sunny Goyal1a745e82014-10-02 15:58:31 -07004237 if (reason == 0) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004238 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4239 for (AppInfo info : appInfos) {
4240 removedComponents.add(info.componentName);
4241 }
Sunny Goyal1a745e82014-10-02 15:58:31 -07004242 if (!packageNames.isEmpty()) {
4243 mWorkspace.removeItemsByPackageName(packageNames, user);
4244 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004245 if (!removedComponents.isEmpty()) {
4246 mWorkspace.removeItemsByComponentName(removedComponents, user);
Sunny Goyal1a745e82014-10-02 15:58:31 -07004247 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004248 // Notify the drag controller
4249 mDragController.onAppsRemoved(packageNames, removedComponents);
4250
Sunny Goyal1a745e82014-10-02 15:58:31 -07004251 } else {
4252 mWorkspace.disableShortcutsByPackageName(packageNames, user, reason);
Joe Onorato36115782010-06-17 13:28:48 -04004253 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07004254
Winson Chungdf95eb12013-10-16 14:57:07 -07004255 // Update AllApps
Winson Chungb745afb2015-03-02 11:51:23 -08004256 if (mAppsView != null) {
4257 mAppsView.removeApps(appInfos);
Winson Chungc58497e2013-09-03 17:48:37 -07004258 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004259 }
Joe Onoratobe386092009-11-17 17:32:16 -08004260
Michael Jurkac402cd92013-05-20 15:49:32 +02004261 private Runnable mBindPackagesUpdatedRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004262 public void run() {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004263 bindAllPackages(mWidgetsModel);
Winson Chung83892cc2013-05-01 16:53:33 -07004264 }
Michael Jurkac402cd92013-05-20 15:49:32 +02004265 };
Hyunyoung Song3f471442015-04-08 19:01:34 -07004266
Hyunyoung Song8821ca92015-05-04 16:28:20 -07004267 @Override
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004268 public void bindAllPackages(final WidgetsModel model) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004269 if (waitUntilResume(mBindPackagesUpdatedRunnable, true)) {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004270 mWidgetsModel = model;
Winson Chung83892cc2013-05-01 16:53:33 -07004271 return;
4272 }
4273
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004274 if (mWidgetsView != null && model != null) {
4275 mWidgetsView.addWidgets(model);
4276 mWidgetsModel = null;
Winson Chung785d2eb2011-04-14 16:08:02 -07004277 }
Winson Chung80baf5a2010-08-09 16:03:15 -07004278 }
4279
Winson Chung400438b2011-01-16 17:53:48 -08004280 private int mapConfigurationOriActivityInfoOri(int configOri) {
4281 final Display d = getWindowManager().getDefaultDisplay();
4282 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
4283 switch (d.getRotation()) {
4284 case Surface.ROTATION_0:
4285 case Surface.ROTATION_180:
4286 // We are currently in the same basic orientation as the natural orientation
4287 naturalOri = configOri;
4288 break;
4289 case Surface.ROTATION_90:
4290 case Surface.ROTATION_270:
4291 // We are currently in the other basic orientation to the natural orientation
4292 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
4293 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
4294 break;
4295 }
4296
4297 int[] oriMap = {
4298 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
4299 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
4300 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
4301 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
4302 };
4303 // Since the map starts at portrait, we need to offset if this device's natural orientation
4304 // is landscape.
4305 int indexOffset = 0;
4306 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
4307 indexOffset = 1;
4308 }
4309 return oriMap[(d.getRotation() + indexOffset) % 4];
4310 }
Adam Cohen446e9402011-09-15 18:21:21 -07004311
Winson Chung4b919f82012-05-01 10:44:08 -07004312 public void lockScreenOrientation() {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004313 if (mRotationEnabled) {
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004314 if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN_MR2) {
4315 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
4316 .getConfiguration().orientation));
4317 } else {
4318 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LOCKED);
4319 }
Winson Chung4b919f82012-05-01 10:44:08 -07004320 }
4321 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004322
Winson Chung4b919f82012-05-01 10:44:08 -07004323 public void unlockScreenOrientation(boolean immediate) {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004324 if (mRotationEnabled) {
Winson Chung4b919f82012-05-01 10:44:08 -07004325 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07004326 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07004327 } else {
4328 mHandler.postDelayed(new Runnable() {
4329 public void run() {
4330 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4331 }
4332 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07004333 }
Winson Chung4b919f82012-05-01 10:44:08 -07004334 }
Winson Chung400438b2011-01-16 17:53:48 -08004335 }
4336
Winson Chunge43a1e72014-01-15 10:33:02 -08004337 protected boolean isLauncherPreinstalled() {
Adam Cohen9211d422014-10-07 18:14:53 -07004338 if (mLauncherCallbacks != null) {
4339 return mLauncherCallbacks.isLauncherPreinstalled();
4340 }
Winson Chunge43a1e72014-01-15 10:33:02 -08004341 PackageManager pm = getPackageManager();
4342 try {
4343 ApplicationInfo ai = pm.getApplicationInfo(getComponentName().getPackageName(), 0);
4344 if ((ai.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
4345 return true;
4346 } else {
4347 return false;
4348 }
4349 } catch (NameNotFoundException e) {
4350 e.printStackTrace();
4351 return false;
4352 }
4353 }
4354
Adam Cohenea90f832014-05-21 15:03:34 -07004355 /**
4356 * This method indicates whether or not we should suggest default wallpaper dimensions
4357 * when our wallpaper cropper was not yet used to set a wallpaper.
4358 */
4359 protected boolean overrideWallpaperDimensions() {
Adam Cohen9211d422014-10-07 18:14:53 -07004360 if (mLauncherCallbacks != null) {
4361 return mLauncherCallbacks.overrideWallpaperDimensions();
4362 }
Adam Cohenea90f832014-05-21 15:03:34 -07004363 return true;
4364 }
4365
Adam Cohen432609a2014-03-13 17:03:22 -07004366 /**
4367 * To be overridden by subclasses to indicate that there is an activity to launch
4368 * before showing the standard launcher experience.
4369 */
4370 protected boolean hasFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004371 if (mLauncherCallbacks != null) {
4372 return mLauncherCallbacks.hasFirstRunActivity();
4373 }
Adam Cohen432609a2014-03-13 17:03:22 -07004374 return false;
4375 }
4376
4377 /**
4378 * To be overridden by subclasses to launch any first run activity
4379 */
4380 protected Intent getFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004381 if (mLauncherCallbacks != null) {
4382 return mLauncherCallbacks.getFirstRunActivity();
4383 }
Adam Cohen432609a2014-03-13 17:03:22 -07004384 return null;
4385 }
4386
Winson Chunga6945242014-01-08 14:04:34 -08004387 private boolean shouldRunFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004388 return !ActivityManager.isRunningInTestHarness() &&
4389 !mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
Winson Chunga6945242014-01-08 14:04:34 -08004390 }
4391
Adam Cohen4a9423d2014-03-28 14:22:31 -07004392 protected boolean hasRunFirstRunActivity() {
4393 return mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
4394 }
4395
Adam Cohen432609a2014-03-13 17:03:22 -07004396 public boolean showFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004397 if (shouldRunFirstRunActivity() &&
4398 hasFirstRunActivity()) {
Winson Chunga6945242014-01-08 14:04:34 -08004399 Intent firstRunIntent = getFirstRunActivity();
4400 if (firstRunIntent != null) {
4401 startActivity(firstRunIntent);
4402 markFirstRunActivityShown();
Adam Cohen432609a2014-03-13 17:03:22 -07004403 return true;
Winson Chunga6945242014-01-08 14:04:34 -08004404 }
4405 }
Adam Cohen432609a2014-03-13 17:03:22 -07004406 return false;
Winson Chunga6945242014-01-08 14:04:34 -08004407 }
4408
4409 private void markFirstRunActivityShown() {
4410 SharedPreferences.Editor editor = mSharedPrefs.edit();
4411 editor.putBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, true);
4412 editor.apply();
4413 }
4414
Adam Cohen432609a2014-03-13 17:03:22 -07004415 /**
4416 * To be overridden by subclasses to indicate that there is an in-activity full-screen intro
4417 * screen that must be displayed and dismissed.
4418 */
4419 protected boolean hasDismissableIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004420 if (mLauncherCallbacks != null) {
4421 return mLauncherCallbacks.hasDismissableIntroScreen();
4422 }
Adam Cohen432609a2014-03-13 17:03:22 -07004423 return false;
4424 }
4425
4426 /**
4427 * Full screen intro screen to be shown and dismissed before the launcher can be used.
4428 */
4429 protected View getIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004430 if (mLauncherCallbacks != null) {
4431 return mLauncherCallbacks.getIntroScreen();
4432 }
Adam Cohen432609a2014-03-13 17:03:22 -07004433 return null;
4434 }
4435
4436 /**
4437 * To be overriden by subclasses to indicate whether the in-activity intro screen has been
4438 * dismissed. This method is ignored if #hasDismissableIntroScreen returns false.
4439 */
4440 private boolean shouldShowIntroScreen() {
4441 return hasDismissableIntroScreen() &&
4442 !mSharedPrefs.getBoolean(INTRO_SCREEN_DISMISSED, false);
4443 }
4444
4445 protected void showIntroScreen() {
4446 View introScreen = getIntroScreen();
4447 changeWallpaperVisiblity(false);
4448 if (introScreen != null) {
4449 mDragLayer.showOverlayView(introScreen);
4450 }
Adam Cohenc3e12c72014-10-31 16:15:36 -07004451 if (mLauncherOverlayContainer != null) {
4452 mLauncherOverlayContainer.setVisibility(View.INVISIBLE);
4453 }
Adam Cohen432609a2014-03-13 17:03:22 -07004454 }
4455
4456 public void dismissIntroScreen() {
4457 markIntroScreenDismissed();
4458 if (showFirstRunActivity()) {
4459 // We delay hiding the intro view until the first run activity is showing. This
4460 // avoids a blip.
4461 mWorkspace.postDelayed(new Runnable() {
4462 @Override
4463 public void run() {
4464 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004465 if (mLauncherOverlayContainer != null) {
4466 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4467 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004468 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004469 }
4470 }, ACTIVITY_START_DELAY);
4471 } else {
4472 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004473 if (mLauncherOverlayContainer != null) {
4474 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4475 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004476 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004477 }
4478 changeWallpaperVisiblity(true);
4479 }
4480
4481 private void markIntroScreenDismissed() {
4482 SharedPreferences.Editor editor = mSharedPrefs.edit();
4483 editor.putBoolean(INTRO_SCREEN_DISMISSED, true);
4484 editor.apply();
4485 }
4486
Adam Cohen091440a2015-03-18 14:16:05 -07004487 @Thunk void showFirstRunClings() {
Sunny Goyal88d60f12014-09-08 03:47:29 -07004488 // The two first run cling paths are mutually exclusive, if the launcher is preinstalled
4489 // on the device, then we always show the first run cling experience (or if there is no
4490 // launcher2). Otherwise, we prompt the user upon started for migration
4491 LauncherClings launcherClings = new LauncherClings(this);
4492 if (launcherClings.shouldShowFirstRunOrMigrationClings()) {
4493 if (mModel.canMigrateFromOldLauncherDb(this)) {
4494 launcherClings.showMigrationCling();
4495 } else {
Sunny Goyalaf0628f2014-09-19 10:14:48 -07004496 launcherClings.showLongPressCling(true);
Sunny Goyal88d60f12014-09-08 03:47:29 -07004497 }
4498 }
4499 }
4500
Winson Chunga6945242014-01-08 14:04:34 -08004501 void showWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004502 if (mWorkspace != null) mWorkspace.setAlpha(1f);
4503 if (mHotseat != null) mHotseat.setAlpha(1f);
4504 if (mPageIndicators != null) mPageIndicators.setAlpha(1f);
4505 if (mSearchDropTargetBar != null) mSearchDropTargetBar.showSearchBar(false);
Winson Chunga6945242014-01-08 14:04:34 -08004506 }
4507
4508 void hideWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004509 if (mWorkspace != null) mWorkspace.setAlpha(0f);
4510 if (mHotseat != null) mHotseat.setAlpha(0f);
4511 if (mPageIndicators != null) mPageIndicators.setAlpha(0f);
4512 if (mSearchDropTargetBar != null) mSearchDropTargetBar.hideSearchBar(false);
Winson Chunga6945242014-01-08 14:04:34 -08004513 }
4514
Mathew Inwood72fbec12013-11-19 15:45:07 +00004515 public ItemInfo createAppDragInfo(Intent appLaunchIntent) {
Kenny Guyed131872014-04-30 03:02:21 +01004516 // Called from search suggestion, not supported in other profiles.
4517 final UserHandleCompat myUser = UserHandleCompat.myUserHandle();
4518 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
4519 LauncherActivityInfoCompat activityInfo = launcherApps.resolveActivity(appLaunchIntent,
4520 myUser);
4521 if (activityInfo == null) {
Mathew Inwood72fbec12013-11-19 15:45:07 +00004522 return null;
4523 }
Sunny Goyal4fbc3822015-02-18 16:46:50 -08004524 return new AppInfo(this, activityInfo, myUser, mIconCache);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004525 }
4526
4527 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4528 Bitmap icon) {
Kenny Guyed131872014-04-30 03:02:21 +01004529 // Called from search suggestion, not supported in other profiles.
4530 return createShortcutDragInfo(shortcutIntent, caption, icon,
4531 UserHandleCompat.myUserHandle());
4532 }
4533
4534 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4535 Bitmap icon, UserHandleCompat user) {
Kenny Guyc2bd8102014-06-30 12:30:31 +01004536 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyd6fe5262014-07-21 17:11:41 +01004537 CharSequence contentDescription = userManager.getBadgedLabelForUser(caption, user);
Kenny Guyc2bd8102014-06-30 12:30:31 +01004538 return new ShortcutInfo(shortcutIntent, caption, contentDescription, icon, user);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004539 }
4540
Mathew Inwoodb90860a2014-04-11 17:17:39 +01004541 protected void moveWorkspaceToDefaultScreen() {
4542 mWorkspace.moveToDefaultScreen(false);
4543 }
4544
Mathew Inwood72fbec12013-11-19 15:45:07 +00004545 public void startDrag(View dragView, ItemInfo dragInfo, DragSource source) {
4546 dragView.setTag(dragInfo);
Winson Chungbabb53e2014-04-14 17:12:49 -07004547 mWorkspace.onExternalDragStartedWithItem(dragView);
4548 mWorkspace.beginExternalDragShared(dragView, source);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004549 }
4550
Anjali Koppalf5d29132014-02-28 13:33:27 -08004551 @Override
4552 public void onPageSwitch(View newPage, int newPageIndex) {
Adam Cohen9211d422014-10-07 18:14:53 -07004553 if (mLauncherCallbacks != null) {
4554 mLauncherCallbacks.onPageSwitch(newPage, newPageIndex);
4555 }
Anjali Koppalf5d29132014-02-28 13:33:27 -08004556 }
4557
Winson Chung80baf5a2010-08-09 16:03:15 -07004558 /**
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004559 * Returns a FastBitmapDrawable with the icon, accurately sized.
4560 */
4561 public FastBitmapDrawable createIconDrawable(Bitmap icon) {
4562 FastBitmapDrawable d = new FastBitmapDrawable(icon);
4563 d.setFilterBitmap(true);
4564 resizeIconDrawable(d);
4565 return d;
4566 }
4567
4568 /**
4569 * Resizes an icon drawable to the correct icon size.
4570 */
4571 public void resizeIconDrawable(Drawable icon) {
4572 icon.setBounds(0, 0, mDeviceProfile.iconSizePx, mDeviceProfile.iconSizePx);
4573 }
4574
4575 /**
Joe Onoratobe386092009-11-17 17:32:16 -08004576 * Prints out out state for debugging.
4577 */
4578 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04004579 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08004580 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08004581 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
4582 Log.d(TAG, "mRestoring=" + mRestoring);
4583 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
4584 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004585 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08004586 mModel.dumpState();
Hyunyoung Song3f471442015-04-08 19:01:34 -07004587 // TODO(hyunyoungs): add mWidgetsView.dumpState(); or mWidgetsModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07004588
Daniel Sandler325dc232013-06-05 22:57:57 -04004589 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08004590 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004591
4592 @Override
4593 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
4594 super.dump(prefix, fd, writer, args);
Adam Cohen4caf2982013-08-20 18:54:31 -07004595 synchronized (sDumpLogs) {
4596 writer.println(" ");
4597 writer.println("Debug logs: ");
4598 for (int i = 0; i < sDumpLogs.size(); i++) {
4599 writer.println(" " + sDumpLogs.get(i));
4600 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004601 }
Adam Cohen9211d422014-10-07 18:14:53 -07004602 if (mLauncherCallbacks != null) {
4603 mLauncherCallbacks.dump(prefix, fd, writer, args);
4604 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004605 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004606
4607 public static void dumpDebugLogsToConsole() {
Winson Chungede41292013-09-19 16:27:36 -07004608 if (DEBUG_DUMP_LOG) {
4609 synchronized (sDumpLogs) {
4610 Log.d(TAG, "");
4611 Log.d(TAG, "*********************");
4612 Log.d(TAG, "Launcher debug logs: ");
4613 for (int i = 0; i < sDumpLogs.size(); i++) {
4614 Log.d(TAG, " " + sDumpLogs.get(i));
4615 }
4616 Log.d(TAG, "*********************");
4617 Log.d(TAG, "");
Adam Cohen4caf2982013-08-20 18:54:31 -07004618 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004619 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004620 }
4621
4622 public static void addDumpLog(String tag, String log, boolean debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004623 addDumpLog(tag, log, null, debugLog);
4624 }
4625
4626 public static void addDumpLog(String tag, String log, Exception e, boolean debugLog) {
Adam Cohen4caf2982013-08-20 18:54:31 -07004627 if (debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004628 if (e != null) {
4629 Log.d(tag, log, e);
4630 } else {
4631 Log.d(tag, log);
4632 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004633 }
Winson Chungede41292013-09-19 16:27:36 -07004634 if (DEBUG_DUMP_LOG) {
4635 sDateStamp.setTime(System.currentTimeMillis());
4636 synchronized (sDumpLogs) {
Dan Sandler295ae182013-12-10 16:05:47 -05004637 sDumpLogs.add(sDateFormat.format(sDateStamp) + ": " + tag + ", " + log
4638 + (e == null ? "" : (", Exception: " + e)));
Adam Cohen4caf2982013-08-20 18:54:31 -07004639 }
Winson Chungede41292013-09-19 16:27:36 -07004640 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004641 }
4642
Adam Cohen59400422014-03-05 18:07:04 -08004643 public static CustomAppWidget getCustomAppWidget(String name) {
4644 return sCustomAppWidgets.get(name);
4645 }
4646
4647 public static HashMap<String, CustomAppWidget> getCustomAppWidgets() {
4648 return sCustomAppWidgets;
4649 }
4650
Winson Chungede41292013-09-19 16:27:36 -07004651 public void dumpLogsToLocalData() {
4652 if (DEBUG_DUMP_LOG) {
Michael Jurka43467462013-11-14 12:03:58 +01004653 new AsyncTask<Void, Void, Void>() {
4654 public Void doInBackground(Void ... args) {
Winson Chungede41292013-09-19 16:27:36 -07004655 boolean success = false;
4656 sDateStamp.setTime(sRunStart);
4657 String FILENAME = sDateStamp.getMonth() + "-"
4658 + sDateStamp.getDay() + "_"
4659 + sDateStamp.getHours() + "-"
4660 + sDateStamp.getMinutes() + "_"
4661 + sDateStamp.getSeconds() + ".txt";
4662
4663 FileOutputStream fos = null;
4664 File outFile = null;
4665 try {
4666 outFile = new File(getFilesDir(), FILENAME);
4667 outFile.createNewFile();
4668 fos = new FileOutputStream(outFile);
4669 } catch (Exception e) {
4670 e.printStackTrace();
4671 }
4672 if (fos != null) {
4673 PrintWriter writer = new PrintWriter(fos);
4674
4675 writer.println(" ");
4676 writer.println("Debug logs: ");
4677 synchronized (sDumpLogs) {
4678 for (int i = 0; i < sDumpLogs.size(); i++) {
4679 writer.println(" " + sDumpLogs.get(i));
4680 }
4681 }
4682 writer.close();
4683 }
4684 try {
4685 if (fos != null) {
4686 fos.close();
4687 success = true;
4688 }
4689 } catch (IOException e) {
4690 e.printStackTrace();
4691 }
Michael Jurka43467462013-11-14 12:03:58 +01004692 return null;
Winson Chungede41292013-09-19 16:27:36 -07004693 }
Michael Jurka43467462013-11-14 12:03:58 +01004694 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
Adam Cohen4caf2982013-08-20 18:54:31 -07004695 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004696 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004697}
Michael Jurka2763be32011-02-24 11:19:57 -08004698
Dan Sandlerd5024042014-01-09 15:01:33 -05004699interface DebugIntents {
4700 static final String DELETE_DATABASE = "com.android.launcher3.action.DELETE_DATABASE";
4701 static final String MIGRATE_DATABASE = "com.android.launcher3.action.MIGRATE_DATABASE";
Adam Cohen8b5b05b2014-01-10 21:42:39 +00004702}