blob: ab8d7a5a699fa6b98e3ebdbc20c2b16c2153302d [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 Goyalf8d56fc2018-01-31 15:18:11 -080019import static android.content.pm.ActivityInfo.CONFIG_ORIENTATION;
20import static android.content.pm.ActivityInfo.CONFIG_SCREEN_SIZE;
Schneider Victor-tulias25ecae12020-09-14 14:07:38 -070021import static android.view.View.IMPORTANT_FOR_ACCESSIBILITY_NO;
Sunny Goyal8f965462020-04-23 19:00:36 -070022import static android.view.accessibility.AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED;
Vinit Nayak48b28022020-04-27 20:48:49 +000023
Pinyao Tinga74b63a2019-07-17 23:26:06 -070024import static com.android.launcher3.AbstractFloatingView.TYPE_ALL;
Sunny Goyal30ac97d2020-06-24 23:47:46 -070025import static com.android.launcher3.AbstractFloatingView.TYPE_ICON_SURFACE;
Pinyao Tinga74b63a2019-07-17 23:26:06 -070026import static com.android.launcher3.AbstractFloatingView.TYPE_REBIND_SAFE;
Tony Wickham6a71a5b2018-08-21 11:40:23 -070027import static com.android.launcher3.AbstractFloatingView.TYPE_SNACKBAR;
Sunny Goyal4c7f2152017-10-17 17:17:16 -070028import static com.android.launcher3.LauncherAnimUtils.SPRING_LOADED_EXIT_DELAY;
Sunny Goyal3e3f44c2017-10-23 17:14:52 -070029import static com.android.launcher3.LauncherState.ALL_APPS;
Sunny Goyal8f965462020-04-23 19:00:36 -070030import static com.android.launcher3.LauncherState.FLAG_CLOSE_POPUPS;
31import static com.android.launcher3.LauncherState.FLAG_MULTI_PAGE;
32import static com.android.launcher3.LauncherState.FLAG_NON_INTERACTIVE;
Sunny Goyal3e3f44c2017-10-23 17:14:52 -070033import static com.android.launcher3.LauncherState.NORMAL;
Sunny Goyalf2393f12020-04-01 20:13:12 -070034import static com.android.launcher3.LauncherState.NO_OFFSET;
35import static com.android.launcher3.LauncherState.NO_SCALE;
Govinda Wassermanc06e1512019-04-09 09:56:53 -040036import static com.android.launcher3.LauncherState.OVERVIEW;
Sunny Goyal8f965462020-04-23 19:00:36 -070037import static com.android.launcher3.LauncherState.SPRING_LOADED;
Sunny Goyalb1d7de22019-09-06 10:36:54 -070038import static com.android.launcher3.Utilities.postAsyncCallback;
Sunny Goyal6001ea22018-05-10 16:31:00 -070039import static com.android.launcher3.dragndrop.DragLayer.ALPHA_INDEX_LAUNCHER_LOAD;
Hyunyoung Song801f81f2020-06-19 02:58:53 -070040import static com.android.launcher3.logging.StatsLogManager.LAUNCHER_STATE_BACKGROUND;
Hyunyoung Song95786e02020-09-15 00:34:10 -070041import static com.android.launcher3.logging.StatsLogManager.LAUNCHER_STATE_HOME;
Hyunyoung Song801f81f2020-06-19 02:58:53 -070042import static com.android.launcher3.logging.StatsLogManager.LauncherEvent.LAUNCHER_ONRESUME;
43import static com.android.launcher3.logging.StatsLogManager.LauncherEvent.LAUNCHER_ONSTOP;
Sunny Goyal60e68c92020-08-12 13:59:27 -070044import static com.android.launcher3.model.ItemInstallQueue.FLAG_ACTIVITY_PAUSED;
45import static com.android.launcher3.model.ItemInstallQueue.FLAG_DRAG_AND_DROP;
46import static com.android.launcher3.model.ItemInstallQueue.FLAG_LOADER_RUNNING;
Sunny Goyal3a1eadd2019-10-23 17:44:27 -070047import static com.android.launcher3.popup.SystemShortcut.APP_INFO;
Sunny Goyal3a1eadd2019-10-23 17:44:27 -070048import static com.android.launcher3.popup.SystemShortcut.INSTALL;
49import static com.android.launcher3.popup.SystemShortcut.WIDGETS;
Sunny Goyal8f965462020-04-23 19:00:36 -070050import static com.android.launcher3.states.RotationHelper.REQUEST_LOCK;
Sunny Goyalbe8c3402019-05-22 15:17:52 -070051import static com.android.launcher3.states.RotationHelper.REQUEST_NONE;
Sunny Goyal326403e2017-10-02 12:45:10 -070052
Gilles Debunnedd6c9922010-10-25 11:23:41 -070053import android.animation.Animator;
Sunny Goyal6001ea22018-05-10 16:31:00 -070054import android.animation.AnimatorListenerAdapter;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070055import android.animation.AnimatorSet;
Sunny Goyal6001ea22018-05-10 16:31:00 -070056import android.animation.ObjectAnimator;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070057import android.animation.ValueAnimator;
Adam Cohen0b395352014-06-09 22:54:36 +000058import android.annotation.TargetApi;
Tony Wickham005df0b2018-02-13 11:28:12 -080059import android.app.ActivityOptions;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080060import android.appwidget.AppWidgetHostView;
Michael Jurkaaf442092010-06-10 17:01:57 -070061import android.appwidget.AppWidgetManager;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080062import android.content.ActivityNotFoundException;
Joe Onorato2ca0ae72009-11-10 13:14:13 -080063import android.content.BroadcastReceiver;
Michael Jurkae326f182011-11-21 14:05:46 -080064import android.content.ComponentCallbacks2;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080065import android.content.Context;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080066import android.content.Intent;
Winson Chungf0ea4d32011-06-06 14:27:16 -070067import android.content.IntentFilter;
Adam Cohen173f7112015-03-27 15:14:00 -070068import android.content.IntentSender;
Winson Chung82f55532011-08-09 14:14:23 -070069import android.content.SharedPreferences;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080070import android.content.pm.PackageManager;
Sunny Goyalf8d56fc2018-01-31 15:18:11 -080071import android.content.res.Configuration;
Adam Cohen3f9c9712014-10-31 11:48:25 -070072import android.database.sqlite.SQLiteDatabase;
Schneider Victor-tulias25ecae12020-09-14 14:07:38 -070073import android.graphics.Bitmap;
Adam Cohen0f668f32014-09-08 19:54:17 +020074import android.os.Build;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080075import android.os.Bundle;
Sunny Goyal210e1742019-10-17 12:05:38 -070076import android.os.CancellationSignal;
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -070077import android.os.Parcelable;
Sunny Goyal7c74e4a2016-12-15 15:53:17 -080078import android.os.Process;
Winson Chunga2413752012-04-03 14:22:34 -070079import android.os.StrictMode;
Riddle Hsu979da642020-09-22 21:52:40 +080080import android.os.SystemClock;
Michael Jurkaa33411c2012-06-14 16:18:21 -070081import android.text.TextUtils;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080082import android.text.method.TextKeyListener;
Joe Onorato7c312c12009-08-13 21:36:53 -070083import android.util.Log;
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -070084import android.util.SparseArray;
Adam Cohen96d30a12013-07-16 18:13:21 -070085import android.view.KeyEvent;
Sunny Goyal66b24572016-09-21 15:57:55 -070086import android.view.KeyboardShortcutGroup;
87import android.view.KeyboardShortcutInfo;
Sunny Goyal9b29ca52017-02-17 10:39:44 -080088import android.view.LayoutInflater;
Adam Cohen96d30a12013-07-16 18:13:21 -070089import android.view.Menu;
vadimt9af34a72020-01-21 11:19:13 -080090import android.view.MotionEvent;
Adam Cohen96d30a12013-07-16 18:13:21 -070091import android.view.View;
Adam Cohen96d30a12013-07-16 18:13:21 -070092import android.view.ViewGroup;
Schneider Victor-tulias25ecae12020-09-14 14:07:38 -070093import android.view.WindowManager.LayoutParams;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -080094import android.view.accessibility.AccessibilityEvent;
Sunny Goyal5a1f53b2015-05-27 10:24:24 -070095import android.view.animation.OvershootInterpolator;
Schneider Victor-tulias25ecae12020-09-14 14:07:38 -070096import android.widget.ImageView;
Adam Cohen96d30a12013-07-16 18:13:21 -070097import android.widget.Toast;
Sunny Goyala1d1bf32015-06-26 13:24:53 -070098
Sunny Goyal35e7d382020-05-08 13:37:58 -070099import androidx.annotation.CallSuper;
Samuel Fufa2fa2e0a2020-09-11 13:34:25 -0700100import androidx.annotation.NonNull;
Sunny Goyal11a50742019-08-07 09:24:26 -0700101import androidx.annotation.Nullable;
Pinyao Tingc9074272019-11-11 11:51:44 -0800102import androidx.annotation.StringRes;
Sunny Goyalb1d7de22019-09-06 10:36:54 -0700103import androidx.annotation.VisibleForTesting;
Samuel Fufa2fa2e0a2020-09-11 13:34:25 -0700104import androidx.lifecycle.Lifecycle;
105import androidx.lifecycle.LifecycleOwner;
106import androidx.lifecycle.LifecycleRegistry;
Sunny Goyal11a50742019-08-07 09:24:26 -0700107
Sunny Goyal651077b2014-06-30 14:15:31 -0700108import com.android.launcher3.DropTarget.DragObject;
Sunny Goyalae502842016-06-17 08:43:56 -0700109import com.android.launcher3.accessibility.LauncherAccessibilityDelegate;
Winson Chung5f4e0fd2015-05-22 11:12:27 -0700110import com.android.launcher3.allapps.AllAppsContainerView;
vadimtd4c90e12019-06-04 13:59:43 -0700111import com.android.launcher3.allapps.AllAppsStore;
Hyunyoung Song645764e2016-06-06 14:19:02 -0700112import com.android.launcher3.allapps.AllAppsTransitionController;
Sunny Goyal7ede6112017-12-05 15:11:21 -0800113import com.android.launcher3.allapps.DiscoveryBounce;
Sunny Goyalf0b6db72018-08-13 16:10:14 -0700114import com.android.launcher3.anim.PropertyListBuilder;
Sunny Goyal8f965462020-04-23 19:00:36 -0700115import com.android.launcher3.compat.AccessibilityManagerCompat;
Tony Wickhame0c33232016-02-08 11:37:04 -0800116import com.android.launcher3.config.FeatureFlags;
vadimt00d42552018-12-11 17:59:36 -0800117import com.android.launcher3.dot.DotInfo;
Vadim Tryshevfedca432015-08-19 17:55:02 -0700118import com.android.launcher3.dragndrop.DragController;
119import com.android.launcher3.dragndrop.DragLayer;
120import com.android.launcher3.dragndrop.DragView;
Sunny Goyal11a50742019-08-07 09:24:26 -0700121import com.android.launcher3.folder.FolderGridOrganizer;
Sunny Goyal26119432016-02-18 22:09:23 +0000122import com.android.launcher3.folder.FolderIcon;
Schneider Victor-tulias25ecae12020-09-14 14:07:38 -0700123import com.android.launcher3.icons.BitmapRenderer;
Sunny Goyalf840f102018-09-21 14:41:05 -0700124import com.android.launcher3.icons.IconCache;
Sunny Goyal66b24572016-09-21 15:57:55 -0700125import com.android.launcher3.keyboard.CustomActionsPopup;
Sunny Goyal3333b0c2016-05-09 20:43:21 -0700126import com.android.launcher3.keyboard.ViewGroupFocusHelper;
Hyunyoung Song801f81f2020-06-19 02:58:53 -0700127import com.android.launcher3.logger.LauncherAtom;
Sunny Goyala7ce1662016-05-31 15:01:35 -0700128import com.android.launcher3.logging.FileLog;
Hyunyoung Song801f81f2020-06-19 02:58:53 -0700129import com.android.launcher3.logging.StatsLogManager;
Sunny Goyal87dcde62019-07-17 20:35:56 -0700130import com.android.launcher3.model.BgDataModel.Callbacks;
Sunny Goyal60e68c92020-08-12 13:59:27 -0700131import com.android.launcher3.model.ItemInstallQueue;
Sunny Goyal53116c62020-08-07 16:32:18 -0700132import com.android.launcher3.model.ModelUtils;
Sunny Goyala535ae42017-02-27 10:07:13 -0800133import com.android.launcher3.model.ModelWriter;
Sunny Goyale396abf2020-04-06 15:11:17 -0700134import com.android.launcher3.model.data.AppInfo;
135import com.android.launcher3.model.data.FolderInfo;
136import com.android.launcher3.model.data.ItemInfo;
137import com.android.launcher3.model.data.LauncherAppWidgetInfo;
138import com.android.launcher3.model.data.PromiseAppInfo;
139import com.android.launcher3.model.data.WorkspaceItemInfo;
Sunny Goyala535ae42017-02-27 10:07:13 -0800140import com.android.launcher3.notification.NotificationListener;
Sunny Goyale7b00122019-10-02 16:13:34 -0700141import com.android.launcher3.pm.PinRequestHelper;
Samuel Fufa41d909f2020-03-20 16:27:09 -0700142import com.android.launcher3.pm.UserCache;
Tony Wickham540913e2017-01-23 11:47:51 -0800143import com.android.launcher3.popup.PopupContainerWithArrow;
Sunny Goyala535ae42017-02-27 10:07:13 -0800144import com.android.launcher3.popup.PopupDataProvider;
Sunny Goyal3a1eadd2019-10-23 17:44:27 -0700145import com.android.launcher3.popup.SystemShortcut;
Samuel Fufaca37b8a2019-08-19 17:04:36 -0700146import com.android.launcher3.qsb.QsbContainerView;
Sunny Goyal35e7d382020-05-08 13:37:58 -0700147import com.android.launcher3.statemanager.StateManager;
148import com.android.launcher3.statemanager.StateManager.StateHandler;
149import com.android.launcher3.statemanager.StateManager.StateListener;
150import com.android.launcher3.statemanager.StatefulActivity;
Sunny Goyal623eddd2018-03-02 12:24:41 -0800151import com.android.launcher3.states.RotationHelper;
vadimt9af34a72020-01-21 11:19:13 -0800152import com.android.launcher3.testing.TestLogging;
vadimtbc5d7e62019-12-09 13:53:05 -0800153import com.android.launcher3.testing.TestProtocol;
Sunny Goyal210e1742019-10-17 12:05:38 -0700154import com.android.launcher3.touch.AllAppsSwipeController;
Sunny Goyal8a2a63b2018-03-06 22:15:18 -0800155import com.android.launcher3.touch.ItemClickHandler;
Sunny Goyalb1d7de22019-09-06 10:36:54 -0700156import com.android.launcher3.uioverrides.plugins.PluginManagerWrapper;
Sunny Goyal2100c782016-08-22 16:00:03 -0700157import com.android.launcher3.util.ActivityResultInfo;
Sunny Goyale84c5b82019-09-26 17:05:31 -0700158import com.android.launcher3.util.ActivityTracker;
Winson Chung6b1c73f2015-06-18 11:38:42 -0700159import com.android.launcher3.util.ComponentKey;
Sunny Goyalefb7e842018-10-04 15:11:00 -0700160import com.android.launcher3.util.IntArray;
Sunny Goyald3b87ef2016-07-28 12:11:54 -0700161import com.android.launcher3.util.ItemInfoMatcher;
Sunny Goyal6001ea22018-05-10 16:31:00 -0700162import com.android.launcher3.util.MultiValueAlpha;
163import com.android.launcher3.util.MultiValueAlpha.AlphaProperty;
Tony Wickham133cd542020-04-08 17:48:41 -0700164import com.android.launcher3.util.OnboardingPrefs;
Sunny Goyal04cc3a72016-05-17 10:32:43 -0700165import com.android.launcher3.util.PackageManagerHelper;
Tony Wickham010d2552017-01-20 08:15:28 -0800166import com.android.launcher3.util.PackageUserKey;
Sunny Goyal2100c782016-08-22 16:00:03 -0700167import com.android.launcher3.util.PendingRequestArgs;
Samuel Fufa41d909f2020-03-20 16:27:09 -0700168import com.android.launcher3.util.SafeCloseable;
Pinyao Ting49a3e692019-07-26 12:28:38 -0700169import com.android.launcher3.util.ShortcutUtil;
Sunny Goyal8392c822017-06-20 10:03:56 -0700170import com.android.launcher3.util.SystemUiController;
Mario Bertschlera6936942017-05-31 14:48:19 -0700171import com.android.launcher3.util.Themes;
Adam Cohen091440a2015-03-18 14:16:05 -0700172import com.android.launcher3.util.Thunk;
Sunny Goyal210e1742019-10-17 12:05:38 -0700173import com.android.launcher3.util.TouchController;
Sunny Goyalfca6bc92017-09-28 16:28:34 -0700174import com.android.launcher3.util.TraceHelper;
Sunny Goyal326403e2017-10-02 12:45:10 -0700175import com.android.launcher3.util.UiThreadHelper;
Sunny Goyal527c7d32015-08-28 15:19:36 -0700176import com.android.launcher3.util.ViewOnDrawExecutor;
Sunny Goyalab770a12018-11-14 15:17:26 -0800177import com.android.launcher3.views.ActivityContext;
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700178import com.android.launcher3.views.FloatingSurfaceView;
Sunny Goyal7c7be8c2018-03-07 19:58:07 -0800179import com.android.launcher3.views.OptionsPopupView;
Govinda Wassermanc06e1512019-04-09 09:56:53 -0400180import com.android.launcher3.views.ScrimView;
Sunny Goyal29947f02017-12-18 13:49:44 -0800181import com.android.launcher3.widget.LauncherAppWidgetHostView;
Sunny Goyal782f0c92017-01-19 10:27:54 -0800182import com.android.launcher3.widget.PendingAddShortcutInfo;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700183import com.android.launcher3.widget.PendingAddWidgetInfo;
Sunny Goyal29947f02017-12-18 13:49:44 -0800184import com.android.launcher3.widget.PendingAppWidgetHostView;
Sunny Goyal04a324a2017-01-20 21:08:59 -0800185import com.android.launcher3.widget.WidgetAddFlowHandler;
Hyunyoung Songb99ff3e2015-04-23 15:17:50 -0700186import com.android.launcher3.widget.WidgetHostViewLoader;
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -0700187import com.android.launcher3.widget.WidgetListRowEntry;
Sunny Goyal337c81f2019-12-10 12:19:13 -0800188import com.android.launcher3.widget.WidgetManagerHelper;
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -0700189import com.android.launcher3.widget.WidgetsFullSheet;
Pinyao Tingc7a6c292019-08-26 14:36:02 -0700190import com.android.launcher3.widget.custom.CustomWidgetManager;
Sunny Goyalb1d7de22019-09-06 10:36:54 -0700191import com.android.systemui.plugins.OverlayPlugin;
192import com.android.systemui.plugins.PluginListener;
193import com.android.systemui.plugins.shared.LauncherExterns;
194import com.android.systemui.plugins.shared.LauncherOverlayManager;
195import com.android.systemui.plugins.shared.LauncherOverlayManager.LauncherOverlay;
196import com.android.systemui.plugins.shared.LauncherOverlayManager.LauncherOverlayCallbacks;
Adam Cohen6c5891a2014-07-09 23:53:15 -0700197
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700198import java.io.FileDescriptor;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700199import java.io.PrintWriter;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700200import java.util.ArrayList;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700201import java.util.Collection;
Zak Cohen658c67a2018-10-19 14:21:05 -0700202import java.util.HashMap;
Sunny Goyal4390ace2014-10-13 11:33:11 -0700203import java.util.HashSet;
Michael Jurkad7c28052012-04-27 15:43:36 -0700204import java.util.List;
Sunny Goyalaae6fbb2019-01-31 16:05:58 -0800205import java.util.function.Predicate;
Sunny Goyalb1d7de22019-09-06 10:36:54 -0700206import java.util.function.Supplier;
Sunny Goyal3a1eadd2019-10-23 17:44:27 -0700207import java.util.stream.Stream;
Jon Mirandaf5197fc2019-09-04 16:55:41 -0700208
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800209/**
210 * Default launcher application.
211 */
Sunny Goyal35e7d382020-05-08 13:37:58 -0700212public class Launcher extends StatefulActivity<LauncherState> implements LauncherExterns,
Samuel Fufa2fa2e0a2020-09-11 13:34:25 -0700213 Callbacks, InvariantDeviceProfile.OnIDPChangeListener, PluginListener<OverlayPlugin>,
214 LifecycleOwner {
Vadim Tryshevfedca432015-08-19 17:55:02 -0700215 public static final String TAG = "Launcher";
Sunny Goyale84c5b82019-09-26 17:05:31 -0700216
217 public static final ActivityTracker<Launcher> ACTIVITY_TRACKER = new ActivityTracker<>();
218
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700219 static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800220
Winson Chunga2413752012-04-03 14:22:34 -0700221 static final boolean DEBUG_STRICT_MODE = false;
Romain Guy6fefcf12009-06-11 13:07:43 -0700222
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800223 private static final int REQUEST_CREATE_SHORTCUT = 1;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700224 private static final int REQUEST_CREATE_APPWIDGET = 5;
Jon Mirandac476d6e2017-05-04 16:30:01 -0700225
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700226 private static final int REQUEST_PICK_APPWIDGET = 9;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800227
Michael Jurka8b805b12012-04-18 14:23:14 -0700228 private static final int REQUEST_BIND_APPWIDGET = 11;
Sunny Goyal8a2a63b2018-03-06 22:15:18 -0800229 public static final int REQUEST_BIND_PENDING_APPWIDGET = 12;
230 public static final int REQUEST_RECONFIGURE_APPWIDGET = 13;
Michael Jurka8b805b12012-04-18 14:23:14 -0700231
Jon Mirandac476d6e2017-05-04 16:30:01 -0700232 private static final int REQUEST_PERMISSION_CALL_PHONE = 14;
Sunny Goyal28c6b962015-10-12 11:42:05 -0700233
Sunny Goyal5a1f53b2015-05-27 10:24:24 -0700234 private static final float BOUNCE_ANIMATION_TENSION = 1.3f;
235
Mathew Inwood876a8462013-06-14 14:12:41 +0100236 /**
237 * IntentStarter uses request codes starting with this. This must be greater than all activity
238 * request codes used internally.
239 */
240 protected static final int REQUEST_LAST = 100;
241
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800242 // Type: int
243 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
Michael Jurka883f55b2010-10-21 15:47:14 -0700244 // Type: int
245 private static final String RUNTIME_STATE = "launcher.state";
Sunny Goyal2100c782016-08-22 16:00:03 -0700246 // Type: PendingRequestArgs
247 private static final String RUNTIME_STATE_PENDING_REQUEST_ARGS = "launcher.request_args";
Sunny Goyaldedda052019-05-14 15:23:48 -0700248 // Type: int
249 private static final String RUNTIME_STATE_PENDING_REQUEST_CODE = "launcher.request_code";
Sunny Goyal2100c782016-08-22 16:00:03 -0700250 // Type: ActivityResultInfo
251 private static final String RUNTIME_STATE_PENDING_ACTIVITY_RESULT = "launcher.activity_result";
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -0700252 // Type: SparseArray<Parcelable>
253 private static final String RUNTIME_STATE_WIDGET_PANEL = "launcher.widget_panel";
Sunny Goyal17c72fb2019-10-14 14:06:38 -0700254
vadimt00d42552018-12-11 17:59:36 -0800255 public static final String ON_CREATE_EVT = "Launcher.onCreate";
Sunny Goyal17c72fb2019-10-14 14:06:38 -0700256 public static final String ON_START_EVT = "Launcher.onStart";
257 public static final String ON_RESUME_EVT = "Launcher.onResume";
258 public static final String ON_NEW_INTENT_EVT = "Launcher.onNewIntent";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800259
Sunny Goyal35e7d382020-05-08 13:37:58 -0700260 private StateManager<LauncherState> mStateManager;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700261
Adam Cohenad4e15c2013-10-17 16:21:35 -0700262 private static final int ON_ACTIVITY_RESULT_ANIMATION_DELAY = 500;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800263
Winson Chunga2413752012-04-03 14:22:34 -0700264 // How long to wait before the new-shortcut animation automatically pans the workspace
Jon Mirandaf5197fc2019-09-04 16:55:41 -0700265 @VisibleForTesting public static final int NEW_APPS_PAGE_MOVE_DELAY = 500;
Rajeev Kumar43c0f582017-06-23 15:34:55 -0700266 private static final int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 5;
Jon Mirandaf5197fc2019-09-04 16:55:41 -0700267 @Thunk @VisibleForTesting public static final int NEW_APPS_ANIMATION_DELAY = 500;
Winson Chunga2413752012-04-03 14:22:34 -0700268
Govinda Wassermanc06e1512019-04-09 09:56:53 -0400269 private static final int APPS_VIEW_ALPHA_CHANNEL_INDEX = 1;
270 private static final int SCRIM_VIEW_ALPHA_CHANNEL_INDEX = 0;
271
Schneider Victor-tulias25ecae12020-09-14 14:07:38 -0700272 private static final int THEME_CROSS_FADE_ANIMATION_DURATION = 375;
273
Jon Miranda54441f52018-01-24 15:38:25 -0800274 private LauncherAppTransitionManager mAppTransitionManager;
Sunny Goyalf8d56fc2018-01-31 15:18:11 -0800275 private Configuration mOldConfig;
Jon Miranda54441f52018-01-24 15:38:25 -0800276
Samuel Fufa2fa2e0a2020-09-11 13:34:25 -0700277 private LifecycleRegistry mLifecycleRegistry;
278
Samuel Fufaca37b8a2019-08-19 17:04:36 -0700279 @Thunk
280 Workspace mWorkspace;
Samuel Fufaca37b8a2019-08-19 17:04:36 -0700281 @Thunk
282 DragLayer mDragLayer;
Michael Jurkab737ee62011-11-15 15:57:22 -0800283 private DragController mDragController;
Sunny Goyal322d5562015-06-25 19:35:49 -0700284
Sunny Goyal337c81f2019-12-10 12:19:13 -0800285 private WidgetManagerHelper mAppWidgetManager;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700286 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700287
Rajeev Kumar43c0f582017-06-23 15:34:55 -0700288 private final int[] mTmpAddItemCellCoordinates = new int[2];
Michael Jurka0280c3b2010-09-17 15:00:07 -0700289
Samuel Fufaca37b8a2019-08-19 17:04:36 -0700290 @Thunk
291 Hotseat mHotseat;
Adam Cohenf358a4b2013-07-23 16:47:31 -0700292
Sunny Goyal47328fd2016-05-25 18:56:41 -0700293 private DropTargetBar mDropTargetBar;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700294
295 // Main container view for the all apps screen.
Samuel Fufaca37b8a2019-08-19 17:04:36 -0700296 @Thunk
297 AllAppsContainerView mAppsView;
Hyunyoung Song645764e2016-06-06 14:19:02 -0700298 AllAppsTransitionController mAllAppsController;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700299
Govinda Wassermanc06e1512019-04-09 09:56:53 -0400300 // Scrim view for the all apps and overview state.
Samuel Fufaca37b8a2019-08-19 17:04:36 -0700301 @Thunk
302 ScrimView mScrimView;
Govinda Wassermanc06e1512019-04-09 09:56:53 -0400303
Winson Chung8ae41982017-11-10 11:42:13 -0800304 // UI and state for the overview panel
Sunny Goyal7c7be8c2018-03-07 19:58:07 -0800305 private View mOverviewPanel;
Winson Chung8ae41982017-11-10 11:42:13 -0800306
Samuel Fufaca37b8a2019-08-19 17:04:36 -0700307 @Thunk
308 boolean mWorkspaceLoading = true;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400309
Winson Chung0b70cd42019-06-17 22:34:33 -0700310 private ArrayList<OnResumeCallback> mOnResumeCallbacks = new ArrayList<>();
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700311
Winson Chungc9bf6d42019-10-04 15:33:18 -0700312 // Used to notify when an activity launch has been deferred because launcher is not yet resumed
313 // TODO: See if we can remove this later
314 private Runnable mOnDeferredActivityLaunchCallback;
315
Sunny Goyal527c7d32015-08-28 15:19:36 -0700316 private ViewOnDrawExecutor mPendingExecutor;
Michael Jurka7607c2f2013-04-03 14:33:19 -0700317
Joe Onorato9c1289c2009-08-17 11:03:03 -0400318 private LauncherModel mModel;
Sunny Goyal43bf11d2017-02-02 13:52:53 -0800319 private ModelWriter mModelWriter;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800320 private IconCache mIconCache;
Sunny Goyalae502842016-06-17 08:43:56 -0700321 private LauncherAccessibilityDelegate mAccessibilityDelegate;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400322
Tony Wickham010d2552017-01-20 08:15:28 -0800323 private PopupDataProvider mPopupDataProvider;
Tony Wickhambfbf7f92016-05-19 11:19:39 -0700324
Sunny Goyalf4aceab2017-12-06 16:16:31 -0800325 private int mSynchronouslyBoundPage = PagedView.INVALID_PAGE;
Sunny Goyala7a5bf32020-01-05 15:35:29 +0530326 private int mPageToBindSynchronously = PagedView.INVALID_PAGE;
Adam Cohen1462de32012-07-24 22:34:36 -0700327
Winson Chung46353de2012-02-16 14:05:10 -0800328 // We only want to get the SharedPreferences once since it does an FS stat each time we get
329 // it from the context.
330 private SharedPreferences mSharedPrefs;
Tony Wickham133cd542020-04-08 17:48:41 -0700331 private OnboardingPrefs mOnboardingPrefs;
Winson Chung46353de2012-02-16 14:05:10 -0800332
Sunny Goyal2100c782016-08-22 16:00:03 -0700333 // Activity result which needs to be processed after workspace has loaded.
334 private ActivityResultInfo mPendingActivityResult;
335 /**
336 * Holds extra information required to handle a result from an external call, like
337 * {@link #startActivityForResult(Intent, int)} or {@link #requestPermissions(String[], int)}
338 */
339 private PendingRequestArgs mPendingRequestArgs;
Sunny Goyaldedda052019-05-14 15:23:48 -0700340 // Request id for any pending activity result
Sunny Goyal210e1742019-10-17 12:05:38 -0700341 protected int mPendingActivityRequestCode = -1;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800342
Tracy Zhou4d7b2442019-12-09 13:42:57 -0800343 private ViewGroupFocusHelper mFocusHandler;
Hyunyoung Song7fb3ccc2017-10-17 15:39:46 -0700344
Sunny Goyal623eddd2018-03-02 12:24:41 -0800345 private RotationHelper mRotationHelper;
Sunny Goyal7779d622015-06-11 16:18:39 -0700346
Govinda Wassermanc06e1512019-04-09 09:56:53 -0400347 private float mCurrentAssistantVisibility = 0f;
348
Sunny Goyalb1d7de22019-09-06 10:36:54 -0700349 protected LauncherOverlayManager mOverlayManager;
350 // If true, overlay callbacks are deferred
351 private boolean mDeferOverlayCallbacks;
352 private final Runnable mDeferredOverlayCallbacks = this::checkIfOverlayStillDeferred;
353
Riddle Hsu979da642020-09-22 21:52:40 +0800354 protected long mLastTouchUpTime = -1;
Sunny Goyala306e592020-03-24 01:51:41 -0700355 private boolean mTouchInProgress;
Sunny Goyal9b180102020-03-11 10:02:29 -0700356
Samuel Fufa41d909f2020-03-20 16:27:09 -0700357 private SafeCloseable mUserChangedCallbackCloseable;
358
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800359 @Override
360 protected void onCreate(Bundle savedInstanceState) {
Winson Chung5cc62c72019-10-16 11:32:41 -0700361 Object traceToken = TraceHelper.INSTANCE.beginSection(ON_CREATE_EVT,
362 TraceHelper.FLAG_UI_EVENT);
Winson Chunga2413752012-04-03 14:22:34 -0700363 if (DEBUG_STRICT_MODE) {
364 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
365 .detectDiskReads()
366 .detectDiskWrites()
367 .detectNetwork() // or .detectAll() for all detectable problems
368 .penaltyLog()
369 .build());
370 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
371 .detectLeakedSqlLiteObjects()
372 .detectLeakedClosableObjects()
373 .penaltyLog()
374 .penaltyDeath()
375 .build());
376 }
377
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800378 super.onCreate(savedInstanceState);
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400379
Sunny Goyal87f784c2017-01-11 10:48:34 -0800380 LauncherAppState app = LauncherAppState.getInstance(this);
Sunny Goyalf8d56fc2018-01-31 15:18:11 -0800381 mOldConfig = new Configuration(getResources().getConfiguration());
Sunny Goyala7a5bf32020-01-05 15:35:29 +0530382 mModel = app.getModel();
Sunny Goyal9d89f752020-06-19 11:09:24 -0700383
Sunny Goyal41d51a02019-05-14 09:44:34 -0700384 mRotationHelper = new RotationHelper(this);
Hyunyoung Song31971a32019-01-27 12:31:12 -0800385 InvariantDeviceProfile idp = app.getInvariantDeviceProfile();
386 initDeviceProfile(idp);
387 idp.addOnChangeListener(this);
Sunny Goyalf7258242015-10-19 16:59:07 -0700388 mSharedPrefs = Utilities.getPrefs(this);
Joe Onorato0589f0f2010-02-08 13:44:00 -0800389 mIconCache = app.getIconCache();
Sunny Goyalae502842016-06-17 08:43:56 -0700390 mAccessibilityDelegate = new LauncherAccessibilityDelegate(this);
Adam Cohen2e6da152015-05-06 11:42:25 -0700391
Joe Onorato41a12d22009-10-31 18:30:00 -0400392 mDragController = new DragController(this);
Hyunyoung Song645764e2016-06-06 14:19:02 -0700393 mAllAppsController = new AllAppsTransitionController(this);
Sunny Goyal35e7d382020-05-08 13:37:58 -0700394 mStateManager = new StateManager<>(this, NORMAL);
Romain Guycbb89e42009-06-08 15:52:54 -0700395
Sunny Goyal35e7d382020-05-08 13:37:58 -0700396 mOnboardingPrefs = createOnboardingPrefs(mSharedPrefs);
Tony Wickham133cd542020-04-08 17:48:41 -0700397
Sunny Goyal337c81f2019-12-10 12:19:13 -0800398 mAppWidgetManager = new WidgetManagerHelper(this);
Samuel Fufa44043ec2019-08-26 15:00:30 -0700399 mAppWidgetHost = new LauncherAppWidgetHost(this,
400 appWidgetId -> getWorkspace().removeWidget(appWidgetId));
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700401 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700402
Sunny Goyal9d89f752020-06-19 11:09:24 -0700403 inflateRootView(R.layout.launcher);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800404 setupViews();
Schneider Victor-tulias25ecae12020-09-14 14:07:38 -0700405 crossFadeWithPreviousAppearance();
Sunny Goyal9c2b9602020-01-07 13:07:55 -0800406 mPopupDataProvider = new PopupDataProvider(this::updateNotificationDots);
Tony Wickham010d2552017-01-20 08:15:28 -0800407
Sunny Goyal90548432018-04-04 17:17:00 -0700408 mAppTransitionManager = LauncherAppTransitionManager.newInstance(this);
Winson Chung24ab40c2019-10-30 22:35:09 -0700409 mAppTransitionManager.registerRemoteAnimations();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800410
Sunny Goyale84c5b82019-09-26 17:05:31 -0700411 boolean internalStateHandled = ACTIVITY_TRACKER.handleCreate(this);
Sunny Goyald3864fa2017-11-14 15:06:36 -0800412 if (internalStateHandled) {
Sunny Goyald3864fa2017-11-14 15:06:36 -0800413 if (savedInstanceState != null) {
414 // InternalStateHandler has already set the appropriate state.
415 // We dont need to do anything.
416 savedInstanceState.remove(RUNTIME_STATE);
417 }
418 }
419 restoreState(savedInstanceState);
Sunny Goyalbbece862019-03-01 13:13:52 -0800420 mStateManager.reapplyState();
Winson Chungb63b44c2017-11-10 17:54:44 -0800421
Sunny Goyal2100c782016-08-22 16:00:03 -0700422 // We only load the page synchronously if the user rotates (or triggers a
423 // configuration change) while launcher is in the foreground
Sunny Goyala7a5bf32020-01-05 15:35:29 +0530424 int currentScreen = PagedView.INVALID_PAGE;
Sunny Goyalfe770c92016-09-27 14:38:58 -0700425 if (savedInstanceState != null) {
426 currentScreen = savedInstanceState.getInt(RUNTIME_STATE_CURRENT_SCREEN, currentScreen);
427 }
Sunny Goyala7a5bf32020-01-05 15:35:29 +0530428 mPageToBindSynchronously = currentScreen;
Sunny Goyald3864fa2017-11-14 15:06:36 -0800429
Sunny Goyala7a5bf32020-01-05 15:35:29 +0530430 if (!mModel.addCallbacksAndLoad(this)) {
Sunny Goyald3864fa2017-11-14 15:06:36 -0800431 if (!internalStateHandled) {
432 // If we are not binding synchronously, show a fade in animation when
433 // the first page bind completes.
Sunny Goyal6001ea22018-05-10 16:31:00 -0700434 mDragLayer.getAlphaProperty(ALPHA_INDEX_LAUNCHER_LOAD).setValue(0);
Sunny Goyald3864fa2017-11-14 15:06:36 -0800435 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800436 }
437
438 // For handling default keys
Sunny Goyalf4aceab2017-12-06 16:16:31 -0800439 setDefaultKeyMode(DEFAULT_KEYS_SEARCH_LOCAL);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800440
Sunny Goyal9d89f752020-06-19 11:09:24 -0700441 setContentView(getRootView());
Sunny Goyalf8d56fc2018-01-31 15:18:11 -0800442 getRootView().dispatchInsets();
Mario Bertschlera6936942017-05-31 14:48:19 -0700443
Jon Miranda7fda2852017-07-19 16:07:01 -0700444 // Listen for broadcasts
Sunny Goyal5d1873a2018-05-08 11:10:44 -0700445 registerReceiver(mScreenOffReceiver, new IntentFilter(Intent.ACTION_SCREEN_OFF));
Sunny Goyala616d2b2017-06-12 13:54:01 -0700446
Sunny Goyal8392c822017-06-20 10:03:56 -0700447 getSystemUiController().updateUiState(SystemUiController.UI_STATE_BASE_WINDOW,
448 Themes.getAttrBoolean(this, R.attr.isWorkspaceDarkText));
Sunny Goyal14b32402017-07-31 10:03:28 -0700449
450 if (mLauncherCallbacks != null) {
451 mLauncherCallbacks.onCreate(savedInstanceState);
452 }
Sunny Goyalb1d7de22019-09-06 10:36:54 -0700453 mOverlayManager = getDefaultOverlay();
454 PluginManagerWrapper.INSTANCE.get(this).addPluginListener(this,
455 OverlayPlugin.class, false /* allowedMultiple */);
456
Sunny Goyal623eddd2018-03-02 12:24:41 -0800457 mRotationHelper.initialize();
Sunny Goyalfca6bc92017-09-28 16:28:34 -0700458
Sunny Goyal35e7d382020-05-08 13:37:58 -0700459 mStateManager.addStateListener(new StateListener<LauncherState>() {
Govinda Wassermanc06e1512019-04-09 09:56:53 -0400460
461 @Override
462 public void onStateTransitionComplete(LauncherState finalState) {
463 float alpha = 1f - mCurrentAssistantVisibility;
464 if (finalState == NORMAL) {
465 mAppsView.getAlphaProperty(APPS_VIEW_ALPHA_CHANNEL_INDEX).setValue(alpha);
Tony Wickhamd844fe72020-08-13 19:33:26 -0700466 } else if (finalState == OVERVIEW) {
Govinda Wassermanc06e1512019-04-09 09:56:53 -0400467 mAppsView.getAlphaProperty(APPS_VIEW_ALPHA_CHANNEL_INDEX).setValue(alpha);
Sunny Goyal52e25452020-07-20 12:38:01 -0700468 mScrimView.setAlpha(alpha);
Govinda Wassermanc06e1512019-04-09 09:56:53 -0400469 } else {
470 mAppsView.getAlphaProperty(APPS_VIEW_ALPHA_CHANNEL_INDEX).setValue(1f);
Sunny Goyal52e25452020-07-20 12:38:01 -0700471 mScrimView.setAlpha(1f);
Govinda Wassermanc06e1512019-04-09 09:56:53 -0400472 }
473 }
474 });
Sunny Goyal17c72fb2019-10-14 14:06:38 -0700475
Winson Chung5cc62c72019-10-16 11:32:41 -0700476 TraceHelper.INSTANCE.endSection(traceToken);
Samuel Fufa41d909f2020-03-20 16:27:09 -0700477
478 mUserChangedCallbackCloseable = UserCache.INSTANCE.get(this).addUserChangeListener(
479 () -> getStateManager().goToState(NORMAL));
Schneider Victor-tulias8a35c762020-09-03 14:30:10 -0700480
481 if (Utilities.ATLEAST_R) {
Schneider Victor-tulias25ecae12020-09-14 14:07:38 -0700482 getWindow().setSoftInputMode(LayoutParams.SOFT_INPUT_ADJUST_NOTHING);
Schneider Victor-tulias8a35c762020-09-03 14:30:10 -0700483 }
Samuel Fufa2fa2e0a2020-09-11 13:34:25 -0700484
485 mLifecycleRegistry = new LifecycleRegistry(this);
486 mLifecycleRegistry.setCurrentState(Lifecycle.State.CREATED);
487 }
488
489 @NonNull
490 @Override
491 public Lifecycle getLifecycle() {
492 return mLifecycleRegistry;
Adam Cohen9211d422014-10-07 18:14:53 -0700493 }
494
Sunny Goyalb1d7de22019-09-06 10:36:54 -0700495 protected LauncherOverlayManager getDefaultOverlay() {
496 return new LauncherOverlayManager() { };
497 }
498
Sunny Goyal35e7d382020-05-08 13:37:58 -0700499 protected OnboardingPrefs createOnboardingPrefs(SharedPreferences sharedPrefs) {
500 return new OnboardingPrefs<>(this, sharedPrefs);
Tony Wickham133cd542020-04-08 17:48:41 -0700501 }
502
503 public OnboardingPrefs getOnboardingPrefs() {
504 return mOnboardingPrefs;
505 }
506
Sunny Goyalb1d7de22019-09-06 10:36:54 -0700507 @Override
508 public void onPluginConnected(OverlayPlugin overlayManager, Context context) {
509 switchOverlay(() -> overlayManager.createOverlayManager(this, this));
510 }
511
512 @Override
513 public void onPluginDisconnected(OverlayPlugin plugin) {
514 switchOverlay(this::getDefaultOverlay);
515 }
516
517 private void switchOverlay(Supplier<LauncherOverlayManager> overlaySupplier) {
518 if (mOverlayManager != null) {
519 mOverlayManager.onActivityDestroyed(this);
520 }
521 mOverlayManager = overlaySupplier.get();
522 if (getRootView().isAttachedToWindow()) {
523 mOverlayManager.onAttachedToWindow();
524 }
525 mDeferOverlayCallbacks = true;
526 checkIfOverlayStillDeferred();
527 }
528
529 @Override
530 protected void dispatchDeviceProfileChanged() {
531 super.dispatchDeviceProfileChanged();
532 mOverlayManager.onDeviceProvideChanged();
533 }
534
Sunny Goyal7779d622015-06-11 16:18:39 -0700535 @Override
Winson Chung8eb49e02018-07-16 13:33:31 -0700536 public void onEnterAnimationComplete() {
537 super.onEnterAnimationComplete();
Sunny Goyalbe8c3402019-05-22 15:17:52 -0700538 mRotationHelper.setCurrentTransitionRequest(REQUEST_NONE);
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700539 AbstractFloatingView.closeOpenViews(this, false, TYPE_ICON_SURFACE);
Winson Chung8eb49e02018-07-16 13:33:31 -0700540 }
541
542 @Override
Sunny Goyalf8d56fc2018-01-31 15:18:11 -0800543 public void onConfigurationChanged(Configuration newConfig) {
544 int diff = newConfig.diff(mOldConfig);
Jon Mirandaaeb4dd02018-07-11 14:16:23 -0700545
Sunny Goyalf8d56fc2018-01-31 15:18:11 -0800546 if ((diff & (CONFIG_ORIENTATION | CONFIG_SCREEN_SIZE)) != 0) {
Sunny Goyal371ea052019-03-06 15:38:32 -0800547 onIdpChanged(mDeviceProfile.inv);
Sunny Goyalf8d56fc2018-01-31 15:18:11 -0800548 }
549
550 mOldConfig.setTo(newConfig);
551 super.onConfigurationChanged(newConfig);
552 }
553
Sunny Goyal605bcf32018-03-02 15:16:12 -0800554 @Override
Hyunyoung Song31971a32019-01-27 12:31:12 -0800555 public void onIdpChanged(int changeFlags, InvariantDeviceProfile idp) {
Sunny Goyal371ea052019-03-06 15:38:32 -0800556 onIdpChanged(idp);
557 }
558
559 private void onIdpChanged(InvariantDeviceProfile idp) {
Sunny Goyal371ea052019-03-06 15:38:32 -0800560
Hyunyoung Song31971a32019-01-27 12:31:12 -0800561 initDeviceProfile(idp);
Sunny Goyal371ea052019-03-06 15:38:32 -0800562 dispatchDeviceProfileChanged();
563 reapplyUi();
564 mDragLayer.recreateControllers();
565
Sunny Goyal76ba0a32019-06-10 11:56:11 -0700566 // Calling onSaveInstanceState ensures that static cache used by listWidgets is
567 // initialized properly.
568 onSaveInstanceState(new Bundle());
Sunny Goyalc4d32012020-04-03 17:10:11 -0700569 mModel.rebindCallbacks();
Hyunyoung Song31971a32019-01-27 12:31:12 -0800570 }
571
Govinda Wassermanc06e1512019-04-09 09:56:53 -0400572 public void onAssistantVisibilityChanged(float visibility) {
573 mCurrentAssistantVisibility = visibility;
574 float alpha = 1f - visibility;
575 LauncherState state = mStateManager.getState();
576 if (state == NORMAL) {
577 mAppsView.getAlphaProperty(APPS_VIEW_ALPHA_CHANNEL_INDEX).setValue(alpha);
Tony Wickhamd844fe72020-08-13 19:33:26 -0700578 } else if (state == OVERVIEW) {
Govinda Wassermanc06e1512019-04-09 09:56:53 -0400579 mAppsView.getAlphaProperty(APPS_VIEW_ALPHA_CHANNEL_INDEX).setValue(alpha);
Sunny Goyal52e25452020-07-20 12:38:01 -0700580 mScrimView.setAlpha(alpha);
Govinda Wassermanc06e1512019-04-09 09:56:53 -0400581 }
582 }
583
Sunny Goyalf8d56fc2018-01-31 15:18:11 -0800584 private void initDeviceProfile(InvariantDeviceProfile idp) {
585 // Load configuration-specific DeviceProfile
Sunny Goyal59d086c2018-05-07 17:31:40 -0700586 mDeviceProfile = idp.getDeviceProfile(this);
Sunny Goyal8c48d8b2019-01-25 15:10:18 -0800587 if (isInMultiWindowMode()) {
Sunny Goyal0addbf02020-04-28 14:17:35 -0700588 mDeviceProfile = mDeviceProfile.getMultiWindowProfile(
589 this, getMultiWindowDisplaySize());
Sunny Goyal59d086c2018-05-07 17:31:40 -0700590 }
Sunny Goyalae6e3182019-04-30 12:04:37 -0700591
Sunny Goyal59d086c2018-05-07 17:31:40 -0700592 onDeviceProfileInitiated();
Sunny Goyalc4d32012020-04-03 17:10:11 -0700593 mModelWriter = mModel.getWriter(getDeviceProfile().isVerticalBarLayout(), true);
Sunny Goyalf8d56fc2018-01-31 15:18:11 -0800594 }
595
Sunny Goyal623eddd2018-03-02 12:24:41 -0800596 public RotationHelper getRotationHelper() {
597 return mRotationHelper;
598 }
599
Tracy Zhou4d7b2442019-12-09 13:42:57 -0800600 public ViewGroupFocusHelper getFocusHandler() {
601 return mFocusHandler;
602 }
603
Sunny Goyal35e7d382020-05-08 13:37:58 -0700604 @Override
605 public StateManager<LauncherState> getStateManager() {
Sunny Goyal3e3f44c2017-10-23 17:14:52 -0700606 return mStateManager;
Sunny Goyalbe93f262017-10-20 17:05:27 -0700607 }
608
Adam Cohen9211d422014-10-07 18:14:53 -0700609 private LauncherCallbacks mLauncherCallbacks;
610
Sunny Goyal32554d12015-12-03 15:31:25 -0800611 /**
612 * Call this after onCreate to set or clear overlay.
613 */
Sunny Goyalb1d7de22019-09-06 10:36:54 -0700614 @Override
Sunny Goyal32554d12015-12-03 15:31:25 -0800615 public void setLauncherOverlay(LauncherOverlay overlay) {
616 if (overlay != null) {
617 overlay.setOverlayCallbacks(new LauncherOverlayCallbacksImpl());
618 }
619 mWorkspace.setLauncherOverlay(overlay);
620 }
621
Sunny Goyalb1d7de22019-09-06 10:36:54 -0700622 @Override
623 public void runOnOverlayHidden(Runnable runnable) {
624 getWorkspace().runOnOverlayHidden(runnable);
625 }
626
Adam Cohen9211d422014-10-07 18:14:53 -0700627 public boolean setLauncherCallbacks(LauncherCallbacks callbacks) {
628 mLauncherCallbacks = callbacks;
629 return true;
Adam Cohenf9426d52012-06-04 17:26:21 -0700630 }
631
Hyunyoung Song3f471442015-04-08 19:01:34 -0700632 public boolean isDraggingEnabled() {
Winson Chung36a62fe2012-05-06 18:04:42 -0700633 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
634 // that is subsequently removed from the workspace in startBinding().
Sunny Goyal639e9062015-08-19 19:17:06 -0700635 return !isWorkspaceLoading();
Winson Chung36a62fe2012-05-06 18:04:42 -0700636 }
637
Tony Wickham010d2552017-01-20 08:15:28 -0800638 public PopupDataProvider getPopupDataProvider() {
639 return mPopupDataProvider;
640 }
641
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700642 @Override
Tony Wickhamf34bee82018-12-03 18:11:39 -0800643 public DotInfo getDotInfoForItem(ItemInfo info) {
644 return mPopupDataProvider.getDotInfoForItem(info);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700645 }
646
647 @Override
648 public void invalidateParent(ItemInfo info) {
Jon Mirandae6f3fa42019-03-04 09:14:40 -0800649 if (info.container >= 0) {
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700650 View folderIcon = getWorkspace().getHomescreenIconByItemId(info.container);
Jon Mirandae6f3fa42019-03-04 09:14:40 -0800651 if (folderIcon instanceof FolderIcon && folderIcon.getTag() instanceof FolderInfo) {
Sunny Goyal11a50742019-08-07 09:24:26 -0700652 if (new FolderGridOrganizer(getDeviceProfile().inv)
653 .setFolderInfo((FolderInfo) folderIcon.getTag())
654 .isItemInPreview(info.rank)) {
Jon Mirandae6f3fa42019-03-04 09:14:40 -0800655 folderIcon.invalidate();
656 }
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700657 }
658 }
659 }
660
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000661 /**
Winson Chung557d6ed2011-07-08 15:34:52 -0700662 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
663 * a configuration step, this allows the proper animations to run after other transitions.
664 */
Sunny Goyalefb7e842018-10-04 15:11:00 -0700665 private int completeAdd(
Sunny Goyal2100c782016-08-22 16:00:03 -0700666 int requestCode, Intent intent, int appWidgetId, PendingRequestArgs info) {
Sunny Goyalefb7e842018-10-04 15:11:00 -0700667 int screenId = info.screenId;
Sunny Goyal2100c782016-08-22 16:00:03 -0700668 if (info.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
Adam Cohen83079e42014-09-19 17:43:08 -0700669 // When the screen id represents an actual screen (as opposed to a rank) we make sure
670 // that the drop page actually exists.
Sunny Goyal2100c782016-08-22 16:00:03 -0700671 screenId = ensurePendingDropLayoutExists(info.screenId);
Adam Cohen83079e42014-09-19 17:43:08 -0700672 }
Adam Cohendb364c32014-05-20 14:23:40 -0700673
Sunny Goyal2100c782016-08-22 16:00:03 -0700674 switch (requestCode) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800675 case REQUEST_CREATE_SHORTCUT:
Sunny Goyalfb5096d2016-09-08 14:32:06 -0700676 completeAddShortcut(intent, info.container, screenId, info.cellX, info.cellY, info);
Pinyao Tingc9074272019-11-11 11:51:44 -0800677 announceForAccessibility(R.string.item_added_to_workspace);
Winson Chungb8472bb2011-08-05 13:49:21 -0700678 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800679 case REQUEST_CREATE_APPWIDGET:
Sunny Goyal2100c782016-08-22 16:00:03 -0700680 completeAddAppWidget(appWidgetId, info, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700681 break;
Sunny Goyalff572272014-07-23 13:58:07 -0700682 case REQUEST_RECONFIGURE_APPWIDGET:
Sunny Goyal2100c782016-08-22 16:00:03 -0700683 completeRestoreAppWidget(appWidgetId, LauncherAppWidgetInfo.RESTORE_COMPLETED);
Sunny Goyalff572272014-07-23 13:58:07 -0700684 break;
Sunny Goyald478c832016-04-01 12:04:16 -0700685 case REQUEST_BIND_PENDING_APPWIDGET: {
Sunny Goyal2100c782016-08-22 16:00:03 -0700686 int widgetId = appWidgetId;
687 LauncherAppWidgetInfo widgetInfo =
Sunny Goyald478c832016-04-01 12:04:16 -0700688 completeRestoreAppWidget(widgetId, LauncherAppWidgetInfo.FLAG_UI_NOT_READY);
Sunny Goyal2100c782016-08-22 16:00:03 -0700689 if (widgetInfo != null) {
Sunny Goyald478c832016-04-01 12:04:16 -0700690 // Since the view was just bound, also launch the configure activity if needed
691 LauncherAppWidgetProviderInfo provider = mAppWidgetManager
692 .getLauncherAppWidgetInfo(widgetId);
Sunny Goyal04a324a2017-01-20 21:08:59 -0800693 if (provider != null) {
694 new WidgetAddFlowHandler(provider)
Samuel Fufaca37b8a2019-08-19 17:04:36 -0700695 .startConfigActivity(this, widgetInfo,
696 REQUEST_RECONFIGURE_APPWIDGET);
Sunny Goyald478c832016-04-01 12:04:16 -0700697 }
698 }
699 break;
700 }
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800701 }
Adam Cohendb364c32014-05-20 14:23:40 -0700702 return screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800703 }
704
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800705 private void handleActivityResult(
Michael Jurka8b805b12012-04-18 14:23:14 -0700706 final int requestCode, final int resultCode, final Intent data) {
Sunny Goyal2100c782016-08-22 16:00:03 -0700707 if (isWorkspaceLoading()) {
708 // process the result once the workspace has loaded.
709 mPendingActivityResult = new ActivityResultInfo(requestCode, resultCode, data);
710 return;
711 }
712 mPendingActivityResult = null;
713
Winson Chunge341d302013-08-16 14:31:00 -0700714 // Reset the startActivity waiting flag
Sunny Goyal2100c782016-08-22 16:00:03 -0700715 final PendingRequestArgs requestArgs = mPendingRequestArgs;
716 setWaitingForResult(null);
717 if (requestArgs == null) {
718 return;
719 }
720
721 final int pendingAddWidgetId = requestArgs.getWidgetId();
Winson Chunge341d302013-08-16 14:31:00 -0700722
Adam Cohenad4e15c2013-10-17 16:21:35 -0700723 Runnable exitSpringLoaded = new Runnable() {
724 @Override
725 public void run() {
Sunny Goyal3e3f44c2017-10-23 17:14:52 -0700726 mStateManager.goToState(NORMAL, SPRING_LOADED_EXIT_DELAY);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700727 }
728 };
729
Michael Jurka8b805b12012-04-18 14:23:14 -0700730 if (requestCode == REQUEST_BIND_APPWIDGET) {
Winsona1f79d32015-08-05 14:00:45 -0700731 // This is called only if the user did not previously have permissions to bind widgets
Adam Cohenad4e15c2013-10-17 16:21:35 -0700732 final int appWidgetId = data != null ?
Michael Jurka8b805b12012-04-18 14:23:14 -0700733 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
734 if (resultCode == RESULT_CANCELED) {
Sunny Goyal2100c782016-08-22 16:00:03 -0700735 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId, requestArgs);
Sunny Goyal6e379fc2020-03-19 16:08:14 -0700736 mWorkspace.removeExtraEmptyScreenDelayed(
737 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false, exitSpringLoaded);
Michael Jurka8b805b12012-04-18 14:23:14 -0700738 } else if (resultCode == RESULT_OK) {
Sunny Goyal2100c782016-08-22 16:00:03 -0700739 addAppWidgetImpl(
740 appWidgetId, requestArgs, null,
Sunny Goyal04a324a2017-01-20 21:08:59 -0800741 requestArgs.getWidgetHandler(),
Sunny Goyal2100c782016-08-22 16:00:03 -0700742 ON_ACTIVITY_RESULT_ANIMATION_DELAY);
Michael Jurka8b805b12012-04-18 14:23:14 -0700743 }
744 return;
745 }
Michael Jurka336fd4f2013-09-12 00:05:02 +0200746
Adam Cohened66b2b2012-01-23 17:28:51 -0800747 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
Sunny Goyal5c97f512015-05-19 16:03:28 -0700748 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700749
Adam Cohened66b2b2012-01-23 17:28:51 -0800750 // We have special handling for widgets
751 if (isWidgetDrop) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800752 final int appWidgetId;
753 int widgetId = data != null ? data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1)
754 : -1;
755 if (widgetId < 0) {
756 appWidgetId = pendingAddWidgetId;
757 } else {
758 appWidgetId = widgetId;
759 }
760
Adam Cohenad4e15c2013-10-17 16:21:35 -0700761 final int result;
Adam Cohenf0129b12013-11-04 17:57:36 -0800762 if (appWidgetId < 0 || resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700763 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not " +
764 "returned from the widget configuration activity.");
Adam Cohenad4e15c2013-10-17 16:21:35 -0700765 result = RESULT_CANCELED;
Sunny Goyal2100c782016-08-22 16:00:03 -0700766 completeTwoStageWidgetDrop(result, appWidgetId, requestArgs);
Sunny Goyal6e379fc2020-03-19 16:08:14 -0700767 mWorkspace.removeExtraEmptyScreenDelayed(
768 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false,
769 () -> getStateManager().goToState(NORMAL));
Sunny Goyal2100c782016-08-22 16:00:03 -0700770 } else {
771 if (requestArgs.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
772 // When the screen id represents an actual screen (as opposed to a rank)
773 // we make sure that the drop page actually exists.
774 requestArgs.screenId =
775 ensurePendingDropLayoutExists(requestArgs.screenId);
Adam Cohendb364c32014-05-20 14:23:40 -0700776 }
Sunny Goyal2100c782016-08-22 16:00:03 -0700777 final CellLayout dropLayout =
778 mWorkspace.getScreenWithId(requestArgs.screenId);
779
780 dropLayout.setDropPending(true);
781 final Runnable onComplete = new Runnable() {
782 @Override
783 public void run() {
784 completeTwoStageWidgetDrop(resultCode, appWidgetId, requestArgs);
785 dropLayout.setDropPending(false);
786 }
787 };
Sunny Goyal6e379fc2020-03-19 16:08:14 -0700788 mWorkspace.removeExtraEmptyScreenDelayed(
789 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false, onComplete);
Winson Chung5aaab772012-04-27 15:24:02 -0700790 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800791 return;
792 }
793
Sunny Goyald478c832016-04-01 12:04:16 -0700794 if (requestCode == REQUEST_RECONFIGURE_APPWIDGET
795 || requestCode == REQUEST_BIND_PENDING_APPWIDGET) {
Sunny Goyalff572272014-07-23 13:58:07 -0700796 if (resultCode == RESULT_OK) {
797 // Update the widget view.
Sunny Goyal2100c782016-08-22 16:00:03 -0700798 completeAdd(requestCode, data, pendingAddWidgetId, requestArgs);
Sunny Goyalff572272014-07-23 13:58:07 -0700799 }
800 // Leave the widget in the pending state if the user canceled the configure.
801 return;
802 }
803
Sunny Goyalaad90582015-07-09 14:22:50 -0700804 if (requestCode == REQUEST_CREATE_SHORTCUT) {
805 // Handle custom shortcuts created using ACTION_CREATE_SHORTCUT.
Sunny Goyal2100c782016-08-22 16:00:03 -0700806 if (resultCode == RESULT_OK && requestArgs.container != ItemInfo.NO_ID) {
807 completeAdd(requestCode, data, -1, requestArgs);
Sunny Goyal6e379fc2020-03-19 16:08:14 -0700808 mWorkspace.removeExtraEmptyScreenDelayed(
809 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false, exitSpringLoaded);
Sunny Goyal2100c782016-08-22 16:00:03 -0700810
Sunny Goyalaad90582015-07-09 14:22:50 -0700811 } else if (resultCode == RESULT_CANCELED) {
Sunny Goyal6e379fc2020-03-19 16:08:14 -0700812 mWorkspace.removeExtraEmptyScreenDelayed(
813 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false, exitSpringLoaded);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800814 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800815 }
Hongming Jind91cb6e2020-01-27 16:23:03 -0800816
Adam Cohened66b2b2012-01-23 17:28:51 -0800817 mDragLayer.clearAnimatedView();
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800818 }
819
820 @Override
Sunny Goyal64a75aa2017-07-03 13:50:52 -0700821 public void onActivityResult(
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800822 final int requestCode, final int resultCode, final Intent data) {
Sunny Goyaldedda052019-05-14 15:23:48 -0700823 mPendingActivityRequestCode = -1;
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800824 handleActivityResult(requestCode, resultCode, data);
Adam Cohened66b2b2012-01-23 17:28:51 -0800825 }
826
Sunny Goyal7ce471b2017-08-02 03:37:39 -0700827 @Override
Sunny Goyaldd2e6df2015-07-07 10:57:57 -0700828 public void onRequestPermissionsResult(int requestCode, String[] permissions,
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600829 int[] grantResults) {
Sunny Goyal2100c782016-08-22 16:00:03 -0700830 PendingRequestArgs pendingArgs = mPendingRequestArgs;
831 if (requestCode == REQUEST_PERMISSION_CALL_PHONE && pendingArgs != null
832 && pendingArgs.getRequestCode() == REQUEST_PERMISSION_CALL_PHONE) {
833 setWaitingForResult(null);
834
Sunny Goyal28c6b962015-10-12 11:42:05 -0700835 View v = null;
Sunny Goyal2100c782016-08-22 16:00:03 -0700836 CellLayout layout = getCellLayout(pendingArgs.container, pendingArgs.screenId);
Sunny Goyal28c6b962015-10-12 11:42:05 -0700837 if (layout != null) {
Sunny Goyal2100c782016-08-22 16:00:03 -0700838 v = layout.getChildAt(pendingArgs.cellX, pendingArgs.cellY);
Sunny Goyal28c6b962015-10-12 11:42:05 -0700839 }
Sunny Goyal2100c782016-08-22 16:00:03 -0700840 Intent intent = pendingArgs.getPendingIntent();
841
Sunny Goyal28c6b962015-10-12 11:42:05 -0700842 if (grantResults.length > 0
843 && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
Sunny Goyal852537f2020-07-15 17:02:16 -0700844 startActivitySafely(v, intent, null);
Sunny Goyal28c6b962015-10-12 11:42:05 -0700845 } else {
846 // TODO: Show a snack bar with link to settings
847 Toast.makeText(this, getString(R.string.msg_no_phone_permission,
Sunny Goyal112ce422016-08-22 16:45:29 -0700848 getString(R.string.derived_app_name)), Toast.LENGTH_SHORT).show();
Sunny Goyal28c6b962015-10-12 11:42:05 -0700849 }
850 }
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600851 }
852
Adam Cohendb364c32014-05-20 14:23:40 -0700853 /**
854 * Check to see if a given screen id exists. If not, create it at the end, return the new id.
855 *
856 * @param screenId the screen id to check
857 * @return the new screen, or screenId if it exists
858 */
Sunny Goyalefb7e842018-10-04 15:11:00 -0700859 private int ensurePendingDropLayoutExists(int screenId) {
Sunny Goyal32554d12015-12-03 15:31:25 -0800860 CellLayout dropLayout = mWorkspace.getScreenWithId(screenId);
Adam Cohendb364c32014-05-20 14:23:40 -0700861 if (dropLayout == null) {
862 // it's possible that the add screen was removed because it was
863 // empty and a re-bind occurred
864 mWorkspace.addExtraEmptyScreen();
865 return mWorkspace.commitExtraEmptyScreen();
866 } else {
867 return screenId;
868 }
869 }
870
Samuel Fufaca37b8a2019-08-19 17:04:36 -0700871 @Thunk
872 void completeTwoStageWidgetDrop(
Sunny Goyal2100c782016-08-22 16:00:03 -0700873 final int resultCode, final int appWidgetId, final PendingRequestArgs requestArgs) {
874 CellLayout cellLayout = mWorkspace.getScreenWithId(requestArgs.screenId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800875 Runnable onCompleteRunnable = null;
876 int animationType = 0;
877
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700878 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800879 if (resultCode == RESULT_OK) {
880 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
881 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Sunny Goyal04a324a2017-01-20 21:08:59 -0800882 requestArgs.getWidgetHandler().getProviderInfo(this));
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700883 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800884 onCompleteRunnable = new Runnable() {
885 @Override
886 public void run() {
Sunny Goyal2100c782016-08-22 16:00:03 -0700887 completeAddAppWidget(appWidgetId, requestArgs, layout, null);
Sunny Goyal3e3f44c2017-10-23 17:14:52 -0700888 mStateManager.goToState(NORMAL, SPRING_LOADED_EXIT_DELAY);
Adam Cohened66b2b2012-01-23 17:28:51 -0800889 }
890 };
891 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800892 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800893 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
Adam Cohened66b2b2012-01-23 17:28:51 -0800894 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700895 if (mDragLayer.getAnimatedView() != null) {
Sunny Goyal2100c782016-08-22 16:00:03 -0700896 mWorkspace.animateWidgetDrop(requestArgs, cellLayout,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700897 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
898 animationType, boundWidget, true);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700899 } else if (onCompleteRunnable != null) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700900 // The animated view may be null in the case of a rotation during widget configuration
901 onCompleteRunnable.run();
902 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800903 }
904
905 @Override
Michael Jurkacd496d72013-04-11 11:32:45 -0700906 protected void onStop() {
Samuel Fufa2fa2e0a2020-09-11 13:34:25 -0700907 mLifecycleRegistry.setCurrentState(Lifecycle.State.CREATED);
Michael Jurkacd496d72013-04-11 11:32:45 -0700908 super.onStop();
Sunny Goyalb1d7de22019-09-06 10:36:54 -0700909 if (mDeferOverlayCallbacks) {
910 checkIfOverlayStillDeferred();
911 } else {
912 mOverlayManager.onActivityStopped(this);
Adam Cohen9211d422014-10-07 18:14:53 -0700913 }
Sunny Goyalb1d7de22019-09-06 10:36:54 -0700914
Hyunyoung Song95786e02020-09-15 00:34:10 -0700915 logStopAndResume(false /* isResume */);
Hyunyoung Songbd6fba92018-05-16 15:54:31 -0700916 mAppWidgetHost.setListenIfResumed(false);
Tony Wickham010d2552017-01-20 08:15:28 -0800917 NotificationListener.removeNotificationsChangedListener();
Michael Jurkacd496d72013-04-11 11:32:45 -0700918 }
919
920 @Override
921 protected void onStart() {
Winson Chung5cc62c72019-10-16 11:32:41 -0700922 Object traceToken = TraceHelper.INSTANCE.beginSection(ON_START_EVT,
923 TraceHelper.FLAG_UI_EVENT);
Michael Jurkacd496d72013-04-11 11:32:45 -0700924 super.onStart();
Sunny Goyalb1d7de22019-09-06 10:36:54 -0700925 if (!mDeferOverlayCallbacks) {
926 mOverlayManager.onActivityStarted(this);
Adam Cohen9211d422014-10-07 18:14:53 -0700927 }
Sunny Goyalb1d7de22019-09-06 10:36:54 -0700928
Sunny Goyal67419a12017-11-14 16:55:22 -0800929 mAppWidgetHost.setListenIfResumed(true);
Winson Chung5cc62c72019-10-16 11:32:41 -0700930 TraceHelper.INSTANCE.endSection(traceToken);
Samuel Fufa2fa2e0a2020-09-11 13:34:25 -0700931 mLifecycleRegistry.setCurrentState(Lifecycle.State.STARTED);
Michael Jurkacd496d72013-04-11 11:32:45 -0700932 }
933
Sunny Goyal35e7d382020-05-08 13:37:58 -0700934 @Override
935 @CallSuper
936 protected void onDeferredResumed() {
Hyunyoung Song95786e02020-09-15 00:34:10 -0700937 logStopAndResume(true /* isResume */);
Sunny Goyala002c6c2019-02-12 16:20:10 -0800938
Sunny Goyal35e7d382020-05-08 13:37:58 -0700939 // Process any items that were added while Launcher was away.
Sunny Goyal60e68c92020-08-12 13:59:27 -0700940 ItemInstallQueue.INSTANCE.get(this)
941 .resumeModelPush(FLAG_ACTIVITY_PAUSED);
Sunny Goyale9c6f4c2019-05-30 11:35:25 -0700942
Sunny Goyal35e7d382020-05-08 13:37:58 -0700943 // Refresh shortcuts if the permission changed.
Sunny Goyal8b74cc72020-07-27 17:50:33 -0700944 mModel.validateModelDataOnResume();
Sunny Goyale9c6f4c2019-05-30 11:35:25 -0700945
Sunny Goyal35e7d382020-05-08 13:37:58 -0700946 // Set the notification listener and fetch updated notifications when we resume
947 NotificationListener.setNotificationsChangedListener(mPopupDataProvider);
Winson Chung87583112019-06-10 14:20:58 -0700948
Sunny Goyal35e7d382020-05-08 13:37:58 -0700949 DiscoveryBounce.showForHomeIfNeeded(this);
Sunny Goyaldedda052019-05-14 15:23:48 -0700950 }
951
Pinyao Ting3bf889a2020-06-30 16:43:51 -0700952 protected void handlePendingActivityRequest() { }
Sunny Goyal210e1742019-10-17 12:05:38 -0700953
Hyunyoung Song95786e02020-09-15 00:34:10 -0700954 private void logStopAndResume(boolean isResume) {
Hyunyoung Song77e29772020-08-25 00:53:48 -0700955 if (mPendingExecutor != null) return;
Hyunyoung Song801f81f2020-06-19 02:58:53 -0700956 int pageIndex = mWorkspace.isOverlayShown() ? -1 : mWorkspace.getCurrentPage();
Hyunyoung Song95786e02020-09-15 00:34:10 -0700957 int statsLogOrdinal = mStateManager.getState().statsLogOrdinal;
Hyunyoung Song801f81f2020-06-19 02:58:53 -0700958
959 StatsLogManager.EventEnum event;
960 StatsLogManager.StatsLogger logger = getStatsLogManager().logger();
Hyunyoung Song95786e02020-09-15 00:34:10 -0700961 if (isResume) {
Hyunyoung Song801f81f2020-06-19 02:58:53 -0700962 logger.withSrcState(LAUNCHER_STATE_BACKGROUND)
Hyunyoung Song95786e02020-09-15 00:34:10 -0700963 .withDstState(mStateManager.getState().statsLogOrdinal);
Hyunyoung Song801f81f2020-06-19 02:58:53 -0700964 event = LAUNCHER_ONRESUME;
965 } else { /* command == Action.Command.STOP */
Hyunyoung Song95786e02020-09-15 00:34:10 -0700966 logger.withSrcState(mStateManager.getState().statsLogOrdinal)
Hyunyoung Song801f81f2020-06-19 02:58:53 -0700967 .withDstState(LAUNCHER_STATE_BACKGROUND);
968 event = LAUNCHER_ONSTOP;
969 }
970
Hyunyoung Song95786e02020-09-15 00:34:10 -0700971 if (statsLogOrdinal == LAUNCHER_STATE_HOME && mWorkspace != null) {
Hyunyoung Song801f81f2020-06-19 02:58:53 -0700972 logger.withContainerInfo(LauncherAtom.ContainerInfo.newBuilder()
973 .setWorkspace(
974 LauncherAtom.WorkspaceContainer.newBuilder()
975 .setPageIndex(pageIndex)).build());
Becky Qiubfc2da12019-08-01 11:09:38 -0700976 }
Hyunyoung Song801f81f2020-06-19 02:58:53 -0700977 logger.log(event);
Sunny Goyalb1d7de22019-09-06 10:36:54 -0700978 }
Becky Qiubfc2da12019-08-01 11:09:38 -0700979
Sunny Goyalb1d7de22019-09-06 10:36:54 -0700980 private void scheduleDeferredCheck() {
981 mHandler.removeCallbacks(mDeferredOverlayCallbacks);
982 postAsyncCallback(mHandler, mDeferredOverlayCallbacks);
983 }
984
985 private void checkIfOverlayStillDeferred() {
986 if (!mDeferOverlayCallbacks) {
987 return;
988 }
Sunny Goyal8f965462020-04-23 19:00:36 -0700989 if (isStarted() && (!hasBeenResumed()
990 || mStateManager.getState().hasFlag(FLAG_NON_INTERACTIVE))) {
Sunny Goyalb1d7de22019-09-06 10:36:54 -0700991 return;
992 }
993 mDeferOverlayCallbacks = false;
994
995 // Move the client to the correct state. Calling the same method twice is no-op.
996 if (isStarted()) {
997 mOverlayManager.onActivityStarted(this);
998 }
999 if (hasBeenResumed()) {
1000 mOverlayManager.onActivityResumed(this);
1001 } else {
1002 mOverlayManager.onActivityPaused(this);
1003 }
1004 if (!isStarted()) {
1005 mOverlayManager.onActivityStopped(this);
1006 }
1007 }
1008
1009 public void deferOverlayCallbacksUntilNextResumeOrStop() {
1010 mDeferOverlayCallbacks = true;
1011 }
1012
1013 public LauncherOverlayManager getOverlayManager() {
1014 return mOverlayManager;
Becky Qiubfc2da12019-08-01 11:09:38 -07001015 }
1016
Sunny Goyal35e7d382020-05-08 13:37:58 -07001017 @Override
Winson Chungef528762019-09-06 12:05:52 -07001018 public void onStateSetStart(LauncherState state) {
Sunny Goyal35e7d382020-05-08 13:37:58 -07001019 super.onStateSetStart(state);
Sunny Goyalb1d7de22019-09-06 10:36:54 -07001020 if (mDeferOverlayCallbacks) {
1021 scheduleDeferredCheck();
Sunny Goyale9c6f4c2019-05-30 11:35:25 -07001022 }
Sunny Goyal210e1742019-10-17 12:05:38 -07001023 addActivityFlags(ACTIVITY_STATE_TRANSITION_ACTIVE);
Sunny Goyal8f965462020-04-23 19:00:36 -07001024
1025 if (state.hasFlag(FLAG_CLOSE_POPUPS)) {
1026 AbstractFloatingView.closeAllOpenViews(this, !state.hasFlag(FLAG_NON_INTERACTIVE));
1027 }
1028
1029 if (state == SPRING_LOADED) {
1030 // Prevent any Un/InstallShortcutReceivers from updating the db while we are
1031 // not on homescreen
Sunny Goyal60e68c92020-08-12 13:59:27 -07001032 ItemInstallQueue.INSTANCE.get(this).pauseModelPush(FLAG_DRAG_AND_DROP);
Sunny Goyal8f965462020-04-23 19:00:36 -07001033 getRotationHelper().setCurrentStateRequest(REQUEST_LOCK);
1034
1035 mWorkspace.showPageIndicatorAtCurrentScroll();
1036 mWorkspace.setClipChildren(false);
1037 }
1038 // When multiple pages are visible, show persistent page indicator
1039 mWorkspace.getPageIndicator().setShouldAutoHide(!state.hasFlag(FLAG_MULTI_PAGE));
Sunny Goyaldedda052019-05-14 15:23:48 -07001040 }
1041
Sunny Goyal35e7d382020-05-08 13:37:58 -07001042 @Override
Winson Chungef528762019-09-06 12:05:52 -07001043 public void onStateSetEnd(LauncherState state) {
Sunny Goyal35e7d382020-05-08 13:37:58 -07001044 super.onStateSetStart(state);
Winson Chungef528762019-09-06 12:05:52 -07001045 getAppWidgetHost().setResumed(state == LauncherState.NORMAL);
Sunny Goyal8f965462020-04-23 19:00:36 -07001046 getWorkspace().setClipChildren(!state.hasFlag(FLAG_MULTI_PAGE));
1047
Winson Chungef528762019-09-06 12:05:52 -07001048 finishAutoCancelActionMode();
Sunny Goyal210e1742019-10-17 12:05:38 -07001049 removeActivityFlags(ACTIVITY_STATE_TRANSITION_ACTIVE);
Sunny Goyal8f965462020-04-23 19:00:36 -07001050
1051 // dispatch window state changed
1052 getWindow().getDecorView().sendAccessibilityEvent(TYPE_WINDOW_STATE_CHANGED);
1053 AccessibilityManagerCompat.sendStateEventToTest(this, state.ordinal);
1054
1055 if (state == NORMAL) {
1056 // Re-enable any Un/InstallShortcutReceiver and now process any queued items
Sunny Goyal60e68c92020-08-12 13:59:27 -07001057 ItemInstallQueue.INSTANCE.get(this)
1058 .resumeModelPush(FLAG_DRAG_AND_DROP);
Sunny Goyal8f965462020-04-23 19:00:36 -07001059
1060 // Clear any rotation locks when going to normal state
1061 getRotationHelper().setCurrentStateRequest(REQUEST_NONE);
1062 }
Winson Chungef528762019-09-06 12:05:52 -07001063 }
1064
Michael Jurkacd496d72013-04-11 11:32:45 -07001065 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001066 protected void onResume() {
Winson Chung5cc62c72019-10-16 11:32:41 -07001067 Object traceToken = TraceHelper.INSTANCE.beginSection(ON_RESUME_EVT,
1068 TraceHelper.FLAG_UI_EVENT);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001069 super.onResume();
Sunny Goyalfca6bc92017-09-28 16:28:34 -07001070
Winson Chung940b0ac2019-07-09 11:33:50 -07001071 if (!mOnResumeCallbacks.isEmpty()) {
1072 final ArrayList<OnResumeCallback> resumeCallbacks = new ArrayList<>(mOnResumeCallbacks);
1073 mOnResumeCallbacks.clear();
1074 for (int i = resumeCallbacks.size() - 1; i >= 0; i--) {
1075 resumeCallbacks.get(i).onLauncherResume();
1076 }
1077 resumeCallbacks.clear();
Winson Chung0b70cd42019-06-17 22:34:33 -07001078 }
Sunny Goyal95f3d6b2016-08-10 16:09:29 -07001079
Sunny Goyalb1d7de22019-09-06 10:36:54 -07001080 if (mDeferOverlayCallbacks) {
1081 scheduleDeferredCheck();
1082 } else {
1083 mOverlayManager.onActivityResumed(this);
Adam Cohen9211d422014-10-07 18:14:53 -07001084 }
Mario Bertschler0fc6f682017-02-17 12:16:13 -08001085
Winson Chung5cc62c72019-10-16 11:32:41 -07001086 TraceHelper.INSTANCE.endSection(traceToken);
Samuel Fufa2fa2e0a2020-09-11 13:34:25 -07001087 mLifecycleRegistry.setCurrentState(Lifecycle.State.RESUMED);
Adam Cohen06dff352012-06-01 17:17:08 -07001088 }
1089
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001090 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001091 protected void onPause() {
Winson Chung997a9232013-07-24 15:33:46 -07001092 // Ensure that items added to Launcher are queued until Launcher returns
Sunny Goyal60e68c92020-08-12 13:59:27 -07001093 ItemInstallQueue.INSTANCE.get(this).pauseModelPush(FLAG_ACTIVITY_PAUSED);
Winson Chung997a9232013-07-24 15:33:46 -07001094
Samuel Fufa2fa2e0a2020-09-11 13:34:25 -07001095 mLifecycleRegistry.setCurrentState(Lifecycle.State.STARTED);
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001096 super.onPause();
Joe Onorato24b6fd82009-11-12 13:47:09 -08001097 mDragController.cancelDrag();
Sunny Goyal9b180102020-03-11 10:02:29 -07001098 mLastTouchUpTime = -1;
Hyunyoung Song497708c2019-05-01 16:16:53 -07001099 mDropTargetBar.animateToVisibility(false);
Sunny Goyalb1d7de22019-09-06 10:36:54 -07001100
1101 if (!mDeferOverlayCallbacks) {
1102 mOverlayManager.onActivityPaused(this);
Adam Cohenbffe7452013-07-22 18:21:45 -07001103 }
Adam Cohenbffe7452013-07-22 18:21:45 -07001104 }
1105
Adam Cohenc2d6e892014-10-16 09:49:24 -07001106 class LauncherOverlayCallbacksImpl implements LauncherOverlayCallbacks {
1107
Sunny Goyalc86df472016-02-25 09:19:38 -08001108 public void onScrollChanged(float progress) {
1109 if (mWorkspace != null) {
1110 mWorkspace.onOverlayScrollChanged(progress);
1111 }
1112 }
Adam Cohenc2d6e892014-10-16 09:49:24 -07001113 }
1114
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001115 /**
1116 * Restores the previous state, if it exists.
1117 *
1118 * @param savedState The previous state.
1119 */
1120 private void restoreState(Bundle savedState) {
1121 if (savedState == null) {
1122 return;
1123 }
1124
Sunny Goyal3e3f44c2017-10-23 17:14:52 -07001125 int stateOrdinal = savedState.getInt(RUNTIME_STATE, NORMAL.ordinal);
Sunny Goyalf9403d92017-10-18 10:55:56 -07001126 LauncherState[] stateValues = LauncherState.values();
1127 LauncherState state = stateValues[stateOrdinal];
Sunny Goyal8f965462020-04-23 19:00:36 -07001128 if (!state.shouldDisableRestore()) {
Sunny Goyal3e3f44c2017-10-23 17:14:52 -07001129 mStateManager.goToState(state, false /* animated */);
Joe Onorato3a8820b2009-11-10 15:06:42 -08001130 }
1131
Samuel Fufaca37b8a2019-08-19 17:04:36 -07001132 PendingRequestArgs requestArgs = savedState.getParcelable(
1133 RUNTIME_STATE_PENDING_REQUEST_ARGS);
Sunny Goyal2100c782016-08-22 16:00:03 -07001134 if (requestArgs != null) {
1135 setWaitingForResult(requestArgs);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001136 }
Sunny Goyaldedda052019-05-14 15:23:48 -07001137 mPendingActivityRequestCode = savedState.getInt(RUNTIME_STATE_PENDING_REQUEST_CODE);
Sunny Goyal2100c782016-08-22 16:00:03 -07001138
1139 mPendingActivityResult = savedState.getParcelable(RUNTIME_STATE_PENDING_ACTIVITY_RESULT);
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -07001140
1141 SparseArray<Parcelable> widgetsState =
1142 savedState.getSparseParcelableArray(RUNTIME_STATE_WIDGET_PANEL);
1143 if (widgetsState != null) {
1144 WidgetsFullSheet.show(this, false).restoreHierarchyState(widgetsState);
1145 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001146 }
1147
1148 /**
1149 * Finds all the views we need and configure them properly.
1150 */
Tony Wickham04fca162020-02-05 15:06:52 -08001151 protected void setupViews() {
Sunny Goyalcc96aa12018-01-11 09:56:07 -08001152 mDragLayer = findViewById(R.id.drag_layer);
Sunny Goyal3333b0c2016-05-09 20:43:21 -07001153 mFocusHandler = mDragLayer.getFocusIndicatorHelper();
Sunny Goyal966d9012017-06-06 16:43:59 -07001154 mWorkspace = mDragLayer.findViewById(R.id.workspace);
Sunny Goyald0a6ae72016-06-16 12:29:03 -07001155 mWorkspace.initParentViews(mDragLayer);
Sreyas321bfae2020-02-21 17:53:02 -08001156 mOverviewPanel = findViewById(R.id.overview_panel);
Sunny Goyal7c7be8c2018-03-07 19:58:07 -08001157 mHotseat = findViewById(R.id.hotseat);
Adam Cohenb66675a2020-05-15 16:16:17 -07001158 mHotseat.setWorkspace(mWorkspace);
Craig Mautner360310b2012-10-26 15:13:08 -07001159
Winson Chung4c98d922011-05-31 16:50:48 -07001160 // Setup the drag layer
Sunny Goyal5d1873a2018-05-08 11:10:44 -07001161 mDragLayer.setup(mDragController, mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001162
Hyunyoung Song645764e2016-06-06 14:19:02 -07001163 mWorkspace.setup(mDragController);
Winsonc7d2e832016-07-28 12:24:55 -07001164 // Until the workspace is bound, ensure that we keep the wallpaper offset locked to the
1165 // default state, otherwise we will update to the wrong offsets in RTL
1166 mWorkspace.lockWallpaperToDefaultPage();
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07001167 mWorkspace.bindAndInitFirstWorkspaceScreen(null /* recycled qsb */);
Hyunyoung Song645764e2016-06-06 14:19:02 -07001168 mDragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001169
Tony Wickham34d2c912015-09-11 09:27:58 -07001170 // Get the search/delete/uninstall bar
Rajeev Kumar43c0f582017-06-23 15:34:55 -07001171 mDropTargetBar = mDragLayer.findViewById(R.id.drop_target_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001172
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -07001173 // Setup Apps
1174 mAppsView = findViewById(R.id.apps_view);
Craig Mautner360310b2012-10-26 15:13:08 -07001175
Govinda Wassermanc06e1512019-04-09 09:56:53 -04001176 // Setup Scrim
1177 mScrimView = findViewById(R.id.scrim_view);
1178
Winson Chung3d503fb2011-07-13 17:25:49 -07001179 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Sunny Goyal47328fd2016-05-25 18:56:41 -07001180 mDropTargetBar.setup(mDragController);
Daniel Sandler924b9932013-06-12 00:38:25 -04001181
Tony Wickham490a8ab2020-04-01 17:03:58 -07001182 mAllAppsController.setupViews(mAppsView, mScrimView);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001183 }
1184
1185 /**
1186 * Creates a view representing a shortcut.
1187 *
1188 * @param info The data structure describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001189 */
Sunny Goyal95899162019-03-27 16:03:06 -07001190 View createShortcut(WorkspaceItemInfo info) {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001191 return createShortcut((ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001192 }
1193
1194 /**
1195 * Creates a view representing a shortcut inflated from the specified resource.
1196 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001197 * @param parent The group the shortcut belongs to.
Samuel Fufaca37b8a2019-08-19 17:04:36 -07001198 * @param info The data structure describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001199 * @return A View inflated from layoutResId.
1200 */
Sunny Goyal95899162019-03-27 16:03:06 -07001201 public View createShortcut(ViewGroup parent, WorkspaceItemInfo info) {
Sunny Goyal9b29ca52017-02-17 10:39:44 -08001202 BubbleTextView favorite = (BubbleTextView) LayoutInflater.from(parent.getContext())
1203 .inflate(R.layout.app_icon, parent, false);
Sunny Goyal95899162019-03-27 16:03:06 -07001204 favorite.applyFromWorkspaceItem(info);
Sunny Goyal8a2a63b2018-03-06 22:15:18 -08001205 favorite.setOnClickListener(ItemClickHandler.INSTANCE);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001206 favorite.setOnFocusChangeListener(mFocusHandler);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001207 return favorite;
1208 }
1209
1210 /**
Jon Mirandac476d6e2017-05-04 16:30:01 -07001211 * Add a shortcut to the workspace or to a Folder.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001212 *
1213 * @param data The intent describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001214 */
Sunny Goyalefb7e842018-10-04 15:11:00 -07001215 private void completeAddShortcut(Intent data, int container, int screenId, int cellX,
Sunny Goyalfb5096d2016-09-08 14:32:06 -07001216 int cellY, PendingRequestArgs args) {
Pinyao Ting5eee5f42019-10-31 16:47:35 -07001217 if (args.getRequestCode() != REQUEST_CREATE_SHORTCUT
Jon Mirandac476d6e2017-05-04 16:30:01 -07001218 || args.getPendingIntent().getComponent() == null) {
Sunny Goyalfb5096d2016-09-08 14:32:06 -07001219 return;
1220 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001221
Jon Mirandac476d6e2017-05-04 16:30:01 -07001222 int[] cellXY = mTmpAddItemCellCoordinates;
1223 CellLayout layout = getCellLayout(container, screenId);
1224
Sunny Goyaleaf7a952020-07-29 16:54:20 -07001225 WorkspaceItemInfo info = PinRequestHelper.createWorkspaceItemFromPinItemRequest(
Sunny Goyale7b00122019-10-02 16:13:34 -07001226 this, PinRequestHelper.getPinItemRequest(data), 0);
Sunny Goyal782f0c92017-01-19 10:27:54 -08001227
1228 if (info == null) {
Sunny Goyalb57645f2017-03-20 13:57:28 -07001229 // Legacy shortcuts are only supported for primary profile.
1230 info = Process.myUserHandle().equals(args.user)
Sunny Goyal53116c62020-08-07 16:32:18 -07001231 ? ModelUtils.fromLegacyShortcutIntent(this, data) : null;
Sunny Goyal782f0c92017-01-19 10:27:54 -08001232
Sunny Goyalb57645f2017-03-20 13:57:28 -07001233 if (info == null) {
1234 Log.e(TAG, "Unable to parse a valid custom shortcut result");
1235 return;
1236 } else if (!new PackageManagerHelper(this).hasPermissionForActivity(
Sunny Goyal342e4662017-02-02 15:21:08 -08001237 info.intent, args.getPendingIntent().getComponent().getPackageName())) {
Sunny Goyal782f0c92017-01-19 10:27:54 -08001238 // The app is trying to add a shortcut without sufficient permissions
1239 Log.e(TAG, "Ignoring malicious intent " + info.intent.toUri(0));
1240 return;
1241 }
1242 }
1243
Jon Mirandac476d6e2017-05-04 16:30:01 -07001244 if (container < 0) {
1245 // Adding a shortcut to the Workspace.
1246 final View view = createShortcut(info);
1247 boolean foundCellSpan = false;
1248 // First we check if we already know the exact location where we want to add this item.
1249 if (cellX >= 0 && cellY >= 0) {
1250 cellXY[0] = cellX;
1251 cellXY[1] = cellY;
1252 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001253
Hyunyoung Song1ae42422020-01-26 23:25:14 -08001254 DragObject dragObject = new DragObject(getApplicationContext());
1255 dragObject.dragInfo = info;
Jon Mirandac476d6e2017-05-04 16:30:01 -07001256 // If appropriate, either create a folder or add to an existing folder
1257 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Hyunyoung Song1ae42422020-01-26 23:25:14 -08001258 true, dragObject)) {
Jon Mirandac476d6e2017-05-04 16:30:01 -07001259 return;
1260 }
Jon Mirandac476d6e2017-05-04 16:30:01 -07001261 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1262 true)) {
1263 return;
1264 }
1265 } else {
1266 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
1267 }
1268
1269 if (!foundCellSpan) {
1270 mWorkspace.onNoCellFound(layout);
Adam Cohen558baaf2011-08-15 15:22:57 -07001271 return;
1272 }
Jon Mirandac476d6e2017-05-04 16:30:01 -07001273
1274 getModelWriter().addItemToDatabase(info, container, screenId, cellXY[0], cellXY[1]);
1275 mWorkspace.addInScreen(view, info);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001276 } else {
Jon Mirandac476d6e2017-05-04 16:30:01 -07001277 // Adding a shortcut to a Folder.
Sunny Goyale29897f52017-07-20 10:09:42 -07001278 FolderIcon folderIcon = findFolderIcon(container);
Jon Mirandac476d6e2017-05-04 16:30:01 -07001279 if (folderIcon != null) {
1280 FolderInfo folderInfo = (FolderInfo) folderIcon.getTag();
1281 folderInfo.add(info, args.rank, false);
1282 } else {
Sunny Goyale29897f52017-07-20 10:09:42 -07001283 Log.e(TAG, "Could not find folder with id " + container + " to add shortcut.");
Jon Mirandac476d6e2017-05-04 16:30:01 -07001284 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001285 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001286 }
1287
Sunny Goyalefb7e842018-10-04 15:11:00 -07001288 public FolderIcon findFolderIcon(final int folderIconId) {
Sunny Goyal83fd25e2018-07-09 16:47:01 -07001289 return (FolderIcon) mWorkspace.getHomescreenIconByItemId(folderIconId);
Sunny Goyale29897f52017-07-20 10:09:42 -07001290 }
1291
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001292 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001293 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001294 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001295 * @param appWidgetId The app widget id
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001296 */
Samuel Fufaca37b8a2019-08-19 17:04:36 -07001297 @Thunk
1298 void completeAddAppWidget(int appWidgetId, ItemInfo itemInfo,
Adam Cohen59400422014-03-05 18:07:04 -08001299 AppWidgetHostView hostView, LauncherAppWidgetProviderInfo appWidgetInfo) {
1300
Adam Cohened66b2b2012-01-23 17:28:51 -08001301 if (appWidgetInfo == null) {
Sunny Goyal2e1efb42016-03-03 16:58:55 -08001302 appWidgetInfo = mAppWidgetManager.getLauncherAppWidgetInfo(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -08001303 }
Romain Guycbb89e42009-06-08 15:52:54 -07001304
Adam Cohen59400422014-03-05 18:07:04 -08001305 LauncherAppWidgetInfo launcherInfo;
1306 launcherInfo = new LauncherAppWidgetInfo(appWidgetId, appWidgetInfo.provider);
Sunny Goyal2100c782016-08-22 16:00:03 -07001307 launcherInfo.spanX = itemInfo.spanX;
1308 launcherInfo.spanY = itemInfo.spanY;
1309 launcherInfo.minSpanX = itemInfo.minSpanX;
1310 launcherInfo.minSpanY = itemInfo.minSpanY;
Sunny Goyal952e63d2017-08-16 04:59:08 -07001311 launcherInfo.user = appWidgetInfo.getProfile();
Romain Guycbb89e42009-06-08 15:52:54 -07001312
Sunny Goyal43bf11d2017-02-02 13:52:53 -08001313 getModelWriter().addItemToDatabase(launcherInfo,
Sunny Goyal2100c782016-08-22 16:00:03 -07001314 itemInfo.container, itemInfo.screenId, itemInfo.cellX, itemInfo.cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001315
Sunny Goyal2100c782016-08-22 16:00:03 -07001316 if (hostView == null) {
1317 // Perform actual inflation because we're live
1318 hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001319 }
Sunny Goyal2100c782016-08-22 16:00:03 -07001320 hostView.setVisibility(View.VISIBLE);
Sunny Goyald5462aa2016-11-22 16:52:39 +05301321 prepareAppWidget(hostView, launcherInfo);
1322 mWorkspace.addInScreen(hostView, launcherInfo);
Pinyao Tingc9074272019-11-11 11:51:44 -08001323 announceForAccessibility(R.string.item_added_to_workspace);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001324 }
Romain Guycbb89e42009-06-08 15:52:54 -07001325
Sunny Goyald5462aa2016-11-22 16:52:39 +05301326 private void prepareAppWidget(AppWidgetHostView hostView, LauncherAppWidgetInfo item) {
Sunny Goyal87af0fd2016-05-16 14:56:02 -07001327 hostView.setTag(item);
1328 item.onBindAppWidget(this, hostView);
Sunny Goyal87af0fd2016-05-16 14:56:02 -07001329 hostView.setFocusable(true);
1330 hostView.setOnFocusChangeListener(mFocusHandler);
Sunny Goyal25c2e3e2015-10-28 23:28:21 -07001331 }
1332
Sunny Goyal5d1873a2018-05-08 11:10:44 -07001333 private final BroadcastReceiver mScreenOffReceiver = new BroadcastReceiver() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001334 @Override
1335 public void onReceive(Context context, Intent intent) {
Sunny Goyal5d1873a2018-05-08 11:10:44 -07001336 // Reset AllApps to its initial state only if we are not in the middle of
1337 // processing a multi-step drop
1338 if (mPendingRequestArgs == null) {
Riddle Hsu7a7468f2019-11-21 01:32:58 +08001339 if (!isInState(NORMAL)) {
1340 onUiChangedWhileSleeping();
1341 }
Sunny Goyal5d1873a2018-05-08 11:10:44 -07001342 mStateManager.goToState(NORMAL);
Adam Cohended9f8d2010-11-03 13:25:16 -07001343 }
1344 }
1345 };
1346
Sunny Goyal9c2b9602020-01-07 13:07:55 -08001347 private void updateNotificationDots(Predicate<PackageUserKey> updatedDots) {
Tony Wickhamf34bee82018-12-03 18:11:39 -08001348 mWorkspace.updateNotificationDots(updatedDots);
1349 mAppsView.getAppsStore().updateNotificationDots(updatedDots);
Tony Wickham010d2552017-01-20 08:15:28 -08001350 }
1351
Adam Cohended9f8d2010-11-03 13:25:16 -07001352 @Override
1353 public void onAttachedToWindow() {
1354 super.onAttachedToWindow();
Sunny Goyalb1d7de22019-09-06 10:36:54 -07001355 mOverlayManager.onAttachedToWindow();
Adam Cohended9f8d2010-11-03 13:25:16 -07001356 }
1357
1358 @Override
1359 public void onDetachedFromWindow() {
1360 super.onDetachedFromWindow();
Sunny Goyalb1d7de22019-09-06 10:36:54 -07001361 mOverlayManager.onDetachedFromWindow();
1362 closeContextMenu();
Adam Cohended9f8d2010-11-03 13:25:16 -07001363 }
1364
Schneider Victor-tulias25ecae12020-09-14 14:07:38 -07001365 @Override
1366 public Object onRetainNonConfigurationInstance() {
1367 int width = mDragLayer.getWidth();
1368 int height = mDragLayer.getHeight();
1369
1370 if (width <= 0 || height <= 0) {
1371 return null;
1372 }
1373
1374 return BitmapRenderer.createHardwareBitmap(width, height, mDragLayer::draw);
1375 }
1376
Sunny Goyalc4fa8c32017-11-07 12:23:58 -08001377 public AllAppsTransitionController getAllAppsController() {
1378 return mAllAppsController;
1379 }
1380
Sunny Goyal9d69c8d2018-03-19 13:41:31 -07001381 @Override
Winson Chunga6945242014-01-08 14:04:34 -08001382 public DragLayer getDragLayer() {
1383 return mDragLayer;
1384 }
1385
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001386 public AllAppsContainerView getAppsView() {
Winson Chungb745afb2015-03-02 11:51:23 -08001387 return mAppsView;
1388 }
1389
Winson Chunga6945242014-01-08 14:04:34 -08001390 public Workspace getWorkspace() {
1391 return mWorkspace;
1392 }
1393
1394 public Hotseat getHotseat() {
1395 return mHotseat;
1396 }
1397
Sunny Goyal7c7be8c2018-03-07 19:58:07 -08001398 public <T extends View> T getOverviewPanel() {
Winson Chung8ae41982017-11-10 11:42:13 -08001399 return (T) mOverviewPanel;
Winson Chunga6945242014-01-08 14:04:34 -08001400 }
1401
Sunny Goyal47328fd2016-05-25 18:56:41 -07001402 public DropTargetBar getDropTargetBar() {
1403 return mDropTargetBar;
Tony Wickham34d2c912015-09-11 09:27:58 -07001404 }
1405
Tony Wickham490a8ab2020-04-01 17:03:58 -07001406 public ScrimView getScrimView() {
1407 return mScrimView;
1408 }
1409
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001410 public LauncherAppWidgetHost getAppWidgetHost() {
1411 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001412 }
Romain Guycbb89e42009-06-08 15:52:54 -07001413
Winson Chunga9abd0e2010-10-27 17:18:37 -07001414 public LauncherModel getModel() {
1415 return mModel;
1416 }
1417
Sunny Goyal43bf11d2017-02-02 13:52:53 -08001418 public ModelWriter getModelWriter() {
1419 return mModelWriter;
1420 }
1421
Sunny Goyalb1d7de22019-09-06 10:36:54 -07001422 @Override
Adam Cohen79d90c52016-04-22 13:29:20 -07001423 public SharedPreferences getSharedPrefs() {
Winson Chunga6945242014-01-08 14:04:34 -08001424 return mSharedPrefs;
1425 }
1426
Sunny Goyalb1d7de22019-09-06 10:36:54 -07001427 @Override
1428 public SharedPreferences getDevicePrefs() {
1429 return Utilities.getDevicePrefs(this);
1430 }
1431
Samuel Fufaca37b8a2019-08-19 17:04:36 -07001432 public int getOrientation() {
1433 return mOldConfig.orientation;
1434 }
Jon Miranda6bed3502017-09-19 14:43:17 -07001435
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001436 @Override
1437 protected void onNewIntent(Intent intent) {
vadimtbaf5fbb2019-12-16 18:56:09 -08001438 if (Utilities.IS_RUNNING_IN_TEST_HARNESS) {
1439 Log.d(TestProtocol.PERMANENT_DIAG_TAG, "Launcher.onNewIntent: " + intent);
1440 }
Winson Chung5cc62c72019-10-16 11:32:41 -07001441 Object traceToken = TraceHelper.INSTANCE.beginSection(ON_NEW_INTENT_EVT);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001442 super.onNewIntent(intent);
1443
Sunny Goyalf4aceab2017-12-06 16:16:31 -08001444 boolean alreadyOnHome = hasWindowFocus() && ((intent.getFlags() &
Winson15f8b172015-08-19 11:02:39 -07001445 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1446 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
Sunny Goyal85313732016-09-28 12:00:07 -07001447
1448 // Check this condition before handling isActionMain, as this will get reset.
Sunny Goyal3e3f44c2017-10-23 17:14:52 -07001449 boolean shouldMoveToDefaultScreen = alreadyOnHome && isInState(NORMAL)
Sunny Goyalf9403d92017-10-18 10:55:56 -07001450 && AbstractFloatingView.getTopOpenView(this) == null;
Winson15f8b172015-08-19 11:02:39 -07001451 boolean isActionMain = Intent.ACTION_MAIN.equals(intent.getAction());
Sunny Goyale84c5b82019-09-26 17:05:31 -07001452 boolean internalStateHandled = ACTIVITY_TRACKER.handleNewIntent(this, intent);
Sunny Goyald3864fa2017-11-14 15:06:36 -08001453
Winson15f8b172015-08-19 11:02:39 -07001454 if (isActionMain) {
Sunny Goyald3864fa2017-11-14 15:06:36 -08001455 if (!internalStateHandled) {
Sunny Goyald3864fa2017-11-14 15:06:36 -08001456 // In all these cases, only animate if we're already on home
Andy Wickham65ced1b2020-03-07 02:14:19 +00001457 closeOpenViews(isStarted());
Jon Mirandafeba90f2016-10-06 10:53:29 -07001458
Sunny Goyala2467272018-03-16 14:53:05 -07001459 if (!isInState(NORMAL)) {
1460 // Only change state, if not already the same. This prevents cancelling any
1461 // animations running as part of resume
Pinyao Ting3bf889a2020-06-30 16:43:51 -07001462 mStateManager.goToState(NORMAL, mStateManager.shouldAnimateStateChange(),
1463 this::handlePendingActivityRequest);
Sunny Goyala2467272018-03-16 14:53:05 -07001464 }
Sunny Goyald3864fa2017-11-14 15:06:36 -08001465
1466 // Reset the apps view
Sunny Goyal5d1873a2018-05-08 11:10:44 -07001467 if (!alreadyOnHome) {
Sunny Goyal7185dd62018-03-14 17:51:49 -07001468 mAppsView.reset(isStarted() /* animate */);
Sunny Goyald3864fa2017-11-14 15:06:36 -08001469 }
1470
Sunny Goyalaad33592018-08-07 17:20:35 -07001471 if (shouldMoveToDefaultScreen && !mWorkspace.isHandlingTouch()) {
Sunny Goyald3864fa2017-11-14 15:06:36 -08001472 mWorkspace.post(mWorkspace::moveToDefaultScreen);
1473 }
1474 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001475
Hyunyoung Song2a70b3d2019-06-11 12:47:07 -07001476 // Handle HOME_INTENT
Sunny Goyaldeb91c42020-03-24 02:17:59 -07001477 hideKeyboard();
Adam Cohen6fecd412013-10-02 17:41:50 -07001478
Adam Cohen9211d422014-10-07 18:14:53 -07001479 if (mLauncherCallbacks != null) {
Sunny Goyal85462132018-04-24 11:39:37 -07001480 mLauncherCallbacks.onHomeIntent(internalStateHandled);
Adam Cohen9211d422014-10-07 18:14:53 -07001481 }
Sunny Goyalb1d7de22019-09-06 10:36:54 -07001482 mOverlayManager.hideOverlay(isStarted() && !isForceInvisible());
Sunny Goyal30ac97d2020-06-24 23:47:46 -07001483 handleGestureContract(intent);
Sunny Goyal512a2c12020-04-08 12:52:45 -07001484 } else if (Intent.ACTION_ALL_APPS.equals(intent.getAction())) {
Winson Chungdd15ace2020-08-04 15:52:01 -07001485 showAllAppsFromIntent(alreadyOnHome);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001486 }
Winson15f8b172015-08-19 11:02:39 -07001487
Winson Chung5cc62c72019-10-16 11:32:41 -07001488 TraceHelper.INSTANCE.endSection(traceToken);
Adam Coppa120b8e2013-11-12 16:26:04 +00001489 }
1490
Winson Chungdd15ace2020-08-04 15:52:01 -07001491 protected void showAllAppsFromIntent(boolean alreadyOnHome) {
1492 AbstractFloatingView.closeAllOpenViews(this);
1493 getStateManager().goToState(ALL_APPS, alreadyOnHome);
1494 }
1495
Sunny Goyaldeb91c42020-03-24 02:17:59 -07001496 /**
Sunny Goyal30ac97d2020-06-24 23:47:46 -07001497 * Handles gesture nav contract
1498 */
1499 protected void handleGestureContract(Intent intent) {
1500 GestureNavContract gnc = GestureNavContract.fromIntent(intent);
1501 if (gnc != null) {
1502 AbstractFloatingView.closeOpenViews(this, false, TYPE_ICON_SURFACE);
1503 FloatingSurfaceView.show(this, gnc);
1504 }
1505 }
1506
1507 /**
Sunny Goyaldeb91c42020-03-24 02:17:59 -07001508 * Hides the keyboard if visible
1509 */
1510 public void hideKeyboard() {
1511 final View v = getWindow().peekDecorView();
1512 if (v != null && v.getWindowToken() != null) {
1513 UiThreadHelper.hideKeyboardAsync(this, v.getWindowToken());
1514 }
1515 }
1516
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001517 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001518 public void onRestoreInstanceState(Bundle state) {
1519 super.onRestoreInstanceState(state);
Sunny Goyalf4aceab2017-12-06 16:16:31 -08001520 mWorkspace.restoreInstanceStateForChild(mSynchronouslyBoundPage);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001521 }
1522
1523 @Override
1524 protected void onSaveInstanceState(Bundle outState) {
Adam Cohen21cd0022013-10-09 18:57:02 -07001525 if (mWorkspace.getChildCount() > 0) {
Sunny Goyal7ce471b2017-08-02 03:37:39 -07001526 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN, mWorkspace.getNextPage());
Hyunyoung Song645764e2016-06-06 14:19:02 -07001527
Adam Cohen21cd0022013-10-09 18:57:02 -07001528 }
Sunny Goyalea609262017-10-25 15:47:38 -07001529 outState.putInt(RUNTIME_STATE, mStateManager.getState().ordinal);
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -07001530
1531
1532 AbstractFloatingView widgets = AbstractFloatingView
1533 .getOpenView(this, AbstractFloatingView.TYPE_WIDGETS_FULL_SHEET);
1534 if (widgets != null) {
1535 SparseArray<Parcelable> widgetsState = new SparseArray<>();
1536 widgets.saveHierarchyState(widgetsState);
1537 outState.putSparseParcelableArray(RUNTIME_STATE_WIDGET_PANEL, widgetsState);
1538 } else {
1539 outState.remove(RUNTIME_STATE_WIDGET_PANEL);
1540 }
1541
Pinyao Tinga74b63a2019-07-17 23:26:06 -07001542 // We close any open folders and shortcut containers that are not safe for rebind,
Sunny Goyal740ac7f2016-09-28 16:47:32 -07001543 // and we need to make sure this state is reflected.
Pinyao Tinga74b63a2019-07-17 23:26:06 -07001544 AbstractFloatingView.closeOpenViews(this, false, TYPE_ALL & ~TYPE_REBIND_SAFE);
1545 finishAutoCancelActionMode();
Tony Wickham49c8d292016-07-01 11:44:34 -07001546
Sunny Goyal2100c782016-08-22 16:00:03 -07001547 if (mPendingRequestArgs != null) {
1548 outState.putParcelable(RUNTIME_STATE_PENDING_REQUEST_ARGS, mPendingRequestArgs);
1549 }
Sunny Goyaldedda052019-05-14 15:23:48 -07001550 outState.putInt(RUNTIME_STATE_PENDING_REQUEST_CODE, mPendingActivityRequestCode);
1551
Sunny Goyal2100c782016-08-22 16:00:03 -07001552 if (mPendingActivityResult != null) {
1553 outState.putParcelable(RUNTIME_STATE_PENDING_ACTIVITY_RESULT, mPendingActivityResult);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001554 }
1555
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -07001556 super.onSaveInstanceState(outState);
Sunny Goyalb1d7de22019-09-06 10:36:54 -07001557 mOverlayManager.onActivitySaveInstanceState(this, outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001558 }
1559
1560 @Override
1561 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001562 super.onDestroy();
Sunny Goyale84c5b82019-09-26 17:05:31 -07001563 ACTIVITY_TRACKER.onActivityDestroyed(this);
Romain Guycbb89e42009-06-08 15:52:54 -07001564
Sunny Goyal5d1873a2018-05-08 11:10:44 -07001565 unregisterReceiver(mScreenOffReceiver);
Sunny Goyalaaf7d1d2016-05-17 13:38:54 -07001566 mWorkspace.removeFolderListeners();
Sunny Goyalb1d7de22019-09-06 10:36:54 -07001567 PluginManagerWrapper.INSTANCE.get(this).removePluginListener(this);
Winson Chunge7a03942011-08-05 15:05:12 -07001568
Sunny Goyala7a5bf32020-01-05 15:35:29 +05301569 mModel.removeCallbacks(this);
Sunny Goyal623eddd2018-03-02 12:24:41 -08001570 mRotationHelper.destroy();
Sunny Goyal745bad92016-05-02 10:54:12 -07001571
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001572 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001573 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001574 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001575 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001576 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001577
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001578 TextKeyListener.getInstance().release();
Tony2917a8b2017-07-31 23:29:42 -07001579 clearPendingBinds();
Hyunyoung Song31971a32019-01-27 12:31:12 -08001580 LauncherAppState.getIDP(this).removeOnChangeListener(this);
Sunny Goyalb1d7de22019-09-06 10:36:54 -07001581
1582 mOverlayManager.onActivityDestroyed(this);
Winson Chung24ab40c2019-10-30 22:35:09 -07001583 mAppTransitionManager.unregisterRemoteAnimations();
Samuel Fufa41d909f2020-03-20 16:27:09 -07001584 mUserChangedCallbackCloseable.close();
Samuel Fufa2fa2e0a2020-09-11 13:34:25 -07001585 mLifecycleRegistry.setCurrentState(Lifecycle.State.DESTROYED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001586 }
1587
Sunny Goyalae502842016-06-17 08:43:56 -07001588 public LauncherAccessibilityDelegate getAccessibilityDelegate() {
1589 return mAccessibilityDelegate;
1590 }
1591
Adam Cohena9cf38f2011-05-02 15:36:58 -07001592 public DragController getDragController() {
1593 return mDragController;
1594 }
1595
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001596 @Override
Sunny Goyal0eca4e22016-07-20 11:43:06 -07001597 public void startActivityForResult(Intent intent, int requestCode, Bundle options) {
Sunny Goyaldedda052019-05-14 15:23:48 -07001598 if (requestCode != -1) {
1599 mPendingActivityRequestCode = requestCode;
1600 }
Sunny Goyal210e1742019-10-17 12:05:38 -07001601 super.startActivityForResult(intent, requestCode, options);
Adam Cohen173f7112015-03-27 15:14:00 -07001602 }
1603
1604 @Override
Sunny Goyaldedda052019-05-14 15:23:48 -07001605 public void startIntentSenderForResult(IntentSender intent, int requestCode,
Adam Cohen173f7112015-03-27 15:14:00 -07001606 Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) {
Sunny Goyaldedda052019-05-14 15:23:48 -07001607 if (requestCode != -1) {
1608 mPendingActivityRequestCode = requestCode;
1609 }
Sunny Goyal210e1742019-10-17 12:05:38 -07001610 try {
1611 super.startIntentSenderForResult(intent, requestCode,
1612 fillInIntent, flagsMask, flagsValues, extraFlags, options);
1613 } catch (IntentSender.SendIntentException e) {
1614 throw new ActivityNotFoundException();
Adam Cohen173f7112015-03-27 15:14:00 -07001615 }
1616 }
1617
Winson Chung70d72102011-08-12 11:24:35 -07001618 /**
1619 * Indicates that we want global search for this activity by setting the globalSearch
1620 * argument for {@link #startSearch} to true.
1621 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001622 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07001623 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001624 Bundle appSearchData, boolean globalSearch) {
1625 if (appSearchData == null) {
1626 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01001627 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001628 }
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07001629
Sunny Goyal6f28e712016-09-13 14:19:29 -07001630 if (mLauncherCallbacks == null ||
1631 !mLauncherCallbacks.startSearch(initialQuery, selectInitialQuery, appSearchData)) {
1632 // Starting search from the callbacks failed. Start the default global search.
Sunny Goyalf4aceab2017-12-06 16:16:31 -08001633 super.startSearch(initialQuery, selectInitialQuery, appSearchData, true);
Ian Parkinson047036e2014-09-01 15:40:53 +01001634 }
Winson Chungcd99cd32015-04-29 11:03:24 -07001635
1636 // We need to show the workspace after starting the search
Sunny Goyal3e3f44c2017-10-23 17:14:52 -07001637 mStateManager.goToState(NORMAL);
Bjorn Bringertc459e522013-06-07 19:36:01 +01001638 }
1639
Joe Onorato9c1289c2009-08-17 11:03:03 -04001640 public boolean isWorkspaceLocked() {
Sunny Goyal2100c782016-08-22 16:00:03 -07001641 return mWorkspaceLoading || mPendingRequestArgs != null;
Joe Onorato9c1289c2009-08-17 11:03:03 -04001642 }
1643
Adam Cohen517a7f52014-03-01 12:12:59 -08001644 public boolean isWorkspaceLoading() {
1645 return mWorkspaceLoading;
1646 }
1647
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001648 private void setWorkspaceLoading(boolean value) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001649 mWorkspaceLoading = value;
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001650 }
1651
Sunny Goyal04a324a2017-01-20 21:08:59 -08001652 public void setWaitingForResult(PendingRequestArgs args) {
Sunny Goyal2100c782016-08-22 16:00:03 -07001653 mPendingRequestArgs = args;
Adam Cohen9211d422014-10-07 18:14:53 -07001654 }
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001655
Sunny Goyal2100c782016-08-22 16:00:03 -07001656 void addAppWidgetFromDropImpl(int appWidgetId, ItemInfo info, AppWidgetHostView boundWidget,
Sunny Goyal04a324a2017-01-20 21:08:59 -08001657 WidgetAddFlowHandler addFlowHandler) {
Tony Wickhama0628cc2015-10-14 15:23:04 -07001658 if (LOGD) {
1659 Log.d(TAG, "Adding widget from drop");
1660 }
Sunny Goyal04a324a2017-01-20 21:08:59 -08001661 addAppWidgetImpl(appWidgetId, info, boundWidget, addFlowHandler, 0);
Adam Cohenad4e15c2013-10-17 16:21:35 -07001662 }
1663
Sunny Goyal2100c782016-08-22 16:00:03 -07001664 void addAppWidgetImpl(int appWidgetId, ItemInfo info,
Sunny Goyal04a324a2017-01-20 21:08:59 -08001665 AppWidgetHostView boundWidget, WidgetAddFlowHandler addFlowHandler, int delay) {
Samuel Fufaca37b8a2019-08-19 17:04:36 -07001666 if (!addFlowHandler.startConfigActivity(this, appWidgetId, info,
1667 REQUEST_CREATE_APPWIDGET)) {
Sunny Goyal04a324a2017-01-20 21:08:59 -08001668 // If the configuration flow was not started, add the widget
Michael Jurkaaf442092010-06-10 17:01:57 -07001669
Adam Cohenad4e15c2013-10-17 16:21:35 -07001670 Runnable onComplete = new Runnable() {
1671 @Override
1672 public void run() {
1673 // Exit spring loaded mode if necessary after adding the widget
Sunny Goyal3e3f44c2017-10-23 17:14:52 -07001674 mStateManager.goToState(NORMAL, SPRING_LOADED_EXIT_DELAY);
Adam Cohenad4e15c2013-10-17 16:21:35 -07001675 }
1676 };
Samuel Fufaca37b8a2019-08-19 17:04:36 -07001677 completeAddAppWidget(appWidgetId, info, boundWidget,
1678 addFlowHandler.getProviderInfo(this));
Sunny Goyal6e379fc2020-03-19 16:08:14 -07001679 mWorkspace.removeExtraEmptyScreenDelayed(delay, false, onComplete);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001680 }
1681 }
Romain Guycbb89e42009-06-08 15:52:54 -07001682
Sunny Goyalefb7e842018-10-04 15:11:00 -07001683 public void addPendingItem(PendingAddItemInfo info, int container, int screenId,
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08001684 int[] cell, int spanX, int spanY) {
Sunny Goyal2100c782016-08-22 16:00:03 -07001685 info.container = container;
1686 info.screenId = screenId;
1687 if (cell != null) {
1688 info.cellX = cell[0];
1689 info.cellY = cell[1];
1690 }
1691 info.spanX = spanX;
1692 info.spanY = spanY;
1693
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08001694 switch (info.itemType) {
1695 case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET:
1696 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
Sunny Goyal2100c782016-08-22 16:00:03 -07001697 addAppWidgetFromDrop((PendingAddWidgetInfo) info);
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08001698 break;
1699 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Sunny Goyal782f0c92017-01-19 10:27:54 -08001700 processShortcutFromDrop((PendingAddShortcutInfo) info);
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08001701 break;
1702 default:
1703 throw new IllegalStateException("Unknown item type: " + info.itemType);
Samuel Fufaca37b8a2019-08-19 17:04:36 -07001704 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08001705 }
1706
Adam Cohenfbba09b2011-07-18 21:43:05 -07001707 /**
1708 * Process a shortcut drop.
Adam Cohenfbba09b2011-07-18 21:43:05 -07001709 */
Sunny Goyal782f0c92017-01-19 10:27:54 -08001710 private void processShortcutFromDrop(PendingAddShortcutInfo info) {
Sunny Goyalfb5096d2016-09-08 14:32:06 -07001711 Intent intent = new Intent(Intent.ACTION_CREATE_SHORTCUT).setComponent(info.componentName);
1712 setWaitingForResult(PendingRequestArgs.forIntent(REQUEST_CREATE_SHORTCUT, intent, info));
vadimtcf275c12020-04-15 12:43:01 -07001713 TestLogging.recordEvent(TestProtocol.SEQUENCE_MAIN, "start: processShortcutFromDrop");
Sunny Goyal782f0c92017-01-19 10:27:54 -08001714 if (!info.activityInfo.startConfigActivity(this, REQUEST_CREATE_SHORTCUT)) {
1715 handleActivityResult(REQUEST_CREATE_SHORTCUT, RESULT_CANCELED, null);
1716 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001717 }
1718
Adam Cohenfbba09b2011-07-18 21:43:05 -07001719 /**
1720 * Process a widget drop.
Adam Cohenfbba09b2011-07-18 21:43:05 -07001721 */
Sunny Goyal2100c782016-08-22 16:00:03 -07001722 private void addAppWidgetFromDrop(PendingAddWidgetInfo info) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001723 AppWidgetHostView hostView = info.boundWidget;
Sunny Goyal952e63d2017-08-16 04:59:08 -07001724 final int appWidgetId;
Sunny Goyal8a0dc382017-01-25 11:30:06 -08001725 WidgetAddFlowHandler addFlowHandler = info.getHandler();
Adam Cohened66b2b2012-01-23 17:28:51 -08001726 if (hostView != null) {
Tony Wickhama0628cc2015-10-14 15:23:04 -07001727 // In the case where we've prebound the widget, we remove it from the DragLayer
1728 if (LOGD) {
1729 Log.d(TAG, "Removing widget view from drag layer and setting boundWidget to null");
1730 }
1731 getDragLayer().removeView(hostView);
1732
Adam Cohened66b2b2012-01-23 17:28:51 -08001733 appWidgetId = hostView.getAppWidgetId();
Sunny Goyal04a324a2017-01-20 21:08:59 -08001734 addAppWidgetFromDropImpl(appWidgetId, info, hostView, addFlowHandler);
Sunny Goyal5b9ebca2015-06-01 18:37:32 -07001735
1736 // Clear the boundWidget so that it doesn't get destroyed.
1737 info.boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -08001738 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001739 // In this case, we either need to start an activity to get permission to bind
1740 // the widget, or we need to start an activity to configure the widget, or both.
Pinyao Tingc7a6c292019-08-26 14:36:02 -07001741 if (info.itemType == LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET) {
1742 appWidgetId = CustomWidgetManager.INSTANCE.get(this).getWidgetIdForCustomProvider(
1743 info.componentName);
Sunny Goyal952e63d2017-08-16 04:59:08 -07001744 } else {
1745 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
1746 }
Adam Cohendd70d662012-10-04 16:53:44 -07001747 Bundle options = info.bindOptions;
1748
Sunny Goyalffe83f12014-08-14 17:39:34 -07001749 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
1750 appWidgetId, info.info, options);
Adam Cohendd70d662012-10-04 16:53:44 -07001751 if (success) {
Sunny Goyal04a324a2017-01-20 21:08:59 -08001752 addAppWidgetFromDropImpl(appWidgetId, info, null, addFlowHandler);
Michael Jurka8b805b12012-04-18 14:23:14 -07001753 } else {
Sunny Goyal04a324a2017-01-20 21:08:59 -08001754 addFlowHandler.startBindFlow(this, appWidgetId, info, REQUEST_BIND_APPWIDGET);
Michael Jurka8b805b12012-04-18 14:23:14 -07001755 }
Adam Cohened66b2b2012-01-23 17:28:51 -08001756 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001757 }
1758
Samuel Fufa746d4202020-02-02 18:55:44 -08001759 /**
1760 * Creates and adds new folder to CellLayout
1761 */
Samuel Fufa28c3e452020-02-08 16:07:16 -08001762 public FolderIcon addFolder(CellLayout layout, int container, final int screenId, int cellX,
1763 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07001764 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001765
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001766 // Update the model
Sunny Goyal43bf11d2017-02-02 13:52:53 -08001767 getModelWriter().addItemToDatabase(folderInfo, container, screenId, cellX, cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001768
1769 // Create the view
Samuel Fufa746d4202020-02-02 18:55:44 -08001770 FolderIcon newFolder = FolderIcon.inflateFolderAndIcon(R.layout.folder_icon, this, layout,
1771 folderInfo);
Sunny Goyald5462aa2016-11-22 16:52:39 +05301772 mWorkspace.addInScreen(newFolder, folderInfo);
Winson Chung5f8afe62013-08-12 16:19:28 -07001773 // Force measure the new folder icon
1774 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
1775 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07001776 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001777 }
Romain Guycbb89e42009-06-08 15:52:54 -07001778
Winsonc0b52fe2015-09-09 16:38:15 -07001779 /**
Winsonfa56b3f2015-09-14 12:01:13 -07001780 * Unbinds the view for the specified item, and removes the item and all its children.
1781 *
1782 * @param v the view being removed.
Winsonfa56b3f2015-09-14 12:01:13 -07001783 * @param itemInfo the {@link ItemInfo} for this view.
1784 * @param deleteFromDb whether or not to delete this item from the db.
Winsonc0b52fe2015-09-09 16:38:15 -07001785 */
Tony Wickhambfbf7f92016-05-19 11:19:39 -07001786 public boolean removeItem(View v, final ItemInfo itemInfo, boolean deleteFromDb) {
Sunny Goyal95899162019-03-27 16:03:06 -07001787 if (itemInfo instanceof WorkspaceItemInfo) {
Winsonfa56b3f2015-09-14 12:01:13 -07001788 // Remove the shortcut from the folder before removing it from launcher
Sunny Goyal44c06432016-04-02 10:56:02 -07001789 View folderIcon = mWorkspace.getHomescreenIconByItemId(itemInfo.container);
1790 if (folderIcon instanceof FolderIcon) {
Sunny Goyal95899162019-03-27 16:03:06 -07001791 ((FolderInfo) folderIcon.getTag()).remove((WorkspaceItemInfo) itemInfo, true);
Winsonfa56b3f2015-09-14 12:01:13 -07001792 } else {
1793 mWorkspace.removeWorkspaceItem(v);
1794 }
Winsonc0b52fe2015-09-09 16:38:15 -07001795 if (deleteFromDb) {
Sunny Goyal43bf11d2017-02-02 13:52:53 -08001796 getModelWriter().deleteItemFromDatabase(itemInfo);
Winsonc0b52fe2015-09-09 16:38:15 -07001797 }
1798 } else if (itemInfo instanceof FolderInfo) {
1799 final FolderInfo folderInfo = (FolderInfo) itemInfo;
Sunny Goyalaaf7d1d2016-05-17 13:38:54 -07001800 if (v instanceof FolderIcon) {
1801 ((FolderIcon) v).removeListeners();
1802 }
Winsonc0b52fe2015-09-09 16:38:15 -07001803 mWorkspace.removeWorkspaceItem(v);
1804 if (deleteFromDb) {
Sunny Goyal43bf11d2017-02-02 13:52:53 -08001805 getModelWriter().deleteFolderAndContentsFromDatabase(folderInfo);
Winsonc0b52fe2015-09-09 16:38:15 -07001806 }
1807 } else if (itemInfo instanceof LauncherAppWidgetInfo) {
1808 final LauncherAppWidgetInfo widgetInfo = (LauncherAppWidgetInfo) itemInfo;
Winson44818e02015-10-02 11:25:46 -07001809 mWorkspace.removeWorkspaceItem(v);
Winsonc0b52fe2015-09-09 16:38:15 -07001810 if (deleteFromDb) {
Tony Wickham6a71a5b2018-08-21 11:40:23 -07001811 getModelWriter().deleteWidgetInfo(widgetInfo, getAppWidgetHost());
Winsonc0b52fe2015-09-09 16:38:15 -07001812 }
1813 } else {
1814 return false;
1815 }
1816 return true;
1817 }
1818
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001819 @Override
1820 public boolean dispatchKeyEvent(KeyEvent event) {
vadimtd633c9c2020-01-22 18:00:37 -08001821 TestLogging.recordEvent(TestProtocol.SEQUENCE_MAIN, "Key event", event);
Hyunyoung Song3c7d9cb2017-01-30 15:11:27 -08001822 return (event.getKeyCode() == KeyEvent.KEYCODE_HOME) || super.dispatchKeyEvent(event);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001823 }
1824
Joe Onorato88ec0992009-11-19 13:16:06 -08001825 @Override
vadimt9af34a72020-01-21 11:19:13 -08001826 public boolean dispatchTouchEvent(MotionEvent ev) {
Sunny Goyala306e592020-03-24 01:51:41 -07001827 switch (ev.getAction()) {
1828 case MotionEvent.ACTION_DOWN:
1829 mTouchInProgress = true;
1830 break;
1831 case MotionEvent.ACTION_UP:
Riddle Hsu979da642020-09-22 21:52:40 +08001832 mLastTouchUpTime = ev.getEventTime();
Sunny Goyala306e592020-03-24 01:51:41 -07001833 // Follow through
1834 case MotionEvent.ACTION_CANCEL:
1835 mTouchInProgress = false;
1836 break;
Sunny Goyal9b180102020-03-11 10:02:29 -07001837 }
vadimtd633c9c2020-01-22 18:00:37 -08001838 TestLogging.recordMotionEvent(TestProtocol.SEQUENCE_MAIN, "Touch event", ev);
vadimt9af34a72020-01-21 11:19:13 -08001839 return super.dispatchTouchEvent(ev);
1840 }
1841
Sunny Goyala306e592020-03-24 01:51:41 -07001842 /**
1843 * Returns true if a touch interaction is in progress
1844 */
1845 public boolean isTouchInProgress() {
1846 return mTouchInProgress;
1847 }
1848
vadimt9af34a72020-01-21 11:19:13 -08001849 @Override
Joe Onorato88ec0992009-11-19 13:16:06 -08001850 public void onBackPressed() {
Sunny Goyal7c8a65e2017-12-22 11:11:33 -08001851 if (finishAutoCancelActionMode()) {
1852 return;
1853 }
Adam Cohen9211d422014-10-07 18:14:53 -07001854
Sunny Goyal45478022015-06-08 16:52:41 -07001855 if (mDragController.isDragging()) {
1856 mDragController.cancelDrag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08001857 return;
1858 }
1859
Jon Mirandafeba90f2016-10-06 10:53:29 -07001860 // Note: There should be at most one log per method call. This is enforced implicitly
1861 // by using if-else statements.
Sunny Goyal740ac7f2016-09-28 16:47:32 -07001862 AbstractFloatingView topView = AbstractFloatingView.getTopOpenView(this);
Tony Wickham52c1b662018-05-21 13:13:58 -07001863 if (topView != null && topView.onBackPressed()) {
1864 // Handled by the floating view.
Patrick Dubroy94f78a52011-02-28 17:39:16 -08001865 } else {
Sunny Goyale39690b2018-08-02 13:35:07 -07001866 mStateManager.getState().onBackPressed(this);
Michael Jurkaaf442092010-06-10 17:01:57 -07001867 }
Joe Onorato88ec0992009-11-19 13:16:06 -08001868 }
1869
Sunny Goyalfe770c92016-09-27 14:38:58 -07001870 @TargetApi(Build.VERSION_CODES.M)
Sunny Goyal0b0847b2018-03-14 12:30:11 -07001871 @Override
Jon Miranda73c27ec2018-05-16 18:06:23 -07001872 public ActivityOptions getActivityLaunchOptions(View v) {
1873 return mAppTransitionManager.getActivityLaunchOptions(this, v);
Sunny Goyala7ce1662016-05-31 15:01:35 -07001874 }
1875
Tony Wickham3a6746a2018-03-29 09:39:56 -07001876 public LauncherAppTransitionManager getAppTransitionManager() {
1877 return mAppTransitionManager;
1878 }
1879
Sunny Goyal0b0847b2018-03-14 12:30:11 -07001880 @TargetApi(Build.VERSION_CODES.M)
1881 @Override
1882 protected boolean onErrorStartingShortcut(Intent intent, ItemInfo info) {
1883 // Due to legacy reasons, direct call shortcuts require Launchers to have the
1884 // corresponding permission. Show the appropriate permission prompt if that
1885 // is the case.
1886 if (intent.getComponent() == null
1887 && Intent.ACTION_CALL.equals(intent.getAction())
1888 && checkSelfPermission(android.Manifest.permission.CALL_PHONE) !=
1889 PackageManager.PERMISSION_GRANTED) {
1890
1891 setWaitingForResult(PendingRequestArgs
1892 .forIntent(REQUEST_PERMISSION_CALL_PHONE, intent, info));
1893 requestPermissions(new String[]{android.Manifest.permission.CALL_PHONE},
1894 REQUEST_PERMISSION_CALL_PHONE);
1895 return true;
1896 } else {
1897 return false;
1898 }
Sunny Goyal0eca4e22016-07-20 11:43:06 -07001899 }
1900
Hyunyoung Song46d07f72018-05-22 15:41:25 -07001901 @Override
Sunny Goyal852537f2020-07-15 17:02:16 -07001902 public boolean startActivitySafely(View v, Intent intent, ItemInfo item) {
Winson Chung0b70cd42019-06-17 22:34:33 -07001903 if (!hasBeenResumed()) {
1904 // Workaround an issue where the WM launch animation is clobbered when finishing the
1905 // recents animation into launcher. Defer launching the activity until Launcher is
1906 // next resumed.
Sunny Goyal852537f2020-07-15 17:02:16 -07001907 addOnResumeCallback(() -> startActivitySafely(v, intent, item));
Winson Chungc9bf6d42019-10-04 15:33:18 -07001908 if (mOnDeferredActivityLaunchCallback != null) {
1909 mOnDeferredActivityLaunchCallback.run();
1910 mOnDeferredActivityLaunchCallback = null;
1911 }
Winson Chung0b70cd42019-06-17 22:34:33 -07001912 return true;
1913 }
1914
Sunny Goyal852537f2020-07-15 17:02:16 -07001915 boolean success = super.startActivitySafely(v, intent, item);
Hyunyoung Song1241e612018-05-15 21:46:51 -07001916 if (success && v instanceof BubbleTextView) {
Sunny Goyal0b0847b2018-03-14 12:30:11 -07001917 // This is set to the view that launched the activity that navigated the user away
1918 // from launcher. Since there is no callback for when the activity has finished
1919 // launching, enable the press state and keep this reference to reset the press
1920 // state when we return to launcher.
1921 BubbleTextView btv = (BubbleTextView) v;
1922 btv.setStayPressed(true);
Winson Chung0b70cd42019-06-17 22:34:33 -07001923 addOnResumeCallback(btv);
Sunny Goyala7ce1662016-05-31 15:01:35 -07001924 }
Hyunyoung Song1241e612018-05-15 21:46:51 -07001925 return success;
Michael Jurka86a720e2012-05-09 11:23:23 -07001926 }
1927
Winson Chung3d503fb2011-07-13 17:25:49 -07001928 boolean isHotseatLayout(View layout) {
Sunny Goyalc13403c2016-11-18 23:44:48 -08001929 // TODO: Remove this method
Sunny Goyal876e4622018-11-02 13:50:40 -07001930 return mHotseat != null && (layout == mHotseat);
Winson Chung3d503fb2011-07-13 17:25:49 -07001931 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08001932
Winson Chung3d503fb2011-07-13 17:25:49 -07001933 /**
1934 * Returns the CellLayout of the specified container at the specified screen.
1935 */
Sunny Goyalefb7e842018-10-04 15:11:00 -07001936 public CellLayout getCellLayout(int container, int screenId) {
Sunny Goyal876e4622018-11-02 13:50:40 -07001937 return (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT)
1938 ? mHotseat : mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08001939 }
1940
Michael Jurkae326f182011-11-21 14:05:46 -08001941 @Override
1942 public void onTrimMemory(int level) {
1943 super.onTrimMemory(level);
Adam Cohen3f9c9712014-10-31 11:48:25 -07001944 if (level >= ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
1945 // The widget preview db can result in holding onto over
1946 // 3MB of memory for caching which isn't necessary.
1947 SQLiteDatabase.releaseMemory();
1948
Adam Cohenc8f4e1b2014-11-19 16:03:20 -08001949 // This clears all widget bitmaps from the widget tray
Hyunyoung Song3f471442015-04-08 19:01:34 -07001950 // TODO(hyunyoungs)
Michael Jurkae326f182011-11-21 14:05:46 -08001951 }
1952 }
1953
Michael Jurkad7c28052012-04-27 15:43:36 -07001954 @Override
1955 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07001956 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07001957 final List<CharSequence> text = event.getText();
1958 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07001959 // Populate event with a fake title based on the current state.
Sunny Goyal3e3f44c2017-10-23 17:14:52 -07001960 // TODO: When can workspace be null?
1961 text.add(mWorkspace == null
Sunny Goyal52e25452020-07-20 12:38:01 -07001962 ? getString(R.string.home_screen)
Sunny Goyalea609262017-10-25 15:47:38 -07001963 : mStateManager.getState().getDescription(this));
Michael Jurkad7c28052012-04-27 15:43:36 -07001964 return result;
1965 }
1966
Winson Chung3f8d8682020-08-04 14:01:27 -07001967 @Override
Winson Chung0b70cd42019-06-17 22:34:33 -07001968 public void addOnResumeCallback(OnResumeCallback callback) {
1969 mOnResumeCallbacks.add(callback);
Michael Jurka1e2f4652013-07-08 18:03:46 -07001970 }
1971
Michael Jurka7607c2f2013-04-03 14:33:19 -07001972 /**
Winson Chungc9bf6d42019-10-04 15:33:18 -07001973 * Persistant callback which notifies when an activity launch is deferred because the activity
1974 * was not yet resumed.
1975 */
1976 public void setOnDeferredActivityLaunchCallback(Runnable callback) {
1977 mOnDeferredActivityLaunchCallback = callback;
1978 }
1979
1980 /**
Sunny Goyala7a5bf32020-01-05 15:35:29 +05301981 * Sets the next page to bind synchronously on next bind.
1982 * @param page
1983 */
1984 public void setPageToBindSynchronously(int page) {
1985 mPageToBindSynchronously = page;
1986 }
1987
1988 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04001989 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001990 */
Sunny Goyal93f878c2016-03-30 17:31:24 -07001991 @Override
Sunny Goyala7a5bf32020-01-05 15:35:29 +05301992 public int getPageToBindSynchronously() {
1993 if (mPageToBindSynchronously != PagedView.INVALID_PAGE) {
1994 return mPageToBindSynchronously;
1995 } else if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07001996 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07001997 } else {
Winson Chung882a52e2015-07-08 14:32:26 -07001998 return 0;
Joe Onoratod0afc872010-06-11 00:03:15 -07001999 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04002000 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07002001
Joe Onorato9c1289c2009-08-17 11:03:03 -04002002 /**
Sunny Goyal527c7d32015-08-28 15:19:36 -07002003 * Clear any pending bind callbacks. This is called when is loader is planning to
2004 * perform a full rebind from scratch.
2005 */
2006 @Override
2007 public void clearPendingBinds() {
Sunny Goyal527c7d32015-08-28 15:19:36 -07002008 if (mPendingExecutor != null) {
2009 mPendingExecutor.markCompleted();
2010 mPendingExecutor = null;
Sunny Goyal6b6d0a32019-08-05 17:19:32 -07002011
2012 // We might have set this flag previously and forgot to clear it.
2013 mAppsView.getAppsStore()
2014 .disableDeferUpdatesSilently(AllAppsStore.DEFER_UPDATES_NEXT_DRAW);
Sunny Goyal527c7d32015-08-28 15:19:36 -07002015 }
2016 }
2017
2018 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04002019 * Refreshes the shortcuts shown on the workspace.
2020 *
2021 * Implementation of the method from LauncherModel.Callbacks.
2022 */
2023 public void startBinding() {
Winson Chung5cc62c72019-10-16 11:32:41 -07002024 Object traceToken = TraceHelper.INSTANCE.beginSection("startBinding");
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -07002025 // Floating panels (except the full widget sheet) are associated with individual icons. If
2026 // we are starting a fresh bind, close all such panels as all the icons are about
2027 // to go away.
Pinyao Tinga74b63a2019-07-17 23:26:06 -07002028 AbstractFloatingView.closeOpenViews(this, true, TYPE_ALL & ~TYPE_REBIND_SAFE);
Jon Miranda6dc7f1e2017-02-21 12:37:51 -08002029
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002030 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08002031
Winson Chungd64d1762013-08-20 14:37:16 -07002032 // Clear the workspace because it's going to be rebound
Sunny Goyal2db53422019-03-01 16:06:12 -08002033 mDragController.cancelDrag();
2034
Adam Cohendf035382011-04-11 17:22:04 -07002035 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07002036 mWorkspace.removeAllWorkspaceScreens();
Sunny Goyalc11fac32018-02-27 19:20:15 -08002037 mAppWidgetHost.clearViews();
Winson Chungd64d1762013-08-20 14:37:16 -07002038
Winson Chung3d503fb2011-07-13 17:25:49 -07002039 if (mHotseat != null) {
Sunny Goyalc4d32012020-04-03 17:10:11 -07002040 mHotseat.resetLayout(getDeviceProfile().isVerticalBarLayout());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002041 }
Winson Chung5cc62c72019-10-16 11:32:41 -07002042 TraceHelper.INSTANCE.endSection(traceToken);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002043 }
2044
Adam Cohendcd297f2013-06-18 13:13:40 -07002045 @Override
Sunny Goyalefb7e842018-10-04 15:11:00 -07002046 public void bindScreens(IntArray orderedScreenIds) {
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07002047 // Make sure the first screen is always at the start.
Jon Miranda7143ba62019-03-15 09:00:05 -07002048 if (FeatureFlags.QSB_ON_FIRST_SCREEN &&
Sunny Goyala9e2f5a2016-06-10 12:22:04 -07002049 orderedScreenIds.indexOf(Workspace.FIRST_SCREEN_ID) != 0) {
Sunny Goyalefb7e842018-10-04 15:11:00 -07002050 orderedScreenIds.removeValue(Workspace.FIRST_SCREEN_ID);
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07002051 orderedScreenIds.add(0, Workspace.FIRST_SCREEN_ID);
Jon Miranda7143ba62019-03-15 09:00:05 -07002052 } else if (!FeatureFlags.QSB_ON_FIRST_SCREEN && orderedScreenIds.isEmpty()) {
Sunny Goyala9e2f5a2016-06-10 12:22:04 -07002053 // If there are no screens, we need to have an empty screen
2054 mWorkspace.addExtraEmptyScreen();
Adam Cohen5084cba2013-09-03 12:01:16 -07002055 }
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07002056 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07002057
Winsonc7d2e832016-07-28 12:24:55 -07002058 // After we have added all the screens, if the wallpaper was locked to the default state,
2059 // then notify to indicate that it can be released and a proper wallpaper offset can be
2060 // computed before the next layout
2061 mWorkspace.unlockWallpaperFromDefaultPageOnNextLayout();
Winson Chung64359a52013-07-08 17:17:08 -07002062 }
2063
Sunny Goyalefb7e842018-10-04 15:11:00 -07002064 private void bindAddScreens(IntArray orderedScreenIds) {
Adam Cohendcd297f2013-06-18 13:13:40 -07002065 int count = orderedScreenIds.size();
2066 for (int i = 0; i < count; i++) {
Sunny Goyalefb7e842018-10-04 15:11:00 -07002067 int screenId = orderedScreenIds.get(i);
Jon Miranda7143ba62019-03-15 09:00:05 -07002068 if (!FeatureFlags.QSB_ON_FIRST_SCREEN || screenId != Workspace.FIRST_SCREEN_ID) {
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07002069 // No need to bind the first screen, as its always bound.
2070 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(screenId);
2071 }
Adam Cohendcd297f2013-06-18 13:13:40 -07002072 }
Adam Cohendcd297f2013-06-18 13:13:40 -07002073 }
2074
Sunny Goyalb23980c2017-08-17 07:45:25 -07002075 @Override
Tony Wickham6a71a5b2018-08-21 11:40:23 -07002076 public void preAddApps() {
2077 // If there's an undo snackbar, force it to complete to ensure empty screens are removed
2078 // before trying to add new items.
2079 mModelWriter.commitDelete();
2080 AbstractFloatingView snackbar = AbstractFloatingView.getOpenView(this, TYPE_SNACKBAR);
2081 if (snackbar != null) {
2082 snackbar.post(() -> snackbar.close(true));
2083 }
2084 }
2085
2086 @Override
Sunny Goyalefb7e842018-10-04 15:11:00 -07002087 public void bindAppsAdded(IntArray newScreens, ArrayList<ItemInfo> addNotAnimated,
Sunny Goyal29947f02017-12-18 13:49:44 -08002088 ArrayList<ItemInfo> addAnimated) {
Winson Chungd64d1762013-08-20 14:37:16 -07002089 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08002090 if (newScreens != null) {
2091 bindAddScreens(newScreens);
2092 }
Winson Chungd64d1762013-08-20 14:37:16 -07002093
2094 // We add the items without animation on non-visible pages, and with
2095 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08002096 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Sunny Goyalb23980c2017-08-17 07:45:25 -07002097 bindItems(addNotAnimated, false);
Winson Chungd64d1762013-08-20 14:37:16 -07002098 }
Adam Cohen76a47a12014-02-05 11:47:43 -08002099 if (addAnimated != null && !addAnimated.isEmpty()) {
Sunny Goyalb23980c2017-08-17 07:45:25 -07002100 bindItems(addAnimated, true);
Winson Chungd64d1762013-08-20 14:37:16 -07002101 }
Winson Chungc58497e2013-09-03 17:48:37 -07002102
Winson Chung87412982013-10-03 18:34:14 -07002103 // Remove the extra empty screen
Sunny Goyal6e379fc2020-03-19 16:08:14 -07002104 mWorkspace.removeExtraEmptyScreen(false);
Winson Chungd64d1762013-08-20 14:37:16 -07002105 }
2106
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002107 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04002108 * Bind the items start-end from the list.
2109 *
2110 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002111 */
Tony Wickham0bb211a2015-10-02 16:22:08 -07002112 @Override
Sunny Goyalb23980c2017-08-17 07:45:25 -07002113 public void bindItems(final List<ItemInfo> items, final boolean forceAnimateIcons) {
Sunny Goyal3be633b2016-12-08 09:59:25 -08002114 // Get the list of added items and intersect them with the set of items here
Rajeev Kumar43c0f582017-06-23 15:34:55 -07002115 final Collection<Animator> bounceAnims = new ArrayList<>();
Winson Chung997a9232013-07-24 15:33:46 -07002116 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07002117 Workspace workspace = mWorkspace;
Sunny Goyalefb7e842018-10-04 15:11:00 -07002118 int newItemsScreenId = -1;
Sunny Goyalb23980c2017-08-17 07:45:25 -07002119 int end = items.size();
2120 for (int i = 0; i < end; i++) {
Sunny Goyal3be633b2016-12-08 09:59:25 -08002121 final ItemInfo item = items.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07002122
2123 // Short circuit if we are loading dock items for a configuration which has no dock
2124 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
2125 mHotseat == null) {
2126 continue;
2127 }
2128
Sunny Goyal639e9062015-08-19 19:17:06 -07002129 final View view;
Joe Onorato9c1289c2009-08-17 11:03:03 -04002130 switch (item.itemType) {
2131 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
2132 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Sunny Goyal3be633b2016-12-08 09:59:25 -08002133 case LauncherSettings.Favorites.ITEM_TYPE_DEEP_SHORTCUT: {
Sunny Goyal95899162019-03-27 16:03:06 -07002134 WorkspaceItemInfo info = (WorkspaceItemInfo) item;
Sunny Goyal639e9062015-08-19 19:17:06 -07002135 view = createShortcut(info);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002136 break;
Sunny Goyal3be633b2016-12-08 09:59:25 -08002137 }
2138 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER: {
Tracy Zhou4d7b2442019-12-09 13:42:57 -08002139 view = FolderIcon.inflateFolderAndIcon(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07002140 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Sunny Goyal1cd01b02016-11-09 10:43:58 -08002141 (FolderInfo) item);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002142 break;
Sunny Goyal3be633b2016-12-08 09:59:25 -08002143 }
Sunny Goyal952e63d2017-08-16 04:59:08 -07002144 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
2145 case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET: {
Sunny Goyala9a1a212017-08-18 01:03:21 -07002146 view = inflateAppWidget((LauncherAppWidgetInfo) item);
Sunny Goyalb23980c2017-08-17 07:45:25 -07002147 if (view == null) {
2148 continue;
Sunny Goyal3be633b2016-12-08 09:59:25 -08002149 }
Sunny Goyal3be633b2016-12-08 09:59:25 -08002150 break;
2151 }
Winson Chungc763c4e2013-07-19 13:49:06 -07002152 default:
2153 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04002154 }
Sunny Goyal639e9062015-08-19 19:17:06 -07002155
Samuel Fufaca37b8a2019-08-19 17:04:36 -07002156 /*
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07002157 * Remove colliding items.
2158 */
2159 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
2160 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
2161 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
2162 View v = cl.getChildAt(item.cellX, item.cellY);
2163 Object tag = v.getTag();
2164 String desc = "Collision while binding workspace item: " + item
2165 + ". Collides with " + tag;
Zak Cohen3eeb41d2020-02-14 14:15:13 -08002166 if (FeatureFlags.IS_STUDIO_BUILD) {
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07002167 throw (new RuntimeException(desc));
2168 } else {
2169 Log.d(TAG, desc);
Sunny Goyal43bf11d2017-02-02 13:52:53 -08002170 getModelWriter().deleteItemFromDatabase(item);
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07002171 continue;
2172 }
2173 }
2174 }
Sunny Goyald5462aa2016-11-22 16:52:39 +05302175 workspace.addInScreenFromBind(view, item);
Sunny Goyal639e9062015-08-19 19:17:06 -07002176 if (animateIcons) {
2177 // Animate all the applications up now
2178 view.setAlpha(0f);
2179 view.setScaleX(0f);
2180 view.setScaleY(0f);
2181 bounceAnims.add(createNewAppBounceAnimation(view, i));
Sunny Goyal3be633b2016-12-08 09:59:25 -08002182 newItemsScreenId = item.screenId;
Sunny Goyal639e9062015-08-19 19:17:06 -07002183 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002184 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07002185
Sunny Goyalf0b6db72018-08-13 16:10:14 -07002186 // Animate to the correct page
2187 if (animateIcons && newItemsScreenId > -1) {
2188 AnimatorSet anim = new AnimatorSet();
2189 anim.playTogether(bounceAnims);
Jon Miranda64eb8ea2018-03-29 11:43:58 -07002190
Sunny Goyalefb7e842018-10-04 15:11:00 -07002191 int currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Sunny Goyalf0b6db72018-08-13 16:10:14 -07002192 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newItemsScreenId);
2193 final Runnable startBounceAnimRunnable = anim::start;
2194
2195 if (newItemsScreenId != currentScreenId) {
2196 // We post the animation slightly delayed to prevent slowdowns
2197 // when we are loading right after we return to launcher.
2198 mWorkspace.postDelayed(new Runnable() {
2199 public void run() {
2200 if (mWorkspace != null) {
Andy Wickham65ced1b2020-03-07 02:14:19 +00002201 closeOpenViews(false);
Sunny Goyalf0b6db72018-08-13 16:10:14 -07002202
2203 mWorkspace.snapToPage(newScreenIndex);
2204 mWorkspace.postDelayed(startBounceAnimRunnable,
2205 NEW_APPS_ANIMATION_DELAY);
Winson Chung94d67682013-09-25 16:29:40 -07002206 }
Sunny Goyalf0b6db72018-08-13 16:10:14 -07002207 }
2208 }, NEW_APPS_PAGE_MOVE_DELAY);
2209 } else {
2210 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07002211 }
Winson Chung64359a52013-07-08 17:17:08 -07002212 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04002213 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002214 }
2215
Joe Onorato9c1289c2009-08-17 11:03:03 -04002216 /**
2217 * Add the views for a widget to the workspace.
Joe Onorato9c1289c2009-08-17 11:03:03 -04002218 */
Sunny Goyala9a1a212017-08-18 01:03:21 -07002219 public void bindAppWidget(LauncherAppWidgetInfo item) {
2220 View view = inflateAppWidget(item);
2221 if (view != null) {
2222 mWorkspace.addInScreen(view, item);
2223 mWorkspace.requestLayout();
2224 }
2225 }
2226
2227 private View inflateAppWidget(LauncherAppWidgetInfo item) {
Samuel Fufaca37b8a2019-08-19 17:04:36 -07002228 if (item.hasOptionFlag(LauncherAppWidgetInfo.OPTION_SEARCH_WIDGET)) {
2229 item.providerName = QsbContainerView.getSearchComponentName(this);
2230 if (item.providerName == null) {
2231 getModelWriter().deleteItemFromDatabase(item);
2232 return null;
2233 }
2234 }
Sunny Goyal17c72fb2019-10-14 14:06:38 -07002235 final AppWidgetHostView view;
Sunny Goyal2e1efb42016-03-03 16:58:55 -08002236 if (mIsSafeModeEnabled) {
Sunny Goyal17c72fb2019-10-14 14:06:38 -07002237 view = new PendingAppWidgetHostView(this, item, mIconCache, true);
Sunny Goyald5462aa2016-11-22 16:52:39 +05302238 prepareAppWidget(view, item);
Sunny Goyalb23980c2017-08-17 07:45:25 -07002239 return view;
Sunny Goyal2e1efb42016-03-03 16:58:55 -08002240 }
2241
Winson Chung5cc62c72019-10-16 11:32:41 -07002242 Object traceToken = TraceHelper.INSTANCE.beginSection("BIND_WIDGET_id=" + item.appWidgetId);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002243
Sunny Goyal17c72fb2019-10-14 14:06:38 -07002244 try {
2245 final LauncherAppWidgetProviderInfo appWidgetInfo;
Adam Cohen59400422014-03-05 18:07:04 -08002246
Sunny Goyal17c72fb2019-10-14 14:06:38 -07002247 if (item.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY)) {
2248 // If the provider is not ready, bind as a pending widget.
2249 appWidgetInfo = null;
2250 } else if (item.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_ID_NOT_VALID)) {
2251 // The widget id is not valid. Try to find the widget based on the provider info.
2252 appWidgetInfo = mAppWidgetManager.findProvider(item.providerName, item.user);
2253 } else {
2254 appWidgetInfo = mAppWidgetManager.getLauncherAppWidgetInfo(item.appWidgetId);
Sunny Goyalff572272014-07-23 13:58:07 -07002255 }
Sunny Goyalff572272014-07-23 13:58:07 -07002256
Sunny Goyal17c72fb2019-10-14 14:06:38 -07002257 // If the provider is ready, but the width is not yet restored, try to restore it.
2258 if (!item.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY)
2259 && (item.restoreStatus != LauncherAppWidgetInfo.RESTORE_COMPLETED)) {
2260 if (appWidgetInfo == null) {
2261 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
2262 + " belongs to component " + item.providerName
2263 + ", as the provider is null");
2264 getModelWriter().deleteItemFromDatabase(item);
2265 return null;
2266 }
Sunny Goyalff572272014-07-23 13:58:07 -07002267
Sunny Goyal17c72fb2019-10-14 14:06:38 -07002268 // If we do not have a valid id, try to bind an id.
2269 if (item.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_ID_NOT_VALID)) {
2270 if (!item.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_ID_ALLOCATED)) {
2271 // Id has not been allocated yet. Allocate a new id.
2272 item.appWidgetId = mAppWidgetHost.allocateAppWidgetId();
2273 item.restoreStatus |= LauncherAppWidgetInfo.FLAG_ID_ALLOCATED;
Sunny Goyal86df1382016-08-10 15:03:22 -07002274
Sunny Goyal17c72fb2019-10-14 14:06:38 -07002275 // Also try to bind the widget. If the bind fails, the user will be shown
2276 // a click to setup UI, which will ask for the bind permission.
2277 PendingAddWidgetInfo pendingInfo = new PendingAddWidgetInfo(appWidgetInfo);
2278 pendingInfo.spanX = item.spanX;
2279 pendingInfo.spanY = item.spanY;
2280 pendingInfo.minSpanX = item.minSpanX;
2281 pendingInfo.minSpanY = item.minSpanY;
2282 Bundle options = WidgetHostViewLoader.getDefaultOptionsForWidget(this,
2283 pendingInfo);
2284
2285 boolean isDirectConfig =
2286 item.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_DIRECT_CONFIG);
2287 if (isDirectConfig && item.bindOptions != null) {
2288 Bundle newOptions = item.bindOptions.getExtras();
2289 if (options != null) {
2290 newOptions.putAll(options);
2291 }
2292 options = newOptions;
Sunny Goyal86df1382016-08-10 15:03:22 -07002293 }
Sunny Goyal17c72fb2019-10-14 14:06:38 -07002294 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
2295 item.appWidgetId, appWidgetInfo, options);
2296
2297 // We tried to bind once. If we were not able to bind, we would need to
2298 // go through the permission dialog, which means we cannot skip the config
2299 // activity.
2300 item.bindOptions = null;
2301 item.restoreStatus &= ~LauncherAppWidgetInfo.FLAG_DIRECT_CONFIG;
2302
2303 // Bind succeeded
2304 if (success) {
2305 // If the widget has a configure activity, it is still needs to set it
2306 // up, otherwise the widget is ready to go.
2307 item.restoreStatus = (appWidgetInfo.configure == null) || isDirectConfig
2308 ? LauncherAppWidgetInfo.RESTORE_COMPLETED
2309 : LauncherAppWidgetInfo.FLAG_UI_NOT_READY;
2310 }
2311
2312 getModelWriter().updateItemInDatabase(item);
Sunny Goyal86df1382016-08-10 15:03:22 -07002313 }
Sunny Goyal17c72fb2019-10-14 14:06:38 -07002314 } else if (item.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_UI_NOT_READY)
2315 && (appWidgetInfo.configure == null)) {
2316 // The widget was marked as UI not ready, but there is no configure activity to
2317 // update the UI.
2318 item.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
Sunny Goyal43bf11d2017-02-02 13:52:53 -08002319 getModelWriter().updateItemInDatabase(item);
Sunny Goyalff572272014-07-23 13:58:07 -07002320 }
Samuel Fufa9151c012020-02-24 17:06:28 -08002321 else if (item.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_UI_NOT_READY)
2322 && appWidgetInfo.configure != null) {
2323 if (mAppWidgetManager.isAppWidgetRestored(item.appWidgetId)) {
2324 item.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
2325 getModelWriter().updateItemInDatabase(item);
2326 }
2327 }
Sunny Goyal56c73602015-09-25 12:55:01 -07002328 }
2329
Sunny Goyal17c72fb2019-10-14 14:06:38 -07002330 if (item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
2331 // Verify that we own the widget
2332 if (appWidgetInfo == null) {
2333 FileLog.e(TAG, "Removing invalid widget: id=" + item.appWidgetId);
2334 getModelWriter().deleteWidgetInfo(item, getAppWidgetHost());
2335 return null;
2336 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04002337
Sunny Goyal17c72fb2019-10-14 14:06:38 -07002338 item.minSpanX = appWidgetInfo.minSpanX;
2339 item.minSpanY = appWidgetInfo.minSpanY;
2340 view = mAppWidgetHost.createView(this, item.appWidgetId, appWidgetInfo);
Samuel Fufa9151c012020-02-24 17:06:28 -08002341 } else if (!item.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_ID_NOT_VALID)
2342 && appWidgetInfo != null) {
2343 mAppWidgetHost.addPendingView(item.appWidgetId,
2344 new PendingAppWidgetHostView(this, item, mIconCache, false));
2345 view = mAppWidgetHost.createView(this, item.appWidgetId, appWidgetInfo);
Sunny Goyal17c72fb2019-10-14 14:06:38 -07002346 } else {
2347 view = new PendingAppWidgetHostView(this, item, mIconCache, false);
2348 }
2349 prepareAppWidget(view, item);
2350 } finally {
Winson Chung5cc62c72019-10-16 11:32:41 -07002351 TraceHelper.INSTANCE.endSection(traceToken);
Sunny Goyal17c72fb2019-10-14 14:06:38 -07002352 }
2353
Sunny Goyalb23980c2017-08-17 07:45:25 -07002354 return view;
Joe Onorato9c1289c2009-08-17 11:03:03 -04002355 }
2356
Sunny Goyalff572272014-07-23 13:58:07 -07002357 /**
2358 * Restores a pending widget.
2359 *
2360 * @param appWidgetId The app widget id
Sunny Goyalff572272014-07-23 13:58:07 -07002361 */
Sunny Goyald478c832016-04-01 12:04:16 -07002362 private LauncherAppWidgetInfo completeRestoreAppWidget(int appWidgetId, int finalRestoreFlag) {
Sunny Goyalff572272014-07-23 13:58:07 -07002363 LauncherAppWidgetHostView view = mWorkspace.getWidgetForAppWidgetId(appWidgetId);
2364 if ((view == null) || !(view instanceof PendingAppWidgetHostView)) {
2365 Log.e(TAG, "Widget update called, when the widget no longer exists.");
Sunny Goyald478c832016-04-01 12:04:16 -07002366 return null;
Sunny Goyalff572272014-07-23 13:58:07 -07002367 }
2368
Sunny Goyal0fc1be12014-08-11 17:05:23 -07002369 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) view.getTag();
Sunny Goyald478c832016-04-01 12:04:16 -07002370 info.restoreStatus = finalRestoreFlag;
Jon Miranda2b823f42017-05-02 18:36:18 -07002371 if (info.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
2372 info.pendingItemInfo = null;
2373 }
Sunny Goyalff572272014-07-23 13:58:07 -07002374
Sunny Goyalba47faa2017-10-04 16:50:57 -07002375 if (((PendingAppWidgetHostView) view).isReinflateIfNeeded()) {
Sunny Goyal29947f02017-12-18 13:49:44 -08002376 view.reInflate();
Sunny Goyalba47faa2017-10-04 16:50:57 -07002377 }
2378
Sunny Goyal43bf11d2017-02-02 13:52:53 -08002379 getModelWriter().updateItemInDatabase(info);
Sunny Goyald478c832016-04-01 12:04:16 -07002380 return info;
Sunny Goyalff572272014-07-23 13:58:07 -07002381 }
2382
Adam Cohen1462de32012-07-24 22:34:36 -07002383 public void onPageBoundSynchronously(int page) {
Sunny Goyalf4aceab2017-12-06 16:16:31 -08002384 mSynchronouslyBoundPage = page;
Sunny Goyala7a5bf32020-01-05 15:35:29 +05302385 mWorkspace.setCurrentPage(page);
2386 mPageToBindSynchronously = PagedView.INVALID_PAGE;
Adam Cohen1462de32012-07-24 22:34:36 -07002387 }
2388
Sunny Goyal527c7d32015-08-28 15:19:36 -07002389 @Override
2390 public void executeOnNextDraw(ViewOnDrawExecutor executor) {
Sunny Goyal6b6d0a32019-08-05 17:19:32 -07002391 clearPendingBinds();
Sunny Goyal527c7d32015-08-28 15:19:36 -07002392 mPendingExecutor = executor;
Sunny Goyal60180b02018-02-07 12:56:30 -08002393 if (!isInState(ALL_APPS)) {
vadimtd4c90e12019-06-04 13:59:43 -07002394 mAppsView.getAppsStore().enableDeferUpdates(AllAppsStore.DEFER_UPDATES_NEXT_DRAW);
2395 mPendingExecutor.execute(() -> mAppsView.getAppsStore().disableDeferUpdates(
2396 AllAppsStore.DEFER_UPDATES_NEXT_DRAW));
Sunny Goyal60180b02018-02-07 12:56:30 -08002397 }
2398
Sunny Goyal527c7d32015-08-28 15:19:36 -07002399 executor.attachTo(this);
2400 }
2401
2402 public void clearPendingExecutor(ViewOnDrawExecutor executor) {
2403 if (mPendingExecutor == executor) {
2404 mPendingExecutor = null;
2405 }
2406 }
2407
Sunny Goyalb5b9ad62016-04-02 11:23:39 -07002408 @Override
2409 public void finishFirstPageBind(final ViewOnDrawExecutor executor) {
Sunny Goyal6001ea22018-05-10 16:31:00 -07002410 AlphaProperty property = mDragLayer.getAlphaProperty(ALPHA_INDEX_LAUNCHER_LOAD);
2411 if (property.getValue() < 1) {
2412 ObjectAnimator anim = ObjectAnimator.ofFloat(property, MultiValueAlpha.VALUE, 1);
2413 if (executor != null) {
2414 anim.addListener(new AnimatorListenerAdapter() {
2415 @Override
2416 public void onAnimationEnd(Animator animation) {
2417 executor.onLoadAnimationCompleted();
2418 }
2419 });
2420 }
2421 anim.start();
Sunny Goyal29947f02017-12-18 13:49:44 -08002422 } else if (executor != null) {
2423 executor.onLoadAnimationCompleted();
Sunny Goyalb5b9ad62016-04-02 11:23:39 -07002424 }
2425 }
2426
Joe Onorato9c1289c2009-08-17 11:03:03 -04002427 /**
2428 * Callback saying that there aren't any more items to bind.
2429 *
2430 * Implementation of the method from LauncherModel.Callbacks.
2431 */
Tonyf80e8932018-12-21 11:58:04 -08002432 public void finishBindingItems(int pageBoundFirst) {
Winson Chung5cc62c72019-10-16 11:32:41 -07002433 Object traceToken = TraceHelper.INSTANCE.beginSection("finishBindingItems");
Adam Cohen1462de32012-07-24 22:34:36 -07002434 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04002435
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002436 setWorkspaceLoading(false);
Adam Cohendb364c32014-05-20 14:23:40 -07002437
Sunny Goyal2100c782016-08-22 16:00:03 -07002438 if (mPendingActivityResult != null) {
2439 handleActivityResult(mPendingActivityResult.requestCode,
2440 mPendingActivityResult.resultCode, mPendingActivityResult.data);
2441 mPendingActivityResult = null;
Adam Cohendb364c32014-05-20 14:23:40 -07002442 }
2443
Sunny Goyal60e68c92020-08-12 13:59:27 -07002444 ItemInstallQueue.INSTANCE.get(this)
2445 .resumeModelPush(FLAG_LOADER_RUNNING);
Adam Cohen9211d422014-10-07 18:14:53 -07002446
Tonyf80e8932018-12-21 11:58:04 -08002447 // When undoing the removal of the last item on a page, return to that page.
Tony Wickham03f27012019-04-25 14:22:54 -07002448 // Since we are just resetting the current page without user interaction,
2449 // override the previous page so we don't log the page switch.
2450 mWorkspace.setCurrentPage(pageBoundFirst, pageBoundFirst /* overridePrevPage */);
Sunny Goyala7a5bf32020-01-05 15:35:29 +05302451 mPageToBindSynchronously = PagedView.INVALID_PAGE;
Tony Wickham6a71a5b2018-08-21 11:40:23 -07002452
Sunny Goyalac6f69f2019-08-16 11:59:55 -07002453 // Cache one page worth of icons
2454 getViewCache().setCacheSize(R.layout.folder_application,
2455 mDeviceProfile.inv.numFolderColumns * mDeviceProfile.inv.numFolderRows);
2456 getViewCache().setCacheSize(R.layout.folder_page, 2);
2457
Winson Chung5cc62c72019-10-16 11:32:41 -07002458 TraceHelper.INSTANCE.endSection(traceToken);
Winson Chungf0c6ae02012-03-21 16:10:31 -07002459 }
2460
Winson Chunga2413752012-04-03 14:22:34 -07002461 private boolean canRunNewAppsAnimation() {
Sunny Goyal9b180102020-03-11 10:02:29 -07002462 if (mDragController.isDragging()) {
2463 return false;
2464 } else {
Riddle Hsu979da642020-09-22 21:52:40 +08002465 return (SystemClock.uptimeMillis() - mLastTouchUpTime)
Sunny Goyal9b180102020-03-11 10:02:29 -07002466 > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000);
2467 }
Winson Chunga2413752012-04-03 14:22:34 -07002468 }
2469
Winson Chungc9168342013-06-26 14:54:55 -07002470 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
Sunny Goyalf0b6db72018-08-13 16:10:14 -07002471 ValueAnimator bounceAnim = new PropertyListBuilder().alpha(1).scale(1).build(v)
Sunny Goyal60e68c92020-08-12 13:59:27 -07002472 .setDuration(ItemInstallQueue.NEW_SHORTCUT_BOUNCE_DURATION);
2473 bounceAnim.setStartDelay(i * ItemInstallQueue.NEW_SHORTCUT_STAGGER_DELAY);
Sunny Goyal5a1f53b2015-05-27 10:24:24 -07002474 bounceAnim.setInterpolator(new OvershootInterpolator(BOUNCE_ANIMATION_TENSION));
Winson Chungc9168342013-06-26 14:54:55 -07002475 return bounceAnim;
2476 }
2477
Pinyao Tingc9074272019-11-11 11:51:44 -08002478 private void announceForAccessibility(@StringRes int stringResId) {
2479 getDragLayer().announceForAccessibility(getString(stringResId));
2480 }
2481
Amith Yamasani6d7fe502010-11-16 09:05:07 -08002482 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04002483 * Add the icons for all apps.
2484 *
2485 * Implementation of the method from LauncherModel.Callbacks.
2486 */
Sunny Goyal28daf4a2020-06-08 17:06:09 -07002487 @Override
2488 public void bindAllApplications(AppInfo[] apps, int flags) {
2489 mAppsView.getAppsStore().setApps(apps, flags);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002490 }
2491
2492 /**
Zak Cohen658c67a2018-10-19 14:21:05 -07002493 * Copies LauncherModel's map of activities to shortcut counts to Launcher's. This is necessary
Tony Wickhambfbf7f92016-05-19 11:19:39 -07002494 * because LauncherModel's map is updated in the background, while Launcher runs on the UI.
2495 */
2496 @Override
Zak Cohen658c67a2018-10-19 14:21:05 -07002497 public void bindDeepShortcutMap(HashMap<ComponentKey, Integer> deepShortcutMapCopy) {
Tony Wickham010d2552017-01-20 08:15:28 -08002498 mPopupDataProvider.setDeepShortcutMap(deepShortcutMapCopy);
Tony Wickham1bce7fd2016-04-28 17:39:03 -07002499 }
2500
Sunny Goyal4390ace2014-10-13 11:33:11 -07002501 @Override
Sunny Goyal29947f02017-12-18 13:49:44 -08002502 public void bindPromiseAppProgressUpdated(PromiseAppInfo app) {
Sunny Goyal60180b02018-02-07 12:56:30 -08002503 mAppsView.getAppsStore().updatePromiseAppProgress(app);
Mario Bertschler08ffaae2017-03-20 11:30:27 -07002504 }
2505
2506 @Override
Sunny Goyal29947f02017-12-18 13:49:44 -08002507 public void bindWidgetsRestored(ArrayList<LauncherAppWidgetInfo> widgets) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07002508 mWorkspace.widgetsRestored(widgets);
2509 }
2510
Joe Onorato9c1289c2009-08-17 11:03:03 -04002511 /**
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07002512 * Some shortcuts were updated in the background.
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07002513 * Implementation of the method from LauncherModel.Callbacks.
Sunny Goyald3b87ef2016-07-28 12:11:54 -07002514 *
2515 * @param updated list of shortcuts which have changed.
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07002516 */
Sunny Goyal4390ace2014-10-13 11:33:11 -07002517 @Override
Sunny Goyal28f50752020-07-21 14:15:13 -07002518 public void bindWorkspaceItemsChanged(List<WorkspaceItemInfo> updated) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07002519 if (!updated.isEmpty()) {
2520 mWorkspace.updateShortcuts(updated);
2521 }
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07002522 }
2523
2524 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05002525 * Update the state of a package, typically related to install state.
2526 *
2527 * Implementation of the method from LauncherModel.Callbacks.
2528 */
Sunny Goyale755d462014-07-22 13:48:29 -07002529 @Override
Sunny Goyal29947f02017-12-18 13:49:44 -08002530 public void bindRestoreItemsChange(HashSet<ItemInfo> updates) {
Sunny Goyal756adbc2015-04-16 15:20:51 -07002531 mWorkspace.updateRestoreItems(updates);
Sunny Goyala22666f2014-09-18 13:25:15 -07002532 }
2533
2534 /**
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07002535 * A package was uninstalled/updated. We take both the super set of packageNames
Winson Chung83892cc2013-05-01 16:53:33 -07002536 * in addition to specific applications to remove, the reason being that
2537 * this can be called when a package is updated as well. In that scenario,
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07002538 * we only remove specific components from the workspace and hotseat, where as
Winson Chung83892cc2013-05-01 16:53:33 -07002539 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04002540 */
Sunny Goyal1a745e82014-10-02 15:58:31 -07002541 @Override
Sunny Goyal6e13dd32017-08-17 03:01:19 -07002542 public void bindWorkspaceComponentsRemoved(final ItemInfoMatcher matcher) {
Sunny Goyal6e13dd32017-08-17 03:01:19 -07002543 mWorkspace.removeItemsByMatcher(matcher);
2544 mDragController.onAppsRemoved(matcher);
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07002545 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07002546
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07002547 @Override
Sunny Goyalf1fbc3f2017-10-10 15:21:15 -07002548 public void bindAllWidgets(final ArrayList<WidgetListRowEntry> allWidgets) {
2549 mPopupDataProvider.setAllWidgets(allWidgets);
Tony Wickham26b17462017-03-20 17:12:24 -07002550 }
2551
Tony Wickham86222d22017-03-29 15:30:43 -07002552 /**
2553 * @param packageUser if null, refreshes all widgets and shortcuts, otherwise only
2554 * refreshes the widgets and shortcuts associated with the given package/user
2555 */
2556 public void refreshAndBindWidgetsForPackageUser(@Nullable PackageUserKey packageUser) {
Sunny Goyalc6e97692017-06-02 13:46:55 -07002557 mModel.refreshAndBindWidgetsAndShortcuts(packageUser);
Sunny Goyal2e1efb42016-03-03 16:58:55 -08002558 }
2559
Winson Chung80baf5a2010-08-09 16:03:15 -07002560 /**
Hyunyoung Song3c7d9cb2017-01-30 15:11:27 -08002561 * $ adb shell dumpsys activity com.android.launcher3.Launcher [--all]
Joe Onoratobe386092009-11-17 17:32:16 -08002562 */
Adam Cohen16d7ffc2011-10-05 17:49:14 -07002563 @Override
2564 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
2565 super.dump(prefix, fd, writer, args);
Sunny Goyala1365452015-10-01 15:46:24 -07002566
Hyunyoung Song3c7d9cb2017-01-30 15:11:27 -08002567 if (args.length > 0 && TextUtils.equals(args[0], "--all")) {
2568 writer.println(prefix + "Workspace Items");
Sunny Goyal7ce471b2017-08-02 03:37:39 -07002569 for (int i = 0; i < mWorkspace.getPageCount(); i++) {
Hyunyoung Song3c7d9cb2017-01-30 15:11:27 -08002570 writer.println(prefix + " Homescreen " + i);
2571
2572 ViewGroup layout = ((CellLayout) mWorkspace.getPageAt(i)).getShortcutsAndWidgets();
2573 for (int j = 0; j < layout.getChildCount(); j++) {
2574 Object tag = layout.getChildAt(j).getTag();
2575 if (tag != null) {
2576 writer.println(prefix + " " + tag.toString());
2577 }
2578 }
2579 }
2580
2581 writer.println(prefix + " Hotseat");
Sunny Goyal876e4622018-11-02 13:50:40 -07002582 ViewGroup layout = mHotseat.getShortcutsAndWidgets();
Sunny Goyala1365452015-10-01 15:46:24 -07002583 for (int j = 0; j < layout.getChildCount(); j++) {
2584 Object tag = layout.getChildAt(j).getTag();
2585 if (tag != null) {
2586 writer.println(prefix + " " + tag.toString());
2587 }
Adam Cohen4caf2982013-08-20 18:54:31 -07002588 }
Sunny Goyala1365452015-10-01 15:46:24 -07002589 }
2590
Hyunyoung Song3c7d9cb2017-01-30 15:11:27 -08002591 writer.println(prefix + "Misc:");
Winson Chungef528762019-09-06 12:05:52 -07002592 dumpMisc(prefix + "\t", writer);
2593 writer.println(prefix + "\tmWorkspaceLoading=" + mWorkspaceLoading);
2594 writer.println(prefix + "\tmPendingRequestArgs=" + mPendingRequestArgs
2595 + " mPendingActivityResult=" + mPendingActivityResult);
2596 writer.println(prefix + "\tmRotationHelper: " + mRotationHelper);
2597 writer.println(prefix + "\tmAppWidgetHost.isListening: " + mAppWidgetHost.isListening());
2598
Tony Wickham646e4482020-04-06 17:25:53 -07002599 // Extra logging for general debugging
Hyunyoung Songa310a802019-04-25 13:57:16 -07002600 mDragLayer.dump(prefix, writer);
2601 mStateManager.dump(prefix, writer);
Tony Wickham646e4482020-04-06 17:25:53 -07002602 mPopupDataProvider.dump(prefix, writer);
Sunny Goyal2bba1902018-02-27 12:20:50 -08002603
2604 try {
2605 FileLog.flushAll(writer);
2606 } catch (Exception e) {
2607 // Ignore
2608 }
Hyunyoung Song3c7d9cb2017-01-30 15:11:27 -08002609
2610 mModel.dumpState(prefix, fd, writer, args);
Sunny Goyala1365452015-10-01 15:46:24 -07002611
Adam Cohen9211d422014-10-07 18:14:53 -07002612 if (mLauncherCallbacks != null) {
2613 mLauncherCallbacks.dump(prefix, fd, writer, args);
2614 }
Sunny Goyalb1d7de22019-09-06 10:36:54 -07002615 mOverlayManager.dump(prefix, writer);
Adam Cohen16d7ffc2011-10-05 17:49:14 -07002616 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07002617
Sunny Goyal66b24572016-09-21 15:57:55 -07002618 @Override
Sunny Goyal66b24572016-09-21 15:57:55 -07002619 public void onProvideKeyboardShortcuts(
2620 List<KeyboardShortcutGroup> data, Menu menu, int deviceId) {
2621
2622 ArrayList<KeyboardShortcutInfo> shortcutInfos = new ArrayList<>();
Sunny Goyal3e3f44c2017-10-23 17:14:52 -07002623 if (isInState(NORMAL)) {
Sunny Goyal66b24572016-09-21 15:57:55 -07002624 shortcutInfos.add(new KeyboardShortcutInfo(getString(R.string.all_apps_button_label),
2625 KeyEvent.KEYCODE_A, KeyEvent.META_CTRL_ON));
Vadim Tryshev74c261c2018-06-12 13:44:43 -07002626 shortcutInfos.add(new KeyboardShortcutInfo(getString(R.string.widget_button_text),
2627 KeyEvent.KEYCODE_W, KeyEvent.META_CTRL_ON));
Sunny Goyal66b24572016-09-21 15:57:55 -07002628 }
Vadim Tryshev3455f8d2018-05-11 20:02:20 -07002629 final View currentFocus = getCurrentFocus();
2630 if (currentFocus != null) {
2631 if (new CustomActionsPopup(this, currentFocus).canShow()) {
2632 shortcutInfos.add(new KeyboardShortcutInfo(getString(R.string.custom_actions),
2633 KeyEvent.KEYCODE_O, KeyEvent.META_CTRL_ON));
2634 }
2635 if (currentFocus.getTag() instanceof ItemInfo
Pinyao Ting49a3e692019-07-26 12:28:38 -07002636 && ShortcutUtil.supportsShortcuts((ItemInfo) currentFocus.getTag())) {
Vadim Tryshev3455f8d2018-05-11 20:02:20 -07002637 shortcutInfos.add(new KeyboardShortcutInfo(
2638 getString(R.string.shortcuts_menu_with_notifications_description),
2639 KeyEvent.KEYCODE_S, KeyEvent.META_CTRL_ON));
2640 }
Sunny Goyal66b24572016-09-21 15:57:55 -07002641 }
2642 if (!shortcutInfos.isEmpty()) {
2643 data.add(new KeyboardShortcutGroup(getString(R.string.home_screen), shortcutInfos));
2644 }
2645
2646 super.onProvideKeyboardShortcuts(data, menu, deviceId);
2647 }
2648
2649 @Override
2650 public boolean onKeyShortcut(int keyCode, KeyEvent event) {
2651 if (event.hasModifiers(KeyEvent.META_CTRL_ON)) {
2652 switch (keyCode) {
2653 case KeyEvent.KEYCODE_A:
Sunny Goyal3e3f44c2017-10-23 17:14:52 -07002654 if (isInState(NORMAL)) {
2655 getStateManager().goToState(ALL_APPS);
Sunny Goyal66b24572016-09-21 15:57:55 -07002656 return true;
2657 }
2658 break;
2659 case KeyEvent.KEYCODE_S: {
2660 View focusedView = getCurrentFocus();
2661 if (focusedView instanceof BubbleTextView
2662 && focusedView.getTag() instanceof ItemInfo
2663 && mAccessibilityDelegate.performAction(focusedView,
Samuel Fufaca37b8a2019-08-19 17:04:36 -07002664 (ItemInfo) focusedView.getTag(),
2665 LauncherAccessibilityDelegate.DEEP_SHORTCUTS)) {
Sunny Goyal00ac9202017-11-09 15:24:06 -08002666 PopupContainerWithArrow.getOpen(this).requestFocus();
Sunny Goyal66b24572016-09-21 15:57:55 -07002667 return true;
2668 }
2669 break;
2670 }
2671 case KeyEvent.KEYCODE_O:
2672 if (new CustomActionsPopup(this, getCurrentFocus()).show()) {
2673 return true;
2674 }
2675 break;
Vadim Tryshev74c261c2018-06-12 13:44:43 -07002676 case KeyEvent.KEYCODE_W:
2677 if (isInState(NORMAL)) {
2678 OptionsPopupView.openWidgets(this);
2679 return true;
2680 }
2681 break;
Sunny Goyal66b24572016-09-21 15:57:55 -07002682 }
2683 }
2684 return super.onKeyShortcut(keyCode, event);
2685 }
2686
Vadim Tryshev646a0dd2018-02-05 16:27:50 -08002687 @Override
2688 public boolean onKeyUp(int keyCode, KeyEvent event) {
2689 if (keyCode == KeyEvent.KEYCODE_MENU) {
2690 // KEYCODE_MENU is sent by some tests, for example
2691 // LauncherJankTests#testWidgetsContainerFling. Don't just remove its handling.
2692 if (!mDragController.isDragging() && !mWorkspace.isSwitchingState() &&
2693 isInState(NORMAL)) {
2694 // Close any open floating views.
Andy Wickham65ced1b2020-03-07 02:14:19 +00002695 closeOpenViews();
Vadim Tryshev646a0dd2018-02-05 16:27:50 -08002696
2697 // Setting the touch point to (-1, -1) will show the options popup in the center of
2698 // the screen.
vadimtbc5d7e62019-12-09 13:53:05 -08002699 if (Utilities.IS_RUNNING_IN_TEST_HARNESS) {
2700 Log.d(TestProtocol.PERMANENT_DIAG_TAG, "Opening options popup on key up");
2701 }
Sunny Goyal2fd7a8b2018-03-30 17:10:13 -07002702 OptionsPopupView.showDefaultOptions(this, -1, -1);
Vadim Tryshev646a0dd2018-02-05 16:27:50 -08002703 }
2704 return true;
2705 }
2706 return super.onKeyUp(keyCode, event);
2707 }
2708
Sunny Goyal35e7d382020-05-08 13:37:58 -07002709 protected StateHandler<LauncherState>[] createStateHandlers() {
Sunny Goyal284a6cf2020-03-24 12:41:56 -07002710 return new StateHandler[] { getAllAppsController(), getWorkspace() };
Andrew Sappersteinabef55a2016-06-19 12:49:00 -07002711 }
2712
Sunny Goyal210e1742019-10-17 12:05:38 -07002713 public TouchController[] createTouchControllers() {
2714 return new TouchController[] {getDragController(), new AllAppsSwipeController(this)};
2715 }
2716
Sunny Goyal210e1742019-10-17 12:05:38 -07002717 public void useFadeOutAnimationForLauncherStart(CancellationSignal signal) { }
2718
2719 public void onDragLayerHierarchyChanged() { }
2720
Vinit Nayakf9b585b2019-07-10 14:25:32 -07002721 @Override
2722 public void returnToHomescreen() {
2723 super.returnToHomescreen();
2724 getStateManager().goToState(LauncherState.NORMAL);
2725 }
2726
Andy Wickham65ced1b2020-03-07 02:14:19 +00002727 private void closeOpenViews() {
2728 closeOpenViews(true);
2729 }
2730
2731 protected void closeOpenViews(boolean animate) {
2732 AbstractFloatingView.closeAllOpenViews(this, animate);
2733 }
2734
Sunny Goyal3a1eadd2019-10-23 17:44:27 -07002735 public Stream<SystemShortcut.Factory> getSupportedShortcuts() {
Samuel Fufa5cf3e862020-02-03 20:22:54 -08002736 return Stream.of(APP_INFO, WIDGETS, INSTALL);
Sunny Goyal3a1eadd2019-10-23 17:44:27 -07002737 }
2738
Sunny Goyalf2393f12020-04-01 20:13:12 -07002739
2740 /**
2741 * @see LauncherState#getOverviewScaleAndOffset(Launcher)
2742 */
2743 public float[] getNormalOverviewScaleAndOffset() {
2744 return new float[] {NO_SCALE, NO_OFFSET};
2745 }
2746
Sunny Goyal210e1742019-10-17 12:05:38 -07002747 public static Launcher getLauncher(Context context) {
Winson Chung8687bc22020-02-27 23:34:24 -08002748 return fromContext(context);
Sunny Goyal210e1742019-10-17 12:05:38 -07002749 }
2750
Sunny Goyal3dce5f32017-10-05 11:40:05 -07002751 /**
Sunny Goyalab770a12018-11-14 15:17:26 -08002752 * Just a wrapper around the type cast to allow easier tracking of calls.
2753 */
2754 public static <T extends Launcher> T cast(ActivityContext activityContext) {
2755 return (T) activityContext;
2756 }
2757
Sunny Goyalf2393f12020-04-01 20:13:12 -07002758
Sunny Goyalab770a12018-11-14 15:17:26 -08002759 /**
Sunny Goyal3dce5f32017-10-05 11:40:05 -07002760 * Callback for listening for onResume
2761 */
2762 public interface OnResumeCallback {
2763
2764 void onLauncherResume();
2765 }
Schneider Victor-tulias25ecae12020-09-14 14:07:38 -07002766
2767 /**
2768 * Cross-fades the launcher's updated appearance with its previous appearance.
2769 *
2770 * This method is used to cross-fade UI updates on activity creation, specifically dark mode
2771 * updates.
2772 */
2773 private void crossFadeWithPreviousAppearance() {
2774 Bitmap previousAppearanceBitmap = (Bitmap) getLastNonConfigurationInstance();
2775
2776 if (previousAppearanceBitmap == null) {
2777 return;
2778 }
2779
2780 ImageView crossFadeHelper = new ImageView(this);
2781
2782 crossFadeHelper.setImageBitmap(previousAppearanceBitmap);
2783 crossFadeHelper.setImportantForAccessibility(IMPORTANT_FOR_ACCESSIBILITY_NO);
2784
2785 InsettableFrameLayout.LayoutParams layoutParams = new InsettableFrameLayout.LayoutParams(
2786 InsettableFrameLayout.LayoutParams.MATCH_PARENT,
2787 InsettableFrameLayout.LayoutParams.MATCH_PARENT);
2788
2789 layoutParams.ignoreInsets = true;
2790
2791 crossFadeHelper.setLayoutParams(layoutParams);
2792
2793 getRootView().addView(crossFadeHelper);
2794
2795 crossFadeHelper
2796 .animate()
2797 .setDuration(THEME_CROSS_FADE_ANIMATION_DURATION)
2798 .alpha(0f)
2799 .withEndAction(() -> getRootView().removeView(crossFadeHelper))
2800 .start();
2801 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002802}