blob: c2d391684f7f767dcb3efd19d563b32e744e390a [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
Sunny Goyalaeb16432017-10-16 11:46:41 -070019import static com.android.launcher3.LauncherAnimUtils.SPRING_LOADED_EXIT_NEXT_FRAME;
Sunny Goyal4c7f2152017-10-17 17:17:16 -070020import static com.android.launcher3.LauncherAnimUtils.SPRING_LOADED_EXIT_DELAY;
Sunny Goyalaeb16432017-10-16 11:46:41 -070021import static com.android.launcher3.logging.LoggerUtils.newContainerTarget;
Sunny Goyal326403e2017-10-02 12:45:10 -070022import static com.android.launcher3.util.RunnableWithId.RUNNABLE_ID_BIND_APPS;
23import static com.android.launcher3.util.RunnableWithId.RUNNABLE_ID_BIND_WIDGETS;
24
Sunny Goyal28c6b962015-10-12 11:42:05 -070025import android.Manifest;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070026import android.animation.Animator;
Jon Miranda2d89ea82017-05-04 11:47:53 -070027import android.animation.AnimatorListenerAdapter;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070028import android.animation.AnimatorSet;
Jon Miranda2d89ea82017-05-04 11:47:53 -070029import android.animation.ObjectAnimator;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070030import android.animation.ValueAnimator;
Sunny Goyal70660032015-05-14 00:07:08 -070031import android.annotation.SuppressLint;
Adam Cohen0b395352014-06-09 22:54:36 +000032import android.annotation.TargetApi;
Winson Chungc7450e32012-04-17 17:34:08 -070033import android.app.ActivityOptions;
Chris Wren40c5ed32014-06-24 18:24:23 -040034import android.app.AlertDialog;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080035import android.app.SearchManager;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080036import android.appwidget.AppWidgetHostView;
Michael Jurkaaf442092010-06-10 17:01:57 -070037import android.appwidget.AppWidgetManager;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080038import android.content.ActivityNotFoundException;
Joe Onorato2ca0ae72009-11-10 13:14:13 -080039import android.content.BroadcastReceiver;
Michael Jurkae326f182011-11-21 14:05:46 -080040import android.content.ComponentCallbacks2;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040041import android.content.ComponentName;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080042import android.content.Context;
Andrew Sappersteinabef55a2016-06-19 12:49:00 -070043import android.content.ContextWrapper;
Chris Wren40c5ed32014-06-24 18:24:23 -040044import android.content.DialogInterface;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080045import android.content.Intent;
Winson Chungf0ea4d32011-06-06 14:27:16 -070046import android.content.IntentFilter;
Adam Cohen173f7112015-03-27 15:14:00 -070047import android.content.IntentSender;
Winson Chung82f55532011-08-09 14:14:23 -070048import android.content.SharedPreferences;
Sunny Goyal745bad92016-05-02 10:54:12 -070049import android.content.SharedPreferences.OnSharedPreferenceChangeListener;
Winson Chungaafa03c2010-06-11 17:34:16 -070050import android.content.pm.ActivityInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080051import android.content.pm.PackageManager;
Adam Cohen3f9c9712014-10-31 11:48:25 -070052import android.database.sqlite.SQLiteDatabase;
Jon Mirandacc42c5b2016-10-27 17:15:27 -070053import android.graphics.Point;
Michael Jurkaaf442092010-06-10 17:01:57 -070054import android.graphics.Rect;
Michael Jurkaaf442092010-06-10 17:01:57 -070055import android.graphics.drawable.Drawable;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -070056import android.os.AsyncTask;
Adam Cohen0f668f32014-09-08 19:54:17 +020057import android.os.Build;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080058import android.os.Bundle;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080059import android.os.Handler;
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -070060import android.os.Parcelable;
Sunny Goyal7c74e4a2016-12-15 15:53:17 -080061import android.os.Process;
Winson Chunga2413752012-04-03 14:22:34 -070062import android.os.StrictMode;
Sunny Goyala1d1bf32015-06-26 13:24:53 -070063import android.os.UserHandle;
Tony Wickham86222d22017-03-29 15:30:43 -070064import android.support.annotation.Nullable;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080065import android.text.Selection;
66import android.text.SpannableStringBuilder;
Michael Jurkaa33411c2012-06-14 16:18:21 -070067import android.text.TextUtils;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080068import android.text.method.TextKeyListener;
Joe Onorato7c312c12009-08-13 21:36:53 -070069import android.util.Log;
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -070070import android.util.SparseArray;
Adam Cohen96d30a12013-07-16 18:13:21 -070071import android.view.Display;
Adam Cohen96d30a12013-07-16 18:13:21 -070072import android.view.HapticFeedbackConstants;
73import android.view.KeyEvent;
Sunny Goyal66b24572016-09-21 15:57:55 -070074import android.view.KeyboardShortcutGroup;
75import android.view.KeyboardShortcutInfo;
Sunny Goyal9b29ca52017-02-17 10:39:44 -080076import android.view.LayoutInflater;
Adam Cohen96d30a12013-07-16 18:13:21 -070077import android.view.Menu;
Adam Cohen96d30a12013-07-16 18:13:21 -070078import android.view.MotionEvent;
Adam Cohen96d30a12013-07-16 18:13:21 -070079import android.view.View;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080080import android.view.View.OnLongClickListener;
Adam Cohen96d30a12013-07-16 18:13:21 -070081import android.view.ViewGroup;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -080082import android.view.accessibility.AccessibilityEvent;
Tony Wickhame2217252016-03-22 16:34:23 -070083import android.view.accessibility.AccessibilityManager;
Sunny Goyal5a1f53b2015-05-27 10:24:24 -070084import android.view.animation.OvershootInterpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080085import android.view.inputmethod.InputMethodManager;
Adam Cohen96d30a12013-07-16 18:13:21 -070086import android.widget.Toast;
Sunny Goyala1d1bf32015-06-26 13:24:53 -070087
Sunny Goyal651077b2014-06-30 14:15:31 -070088import com.android.launcher3.DropTarget.DragObject;
Sunny Goyala7ce1662016-05-31 15:01:35 -070089import com.android.launcher3.LauncherSettings.Favorites;
Jon Mirandac476d6e2017-05-04 16:30:01 -070090import com.android.launcher3.Workspace.ItemOperator;
Sunny Goyalae502842016-06-17 08:43:56 -070091import com.android.launcher3.accessibility.LauncherAccessibilityDelegate;
Winson Chung5f4e0fd2015-05-22 11:12:27 -070092import com.android.launcher3.allapps.AllAppsContainerView;
Hyunyoung Song645764e2016-06-06 14:19:02 -070093import com.android.launcher3.allapps.AllAppsTransitionController;
Sunny Goyalffe83f12014-08-14 17:39:34 -070094import com.android.launcher3.compat.AppWidgetManagerCompat;
Kenny Guyed131872014-04-30 03:02:21 +010095import com.android.launcher3.compat.LauncherAppsCompat;
Sunny Goyal22ca9ec2017-05-18 15:03:13 -070096import com.android.launcher3.compat.LauncherAppsCompatVO;
Adam Cohen39933482017-09-29 16:43:51 -070097import com.android.launcher3.compat.UserManagerCompat;
Tony Wickhame0c33232016-02-08 11:37:04 -080098import com.android.launcher3.config.FeatureFlags;
Vadim Tryshevfedca432015-08-19 17:55:02 -070099import com.android.launcher3.dragndrop.DragController;
100import com.android.launcher3.dragndrop.DragLayer;
Sunny Goyal94b510c2016-08-16 15:36:48 -0700101import com.android.launcher3.dragndrop.DragOptions;
Vadim Tryshevfedca432015-08-19 17:55:02 -0700102import com.android.launcher3.dragndrop.DragView;
Sunny Goyalb38fab72017-01-20 19:32:31 -0800103import com.android.launcher3.dragndrop.PinItemDragListener;
Mario Bertschler27288382017-05-24 15:35:09 -0700104import com.android.launcher3.dynamicui.WallpaperColorInfo;
Sunny Goyal26119432016-02-18 22:09:23 +0000105import com.android.launcher3.folder.Folder;
106import com.android.launcher3.folder.FolderIcon;
Sunny Goyal66b24572016-09-21 15:57:55 -0700107import com.android.launcher3.keyboard.CustomActionsPopup;
Sunny Goyal3333b0c2016-05-09 20:43:21 -0700108import com.android.launcher3.keyboard.ViewGroupFocusHelper;
Sunny Goyala7ce1662016-05-31 15:01:35 -0700109import com.android.launcher3.logging.FileLog;
Hyunyoung Songaa953652016-04-19 18:30:24 -0700110import com.android.launcher3.logging.UserEventDispatcher;
Sunny Goyala535ae42017-02-27 10:07:13 -0800111import com.android.launcher3.model.ModelWriter;
Sunny Goyala535ae42017-02-27 10:07:13 -0800112import com.android.launcher3.notification.NotificationListener;
Hyunyoung Song7d2fc812016-06-15 12:51:30 -0700113import com.android.launcher3.pageindicators.PageIndicator;
Sunny Goyal10a1bd02017-10-09 14:56:21 -0700114import com.android.launcher3.popup.BaseActionPopup;
Tony Wickham540913e2017-01-23 11:47:51 -0800115import com.android.launcher3.popup.PopupContainerWithArrow;
Sunny Goyala535ae42017-02-27 10:07:13 -0800116import com.android.launcher3.popup.PopupDataProvider;
Tony Wickham1bce7fd2016-04-28 17:39:03 -0700117import com.android.launcher3.shortcuts.DeepShortcutManager;
Jon Mirandac6cf4932017-02-07 17:12:36 -0800118import com.android.launcher3.userevent.nano.LauncherLogProto;
Sunny Goyal6c46a6d2016-11-23 02:24:32 +0530119import com.android.launcher3.userevent.nano.LauncherLogProto.Action;
120import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
121import com.android.launcher3.userevent.nano.LauncherLogProto.ControlType;
Sunny Goyalaeb16432017-10-16 11:46:41 -0700122import com.android.launcher3.userevent.nano.LauncherLogProto.Target;
Sunny Goyal2100c782016-08-22 16:00:03 -0700123import com.android.launcher3.util.ActivityResultInfo;
Winson Chung6b1c73f2015-06-18 11:38:42 -0700124import com.android.launcher3.util.ComponentKey;
Sunny Goyald3b87ef2016-07-28 12:11:54 -0700125import com.android.launcher3.util.ItemInfoMatcher;
Tony Wickhambfbf7f92016-05-19 11:19:39 -0700126import com.android.launcher3.util.MultiHashMap;
Sunny Goyal04cc3a72016-05-17 10:32:43 -0700127import com.android.launcher3.util.PackageManagerHelper;
Tony Wickham010d2552017-01-20 08:15:28 -0800128import com.android.launcher3.util.PackageUserKey;
Sunny Goyal2100c782016-08-22 16:00:03 -0700129import com.android.launcher3.util.PendingRequestArgs;
Sunny Goyal326403e2017-10-02 12:45:10 -0700130import com.android.launcher3.util.RunnableWithId;
Sunny Goyal8392c822017-06-20 10:03:56 -0700131import com.android.launcher3.util.SystemUiController;
Sunny Goyal322d5562015-06-25 19:35:49 -0700132import com.android.launcher3.util.TestingUtils;
Mario Bertschlera6936942017-05-31 14:48:19 -0700133import com.android.launcher3.util.Themes;
Adam Cohen091440a2015-03-18 14:16:05 -0700134import com.android.launcher3.util.Thunk;
Sunny Goyalfca6bc92017-09-28 16:28:34 -0700135import com.android.launcher3.util.TraceHelper;
Sunny Goyal326403e2017-10-02 12:45:10 -0700136import com.android.launcher3.util.UiThreadHelper;
Sunny Goyal527c7d32015-08-28 15:19:36 -0700137import com.android.launcher3.util.ViewOnDrawExecutor;
Sunny Goyal782f0c92017-01-19 10:27:54 -0800138import com.android.launcher3.widget.PendingAddShortcutInfo;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700139import com.android.launcher3.widget.PendingAddWidgetInfo;
Sunny Goyal04a324a2017-01-20 21:08:59 -0800140import com.android.launcher3.widget.WidgetAddFlowHandler;
Hyunyoung Songb99ff3e2015-04-23 15:17:50 -0700141import com.android.launcher3.widget.WidgetHostViewLoader;
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -0700142import com.android.launcher3.widget.WidgetListRowEntry;
143import com.android.launcher3.widget.WidgetsFullSheet;
Sunny Goyal952e63d2017-08-16 04:59:08 -0700144import com.android.launcher3.widget.custom.CustomWidgetParser;
Adam Cohen6c5891a2014-07-09 23:53:15 -0700145
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700146import java.io.FileDescriptor;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700147import java.io.PrintWriter;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700148import java.util.ArrayList;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700149import java.util.Collection;
Sunny Goyal4390ace2014-10-13 11:33:11 -0700150import java.util.HashSet;
Michael Jurkad7c28052012-04-27 15:43:36 -0700151import java.util.List;
Tony Wickham010d2552017-01-20 08:15:28 -0800152import java.util.Set;
Tony2917a8b2017-07-31 23:29:42 -0700153import java.util.concurrent.Executor;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700154
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800155/**
156 * Default launcher application.
157 */
Sunny Goyal27835952017-01-13 12:15:53 -0800158public class Launcher extends BaseActivity
Adam Cohen79d90c52016-04-22 13:29:20 -0700159 implements LauncherExterns, View.OnClickListener, OnLongClickListener,
160 LauncherModel.Callbacks, View.OnTouchListener, LauncherProviderChangeListener,
Mario Bertschler27288382017-05-24 15:35:09 -0700161 AccessibilityManager.AccessibilityStateChangeListener,
162 WallpaperColorInfo.OnThemeChangeListener {
Vadim Tryshevfedca432015-08-19 17:55:02 -0700163 public static final String TAG = "Launcher";
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700164 static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800165
Winson Chunga2413752012-04-03 14:22:34 -0700166 static final boolean DEBUG_STRICT_MODE = false;
Romain Guy6fefcf12009-06-11 13:07:43 -0700167
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800168 private static final int REQUEST_CREATE_SHORTCUT = 1;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700169 private static final int REQUEST_CREATE_APPWIDGET = 5;
Jon Mirandac476d6e2017-05-04 16:30:01 -0700170
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700171 private static final int REQUEST_PICK_APPWIDGET = 9;
Mike Clerona0618e42009-10-22 13:55:21 -0700172 private static final int REQUEST_PICK_WALLPAPER = 10;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800173
Michael Jurka8b805b12012-04-18 14:23:14 -0700174 private static final int REQUEST_BIND_APPWIDGET = 11;
Jon Mirandac476d6e2017-05-04 16:30:01 -0700175 private static final int REQUEST_BIND_PENDING_APPWIDGET = 12;
176 private static final int REQUEST_RECONFIGURE_APPWIDGET = 13;
Michael Jurka8b805b12012-04-18 14:23:14 -0700177
Jon Mirandac476d6e2017-05-04 16:30:01 -0700178 private static final int REQUEST_PERMISSION_CALL_PHONE = 14;
Sunny Goyal28c6b962015-10-12 11:42:05 -0700179
Sunny Goyal5a1f53b2015-05-27 10:24:24 -0700180 private static final float BOUNCE_ANIMATION_TENSION = 1.3f;
181
Mathew Inwood876a8462013-06-14 14:12:41 +0100182 /**
183 * IntentStarter uses request codes starting with this. This must be greater than all activity
184 * request codes used internally.
185 */
186 protected static final int REQUEST_LAST = 100;
187
Winson Chung2672ff92012-05-04 16:22:30 -0700188 // The Intent extra that defines whether to ignore the launch animation
189 static final String INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION =
Daniel Sandler325dc232013-06-05 22:57:57 -0400190 "com.android.launcher3.intent.extra.shortcut.INGORE_LAUNCH_ANIMATION";
Winson Chung2672ff92012-05-04 16:22:30 -0700191
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800192 // Type: int
193 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
Michael Jurka883f55b2010-10-21 15:47:14 -0700194 // Type: int
195 private static final String RUNTIME_STATE = "launcher.state";
Sunny Goyal2100c782016-08-22 16:00:03 -0700196 // Type: PendingRequestArgs
197 private static final String RUNTIME_STATE_PENDING_REQUEST_ARGS = "launcher.request_args";
198 // Type: ActivityResultInfo
199 private static final String RUNTIME_STATE_PENDING_ACTIVITY_RESULT = "launcher.activity_result";
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -0700200 // Type: SparseArray<Parcelable>
201 private static final String RUNTIME_STATE_WIDGET_PANEL = "launcher.widget_panel";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800202
Hyunyoung Songc001cf52016-07-21 17:32:43 -0700203 static final String APPS_VIEW_SHOWN = "launcher.apps_view_shown";
Adam Cohenb54a5982014-01-08 15:21:04 -0800204
Adam Cohen091440a2015-03-18 14:16:05 -0700205 @Thunk LauncherStateTransitionAnimation mStateTransitionAnimation;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700206
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700207 private boolean mIsSafeModeEnabled;
208
Adam Cohenad4e15c2013-10-17 16:21:35 -0700209 private static final int ON_ACTIVITY_RESULT_ANIMATION_DELAY = 500;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800210
Winson Chunga2413752012-04-03 14:22:34 -0700211 // How long to wait before the new-shortcut animation automatically pans the workspace
Rajeev Kumar43c0f582017-06-23 15:34:55 -0700212 private static final int NEW_APPS_PAGE_MOVE_DELAY = 500;
213 private static final int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 5;
214 @Thunk static final int NEW_APPS_ANIMATION_DELAY = 500;
Winson Chunga2413752012-04-03 14:22:34 -0700215
Adam Cohen091440a2015-03-18 14:16:05 -0700216 @Thunk Workspace mWorkspace;
Craig Mautner360310b2012-10-26 15:13:08 -0700217 private View mLauncherView;
Adam Cohen091440a2015-03-18 14:16:05 -0700218 @Thunk DragLayer mDragLayer;
Michael Jurkab737ee62011-11-15 15:57:22 -0800219 private DragController mDragController;
Sunny Goyal322d5562015-06-25 19:35:49 -0700220
221 public View mWeightWatcher;
Romain Guycbb89e42009-06-08 15:52:54 -0700222
Sunny Goyalffe83f12014-08-14 17:39:34 -0700223 private AppWidgetManagerCompat mAppWidgetManager;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700224 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700225
Rajeev Kumar43c0f582017-06-23 15:34:55 -0700226 private final int[] mTmpAddItemCellCoordinates = new int[2];
Michael Jurka0280c3b2010-09-17 15:00:07 -0700227
Sunny Goyal316490e2015-06-02 09:38:28 -0700228 @Thunk Hotseat mHotseat;
Jorim Jaggid017f882014-01-14 17:08:48 -0800229 private ViewGroup mOverviewPanel;
Adam Cohenf358a4b2013-07-23 16:47:31 -0700230
Michael Jurka838a4ca2011-02-07 13:33:06 -0800231 private View mAllAppsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700232
Sunny Goyal47328fd2016-05-25 18:56:41 -0700233 private DropTargetBar mDropTargetBar;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700234
235 // Main container view for the all apps screen.
Winson Chung5f4e0fd2015-05-22 11:12:27 -0700236 @Thunk AllAppsContainerView mAppsView;
Hyunyoung Song645764e2016-06-06 14:19:02 -0700237 AllAppsTransitionController mAllAppsController;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700238
Jon Miranda6bed3502017-09-19 14:43:17 -0700239 // We need to store the orientation Launcher was created with, due to a bug (b/64916689)
240 // that results in widgets being inflated in the wrong orientation.
241 private int mOrientation;
242
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800243 private SpannableStringBuilder mDefaultKeySsb = null;
244
Adam Cohen091440a2015-03-18 14:16:05 -0700245 @Thunk boolean mWorkspaceLoading = true;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400246
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800247 private boolean mPaused = true;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700248 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800249
Rajeev Kumar43c0f582017-06-23 15:34:55 -0700250 private final ArrayList<Runnable> mBindOnResumeCallbacks = new ArrayList<>();
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700251 private OnResumeCallback mOnResumeCallback;
252
Sunny Goyal527c7d32015-08-28 15:19:36 -0700253 private ViewOnDrawExecutor mPendingExecutor;
Michael Jurka7607c2f2013-04-03 14:33:19 -0700254
Joe Onorato9c1289c2009-08-17 11:03:03 -0400255 private LauncherModel mModel;
Sunny Goyal43bf11d2017-02-02 13:52:53 -0800256 private ModelWriter mModelWriter;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800257 private IconCache mIconCache;
Sunny Goyalae502842016-06-17 08:43:56 -0700258 private LauncherAccessibilityDelegate mAccessibilityDelegate;
Rajeev Kumar43c0f582017-06-23 15:34:55 -0700259 private final Handler mHandler = new Handler();
Sunny Goyal1acc56a2016-09-25 21:23:25 -0700260 private boolean mHasFocus = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400261
Jon Miranda2d89ea82017-05-04 11:47:53 -0700262 private ObjectAnimator mScrimAnimator;
Jon Miranda7fda2852017-07-19 16:07:01 -0700263 private boolean mShouldFadeInScrim;
Jon Miranda2d89ea82017-05-04 11:47:53 -0700264
Tony Wickham010d2552017-01-20 08:15:28 -0800265 private PopupDataProvider mPopupDataProvider;
Tony Wickhambfbf7f92016-05-19 11:19:39 -0700266
Winson Chung400438b2011-01-16 17:53:48 -0800267 // Determines how long to wait after a rotation before restoring the screen orientation to
268 // match the sensor state.
Sunny Goyal756cd262015-08-20 12:33:21 -0700269 private static final int RESTORE_SCREEN_ORIENTATION_DELAY = 500;
Winson Chung400438b2011-01-16 17:53:48 -0800270
Rajeev Kumar43c0f582017-06-23 15:34:55 -0700271 private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<>();
Adam Cohen1462de32012-07-24 22:34:36 -0700272
Winson Chung46353de2012-02-16 14:05:10 -0800273 // We only want to get the SharedPreferences once since it does an FS stat each time we get
274 // it from the context.
275 private SharedPreferences mSharedPrefs;
276
Hyunyoung Song06ca7562016-07-29 13:03:54 -0700277 // Exiting spring loaded mode happens with a delay. This runnable object triggers the
278 // state transition. If another state transition happened during this delay,
279 // simply unregister this runnable.
280 private Runnable mExitSpringLoadedModeRunnable;
281
Sunny Goyal2100c782016-08-22 16:00:03 -0700282 // Activity result which needs to be processed after workspace has loaded.
283 private ActivityResultInfo mPendingActivityResult;
284 /**
285 * Holds extra information required to handle a result from an external call, like
286 * {@link #startActivityForResult(Intent, int)} or {@link #requestPermissions(String[], int)}
287 */
288 private PendingRequestArgs mPendingRequestArgs;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800289
Jon Miranda379198e2016-09-23 08:54:40 -0700290 private float mLastDispatchTouchEventX = 0.0f;
Jon Miranda379198e2016-09-23 08:54:40 -0700291
Sunny Goyal3333b0c2016-05-09 20:43:21 -0700292 public ViewGroupFocusHelper mFocusHandler;
Sunny Goyal7779d622015-06-11 16:18:39 -0700293 private boolean mRotationEnabled = false;
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400294
295 @Thunk void setOrientation() {
296 if (mRotationEnabled) {
297 unlockScreenOrientation(true);
298 } else {
299 setRequestedOrientation(
300 ActivityInfo.SCREEN_ORIENTATION_NOSENSOR);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700301 }
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400302 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700303
Sunny Goyal745bad92016-05-02 10:54:12 -0700304 private RotationPrefChangeHandler mRotationPrefChangeHandler;
Sunny Goyal7779d622015-06-11 16:18:39 -0700305
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800306 @Override
307 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700308 if (DEBUG_STRICT_MODE) {
309 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
310 .detectDiskReads()
311 .detectDiskWrites()
312 .detectNetwork() // or .detectAll() for all detectable problems
313 .penaltyLog()
314 .build());
315 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
316 .detectLeakedSqlLiteObjects()
317 .detectLeakedClosableObjects()
318 .penaltyLog()
319 .penaltyDeath()
320 .build());
321 }
Sunny Goyalfca6bc92017-09-28 16:28:34 -0700322 TraceHelper.beginSection("Launcher-onCreate");
Winson Chunga2413752012-04-03 14:22:34 -0700323
Adam Cohen9211d422014-10-07 18:14:53 -0700324 if (mLauncherCallbacks != null) {
325 mLauncherCallbacks.preOnCreate();
326 }
327
Mario Bertschler27288382017-05-24 15:35:09 -0700328 WallpaperColorInfo wallpaperColorInfo = WallpaperColorInfo.getInstance(this);
329 wallpaperColorInfo.setOnThemeChangeListener(this);
Mario Bertschlera6936942017-05-31 14:48:19 -0700330 overrideTheme(wallpaperColorInfo.isDark(), wallpaperColorInfo.supportsDarkText());
Mario Bertschler27288382017-05-24 15:35:09 -0700331
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800332 super.onCreate(savedInstanceState);
Sunny Goyalfca6bc92017-09-28 16:28:34 -0700333 TraceHelper.partitionSection("Launcher-onCreate", "super call");
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400334
Sunny Goyal87f784c2017-01-11 10:48:34 -0800335 LauncherAppState app = LauncherAppState.getInstance(this);
Winson Chung6e1c0d32013-10-25 15:24:24 -0700336
Adam Cohen2e6da152015-05-06 11:42:25 -0700337 // Load configuration-specific DeviceProfile
Sunny Goyal27835952017-01-13 12:15:53 -0800338 mDeviceProfile = app.getInvariantDeviceProfile().getDeviceProfile(this);
Jon Mirandafe964322017-03-22 10:25:17 -0700339 if (isInMultiWindowModeCompat()) {
Jon Mirandacc42c5b2016-10-27 17:15:27 -0700340 Display display = getWindowManager().getDefaultDisplay();
341 Point mwSize = new Point();
342 display.getSize(mwSize);
343 mDeviceProfile = mDeviceProfile.getMultiWindowProfile(this, mwSize);
344 }
Sunny Goyalc6205602015-05-21 20:46:33 -0700345
Jon Miranda6bed3502017-09-19 14:43:17 -0700346 mOrientation = getResources().getConfiguration().orientation;
Sunny Goyalf7258242015-10-19 16:59:07 -0700347 mSharedPrefs = Utilities.getPrefs(this);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700348 mIsSafeModeEnabled = getPackageManager().isSafeMode();
Joe Onorato0589f0f2010-02-08 13:44:00 -0800349 mModel = app.setLauncher(this);
Sunny Goyal43bf11d2017-02-02 13:52:53 -0800350 mModelWriter = mModel.getWriter(mDeviceProfile.isVerticalBarLayout());
Joe Onorato0589f0f2010-02-08 13:44:00 -0800351 mIconCache = app.getIconCache();
Sunny Goyalae502842016-06-17 08:43:56 -0700352 mAccessibilityDelegate = new LauncherAccessibilityDelegate(this);
Adam Cohen2e6da152015-05-06 11:42:25 -0700353
Joe Onorato41a12d22009-10-31 18:30:00 -0400354 mDragController = new DragController(this);
Hyunyoung Song645764e2016-06-06 14:19:02 -0700355 mAllAppsController = new AllAppsTransitionController(this);
356 mStateTransitionAnimation = new LauncherStateTransitionAnimation(this, mAllAppsController);
Romain Guycbb89e42009-06-08 15:52:54 -0700357
Sunny Goyalffe83f12014-08-14 17:39:34 -0700358 mAppWidgetManager = AppWidgetManagerCompat.getInstance(this);
Adam Cohen53805212013-10-01 10:39:23 -0700359
Sunny Goyal64a75aa2017-07-03 13:50:52 -0700360 mAppWidgetHost = new LauncherAppWidgetHost(this);
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700361 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700362
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700363 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
364 // this also ensures that any synchronous binding below doesn't re-trigger another
365 // LauncherModel load.
366 mPaused = false;
367
Sunny Goyal60820d72017-05-09 12:40:11 -0700368 mLauncherView = LayoutInflater.from(this).inflate(R.layout.launcher, null);
Michael Jurka7267fa52013-09-26 15:29:57 -0700369
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800370 setupViews();
Winson1f064272016-07-18 17:18:02 -0700371 mDeviceProfile.layout(this, false /* notifyListeners */);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800372
Tony Wickham010d2552017-01-20 08:15:28 -0800373 mPopupDataProvider = new PopupDataProvider(this);
374
Tony Wickhame2217252016-03-22 16:34:23 -0700375 ((AccessibilityManager) getSystemService(ACCESSIBILITY_SERVICE))
376 .addAccessibilityStateChangeListener(this);
377
Sunny Goyalfe770c92016-09-27 14:38:58 -0700378 restoreState(savedInstanceState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800379
Sunny Goyal2100c782016-08-22 16:00:03 -0700380 // We only load the page synchronously if the user rotates (or triggers a
381 // configuration change) while launcher is in the foreground
Sunny Goyalfe770c92016-09-27 14:38:58 -0700382 int currentScreen = PagedView.INVALID_RESTORE_PAGE;
383 if (savedInstanceState != null) {
384 currentScreen = savedInstanceState.getInt(RUNTIME_STATE_CURRENT_SCREEN, currentScreen);
385 }
386 if (!mModel.startLoader(currentScreen)) {
Sunny Goyal2100c782016-08-22 16:00:03 -0700387 // If we are not binding synchronously, show a fade in animation when
388 // the first page bind completes.
389 mDragLayer.setAlpha(0);
390 } else {
Sunny Goyalfe770c92016-09-27 14:38:58 -0700391 // Pages bound synchronously.
392 mWorkspace.setCurrentPage(currentScreen);
393
Sunny Goyal2100c782016-08-22 16:00:03 -0700394 setWorkspaceLoading(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800395 }
396
397 // For handling default keys
398 mDefaultKeySsb = new SpannableStringBuilder();
399 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800400
Sunny Goyal8f3819b2016-02-23 14:49:22 -0800401 mRotationEnabled = getResources().getBoolean(R.bool.allow_rotation);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700402 // In case we are on a device with locked rotation, we should look at preferences to check
403 // if the user has specifically allowed rotation.
404 if (!mRotationEnabled) {
Sunny Goyal21bf5312015-08-21 11:08:24 -0700405 mRotationEnabled = Utilities.isAllowRotationPrefEnabled(getApplicationContext());
Sunny Goyal745bad92016-05-02 10:54:12 -0700406 mRotationPrefChangeHandler = new RotationPrefChangeHandler();
407 mSharedPrefs.registerOnSharedPreferenceChangeListener(mRotationPrefChangeHandler);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700408 }
409
Sunny Goyal5a81c382017-03-20 15:08:06 -0700410 if (PinItemDragListener.handleDragRequest(this, getIntent())) {
411 // Temporarily enable the rotation
412 mRotationEnabled = true;
413 }
414
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700415 // On large interfaces, or on devices that a user has specifically enabled screen rotation,
416 // we want the screen to auto-rotate based on the current orientation
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400417 setOrientation();
Winson Chungaf40f202013-09-18 18:26:31 -0700418
Sunny Goyal0bbd5542016-11-11 10:41:26 -0800419 setContentView(mLauncherView);
Mario Bertschlera6936942017-05-31 14:48:19 -0700420
Jon Miranda7fda2852017-07-19 16:07:01 -0700421 // Listen for broadcasts
422 IntentFilter filter = new IntentFilter();
423 filter.addAction(Intent.ACTION_SCREEN_OFF);
424 filter.addAction(Intent.ACTION_USER_PRESENT); // When the device wakes up + keyguard is gone
425 registerReceiver(mReceiver, filter);
426 mShouldFadeInScrim = true;
Sunny Goyala616d2b2017-06-12 13:54:01 -0700427
Sunny Goyal8392c822017-06-20 10:03:56 -0700428 getSystemUiController().updateUiState(SystemUiController.UI_STATE_BASE_WINDOW,
429 Themes.getAttrBoolean(this, R.attr.isWorkspaceDarkText));
Sunny Goyal14b32402017-07-31 10:03:28 -0700430
431 if (mLauncherCallbacks != null) {
432 mLauncherCallbacks.onCreate(savedInstanceState);
433 }
Sunny Goyalfca6bc92017-09-28 16:28:34 -0700434
435 TraceHelper.endSection("Launcher-onCreate");
Adam Cohen9211d422014-10-07 18:14:53 -0700436 }
437
Sunny Goyal7779d622015-06-11 16:18:39 -0700438 @Override
Mario Bertschler27288382017-05-24 15:35:09 -0700439 public void onThemeChanged() {
440 recreate();
441 }
442
Mario Bertschlera6936942017-05-31 14:48:19 -0700443 protected void overrideTheme(boolean isDark, boolean supportsDarkText) {
Mario Bertschler27288382017-05-24 15:35:09 -0700444 if (isDark) {
445 setTheme(R.style.LauncherThemeDark);
Mario Bertschlera6936942017-05-31 14:48:19 -0700446 } else if (supportsDarkText) {
447 setTheme(R.style.LauncherThemeDarkText);
Mario Bertschler27288382017-05-24 15:35:09 -0700448 }
449 }
450
451 @Override
Sunny Goyalc7b8df82017-06-27 11:11:03 -0700452 public <T extends View> T findViewById(int id) {
Sunny Goyal0bbd5542016-11-11 10:41:26 -0800453 return mLauncherView.findViewById(id);
454 }
455
456 @Override
Sunny Goyal2e013ea2016-10-07 16:17:19 -0700457 public void onAppWidgetHostReset() {
458 if (mAppWidgetHost != null) {
459 mAppWidgetHost.startListening();
460 }
461 }
462
Adam Cohen9211d422014-10-07 18:14:53 -0700463 private LauncherCallbacks mLauncherCallbacks;
464
Winson1f064272016-07-18 17:18:02 -0700465 public void onInsetsChanged(Rect insets) {
466 mDeviceProfile.updateInsets(insets);
467 mDeviceProfile.layout(this, true /* notifyListeners */);
468 }
469
Sunny Goyal32554d12015-12-03 15:31:25 -0800470 /**
471 * Call this after onCreate to set or clear overlay.
472 */
473 public void setLauncherOverlay(LauncherOverlay overlay) {
474 if (overlay != null) {
475 overlay.setOverlayCallbacks(new LauncherOverlayCallbacksImpl());
476 }
477 mWorkspace.setLauncherOverlay(overlay);
478 }
479
Adam Cohen9211d422014-10-07 18:14:53 -0700480 public boolean setLauncherCallbacks(LauncherCallbacks callbacks) {
481 mLauncherCallbacks = callbacks;
482 return true;
Adam Cohenf9426d52012-06-04 17:26:21 -0700483 }
484
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700485 @Override
Sunny Goyal2e013ea2016-10-07 16:17:19 -0700486 public void onLauncherProviderChanged() {
Adam Cohen9211d422014-10-07 18:14:53 -0700487 if (mLauncherCallbacks != null) {
488 mLauncherCallbacks.onLauncherProviderChange();
489 }
490 }
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700491
Hyunyoung Song3f471442015-04-08 19:01:34 -0700492 public boolean isDraggingEnabled() {
Winson Chung36a62fe2012-05-06 18:04:42 -0700493 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
494 // that is subsequently removed from the workspace in startBinding().
Sunny Goyal639e9062015-08-19 19:17:06 -0700495 return !isWorkspaceLoading();
Winson Chung36a62fe2012-05-06 18:04:42 -0700496 }
497
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000498 public int getViewIdForItem(ItemInfo info) {
Sunny Goyale2fd14b2015-08-27 17:45:46 -0700499 // aapt-generated IDs have the high byte nonzero; clamp to the range under that.
500 // This cast is safe as long as the id < 0x00FFFFFF
501 // Since we jail all the dynamically generated views, there should be no clashes
502 // with any other views.
503 return (int) info.id;
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000504 }
505
Tony Wickham010d2552017-01-20 08:15:28 -0800506 public PopupDataProvider getPopupDataProvider() {
507 return mPopupDataProvider;
508 }
509
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000510 /**
Winson Chung557d6ed2011-07-08 15:34:52 -0700511 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
512 * a configuration step, this allows the proper animations to run after other transitions.
513 */
Sunny Goyal2100c782016-08-22 16:00:03 -0700514 private long completeAdd(
515 int requestCode, Intent intent, int appWidgetId, PendingRequestArgs info) {
516 long screenId = info.screenId;
517 if (info.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
Adam Cohen83079e42014-09-19 17:43:08 -0700518 // When the screen id represents an actual screen (as opposed to a rank) we make sure
519 // that the drop page actually exists.
Sunny Goyal2100c782016-08-22 16:00:03 -0700520 screenId = ensurePendingDropLayoutExists(info.screenId);
Adam Cohen83079e42014-09-19 17:43:08 -0700521 }
Adam Cohendb364c32014-05-20 14:23:40 -0700522
Sunny Goyal2100c782016-08-22 16:00:03 -0700523 switch (requestCode) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800524 case REQUEST_CREATE_SHORTCUT:
Sunny Goyalfb5096d2016-09-08 14:32:06 -0700525 completeAddShortcut(intent, info.container, screenId, info.cellX, info.cellY, info);
Winson Chungb8472bb2011-08-05 13:49:21 -0700526 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800527 case REQUEST_CREATE_APPWIDGET:
Sunny Goyal2100c782016-08-22 16:00:03 -0700528 completeAddAppWidget(appWidgetId, info, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700529 break;
Sunny Goyalff572272014-07-23 13:58:07 -0700530 case REQUEST_RECONFIGURE_APPWIDGET:
Sunny Goyal2100c782016-08-22 16:00:03 -0700531 completeRestoreAppWidget(appWidgetId, LauncherAppWidgetInfo.RESTORE_COMPLETED);
Sunny Goyalff572272014-07-23 13:58:07 -0700532 break;
Sunny Goyald478c832016-04-01 12:04:16 -0700533 case REQUEST_BIND_PENDING_APPWIDGET: {
Sunny Goyal2100c782016-08-22 16:00:03 -0700534 int widgetId = appWidgetId;
535 LauncherAppWidgetInfo widgetInfo =
Sunny Goyald478c832016-04-01 12:04:16 -0700536 completeRestoreAppWidget(widgetId, LauncherAppWidgetInfo.FLAG_UI_NOT_READY);
Sunny Goyal2100c782016-08-22 16:00:03 -0700537 if (widgetInfo != null) {
Sunny Goyald478c832016-04-01 12:04:16 -0700538 // Since the view was just bound, also launch the configure activity if needed
539 LauncherAppWidgetProviderInfo provider = mAppWidgetManager
540 .getLauncherAppWidgetInfo(widgetId);
Sunny Goyal04a324a2017-01-20 21:08:59 -0800541 if (provider != null) {
542 new WidgetAddFlowHandler(provider)
543 .startConfigActivity(this, widgetInfo, REQUEST_RECONFIGURE_APPWIDGET);
Sunny Goyald478c832016-04-01 12:04:16 -0700544 }
545 }
546 break;
547 }
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800548 }
Sunny Goyal2100c782016-08-22 16:00:03 -0700549
Adam Cohendb364c32014-05-20 14:23:40 -0700550 return screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800551 }
552
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800553 private void handleActivityResult(
Michael Jurka8b805b12012-04-18 14:23:14 -0700554 final int requestCode, final int resultCode, final Intent data) {
Sunny Goyal2100c782016-08-22 16:00:03 -0700555 if (isWorkspaceLoading()) {
556 // process the result once the workspace has loaded.
557 mPendingActivityResult = new ActivityResultInfo(requestCode, resultCode, data);
558 return;
559 }
560 mPendingActivityResult = null;
561
Winson Chunge341d302013-08-16 14:31:00 -0700562 // Reset the startActivity waiting flag
Sunny Goyal2100c782016-08-22 16:00:03 -0700563 final PendingRequestArgs requestArgs = mPendingRequestArgs;
564 setWaitingForResult(null);
565 if (requestArgs == null) {
566 return;
567 }
568
569 final int pendingAddWidgetId = requestArgs.getWidgetId();
Winson Chunge341d302013-08-16 14:31:00 -0700570
Adam Cohenad4e15c2013-10-17 16:21:35 -0700571 Runnable exitSpringLoaded = new Runnable() {
572 @Override
573 public void run() {
Sunny Goyal4c7f2152017-10-17 17:17:16 -0700574 exitSpringLoadedDragMode(SPRING_LOADED_EXIT_DELAY);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700575 }
576 };
577
Michael Jurka8b805b12012-04-18 14:23:14 -0700578 if (requestCode == REQUEST_BIND_APPWIDGET) {
Winsona1f79d32015-08-05 14:00:45 -0700579 // This is called only if the user did not previously have permissions to bind widgets
Adam Cohenad4e15c2013-10-17 16:21:35 -0700580 final int appWidgetId = data != null ?
Michael Jurka8b805b12012-04-18 14:23:14 -0700581 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
582 if (resultCode == RESULT_CANCELED) {
Sunny Goyal2100c782016-08-22 16:00:03 -0700583 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId, requestArgs);
Adam Cohen689ff162014-05-08 17:27:56 -0700584 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700585 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
Michael Jurka8b805b12012-04-18 14:23:14 -0700586 } else if (resultCode == RESULT_OK) {
Sunny Goyal2100c782016-08-22 16:00:03 -0700587 addAppWidgetImpl(
588 appWidgetId, requestArgs, null,
Sunny Goyal04a324a2017-01-20 21:08:59 -0800589 requestArgs.getWidgetHandler(),
Sunny Goyal2100c782016-08-22 16:00:03 -0700590 ON_ACTIVITY_RESULT_ANIMATION_DELAY);
Michael Jurka8b805b12012-04-18 14:23:14 -0700591 }
592 return;
Michael Jurka336fd4f2013-09-12 00:05:02 +0200593 } else if (requestCode == REQUEST_PICK_WALLPAPER) {
Sunny Goyalf9403d92017-10-18 10:55:56 -0700594 if (resultCode == RESULT_OK && isInState(LauncherState.OVERVIEW)) {
Tony Wickhame3054412015-09-09 09:05:25 -0700595 // User could have free-scrolled between pages before picking a wallpaper; make sure
596 // we move to the closest one now.
597 mWorkspace.setCurrentPage(mWorkspace.getPageNearestToCenterOfScreen());
Winson Chungdc61c4d2015-04-20 18:26:57 -0700598 showWorkspace(false);
Michael Jurka336fd4f2013-09-12 00:05:02 +0200599 }
600 return;
Michael Jurka8b805b12012-04-18 14:23:14 -0700601 }
Michael Jurka336fd4f2013-09-12 00:05:02 +0200602
Adam Cohened66b2b2012-01-23 17:28:51 -0800603 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
Sunny Goyal5c97f512015-05-19 16:03:28 -0700604 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700605
Adam Cohened66b2b2012-01-23 17:28:51 -0800606 // We have special handling for widgets
607 if (isWidgetDrop) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800608 final int appWidgetId;
609 int widgetId = data != null ? data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1)
610 : -1;
611 if (widgetId < 0) {
612 appWidgetId = pendingAddWidgetId;
613 } else {
614 appWidgetId = widgetId;
615 }
616
Adam Cohenad4e15c2013-10-17 16:21:35 -0700617 final int result;
Adam Cohenf0129b12013-11-04 17:57:36 -0800618 if (appWidgetId < 0 || resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700619 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not " +
620 "returned from the widget configuration activity.");
Adam Cohenad4e15c2013-10-17 16:21:35 -0700621 result = RESULT_CANCELED;
Sunny Goyal2100c782016-08-22 16:00:03 -0700622 completeTwoStageWidgetDrop(result, appWidgetId, requestArgs);
Adam Cohendb364c32014-05-20 14:23:40 -0700623 final Runnable onComplete = new Runnable() {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700624 @Override
625 public void run() {
Sunny Goyalaeb16432017-10-16 11:46:41 -0700626 exitSpringLoadedDragMode(SPRING_LOADED_EXIT_NEXT_FRAME);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700627 }
628 };
Adam Cohendb364c32014-05-20 14:23:40 -0700629
Sunny Goyal2100c782016-08-22 16:00:03 -0700630 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
631 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
632 } else {
633 if (requestArgs.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
634 // When the screen id represents an actual screen (as opposed to a rank)
635 // we make sure that the drop page actually exists.
636 requestArgs.screenId =
637 ensurePendingDropLayoutExists(requestArgs.screenId);
Adam Cohendb364c32014-05-20 14:23:40 -0700638 }
Sunny Goyal2100c782016-08-22 16:00:03 -0700639 final CellLayout dropLayout =
640 mWorkspace.getScreenWithId(requestArgs.screenId);
641
642 dropLayout.setDropPending(true);
643 final Runnable onComplete = new Runnable() {
644 @Override
645 public void run() {
646 completeTwoStageWidgetDrop(resultCode, appWidgetId, requestArgs);
647 dropLayout.setDropPending(false);
648 }
649 };
650 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
651 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
Winson Chung5aaab772012-04-27 15:24:02 -0700652 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800653 return;
654 }
655
Sunny Goyald478c832016-04-01 12:04:16 -0700656 if (requestCode == REQUEST_RECONFIGURE_APPWIDGET
657 || requestCode == REQUEST_BIND_PENDING_APPWIDGET) {
Sunny Goyalff572272014-07-23 13:58:07 -0700658 if (resultCode == RESULT_OK) {
659 // Update the widget view.
Sunny Goyal2100c782016-08-22 16:00:03 -0700660 completeAdd(requestCode, data, pendingAddWidgetId, requestArgs);
Sunny Goyalff572272014-07-23 13:58:07 -0700661 }
662 // Leave the widget in the pending state if the user canceled the configure.
663 return;
664 }
665
Sunny Goyalaad90582015-07-09 14:22:50 -0700666 if (requestCode == REQUEST_CREATE_SHORTCUT) {
667 // Handle custom shortcuts created using ACTION_CREATE_SHORTCUT.
Sunny Goyal2100c782016-08-22 16:00:03 -0700668 if (resultCode == RESULT_OK && requestArgs.container != ItemInfo.NO_ID) {
669 completeAdd(requestCode, data, -1, requestArgs);
670 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
671 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
672
Sunny Goyalaad90582015-07-09 14:22:50 -0700673 } else if (resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700674 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
675 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800676 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800677 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800678 mDragLayer.clearAnimatedView();
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800679 }
680
681 @Override
Sunny Goyal64a75aa2017-07-03 13:50:52 -0700682 public void onActivityResult(
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800683 final int requestCode, final int resultCode, final Intent data) {
684 handleActivityResult(requestCode, resultCode, data);
685 if (mLauncherCallbacks != null) {
686 mLauncherCallbacks.onActivityResult(requestCode, resultCode, data);
687 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800688 }
689
Sunny Goyal7ce471b2017-08-02 03:37:39 -0700690 @Override
Sunny Goyaldd2e6df2015-07-07 10:57:57 -0700691 public void onRequestPermissionsResult(int requestCode, String[] permissions,
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600692 int[] grantResults) {
Sunny Goyal2100c782016-08-22 16:00:03 -0700693 PendingRequestArgs pendingArgs = mPendingRequestArgs;
694 if (requestCode == REQUEST_PERMISSION_CALL_PHONE && pendingArgs != null
695 && pendingArgs.getRequestCode() == REQUEST_PERMISSION_CALL_PHONE) {
696 setWaitingForResult(null);
697
Sunny Goyal28c6b962015-10-12 11:42:05 -0700698 View v = null;
Sunny Goyal2100c782016-08-22 16:00:03 -0700699 CellLayout layout = getCellLayout(pendingArgs.container, pendingArgs.screenId);
Sunny Goyal28c6b962015-10-12 11:42:05 -0700700 if (layout != null) {
Sunny Goyal2100c782016-08-22 16:00:03 -0700701 v = layout.getChildAt(pendingArgs.cellX, pendingArgs.cellY);
Sunny Goyal28c6b962015-10-12 11:42:05 -0700702 }
Sunny Goyal2100c782016-08-22 16:00:03 -0700703 Intent intent = pendingArgs.getPendingIntent();
704
Sunny Goyal28c6b962015-10-12 11:42:05 -0700705 if (grantResults.length > 0
706 && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
Sunny Goyal85fc55a2016-05-31 10:44:03 -0700707 startActivitySafely(v, intent, null);
Sunny Goyal28c6b962015-10-12 11:42:05 -0700708 } else {
709 // TODO: Show a snack bar with link to settings
710 Toast.makeText(this, getString(R.string.msg_no_phone_permission,
Sunny Goyal112ce422016-08-22 16:45:29 -0700711 getString(R.string.derived_app_name)), Toast.LENGTH_SHORT).show();
Sunny Goyal28c6b962015-10-12 11:42:05 -0700712 }
713 }
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600714 if (mLauncherCallbacks != null) {
715 mLauncherCallbacks.onRequestPermissionsResult(requestCode, permissions,
716 grantResults);
717 }
718 }
719
Adam Cohendb364c32014-05-20 14:23:40 -0700720 /**
721 * Check to see if a given screen id exists. If not, create it at the end, return the new id.
722 *
723 * @param screenId the screen id to check
724 * @return the new screen, or screenId if it exists
725 */
726 private long ensurePendingDropLayoutExists(long screenId) {
Sunny Goyal32554d12015-12-03 15:31:25 -0800727 CellLayout dropLayout = mWorkspace.getScreenWithId(screenId);
Adam Cohendb364c32014-05-20 14:23:40 -0700728 if (dropLayout == null) {
729 // it's possible that the add screen was removed because it was
730 // empty and a re-bind occurred
731 mWorkspace.addExtraEmptyScreen();
732 return mWorkspace.commitExtraEmptyScreen();
733 } else {
734 return screenId;
735 }
736 }
737
Sunny Goyal2100c782016-08-22 16:00:03 -0700738 @Thunk void completeTwoStageWidgetDrop(
739 final int resultCode, final int appWidgetId, final PendingRequestArgs requestArgs) {
740 CellLayout cellLayout = mWorkspace.getScreenWithId(requestArgs.screenId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800741 Runnable onCompleteRunnable = null;
742 int animationType = 0;
743
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700744 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800745 if (resultCode == RESULT_OK) {
746 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
747 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Sunny Goyal04a324a2017-01-20 21:08:59 -0800748 requestArgs.getWidgetHandler().getProviderInfo(this));
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700749 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800750 onCompleteRunnable = new Runnable() {
751 @Override
752 public void run() {
Sunny Goyal2100c782016-08-22 16:00:03 -0700753 completeAddAppWidget(appWidgetId, requestArgs, layout, null);
Sunny Goyal4c7f2152017-10-17 17:17:16 -0700754 exitSpringLoadedDragMode(SPRING_LOADED_EXIT_DELAY);
Adam Cohened66b2b2012-01-23 17:28:51 -0800755 }
756 };
757 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800758 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800759 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
Adam Cohened66b2b2012-01-23 17:28:51 -0800760 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700761 if (mDragLayer.getAnimatedView() != null) {
Sunny Goyal2100c782016-08-22 16:00:03 -0700762 mWorkspace.animateWidgetDrop(requestArgs, cellLayout,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700763 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
764 animationType, boundWidget, true);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700765 } else if (onCompleteRunnable != null) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700766 // The animated view may be null in the case of a rotation during widget configuration
767 onCompleteRunnable.run();
768 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800769 }
770
771 @Override
Michael Jurkacd496d72013-04-11 11:32:45 -0700772 protected void onStop() {
773 super.onStop();
774 FirstFrameAnimatorHelper.setIsVisible(false);
Adam Cohen9211d422014-10-07 18:14:53 -0700775
776 if (mLauncherCallbacks != null) {
777 mLauncherCallbacks.onStop();
778 }
Sunny Goyal5da78f42016-06-17 14:00:22 -0700779
Sunny Goyalf5e37442016-11-02 10:31:24 -0700780 if (Utilities.ATLEAST_NOUGAT_MR1) {
Sunny Goyal5da78f42016-06-17 14:00:22 -0700781 mAppWidgetHost.stopListening();
782 }
Tony Wickham010d2552017-01-20 08:15:28 -0800783
784 NotificationListener.removeNotificationsChangedListener();
Michael Jurkacd496d72013-04-11 11:32:45 -0700785 }
786
787 @Override
788 protected void onStart() {
789 super.onStart();
790 FirstFrameAnimatorHelper.setIsVisible(true);
Adam Cohen9211d422014-10-07 18:14:53 -0700791
792 if (mLauncherCallbacks != null) {
793 mLauncherCallbacks.onStart();
794 }
Sunny Goyal5da78f42016-06-17 14:00:22 -0700795
Sunny Goyalf5e37442016-11-02 10:31:24 -0700796 if (Utilities.ATLEAST_NOUGAT_MR1) {
Sunny Goyal5da78f42016-06-17 14:00:22 -0700797 mAppWidgetHost.startListening();
798 }
Tony Wickham010d2552017-01-20 08:15:28 -0800799
800 if (!isWorkspaceLoading()) {
801 NotificationListener.setNotificationsChangedListener(mPopupDataProvider);
802 }
Jon Miranda2d89ea82017-05-04 11:47:53 -0700803
Jon Miranda7fda2852017-07-19 16:07:01 -0700804 if (mShouldFadeInScrim && mDragLayer.getBackground() != null) {
Jon Miranda2d89ea82017-05-04 11:47:53 -0700805 if (mScrimAnimator != null) {
806 mScrimAnimator.cancel();
807 }
808 mDragLayer.getBackground().setAlpha(0);
809 mScrimAnimator = ObjectAnimator.ofInt(mDragLayer.getBackground(),
810 LauncherAnimUtils.DRAWABLE_ALPHA, 0, 255);
811 mScrimAnimator.addListener(new AnimatorListenerAdapter() {
812 @Override
813 public void onAnimationEnd(Animator animation) {
814 mScrimAnimator = null;
815 }
816 });
817 mScrimAnimator.setDuration(600);
818 mScrimAnimator.setStartDelay(getWindow().getTransitionBackgroundFadeDuration());
819 mScrimAnimator.start();
820 }
Jon Miranda7fda2852017-07-19 16:07:01 -0700821 mShouldFadeInScrim = false;
Michael Jurkacd496d72013-04-11 11:32:45 -0700822 }
823
824 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800825 protected void onResume() {
Sunny Goyalfca6bc92017-09-28 16:28:34 -0700826 TraceHelper.beginSection("ON_RESUME");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800827 super.onResume();
Sunny Goyalfca6bc92017-09-28 16:28:34 -0700828 TraceHelper.partitionSection("ON_RESUME", "superCall");
829
Hyunyoung Songaa953652016-04-19 18:30:24 -0700830 getUserEventDispatcher().resetElapsedSessionMillis();
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800831 mPaused = false;
Sunny Goyal2100c782016-08-22 16:00:03 -0700832 if (mOnResumeNeedsLoad) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700833 setWorkspaceLoading(true);
Sunny Goyal93f878c2016-03-30 17:31:24 -0700834 mModel.startLoader(getCurrentWorkspaceScreen());
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700835 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800836 }
Michael Jurka1e2f4652013-07-08 18:03:46 -0700837 if (mBindOnResumeCallbacks.size() > 0) {
Michael Jurkac402cd92013-05-20 15:49:32 +0200838 // We might have postponed some bind calls until onResume (see waitUntilResume) --
839 // execute them here
Michael Jurka1e2f4652013-07-08 18:03:46 -0700840 for (int i = 0; i < mBindOnResumeCallbacks.size(); i++) {
841 mBindOnResumeCallbacks.get(i).run();
Michael Jurkac402cd92013-05-20 15:49:32 +0200842 }
Michael Jurka1e2f4652013-07-08 18:03:46 -0700843 mBindOnResumeCallbacks.clear();
Michael Jurka447bf842013-05-15 14:52:15 +0200844 }
Winson Chunge4e50662012-01-23 14:45:13 -0800845
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700846 setOnResumeCallback(null);
Sunny Goyala474a9b2017-05-04 16:47:11 -0700847 // Process any items that were added while Launcher was away.
848 InstallShortcutReceiver.disableAndFlushInstallQueue(
849 InstallShortcutReceiver.FLAG_ACTIVITY_PAUSED, this);
Sunny Goyal95f3d6b2016-08-10 16:09:29 -0700850
Sunny Goyala474a9b2017-05-04 16:47:11 -0700851 // Refresh shortcuts if the permission changed.
852 mModel.refreshShortcutsIfRequired();
Adam Cohen9211d422014-10-07 18:14:53 -0700853
Hyunyoung Songc001cf52016-07-21 17:32:43 -0700854 if (shouldShowDiscoveryBounce()) {
855 mAllAppsController.showDiscoveryBounce();
856 }
Adam Cohen9211d422014-10-07 18:14:53 -0700857 if (mLauncherCallbacks != null) {
858 mLauncherCallbacks.onResume();
859 }
Mario Bertschler0fc6f682017-02-17 12:16:13 -0800860
Sunny Goyala502aa32017-10-02 16:04:06 -0700861 clearTypedText();
862
Sunny Goyalfca6bc92017-09-28 16:28:34 -0700863 TraceHelper.endSection("ON_RESUME");
Adam Cohen06dff352012-06-01 17:17:08 -0700864 }
865
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800866 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700867 protected void onPause() {
Winson Chung997a9232013-07-24 15:33:46 -0700868 // Ensure that items added to Launcher are queued until Launcher returns
Sunny Goyala474a9b2017-05-04 16:47:11 -0700869 InstallShortcutReceiver.enableInstallQueue(InstallShortcutReceiver.FLAG_ACTIVITY_PAUSED);
Winson Chung997a9232013-07-24 15:33:46 -0700870
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700871 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700872 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -0800873 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -0700874 mDragController.resetLastGestureUpTime();
Adam Cohen6fecd412013-10-02 17:41:50 -0700875
Adam Cohen9211d422014-10-07 18:14:53 -0700876 if (mLauncherCallbacks != null) {
877 mLauncherCallbacks.onPause();
Adam Cohenbffe7452013-07-22 18:21:45 -0700878 }
Adam Cohenbffe7452013-07-22 18:21:45 -0700879 }
880
Adam Cohenc2d6e892014-10-16 09:49:24 -0700881 public interface LauncherOverlay {
882
883 /**
884 * Touch interaction leading to overscroll has begun
885 */
Rajeev Kumar43c0f582017-06-23 15:34:55 -0700886 void onScrollInteractionBegin();
Adam Cohenc2d6e892014-10-16 09:49:24 -0700887
888 /**
889 * Touch interaction related to overscroll has ended
890 */
Rajeev Kumar43c0f582017-06-23 15:34:55 -0700891 void onScrollInteractionEnd();
Adam Cohenc2d6e892014-10-16 09:49:24 -0700892
893 /**
894 * Scroll progress, between 0 and 100, when the user scrolls beyond the leftmost
895 * screen (or in the case of RTL, the rightmost screen).
896 */
Rajeev Kumar43c0f582017-06-23 15:34:55 -0700897 void onScrollChange(float progress, boolean rtl);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700898
899 /**
Sunny Goyal32554d12015-12-03 15:31:25 -0800900 * Called when the launcher is ready to use the overlay
901 * @param callbacks A set of callbacks provided by Launcher in relation to the overlay
Adam Cohenc2d6e892014-10-16 09:49:24 -0700902 */
Rajeev Kumar43c0f582017-06-23 15:34:55 -0700903 void setOverlayCallbacks(LauncherOverlayCallbacks callbacks);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700904 }
905
906 public interface LauncherOverlayCallbacks {
Rajeev Kumar43c0f582017-06-23 15:34:55 -0700907 void onScrollChanged(float progress);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700908 }
909
910 class LauncherOverlayCallbacksImpl implements LauncherOverlayCallbacks {
911
Sunny Goyalc86df472016-02-25 09:19:38 -0800912 public void onScrollChanged(float progress) {
913 if (mWorkspace != null) {
914 mWorkspace.onOverlayScrollChanged(progress);
915 }
916 }
Adam Cohenc2d6e892014-10-16 09:49:24 -0700917 }
918
Jorim Jaggid017f882014-01-14 17:08:48 -0800919 protected boolean hasSettings() {
Adam Cohen9211d422014-10-07 18:14:53 -0700920 if (mLauncherCallbacks != null) {
921 return mLauncherCallbacks.hasSettings();
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700922 } else {
Sunny Goyal4179e9b2017-03-08 14:25:09 -0800923 // On O and above we there is always some setting present settings (add icon to
924 // home screen or icon badging). On earlier APIs we will have the allow rotation
925 // setting, on devices with a locked orientation,
Hyunyoung Songe24cb632017-09-11 11:18:03 -0700926 return Utilities.ATLEAST_OREO || !getResources().getBoolean(R.bool.allow_rotation);
Adam Cohen9211d422014-10-07 18:14:53 -0700927 }
Jorim Jaggid017f882014-01-14 17:08:48 -0800928 }
929
Jeffrey Sharkey99c87582009-03-24 17:59:43 -0700930 @Override
931 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -0400932 // Flag the loader to stop early before switching
Adam Cohen1a85c582014-09-30 09:48:49 -0700933 if (mModel.isCurrentCallbacks(this)) {
934 mModel.stopLoader();
935 }
Hyunyoung Song3f471442015-04-08 19:01:34 -0700936 //TODO(hyunyoungs): stop the widgets loader when there is a rotation.
937
Romain Guy13c2e7b2010-03-10 19:45:00 -0800938 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -0700939 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700940
Joe Onorato2d7e7d02010-01-29 15:57:19 -0800941 // We can't hide the IME if it was forced open. So don't bother
Joe Onorato2d7e7d02010-01-29 15:57:19 -0800942 @Override
943 public void onWindowFocusChanged(boolean hasFocus) {
944 super.onWindowFocusChanged(hasFocus);
Adam Cohened307df2013-10-02 09:37:31 -0700945 mHasFocus = hasFocus;
Adam Cohen9211d422014-10-07 18:14:53 -0700946
947 if (mLauncherCallbacks != null) {
948 mLauncherCallbacks.onWindowFocusChanged(hasFocus);
949 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -0800950 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -0800951
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800952 private boolean acceptFilter() {
953 final InputMethodManager inputManager = (InputMethodManager)
954 getSystemService(Context.INPUT_METHOD_SERVICE);
955 return !inputManager.isFullscreenMode();
956 }
957
958 @Override
959 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -0700960 final int uniChar = event.getUnicodeChar();
961 final boolean handled = super.onKeyDown(keyCode, event);
962 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
963 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800964 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
965 keyCode, event);
966 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -0700967 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -0700968 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -0700969 // showSearchDialog()
970 // If there are multiple keystrokes before the search dialog takes focus,
971 // onSearchRequested() will be called for every keystroke,
972 // but it is idempotent, so it's fine.
973 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800974 }
975 }
976
Joe Onorato8a9625e2010-01-28 15:55:35 -0800977 // Eat the long press event so the keyboard doesn't come up.
978 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
979 return true;
980 }
981
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800982 return handled;
983 }
984
Winson46163472015-09-22 17:31:56 -0700985 @Override
986 public boolean onKeyUp(int keyCode, KeyEvent event) {
987 if (keyCode == KeyEvent.KEYCODE_MENU) {
988 // Ignore the menu key if we are currently dragging or are on the custom content screen
Sunny Goyal7ce471b2017-08-02 03:37:39 -0700989 if (!mDragController.isDragging()) {
Sunny Goyal740ac7f2016-09-28 16:47:32 -0700990 // Close any open floating view
991 AbstractFloatingView.closeAllOpenViews(this);
Tony Wickham49c8d292016-07-01 11:44:34 -0700992
Winson46163472015-09-22 17:31:56 -0700993 // Show the overview mode if we are on the workspace
Sunny Goyalf9403d92017-10-18 10:55:56 -0700994 if (isInState(LauncherState.NORMAL) && !mWorkspace.isSwitchingState()) {
Winson46163472015-09-22 17:31:56 -0700995 mOverviewPanel.requestFocus();
Winsone9f27272015-10-13 10:47:51 -0700996 showOverviewMode(true, true /* requestButtonFocus */);
Winson46163472015-09-22 17:31:56 -0700997 }
998 }
999 return true;
1000 }
1001 return super.onKeyUp(keyCode, event);
1002 }
1003
Karl Rosaen138a0412009-04-23 19:00:21 -07001004 private String getTypedText() {
1005 return mDefaultKeySsb.toString();
1006 }
1007
Sunny Goyal6f28e712016-09-13 14:19:29 -07001008 @Override
1009 public void clearTypedText() {
Karl Rosaen138a0412009-04-23 19:00:21 -07001010 mDefaultKeySsb.clear();
1011 mDefaultKeySsb.clearSpans();
1012 Selection.setSelection(mDefaultKeySsb, 0);
1013 }
1014
Sunny Goyalf9403d92017-10-18 10:55:56 -07001015 public boolean isInState(LauncherState state) {
1016 return mWorkspace.getState() == state;
1017 }
1018
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001019 /**
1020 * Restores the previous state, if it exists.
1021 *
1022 * @param savedState The previous state.
1023 */
1024 private void restoreState(Bundle savedState) {
1025 if (savedState == null) {
1026 return;
1027 }
1028
Sunny Goyalcd7c0aa2017-10-19 12:36:27 -07001029 int stateOrdinal = savedState.getInt(RUNTIME_STATE, LauncherState.NORMAL.ordinal);
Sunny Goyalf9403d92017-10-18 10:55:56 -07001030 LauncherState[] stateValues = LauncherState.values();
1031 LauncherState state = stateValues[stateOrdinal];
1032 if (!state.doNotRestore) {
1033 if (state == LauncherState.ALL_APPS) {
1034 showAppsView(false /* animated */);
1035 } else {
1036 // TODO: Add logic for other states
1037 }
Joe Onorato3a8820b2009-11-10 15:06:42 -08001038 }
1039
Sunny Goyal2100c782016-08-22 16:00:03 -07001040 PendingRequestArgs requestArgs = savedState.getParcelable(RUNTIME_STATE_PENDING_REQUEST_ARGS);
1041 if (requestArgs != null) {
1042 setWaitingForResult(requestArgs);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001043 }
Sunny Goyal2100c782016-08-22 16:00:03 -07001044
1045 mPendingActivityResult = savedState.getParcelable(RUNTIME_STATE_PENDING_ACTIVITY_RESULT);
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -07001046
1047 SparseArray<Parcelable> widgetsState =
1048 savedState.getSparseParcelableArray(RUNTIME_STATE_WIDGET_PANEL);
1049 if (widgetsState != null) {
1050 WidgetsFullSheet.show(this, false).restoreHierarchyState(widgetsState);
1051 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001052 }
1053
1054 /**
1055 * Finds all the views we need and configure them properly.
1056 */
1057 private void setupViews() {
Winson Chung4c98d922011-05-31 16:50:48 -07001058 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
Sunny Goyal3333b0c2016-05-09 20:43:21 -07001059 mFocusHandler = mDragLayer.getFocusIndicatorHelper();
Sunny Goyal966d9012017-06-06 16:43:59 -07001060 mWorkspace = mDragLayer.findViewById(R.id.workspace);
Sunny Goyald0a6ae72016-06-16 12:29:03 -07001061 mWorkspace.initParentViews(mDragLayer);
Craig Mautner360310b2012-10-26 15:13:08 -07001062
Sunny Goyal784f9c32016-03-23 16:56:54 -07001063 mLauncherView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
1064 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
1065 | View.SYSTEM_UI_FLAG_LAYOUT_STABLE);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001066
Winson Chung4c98d922011-05-31 16:50:48 -07001067 // Setup the drag layer
Hyunyoung Song645764e2016-06-06 14:19:02 -07001068 mDragLayer.setup(this, mDragController, mAllAppsController);
Winson Chung4c98d922011-05-31 16:50:48 -07001069
Winson Chung3d503fb2011-07-13 17:25:49 -07001070 // Setup the hotseat
1071 mHotseat = (Hotseat) findViewById(R.id.hotseat);
1072 if (mHotseat != null) {
Winson Chung11a1a532013-09-13 11:14:45 -07001073 mHotseat.setOnLongClickListener(this);
Winson Chung3d503fb2011-07-13 17:25:49 -07001074 }
1075
Winsone9f27272015-10-13 10:47:51 -07001076 // Setup the overview panel
1077 setupOverviewPanel();
Adam Cohenf358a4b2013-07-23 16:47:31 -07001078
Winson Chung4c98d922011-05-31 16:50:48 -07001079 // Setup the workspace
1080 mWorkspace.setHapticFeedbackEnabled(false);
1081 mWorkspace.setOnLongClickListener(this);
Hyunyoung Song645764e2016-06-06 14:19:02 -07001082 mWorkspace.setup(mDragController);
Winsonc7d2e832016-07-28 12:24:55 -07001083 // Until the workspace is bound, ensure that we keep the wallpaper offset locked to the
1084 // default state, otherwise we will update to the wrong offsets in RTL
1085 mWorkspace.lockWallpaperToDefaultPage();
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07001086 mWorkspace.bindAndInitFirstWorkspaceScreen(null /* recycled qsb */);
Hyunyoung Song645764e2016-06-06 14:19:02 -07001087 mDragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001088
Tony Wickham34d2c912015-09-11 09:27:58 -07001089 // Get the search/delete/uninstall bar
Rajeev Kumar43c0f582017-06-23 15:34:55 -07001090 mDropTargetBar = mDragLayer.findViewById(R.id.drop_target_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001091
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -07001092 // Setup Apps
1093 mAppsView = findViewById(R.id.apps_view);
Craig Mautner360310b2012-10-26 15:13:08 -07001094
Winson Chung3d503fb2011-07-13 17:25:49 -07001095 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Hyunyoung Song645764e2016-06-06 14:19:02 -07001096 mDragController.setMoveTarget(mWorkspace);
1097 mDragController.addDropTarget(mWorkspace);
Sunny Goyal47328fd2016-05-25 18:56:41 -07001098 mDropTargetBar.setup(mDragController);
Daniel Sandler924b9932013-06-12 00:38:25 -04001099
Hyunyoung Songd725f642017-08-17 22:26:35 -07001100 mAllAppsController.setupViews(mAppsView, mHotseat, mWorkspace);
Hyunyoung Songa0c56472016-06-20 13:54:42 -07001101
Sunny Goyal322d5562015-06-25 19:35:49 -07001102 if (TestingUtils.MEMORY_DUMP_ENABLED) {
1103 TestingUtils.addWeightWatcher(this);
Daniel Sandler924b9932013-06-12 00:38:25 -04001104 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001105 }
1106
Winsone9f27272015-10-13 10:47:51 -07001107 private void setupOverviewPanel() {
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -07001108 mOverviewPanel = findViewById(R.id.overview_panel);
Winsone9f27272015-10-13 10:47:51 -07001109
Winsone9f27272015-10-13 10:47:51 -07001110 // Bind wallpaper button actions
1111 View wallpaperButton = findViewById(R.id.wallpaper_button);
Sunny Goyal6c46a6d2016-11-23 02:24:32 +05301112 new OverviewButtonClickListener(ControlType.WALLPAPER_BUTTON) {
Winsone9f27272015-10-13 10:47:51 -07001113 @Override
Jon Mirandaf3e35d92016-10-05 14:08:11 -07001114 public void handleViewClick(View view) {
1115 onClickWallpaperPicker(view);
Winsone9f27272015-10-13 10:47:51 -07001116 }
Jon Mirandaf3e35d92016-10-05 14:08:11 -07001117 }.attachTo(wallpaperButton);
Winsone9f27272015-10-13 10:47:51 -07001118
1119 // Bind widget button actions
Sunny Goyal6c46a6d2016-11-23 02:24:32 +05301120 new OverviewButtonClickListener(ControlType.WIDGETS_BUTTON) {
Winsone9f27272015-10-13 10:47:51 -07001121 @Override
Jon Mirandaf3e35d92016-10-05 14:08:11 -07001122 public void handleViewClick(View view) {
1123 onClickAddWidgetButton(view);
Winsone9f27272015-10-13 10:47:51 -07001124 }
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -07001125 }.attachTo(findViewById(R.id.widget_button));
Winsone9f27272015-10-13 10:47:51 -07001126
1127 // Bind settings actions
1128 View settingsButton = findViewById(R.id.settings_button);
1129 boolean hasSettings = hasSettings();
1130 if (hasSettings) {
Sunny Goyal6c46a6d2016-11-23 02:24:32 +05301131 new OverviewButtonClickListener(ControlType.SETTINGS_BUTTON) {
Winsone9f27272015-10-13 10:47:51 -07001132 @Override
Jon Mirandaf3e35d92016-10-05 14:08:11 -07001133 public void handleViewClick(View view) {
1134 onClickSettingsButton(view);
Winsone9f27272015-10-13 10:47:51 -07001135 }
Jon Mirandaf3e35d92016-10-05 14:08:11 -07001136 }.attachTo(settingsButton);
Winsone9f27272015-10-13 10:47:51 -07001137 } else {
1138 settingsButton.setVisibility(View.GONE);
1139 }
1140
1141 mOverviewPanel.setAlpha(0f);
1142 }
1143
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001144 /**
Anjali Koppal5ad44842014-03-10 20:34:39 -07001145 * Sets the all apps button. This method is called from {@link Hotseat}.
Sunny Goyalbb011da2016-06-15 15:42:29 -07001146 * TODO: Get rid of this.
Anjali Koppal5ad44842014-03-10 20:34:39 -07001147 */
1148 public void setAllAppsButton(View allAppsButton) {
1149 mAllAppsButton = allAppsButton;
1150 }
1151
Anjali Koppal5ad44842014-03-10 20:34:39 -07001152 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001153 * Creates a view representing a shortcut.
1154 *
1155 * @param info The data structure describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001156 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001157 View createShortcut(ShortcutInfo info) {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001158 return createShortcut((ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001159 }
1160
1161 /**
1162 * Creates a view representing a shortcut inflated from the specified resource.
1163 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001164 * @param parent The group the shortcut belongs to.
1165 * @param info The data structure describing the shortcut.
1166 *
1167 * @return A View inflated from layoutResId.
1168 */
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001169 public View createShortcut(ViewGroup parent, ShortcutInfo info) {
Sunny Goyal9b29ca52017-02-17 10:39:44 -08001170 BubbleTextView favorite = (BubbleTextView) LayoutInflater.from(parent.getContext())
1171 .inflate(R.layout.app_icon, parent, false);
Sunny Goyal1cd01b02016-11-09 10:43:58 -08001172 favorite.applyFromShortcutInfo(info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001173 favorite.setOnClickListener(this);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001174 favorite.setOnFocusChangeListener(mFocusHandler);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001175 return favorite;
1176 }
1177
1178 /**
Jon Mirandac476d6e2017-05-04 16:30:01 -07001179 * Add a shortcut to the workspace or to a Folder.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001180 *
1181 * @param data The intent describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001182 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001183 private void completeAddShortcut(Intent data, long container, long screenId, int cellX,
Sunny Goyalfb5096d2016-09-08 14:32:06 -07001184 int cellY, PendingRequestArgs args) {
Jon Mirandac476d6e2017-05-04 16:30:01 -07001185 if (args.getRequestCode() != REQUEST_CREATE_SHORTCUT
1186 || args.getPendingIntent().getComponent() == null) {
Sunny Goyalfb5096d2016-09-08 14:32:06 -07001187 return;
1188 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001189
Jon Mirandac476d6e2017-05-04 16:30:01 -07001190 int[] cellXY = mTmpAddItemCellCoordinates;
1191 CellLayout layout = getCellLayout(container, screenId);
1192
Sunny Goyal782f0c92017-01-19 10:27:54 -08001193 ShortcutInfo info = null;
Hyunyoung Songe24cb632017-09-11 11:18:03 -07001194 if (Utilities.ATLEAST_OREO) {
Sunny Goyal22ca9ec2017-05-18 15:03:13 -07001195 info = LauncherAppsCompatVO.createShortcutInfoFromPinItemRequest(
1196 this, LauncherAppsCompatVO.getPinItemRequest(data), 0);
Sunny Goyal782f0c92017-01-19 10:27:54 -08001197 }
1198
1199 if (info == null) {
Sunny Goyalb57645f2017-03-20 13:57:28 -07001200 // Legacy shortcuts are only supported for primary profile.
1201 info = Process.myUserHandle().equals(args.user)
1202 ? InstallShortcutReceiver.fromShortcutIntent(this, data) : null;
Sunny Goyal782f0c92017-01-19 10:27:54 -08001203
Sunny Goyalb57645f2017-03-20 13:57:28 -07001204 if (info == null) {
1205 Log.e(TAG, "Unable to parse a valid custom shortcut result");
1206 return;
1207 } else if (!new PackageManagerHelper(this).hasPermissionForActivity(
Sunny Goyal342e4662017-02-02 15:21:08 -08001208 info.intent, args.getPendingIntent().getComponent().getPackageName())) {
Sunny Goyal782f0c92017-01-19 10:27:54 -08001209 // The app is trying to add a shortcut without sufficient permissions
1210 Log.e(TAG, "Ignoring malicious intent " + info.intent.toUri(0));
1211 return;
1212 }
1213 }
1214
Jon Mirandac476d6e2017-05-04 16:30:01 -07001215 if (container < 0) {
1216 // Adding a shortcut to the Workspace.
1217 final View view = createShortcut(info);
1218 boolean foundCellSpan = false;
1219 // First we check if we already know the exact location where we want to add this item.
1220 if (cellX >= 0 && cellY >= 0) {
1221 cellXY[0] = cellX;
1222 cellXY[1] = cellY;
1223 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001224
Jon Mirandac476d6e2017-05-04 16:30:01 -07001225 // If appropriate, either create a folder or add to an existing folder
1226 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Sunny Goyal1797af42017-10-06 13:29:57 -07001227 true, null)) {
Jon Mirandac476d6e2017-05-04 16:30:01 -07001228 return;
1229 }
1230 DragObject dragObject = new DragObject();
1231 dragObject.dragInfo = info;
1232 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1233 true)) {
1234 return;
1235 }
1236 } else {
1237 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
1238 }
1239
1240 if (!foundCellSpan) {
1241 mWorkspace.onNoCellFound(layout);
Adam Cohen558baaf2011-08-15 15:22:57 -07001242 return;
1243 }
Jon Mirandac476d6e2017-05-04 16:30:01 -07001244
1245 getModelWriter().addItemToDatabase(info, container, screenId, cellXY[0], cellXY[1]);
1246 mWorkspace.addInScreen(view, info);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001247 } else {
Jon Mirandac476d6e2017-05-04 16:30:01 -07001248 // Adding a shortcut to a Folder.
Sunny Goyale29897f2017-07-20 10:09:42 -07001249 FolderIcon folderIcon = findFolderIcon(container);
Jon Mirandac476d6e2017-05-04 16:30:01 -07001250 if (folderIcon != null) {
1251 FolderInfo folderInfo = (FolderInfo) folderIcon.getTag();
1252 folderInfo.add(info, args.rank, false);
1253 } else {
Sunny Goyale29897f2017-07-20 10:09:42 -07001254 Log.e(TAG, "Could not find folder with id " + container + " to add shortcut.");
Jon Mirandac476d6e2017-05-04 16:30:01 -07001255 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001256 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001257 }
1258
Sunny Goyale29897f2017-07-20 10:09:42 -07001259 public FolderIcon findFolderIcon(final long folderIconId) {
1260 return (FolderIcon) mWorkspace.getFirstMatch(new ItemOperator() {
1261 @Override
1262 public boolean evaluate(ItemInfo info, View view) {
1263 return info != null && info.id == folderIconId;
1264 }
1265 });
1266 }
1267
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001268 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001269 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001270 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001271 * @param appWidgetId The app widget id
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001272 */
Sunny Goyal2100c782016-08-22 16:00:03 -07001273 @Thunk void completeAddAppWidget(int appWidgetId, ItemInfo itemInfo,
Adam Cohen59400422014-03-05 18:07:04 -08001274 AppWidgetHostView hostView, LauncherAppWidgetProviderInfo appWidgetInfo) {
1275
Adam Cohened66b2b2012-01-23 17:28:51 -08001276 if (appWidgetInfo == null) {
Sunny Goyal2e1efb42016-03-03 16:58:55 -08001277 appWidgetInfo = mAppWidgetManager.getLauncherAppWidgetInfo(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -08001278 }
Romain Guycbb89e42009-06-08 15:52:54 -07001279
Adam Cohen59400422014-03-05 18:07:04 -08001280 LauncherAppWidgetInfo launcherInfo;
1281 launcherInfo = new LauncherAppWidgetInfo(appWidgetId, appWidgetInfo.provider);
Sunny Goyal2100c782016-08-22 16:00:03 -07001282 launcherInfo.spanX = itemInfo.spanX;
1283 launcherInfo.spanY = itemInfo.spanY;
1284 launcherInfo.minSpanX = itemInfo.minSpanX;
1285 launcherInfo.minSpanY = itemInfo.minSpanY;
Sunny Goyal952e63d2017-08-16 04:59:08 -07001286 launcherInfo.user = appWidgetInfo.getProfile();
Romain Guycbb89e42009-06-08 15:52:54 -07001287
Sunny Goyal43bf11d2017-02-02 13:52:53 -08001288 getModelWriter().addItemToDatabase(launcherInfo,
Sunny Goyal2100c782016-08-22 16:00:03 -07001289 itemInfo.container, itemInfo.screenId, itemInfo.cellX, itemInfo.cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001290
Sunny Goyal2100c782016-08-22 16:00:03 -07001291 if (hostView == null) {
1292 // Perform actual inflation because we're live
1293 hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001294 }
Sunny Goyal2100c782016-08-22 16:00:03 -07001295 hostView.setVisibility(View.VISIBLE);
Sunny Goyald5462aa2016-11-22 16:52:39 +05301296 prepareAppWidget(hostView, launcherInfo);
1297 mWorkspace.addInScreen(hostView, launcherInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001298 }
Romain Guycbb89e42009-06-08 15:52:54 -07001299
Sunny Goyald5462aa2016-11-22 16:52:39 +05301300 private void prepareAppWidget(AppWidgetHostView hostView, LauncherAppWidgetInfo item) {
Sunny Goyal87af0fd2016-05-16 14:56:02 -07001301 hostView.setTag(item);
1302 item.onBindAppWidget(this, hostView);
Sunny Goyal87af0fd2016-05-16 14:56:02 -07001303 hostView.setFocusable(true);
1304 hostView.setOnFocusChangeListener(mFocusHandler);
Sunny Goyal25c2e3e2015-10-28 23:28:21 -07001305 }
1306
Adam Cohended9f8d2010-11-03 13:25:16 -07001307 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1308 @Override
1309 public void onReceive(Context context, Intent intent) {
1310 final String action = intent.getAction();
1311 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
Winson Chungc100e8e2011-08-09 16:02:43 -07001312 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001313 // processing a multi-step drop
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -07001314 if (mAppsView != null && mPendingRequestArgs == null) {
Winson5c6bdbb2015-09-03 11:36:19 -07001315 if (!showWorkspace(false)) {
1316 // If we are already on the workspace, then manually reset all apps
1317 mAppsView.reset();
1318 }
Winson Chung785d2eb2011-04-14 16:08:02 -07001319 }
Jon Miranda7fda2852017-07-19 16:07:01 -07001320 mShouldFadeInScrim = true;
1321 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1322 // ACTION_USER_PRESENT is sent after onStart/onResume. This covers the case where
1323 // the user unlocked and the Launcher is not in the foreground.
1324 mShouldFadeInScrim = false;
Adam Cohended9f8d2010-11-03 13:25:16 -07001325 }
1326 }
1327 };
1328
Tony Wickham010d2552017-01-20 08:15:28 -08001329 public void updateIconBadges(final Set<PackageUserKey> updatedBadges) {
1330 Runnable r = new Runnable() {
1331 @Override
1332 public void run() {
1333 mWorkspace.updateIconBadges(updatedBadges);
1334 mAppsView.updateIconBadges(updatedBadges);
Tony Wickham2fe09f22017-04-25 12:46:04 -07001335
Sunny Goyal10a1bd02017-10-09 14:56:21 -07001336 BaseActionPopup popup = BaseActionPopup.getOpen(Launcher.this);
1337 if (popup instanceof PopupContainerWithArrow) {
1338 ((PopupContainerWithArrow) popup).updateNotificationHeader(updatedBadges);
Tony Wickham2fe09f22017-04-25 12:46:04 -07001339 }
Tony Wickham010d2552017-01-20 08:15:28 -08001340 }
1341 };
1342 if (!waitUntilResume(r)) {
1343 r.run();
1344 }
1345 }
1346
Adam Cohended9f8d2010-11-03 13:25:16 -07001347 @Override
1348 public void onAttachedToWindow() {
1349 super.onAttachedToWindow();
1350
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001351 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Sunny Goyalc86df472016-02-25 09:19:38 -08001352 if (mLauncherCallbacks != null) {
1353 mLauncherCallbacks.onAttachedToWindow();
1354 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001355 }
1356
1357 @Override
1358 public void onDetachedFromWindow() {
1359 super.onDetachedFromWindow();
Sunny Goyalc86df472016-02-25 09:19:38 -08001360
1361 if (mLauncherCallbacks != null) {
1362 mLauncherCallbacks.onDetachedFromWindow();
1363 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001364 }
1365
Winson Chunga6945242014-01-08 14:04:34 -08001366 public DragLayer getDragLayer() {
1367 return mDragLayer;
1368 }
1369
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001370 public AllAppsContainerView getAppsView() {
Winson Chungb745afb2015-03-02 11:51:23 -08001371 return mAppsView;
1372 }
1373
Winson Chunga6945242014-01-08 14:04:34 -08001374 public Workspace getWorkspace() {
1375 return mWorkspace;
1376 }
1377
1378 public Hotseat getHotseat() {
1379 return mHotseat;
1380 }
1381
Jorim Jaggid017f882014-01-14 17:08:48 -08001382 public ViewGroup getOverviewPanel() {
Winson Chunga6945242014-01-08 14:04:34 -08001383 return mOverviewPanel;
1384 }
1385
Sunny Goyal47328fd2016-05-25 18:56:41 -07001386 public DropTargetBar getDropTargetBar() {
1387 return mDropTargetBar;
Tony Wickham34d2c912015-09-11 09:27:58 -07001388 }
1389
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001390 public LauncherAppWidgetHost getAppWidgetHost() {
1391 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001392 }
Romain Guycbb89e42009-06-08 15:52:54 -07001393
Winson Chunga9abd0e2010-10-27 17:18:37 -07001394 public LauncherModel getModel() {
1395 return mModel;
1396 }
1397
Sunny Goyal43bf11d2017-02-02 13:52:53 -08001398 public ModelWriter getModelWriter() {
1399 return mModelWriter;
1400 }
1401
Adam Cohen79d90c52016-04-22 13:29:20 -07001402 public SharedPreferences getSharedPrefs() {
Winson Chunga6945242014-01-08 14:04:34 -08001403 return mSharedPrefs;
1404 }
1405
Jon Miranda6bed3502017-09-19 14:43:17 -07001406 public int getOrientation() { return mOrientation; }
1407
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001408 @Override
1409 protected void onNewIntent(Intent intent) {
Sunny Goyalfca6bc92017-09-28 16:28:34 -07001410 TraceHelper.beginSection("NEW_INTENT");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001411 super.onNewIntent(intent);
1412
Winson15f8b172015-08-19 11:02:39 -07001413 boolean alreadyOnHome = mHasFocus && ((intent.getFlags() &
1414 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1415 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
Sunny Goyal85313732016-09-28 12:00:07 -07001416
1417 // Check this condition before handling isActionMain, as this will get reset.
Sunny Goyalf9403d92017-10-18 10:55:56 -07001418 boolean shouldMoveToDefaultScreen = alreadyOnHome && isInState(LauncherState.NORMAL)
1419 && AbstractFloatingView.getTopOpenView(this) == null;
Sunny Goyal85313732016-09-28 12:00:07 -07001420
Winson15f8b172015-08-19 11:02:39 -07001421 boolean isActionMain = Intent.ACTION_MAIN.equals(intent.getAction());
1422 if (isActionMain) {
Adam Cohen6fecd412013-10-02 17:41:50 -07001423 if (mWorkspace == null) {
1424 // Can be cases where mWorkspace is null, this prevents a NPE
1425 return;
1426 }
Jon Mirandafeba90f2016-10-06 10:53:29 -07001427
1428 // Note: There should be at most one log per method call. This is enforced implicitly
1429 // by using if-else statements.
1430 UserEventDispatcher ued = getUserEventDispatcher();
Jon Mirandafeba90f2016-10-06 10:53:29 -07001431 AbstractFloatingView topOpenView = AbstractFloatingView.getTopOpenView(this);
Sunny Goyal37920962017-09-28 13:43:24 -07001432 if (topOpenView != null) {
1433 topOpenView.logActionCommand(Action.Command.HOME_INTENT);
Jon Mirandafeba90f2016-10-06 10:53:29 -07001434 } else if (alreadyOnHome) {
Sunny Goyalaeb16432017-10-16 11:46:41 -07001435 Target target = newContainerTarget(mWorkspace.getState().containerType);
1436 target.pageIndex = mWorkspace.getCurrentPage();
1437 ued.logActionCommand(Action.Command.HOME_INTENT, target);
Jon Mirandafeba90f2016-10-06 10:53:29 -07001438 }
1439
1440 // In all these cases, only animate if we're already on home
Sunny Goyal740ac7f2016-09-28 16:47:32 -07001441 AbstractFloatingView.closeAllOpenViews(this, alreadyOnHome);
Sunny Goyal53b99362017-10-05 14:58:56 -07001442 showWorkspace(alreadyOnHome /* animated */);
Adam Cohen6fecd412013-10-02 17:41:50 -07001443
1444 final View v = getWindow().peekDecorView();
1445 if (v != null && v.getWindowToken() != null) {
Sunny Goyal326403e2017-10-02 12:45:10 -07001446 UiThreadHelper.hideKeyboardAsync(this, v.getWindowToken());
Adam Cohen6fecd412013-10-02 17:41:50 -07001447 }
1448
Winson Chungb745afb2015-03-02 11:51:23 -08001449 // Reset the apps view
1450 if (!alreadyOnHome && mAppsView != null) {
Sunny Goyal161f96b2017-05-07 11:56:00 -07001451 mAppsView.reset();
Winson Chungb745afb2015-03-02 11:51:23 -08001452 }
1453
Adam Cohen9211d422014-10-07 18:14:53 -07001454 if (mLauncherCallbacks != null) {
1455 mLauncherCallbacks.onHomeIntent();
1456 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001457 }
Sunny Goyal5a81c382017-03-20 15:08:06 -07001458 PinItemDragListener.handleDragRequest(this, intent);
Adam Cohened307df2013-10-02 09:37:31 -07001459
Adam Cohen9211d422014-10-07 18:14:53 -07001460 if (mLauncherCallbacks != null) {
1461 mLauncherCallbacks.onNewIntent(intent);
1462 }
Winson15f8b172015-08-19 11:02:39 -07001463
1464 // Defer moving to the default screen until after we callback to the LauncherCallbacks
1465 // as slow logic in the callbacks eat into the time the scroller expects for the snapToPage
1466 // animation.
1467 if (isActionMain) {
Sunny Goyal00c95b82017-10-03 10:29:23 -07001468 if (shouldMoveToDefaultScreen && !mWorkspace.isTouchActive()) {
Adam Cohen4b66bf32015-09-18 12:15:19 -07001469
Winson15f8b172015-08-19 11:02:39 -07001470 mWorkspace.post(new Runnable() {
1471 @Override
1472 public void run() {
Tonyc17390962015-10-25 17:39:37 -07001473 if (mWorkspace != null) {
Sunny Goyal7ce471b2017-08-02 03:37:39 -07001474 mWorkspace.moveToDefaultScreen();
Tonyc17390962015-10-25 17:39:37 -07001475 }
Winson15f8b172015-08-19 11:02:39 -07001476 }
1477 });
1478 }
1479 }
1480
Sunny Goyalfca6bc92017-09-28 16:28:34 -07001481 TraceHelper.endSection("NEW_INTENT");
Adam Coppa120b8e2013-11-12 16:26:04 +00001482 }
1483
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001484 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001485 public void onRestoreInstanceState(Bundle state) {
1486 super.onRestoreInstanceState(state);
1487 for (int page: mSynchronouslyBoundPages) {
1488 mWorkspace.restoreInstanceStateForChild(page);
1489 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001490 }
1491
1492 @Override
1493 protected void onSaveInstanceState(Bundle outState) {
Adam Cohen21cd0022013-10-09 18:57:02 -07001494 if (mWorkspace.getChildCount() > 0) {
Sunny Goyal7ce471b2017-08-02 03:37:39 -07001495 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN, mWorkspace.getNextPage());
Hyunyoung Song645764e2016-06-06 14:19:02 -07001496
Adam Cohen21cd0022013-10-09 18:57:02 -07001497 }
Sunny Goyalcd7c0aa2017-10-19 12:36:27 -07001498 outState.putInt(RUNTIME_STATE, mWorkspace.getState().ordinal);
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -07001499
1500
1501 AbstractFloatingView widgets = AbstractFloatingView
1502 .getOpenView(this, AbstractFloatingView.TYPE_WIDGETS_FULL_SHEET);
1503 if (widgets != null) {
1504 SparseArray<Parcelable> widgetsState = new SparseArray<>();
1505 widgets.saveHierarchyState(widgetsState);
1506 outState.putSparseParcelableArray(RUNTIME_STATE_WIDGET_PANEL, widgetsState);
1507 } else {
1508 outState.remove(RUNTIME_STATE_WIDGET_PANEL);
1509 }
1510
Sunny Goyal740ac7f2016-09-28 16:47:32 -07001511 // We close any open folders and shortcut containers since they will not be re-opened,
1512 // and we need to make sure this state is reflected.
1513 AbstractFloatingView.closeAllOpenViews(this, false);
Tony Wickham49c8d292016-07-01 11:44:34 -07001514
Sunny Goyal2100c782016-08-22 16:00:03 -07001515 if (mPendingRequestArgs != null) {
1516 outState.putParcelable(RUNTIME_STATE_PENDING_REQUEST_ARGS, mPendingRequestArgs);
1517 }
1518 if (mPendingActivityResult != null) {
1519 outState.putParcelable(RUNTIME_STATE_PENDING_ACTIVITY_RESULT, mPendingActivityResult);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001520 }
1521
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -07001522 super.onSaveInstanceState(outState);
1523
Adam Cohen9211d422014-10-07 18:14:53 -07001524 if (mLauncherCallbacks != null) {
1525 mLauncherCallbacks.onSaveInstanceState(outState);
1526 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001527 }
1528
1529 @Override
1530 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001531 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001532
Sunny Goyal5cc7bbd2017-06-12 09:50:39 -07001533 unregisterReceiver(mReceiver);
Sunny Goyalaaf7d1d2016-05-17 13:38:54 -07001534 mWorkspace.removeFolderListeners();
Winson Chunge7a03942011-08-05 15:05:12 -07001535
Winson Chungcd2b0142011-06-08 16:02:26 -07001536 // Stop callbacks from LauncherModel
Adam Cohen1a85c582014-09-30 09:48:49 -07001537 // It's possible to receive onDestroy after a new Launcher activity has
1538 // been created. In this case, don't interfere with the new Launcher.
1539 if (mModel.isCurrentCallbacks(this)) {
1540 mModel.stopLoader();
Sunny Goyal87f784c2017-01-11 10:48:34 -08001541 LauncherAppState.getInstance(this).setLauncher(null);
Adam Cohen1a85c582014-09-30 09:48:49 -07001542 }
Winson Chungcd2b0142011-06-08 16:02:26 -07001543
Sunny Goyal745bad92016-05-02 10:54:12 -07001544 if (mRotationPrefChangeHandler != null) {
1545 mSharedPrefs.unregisterOnSharedPreferenceChangeListener(mRotationPrefChangeHandler);
1546 }
1547
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001548 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001549 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001550 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001551 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001552 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001553 mAppWidgetHost = null;
1554
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001555 TextKeyListener.getInstance().release();
1556
Tony Wickhame2217252016-03-22 16:34:23 -07001557 ((AccessibilityManager) getSystemService(ACCESSIBILITY_SERVICE))
1558 .removeAccessibilityStateChangeListener(this);
1559
Mario Bertschler27288382017-05-24 15:35:09 -07001560 WallpaperColorInfo.getInstance(this).setOnThemeChangeListener(null);
1561
Michael Jurka2ecf9952012-06-18 12:52:28 -07001562 LauncherAnimUtils.onDestroyActivity();
Adam Cohen9211d422014-10-07 18:14:53 -07001563
Tony2917a8b2017-07-31 23:29:42 -07001564 clearPendingBinds();
1565
Adam Cohen9211d422014-10-07 18:14:53 -07001566 if (mLauncherCallbacks != null) {
1567 mLauncherCallbacks.onDestroy();
1568 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001569 }
1570
Sunny Goyalae502842016-06-17 08:43:56 -07001571 public LauncherAccessibilityDelegate getAccessibilityDelegate() {
1572 return mAccessibilityDelegate;
1573 }
1574
Adam Cohena9cf38f2011-05-02 15:36:58 -07001575 public DragController getDragController() {
1576 return mDragController;
1577 }
1578
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001579 @Override
Sunny Goyal0eca4e22016-07-20 11:43:06 -07001580 public void startActivityForResult(Intent intent, int requestCode, Bundle options) {
Sunny Goyal0eca4e22016-07-20 11:43:06 -07001581 super.startActivityForResult(intent, requestCode, options);
Adam Cohen173f7112015-03-27 15:14:00 -07001582 }
1583
1584 @Override
1585 public void startIntentSenderForResult (IntentSender intent, int requestCode,
1586 Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) {
Adam Cohen173f7112015-03-27 15:14:00 -07001587 try {
1588 super.startIntentSenderForResult(intent, requestCode,
1589 fillInIntent, flagsMask, flagsValues, extraFlags, options);
1590 } catch (IntentSender.SendIntentException e) {
1591 throw new ActivityNotFoundException();
1592 }
1593 }
1594
Winson Chung70d72102011-08-12 11:24:35 -07001595 /**
1596 * Indicates that we want global search for this activity by setting the globalSearch
1597 * argument for {@link #startSearch} to true.
1598 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001599 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07001600 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001601 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001602
Karl Rosaen138a0412009-04-23 19:00:21 -07001603 if (initialQuery == null) {
1604 // Use any text typed in the launcher as the initial query
1605 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07001606 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001607 if (appSearchData == null) {
1608 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01001609 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001610 }
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07001611
Sunny Goyal6f28e712016-09-13 14:19:29 -07001612 if (mLauncherCallbacks == null ||
1613 !mLauncherCallbacks.startSearch(initialQuery, selectInitialQuery, appSearchData)) {
1614 // Starting search from the callbacks failed. Start the default global search.
1615 startGlobalSearch(initialQuery, selectInitialQuery, appSearchData, null);
Ian Parkinson047036e2014-09-01 15:40:53 +01001616 }
Winson Chungcd99cd32015-04-29 11:03:24 -07001617
1618 // We need to show the workspace after starting the search
1619 showWorkspace(true);
Bjorn Bringertc459e522013-06-07 19:36:01 +01001620 }
1621
Ian Parkinson047036e2014-09-01 15:40:53 +01001622 /**
Michael Jurkaa33411c2012-06-14 16:18:21 -07001623 * Starts the global search activity. This code is a copied from SearchManager
1624 */
Sunny Goyal6f28e712016-09-13 14:19:29 -07001625 public void startGlobalSearch(String initialQuery,
Michael Jurkaa33411c2012-06-14 16:18:21 -07001626 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001627 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07001628 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
1629 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
1630 if (globalSearchActivity == null) {
1631 Log.w(TAG, "No global search activity found.");
1632 return;
1633 }
1634 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
1635 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
1636 intent.setComponent(globalSearchActivity);
1637 // Make sure that we have a Bundle to put source in
1638 if (appSearchData == null) {
1639 appSearchData = new Bundle();
1640 } else {
1641 appSearchData = new Bundle(appSearchData);
1642 }
Adam Cohen9211d422014-10-07 18:14:53 -07001643 // Set source to package name of app that starts global search if not set already.
Michael Jurkaa33411c2012-06-14 16:18:21 -07001644 if (!appSearchData.containsKey("source")) {
1645 appSearchData.putString("source", getPackageName());
1646 }
1647 intent.putExtra(SearchManager.APP_DATA, appSearchData);
1648 if (!TextUtils.isEmpty(initialQuery)) {
1649 intent.putExtra(SearchManager.QUERY, initialQuery);
1650 }
1651 if (selectInitialQuery) {
1652 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
1653 }
1654 intent.setSourceBounds(sourceBounds);
1655 try {
1656 startActivity(intent);
1657 } catch (ActivityNotFoundException ex) {
1658 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
1659 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001660 }
1661
Winson Chung70d72102011-08-12 11:24:35 -07001662 @Override
Winson Chung70d72102011-08-12 11:24:35 -07001663 public boolean onPrepareOptionsMenu(Menu menu) {
1664 super.onPrepareOptionsMenu(menu);
Adam Cohen9211d422014-10-07 18:14:53 -07001665 if (mLauncherCallbacks != null) {
1666 return mLauncherCallbacks.onPrepareOptionsMenu(menu);
1667 }
Michael Jurkab94f3f82013-09-11 18:08:54 +02001668 return false;
Winson Chung70d72102011-08-12 11:24:35 -07001669 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001670
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07001671 @Override
1672 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07001673 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07001674 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07001675 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07001676 }
1677
Joe Onorato9c1289c2009-08-17 11:03:03 -04001678 public boolean isWorkspaceLocked() {
Sunny Goyal2100c782016-08-22 16:00:03 -07001679 return mWorkspaceLoading || mPendingRequestArgs != null;
Joe Onorato9c1289c2009-08-17 11:03:03 -04001680 }
1681
Adam Cohen517a7f52014-03-01 12:12:59 -08001682 public boolean isWorkspaceLoading() {
1683 return mWorkspaceLoading;
1684 }
1685
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001686 private void setWorkspaceLoading(boolean value) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001687 mWorkspaceLoading = value;
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001688 }
1689
Sunny Goyal04a324a2017-01-20 21:08:59 -08001690 public void setWaitingForResult(PendingRequestArgs args) {
Sunny Goyal2100c782016-08-22 16:00:03 -07001691 mPendingRequestArgs = args;
Adam Cohen9211d422014-10-07 18:14:53 -07001692 }
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001693
Sunny Goyal2100c782016-08-22 16:00:03 -07001694 void addAppWidgetFromDropImpl(int appWidgetId, ItemInfo info, AppWidgetHostView boundWidget,
Sunny Goyal04a324a2017-01-20 21:08:59 -08001695 WidgetAddFlowHandler addFlowHandler) {
Tony Wickhama0628cc2015-10-14 15:23:04 -07001696 if (LOGD) {
1697 Log.d(TAG, "Adding widget from drop");
1698 }
Sunny Goyal04a324a2017-01-20 21:08:59 -08001699 addAppWidgetImpl(appWidgetId, info, boundWidget, addFlowHandler, 0);
Adam Cohenad4e15c2013-10-17 16:21:35 -07001700 }
1701
Sunny Goyal2100c782016-08-22 16:00:03 -07001702 void addAppWidgetImpl(int appWidgetId, ItemInfo info,
Sunny Goyal04a324a2017-01-20 21:08:59 -08001703 AppWidgetHostView boundWidget, WidgetAddFlowHandler addFlowHandler, int delay) {
1704 if (!addFlowHandler.startConfigActivity(this, appWidgetId, info, REQUEST_CREATE_APPWIDGET)) {
1705 // If the configuration flow was not started, add the widget
Michael Jurkaaf442092010-06-10 17:01:57 -07001706
Adam Cohenad4e15c2013-10-17 16:21:35 -07001707 Runnable onComplete = new Runnable() {
1708 @Override
1709 public void run() {
1710 // Exit spring loaded mode if necessary after adding the widget
Sunny Goyal4c7f2152017-10-17 17:17:16 -07001711 exitSpringLoadedDragMode(SPRING_LOADED_EXIT_DELAY);
Adam Cohenad4e15c2013-10-17 16:21:35 -07001712 }
1713 };
Sunny Goyal04a324a2017-01-20 21:08:59 -08001714 completeAddAppWidget(appWidgetId, info, boundWidget, addFlowHandler.getProviderInfo(this));
Adam Cohen689ff162014-05-08 17:27:56 -07001715 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, delay, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001716 }
1717 }
Romain Guycbb89e42009-06-08 15:52:54 -07001718
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08001719 public void addPendingItem(PendingAddItemInfo info, long container, long screenId,
1720 int[] cell, int spanX, int spanY) {
Sunny Goyal2100c782016-08-22 16:00:03 -07001721 info.container = container;
1722 info.screenId = screenId;
1723 if (cell != null) {
1724 info.cellX = cell[0];
1725 info.cellY = cell[1];
1726 }
1727 info.spanX = spanX;
1728 info.spanY = spanY;
1729
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08001730 switch (info.itemType) {
1731 case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET:
1732 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
Sunny Goyal2100c782016-08-22 16:00:03 -07001733 addAppWidgetFromDrop((PendingAddWidgetInfo) info);
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08001734 break;
1735 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Sunny Goyal782f0c92017-01-19 10:27:54 -08001736 processShortcutFromDrop((PendingAddShortcutInfo) info);
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08001737 break;
1738 default:
1739 throw new IllegalStateException("Unknown item type: " + info.itemType);
1740 }
1741 }
1742
Adam Cohenfbba09b2011-07-18 21:43:05 -07001743 /**
1744 * Process a shortcut drop.
Adam Cohenfbba09b2011-07-18 21:43:05 -07001745 */
Sunny Goyal782f0c92017-01-19 10:27:54 -08001746 private void processShortcutFromDrop(PendingAddShortcutInfo info) {
Sunny Goyalfb5096d2016-09-08 14:32:06 -07001747 Intent intent = new Intent(Intent.ACTION_CREATE_SHORTCUT).setComponent(info.componentName);
1748 setWaitingForResult(PendingRequestArgs.forIntent(REQUEST_CREATE_SHORTCUT, intent, info));
Sunny Goyal782f0c92017-01-19 10:27:54 -08001749 if (!info.activityInfo.startConfigActivity(this, REQUEST_CREATE_SHORTCUT)) {
1750 handleActivityResult(REQUEST_CREATE_SHORTCUT, RESULT_CANCELED, null);
1751 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001752 }
1753
Adam Cohenfbba09b2011-07-18 21:43:05 -07001754 /**
1755 * Process a widget drop.
Adam Cohenfbba09b2011-07-18 21:43:05 -07001756 */
Sunny Goyal2100c782016-08-22 16:00:03 -07001757 private void addAppWidgetFromDrop(PendingAddWidgetInfo info) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001758 AppWidgetHostView hostView = info.boundWidget;
Sunny Goyal952e63d2017-08-16 04:59:08 -07001759 final int appWidgetId;
Sunny Goyal8a0dc382017-01-25 11:30:06 -08001760 WidgetAddFlowHandler addFlowHandler = info.getHandler();
Adam Cohened66b2b2012-01-23 17:28:51 -08001761 if (hostView != null) {
Tony Wickhama0628cc2015-10-14 15:23:04 -07001762 // In the case where we've prebound the widget, we remove it from the DragLayer
1763 if (LOGD) {
1764 Log.d(TAG, "Removing widget view from drag layer and setting boundWidget to null");
1765 }
1766 getDragLayer().removeView(hostView);
1767
Adam Cohened66b2b2012-01-23 17:28:51 -08001768 appWidgetId = hostView.getAppWidgetId();
Sunny Goyal04a324a2017-01-20 21:08:59 -08001769 addAppWidgetFromDropImpl(appWidgetId, info, hostView, addFlowHandler);
Sunny Goyal5b9ebca2015-06-01 18:37:32 -07001770
1771 // Clear the boundWidget so that it doesn't get destroyed.
1772 info.boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -08001773 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001774 // In this case, we either need to start an activity to get permission to bind
1775 // the widget, or we need to start an activity to configure the widget, or both.
Sunny Goyal952e63d2017-08-16 04:59:08 -07001776 if (FeatureFlags.ENABLE_CUSTOM_WIDGETS &&
1777 info.itemType == LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET) {
1778 appWidgetId = CustomWidgetParser.getWidgetIdForCustomProvider(
1779 this, info.componentName);
1780 } else {
1781 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
1782 }
Adam Cohendd70d662012-10-04 16:53:44 -07001783 Bundle options = info.bindOptions;
1784
Sunny Goyalffe83f12014-08-14 17:39:34 -07001785 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
1786 appWidgetId, info.info, options);
Adam Cohendd70d662012-10-04 16:53:44 -07001787 if (success) {
Sunny Goyal04a324a2017-01-20 21:08:59 -08001788 addAppWidgetFromDropImpl(appWidgetId, info, null, addFlowHandler);
Michael Jurka8b805b12012-04-18 14:23:14 -07001789 } else {
Sunny Goyal04a324a2017-01-20 21:08:59 -08001790 addFlowHandler.startBindFlow(this, appWidgetId, info, REQUEST_BIND_APPWIDGET);
Michael Jurka8b805b12012-04-18 14:23:14 -07001791 }
Adam Cohened66b2b2012-01-23 17:28:51 -08001792 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001793 }
1794
Adam Cohendcd297f2013-06-18 13:13:40 -07001795 FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07001796 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07001797 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001798 folderInfo.title = getText(R.string.folder_name);
1799
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001800 // Update the model
Sunny Goyal43bf11d2017-02-02 13:52:53 -08001801 getModelWriter().addItemToDatabase(folderInfo, container, screenId, cellX, cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001802
1803 // Create the view
Sunny Goyal1cd01b02016-11-09 10:43:58 -08001804 FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo);
Sunny Goyald5462aa2016-11-22 16:52:39 +05301805 mWorkspace.addInScreen(newFolder, folderInfo);
Winson Chung5f8afe62013-08-12 16:19:28 -07001806 // Force measure the new folder icon
1807 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
1808 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07001809 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001810 }
Romain Guycbb89e42009-06-08 15:52:54 -07001811
Winsonc0b52fe2015-09-09 16:38:15 -07001812 /**
Winsonfa56b3f2015-09-14 12:01:13 -07001813 * Unbinds the view for the specified item, and removes the item and all its children.
1814 *
1815 * @param v the view being removed.
Winsonfa56b3f2015-09-14 12:01:13 -07001816 * @param itemInfo the {@link ItemInfo} for this view.
1817 * @param deleteFromDb whether or not to delete this item from the db.
Winsonc0b52fe2015-09-09 16:38:15 -07001818 */
Tony Wickhambfbf7f92016-05-19 11:19:39 -07001819 public boolean removeItem(View v, final ItemInfo itemInfo, boolean deleteFromDb) {
Winsonc0b52fe2015-09-09 16:38:15 -07001820 if (itemInfo instanceof ShortcutInfo) {
Winsonfa56b3f2015-09-14 12:01:13 -07001821 // Remove the shortcut from the folder before removing it from launcher
Sunny Goyal44c06432016-04-02 10:56:02 -07001822 View folderIcon = mWorkspace.getHomescreenIconByItemId(itemInfo.container);
1823 if (folderIcon instanceof FolderIcon) {
Sunny Goyalc52ba712016-04-05 15:59:05 -07001824 ((FolderInfo) folderIcon.getTag()).remove((ShortcutInfo) itemInfo, true);
Winsonfa56b3f2015-09-14 12:01:13 -07001825 } else {
1826 mWorkspace.removeWorkspaceItem(v);
1827 }
Winsonc0b52fe2015-09-09 16:38:15 -07001828 if (deleteFromDb) {
Sunny Goyal43bf11d2017-02-02 13:52:53 -08001829 getModelWriter().deleteItemFromDatabase(itemInfo);
Winsonc0b52fe2015-09-09 16:38:15 -07001830 }
1831 } else if (itemInfo instanceof FolderInfo) {
1832 final FolderInfo folderInfo = (FolderInfo) itemInfo;
Sunny Goyalaaf7d1d2016-05-17 13:38:54 -07001833 if (v instanceof FolderIcon) {
1834 ((FolderIcon) v).removeListeners();
1835 }
Winsonc0b52fe2015-09-09 16:38:15 -07001836 mWorkspace.removeWorkspaceItem(v);
1837 if (deleteFromDb) {
Sunny Goyal43bf11d2017-02-02 13:52:53 -08001838 getModelWriter().deleteFolderAndContentsFromDatabase(folderInfo);
Winsonc0b52fe2015-09-09 16:38:15 -07001839 }
1840 } else if (itemInfo instanceof LauncherAppWidgetInfo) {
1841 final LauncherAppWidgetInfo widgetInfo = (LauncherAppWidgetInfo) itemInfo;
Winson44818e02015-10-02 11:25:46 -07001842 mWorkspace.removeWorkspaceItem(v);
Winsonc0b52fe2015-09-09 16:38:15 -07001843 if (deleteFromDb) {
Sunny Goyal56c73602015-09-25 12:55:01 -07001844 deleteWidgetInfo(widgetInfo);
Winsonc0b52fe2015-09-09 16:38:15 -07001845 }
1846 } else {
1847 return false;
1848 }
1849 return true;
1850 }
1851
1852 /**
Sunny Goyal56c73602015-09-25 12:55:01 -07001853 * Deletes the widget info and the widget id.
Winsonc0b52fe2015-09-09 16:38:15 -07001854 */
Sunny Goyal56c73602015-09-25 12:55:01 -07001855 private void deleteWidgetInfo(final LauncherAppWidgetInfo widgetInfo) {
Winsonc0b52fe2015-09-09 16:38:15 -07001856 final LauncherAppWidgetHost appWidgetHost = getAppWidgetHost();
Sunny Goyald478c832016-04-01 12:04:16 -07001857 if (appWidgetHost != null && !widgetInfo.isCustomWidget() && widgetInfo.isWidgetIdAllocated()) {
Winsonc0b52fe2015-09-09 16:38:15 -07001858 // Deleting an app widget ID is a void call but writes to disk before returning
1859 // to the caller...
1860 new AsyncTask<Void, Void, Void>() {
1861 public Void doInBackground(Void ... args) {
1862 appWidgetHost.deleteAppWidgetId(widgetInfo.appWidgetId);
1863 return null;
1864 }
Sunny Goyalf27cb0e2015-09-23 16:12:02 -07001865 }.executeOnExecutor(Utilities.THREAD_POOL_EXECUTOR);
Winsonc0b52fe2015-09-09 16:38:15 -07001866 }
Sunny Goyal43bf11d2017-02-02 13:52:53 -08001867 getModelWriter().deleteItemFromDatabase(widgetInfo);
Winsonc0b52fe2015-09-09 16:38:15 -07001868 }
1869
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001870 @Override
1871 public boolean dispatchKeyEvent(KeyEvent event) {
Hyunyoung Song3c7d9cb2017-01-30 15:11:27 -08001872 return (event.getKeyCode() == KeyEvent.KEYCODE_HOME) || super.dispatchKeyEvent(event);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001873 }
1874
Joe Onorato88ec0992009-11-19 13:16:06 -08001875 @Override
1876 public void onBackPressed() {
Adam Cohen9211d422014-10-07 18:14:53 -07001877 if (mLauncherCallbacks != null && mLauncherCallbacks.handleBackPressed()) {
1878 return;
1879 }
1880
Sunny Goyal45478022015-06-08 16:52:41 -07001881 if (mDragController.isDragging()) {
1882 mDragController.cancelDrag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08001883 return;
1884 }
1885
Jon Mirandafeba90f2016-10-06 10:53:29 -07001886 // Note: There should be at most one log per method call. This is enforced implicitly
1887 // by using if-else statements.
1888 UserEventDispatcher ued = getUserEventDispatcher();
Sunny Goyal740ac7f2016-09-28 16:47:32 -07001889 AbstractFloatingView topView = AbstractFloatingView.getTopOpenView(this);
1890 if (topView != null) {
Sunny Goyal37920962017-09-28 13:43:24 -07001891 topView.onBackPressed();
Sunny Goyalf9403d92017-10-18 10:55:56 -07001892 } else if (isInState(LauncherState.ALL_APPS)) {
Sunny Goyal6c46a6d2016-11-23 02:24:32 +05301893 ued.logActionCommand(Action.Command.BACK, ContainerType.ALLAPPS);
Winson Chungb745afb2015-03-02 11:51:23 -08001894 showWorkspace(true);
Sunny Goyalf9403d92017-10-18 10:55:56 -07001895 } else if (isInState(LauncherState.OVERVIEW)) {
Sunny Goyal6c46a6d2016-11-23 02:24:32 +05301896 ued.logActionCommand(Action.Command.BACK, ContainerType.OVERVIEW);
Winson Chungdc61c4d2015-04-20 18:26:57 -07001897 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08001898 } else {
1899 // Back button is a no-op here, but give at least some feedback for the button press
1900 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07001901 }
Joe Onorato88ec0992009-11-19 13:16:06 -08001902 }
1903
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001904 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001905 * Launches the intent referred by the clicked shortcut.
1906 *
1907 * @param v The view representing the clicked shortcut.
1908 */
1909 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07001910 // Make sure that rogue clicks don't get through while allapps is launching, or after the
1911 // view has detached (it's possible for this to happen if the view is removed mid touch).
1912 if (v.getWindowToken() == null) {
1913 return;
1914 }
1915
Winson Chung9b0b2fe2012-02-24 13:03:34 -08001916 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07001917 return;
1918 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07001919
Adam Cohen1697b792013-09-17 19:08:21 -07001920 if (v instanceof Workspace) {
Sunny Goyalf9403d92017-10-18 10:55:56 -07001921 if (isInState(LauncherState.OVERVIEW)) {
Jon Miranda2e61fba2017-02-24 09:12:59 -08001922 getUserEventDispatcher().logActionOnContainer(LauncherLogProto.Action.Type.TOUCH,
1923 LauncherLogProto.Action.Direction.NONE,
1924 LauncherLogProto.ContainerType.OVERVIEW, mWorkspace.getCurrentPage());
Winson Chungdc61c4d2015-04-20 18:26:57 -07001925 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001926 }
1927 return;
1928 }
1929
1930 if (v instanceof CellLayout) {
Sunny Goyalf9403d92017-10-18 10:55:56 -07001931 if (isInState(LauncherState.OVERVIEW)) {
Jon Mirandac6cf4932017-02-07 17:12:36 -08001932 int page = mWorkspace.indexOfChild(v);
1933 getUserEventDispatcher().logActionOnContainer(LauncherLogProto.Action.Type.TOUCH,
1934 LauncherLogProto.Action.Direction.NONE,
1935 LauncherLogProto.ContainerType.OVERVIEW, page);
1936 mWorkspace.snapToPageFromOverView(page);
Sunny Goyalce5a7e52015-07-08 15:44:27 -07001937 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001938 }
Sunny Goyalce5a7e52015-07-08 15:44:27 -07001939 return;
Adam Cohenf358a4b2013-07-23 16:47:31 -07001940 }
1941
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001942 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08001943 if (tag instanceof ShortcutInfo) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08001944 onClickAppShortcut(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001945 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07001946 if (v instanceof FolderIcon) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08001947 onClickFolderIcon(v);
Adam Cohena9cf38f2011-05-02 15:36:58 -07001948 }
Hyunyoung Songd725f642017-08-17 22:26:35 -07001949 } else if ((v instanceof PageIndicator) ||
Adam Cohenbf78f3c2017-07-14 15:58:48 -07001950 (v == mAllAppsButton && mAllAppsButton != null)) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08001951 onClickAllAppsButton(v);
Sunny Goyal508da152014-08-14 10:53:27 -07001952 } else if (tag instanceof AppInfo) {
1953 startAppShortcutOrInfoActivity(v);
Sunny Goyalff572272014-07-23 13:58:07 -07001954 } else if (tag instanceof LauncherAppWidgetInfo) {
1955 if (v instanceof PendingAppWidgetHostView) {
1956 onClickPendingWidget((PendingAppWidgetHostView) v);
1957 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001958 }
1959 }
1960
Sunny Goyal70660032015-05-14 00:07:08 -07001961 @SuppressLint("ClickableViewAccessibility")
Michael Jurka0e260592010-06-30 17:07:39 -07001962 public boolean onTouch(View v, MotionEvent event) {
Michael Jurka0e260592010-06-30 17:07:39 -07001963 return false;
1964 }
1965
Michael Jurkaaf442092010-06-10 17:01:57 -07001966 /**
Sunny Goyalff572272014-07-23 13:58:07 -07001967 * Event handler for the app widget view which has not fully restored.
1968 */
Sunny Goyale7b8cd92014-08-27 14:04:33 -07001969 public void onClickPendingWidget(final PendingAppWidgetHostView v) {
Sunny Goyal9b4b0812014-10-08 10:47:28 -07001970 if (mIsSafeModeEnabled) {
1971 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
1972 return;
1973 }
1974
Sunny Goyale7b8cd92014-08-27 14:04:33 -07001975 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) v.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07001976 if (v.isReadyForClickSetup()) {
Sunny Goyal04a324a2017-01-20 21:08:59 -08001977 LauncherAppWidgetProviderInfo appWidgetInfo =
1978 mAppWidgetManager.findProvider(info.providerName, info.user);
1979 if (appWidgetInfo == null) {
1980 return;
1981 }
1982 WidgetAddFlowHandler addFlowHandler = new WidgetAddFlowHandler(appWidgetInfo);
1983
Sunny Goyald478c832016-04-01 12:04:16 -07001984 if (info.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_ID_NOT_VALID)) {
1985 if (!info.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_ID_ALLOCATED)) {
1986 // This should not happen, as we make sure that an Id is allocated during bind.
1987 return;
1988 }
Sunny Goyal04a324a2017-01-20 21:08:59 -08001989 addFlowHandler.startBindFlow(this, info.appWidgetId, info,
1990 REQUEST_BIND_PENDING_APPWIDGET);
Sunny Goyald478c832016-04-01 12:04:16 -07001991 } else {
Sunny Goyal04a324a2017-01-20 21:08:59 -08001992 addFlowHandler.startConfigActivity(this, info, REQUEST_RECONFIGURE_APPWIDGET);
Sunny Goyalff572272014-07-23 13:58:07 -07001993 }
Sunny Goyale7b8cd92014-08-27 14:04:33 -07001994 } else {
Sunny Goyale7b8cd92014-08-27 14:04:33 -07001995 final String packageName = info.providerName.getPackageName();
Sunny Goyale6e72002017-01-12 16:55:36 -08001996 onClickPendingAppItem(v, packageName, info.installProgress >= 0);
Sunny Goyalff572272014-07-23 13:58:07 -07001997 }
1998 }
1999
2000 /**
Adam Cohenbf78f3c2017-07-14 15:58:48 -07002001 * Event handler for the "grid" button or "caret" that appears on the home screen, which
2002 * enters all apps mode. In verticalBarLayout the caret can be seen when all apps is open, and
2003 * so in that case reverses the action.
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002004 *
2005 * @param v The view that was clicked.
2006 */
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002007 protected void onClickAllAppsButton(View v) {
2008 if (LOGD) Log.d(TAG, "onClickAllAppsButton");
Sunny Goyalf9403d92017-10-18 10:55:56 -07002009 if (!isInState(LauncherState.ALL_APPS)) {
Sunny Goyal6c46a6d2016-11-23 02:24:32 +05302010 getUserEventDispatcher().logActionOnControl(Action.Touch.TAP,
2011 ControlType.ALL_APPS_BUTTON);
Sunny Goyald0d07032017-10-04 10:40:28 -07002012 showAppsView(true /* animated */);
Adam Cohen5441a9d2017-07-14 14:22:05 -07002013 } else {
2014 showWorkspace(true);
2015 }
2016 }
2017
Sunny Goyale6e72002017-01-12 16:55:36 -08002018 private void onClickPendingAppItem(final View v, final String packageName,
2019 boolean downloadStarted) {
2020 if (downloadStarted) {
2021 // If the download has started, simply direct to the market app.
2022 startMarketIntentForPackage(v, packageName);
2023 return;
2024 }
Sunny Goyale03b8122014-10-08 09:55:24 -07002025 new AlertDialog.Builder(this)
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002026 .setTitle(R.string.abandoned_promises_title)
2027 .setMessage(R.string.abandoned_promise_explanation)
Sunny Goyale6e72002017-01-12 16:55:36 -08002028 .setPositiveButton(R.string.abandoned_search, new DialogInterface.OnClickListener() {
2029 @Override
2030 public void onClick(DialogInterface dialogInterface, int i) {
2031 startMarketIntentForPackage(v, packageName);
2032 }
2033 })
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002034 .setNeutralButton(R.string.abandoned_clean_this,
2035 new DialogInterface.OnClickListener() {
2036 public void onClick(DialogInterface dialog, int id) {
Sunny Goyal7c74e4a2016-12-15 15:53:17 -08002037 final UserHandle user = Process.myUserHandle();
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002038 mWorkspace.removeAbandonedPromise(packageName, user);
2039 }
2040 })
2041 .create().show();
Sunny Goyale6e72002017-01-12 16:55:36 -08002042 }
2043
2044 private void startMarketIntentForPackage(View v, String packageName) {
2045 ItemInfo item = (ItemInfo) v.getTag();
2046 Intent intent = PackageManagerHelper.getMarketIntent(packageName);
Sunny Goyal3dce5f32017-10-05 11:40:05 -07002047 startActivitySafely(v, intent, item);
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002048 }
2049
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002050 /**
2051 * Event handler for an app shortcut click.
2052 *
2053 * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.
2054 */
Chris Wren40c5ed32014-06-24 18:24:23 -04002055 protected void onClickAppShortcut(final View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002056 if (LOGD) Log.d(TAG, "onClickAppShortcut");
2057 Object tag = v.getTag();
2058 if (!(tag instanceof ShortcutInfo)) {
2059 throw new IllegalArgumentException("Input must be a Shortcut");
2060 }
2061
2062 // Open shortcut
2063 final ShortcutInfo shortcut = (ShortcutInfo) tag;
Sunny Goyal1a745e82014-10-02 15:58:31 -07002064
2065 if (shortcut.isDisabled != 0) {
Sunny Goyald3b87ef2016-07-28 12:11:54 -07002066 if ((shortcut.isDisabled &
2067 ~ShortcutInfo.FLAG_DISABLED_SUSPENDED &
2068 ~ShortcutInfo.FLAG_DISABLED_QUIET_USER) == 0) {
2069 // If the app is only disabled because of the above flags, launch activity anyway.
2070 // Framework will tell the user why the app is suspended.
Kenny Guy44cba692016-01-21 19:50:02 +00002071 } else {
Tony Wickham4efffc52016-08-04 16:34:49 -07002072 if (!TextUtils.isEmpty(shortcut.disabledMessage)) {
2073 // Use a message specific to this shortcut, if it has one.
2074 Toast.makeText(this, shortcut.disabledMessage, Toast.LENGTH_SHORT).show();
2075 return;
2076 }
2077 // Otherwise just use a generic error message.
Kenny Guy44cba692016-01-21 19:50:02 +00002078 int error = R.string.activity_not_available;
2079 if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_SAFEMODE) != 0) {
2080 error = R.string.safemode_shortcut_error;
Sunny Goyald3b87ef2016-07-28 12:11:54 -07002081 } else if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_BY_PUBLISHER) != 0 ||
2082 (shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_LOCKED_USER) != 0) {
Sunny Goyal70a7c9b2016-07-28 10:07:32 -07002083 error = R.string.shortcut_not_available;
Kenny Guy44cba692016-01-21 19:50:02 +00002084 }
2085 Toast.makeText(this, error, Toast.LENGTH_SHORT).show();
2086 return;
Sunny Goyal1a745e82014-10-02 15:58:31 -07002087 }
Sunny Goyal1a745e82014-10-02 15:58:31 -07002088 }
2089
Chris Wren40c5ed32014-06-24 18:24:23 -04002090 // Check for abandoned promise
Mario Bertschler8ff9e1d2017-08-08 16:26:18 -07002091 if ((v instanceof BubbleTextView) && shortcut.hasPromiseIconUi()) {
Sunny Goyale6e72002017-01-12 16:55:36 -08002092 String packageName = shortcut.intent.getComponent() != null ?
2093 shortcut.intent.getComponent().getPackageName() : shortcut.intent.getPackage();
2094 if (!TextUtils.isEmpty(packageName)) {
2095 onClickPendingAppItem(v, packageName,
2096 shortcut.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE));
2097 return;
2098 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002099 }
2100
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002101 // Start activities
Sunny Goyal508da152014-08-14 10:53:27 -07002102 startAppShortcutOrInfoActivity(v);
Chris Wren40c5ed32014-06-24 18:24:23 -04002103 }
2104
Sunny Goyala7ce1662016-05-31 15:01:35 -07002105 private void startAppShortcutOrInfoActivity(View v) {
2106 ItemInfo item = (ItemInfo) v.getTag();
Mario Bertschler08ffaae2017-03-20 11:30:27 -07002107 Intent intent;
2108 if (item instanceof PromiseAppInfo) {
2109 PromiseAppInfo promiseAppInfo = (PromiseAppInfo) item;
2110 intent = promiseAppInfo.getMarketIntent();
2111 } else {
2112 intent = item.getIntent();
2113 }
Sunny Goyala7ce1662016-05-31 15:01:35 -07002114 if (intent == null) {
2115 throw new IllegalArgumentException("Input must have a valid intent");
Sunny Goyal508da152014-08-14 10:53:27 -07002116 }
Sunny Goyal3dce5f32017-10-05 11:40:05 -07002117 startActivitySafely(v, intent, item);
Mario Bertschler0fc6f682017-02-17 12:16:13 -08002118 getUserEventDispatcher().logAppLaunch(v, intent); // TODO for discovered apps b/35802115
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002119 }
2120
2121 /**
2122 * Event handler for a folder icon click.
2123 *
2124 * @param v The view that was clicked. Must be an instance of {@link FolderIcon}.
2125 */
2126 protected void onClickFolderIcon(View v) {
2127 if (LOGD) Log.d(TAG, "onClickFolder");
2128 if (!(v instanceof FolderIcon)){
2129 throw new IllegalArgumentException("Input must be a FolderIcon");
2130 }
2131
Sunny Goyal740ac7f2016-09-28 16:47:32 -07002132 Folder folder = ((FolderIcon) v).getFolder();
2133 if (!folder.isOpen() && !folder.isDestroyed()) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002134 // Open the requested folder
Sunny Goyal740ac7f2016-09-28 16:47:32 -07002135 folder.animateOpen();
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002136 }
Michael Jurka5130e402011-10-13 04:55:35 -07002137 }
2138
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002139 /**
2140 * Event handler for the (Add) Widgets button that appears after a long press
2141 * on the home screen.
2142 */
Sunny Goyald0a6ae72016-06-16 12:29:03 -07002143 public void onClickAddWidgetButton(View view) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002144 if (LOGD) Log.d(TAG, "onClickAddWidgetButton");
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002145 if (mIsSafeModeEnabled) {
2146 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2147 } else {
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -07002148 WidgetsFullSheet.show(this, true /* animated */);
Adam Cohen9211d422014-10-07 18:14:53 -07002149 }
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002150 }
2151
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002152 /**
2153 * Event handler for the wallpaper picker button that appears after a long press
2154 * on the home screen.
2155 */
Sunny Goyald0a6ae72016-06-16 12:29:03 -07002156 public void onClickWallpaperPicker(View v) {
Hyunyoung Song0de01172016-10-05 16:27:48 -07002157 if (!Utilities.isWallpaperAllowed(this)) {
Sunny Goyal1ed6c4a2016-04-21 15:16:11 -07002158 Toast.makeText(this, R.string.msg_disabled_by_admin, Toast.LENGTH_SHORT).show();
2159 return;
2160 }
2161
Tony Wickham785f7a52015-08-31 17:28:32 -07002162 int pageScroll = mWorkspace.getScrollForPage(mWorkspace.getPageNearestToCenterOfScreen());
2163 float offset = mWorkspace.mWallpaperOffset.wallpaperOffsetForScroll(pageScroll);
Sunny Goyal2100c782016-08-22 16:00:03 -07002164 setWaitingForResult(new PendingRequestArgs(new ItemInfo()));
Sunny Goyal0eca4e22016-07-20 11:43:06 -07002165 Intent intent = new Intent(Intent.ACTION_SET_WALLPAPER)
Sunny Goyal0eca4e22016-07-20 11:43:06 -07002166 .putExtra(Utilities.EXTRA_WALLPAPER_OFFSET, offset);
Sunny Goyalc677b6b2016-10-17 09:59:01 +01002167
2168 String pickerPackage = getString(R.string.wallpaper_picker_package);
Tony85efb4b2017-06-02 13:06:10 -07002169 boolean hasTargetPackage = !TextUtils.isEmpty(pickerPackage);
2170 if (hasTargetPackage) {
Sunny Goyalc677b6b2016-10-17 09:59:01 +01002171 intent.setPackage(pickerPackage);
2172 }
2173
Sunny Goyal0eca4e22016-07-20 11:43:06 -07002174 intent.setSourceBounds(getViewBounds(v));
Sunny Goyalc677b6b2016-10-17 09:59:01 +01002175 try {
2176 startActivityForResult(intent, REQUEST_PICK_WALLPAPER,
2177 // If there is no target package, use the default intent chooser animation
2178 hasTargetPackage ? getActivityLaunchOptions(v) : null);
2179 } catch (ActivityNotFoundException e) {
2180 setWaitingForResult(null);
2181 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2182 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002183 }
2184
2185 /**
2186 * Event handler for a click on the settings button that appears after a long press
2187 * on the home screen.
2188 */
Sunny Goyald0a6ae72016-06-16 12:29:03 -07002189 public void onClickSettingsButton(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002190 if (LOGD) Log.d(TAG, "onClickSettingsButton");
Sunny Goyalf3a09f92016-08-25 09:45:14 -07002191 Intent intent = new Intent(Intent.ACTION_APPLICATION_PREFERENCES)
2192 .setPackage(getPackageName());
2193 intent.setSourceBounds(getViewBounds(v));
Sunny Goyal53f93b92017-05-04 11:23:29 -07002194 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Sunny Goyalf3a09f92016-08-25 09:45:14 -07002195 startActivity(intent, getActivityLaunchOptions(v));
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002196 }
2197
Tony Wickhame2217252016-03-22 16:34:23 -07002198 @Override
2199 public void onAccessibilityStateChanged(boolean enabled) {
2200 mDragLayer.onAccessibilityStateChanged(enabled);
2201 }
2202
Sunny Goyala7ce1662016-05-31 15:01:35 -07002203 private void startShortcutIntentSafely(Intent intent, Bundle optsBundle, ItemInfo info) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002204 try {
Sunny Goyala7ce1662016-05-31 15:01:35 -07002205 StrictMode.VmPolicy oldPolicy = StrictMode.getVmPolicy();
2206 try {
2207 // Temporarily disable deathPenalty on all default checks. For eg, shortcuts
2208 // containing file Uri's would cause a crash as penaltyDeathOnFileUriExposure
2209 // is enabled by default on NYC.
2210 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder().detectAll()
2211 .penaltyLog().build());
Tony Wickhambfbf7f92016-05-19 11:19:39 -07002212
2213 if (info.itemType == LauncherSettings.Favorites.ITEM_TYPE_DEEP_SHORTCUT) {
2214 String id = ((ShortcutInfo) info).getDeepShortcutId();
2215 String packageName = intent.getPackage();
Sunny Goyaldde4fd92016-11-21 16:02:39 +05302216 DeepShortcutManager.getInstance(this).startShortcut(
Sunny Goyal9994b2b2016-06-23 14:17:24 -07002217 packageName, id, intent.getSourceBounds(), optsBundle, info.user);
Tony Wickhambfbf7f92016-05-19 11:19:39 -07002218 } else {
2219 // Could be launching some bookkeeping activity
2220 startActivity(intent, optsBundle);
2221 }
Sunny Goyala7ce1662016-05-31 15:01:35 -07002222 } finally {
2223 StrictMode.setVmPolicy(oldPolicy);
Kenny Guy1317e2d2014-05-08 18:52:50 +01002224 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002225 } catch (SecurityException e) {
Sunny Goyala7ce1662016-05-31 15:01:35 -07002226 // Due to legacy reasons, direct call shortcuts require Launchers to have the
2227 // corresponding permission. Show the appropriate permission prompt if that
2228 // is the case.
2229 if (intent.getComponent() == null
2230 && Intent.ACTION_CALL.equals(intent.getAction())
2231 && checkSelfPermission(Manifest.permission.CALL_PHONE) !=
2232 PackageManager.PERMISSION_GRANTED) {
Sunny Goyal2100c782016-08-22 16:00:03 -07002233
2234 setWaitingForResult(PendingRequestArgs
2235 .forIntent(REQUEST_PERMISSION_CALL_PHONE, intent, info));
Sunny Goyala7ce1662016-05-31 15:01:35 -07002236 requestPermissions(new String[]{Manifest.permission.CALL_PHONE},
2237 REQUEST_PERMISSION_CALL_PHONE);
2238 } else {
2239 // No idea why this was thrown.
2240 throw e;
Sunny Goyal28c6b962015-10-12 11:42:05 -07002241 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002242 }
2243 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002244
Sunny Goyalfe770c92016-09-27 14:38:58 -07002245 @TargetApi(Build.VERSION_CODES.M)
Tonye3c59252017-05-02 21:32:27 -07002246 public Bundle getActivityLaunchOptions(View v) {
Sunny Goyala7ce1662016-05-31 15:01:35 -07002247 if (Utilities.ATLEAST_MARSHMALLOW) {
2248 int left = 0, top = 0;
2249 int width = v.getMeasuredWidth(), height = v.getMeasuredHeight();
Hyunyoung Song1322f9c2017-06-23 14:57:38 -07002250 if (v instanceof BubbleTextView) {
Sunny Goyala7ce1662016-05-31 15:01:35 -07002251 // Launch from center of icon, not entire view
Hyunyoung Song1322f9c2017-06-23 14:57:38 -07002252 Drawable icon = ((BubbleTextView) v).getIcon();
Sunny Goyala7ce1662016-05-31 15:01:35 -07002253 if (icon != null) {
2254 Rect bounds = icon.getBounds();
2255 left = (width - bounds.width()) / 2;
2256 top = v.getPaddingTop();
2257 width = bounds.width();
2258 height = bounds.height();
2259 }
2260 }
2261 return ActivityOptions.makeClipRevealAnimation(v, left, top, width, height).toBundle();
2262 } else if (Utilities.ATLEAST_LOLLIPOP_MR1) {
2263 // On L devices, we use the device default slide-up transition.
2264 // On L MR1 devices, we use a custom version of the slide-up transition which
2265 // doesn't have the delay present in the device default.
2266 return ActivityOptions.makeCustomAnimation(
2267 this, R.anim.task_open_enter, R.anim.no_anim).toBundle();
2268 }
2269 return null;
2270 }
2271
Tonye3c59252017-05-02 21:32:27 -07002272 public Rect getViewBounds(View v) {
Sunny Goyal0eca4e22016-07-20 11:43:06 -07002273 int[] pos = new int[2];
2274 v.getLocationOnScreen(pos);
2275 return new Rect(pos[0], pos[1], pos[0] + v.getWidth(), pos[1] + v.getHeight());
2276 }
2277
Sunny Goyala7ce1662016-05-31 15:01:35 -07002278 public boolean startActivitySafely(View v, Intent intent, ItemInfo item) {
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002279 if (mIsSafeModeEnabled && !Utilities.isSystemApp(this, intent)) {
2280 Toast.makeText(this, R.string.safemode_shortcut_error, Toast.LENGTH_SHORT).show();
2281 return false;
2282 }
Sunny Goyala7ce1662016-05-31 15:01:35 -07002283 // Only launch using the new animation if the shortcut has not opted out (this is a
2284 // private contract between launcher and may be ignored in the future).
2285 boolean useLaunchAnimation = (v != null) &&
2286 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
2287 Bundle optsBundle = useLaunchAnimation ? getActivityLaunchOptions(v) : null;
2288
Sunny Goyal24bb66a2017-03-21 15:12:01 -07002289 UserHandle user = item == null ? null : item.user;
Sunny Goyala7ce1662016-05-31 15:01:35 -07002290
2291 // Prepare intent
2292 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2293 if (v != null) {
Sunny Goyal0eca4e22016-07-20 11:43:06 -07002294 intent.setSourceBounds(getViewBounds(v));
Sunny Goyala7ce1662016-05-31 15:01:35 -07002295 }
2296 try {
Mario Bertschler0fc6f682017-02-17 12:16:13 -08002297 if (Utilities.ATLEAST_MARSHMALLOW
2298 && (item instanceof ShortcutInfo)
Tony Wickhambfbf7f92016-05-19 11:19:39 -07002299 && (item.itemType == Favorites.ITEM_TYPE_SHORTCUT
Mario Bertschler0fc6f682017-02-17 12:16:13 -08002300 || item.itemType == Favorites.ITEM_TYPE_DEEP_SHORTCUT)
Sunny Goyale6e72002017-01-12 16:55:36 -08002301 && !((ShortcutInfo) item).isPromise()) {
Sunny Goyala7ce1662016-05-31 15:01:35 -07002302 // Shortcuts need some special checks due to legacy reasons.
2303 startShortcutIntentSafely(intent, optsBundle, item);
Sunny Goyal7c74e4a2016-12-15 15:53:17 -08002304 } else if (user == null || user.equals(Process.myUserHandle())) {
Sunny Goyala7ce1662016-05-31 15:01:35 -07002305 // Could be launching some bookkeeping activity
2306 startActivity(intent, optsBundle);
2307 } else {
2308 LauncherAppsCompat.getInstance(this).startActivityForProfile(
2309 intent.getComponent(), user, intent.getSourceBounds(), optsBundle);
2310 }
Sunny Goyal3dce5f32017-10-05 11:40:05 -07002311
2312 if (v instanceof BubbleTextView) {
2313 // This is set to the view that launched the activity that navigated the user away
2314 // from launcher. Since there is no callback for when the activity has finished
2315 // launching, enable the press state and keep this reference to reset the press
2316 // state when we return to launcher.
2317 BubbleTextView btv = (BubbleTextView) v;
2318 btv.setStayPressed(true);
2319 setOnResumeCallback(btv);
2320 }
Sunny Goyala7ce1662016-05-31 15:01:35 -07002321 return true;
2322 } catch (ActivityNotFoundException|SecurityException e) {
2323 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2324 Log.e(TAG, "Unable to launch. tag=" + item + " intent=" + intent, e);
2325 }
2326 return false;
Michael Jurka86a720e2012-05-09 11:23:23 -07002327 }
2328
Tony Wickhamdadb3042016-02-24 11:07:00 -08002329 @Override
Jon Miranda379198e2016-09-23 08:54:40 -07002330 public boolean dispatchTouchEvent(MotionEvent ev) {
2331 mLastDispatchTouchEventX = ev.getX();
2332 return super.dispatchTouchEvent(ev);
2333 }
2334
2335 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002336 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07002337 if (!isDraggingEnabled()) return false;
2338 if (isWorkspaceLocked()) return false;
Sunny Goyalcd7c0aa2017-10-19 12:36:27 -07002339 if (!isInState(LauncherState.NORMAL) && !isInState(LauncherState.OVERVIEW)) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002340
Jon Miranda51f037d2016-11-07 08:37:20 -08002341 boolean ignoreLongPressToOverview =
2342 mDeviceProfile.shouldIgnoreLongPressToOverview(mLastDispatchTouchEventX);
Jon Miranda379198e2016-09-23 08:54:40 -07002343
Adam Cohen1697b792013-09-17 19:08:21 -07002344 if (v instanceof Workspace) {
Sunny Goyalf9403d92017-10-18 10:55:56 -07002345 if (!isInState(LauncherState.OVERVIEW)) {
Jon Mirandacc42c5b2016-10-27 17:15:27 -07002346 if (!mWorkspace.isTouchActive() && !ignoreLongPressToOverview) {
Sunny Goyal6c46a6d2016-11-23 02:24:32 +05302347 getUserEventDispatcher().logActionOnContainer(Action.Touch.LONGPRESS,
2348 Action.Direction.NONE, ContainerType.WORKSPACE,
Jon Mirandaf3e35d92016-10-05 14:08:11 -07002349 mWorkspace.getCurrentPage());
Winson Chungdc61c4d2015-04-20 18:26:57 -07002350 showOverviewMode(true);
Adam Cohen93c97562013-09-26 13:48:01 -07002351 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
2352 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
2353 return true;
2354 } else {
2355 return false;
2356 }
Adam Cohenaa4c8c12014-06-06 11:52:52 -07002357 } else {
2358 return false;
Adam Cohen1697b792013-09-17 19:08:21 -07002359 }
Adam Cohen1697b792013-09-17 19:08:21 -07002360 }
2361
Adam Cohene0aaa0d2014-05-12 12:44:22 -07002362 CellLayout.CellInfo longClickCellInfo = null;
2363 View itemUnderLongClick = null;
2364 if (v.getTag() instanceof ItemInfo) {
2365 ItemInfo info = (ItemInfo) v.getTag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08002366 longClickCellInfo = new CellLayout.CellInfo(v, info);
Adam Cohene0aaa0d2014-05-12 12:44:22 -07002367 itemUnderLongClick = longClickCellInfo.cell;
Sunny Goyal2100c782016-08-22 16:00:03 -07002368 mPendingRequestArgs = null;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002369 }
2370
Winson Chung3d503fb2011-07-13 17:25:49 -07002371 // The hotseat touch handling does not go through Workspace, and we always allow long press
2372 // on hotseat items.
Sunny Goyal8e2133b2015-05-06 13:39:07 -07002373 if (!mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002374 if (itemUnderLongClick == null) {
Adam Cohend3ecce92013-09-16 14:58:00 -07002375 // User long pressed on empty space
Sunny Goyalf9403d92017-10-18 10:55:56 -07002376 if (isInState(LauncherState.OVERVIEW)) {
Adam Cohend3ecce92013-09-16 14:58:00 -07002377 mWorkspace.startReordering(v);
Sunny Goyal6c46a6d2016-11-23 02:24:32 +05302378 getUserEventDispatcher().logActionOnContainer(Action.Touch.LONGPRESS,
2379 Action.Direction.NONE, ContainerType.OVERVIEW);
Adam Cohend3ecce92013-09-16 14:58:00 -07002380 } else {
Jon Mirandacc42c5b2016-10-27 17:15:27 -07002381 if (ignoreLongPressToOverview) {
Jon Miranda379198e2016-09-23 08:54:40 -07002382 return false;
2383 }
Sunny Goyal6c46a6d2016-11-23 02:24:32 +05302384 getUserEventDispatcher().logActionOnContainer(Action.Touch.LONGPRESS,
2385 Action.Direction.NONE, ContainerType.WORKSPACE,
Jon Mirandaf3e35d92016-10-05 14:08:11 -07002386 mWorkspace.getCurrentPage());
Winson Chungdc61c4d2015-04-20 18:26:57 -07002387 showOverviewMode(true);
Adam Cohendedbd962013-07-11 14:21:49 -07002388 }
Jon Miranda379198e2016-09-23 08:54:40 -07002389 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
2390 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002391 } else {
Sunny Goyalbb011da2016-06-15 15:42:29 -07002392 final boolean isAllAppsButton =
2393 !FeatureFlags.NO_ALL_APPS_ICON && isHotseatLayout(v) &&
2394 mDeviceProfile.inv.isAllAppsButtonRank(mHotseat.getOrderInHotseat(
2395 longClickCellInfo.cellX, longClickCellInfo.cellY));
Dan Sandlere26d0942014-01-13 14:30:14 -05002396 if (!(itemUnderLongClick instanceof Folder || isAllAppsButton)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002397 // User long pressed on an item
Tony Wickham10236d62016-09-28 12:49:25 -07002398 mWorkspace.startDrag(longClickCellInfo, new DragOptions());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002399 }
2400 }
2401 }
2402 return true;
2403 }
2404
Winson Chung3d503fb2011-07-13 17:25:49 -07002405 boolean isHotseatLayout(View layout) {
Sunny Goyalc13403c2016-11-18 23:44:48 -08002406 // TODO: Remove this method
Winson Chung3d503fb2011-07-13 17:25:49 -07002407 return mHotseat != null && layout != null &&
2408 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
2409 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08002410
Winson Chung3d503fb2011-07-13 17:25:49 -07002411 /**
2412 * Returns the CellLayout of the specified container at the specified screen.
2413 */
Sunny Goyal92820592015-03-02 11:31:35 -08002414 public CellLayout getCellLayout(long container, long screenId) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002415 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
2416 if (mHotseat != null) {
2417 return mHotseat.getLayout();
2418 } else {
2419 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08002420 }
Winson Chung3d503fb2011-07-13 17:25:49 -07002421 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08002422 return mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08002423 }
2424 }
2425
Michael Jurkae326f182011-11-21 14:05:46 -08002426 @Override
2427 public void onTrimMemory(int level) {
2428 super.onTrimMemory(level);
Adam Cohen3f9c9712014-10-31 11:48:25 -07002429 if (level >= ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
2430 // The widget preview db can result in holding onto over
2431 // 3MB of memory for caching which isn't necessary.
2432 SQLiteDatabase.releaseMemory();
2433
Adam Cohenc8f4e1b2014-11-19 16:03:20 -08002434 // This clears all widget bitmaps from the widget tray
Hyunyoung Song3f471442015-04-08 19:01:34 -07002435 // TODO(hyunyoungs)
Michael Jurkae326f182011-11-21 14:05:46 -08002436 }
Robert Kozikowski67c30862015-03-30 23:46:46 +01002437 if (mLauncherCallbacks != null) {
2438 mLauncherCallbacks.onTrimMemory(level);
2439 }
Michael Jurkae326f182011-11-21 14:05:46 -08002440 }
2441
Winson5c6bdbb2015-09-03 11:36:19 -07002442 public boolean showWorkspace(boolean animated) {
Winson10612a72015-09-09 17:06:09 -07002443 return showWorkspace(animated, null);
Adam Cohened307df2013-10-02 09:37:31 -07002444 }
2445
Winson5c6bdbb2015-09-03 11:36:19 -07002446 public boolean showWorkspace(boolean animated, Runnable onCompleteRunnable) {
Sunny Goyalf9403d92017-10-18 10:55:56 -07002447 boolean changed = !isInState(LauncherState.NORMAL);
Hyunyoung Song9dcf0a32016-07-27 10:55:51 -07002448 if (changed || mAllAppsController.isTransitioning()) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07002449 mWorkspace.setVisibility(View.VISIBLE);
Sunny Goyalf9403d92017-10-18 10:55:56 -07002450 mStateTransitionAnimation.startAnimationToWorkspace(
Sunny Goyal4c7f2152017-10-17 17:17:16 -07002451 LauncherState.NORMAL, animated, onCompleteRunnable);
Winson Chungc7d2b602012-05-16 17:02:20 -07002452
Michael Jurkab3e22d92011-10-31 15:58:33 -07002453 // Set focus to the AppsCustomize button
2454 if (mAllAppsButton != null) {
2455 mAllAppsButton.requestFocus();
2456 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07002457 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07002458
Winson Chung0f785722015-04-08 10:27:49 -07002459 if (changed) {
2460 // Send an accessibility event to announce the context change
2461 getWindow().getDecorView()
2462 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Winson Chung0f785722015-04-08 10:27:49 -07002463 }
Winson5c6bdbb2015-09-03 11:36:19 -07002464 return changed;
Bjorn Bringertc459e522013-06-07 19:36:01 +01002465 }
2466
Winsone9f27272015-10-13 10:47:51 -07002467 /**
2468 * Shows the overview button.
2469 */
Sunny Goyald0a6ae72016-06-16 12:29:03 -07002470 public void showOverviewMode(boolean animated) {
Winsone9f27272015-10-13 10:47:51 -07002471 showOverviewMode(animated, false);
2472 }
2473
2474 /**
2475 * Shows the overview button, and if {@param requestButtonFocus} is set, will force the focus
2476 * onto one of the overview panel buttons.
2477 */
2478 void showOverviewMode(boolean animated, boolean requestButtonFocus) {
2479 Runnable postAnimRunnable = null;
2480 if (requestButtonFocus) {
2481 postAnimRunnable = new Runnable() {
2482 @Override
2483 public void run() {
2484 // Hitting the menu button when in touch mode does not trigger touch mode to
2485 // be disabled, so if requested, force focus on one of the overview panel
2486 // buttons.
2487 mOverviewPanel.requestFocusFromTouch();
2488 }
2489 };
2490 }
Adam Cohened307df2013-10-02 09:37:31 -07002491 mWorkspace.setVisibility(View.VISIBLE);
Sunny Goyalf9403d92017-10-18 10:55:56 -07002492 mStateTransitionAnimation.startAnimationToWorkspace(
Sunny Goyal4c7f2152017-10-17 17:17:16 -07002493 LauncherState.OVERVIEW, animated, postAnimRunnable);
Mario Bertschleracbf5702017-03-03 10:58:06 -08002494
Hyunyoung Song0a9c0922016-09-20 22:50:06 -07002495 // If animated from long press, then don't allow any of the controller in the drag
2496 // layer to intercept any remaining touch.
2497 mWorkspace.requestDisallowInterceptTouchEvent(animated);
Joe Onorato00acb122009-08-04 16:04:30 -04002498 }
2499
Winson Chungb745afb2015-03-02 11:51:23 -08002500 /**
2501 * Shows the apps view.
Hyunyoung Songb7900832015-05-15 16:29:45 -07002502 *
2503 * @return whether the current from and to state allowed this operation
Winson Chungb745afb2015-03-02 11:51:23 -08002504 */
Hyunyoung Songb7900832015-05-15 16:29:45 -07002505 // TODO: calling method should use the return value so that when {@code false} is returned
2506 // the workspace transition doesn't fall into invalid state.
Sunny Goyalaeb16432017-10-16 11:46:41 -07002507 public boolean showAppsView(boolean animated) {
2508 markAppsViewShown();
2509
Sunny Goyalf9403d92017-10-18 10:55:56 -07002510 if (!(isInState(LauncherState.NORMAL) ||
2511 (isInState(LauncherState.ALL_APPS) && mAllAppsController.isTransitioning()))) {
Hyunyoung Songb7900832015-05-15 16:29:45 -07002512 return false;
2513 }
Winson Chungb745afb2015-03-02 11:51:23 -08002514
Hyunyoung Song06ca7562016-07-29 13:03:54 -07002515 // This is a safe and supported transition to bypass spring_loaded mode.
2516 if (mExitSpringLoadedModeRunnable != null) {
2517 mHandler.removeCallbacks(mExitSpringLoadedModeRunnable);
2518 mExitSpringLoadedModeRunnable = null;
2519 }
2520
Sunny Goyalaeb16432017-10-16 11:46:41 -07002521 mStateTransitionAnimation.startAnimationToAllApps(animated);
Michael Jurkab3e22d92011-10-31 15:58:33 -07002522
Michael Jurkab3e22d92011-10-31 15:58:33 -07002523 // Change the state *after* we've called all the transition code
Sunny Goyal740ac7f2016-09-28 16:47:32 -07002524 AbstractFloatingView.closeAllOpenViews(this);
Michael Jurkab3e22d92011-10-31 15:58:33 -07002525
2526 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07002527 getWindow().getDecorView()
2528 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Hyunyoung Songb7900832015-05-15 16:29:45 -07002529 return true;
Michael Jurkab3e22d92011-10-31 15:58:33 -07002530 }
2531
Hyunyoung Song3f471442015-04-08 19:01:34 -07002532 public void enterSpringLoadedDragMode() {
Sunny Goyalf9403d92017-10-18 10:55:56 -07002533 if (LOGD) Log.d(TAG, String.format("enterSpringLoadedDragMode [mState=%s",
Sunny Goyalcd7c0aa2017-10-19 12:36:27 -07002534 mWorkspace.getState().ordinal));
Sunny Goyalf9403d92017-10-18 10:55:56 -07002535 if (isInState(LauncherState.SPRING_LOADED)) {
Winson Chungb745afb2015-03-02 11:51:23 -08002536 return;
Winson Chungb26f3d62011-06-02 10:49:29 -07002537 }
Winson Chungb745afb2015-03-02 11:51:23 -08002538
Sunny Goyal1797af42017-10-06 13:29:57 -07002539 // Lock the orientation:
2540 if (mRotationEnabled) {
2541 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LOCKED);
2542 }
2543
2544 // Prevent any Un/InstallShortcutReceivers from updating the db while we are
2545 // in spring loaded mode
2546 InstallShortcutReceiver.enableInstallQueue(InstallShortcutReceiver.FLAG_DRAG_AND_DROP);
2547
Sunny Goyalf9403d92017-10-18 10:55:56 -07002548 mStateTransitionAnimation.startAnimationToWorkspace(
Sunny Goyal4c7f2152017-10-17 17:17:16 -07002549 LauncherState.SPRING_LOADED, true /* animated */,
Winson Chungdc61c4d2015-04-20 18:26:57 -07002550 null /* onCompleteRunnable */);
Michael Jurkad3ef3062010-11-23 16:23:58 -08002551 }
Adam Cohen7777d962011-08-18 18:58:38 -07002552
Sunny Goyalaeb16432017-10-16 11:46:41 -07002553 public void exitSpringLoadedDragMode(int delay) {
2554 exitSpringLoadedDragMode(delay, null);
Sunny Goyal1797af42017-10-06 13:29:57 -07002555 }
2556
Sunny Goyalaeb16432017-10-16 11:46:41 -07002557 public void exitSpringLoadedDragMode(int delay, final Runnable onCompleteRunnable) {
Sunny Goyalf9403d92017-10-18 10:55:56 -07002558 if (!isInState(LauncherState.SPRING_LOADED)) return;
Winson Chung09bfc452011-09-09 11:30:20 -07002559
Sunny Goyal1797af42017-10-06 13:29:57 -07002560 // Unlock rotation lock
2561 unlockScreenOrientation(false);
2562
2563 // Re-enable any Un/InstallShortcutReceiver and now process any queued items
2564 InstallShortcutReceiver.disableAndFlushInstallQueue(
2565 InstallShortcutReceiver.FLAG_DRAG_AND_DROP, this);
2566
Hyunyoung Song06ca7562016-07-29 13:03:54 -07002567 if (mExitSpringLoadedModeRunnable != null) {
2568 mHandler.removeCallbacks(mExitSpringLoadedModeRunnable);
2569 }
2570 mExitSpringLoadedModeRunnable = new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07002571 @Override
2572 public void run() {
Sunny Goyalaeb16432017-10-16 11:46:41 -07002573 showWorkspace(true, onCompleteRunnable);
Hyunyoung Song06ca7562016-07-29 13:03:54 -07002574 mExitSpringLoadedModeRunnable = null;
Winson Chung557d6ed2011-07-08 15:34:52 -07002575 }
Hyunyoung Song06ca7562016-07-29 13:03:54 -07002576 };
2577 mHandler.postDelayed(mExitSpringLoadedModeRunnable, delay);
Winson Chung557d6ed2011-07-08 15:34:52 -07002578 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07002579
Michael Jurkad7c28052012-04-27 15:43:36 -07002580 @Override
2581 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07002582 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07002583 final List<CharSequence> text = event.getText();
2584 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07002585 // Populate event with a fake title based on the current state.
Sunny Goyalf9403d92017-10-18 10:55:56 -07002586 if (isInState(LauncherState.ALL_APPS)) {
Sunny Goyalc525d802015-04-29 11:05:34 -07002587 text.add(getString(R.string.all_apps_button_label));
Hyunyoung Song166e6482015-06-25 21:06:07 -07002588 } else if (mWorkspace != null) {
2589 text.add(mWorkspace.getCurrentPageDescription());
alanv1d4fde62012-10-17 13:15:47 -07002590 } else {
2591 text.add(getString(R.string.all_apps_home_button_label));
2592 }
Michael Jurkad7c28052012-04-27 15:43:36 -07002593 return result;
2594 }
2595
Patrick Dubroyceae05d2010-08-30 10:40:53 -07002596 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07002597 * If the activity is currently paused, signal that we need to run the passed Runnable
2598 * in onResume.
2599 *
2600 * This needs to be called from incoming places where resources might have been loaded
Hyunyoung Song8821ca92015-05-04 16:28:20 -07002601 * while the activity is paused. That is because the Configuration (e.g., rotation) might be
2602 * wrong when we're not running, and if the activity comes back to what the configuration was
2603 * when we were paused, activity is not restarted.
Michael Jurka7607c2f2013-04-03 14:33:19 -07002604 *
2605 * Implementation of the method from LauncherModel.Callbacks.
2606 *
Hyunyoung Song8821ca92015-05-04 16:28:20 -07002607 * @return {@code true} if we are currently paused. The caller might be able to skip some work
Michael Jurka7607c2f2013-04-03 14:33:19 -07002608 */
Sunny Goyal49fc3f72017-08-18 10:17:06 -07002609 @Thunk boolean waitUntilResume(Runnable run) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07002610 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07002611 if (LOGD) Log.d(TAG, "Deferring update until onResume");
Sunny Goyal49fc3f72017-08-18 10:17:06 -07002612 if (run instanceof RunnableWithId) {
2613 // Remove any runnables which have the same id
2614 while (mBindOnResumeCallbacks.remove(run)) { }
Michael Jurkac402cd92013-05-20 15:49:32 +02002615 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07002616 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07002617 return true;
2618 } else {
2619 return false;
2620 }
2621 }
2622
Sunny Goyal3dce5f32017-10-05 11:40:05 -07002623 public void setOnResumeCallback(OnResumeCallback callback) {
2624 if (mOnResumeCallback != null) {
2625 mOnResumeCallback.onLauncherResume();
2626 }
2627 mOnResumeCallback = callback;
Michael Jurka1e2f4652013-07-08 18:03:46 -07002628 }
2629
Michael Jurka7607c2f2013-04-03 14:33:19 -07002630 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07002631 * If the activity is currently paused, signal that we need to re-run the loader
2632 * in onResume.
2633 *
2634 * This needs to be called from incoming places where resources might have been loaded
2635 * while we are paused. That is becaues the Configuration might be wrong
2636 * when we're not running, and if it comes back to what it was when we
2637 * were paused, we are not restarted.
2638 *
2639 * Implementation of the method from LauncherModel.Callbacks.
2640 *
2641 * @return true if we are currently paused. The caller might be able to
2642 * skip some work in that case since we will come back again.
2643 */
Sunny Goyal93f878c2016-03-30 17:31:24 -07002644 @Override
Joe Onoratoef2efcf2010-10-27 13:21:00 -07002645 public boolean setLoadOnResume() {
2646 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07002647 if (LOGD) Log.d(TAG, "setLoadOnResume");
Joe Onoratoef2efcf2010-10-27 13:21:00 -07002648 mOnResumeNeedsLoad = true;
2649 return true;
2650 } else {
2651 return false;
2652 }
2653 }
2654
2655 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04002656 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002657 */
Sunny Goyal93f878c2016-03-30 17:31:24 -07002658 @Override
Joe Onorato9c1289c2009-08-17 11:03:03 -04002659 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07002660 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07002661 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07002662 } else {
Winson Chung882a52e2015-07-08 14:32:26 -07002663 return 0;
Joe Onoratod0afc872010-06-11 00:03:15 -07002664 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04002665 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07002666
Joe Onorato9c1289c2009-08-17 11:03:03 -04002667 /**
Sunny Goyal527c7d32015-08-28 15:19:36 -07002668 * Clear any pending bind callbacks. This is called when is loader is planning to
2669 * perform a full rebind from scratch.
2670 */
2671 @Override
2672 public void clearPendingBinds() {
2673 mBindOnResumeCallbacks.clear();
2674 if (mPendingExecutor != null) {
2675 mPendingExecutor.markCompleted();
2676 mPendingExecutor = null;
2677 }
2678 }
2679
2680 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04002681 * Refreshes the shortcuts shown on the workspace.
2682 *
2683 * Implementation of the method from LauncherModel.Callbacks.
2684 */
2685 public void startBinding() {
Sunny Goyalfca6bc92017-09-28 16:28:34 -07002686 TraceHelper.beginSection("startBinding");
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -07002687 // Floating panels (except the full widget sheet) are associated with individual icons. If
2688 // we are starting a fresh bind, close all such panels as all the icons are about
2689 // to go away.
2690 AbstractFloatingView.closeOpenViews(this, true,
2691 AbstractFloatingView.TYPE_ALL & ~AbstractFloatingView.TYPE_WIDGETS_FULL_SHEET);
Jon Miranda6dc7f1e2017-02-21 12:37:51 -08002692
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002693 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08002694
Winson Chungd64d1762013-08-20 14:37:16 -07002695 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07002696 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07002697 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07002698
Winson Chung3d503fb2011-07-13 17:25:49 -07002699 if (mHotseat != null) {
2700 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002701 }
Sunny Goyalfca6bc92017-09-28 16:28:34 -07002702 TraceHelper.endSection("startBinding");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002703 }
2704
Adam Cohendcd297f2013-06-18 13:13:40 -07002705 @Override
2706 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07002707 // Make sure the first screen is always at the start.
Sunny Goyala9e2f5a2016-06-10 12:22:04 -07002708 if (FeatureFlags.QSB_ON_FIRST_SCREEN &&
2709 orderedScreenIds.indexOf(Workspace.FIRST_SCREEN_ID) != 0) {
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07002710 orderedScreenIds.remove(Workspace.FIRST_SCREEN_ID);
2711 orderedScreenIds.add(0, Workspace.FIRST_SCREEN_ID);
Rajeev Kumar43c0f582017-06-23 15:34:55 -07002712 LauncherModel.updateWorkspaceScreenOrder(this, orderedScreenIds);
Sunny Goyala9e2f5a2016-06-10 12:22:04 -07002713 } else if (!FeatureFlags.QSB_ON_FIRST_SCREEN && orderedScreenIds.isEmpty()) {
2714 // If there are no screens, we need to have an empty screen
2715 mWorkspace.addExtraEmptyScreen();
Adam Cohen5084cba2013-09-03 12:01:16 -07002716 }
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07002717 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07002718
Winsonc7d2e832016-07-28 12:24:55 -07002719 // After we have added all the screens, if the wallpaper was locked to the default state,
2720 // then notify to indicate that it can be released and a proper wallpaper offset can be
2721 // computed before the next layout
2722 mWorkspace.unlockWallpaperFromDefaultPageOnNextLayout();
Winson Chung64359a52013-07-08 17:17:08 -07002723 }
2724
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07002725 private void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Adam Cohendcd297f2013-06-18 13:13:40 -07002726 int count = orderedScreenIds.size();
2727 for (int i = 0; i < count; i++) {
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07002728 long screenId = orderedScreenIds.get(i);
Sunny Goyala9e2f5a2016-06-10 12:22:04 -07002729 if (!FeatureFlags.QSB_ON_FIRST_SCREEN || screenId != Workspace.FIRST_SCREEN_ID) {
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07002730 // No need to bind the first screen, as its always bound.
2731 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(screenId);
2732 }
Adam Cohendcd297f2013-06-18 13:13:40 -07002733 }
Adam Cohendcd297f2013-06-18 13:13:40 -07002734 }
2735
Sunny Goyalb23980c2017-08-17 07:45:25 -07002736 @Override
Winson Chungd64d1762013-08-20 14:37:16 -07002737 public void bindAppsAdded(final ArrayList<Long> newScreens,
2738 final ArrayList<ItemInfo> addNotAnimated,
Sunny Goyalb23980c2017-08-17 07:45:25 -07002739 final ArrayList<ItemInfo> addAnimated) {
Winson Chungd64d1762013-08-20 14:37:16 -07002740 Runnable r = new Runnable() {
2741 public void run() {
Sunny Goyalb23980c2017-08-17 07:45:25 -07002742 bindAppsAdded(newScreens, addNotAnimated, addAnimated);
Winson Chungd64d1762013-08-20 14:37:16 -07002743 }
2744 };
2745 if (waitUntilResume(r)) {
2746 return;
2747 }
2748
Winson Chungd64d1762013-08-20 14:37:16 -07002749 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08002750 if (newScreens != null) {
2751 bindAddScreens(newScreens);
2752 }
Winson Chungd64d1762013-08-20 14:37:16 -07002753
2754 // We add the items without animation on non-visible pages, and with
2755 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08002756 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Sunny Goyalb23980c2017-08-17 07:45:25 -07002757 bindItems(addNotAnimated, false);
Winson Chungd64d1762013-08-20 14:37:16 -07002758 }
Adam Cohen76a47a12014-02-05 11:47:43 -08002759 if (addAnimated != null && !addAnimated.isEmpty()) {
Sunny Goyalb23980c2017-08-17 07:45:25 -07002760 bindItems(addAnimated, true);
Winson Chungd64d1762013-08-20 14:37:16 -07002761 }
Winson Chungc58497e2013-09-03 17:48:37 -07002762
Winson Chung87412982013-10-03 18:34:14 -07002763 // Remove the extra empty screen
Adam Cohen689ff162014-05-08 17:27:56 -07002764 mWorkspace.removeExtraEmptyScreen(false, false);
Winson Chungd64d1762013-08-20 14:37:16 -07002765 }
2766
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002767 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04002768 * Bind the items start-end from the list.
2769 *
2770 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002771 */
Tony Wickham0bb211a2015-10-02 16:22:08 -07002772 @Override
Sunny Goyalb23980c2017-08-17 07:45:25 -07002773 public void bindItems(final List<ItemInfo> items, final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07002774 Runnable r = new Runnable() {
2775 public void run() {
Sunny Goyalb23980c2017-08-17 07:45:25 -07002776 bindItems(items, forceAnimateIcons);
Winson Chungd64d1762013-08-20 14:37:16 -07002777 }
2778 };
2779 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07002780 return;
2781 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07002782
Sunny Goyal3be633b2016-12-08 09:59:25 -08002783 // Get the list of added items and intersect them with the set of items here
Winson Chung64359a52013-07-08 17:17:08 -07002784 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
Rajeev Kumar43c0f582017-06-23 15:34:55 -07002785 final Collection<Animator> bounceAnims = new ArrayList<>();
Winson Chung997a9232013-07-24 15:33:46 -07002786 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07002787 Workspace workspace = mWorkspace;
Sunny Goyal3be633b2016-12-08 09:59:25 -08002788 long newItemsScreenId = -1;
Sunny Goyalb23980c2017-08-17 07:45:25 -07002789 int end = items.size();
2790 for (int i = 0; i < end; i++) {
Sunny Goyal3be633b2016-12-08 09:59:25 -08002791 final ItemInfo item = items.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07002792
2793 // Short circuit if we are loading dock items for a configuration which has no dock
2794 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
2795 mHotseat == null) {
2796 continue;
2797 }
2798
Sunny Goyal639e9062015-08-19 19:17:06 -07002799 final View view;
Joe Onorato9c1289c2009-08-17 11:03:03 -04002800 switch (item.itemType) {
2801 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
2802 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Sunny Goyal3be633b2016-12-08 09:59:25 -08002803 case LauncherSettings.Favorites.ITEM_TYPE_DEEP_SHORTCUT: {
Winson Chungf0c6ae02012-03-21 16:10:31 -07002804 ShortcutInfo info = (ShortcutInfo) item;
Sunny Goyal639e9062015-08-19 19:17:06 -07002805 view = createShortcut(info);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002806 break;
Sunny Goyal3be633b2016-12-08 09:59:25 -08002807 }
2808 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER: {
Sunny Goyal639e9062015-08-19 19:17:06 -07002809 view = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07002810 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Sunny Goyal1cd01b02016-11-09 10:43:58 -08002811 (FolderInfo) item);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002812 break;
Sunny Goyal3be633b2016-12-08 09:59:25 -08002813 }
Sunny Goyal952e63d2017-08-16 04:59:08 -07002814 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
2815 case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET: {
Sunny Goyala9a1a212017-08-18 01:03:21 -07002816 view = inflateAppWidget((LauncherAppWidgetInfo) item);
Sunny Goyalb23980c2017-08-17 07:45:25 -07002817 if (view == null) {
2818 continue;
Sunny Goyal3be633b2016-12-08 09:59:25 -08002819 }
Sunny Goyal3be633b2016-12-08 09:59:25 -08002820 break;
2821 }
Winson Chungc763c4e2013-07-19 13:49:06 -07002822 default:
2823 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04002824 }
Sunny Goyal639e9062015-08-19 19:17:06 -07002825
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07002826 /*
2827 * Remove colliding items.
2828 */
2829 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
2830 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
2831 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
2832 View v = cl.getChildAt(item.cellX, item.cellY);
2833 Object tag = v.getTag();
2834 String desc = "Collision while binding workspace item: " + item
2835 + ". Collides with " + tag;
Sunny Goyal3d706ad2017-03-06 16:56:39 -08002836 if (FeatureFlags.IS_DOGFOOD_BUILD) {
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07002837 throw (new RuntimeException(desc));
2838 } else {
2839 Log.d(TAG, desc);
Sunny Goyal43bf11d2017-02-02 13:52:53 -08002840 getModelWriter().deleteItemFromDatabase(item);
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07002841 continue;
2842 }
2843 }
2844 }
Sunny Goyald5462aa2016-11-22 16:52:39 +05302845 workspace.addInScreenFromBind(view, item);
Sunny Goyal639e9062015-08-19 19:17:06 -07002846 if (animateIcons) {
2847 // Animate all the applications up now
2848 view.setAlpha(0f);
2849 view.setScaleX(0f);
2850 view.setScaleY(0f);
2851 bounceAnims.add(createNewAppBounceAnimation(view, i));
Sunny Goyal3be633b2016-12-08 09:59:25 -08002852 newItemsScreenId = item.screenId;
Sunny Goyal639e9062015-08-19 19:17:06 -07002853 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002854 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07002855
Winson Chung997a9232013-07-24 15:33:46 -07002856 if (animateIcons) {
2857 // Animate to the correct page
Sunny Goyal3be633b2016-12-08 09:59:25 -08002858 if (newItemsScreenId > -1) {
Winson Chung997a9232013-07-24 15:33:46 -07002859 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Sunny Goyal3be633b2016-12-08 09:59:25 -08002860 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newItemsScreenId);
Winson Chungb2323832013-10-03 15:22:09 -07002861 final Runnable startBounceAnimRunnable = new Runnable() {
2862 public void run() {
2863 anim.playTogether(bounceAnims);
2864 anim.start();
2865 }
2866 };
Sunny Goyal3be633b2016-12-08 09:59:25 -08002867 if (newItemsScreenId != currentScreenId) {
Winson Chung94d67682013-09-25 16:29:40 -07002868 // We post the animation slightly delayed to prevent slowdowns
2869 // when we are loading right after we return to launcher.
2870 mWorkspace.postDelayed(new Runnable() {
2871 public void run() {
Ian Parkinson94449152014-01-21 13:09:59 +00002872 if (mWorkspace != null) {
2873 mWorkspace.snapToPage(newScreenIndex);
2874 mWorkspace.postDelayed(startBounceAnimRunnable,
2875 NEW_APPS_ANIMATION_DELAY);
2876 }
Winson Chung94d67682013-09-25 16:29:40 -07002877 }
2878 }, NEW_APPS_PAGE_MOVE_DELAY);
Winson Chungb2323832013-10-03 15:22:09 -07002879 } else {
2880 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07002881 }
2882 }
Winson Chung64359a52013-07-08 17:17:08 -07002883 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04002884 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002885 }
2886
Joe Onorato9c1289c2009-08-17 11:03:03 -04002887 /**
2888 * Add the views for a widget to the workspace.
Joe Onorato9c1289c2009-08-17 11:03:03 -04002889 */
Sunny Goyala9a1a212017-08-18 01:03:21 -07002890 public void bindAppWidget(LauncherAppWidgetInfo item) {
2891 View view = inflateAppWidget(item);
2892 if (view != null) {
2893 mWorkspace.addInScreen(view, item);
2894 mWorkspace.requestLayout();
2895 }
2896 }
2897
2898 private View inflateAppWidget(LauncherAppWidgetInfo item) {
Sunny Goyal2e1efb42016-03-03 16:58:55 -08002899 if (mIsSafeModeEnabled) {
Sunny Goyald5462aa2016-11-22 16:52:39 +05302900 PendingAppWidgetHostView view =
2901 new PendingAppWidgetHostView(this, item, mIconCache, true);
2902 prepareAppWidget(view, item);
Sunny Goyalb23980c2017-08-17 07:45:25 -07002903 return view;
Sunny Goyal2e1efb42016-03-03 16:58:55 -08002904 }
2905
Sunny Goyalfca6bc92017-09-28 16:28:34 -07002906 TraceHelper.beginSection("BIND_WIDGET");
Joe Onorato9c1289c2009-08-17 11:03:03 -04002907
Sunny Goyal2e1efb42016-03-03 16:58:55 -08002908 final LauncherAppWidgetProviderInfo appWidgetInfo;
Adam Cohen59400422014-03-05 18:07:04 -08002909
Sunny Goyal2e1efb42016-03-03 16:58:55 -08002910 if (item.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY)) {
2911 // If the provider is not ready, bind as a pending widget.
2912 appWidgetInfo = null;
2913 } else if (item.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_ID_NOT_VALID)) {
2914 // The widget id is not valid. Try to find the widget based on the provider info.
2915 appWidgetInfo = mAppWidgetManager.findProvider(item.providerName, item.user);
2916 } else {
2917 appWidgetInfo = mAppWidgetManager.getLauncherAppWidgetInfo(item.appWidgetId);
2918 }
Sunny Goyal84b4adc2015-08-12 15:12:16 -07002919
Sunny Goyal2e1efb42016-03-03 16:58:55 -08002920 // If the provider is ready, but the width is not yet restored, try to restore it.
2921 if (!item.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY) &&
2922 (item.restoreStatus != LauncherAppWidgetInfo.RESTORE_COMPLETED)) {
Sunny Goyalff572272014-07-23 13:58:07 -07002923 if (appWidgetInfo == null) {
Sunny Goyalfca6bc92017-09-28 16:28:34 -07002924 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
2925 + " belongs to component " + item.providerName
2926 + ", as the provider is null");
Sunny Goyal43bf11d2017-02-02 13:52:53 -08002927 getModelWriter().deleteItemFromDatabase(item);
Sunny Goyalb23980c2017-08-17 07:45:25 -07002928 return null;
Sunny Goyalff572272014-07-23 13:58:07 -07002929 }
Sunny Goyalff572272014-07-23 13:58:07 -07002930
Sunny Goyal84b4adc2015-08-12 15:12:16 -07002931 // If we do not have a valid id, try to bind an id.
Sunny Goyal2e1efb42016-03-03 16:58:55 -08002932 if (item.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_ID_NOT_VALID)) {
Sunny Goyald478c832016-04-01 12:04:16 -07002933 if (!item.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_ID_ALLOCATED)) {
2934 // Id has not been allocated yet. Allocate a new id.
2935 item.appWidgetId = mAppWidgetHost.allocateAppWidgetId();
2936 item.restoreStatus |= LauncherAppWidgetInfo.FLAG_ID_ALLOCATED;
Sunny Goyalff572272014-07-23 13:58:07 -07002937
Sunny Goyald478c832016-04-01 12:04:16 -07002938 // Also try to bind the widget. If the bind fails, the user will be shown
2939 // a click to setup UI, which will ask for the bind permission.
Sunny Goyala52ecb02016-12-16 15:04:51 -08002940 PendingAddWidgetInfo pendingInfo = new PendingAddWidgetInfo(appWidgetInfo);
Sunny Goyald478c832016-04-01 12:04:16 -07002941 pendingInfo.spanX = item.spanX;
2942 pendingInfo.spanY = item.spanY;
2943 pendingInfo.minSpanX = item.minSpanX;
2944 pendingInfo.minSpanY = item.minSpanY;
2945 Bundle options = WidgetHostViewLoader.getDefaultOptionsForWidget(this, pendingInfo);
Sunny Goyal86df1382016-08-10 15:03:22 -07002946
2947 boolean isDirectConfig =
2948 item.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_DIRECT_CONFIG);
2949 if (isDirectConfig && item.bindOptions != null) {
2950 Bundle newOptions = item.bindOptions.getExtras();
2951 if (options != null) {
2952 newOptions.putAll(options);
2953 }
2954 options = newOptions;
2955 }
Sunny Goyald478c832016-04-01 12:04:16 -07002956 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
2957 item.appWidgetId, appWidgetInfo, options);
Sunny Goyal84b4adc2015-08-12 15:12:16 -07002958
Sunny Goyal86df1382016-08-10 15:03:22 -07002959 // We tried to bind once. If we were not able to bind, we would need to
2960 // go through the permission dialog, which means we cannot skip the config
2961 // activity.
2962 item.bindOptions = null;
2963 item.restoreStatus &= ~LauncherAppWidgetInfo.FLAG_DIRECT_CONFIG;
2964
Sunny Goyald478c832016-04-01 12:04:16 -07002965 // Bind succeeded
2966 if (success) {
2967 // If the widget has a configure activity, it is still needs to set it up,
2968 // otherwise the widget is ready to go.
Sunny Goyal86df1382016-08-10 15:03:22 -07002969 item.restoreStatus = (appWidgetInfo.configure == null) || isDirectConfig
Sunny Goyald478c832016-04-01 12:04:16 -07002970 ? LauncherAppWidgetInfo.RESTORE_COMPLETED
2971 : LauncherAppWidgetInfo.FLAG_UI_NOT_READY;
Sunny Goyal84b4adc2015-08-12 15:12:16 -07002972 }
Sunny Goyald478c832016-04-01 12:04:16 -07002973
Sunny Goyal43bf11d2017-02-02 13:52:53 -08002974 getModelWriter().updateItemInDatabase(item);
Sunny Goyalff572272014-07-23 13:58:07 -07002975 }
Sunny Goyal2e1efb42016-03-03 16:58:55 -08002976 } else if (item.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_UI_NOT_READY)
Sunny Goyal84b4adc2015-08-12 15:12:16 -07002977 && (appWidgetInfo.configure == null)) {
Sunny Goyal2e1efb42016-03-03 16:58:55 -08002978 // The widget was marked as UI not ready, but there is no configure activity to
2979 // update the UI.
Sunny Goyal84b4adc2015-08-12 15:12:16 -07002980 item.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
Sunny Goyal43bf11d2017-02-02 13:52:53 -08002981 getModelWriter().updateItemInDatabase(item);
Sunny Goyalff572272014-07-23 13:58:07 -07002982 }
Sunny Goyalff572272014-07-23 13:58:07 -07002983 }
2984
Sunny Goyald5462aa2016-11-22 16:52:39 +05302985 final AppWidgetHostView view;
Sunny Goyal2e1efb42016-03-03 16:58:55 -08002986 if (item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
Sunny Goyal56c73602015-09-25 12:55:01 -07002987 // Verify that we own the widget
Sunny Goyal2e1efb42016-03-03 16:58:55 -08002988 if (appWidgetInfo == null) {
Sunny Goyal713edfc2016-05-06 09:58:34 -07002989 FileLog.e(TAG, "Removing invalid widget: id=" + item.appWidgetId);
Sunny Goyal56c73602015-09-25 12:55:01 -07002990 deleteWidgetInfo(item);
Sunny Goyalb23980c2017-08-17 07:45:25 -07002991 return null;
Sunny Goyal56c73602015-09-25 12:55:01 -07002992 }
2993
Sunny Goyal233ee962015-08-03 13:05:01 -07002994 item.minSpanX = appWidgetInfo.minSpanX;
2995 item.minSpanY = appWidgetInfo.minSpanY;
Sunny Goyald5462aa2016-11-22 16:52:39 +05302996 view = mAppWidgetHost.createView(this, item.appWidgetId, appWidgetInfo);
Sunny Goyal651077b2014-06-30 14:15:31 -07002997 } else {
Sunny Goyald5462aa2016-11-22 16:52:39 +05302998 view = new PendingAppWidgetHostView(this, item, mIconCache, false);
Sunny Goyal651077b2014-06-30 14:15:31 -07002999 }
Sunny Goyald5462aa2016-11-22 16:52:39 +05303000 prepareAppWidget(view, item);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003001
Sunny Goyalfca6bc92017-09-28 16:28:34 -07003002 TraceHelper.endSection("BIND_WIDGET", "id=" + item.appWidgetId);
Sunny Goyalb23980c2017-08-17 07:45:25 -07003003 return view;
Joe Onorato9c1289c2009-08-17 11:03:03 -04003004 }
3005
Sunny Goyalff572272014-07-23 13:58:07 -07003006 /**
3007 * Restores a pending widget.
3008 *
3009 * @param appWidgetId The app widget id
Sunny Goyalff572272014-07-23 13:58:07 -07003010 */
Sunny Goyald478c832016-04-01 12:04:16 -07003011 private LauncherAppWidgetInfo completeRestoreAppWidget(int appWidgetId, int finalRestoreFlag) {
Sunny Goyalff572272014-07-23 13:58:07 -07003012 LauncherAppWidgetHostView view = mWorkspace.getWidgetForAppWidgetId(appWidgetId);
3013 if ((view == null) || !(view instanceof PendingAppWidgetHostView)) {
3014 Log.e(TAG, "Widget update called, when the widget no longer exists.");
Sunny Goyald478c832016-04-01 12:04:16 -07003015 return null;
Sunny Goyalff572272014-07-23 13:58:07 -07003016 }
3017
Sunny Goyal0fc1be12014-08-11 17:05:23 -07003018 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) view.getTag();
Sunny Goyald478c832016-04-01 12:04:16 -07003019 info.restoreStatus = finalRestoreFlag;
Jon Miranda2b823f42017-05-02 18:36:18 -07003020 if (info.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
3021 info.pendingItemInfo = null;
3022 }
Sunny Goyalff572272014-07-23 13:58:07 -07003023
Sunny Goyalba47faa2017-10-04 16:50:57 -07003024 if (((PendingAppWidgetHostView) view).isReinflateIfNeeded()) {
3025 view.reinflate();
3026 }
3027
Sunny Goyal43bf11d2017-02-02 13:52:53 -08003028 getModelWriter().updateItemInDatabase(info);
Sunny Goyald478c832016-04-01 12:04:16 -07003029 return info;
Sunny Goyalff572272014-07-23 13:58:07 -07003030 }
3031
Adam Cohen1462de32012-07-24 22:34:36 -07003032 public void onPageBoundSynchronously(int page) {
3033 mSynchronouslyBoundPages.add(page);
3034 }
3035
Sunny Goyal527c7d32015-08-28 15:19:36 -07003036 @Override
3037 public void executeOnNextDraw(ViewOnDrawExecutor executor) {
3038 if (mPendingExecutor != null) {
3039 mPendingExecutor.markCompleted();
3040 }
3041 mPendingExecutor = executor;
3042 executor.attachTo(this);
3043 }
3044
3045 public void clearPendingExecutor(ViewOnDrawExecutor executor) {
3046 if (mPendingExecutor == executor) {
3047 mPendingExecutor = null;
3048 }
3049 }
3050
Sunny Goyalb5b9ad62016-04-02 11:23:39 -07003051 @Override
3052 public void finishFirstPageBind(final ViewOnDrawExecutor executor) {
3053 Runnable r = new Runnable() {
3054 public void run() {
3055 finishFirstPageBind(executor);
3056 }
3057 };
3058 if (waitUntilResume(r)) {
3059 return;
3060 }
3061
3062 Runnable onComplete = new Runnable() {
3063 @Override
3064 public void run() {
3065 if (executor != null) {
3066 executor.onLoadAnimationCompleted();
3067 }
3068 }
3069 };
3070 if (mDragLayer.getAlpha() < 1) {
3071 mDragLayer.animate().alpha(1).withEndAction(onComplete).start();
3072 } else {
3073 onComplete.run();
3074 }
3075 }
3076
Joe Onorato9c1289c2009-08-17 11:03:03 -04003077 /**
3078 * Callback saying that there aren't any more items to bind.
3079 *
3080 * Implementation of the method from LauncherModel.Callbacks.
3081 */
Sunny Goyal66cfdc22015-02-02 13:01:51 -08003082 public void finishBindingItems() {
Winson Chungd64d1762013-08-20 14:37:16 -07003083 Runnable r = new Runnable() {
3084 public void run() {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08003085 finishBindingItems();
Winson Chungd64d1762013-08-20 14:37:16 -07003086 }
3087 };
3088 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003089 return;
3090 }
Sunny Goyalfca6bc92017-09-28 16:28:34 -07003091 TraceHelper.beginSection("finishBindingItems");
Adam Cohen1462de32012-07-24 22:34:36 -07003092 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003093
Anjali Koppalff7ceff2014-05-01 18:26:37 -07003094 setWorkspaceLoading(false);
Adam Cohendb364c32014-05-20 14:23:40 -07003095
Sunny Goyal2100c782016-08-22 16:00:03 -07003096 if (mPendingActivityResult != null) {
3097 handleActivityResult(mPendingActivityResult.requestCode,
3098 mPendingActivityResult.resultCode, mPendingActivityResult.data);
3099 mPendingActivityResult = null;
Adam Cohendb364c32014-05-20 14:23:40 -07003100 }
3101
Sunny Goyala474a9b2017-05-04 16:47:11 -07003102 InstallShortcutReceiver.disableAndFlushInstallQueue(
3103 InstallShortcutReceiver.FLAG_LOADER_RUNNING, this);
Adam Cohen9211d422014-10-07 18:14:53 -07003104
Tony Wickham010d2552017-01-20 08:15:28 -08003105 NotificationListener.setNotificationsChangedListener(mPopupDataProvider);
Sunny Goyalfca6bc92017-09-28 16:28:34 -07003106 TraceHelper.endSection("finishBindingItems");
Winson Chungf0c6ae02012-03-21 16:10:31 -07003107 }
3108
Winson Chunga2413752012-04-03 14:22:34 -07003109 private boolean canRunNewAppsAnimation() {
3110 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
Andrew Sapperstein932eb832016-06-30 18:10:09 -07003111 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000);
Winson Chunga2413752012-04-03 14:22:34 -07003112 }
3113
Winson Chungc9168342013-06-26 14:54:55 -07003114 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
Sunny Goyal5d2fc322015-07-06 22:52:49 -07003115 ValueAnimator bounceAnim = LauncherAnimUtils.ofViewAlphaAndScale(v, 1, 1, 1);
Winson Chungc9168342013-06-26 14:54:55 -07003116 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
3117 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
Sunny Goyal5a1f53b2015-05-27 10:24:24 -07003118 bounceAnim.setInterpolator(new OvershootInterpolator(BOUNCE_ANIMATION_TENSION));
Winson Chungc9168342013-06-26 14:54:55 -07003119 return bounceAnim;
3120 }
3121
Adam Cohen27772732013-11-11 14:00:56 +00003122 public boolean useVerticalBarLayout() {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07003123 return mDeviceProfile.isVerticalBarLayout();
Adam Cohen27772732013-11-11 14:00:56 +00003124 }
3125
Amith Yamasani6d7fe502010-11-16 09:05:07 -08003126 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003127 * Add the icons for all apps.
3128 *
3129 * Implementation of the method from LauncherModel.Callbacks.
3130 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02003131 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Sunny Goyal49fc3f72017-08-18 10:17:06 -07003132 Runnable r = new RunnableWithId(RUNNABLE_ID_BIND_APPS) {
3133 public void run() {
3134 bindAllApplications(apps);
3135 }
3136 };
3137 if (waitUntilResume(r)) {
Winson Chungbb785c62015-05-05 10:05:08 -07003138 return;
3139 }
3140
Winson Chungb745afb2015-03-02 11:51:23 -08003141 if (mAppsView != null) {
Tony2917a8b2017-07-31 23:29:42 -07003142 Executor pendingExecutor = getPendingExecutor();
Sunny Goyalf9403d92017-10-18 10:55:56 -07003143 if (pendingExecutor != null && !isInState(LauncherState.ALL_APPS)) {
Tony2917a8b2017-07-31 23:29:42 -07003144 // Wait until the fade in animation has finished before setting all apps list.
Sunny Goyal49fc3f72017-08-18 10:17:06 -07003145 pendingExecutor.execute(r);
Tony2917a8b2017-07-31 23:29:42 -07003146 return;
3147 }
Sunny Goyal49fc3f72017-08-18 10:17:06 -07003148
Winson Chungb745afb2015-03-02 11:51:23 -08003149 mAppsView.setApps(apps);
3150 }
Adam Cohen9211d422014-10-07 18:14:53 -07003151 if (mLauncherCallbacks != null) {
3152 mLauncherCallbacks.bindAllApplications(apps);
3153 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003154 }
3155
3156 /**
Tony2917a8b2017-07-31 23:29:42 -07003157 * Returns an Executor that will run after the launcher is first drawn (including after the
3158 * initial fade in animation). Returns null if the first draw has already occurred.
3159 */
3160 public @Nullable Executor getPendingExecutor() {
3161 return mPendingExecutor != null && mPendingExecutor.canQueue() ? mPendingExecutor : null;
3162 }
3163
3164 /**
Tony Wickhambfbf7f92016-05-19 11:19:39 -07003165 * Copies LauncherModel's map of activities to shortcut ids to Launcher's. This is necessary
3166 * because LauncherModel's map is updated in the background, while Launcher runs on the UI.
3167 */
3168 @Override
3169 public void bindDeepShortcutMap(MultiHashMap<ComponentKey, String> deepShortcutMapCopy) {
Tony Wickham010d2552017-01-20 08:15:28 -08003170 mPopupDataProvider.setDeepShortcutMap(deepShortcutMapCopy);
Tony Wickham1bce7fd2016-04-28 17:39:03 -07003171 }
3172
Tony Wickhambfbf7f92016-05-19 11:19:39 -07003173 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003174 * A package was updated.
3175 *
3176 * Implementation of the method from LauncherModel.Callbacks.
3177 */
Sunny Goyalb23980c2017-08-17 07:45:25 -07003178 public void bindAppsAddedOrUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07003179 Runnable r = new Runnable() {
3180 public void run() {
Sunny Goyalb23980c2017-08-17 07:45:25 -07003181 bindAppsAddedOrUpdated(apps);
Winson Chungd64d1762013-08-20 14:37:16 -07003182 }
3183 };
3184 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003185 return;
3186 }
3187
Winson Chungb745afb2015-03-02 11:51:23 -08003188 if (mAppsView != null) {
Sunny Goyalb23980c2017-08-17 07:45:25 -07003189 mAppsView.addOrUpdateApps(apps);
Winson Chungc58497e2013-09-03 17:48:37 -07003190 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003191 }
3192
Sunny Goyal4390ace2014-10-13 11:33:11 -07003193 @Override
Mario Bertschler08ffaae2017-03-20 11:30:27 -07003194 public void bindPromiseAppProgressUpdated(final PromiseAppInfo app) {
3195 Runnable r = new Runnable() {
3196 public void run() {
3197 bindPromiseAppProgressUpdated(app);
3198 }
3199 };
3200 if (waitUntilResume(r)) {
3201 return;
3202 }
3203
3204 if (mAppsView != null) {
3205 mAppsView.updatePromiseAppProgress(app);
3206 }
3207 }
3208
3209 @Override
Sunny Goyal4390ace2014-10-13 11:33:11 -07003210 public void bindWidgetsRestored(final ArrayList<LauncherAppWidgetInfo> widgets) {
3211 Runnable r = new Runnable() {
3212 public void run() {
3213 bindWidgetsRestored(widgets);
3214 }
3215 };
3216 if (waitUntilResume(r)) {
3217 return;
3218 }
3219 mWorkspace.widgetsRestored(widgets);
3220 }
3221
Joe Onorato9c1289c2009-08-17 11:03:03 -04003222 /**
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07003223 * Some shortcuts were updated in the background.
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07003224 * Implementation of the method from LauncherModel.Callbacks.
Sunny Goyald3b87ef2016-07-28 12:11:54 -07003225 *
3226 * @param updated list of shortcuts which have changed.
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07003227 */
Sunny Goyal4390ace2014-10-13 11:33:11 -07003228 @Override
Sunny Goyal6e13dd32017-08-17 03:01:19 -07003229 public void bindShortcutsChanged(final ArrayList<ShortcutInfo> updated, final UserHandle user) {
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07003230 Runnable r = new Runnable() {
3231 public void run() {
Sunny Goyal6e13dd32017-08-17 03:01:19 -07003232 bindShortcutsChanged(updated, user);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07003233 }
3234 };
3235 if (waitUntilResume(r)) {
3236 return;
3237 }
3238
Sunny Goyal4390ace2014-10-13 11:33:11 -07003239 if (!updated.isEmpty()) {
3240 mWorkspace.updateShortcuts(updated);
3241 }
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07003242 }
3243
3244 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05003245 * Update the state of a package, typically related to install state.
3246 *
3247 * Implementation of the method from LauncherModel.Callbacks.
3248 */
Sunny Goyale755d462014-07-22 13:48:29 -07003249 @Override
Sunny Goyal756adbc2015-04-16 15:20:51 -07003250 public void bindRestoreItemsChange(final HashSet<ItemInfo> updates) {
3251 Runnable r = new Runnable() {
3252 public void run() {
3253 bindRestoreItemsChange(updates);
3254 }
3255 };
3256 if (waitUntilResume(r)) {
3257 return;
Chris Wrenaeff7ea2014-02-14 16:59:24 -05003258 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -05003259
Sunny Goyal756adbc2015-04-16 15:20:51 -07003260 mWorkspace.updateRestoreItems(updates);
Sunny Goyala22666f2014-09-18 13:25:15 -07003261 }
3262
3263 /**
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07003264 * A package was uninstalled/updated. We take both the super set of packageNames
Winson Chung83892cc2013-05-01 16:53:33 -07003265 * in addition to specific applications to remove, the reason being that
3266 * this can be called when a package is updated as well. In that scenario,
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07003267 * we only remove specific components from the workspace and hotseat, where as
Winson Chung83892cc2013-05-01 16:53:33 -07003268 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04003269 */
Sunny Goyal1a745e82014-10-02 15:58:31 -07003270 @Override
Sunny Goyal6e13dd32017-08-17 03:01:19 -07003271 public void bindWorkspaceComponentsRemoved(final ItemInfoMatcher matcher) {
Winson Chungd64d1762013-08-20 14:37:16 -07003272 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07003273 public void run() {
Sunny Goyal6e13dd32017-08-17 03:01:19 -07003274 bindWorkspaceComponentsRemoved(matcher);
Winson Chung83892cc2013-05-01 16:53:33 -07003275 }
Winson Chungd64d1762013-08-20 14:37:16 -07003276 };
3277 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07003278 return;
3279 }
Sunny Goyal6e13dd32017-08-17 03:01:19 -07003280 mWorkspace.removeItemsByMatcher(matcher);
3281 mDragController.onAppsRemoved(matcher);
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07003282 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07003283
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07003284 @Override
3285 public void bindAppInfosRemoved(final ArrayList<AppInfo> appInfos) {
3286 Runnable r = new Runnable() {
3287 public void run() {
3288 bindAppInfosRemoved(appInfos);
3289 }
3290 };
3291 if (waitUntilResume(r)) {
3292 return;
Joe Onorato36115782010-06-17 13:28:48 -04003293 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003294
Winson Chungdf95eb12013-10-16 14:57:07 -07003295 // Update AllApps
Winson Chungb745afb2015-03-02 11:51:23 -08003296 if (mAppsView != null) {
3297 mAppsView.removeApps(appInfos);
Winson Chungc58497e2013-09-03 17:48:37 -07003298 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003299 }
Joe Onoratobe386092009-11-17 17:32:16 -08003300
Sunny Goyal49fc3f72017-08-18 10:17:06 -07003301 @Override
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -07003302 public void bindAllWidgets(final ArrayList<WidgetListRowEntry> allWidgets) {
3303 mPopupDataProvider.setAllWidgets(allWidgets);
Sunny Goyal49fc3f72017-08-18 10:17:06 -07003304 Runnable r = new RunnableWithId(RUNNABLE_ID_BIND_WIDGETS) {
3305 @Override
Winson Chung83892cc2013-05-01 16:53:33 -07003306 public void run() {
Sunny Goyal49fc3f72017-08-18 10:17:06 -07003307 bindAllWidgets(allWidgets);
Winson Chung83892cc2013-05-01 16:53:33 -07003308 }
Michael Jurkac402cd92013-05-20 15:49:32 +02003309 };
Sunny Goyal49fc3f72017-08-18 10:17:06 -07003310 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07003311 return;
3312 }
3313
Tony Wickham26b17462017-03-20 17:12:24 -07003314 AbstractFloatingView topView = AbstractFloatingView.getTopOpenView(this);
3315 if (topView != null) {
3316 topView.onWidgetsBound();
3317 }
3318 }
3319
Tony Wickham86222d22017-03-29 15:30:43 -07003320 /**
3321 * @param packageUser if null, refreshes all widgets and shortcuts, otherwise only
3322 * refreshes the widgets and shortcuts associated with the given package/user
3323 */
3324 public void refreshAndBindWidgetsForPackageUser(@Nullable PackageUserKey packageUser) {
Sunny Goyalc6e97692017-06-02 13:46:55 -07003325 mModel.refreshAndBindWidgetsAndShortcuts(packageUser);
Sunny Goyal2e1efb42016-03-03 16:58:55 -08003326 }
3327
Winson Chung4b919f82012-05-01 10:44:08 -07003328 public void unlockScreenOrientation(boolean immediate) {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07003329 if (mRotationEnabled) {
Winson Chung4b919f82012-05-01 10:44:08 -07003330 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07003331 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07003332 } else {
3333 mHandler.postDelayed(new Runnable() {
3334 public void run() {
3335 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
3336 }
Sunny Goyal756cd262015-08-20 12:33:21 -07003337 }, RESTORE_SCREEN_ORIENTATION_DELAY);
Winson Chung641d71d2012-04-26 15:58:01 -07003338 }
Winson Chung4b919f82012-05-01 10:44:08 -07003339 }
Winson Chung400438b2011-01-16 17:53:48 -08003340 }
3341
Hyunyoung Songc001cf52016-07-21 17:32:43 -07003342 private void markAppsViewShown() {
3343 if (mSharedPrefs.getBoolean(APPS_VIEW_SHOWN, false)) {
3344 return;
3345 }
3346 mSharedPrefs.edit().putBoolean(APPS_VIEW_SHOWN, true).apply();
3347 }
3348
3349 private boolean shouldShowDiscoveryBounce() {
Sunny Goyalf9403d92017-10-18 10:55:56 -07003350 return isInState(LauncherState.NORMAL) && !mSharedPrefs.getBoolean(APPS_VIEW_SHOWN, false)
3351 && !UserManagerCompat.getInstance(this).isDemoUser();
Hyunyoung Songc001cf52016-07-21 17:32:43 -07003352 }
3353
Winson Chung80baf5a2010-08-09 16:03:15 -07003354 /**
Hyunyoung Song3c7d9cb2017-01-30 15:11:27 -08003355 * $ adb shell dumpsys activity com.android.launcher3.Launcher [--all]
Joe Onoratobe386092009-11-17 17:32:16 -08003356 */
Adam Cohen16d7ffc2011-10-05 17:49:14 -07003357 @Override
3358 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
3359 super.dump(prefix, fd, writer, args);
Sunny Goyala1365452015-10-01 15:46:24 -07003360
Hyunyoung Song3c7d9cb2017-01-30 15:11:27 -08003361 if (args.length > 0 && TextUtils.equals(args[0], "--all")) {
3362 writer.println(prefix + "Workspace Items");
Sunny Goyal7ce471b2017-08-02 03:37:39 -07003363 for (int i = 0; i < mWorkspace.getPageCount(); i++) {
Hyunyoung Song3c7d9cb2017-01-30 15:11:27 -08003364 writer.println(prefix + " Homescreen " + i);
3365
3366 ViewGroup layout = ((CellLayout) mWorkspace.getPageAt(i)).getShortcutsAndWidgets();
3367 for (int j = 0; j < layout.getChildCount(); j++) {
3368 Object tag = layout.getChildAt(j).getTag();
3369 if (tag != null) {
3370 writer.println(prefix + " " + tag.toString());
3371 }
3372 }
3373 }
3374
3375 writer.println(prefix + " Hotseat");
3376 ViewGroup layout = mHotseat.getLayout().getShortcutsAndWidgets();
Sunny Goyala1365452015-10-01 15:46:24 -07003377 for (int j = 0; j < layout.getChildCount(); j++) {
3378 Object tag = layout.getChildAt(j).getTag();
3379 if (tag != null) {
3380 writer.println(prefix + " " + tag.toString());
3381 }
Adam Cohen4caf2982013-08-20 18:54:31 -07003382 }
Sunny Goyala1365452015-10-01 15:46:24 -07003383
Hyunyoung Song3c7d9cb2017-01-30 15:11:27 -08003384 try {
3385 FileLog.flushAll(writer);
3386 } catch (Exception e) {
3387 // Ignore
Sunny Goyala1365452015-10-01 15:46:24 -07003388 }
3389 }
3390
Hyunyoung Song3c7d9cb2017-01-30 15:11:27 -08003391 writer.println(prefix + "Misc:");
3392 writer.print(prefix + "\tmWorkspaceLoading=" + mWorkspaceLoading);
3393 writer.print(" mPendingRequestArgs=" + mPendingRequestArgs);
3394 writer.println(" mPendingActivityResult=" + mPendingActivityResult);
3395
3396 mModel.dumpState(prefix, fd, writer, args);
Sunny Goyala1365452015-10-01 15:46:24 -07003397
Adam Cohen9211d422014-10-07 18:14:53 -07003398 if (mLauncherCallbacks != null) {
3399 mLauncherCallbacks.dump(prefix, fd, writer, args);
3400 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07003401 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07003402
Sunny Goyal66b24572016-09-21 15:57:55 -07003403 @Override
3404 @TargetApi(Build.VERSION_CODES.N)
3405 public void onProvideKeyboardShortcuts(
3406 List<KeyboardShortcutGroup> data, Menu menu, int deviceId) {
3407
3408 ArrayList<KeyboardShortcutInfo> shortcutInfos = new ArrayList<>();
Sunny Goyalf9403d92017-10-18 10:55:56 -07003409 if (isInState(LauncherState.NORMAL)) {
Sunny Goyal66b24572016-09-21 15:57:55 -07003410 shortcutInfos.add(new KeyboardShortcutInfo(getString(R.string.all_apps_button_label),
3411 KeyEvent.KEYCODE_A, KeyEvent.META_CTRL_ON));
3412 }
3413 View currentFocus = getCurrentFocus();
3414 if (new CustomActionsPopup(this, currentFocus).canShow()) {
3415 shortcutInfos.add(new KeyboardShortcutInfo(getString(R.string.custom_actions),
3416 KeyEvent.KEYCODE_O, KeyEvent.META_CTRL_ON));
3417 }
Tony18c4aa42017-05-10 21:23:57 -05003418 if (currentFocus.getTag() instanceof ItemInfo
3419 && DeepShortcutManager.supportsShortcuts((ItemInfo) currentFocus.getTag())) {
Sunny Goyal66b24572016-09-21 15:57:55 -07003420 shortcutInfos.add(new KeyboardShortcutInfo(getString(R.string.action_deep_shortcut),
3421 KeyEvent.KEYCODE_S, KeyEvent.META_CTRL_ON));
3422 }
3423 if (!shortcutInfos.isEmpty()) {
3424 data.add(new KeyboardShortcutGroup(getString(R.string.home_screen), shortcutInfos));
3425 }
3426
3427 super.onProvideKeyboardShortcuts(data, menu, deviceId);
3428 }
3429
3430 @Override
3431 public boolean onKeyShortcut(int keyCode, KeyEvent event) {
3432 if (event.hasModifiers(KeyEvent.META_CTRL_ON)) {
3433 switch (keyCode) {
3434 case KeyEvent.KEYCODE_A:
Sunny Goyalf9403d92017-10-18 10:55:56 -07003435 if (isInState(LauncherState.NORMAL)) {
Sunny Goyald0d07032017-10-04 10:40:28 -07003436 showAppsView(true);
Sunny Goyal66b24572016-09-21 15:57:55 -07003437 return true;
3438 }
3439 break;
3440 case KeyEvent.KEYCODE_S: {
3441 View focusedView = getCurrentFocus();
3442 if (focusedView instanceof BubbleTextView
3443 && focusedView.getTag() instanceof ItemInfo
3444 && mAccessibilityDelegate.performAction(focusedView,
3445 (ItemInfo) focusedView.getTag(),
3446 LauncherAccessibilityDelegate.DEEP_SHORTCUTS)) {
Sunny Goyal10a1bd02017-10-09 14:56:21 -07003447 BaseActionPopup.getOpen(this).requestFocus();
Sunny Goyal66b24572016-09-21 15:57:55 -07003448 return true;
3449 }
3450 break;
3451 }
3452 case KeyEvent.KEYCODE_O:
3453 if (new CustomActionsPopup(this, getCurrentFocus()).show()) {
3454 return true;
3455 }
3456 break;
3457 }
3458 }
3459 return super.onKeyShortcut(keyCode, event);
3460 }
3461
Andrew Sappersteinabef55a2016-06-19 12:49:00 -07003462 public static Launcher getLauncher(Context context) {
3463 if (context instanceof Launcher) {
3464 return (Launcher) context;
3465 }
3466 return ((Launcher) ((ContextWrapper) context).getBaseContext());
3467 }
3468
Sunny Goyal5a81c382017-03-20 15:08:06 -07003469 private class RotationPrefChangeHandler implements OnSharedPreferenceChangeListener {
Sunny Goyal745bad92016-05-02 10:54:12 -07003470
3471 @Override
3472 public void onSharedPreferenceChanged(
3473 SharedPreferences sharedPreferences, String key) {
3474 if (Utilities.ALLOW_ROTATION_PREFERENCE_KEY.equals(key)) {
Sunny Goyale13d4642017-05-22 15:58:42 -07003475 // Recreate the activity so that it initializes the rotation preference again.
3476 recreate();
Sunny Goyal745bad92016-05-02 10:54:12 -07003477 }
3478 }
Sunny Goyal745bad92016-05-02 10:54:12 -07003479 }
Sunny Goyal3dce5f32017-10-05 11:40:05 -07003480
3481 /**
3482 * Callback for listening for onResume
3483 */
3484 public interface OnResumeCallback {
3485
3486 void onLauncherResume();
3487 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003488}