The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1 | /* |
| 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 Sandler | 325dc23 | 2013-06-05 22:57:57 -0400 | [diff] [blame] | 17 | package com.android.launcher3; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 18 | |
Sunny Goyal | f8d56fc | 2018-01-31 15:18:11 -0800 | [diff] [blame] | 19 | import static android.content.pm.ActivityInfo.CONFIG_ORIENTATION; |
| 20 | import static android.content.pm.ActivityInfo.CONFIG_SCREEN_SIZE; |
Sunny Goyal | 6c0c61a | 2020-12-08 19:19:56 -0800 | [diff] [blame] | 21 | import static android.content.pm.ActivityInfo.CONFIG_UI_MODE; |
Schneider Victor-tulias | 25ecae1 | 2020-09-14 14:07:38 -0700 | [diff] [blame] | 22 | import static android.view.View.IMPORTANT_FOR_ACCESSIBILITY_NO; |
Sunny Goyal | 8f96546 | 2020-04-23 19:00:36 -0700 | [diff] [blame] | 23 | import static android.view.accessibility.AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED; |
Vinit Nayak | 48b2802 | 2020-04-27 20:48:49 +0000 | [diff] [blame] | 24 | |
Pinyao Ting | a74b63a | 2019-07-17 23:26:06 -0700 | [diff] [blame] | 25 | import static com.android.launcher3.AbstractFloatingView.TYPE_ALL; |
Sunny Goyal | 30ac97d | 2020-06-24 23:47:46 -0700 | [diff] [blame] | 26 | import static com.android.launcher3.AbstractFloatingView.TYPE_ICON_SURFACE; |
Pinyao Ting | a74b63a | 2019-07-17 23:26:06 -0700 | [diff] [blame] | 27 | import static com.android.launcher3.AbstractFloatingView.TYPE_REBIND_SAFE; |
Tony Wickham | 6a71a5b | 2018-08-21 11:40:23 -0700 | [diff] [blame] | 28 | import static com.android.launcher3.AbstractFloatingView.TYPE_SNACKBAR; |
Sunny Goyal | 4c7f215 | 2017-10-17 17:17:16 -0700 | [diff] [blame] | 29 | import static com.android.launcher3.LauncherAnimUtils.SPRING_LOADED_EXIT_DELAY; |
Sunny Goyal | 3e3f44c | 2017-10-23 17:14:52 -0700 | [diff] [blame] | 30 | import static com.android.launcher3.LauncherState.ALL_APPS; |
Sunny Goyal | 8f96546 | 2020-04-23 19:00:36 -0700 | [diff] [blame] | 31 | import static com.android.launcher3.LauncherState.FLAG_CLOSE_POPUPS; |
| 32 | import static com.android.launcher3.LauncherState.FLAG_MULTI_PAGE; |
| 33 | import static com.android.launcher3.LauncherState.FLAG_NON_INTERACTIVE; |
Sunny Goyal | 3e3f44c | 2017-10-23 17:14:52 -0700 | [diff] [blame] | 34 | import static com.android.launcher3.LauncherState.NORMAL; |
Sunny Goyal | f2393f1 | 2020-04-01 20:13:12 -0700 | [diff] [blame] | 35 | import static com.android.launcher3.LauncherState.NO_OFFSET; |
| 36 | import static com.android.launcher3.LauncherState.NO_SCALE; |
Sunny Goyal | 8f96546 | 2020-04-23 19:00:36 -0700 | [diff] [blame] | 37 | import static com.android.launcher3.LauncherState.SPRING_LOADED; |
Sunny Goyal | b1d7de2 | 2019-09-06 10:36:54 -0700 | [diff] [blame] | 38 | import static com.android.launcher3.Utilities.postAsyncCallback; |
Sunny Goyal | 384b578 | 2021-02-09 22:50:02 -0800 | [diff] [blame] | 39 | import static com.android.launcher3.accessibility.LauncherAccessibilityDelegate.getSupportedActions; |
Sunny Goyal | 6001ea2 | 2018-05-10 16:31:00 -0700 | [diff] [blame] | 40 | import static com.android.launcher3.dragndrop.DragLayer.ALPHA_INDEX_LAUNCHER_LOAD; |
Hyunyoung Song | 801f81f | 2020-06-19 02:58:53 -0700 | [diff] [blame] | 41 | import static com.android.launcher3.logging.StatsLogManager.LAUNCHER_STATE_BACKGROUND; |
Hyunyoung Song | 95786e0 | 2020-09-15 00:34:10 -0700 | [diff] [blame] | 42 | import static com.android.launcher3.logging.StatsLogManager.LAUNCHER_STATE_HOME; |
thiruram | c96873c | 2021-02-11 15:13:47 -0800 | [diff] [blame] | 43 | import static com.android.launcher3.logging.StatsLogManager.LauncherEvent.LAUNCHER_ALLAPPS_ENTRY; |
thiruram | 9f53d61 | 2021-02-24 10:54:01 -0800 | [diff] [blame] | 44 | import static com.android.launcher3.logging.StatsLogManager.LauncherEvent.LAUNCHER_ALLAPPS_ENTRY_WITH_DEVICE_SEARCH; |
thiruram | c96873c | 2021-02-11 15:13:47 -0800 | [diff] [blame] | 45 | import static com.android.launcher3.logging.StatsLogManager.LauncherEvent.LAUNCHER_ALLAPPS_EXIT; |
Hyunyoung Song | 801f81f | 2020-06-19 02:58:53 -0700 | [diff] [blame] | 46 | import static com.android.launcher3.logging.StatsLogManager.LauncherEvent.LAUNCHER_ONRESUME; |
| 47 | import static com.android.launcher3.logging.StatsLogManager.LauncherEvent.LAUNCHER_ONSTOP; |
Sunny Goyal | 60e68c9 | 2020-08-12 13:59:27 -0700 | [diff] [blame] | 48 | import static com.android.launcher3.model.ItemInstallQueue.FLAG_ACTIVITY_PAUSED; |
| 49 | import static com.android.launcher3.model.ItemInstallQueue.FLAG_DRAG_AND_DROP; |
| 50 | import static com.android.launcher3.model.ItemInstallQueue.FLAG_LOADER_RUNNING; |
Sunny Goyal | 3a1eadd | 2019-10-23 17:44:27 -0700 | [diff] [blame] | 51 | import static com.android.launcher3.popup.SystemShortcut.APP_INFO; |
Sunny Goyal | 3a1eadd | 2019-10-23 17:44:27 -0700 | [diff] [blame] | 52 | import static com.android.launcher3.popup.SystemShortcut.INSTALL; |
| 53 | import static com.android.launcher3.popup.SystemShortcut.WIDGETS; |
Sunny Goyal | 8f96546 | 2020-04-23 19:00:36 -0700 | [diff] [blame] | 54 | import static com.android.launcher3.states.RotationHelper.REQUEST_LOCK; |
Sunny Goyal | be8c340 | 2019-05-22 15:17:52 -0700 | [diff] [blame] | 55 | import static com.android.launcher3.states.RotationHelper.REQUEST_NONE; |
Sunny Goyal | 326403e | 2017-10-02 12:45:10 -0700 | [diff] [blame] | 56 | |
Gilles Debunne | dd6c992 | 2010-10-25 11:23:41 -0700 | [diff] [blame] | 57 | import android.animation.Animator; |
Sunny Goyal | 6001ea2 | 2018-05-10 16:31:00 -0700 | [diff] [blame] | 58 | import android.animation.AnimatorListenerAdapter; |
Gilles Debunne | dd6c992 | 2010-10-25 11:23:41 -0700 | [diff] [blame] | 59 | import android.animation.AnimatorSet; |
Sunny Goyal | 6001ea2 | 2018-05-10 16:31:00 -0700 | [diff] [blame] | 60 | import android.animation.ObjectAnimator; |
Gilles Debunne | dd6c992 | 2010-10-25 11:23:41 -0700 | [diff] [blame] | 61 | import android.animation.ValueAnimator; |
Adam Cohen | 0b39535 | 2014-06-09 22:54:36 +0000 | [diff] [blame] | 62 | import android.annotation.TargetApi; |
Adam Cohen | 0cf2a7c | 2011-11-08 15:07:01 -0800 | [diff] [blame] | 63 | import android.appwidget.AppWidgetHostView; |
Michael Jurka | af44209 | 2010-06-10 17:01:57 -0700 | [diff] [blame] | 64 | import android.appwidget.AppWidgetManager; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 65 | import android.content.ActivityNotFoundException; |
Joe Onorato | 2ca0ae7 | 2009-11-10 13:14:13 -0800 | [diff] [blame] | 66 | import android.content.BroadcastReceiver; |
Michael Jurka | e326f18 | 2011-11-21 14:05:46 -0800 | [diff] [blame] | 67 | import android.content.ComponentCallbacks2; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 68 | import android.content.Context; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 69 | import android.content.Intent; |
Winson Chung | f0ea4d3 | 2011-06-06 14:27:16 -0700 | [diff] [blame] | 70 | import android.content.IntentFilter; |
Adam Cohen | 173f711 | 2015-03-27 15:14:00 -0700 | [diff] [blame] | 71 | import android.content.IntentSender; |
Winson Chung | 82f5553 | 2011-08-09 14:14:23 -0700 | [diff] [blame] | 72 | import android.content.SharedPreferences; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 73 | import android.content.pm.PackageManager; |
Sunny Goyal | f8d56fc | 2018-01-31 15:18:11 -0800 | [diff] [blame] | 74 | import android.content.res.Configuration; |
Adam Cohen | 3f9c971 | 2014-10-31 11:48:25 -0700 | [diff] [blame] | 75 | import android.database.sqlite.SQLiteDatabase; |
Schneider Victor-tulias | 25ecae1 | 2020-09-14 14:07:38 -0700 | [diff] [blame] | 76 | import android.graphics.Bitmap; |
Tony Wickham | 1906cc3 | 2021-02-11 11:55:24 -0800 | [diff] [blame] | 77 | import android.graphics.Rect; |
Adam Cohen | 0f668f3 | 2014-09-08 19:54:17 +0200 | [diff] [blame] | 78 | import android.os.Build; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 79 | import android.os.Bundle; |
Sunny Goyal | 210e174 | 2019-10-17 12:05:38 -0700 | [diff] [blame] | 80 | import android.os.CancellationSignal; |
Sunny Goyal | f1fbc3f | 2017-10-10 15:21:15 -0700 | [diff] [blame] | 81 | import android.os.Parcelable; |
Sunny Goyal | 7c74e4a | 2016-12-15 15:53:17 -0800 | [diff] [blame] | 82 | import android.os.Process; |
Winson Chung | a241375 | 2012-04-03 14:22:34 -0700 | [diff] [blame] | 83 | import android.os.StrictMode; |
Riddle Hsu | 979da64 | 2020-09-22 21:52:40 +0800 | [diff] [blame] | 84 | import android.os.SystemClock; |
Michael Jurka | a33411c | 2012-06-14 16:18:21 -0700 | [diff] [blame] | 85 | import android.text.TextUtils; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 86 | import android.text.method.TextKeyListener; |
Joe Onorato | 7c312c1 | 2009-08-13 21:36:53 -0700 | [diff] [blame] | 87 | import android.util.Log; |
Sunny Goyal | f1fbc3f | 2017-10-10 15:21:15 -0700 | [diff] [blame] | 88 | import android.util.SparseArray; |
Adam Cohen | 96d30a1 | 2013-07-16 18:13:21 -0700 | [diff] [blame] | 89 | import android.view.KeyEvent; |
Sunny Goyal | 66b2457 | 2016-09-21 15:57:55 -0700 | [diff] [blame] | 90 | import android.view.KeyboardShortcutGroup; |
| 91 | import android.view.KeyboardShortcutInfo; |
Sunny Goyal | 9b29ca5 | 2017-02-17 10:39:44 -0800 | [diff] [blame] | 92 | import android.view.LayoutInflater; |
Adam Cohen | 96d30a1 | 2013-07-16 18:13:21 -0700 | [diff] [blame] | 93 | import android.view.Menu; |
vadimt | 9af34a7 | 2020-01-21 11:19:13 -0800 | [diff] [blame] | 94 | import android.view.MotionEvent; |
Adam Cohen | 96d30a1 | 2013-07-16 18:13:21 -0700 | [diff] [blame] | 95 | import android.view.View; |
Adam Cohen | 96d30a1 | 2013-07-16 18:13:21 -0700 | [diff] [blame] | 96 | import android.view.ViewGroup; |
Schneider Victor-tulias | 25ecae1 | 2020-09-14 14:07:38 -0700 | [diff] [blame] | 97 | import android.view.WindowManager.LayoutParams; |
Svetoslav Ganov | 815ba2d | 2011-01-07 14:55:17 -0800 | [diff] [blame] | 98 | import android.view.accessibility.AccessibilityEvent; |
Sunny Goyal | 5a1f53b | 2015-05-27 10:24:24 -0700 | [diff] [blame] | 99 | import android.view.animation.OvershootInterpolator; |
Schneider Victor-tulias | 25ecae1 | 2020-09-14 14:07:38 -0700 | [diff] [blame] | 100 | import android.widget.ImageView; |
Adam Cohen | 96d30a1 | 2013-07-16 18:13:21 -0700 | [diff] [blame] | 101 | import android.widget.Toast; |
Sunny Goyal | a1d1bf3 | 2015-06-26 13:24:53 -0700 | [diff] [blame] | 102 | |
Sunny Goyal | 35e7d38 | 2020-05-08 13:37:58 -0700 | [diff] [blame] | 103 | import androidx.annotation.CallSuper; |
Sunny Goyal | 11a5074 | 2019-08-07 09:24:26 -0700 | [diff] [blame] | 104 | import androidx.annotation.Nullable; |
Pinyao Ting | c907427 | 2019-11-11 11:51:44 -0800 | [diff] [blame] | 105 | import androidx.annotation.StringRes; |
Sunny Goyal | b1d7de2 | 2019-09-06 10:36:54 -0700 | [diff] [blame] | 106 | import androidx.annotation.VisibleForTesting; |
Sunny Goyal | 11a5074 | 2019-08-07 09:24:26 -0700 | [diff] [blame] | 107 | |
Sunny Goyal | 651077b | 2014-06-30 14:15:31 -0700 | [diff] [blame] | 108 | import com.android.launcher3.DropTarget.DragObject; |
Sunny Goyal | ae50284 | 2016-06-17 08:43:56 -0700 | [diff] [blame] | 109 | import com.android.launcher3.accessibility.LauncherAccessibilityDelegate; |
Sunny Goyal | 384b578 | 2021-02-09 22:50:02 -0800 | [diff] [blame] | 110 | import com.android.launcher3.accessibility.LauncherAccessibilityDelegate.LauncherAction; |
Winson Chung | 5f4e0fd | 2015-05-22 11:12:27 -0700 | [diff] [blame] | 111 | import com.android.launcher3.allapps.AllAppsContainerView; |
vadimt | d4c90e1 | 2019-06-04 13:59:43 -0700 | [diff] [blame] | 112 | import com.android.launcher3.allapps.AllAppsStore; |
Hyunyoung Song | 645764e | 2016-06-06 14:19:02 -0700 | [diff] [blame] | 113 | import com.android.launcher3.allapps.AllAppsTransitionController; |
Sunny Goyal | 7ede611 | 2017-12-05 15:11:21 -0800 | [diff] [blame] | 114 | import com.android.launcher3.allapps.DiscoveryBounce; |
Sunny Goyal | f0b6db7 | 2018-08-13 16:10:14 -0700 | [diff] [blame] | 115 | import com.android.launcher3.anim.PropertyListBuilder; |
Sunny Goyal | 8f96546 | 2020-04-23 19:00:36 -0700 | [diff] [blame] | 116 | import com.android.launcher3.compat.AccessibilityManagerCompat; |
Tony Wickham | e0c3323 | 2016-02-08 11:37:04 -0800 | [diff] [blame] | 117 | import com.android.launcher3.config.FeatureFlags; |
vadimt | 00d4255 | 2018-12-11 17:59:36 -0800 | [diff] [blame] | 118 | import com.android.launcher3.dot.DotInfo; |
Vadim Tryshev | fedca43 | 2015-08-19 17:55:02 -0700 | [diff] [blame] | 119 | import com.android.launcher3.dragndrop.DragController; |
| 120 | import com.android.launcher3.dragndrop.DragLayer; |
Tony Wickham | 39938cb | 2021-02-26 09:15:31 -0800 | [diff] [blame] | 121 | import com.android.launcher3.dragndrop.DragOptions; |
Vadim Tryshev | fedca43 | 2015-08-19 17:55:02 -0700 | [diff] [blame] | 122 | import com.android.launcher3.dragndrop.DragView; |
Sunny Goyal | 11a5074 | 2019-08-07 09:24:26 -0700 | [diff] [blame] | 123 | import com.android.launcher3.folder.FolderGridOrganizer; |
Sunny Goyal | 2611943 | 2016-02-18 22:09:23 +0000 | [diff] [blame] | 124 | import com.android.launcher3.folder.FolderIcon; |
Schneider Victor-tulias | 25ecae1 | 2020-09-14 14:07:38 -0700 | [diff] [blame] | 125 | import com.android.launcher3.icons.BitmapRenderer; |
Sunny Goyal | f840f10 | 2018-09-21 14:41:05 -0700 | [diff] [blame] | 126 | import com.android.launcher3.icons.IconCache; |
Sunny Goyal | 3333b0c | 2016-05-09 20:43:21 -0700 | [diff] [blame] | 127 | import com.android.launcher3.keyboard.ViewGroupFocusHelper; |
Hyunyoung Song | 801f81f | 2020-06-19 02:58:53 -0700 | [diff] [blame] | 128 | import com.android.launcher3.logger.LauncherAtom; |
Sunny Goyal | a7ce166 | 2016-05-31 15:01:35 -0700 | [diff] [blame] | 129 | import com.android.launcher3.logging.FileLog; |
thiruram | c96873c | 2021-02-11 15:13:47 -0800 | [diff] [blame] | 130 | import com.android.launcher3.logging.InstanceId; |
| 131 | import com.android.launcher3.logging.InstanceIdSequence; |
Hyunyoung Song | 801f81f | 2020-06-19 02:58:53 -0700 | [diff] [blame] | 132 | import com.android.launcher3.logging.StatsLogManager; |
Sunny Goyal | 87dcde6 | 2019-07-17 20:35:56 -0700 | [diff] [blame] | 133 | import com.android.launcher3.model.BgDataModel.Callbacks; |
Sunny Goyal | 60e68c9 | 2020-08-12 13:59:27 -0700 | [diff] [blame] | 134 | import com.android.launcher3.model.ItemInstallQueue; |
Sunny Goyal | 53116c6 | 2020-08-07 16:32:18 -0700 | [diff] [blame] | 135 | import com.android.launcher3.model.ModelUtils; |
Sunny Goyal | a535ae4 | 2017-02-27 10:07:13 -0800 | [diff] [blame] | 136 | import com.android.launcher3.model.ModelWriter; |
Sunny Goyal | e396abf | 2020-04-06 15:11:17 -0700 | [diff] [blame] | 137 | import com.android.launcher3.model.data.AppInfo; |
| 138 | import com.android.launcher3.model.data.FolderInfo; |
| 139 | import com.android.launcher3.model.data.ItemInfo; |
| 140 | import com.android.launcher3.model.data.LauncherAppWidgetInfo; |
Sunny Goyal | e396abf | 2020-04-06 15:11:17 -0700 | [diff] [blame] | 141 | import com.android.launcher3.model.data.WorkspaceItemInfo; |
Sunny Goyal | a535ae4 | 2017-02-27 10:07:13 -0800 | [diff] [blame] | 142 | import com.android.launcher3.notification.NotificationListener; |
Sunny Goyal | e7b0012 | 2019-10-02 16:13:34 -0700 | [diff] [blame] | 143 | import com.android.launcher3.pm.PinRequestHelper; |
Samuel Fufa | 41d909f | 2020-03-20 16:27:09 -0700 | [diff] [blame] | 144 | import com.android.launcher3.pm.UserCache; |
Tony Wickham | 540913e | 2017-01-23 11:47:51 -0800 | [diff] [blame] | 145 | import com.android.launcher3.popup.PopupContainerWithArrow; |
Sunny Goyal | a535ae4 | 2017-02-27 10:07:13 -0800 | [diff] [blame] | 146 | import com.android.launcher3.popup.PopupDataProvider; |
Sunny Goyal | 3a1eadd | 2019-10-23 17:44:27 -0700 | [diff] [blame] | 147 | import com.android.launcher3.popup.SystemShortcut; |
Samuel Fufa | ca37b8a | 2019-08-19 17:04:36 -0700 | [diff] [blame] | 148 | import com.android.launcher3.qsb.QsbContainerView; |
Sunny Goyal | 35e7d38 | 2020-05-08 13:37:58 -0700 | [diff] [blame] | 149 | import com.android.launcher3.statemanager.StateManager; |
| 150 | import com.android.launcher3.statemanager.StateManager.StateHandler; |
Sunny Goyal | 35e7d38 | 2020-05-08 13:37:58 -0700 | [diff] [blame] | 151 | import com.android.launcher3.statemanager.StatefulActivity; |
Sunny Goyal | 623eddd | 2018-03-02 12:24:41 -0800 | [diff] [blame] | 152 | import com.android.launcher3.states.RotationHelper; |
vadimt | 9af34a7 | 2020-01-21 11:19:13 -0800 | [diff] [blame] | 153 | import com.android.launcher3.testing.TestLogging; |
vadimt | bc5d7e6 | 2019-12-09 13:53:05 -0800 | [diff] [blame] | 154 | import com.android.launcher3.testing.TestProtocol; |
Sunny Goyal | 210e174 | 2019-10-17 12:05:38 -0700 | [diff] [blame] | 155 | import com.android.launcher3.touch.AllAppsSwipeController; |
Sunny Goyal | 8a2a63b | 2018-03-06 22:15:18 -0800 | [diff] [blame] | 156 | import com.android.launcher3.touch.ItemClickHandler; |
Sunny Goyal | b1d7de2 | 2019-09-06 10:36:54 -0700 | [diff] [blame] | 157 | import com.android.launcher3.uioverrides.plugins.PluginManagerWrapper; |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 158 | import com.android.launcher3.util.ActivityResultInfo; |
Sunny Goyal | e84c5b8 | 2019-09-26 17:05:31 -0700 | [diff] [blame] | 159 | import com.android.launcher3.util.ActivityTracker; |
Winson Chung | 6b1c73f | 2015-06-18 11:38:42 -0700 | [diff] [blame] | 160 | import com.android.launcher3.util.ComponentKey; |
Sunny Goyal | efb7e84 | 2018-10-04 15:11:00 -0700 | [diff] [blame] | 161 | import com.android.launcher3.util.IntArray; |
Sunny Goyal | d3b87ef | 2016-07-28 12:11:54 -0700 | [diff] [blame] | 162 | import com.android.launcher3.util.ItemInfoMatcher; |
Sunny Goyal | 6001ea2 | 2018-05-10 16:31:00 -0700 | [diff] [blame] | 163 | import com.android.launcher3.util.MultiValueAlpha; |
| 164 | import com.android.launcher3.util.MultiValueAlpha.AlphaProperty; |
Tony Wickham | 133cd54 | 2020-04-08 17:48:41 -0700 | [diff] [blame] | 165 | import com.android.launcher3.util.OnboardingPrefs; |
Sunny Goyal | 04cc3a7 | 2016-05-17 10:32:43 -0700 | [diff] [blame] | 166 | import com.android.launcher3.util.PackageManagerHelper; |
Tony Wickham | 010d255 | 2017-01-20 08:15:28 -0800 | [diff] [blame] | 167 | import com.android.launcher3.util.PackageUserKey; |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 168 | import com.android.launcher3.util.PendingRequestArgs; |
Samuel Fufa | 41d909f | 2020-03-20 16:27:09 -0700 | [diff] [blame] | 169 | import com.android.launcher3.util.SafeCloseable; |
Sunny Goyal | 8392c82 | 2017-06-20 10:03:56 -0700 | [diff] [blame] | 170 | import com.android.launcher3.util.SystemUiController; |
Mario Bertschler | a693694 | 2017-05-31 14:48:19 -0700 | [diff] [blame] | 171 | import com.android.launcher3.util.Themes; |
Adam Cohen | 091440a | 2015-03-18 14:16:05 -0700 | [diff] [blame] | 172 | import com.android.launcher3.util.Thunk; |
Sunny Goyal | 210e174 | 2019-10-17 12:05:38 -0700 | [diff] [blame] | 173 | import com.android.launcher3.util.TouchController; |
Sunny Goyal | fca6bc9 | 2017-09-28 16:28:34 -0700 | [diff] [blame] | 174 | import com.android.launcher3.util.TraceHelper; |
Sunny Goyal | 326403e | 2017-10-02 12:45:10 -0700 | [diff] [blame] | 175 | import com.android.launcher3.util.UiThreadHelper; |
Sunny Goyal | 527c7d3 | 2015-08-28 15:19:36 -0700 | [diff] [blame] | 176 | import com.android.launcher3.util.ViewOnDrawExecutor; |
Sunny Goyal | ab770a1 | 2018-11-14 15:17:26 -0800 | [diff] [blame] | 177 | import com.android.launcher3.views.ActivityContext; |
Sunny Goyal | 30ac97d | 2020-06-24 23:47:46 -0700 | [diff] [blame] | 178 | import com.android.launcher3.views.FloatingSurfaceView; |
Sunny Goyal | 7c7be8c | 2018-03-07 19:58:07 -0800 | [diff] [blame] | 179 | import com.android.launcher3.views.OptionsPopupView; |
Govinda Wasserman | c06e151 | 2019-04-09 09:56:53 -0400 | [diff] [blame] | 180 | import com.android.launcher3.views.ScrimView; |
Yogisha Dixit | 741fae9 | 2021-02-22 14:03:44 +0000 | [diff] [blame] | 181 | import com.android.launcher3.widget.LauncherAppWidgetHost; |
Sunny Goyal | 29947f0 | 2017-12-18 13:49:44 -0800 | [diff] [blame] | 182 | import com.android.launcher3.widget.LauncherAppWidgetHostView; |
Yogisha Dixit | 741fae9 | 2021-02-22 14:03:44 +0000 | [diff] [blame] | 183 | import com.android.launcher3.widget.LauncherAppWidgetProviderInfo; |
Sunny Goyal | 782f0c9 | 2017-01-19 10:27:54 -0800 | [diff] [blame] | 184 | import com.android.launcher3.widget.PendingAddShortcutInfo; |
Hyunyoung Song | 3f47144 | 2015-04-08 19:01:34 -0700 | [diff] [blame] | 185 | import com.android.launcher3.widget.PendingAddWidgetInfo; |
Sunny Goyal | 29947f0 | 2017-12-18 13:49:44 -0800 | [diff] [blame] | 186 | import com.android.launcher3.widget.PendingAppWidgetHostView; |
Sunny Goyal | 04a324a | 2017-01-20 21:08:59 -0800 | [diff] [blame] | 187 | import com.android.launcher3.widget.WidgetAddFlowHandler; |
Hyunyoung Song | b99ff3e | 2015-04-23 15:17:50 -0700 | [diff] [blame] | 188 | import com.android.launcher3.widget.WidgetHostViewLoader; |
Sunny Goyal | 337c81f | 2019-12-10 12:19:13 -0800 | [diff] [blame] | 189 | import com.android.launcher3.widget.WidgetManagerHelper; |
Pinyao Ting | c7a6c29 | 2019-08-26 14:36:02 -0700 | [diff] [blame] | 190 | import com.android.launcher3.widget.custom.CustomWidgetManager; |
Steven Ng | 2f5648a | 2021-02-08 17:18:25 +0000 | [diff] [blame] | 191 | import com.android.launcher3.widget.model.WidgetsListBaseEntry; |
| 192 | import com.android.launcher3.widget.picker.WidgetsFullSheet; |
Sunny Goyal | b1d7de2 | 2019-09-06 10:36:54 -0700 | [diff] [blame] | 193 | import com.android.systemui.plugins.OverlayPlugin; |
| 194 | import com.android.systemui.plugins.PluginListener; |
| 195 | import com.android.systemui.plugins.shared.LauncherExterns; |
| 196 | import com.android.systemui.plugins.shared.LauncherOverlayManager; |
| 197 | import com.android.systemui.plugins.shared.LauncherOverlayManager.LauncherOverlay; |
| 198 | import com.android.systemui.plugins.shared.LauncherOverlayManager.LauncherOverlayCallbacks; |
Adam Cohen | 6c5891a | 2014-07-09 23:53:15 -0700 | [diff] [blame] | 199 | |
Adam Cohen | 16d7ffc | 2011-10-05 17:49:14 -0700 | [diff] [blame] | 200 | import java.io.FileDescriptor; |
Adam Cohen | 16d7ffc | 2011-10-05 17:49:14 -0700 | [diff] [blame] | 201 | import java.io.PrintWriter; |
Adam Cohen | c0dcf59 | 2011-06-01 15:30:43 -0700 | [diff] [blame] | 202 | import java.util.ArrayList; |
Winson Chung | f0c6ae0 | 2012-03-21 16:10:31 -0700 | [diff] [blame] | 203 | import java.util.Collection; |
Zak Cohen | 658c67a | 2018-10-19 14:21:05 -0700 | [diff] [blame] | 204 | import java.util.HashMap; |
Sunny Goyal | 4390ace | 2014-10-13 11:33:11 -0700 | [diff] [blame] | 205 | import java.util.HashSet; |
Michael Jurka | d7c2805 | 2012-04-27 15:43:36 -0700 | [diff] [blame] | 206 | import java.util.List; |
Sunny Goyal | aae6fbb | 2019-01-31 16:05:58 -0800 | [diff] [blame] | 207 | import java.util.function.Predicate; |
Sunny Goyal | b1d7de2 | 2019-09-06 10:36:54 -0700 | [diff] [blame] | 208 | import java.util.function.Supplier; |
Sunny Goyal | 3a1eadd | 2019-10-23 17:44:27 -0700 | [diff] [blame] | 209 | import java.util.stream.Stream; |
Jon Miranda | f5197fc | 2019-09-04 16:55:41 -0700 | [diff] [blame] | 210 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 211 | /** |
| 212 | * Default launcher application. |
| 213 | */ |
Sunny Goyal | 35e7d38 | 2020-05-08 13:37:58 -0700 | [diff] [blame] | 214 | public class Launcher extends StatefulActivity<LauncherState> implements LauncherExterns, |
Sunny Goyal | 79e52fc | 2021-02-03 10:22:28 -0800 | [diff] [blame] | 215 | Callbacks, InvariantDeviceProfile.OnIDPChangeListener, PluginListener<OverlayPlugin> { |
Vadim Tryshev | fedca43 | 2015-08-19 17:55:02 -0700 | [diff] [blame] | 216 | public static final String TAG = "Launcher"; |
Sunny Goyal | e84c5b8 | 2019-09-26 17:05:31 -0700 | [diff] [blame] | 217 | |
| 218 | public static final ActivityTracker<Launcher> ACTIVITY_TRACKER = new ActivityTracker<>(); |
| 219 | |
Sunny Goyal | 2bba4c3 | 2015-05-18 15:42:48 -0700 | [diff] [blame] | 220 | static final boolean LOGD = false; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 221 | |
Winson Chung | a241375 | 2012-04-03 14:22:34 -0700 | [diff] [blame] | 222 | static final boolean DEBUG_STRICT_MODE = false; |
Romain Guy | 6fefcf1 | 2009-06-11 13:07:43 -0700 | [diff] [blame] | 223 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 224 | private static final int REQUEST_CREATE_SHORTCUT = 1; |
The Android Open Source Project | 7376fae | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 225 | private static final int REQUEST_CREATE_APPWIDGET = 5; |
Jon Miranda | c476d6e | 2017-05-04 16:30:01 -0700 | [diff] [blame] | 226 | |
The Android Open Source Project | 7376fae | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 227 | private static final int REQUEST_PICK_APPWIDGET = 9; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 228 | |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 229 | private static final int REQUEST_BIND_APPWIDGET = 11; |
Sunny Goyal | 8a2a63b | 2018-03-06 22:15:18 -0800 | [diff] [blame] | 230 | public static final int REQUEST_BIND_PENDING_APPWIDGET = 12; |
| 231 | public static final int REQUEST_RECONFIGURE_APPWIDGET = 13; |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 232 | |
Jon Miranda | c476d6e | 2017-05-04 16:30:01 -0700 | [diff] [blame] | 233 | private static final int REQUEST_PERMISSION_CALL_PHONE = 14; |
Sunny Goyal | 28c6b96 | 2015-10-12 11:42:05 -0700 | [diff] [blame] | 234 | |
Sunny Goyal | 5a1f53b | 2015-05-27 10:24:24 -0700 | [diff] [blame] | 235 | private static final float BOUNCE_ANIMATION_TENSION = 1.3f; |
| 236 | |
Mathew Inwood | 876a846 | 2013-06-14 14:12:41 +0100 | [diff] [blame] | 237 | /** |
| 238 | * IntentStarter uses request codes starting with this. This must be greater than all activity |
| 239 | * request codes used internally. |
| 240 | */ |
| 241 | protected static final int REQUEST_LAST = 100; |
| 242 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 243 | // Type: int |
| 244 | private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen"; |
Michael Jurka | 883f55b | 2010-10-21 15:47:14 -0700 | [diff] [blame] | 245 | // Type: int |
| 246 | private static final String RUNTIME_STATE = "launcher.state"; |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 247 | // Type: PendingRequestArgs |
| 248 | private static final String RUNTIME_STATE_PENDING_REQUEST_ARGS = "launcher.request_args"; |
Sunny Goyal | dedda05 | 2019-05-14 15:23:48 -0700 | [diff] [blame] | 249 | // Type: int |
| 250 | private static final String RUNTIME_STATE_PENDING_REQUEST_CODE = "launcher.request_code"; |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 251 | // Type: ActivityResultInfo |
| 252 | private static final String RUNTIME_STATE_PENDING_ACTIVITY_RESULT = "launcher.activity_result"; |
Sunny Goyal | f1fbc3f | 2017-10-10 15:21:15 -0700 | [diff] [blame] | 253 | // Type: SparseArray<Parcelable> |
| 254 | private static final String RUNTIME_STATE_WIDGET_PANEL = "launcher.widget_panel"; |
Sunny Goyal | 17c72fb | 2019-10-14 14:06:38 -0700 | [diff] [blame] | 255 | |
vadimt | 00d4255 | 2018-12-11 17:59:36 -0800 | [diff] [blame] | 256 | public static final String ON_CREATE_EVT = "Launcher.onCreate"; |
Sunny Goyal | 17c72fb | 2019-10-14 14:06:38 -0700 | [diff] [blame] | 257 | public static final String ON_START_EVT = "Launcher.onStart"; |
| 258 | public static final String ON_RESUME_EVT = "Launcher.onResume"; |
| 259 | public static final String ON_NEW_INTENT_EVT = "Launcher.onNewIntent"; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 260 | |
Sunny Goyal | 35e7d38 | 2020-05-08 13:37:58 -0700 | [diff] [blame] | 261 | private StateManager<LauncherState> mStateManager; |
Patrick Dubroy | 6b509c1 | 2010-08-23 15:08:16 -0700 | [diff] [blame] | 262 | |
Adam Cohen | ad4e15c | 2013-10-17 16:21:35 -0700 | [diff] [blame] | 263 | private static final int ON_ACTIVITY_RESULT_ANIMATION_DELAY = 500; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 264 | |
Winson Chung | a241375 | 2012-04-03 14:22:34 -0700 | [diff] [blame] | 265 | // How long to wait before the new-shortcut animation automatically pans the workspace |
Jon Miranda | f5197fc | 2019-09-04 16:55:41 -0700 | [diff] [blame] | 266 | @VisibleForTesting public static final int NEW_APPS_PAGE_MOVE_DELAY = 500; |
Rajeev Kumar | 43c0f58 | 2017-06-23 15:34:55 -0700 | [diff] [blame] | 267 | private static final int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 5; |
Jon Miranda | f5197fc | 2019-09-04 16:55:41 -0700 | [diff] [blame] | 268 | @Thunk @VisibleForTesting public static final int NEW_APPS_ANIMATION_DELAY = 500; |
Winson Chung | a241375 | 2012-04-03 14:22:34 -0700 | [diff] [blame] | 269 | |
Schneider Victor-tulias | 25ecae1 | 2020-09-14 14:07:38 -0700 | [diff] [blame] | 270 | private static final int THEME_CROSS_FADE_ANIMATION_DURATION = 375; |
| 271 | |
Sunny Goyal | f8d56fc | 2018-01-31 15:18:11 -0800 | [diff] [blame] | 272 | private Configuration mOldConfig; |
Jon Miranda | 54441f5 | 2018-01-24 15:38:25 -0800 | [diff] [blame] | 273 | |
Samuel Fufa | ca37b8a | 2019-08-19 17:04:36 -0700 | [diff] [blame] | 274 | @Thunk |
| 275 | Workspace mWorkspace; |
Samuel Fufa | ca37b8a | 2019-08-19 17:04:36 -0700 | [diff] [blame] | 276 | @Thunk |
| 277 | DragLayer mDragLayer; |
Michael Jurka | b737ee6 | 2011-11-15 15:57:22 -0800 | [diff] [blame] | 278 | private DragController mDragController; |
Sunny Goyal | 322d556 | 2015-06-25 19:35:49 -0700 | [diff] [blame] | 279 | |
Sunny Goyal | 337c81f | 2019-12-10 12:19:13 -0800 | [diff] [blame] | 280 | private WidgetManagerHelper mAppWidgetManager; |
The Android Open Source Project | 7376fae | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 281 | private LauncherAppWidgetHost mAppWidgetHost; |
Romain Guy | cbb89e4 | 2009-06-08 15:52:54 -0700 | [diff] [blame] | 282 | |
Rajeev Kumar | 43c0f58 | 2017-06-23 15:34:55 -0700 | [diff] [blame] | 283 | private final int[] mTmpAddItemCellCoordinates = new int[2]; |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 284 | |
Samuel Fufa | ca37b8a | 2019-08-19 17:04:36 -0700 | [diff] [blame] | 285 | @Thunk |
| 286 | Hotseat mHotseat; |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 287 | |
Sunny Goyal | 47328fd | 2016-05-25 18:56:41 -0700 | [diff] [blame] | 288 | private DropTargetBar mDropTargetBar; |
Hyunyoung Song | 3f47144 | 2015-04-08 19:01:34 -0700 | [diff] [blame] | 289 | |
| 290 | // Main container view for the all apps screen. |
Samuel Fufa | ca37b8a | 2019-08-19 17:04:36 -0700 | [diff] [blame] | 291 | @Thunk |
| 292 | AllAppsContainerView mAppsView; |
Hyunyoung Song | 645764e | 2016-06-06 14:19:02 -0700 | [diff] [blame] | 293 | AllAppsTransitionController mAllAppsController; |
Hyunyoung Song | 3f47144 | 2015-04-08 19:01:34 -0700 | [diff] [blame] | 294 | |
Govinda Wasserman | c06e151 | 2019-04-09 09:56:53 -0400 | [diff] [blame] | 295 | // Scrim view for the all apps and overview state. |
Samuel Fufa | ca37b8a | 2019-08-19 17:04:36 -0700 | [diff] [blame] | 296 | @Thunk |
| 297 | ScrimView mScrimView; |
Govinda Wasserman | c06e151 | 2019-04-09 09:56:53 -0400 | [diff] [blame] | 298 | |
Winson Chung | 8ae4198 | 2017-11-10 11:42:13 -0800 | [diff] [blame] | 299 | // UI and state for the overview panel |
Sunny Goyal | 7c7be8c | 2018-03-07 19:58:07 -0800 | [diff] [blame] | 300 | private View mOverviewPanel; |
Winson Chung | 8ae4198 | 2017-11-10 11:42:13 -0800 | [diff] [blame] | 301 | |
Samuel Fufa | ca37b8a | 2019-08-19 17:04:36 -0700 | [diff] [blame] | 302 | @Thunk |
| 303 | boolean mWorkspaceLoading = true; |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 304 | |
Winson Chung | c9bf6d4 | 2019-10-04 15:33:18 -0700 | [diff] [blame] | 305 | // Used to notify when an activity launch has been deferred because launcher is not yet resumed |
| 306 | // TODO: See if we can remove this later |
| 307 | private Runnable mOnDeferredActivityLaunchCallback; |
| 308 | |
Sunny Goyal | 527c7d3 | 2015-08-28 15:19:36 -0700 | [diff] [blame] | 309 | private ViewOnDrawExecutor mPendingExecutor; |
Michael Jurka | 7607c2f | 2013-04-03 14:33:19 -0700 | [diff] [blame] | 310 | |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 311 | private LauncherModel mModel; |
Sunny Goyal | 43bf11d | 2017-02-02 13:52:53 -0800 | [diff] [blame] | 312 | private ModelWriter mModelWriter; |
Joe Onorato | 0589f0f | 2010-02-08 13:44:00 -0800 | [diff] [blame] | 313 | private IconCache mIconCache; |
Sunny Goyal | ae50284 | 2016-06-17 08:43:56 -0700 | [diff] [blame] | 314 | private LauncherAccessibilityDelegate mAccessibilityDelegate; |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 315 | |
Tony Wickham | 010d255 | 2017-01-20 08:15:28 -0800 | [diff] [blame] | 316 | private PopupDataProvider mPopupDataProvider; |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 317 | |
Sunny Goyal | f4aceab | 2017-12-06 16:16:31 -0800 | [diff] [blame] | 318 | private int mSynchronouslyBoundPage = PagedView.INVALID_PAGE; |
Sunny Goyal | a7a5bf3 | 2020-01-05 15:35:29 +0530 | [diff] [blame] | 319 | private int mPageToBindSynchronously = PagedView.INVALID_PAGE; |
Adam Cohen | 1462de3 | 2012-07-24 22:34:36 -0700 | [diff] [blame] | 320 | |
Winson Chung | 46353de | 2012-02-16 14:05:10 -0800 | [diff] [blame] | 321 | // We only want to get the SharedPreferences once since it does an FS stat each time we get |
| 322 | // it from the context. |
| 323 | private SharedPreferences mSharedPrefs; |
Tony Wickham | 133cd54 | 2020-04-08 17:48:41 -0700 | [diff] [blame] | 324 | private OnboardingPrefs mOnboardingPrefs; |
Winson Chung | 46353de | 2012-02-16 14:05:10 -0800 | [diff] [blame] | 325 | |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 326 | // Activity result which needs to be processed after workspace has loaded. |
| 327 | private ActivityResultInfo mPendingActivityResult; |
| 328 | /** |
| 329 | * Holds extra information required to handle a result from an external call, like |
| 330 | * {@link #startActivityForResult(Intent, int)} or {@link #requestPermissions(String[], int)} |
| 331 | */ |
| 332 | private PendingRequestArgs mPendingRequestArgs; |
Sunny Goyal | dedda05 | 2019-05-14 15:23:48 -0700 | [diff] [blame] | 333 | // Request id for any pending activity result |
Sunny Goyal | 210e174 | 2019-10-17 12:05:38 -0700 | [diff] [blame] | 334 | protected int mPendingActivityRequestCode = -1; |
Patrick Dubroy | 002cbf4 | 2011-03-03 16:36:21 -0800 | [diff] [blame] | 335 | |
Tracy Zhou | 4d7b244 | 2019-12-09 13:42:57 -0800 | [diff] [blame] | 336 | private ViewGroupFocusHelper mFocusHandler; |
Hyunyoung Song | 7fb3ccc | 2017-10-17 15:39:46 -0700 | [diff] [blame] | 337 | |
Sunny Goyal | 623eddd | 2018-03-02 12:24:41 -0800 | [diff] [blame] | 338 | private RotationHelper mRotationHelper; |
Sunny Goyal | 7779d62 | 2015-06-11 16:18:39 -0700 | [diff] [blame] | 339 | |
Sunny Goyal | b1d7de2 | 2019-09-06 10:36:54 -0700 | [diff] [blame] | 340 | protected LauncherOverlayManager mOverlayManager; |
| 341 | // If true, overlay callbacks are deferred |
| 342 | private boolean mDeferOverlayCallbacks; |
| 343 | private final Runnable mDeferredOverlayCallbacks = this::checkIfOverlayStillDeferred; |
| 344 | |
Riddle Hsu | 979da64 | 2020-09-22 21:52:40 +0800 | [diff] [blame] | 345 | protected long mLastTouchUpTime = -1; |
Sunny Goyal | a306e59 | 2020-03-24 01:51:41 -0700 | [diff] [blame] | 346 | private boolean mTouchInProgress; |
Sunny Goyal | 9b18010 | 2020-03-11 10:02:29 -0700 | [diff] [blame] | 347 | |
Samuel Fufa | 41d909f | 2020-03-20 16:27:09 -0700 | [diff] [blame] | 348 | private SafeCloseable mUserChangedCallbackCloseable; |
| 349 | |
thiruram | c96873c | 2021-02-11 15:13:47 -0800 | [diff] [blame] | 350 | // New InstanceId is assigned to mAllAppsSessionLogId for each AllApps sessions. |
| 351 | // When Launcher is not in AllApps state mAllAppsSessionLogId will be null. |
| 352 | // User actions within AllApps state are logged with this InstanceId, to recreate AllApps |
| 353 | // session on the server side. |
| 354 | protected InstanceId mAllAppsSessionLogId; |
| 355 | private LauncherState mPrevLauncherState; |
| 356 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 357 | @Override |
| 358 | protected void onCreate(Bundle savedInstanceState) { |
Winson Chung | 5cc62c7 | 2019-10-16 11:32:41 -0700 | [diff] [blame] | 359 | Object traceToken = TraceHelper.INSTANCE.beginSection(ON_CREATE_EVT, |
| 360 | TraceHelper.FLAG_UI_EVENT); |
Winson Chung | a241375 | 2012-04-03 14:22:34 -0700 | [diff] [blame] | 361 | if (DEBUG_STRICT_MODE) { |
| 362 | StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder() |
| 363 | .detectDiskReads() |
| 364 | .detectDiskWrites() |
| 365 | .detectNetwork() // or .detectAll() for all detectable problems |
| 366 | .penaltyLog() |
| 367 | .build()); |
| 368 | StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder() |
| 369 | .detectLeakedSqlLiteObjects() |
| 370 | .detectLeakedClosableObjects() |
| 371 | .penaltyLog() |
| 372 | .penaltyDeath() |
| 373 | .build()); |
| 374 | } |
| 375 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 376 | super.onCreate(savedInstanceState); |
Daniel Sandler | e060b0b | 2013-06-27 21:47:55 -0400 | [diff] [blame] | 377 | |
Sunny Goyal | 87f784c | 2017-01-11 10:48:34 -0800 | [diff] [blame] | 378 | LauncherAppState app = LauncherAppState.getInstance(this); |
Sunny Goyal | f8d56fc | 2018-01-31 15:18:11 -0800 | [diff] [blame] | 379 | mOldConfig = new Configuration(getResources().getConfiguration()); |
Sunny Goyal | a7a5bf3 | 2020-01-05 15:35:29 +0530 | [diff] [blame] | 380 | mModel = app.getModel(); |
Sunny Goyal | 9d89f75 | 2020-06-19 11:09:24 -0700 | [diff] [blame] | 381 | |
Sunny Goyal | 41d51a0 | 2019-05-14 09:44:34 -0700 | [diff] [blame] | 382 | mRotationHelper = new RotationHelper(this); |
Hyunyoung Song | 31971a3 | 2019-01-27 12:31:12 -0800 | [diff] [blame] | 383 | InvariantDeviceProfile idp = app.getInvariantDeviceProfile(); |
| 384 | initDeviceProfile(idp); |
| 385 | idp.addOnChangeListener(this); |
Sunny Goyal | f725824 | 2015-10-19 16:59:07 -0700 | [diff] [blame] | 386 | mSharedPrefs = Utilities.getPrefs(this); |
Joe Onorato | 0589f0f | 2010-02-08 13:44:00 -0800 | [diff] [blame] | 387 | mIconCache = app.getIconCache(); |
Sunny Goyal | 384b578 | 2021-02-09 22:50:02 -0800 | [diff] [blame] | 388 | mAccessibilityDelegate = createAccessibilityDelegate(); |
Adam Cohen | 2e6da15 | 2015-05-06 11:42:25 -0700 | [diff] [blame] | 389 | |
Joe Onorato | 41a12d2 | 2009-10-31 18:30:00 -0400 | [diff] [blame] | 390 | mDragController = new DragController(this); |
Hyunyoung Song | 645764e | 2016-06-06 14:19:02 -0700 | [diff] [blame] | 391 | mAllAppsController = new AllAppsTransitionController(this); |
Sunny Goyal | 35e7d38 | 2020-05-08 13:37:58 -0700 | [diff] [blame] | 392 | mStateManager = new StateManager<>(this, NORMAL); |
Romain Guy | cbb89e4 | 2009-06-08 15:52:54 -0700 | [diff] [blame] | 393 | |
Sunny Goyal | 35e7d38 | 2020-05-08 13:37:58 -0700 | [diff] [blame] | 394 | mOnboardingPrefs = createOnboardingPrefs(mSharedPrefs); |
Tony Wickham | 133cd54 | 2020-04-08 17:48:41 -0700 | [diff] [blame] | 395 | |
Sunny Goyal | 337c81f | 2019-12-10 12:19:13 -0800 | [diff] [blame] | 396 | mAppWidgetManager = new WidgetManagerHelper(this); |
Samuel Fufa | 44043ec | 2019-08-26 15:00:30 -0700 | [diff] [blame] | 397 | mAppWidgetHost = new LauncherAppWidgetHost(this, |
| 398 | appWidgetId -> getWorkspace().removeWidget(appWidgetId)); |
The Android Open Source Project | 7376fae | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 399 | mAppWidgetHost.startListening(); |
Romain Guy | cbb89e4 | 2009-06-08 15:52:54 -0700 | [diff] [blame] | 400 | |
Sunny Goyal | 9d89f75 | 2020-06-19 11:09:24 -0700 | [diff] [blame] | 401 | inflateRootView(R.layout.launcher); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 402 | setupViews(); |
Schneider Victor-tulias | 25ecae1 | 2020-09-14 14:07:38 -0700 | [diff] [blame] | 403 | crossFadeWithPreviousAppearance(); |
Sunny Goyal | 9c2b960 | 2020-01-07 13:07:55 -0800 | [diff] [blame] | 404 | mPopupDataProvider = new PopupDataProvider(this::updateNotificationDots); |
Tony Wickham | 010d255 | 2017-01-20 08:15:28 -0800 | [diff] [blame] | 405 | |
Sunny Goyal | e84c5b8 | 2019-09-26 17:05:31 -0700 | [diff] [blame] | 406 | boolean internalStateHandled = ACTIVITY_TRACKER.handleCreate(this); |
Sunny Goyal | d3864fa | 2017-11-14 15:06:36 -0800 | [diff] [blame] | 407 | if (internalStateHandled) { |
Sunny Goyal | d3864fa | 2017-11-14 15:06:36 -0800 | [diff] [blame] | 408 | if (savedInstanceState != null) { |
| 409 | // InternalStateHandler has already set the appropriate state. |
| 410 | // We dont need to do anything. |
| 411 | savedInstanceState.remove(RUNTIME_STATE); |
| 412 | } |
| 413 | } |
| 414 | restoreState(savedInstanceState); |
Sunny Goyal | bbece86 | 2019-03-01 13:13:52 -0800 | [diff] [blame] | 415 | mStateManager.reapplyState(); |
Winson Chung | b63b44c | 2017-11-10 17:54:44 -0800 | [diff] [blame] | 416 | |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 417 | // We only load the page synchronously if the user rotates (or triggers a |
| 418 | // configuration change) while launcher is in the foreground |
Sunny Goyal | a7a5bf3 | 2020-01-05 15:35:29 +0530 | [diff] [blame] | 419 | int currentScreen = PagedView.INVALID_PAGE; |
Sunny Goyal | fe770c9 | 2016-09-27 14:38:58 -0700 | [diff] [blame] | 420 | if (savedInstanceState != null) { |
| 421 | currentScreen = savedInstanceState.getInt(RUNTIME_STATE_CURRENT_SCREEN, currentScreen); |
| 422 | } |
Sunny Goyal | a7a5bf3 | 2020-01-05 15:35:29 +0530 | [diff] [blame] | 423 | mPageToBindSynchronously = currentScreen; |
Sunny Goyal | d3864fa | 2017-11-14 15:06:36 -0800 | [diff] [blame] | 424 | |
Sunny Goyal | a7a5bf3 | 2020-01-05 15:35:29 +0530 | [diff] [blame] | 425 | if (!mModel.addCallbacksAndLoad(this)) { |
Sunny Goyal | d3864fa | 2017-11-14 15:06:36 -0800 | [diff] [blame] | 426 | if (!internalStateHandled) { |
| 427 | // If we are not binding synchronously, show a fade in animation when |
| 428 | // the first page bind completes. |
Sunny Goyal | 6001ea2 | 2018-05-10 16:31:00 -0700 | [diff] [blame] | 429 | mDragLayer.getAlphaProperty(ALPHA_INDEX_LAUNCHER_LOAD).setValue(0); |
Sunny Goyal | d3864fa | 2017-11-14 15:06:36 -0800 | [diff] [blame] | 430 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 431 | } |
| 432 | |
| 433 | // For handling default keys |
Sunny Goyal | f4aceab | 2017-12-06 16:16:31 -0800 | [diff] [blame] | 434 | setDefaultKeyMode(DEFAULT_KEYS_SEARCH_LOCAL); |
Joe Onorato | 34a0e1b | 2009-12-14 17:44:51 -0800 | [diff] [blame] | 435 | |
Sunny Goyal | 9d89f75 | 2020-06-19 11:09:24 -0700 | [diff] [blame] | 436 | setContentView(getRootView()); |
Sunny Goyal | f8d56fc | 2018-01-31 15:18:11 -0800 | [diff] [blame] | 437 | getRootView().dispatchInsets(); |
Mario Bertschler | a693694 | 2017-05-31 14:48:19 -0700 | [diff] [blame] | 438 | |
Jon Miranda | 7fda285 | 2017-07-19 16:07:01 -0700 | [diff] [blame] | 439 | // Listen for broadcasts |
Sunny Goyal | 5d1873a | 2018-05-08 11:10:44 -0700 | [diff] [blame] | 440 | registerReceiver(mScreenOffReceiver, new IntentFilter(Intent.ACTION_SCREEN_OFF)); |
Sunny Goyal | a616d2b | 2017-06-12 13:54:01 -0700 | [diff] [blame] | 441 | |
Sunny Goyal | 8392c82 | 2017-06-20 10:03:56 -0700 | [diff] [blame] | 442 | getSystemUiController().updateUiState(SystemUiController.UI_STATE_BASE_WINDOW, |
| 443 | Themes.getAttrBoolean(this, R.attr.isWorkspaceDarkText)); |
Sunny Goyal | 14b3240 | 2017-07-31 10:03:28 -0700 | [diff] [blame] | 444 | |
| 445 | if (mLauncherCallbacks != null) { |
| 446 | mLauncherCallbacks.onCreate(savedInstanceState); |
| 447 | } |
Sunny Goyal | b1d7de2 | 2019-09-06 10:36:54 -0700 | [diff] [blame] | 448 | mOverlayManager = getDefaultOverlay(); |
| 449 | PluginManagerWrapper.INSTANCE.get(this).addPluginListener(this, |
| 450 | OverlayPlugin.class, false /* allowedMultiple */); |
| 451 | |
Sunny Goyal | 623eddd | 2018-03-02 12:24:41 -0800 | [diff] [blame] | 452 | mRotationHelper.initialize(); |
Winson Chung | 5cc62c7 | 2019-10-16 11:32:41 -0700 | [diff] [blame] | 453 | TraceHelper.INSTANCE.endSection(traceToken); |
Samuel Fufa | 41d909f | 2020-03-20 16:27:09 -0700 | [diff] [blame] | 454 | |
| 455 | mUserChangedCallbackCloseable = UserCache.INSTANCE.get(this).addUserChangeListener( |
| 456 | () -> getStateManager().goToState(NORMAL)); |
Schneider Victor-tulias | 8a35c76 | 2020-09-03 14:30:10 -0700 | [diff] [blame] | 457 | |
| 458 | if (Utilities.ATLEAST_R) { |
Schneider Victor-tulias | 25ecae1 | 2020-09-14 14:07:38 -0700 | [diff] [blame] | 459 | getWindow().setSoftInputMode(LayoutParams.SOFT_INPUT_ADJUST_NOTHING); |
Schneider Victor-tulias | 8a35c76 | 2020-09-03 14:30:10 -0700 | [diff] [blame] | 460 | } |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 461 | } |
| 462 | |
Sunny Goyal | b1d7de2 | 2019-09-06 10:36:54 -0700 | [diff] [blame] | 463 | protected LauncherOverlayManager getDefaultOverlay() { |
| 464 | return new LauncherOverlayManager() { }; |
| 465 | } |
| 466 | |
Sunny Goyal | 35e7d38 | 2020-05-08 13:37:58 -0700 | [diff] [blame] | 467 | protected OnboardingPrefs createOnboardingPrefs(SharedPreferences sharedPrefs) { |
| 468 | return new OnboardingPrefs<>(this, sharedPrefs); |
Tony Wickham | 133cd54 | 2020-04-08 17:48:41 -0700 | [diff] [blame] | 469 | } |
| 470 | |
| 471 | public OnboardingPrefs getOnboardingPrefs() { |
| 472 | return mOnboardingPrefs; |
| 473 | } |
| 474 | |
Sunny Goyal | b1d7de2 | 2019-09-06 10:36:54 -0700 | [diff] [blame] | 475 | @Override |
| 476 | public void onPluginConnected(OverlayPlugin overlayManager, Context context) { |
| 477 | switchOverlay(() -> overlayManager.createOverlayManager(this, this)); |
| 478 | } |
| 479 | |
| 480 | @Override |
| 481 | public void onPluginDisconnected(OverlayPlugin plugin) { |
| 482 | switchOverlay(this::getDefaultOverlay); |
| 483 | } |
| 484 | |
| 485 | private void switchOverlay(Supplier<LauncherOverlayManager> overlaySupplier) { |
| 486 | if (mOverlayManager != null) { |
| 487 | mOverlayManager.onActivityDestroyed(this); |
| 488 | } |
| 489 | mOverlayManager = overlaySupplier.get(); |
| 490 | if (getRootView().isAttachedToWindow()) { |
| 491 | mOverlayManager.onAttachedToWindow(); |
| 492 | } |
| 493 | mDeferOverlayCallbacks = true; |
| 494 | checkIfOverlayStillDeferred(); |
| 495 | } |
| 496 | |
| 497 | @Override |
| 498 | protected void dispatchDeviceProfileChanged() { |
| 499 | super.dispatchDeviceProfileChanged(); |
| 500 | mOverlayManager.onDeviceProvideChanged(); |
| 501 | } |
| 502 | |
Sunny Goyal | 7779d62 | 2015-06-11 16:18:39 -0700 | [diff] [blame] | 503 | @Override |
Winson Chung | 8eb49e0 | 2018-07-16 13:33:31 -0700 | [diff] [blame] | 504 | public void onEnterAnimationComplete() { |
| 505 | super.onEnterAnimationComplete(); |
Sunny Goyal | be8c340 | 2019-05-22 15:17:52 -0700 | [diff] [blame] | 506 | mRotationHelper.setCurrentTransitionRequest(REQUEST_NONE); |
Sunny Goyal | 30ac97d | 2020-06-24 23:47:46 -0700 | [diff] [blame] | 507 | AbstractFloatingView.closeOpenViews(this, false, TYPE_ICON_SURFACE); |
Winson Chung | 8eb49e0 | 2018-07-16 13:33:31 -0700 | [diff] [blame] | 508 | } |
| 509 | |
| 510 | @Override |
Sunny Goyal | f8d56fc | 2018-01-31 15:18:11 -0800 | [diff] [blame] | 511 | public void onConfigurationChanged(Configuration newConfig) { |
| 512 | int diff = newConfig.diff(mOldConfig); |
Jon Miranda | aeb4dd0 | 2018-07-11 14:16:23 -0700 | [diff] [blame] | 513 | |
Sunny Goyal | f8d56fc | 2018-01-31 15:18:11 -0800 | [diff] [blame] | 514 | if ((diff & (CONFIG_ORIENTATION | CONFIG_SCREEN_SIZE)) != 0) { |
Sunny Goyal | 371ea05 | 2019-03-06 15:38:32 -0800 | [diff] [blame] | 515 | onIdpChanged(mDeviceProfile.inv); |
Sunny Goyal | f8d56fc | 2018-01-31 15:18:11 -0800 | [diff] [blame] | 516 | } |
| 517 | |
| 518 | mOldConfig.setTo(newConfig); |
| 519 | super.onConfigurationChanged(newConfig); |
| 520 | } |
| 521 | |
Sunny Goyal | 605bcf3 | 2018-03-02 15:16:12 -0800 | [diff] [blame] | 522 | @Override |
Hyunyoung Song | 31971a3 | 2019-01-27 12:31:12 -0800 | [diff] [blame] | 523 | public void onIdpChanged(int changeFlags, InvariantDeviceProfile idp) { |
Sunny Goyal | 371ea05 | 2019-03-06 15:38:32 -0800 | [diff] [blame] | 524 | onIdpChanged(idp); |
| 525 | } |
| 526 | |
| 527 | private void onIdpChanged(InvariantDeviceProfile idp) { |
Sunny Goyal | 371ea05 | 2019-03-06 15:38:32 -0800 | [diff] [blame] | 528 | |
Hyunyoung Song | 31971a3 | 2019-01-27 12:31:12 -0800 | [diff] [blame] | 529 | initDeviceProfile(idp); |
Sunny Goyal | 371ea05 | 2019-03-06 15:38:32 -0800 | [diff] [blame] | 530 | dispatchDeviceProfileChanged(); |
| 531 | reapplyUi(); |
| 532 | mDragLayer.recreateControllers(); |
| 533 | |
Sunny Goyal | 76ba0a3 | 2019-06-10 11:56:11 -0700 | [diff] [blame] | 534 | // Calling onSaveInstanceState ensures that static cache used by listWidgets is |
| 535 | // initialized properly. |
| 536 | onSaveInstanceState(new Bundle()); |
Sunny Goyal | c4d3201 | 2020-04-03 17:10:11 -0700 | [diff] [blame] | 537 | mModel.rebindCallbacks(); |
Hyunyoung Song | 31971a3 | 2019-01-27 12:31:12 -0800 | [diff] [blame] | 538 | } |
| 539 | |
Govinda Wasserman | c06e151 | 2019-04-09 09:56:53 -0400 | [diff] [blame] | 540 | public void onAssistantVisibilityChanged(float visibility) { |
Sunny Goyal | 0b5b8d4 | 2021-03-31 14:56:47 -0700 | [diff] [blame] | 541 | mHotseat.getQsb().setAlpha(1f - visibility); |
Govinda Wasserman | c06e151 | 2019-04-09 09:56:53 -0400 | [diff] [blame] | 542 | } |
| 543 | |
Sunny Goyal | f8d56fc | 2018-01-31 15:18:11 -0800 | [diff] [blame] | 544 | private void initDeviceProfile(InvariantDeviceProfile idp) { |
| 545 | // Load configuration-specific DeviceProfile |
Sunny Goyal | 59d086c | 2018-05-07 17:31:40 -0700 | [diff] [blame] | 546 | mDeviceProfile = idp.getDeviceProfile(this); |
Sunny Goyal | 8c48d8b | 2019-01-25 15:10:18 -0800 | [diff] [blame] | 547 | if (isInMultiWindowMode()) { |
Sunny Goyal | 0addbf0 | 2020-04-28 14:17:35 -0700 | [diff] [blame] | 548 | mDeviceProfile = mDeviceProfile.getMultiWindowProfile( |
| 549 | this, getMultiWindowDisplaySize()); |
Sunny Goyal | 59d086c | 2018-05-07 17:31:40 -0700 | [diff] [blame] | 550 | } |
Sunny Goyal | ae6e318 | 2019-04-30 12:04:37 -0700 | [diff] [blame] | 551 | |
Sunny Goyal | 59d086c | 2018-05-07 17:31:40 -0700 | [diff] [blame] | 552 | onDeviceProfileInitiated(); |
Sunny Goyal | c4d3201 | 2020-04-03 17:10:11 -0700 | [diff] [blame] | 553 | mModelWriter = mModel.getWriter(getDeviceProfile().isVerticalBarLayout(), true); |
Sunny Goyal | f8d56fc | 2018-01-31 15:18:11 -0800 | [diff] [blame] | 554 | } |
| 555 | |
Sunny Goyal | 623eddd | 2018-03-02 12:24:41 -0800 | [diff] [blame] | 556 | public RotationHelper getRotationHelper() { |
| 557 | return mRotationHelper; |
| 558 | } |
| 559 | |
Tracy Zhou | 4d7b244 | 2019-12-09 13:42:57 -0800 | [diff] [blame] | 560 | public ViewGroupFocusHelper getFocusHandler() { |
| 561 | return mFocusHandler; |
| 562 | } |
| 563 | |
Sunny Goyal | 35e7d38 | 2020-05-08 13:37:58 -0700 | [diff] [blame] | 564 | @Override |
| 565 | public StateManager<LauncherState> getStateManager() { |
Sunny Goyal | 3e3f44c | 2017-10-23 17:14:52 -0700 | [diff] [blame] | 566 | return mStateManager; |
Sunny Goyal | be93f26 | 2017-10-20 17:05:27 -0700 | [diff] [blame] | 567 | } |
| 568 | |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 569 | private LauncherCallbacks mLauncherCallbacks; |
| 570 | |
Sunny Goyal | 32554d1 | 2015-12-03 15:31:25 -0800 | [diff] [blame] | 571 | /** |
| 572 | * Call this after onCreate to set or clear overlay. |
| 573 | */ |
Sunny Goyal | b1d7de2 | 2019-09-06 10:36:54 -0700 | [diff] [blame] | 574 | @Override |
Sunny Goyal | 32554d1 | 2015-12-03 15:31:25 -0800 | [diff] [blame] | 575 | public void setLauncherOverlay(LauncherOverlay overlay) { |
| 576 | if (overlay != null) { |
| 577 | overlay.setOverlayCallbacks(new LauncherOverlayCallbacksImpl()); |
| 578 | } |
| 579 | mWorkspace.setLauncherOverlay(overlay); |
| 580 | } |
| 581 | |
Sunny Goyal | b1d7de2 | 2019-09-06 10:36:54 -0700 | [diff] [blame] | 582 | @Override |
| 583 | public void runOnOverlayHidden(Runnable runnable) { |
| 584 | getWorkspace().runOnOverlayHidden(runnable); |
| 585 | } |
| 586 | |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 587 | public boolean setLauncherCallbacks(LauncherCallbacks callbacks) { |
| 588 | mLauncherCallbacks = callbacks; |
| 589 | return true; |
Adam Cohen | f9426d5 | 2012-06-04 17:26:21 -0700 | [diff] [blame] | 590 | } |
| 591 | |
Hyunyoung Song | 3f47144 | 2015-04-08 19:01:34 -0700 | [diff] [blame] | 592 | public boolean isDraggingEnabled() { |
Winson Chung | 36a62fe | 2012-05-06 18:04:42 -0700 | [diff] [blame] | 593 | // We prevent dragging when we are loading the workspace as it is possible to pick up a view |
| 594 | // that is subsequently removed from the workspace in startBinding(). |
Sunny Goyal | 639e906 | 2015-08-19 19:17:06 -0700 | [diff] [blame] | 595 | return !isWorkspaceLoading(); |
Winson Chung | 36a62fe | 2012-05-06 18:04:42 -0700 | [diff] [blame] | 596 | } |
| 597 | |
Tony Wickham | 010d255 | 2017-01-20 08:15:28 -0800 | [diff] [blame] | 598 | public PopupDataProvider getPopupDataProvider() { |
| 599 | return mPopupDataProvider; |
| 600 | } |
| 601 | |
Sunny Goyal | 0b0847b | 2018-03-14 12:30:11 -0700 | [diff] [blame] | 602 | @Override |
Tony Wickham | f34bee8 | 2018-12-03 18:11:39 -0800 | [diff] [blame] | 603 | public DotInfo getDotInfoForItem(ItemInfo info) { |
| 604 | return mPopupDataProvider.getDotInfoForItem(info); |
Sunny Goyal | 0b0847b | 2018-03-14 12:30:11 -0700 | [diff] [blame] | 605 | } |
| 606 | |
| 607 | @Override |
| 608 | public void invalidateParent(ItemInfo info) { |
Jon Miranda | e6f3fa4 | 2019-03-04 09:14:40 -0800 | [diff] [blame] | 609 | if (info.container >= 0) { |
Sunny Goyal | 0b0847b | 2018-03-14 12:30:11 -0700 | [diff] [blame] | 610 | View folderIcon = getWorkspace().getHomescreenIconByItemId(info.container); |
Jon Miranda | e6f3fa4 | 2019-03-04 09:14:40 -0800 | [diff] [blame] | 611 | if (folderIcon instanceof FolderIcon && folderIcon.getTag() instanceof FolderInfo) { |
Sunny Goyal | 11a5074 | 2019-08-07 09:24:26 -0700 | [diff] [blame] | 612 | if (new FolderGridOrganizer(getDeviceProfile().inv) |
| 613 | .setFolderInfo((FolderInfo) folderIcon.getTag()) |
| 614 | .isItemInPreview(info.rank)) { |
Jon Miranda | e6f3fa4 | 2019-03-04 09:14:40 -0800 | [diff] [blame] | 615 | folderIcon.invalidate(); |
| 616 | } |
Sunny Goyal | 0b0847b | 2018-03-14 12:30:11 -0700 | [diff] [blame] | 617 | } |
| 618 | } |
| 619 | } |
| 620 | |
Adam Cohen | c76e1dd | 2013-11-14 11:09:14 +0000 | [diff] [blame] | 621 | /** |
Winson Chung | 557d6ed | 2011-07-08 15:34:52 -0700 | [diff] [blame] | 622 | * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have |
| 623 | * a configuration step, this allows the proper animations to run after other transitions. |
| 624 | */ |
Sunny Goyal | efb7e84 | 2018-10-04 15:11:00 -0700 | [diff] [blame] | 625 | private int completeAdd( |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 626 | int requestCode, Intent intent, int appWidgetId, PendingRequestArgs info) { |
Sunny Goyal | efb7e84 | 2018-10-04 15:11:00 -0700 | [diff] [blame] | 627 | int screenId = info.screenId; |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 628 | if (info.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) { |
Adam Cohen | 83079e4 | 2014-09-19 17:43:08 -0700 | [diff] [blame] | 629 | // When the screen id represents an actual screen (as opposed to a rank) we make sure |
| 630 | // that the drop page actually exists. |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 631 | screenId = ensurePendingDropLayoutExists(info.screenId); |
Adam Cohen | 83079e4 | 2014-09-19 17:43:08 -0700 | [diff] [blame] | 632 | } |
Adam Cohen | db364c3 | 2014-05-20 14:23:40 -0700 | [diff] [blame] | 633 | |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 634 | switch (requestCode) { |
Patrick Dubroy | 002cbf4 | 2011-03-03 16:36:21 -0800 | [diff] [blame] | 635 | case REQUEST_CREATE_SHORTCUT: |
Sunny Goyal | fb5096d | 2016-09-08 14:32:06 -0700 | [diff] [blame] | 636 | completeAddShortcut(intent, info.container, screenId, info.cellX, info.cellY, info); |
Pinyao Ting | c907427 | 2019-11-11 11:51:44 -0800 | [diff] [blame] | 637 | announceForAccessibility(R.string.item_added_to_workspace); |
Winson Chung | b8472bb | 2011-08-05 13:49:21 -0700 | [diff] [blame] | 638 | break; |
Patrick Dubroy | 002cbf4 | 2011-03-03 16:36:21 -0800 | [diff] [blame] | 639 | case REQUEST_CREATE_APPWIDGET: |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 640 | completeAddAppWidget(appWidgetId, info, null, null); |
Winson Chung | b8472bb | 2011-08-05 13:49:21 -0700 | [diff] [blame] | 641 | break; |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 642 | case REQUEST_RECONFIGURE_APPWIDGET: |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 643 | completeRestoreAppWidget(appWidgetId, LauncherAppWidgetInfo.RESTORE_COMPLETED); |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 644 | break; |
Sunny Goyal | d478c83 | 2016-04-01 12:04:16 -0700 | [diff] [blame] | 645 | case REQUEST_BIND_PENDING_APPWIDGET: { |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 646 | int widgetId = appWidgetId; |
| 647 | LauncherAppWidgetInfo widgetInfo = |
Sunny Goyal | d478c83 | 2016-04-01 12:04:16 -0700 | [diff] [blame] | 648 | completeRestoreAppWidget(widgetId, LauncherAppWidgetInfo.FLAG_UI_NOT_READY); |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 649 | if (widgetInfo != null) { |
Sunny Goyal | d478c83 | 2016-04-01 12:04:16 -0700 | [diff] [blame] | 650 | // Since the view was just bound, also launch the configure activity if needed |
| 651 | LauncherAppWidgetProviderInfo provider = mAppWidgetManager |
| 652 | .getLauncherAppWidgetInfo(widgetId); |
Sunny Goyal | 04a324a | 2017-01-20 21:08:59 -0800 | [diff] [blame] | 653 | if (provider != null) { |
| 654 | new WidgetAddFlowHandler(provider) |
Samuel Fufa | ca37b8a | 2019-08-19 17:04:36 -0700 | [diff] [blame] | 655 | .startConfigActivity(this, widgetInfo, |
| 656 | REQUEST_RECONFIGURE_APPWIDGET); |
Sunny Goyal | d478c83 | 2016-04-01 12:04:16 -0700 | [diff] [blame] | 657 | } |
| 658 | } |
| 659 | break; |
| 660 | } |
Patrick Dubroy | 002cbf4 | 2011-03-03 16:36:21 -0800 | [diff] [blame] | 661 | } |
Adam Cohen | db364c3 | 2014-05-20 14:23:40 -0700 | [diff] [blame] | 662 | return screenId; |
Patrick Dubroy | 002cbf4 | 2011-03-03 16:36:21 -0800 | [diff] [blame] | 663 | } |
| 664 | |
Adam Cohen | c7cd2cb | 2014-11-17 17:45:34 -0800 | [diff] [blame] | 665 | private void handleActivityResult( |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 666 | final int requestCode, final int resultCode, final Intent data) { |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 667 | if (isWorkspaceLoading()) { |
| 668 | // process the result once the workspace has loaded. |
| 669 | mPendingActivityResult = new ActivityResultInfo(requestCode, resultCode, data); |
| 670 | return; |
| 671 | } |
| 672 | mPendingActivityResult = null; |
| 673 | |
Winson Chung | e341d30 | 2013-08-16 14:31:00 -0700 | [diff] [blame] | 674 | // Reset the startActivity waiting flag |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 675 | final PendingRequestArgs requestArgs = mPendingRequestArgs; |
| 676 | setWaitingForResult(null); |
| 677 | if (requestArgs == null) { |
| 678 | return; |
| 679 | } |
| 680 | |
| 681 | final int pendingAddWidgetId = requestArgs.getWidgetId(); |
Winson Chung | e341d30 | 2013-08-16 14:31:00 -0700 | [diff] [blame] | 682 | |
Adam Cohen | ad4e15c | 2013-10-17 16:21:35 -0700 | [diff] [blame] | 683 | Runnable exitSpringLoaded = new Runnable() { |
| 684 | @Override |
| 685 | public void run() { |
Sunny Goyal | 3e3f44c | 2017-10-23 17:14:52 -0700 | [diff] [blame] | 686 | mStateManager.goToState(NORMAL, SPRING_LOADED_EXIT_DELAY); |
Adam Cohen | ad4e15c | 2013-10-17 16:21:35 -0700 | [diff] [blame] | 687 | } |
| 688 | }; |
| 689 | |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 690 | if (requestCode == REQUEST_BIND_APPWIDGET) { |
Winson | a1f79d3 | 2015-08-05 14:00:45 -0700 | [diff] [blame] | 691 | // This is called only if the user did not previously have permissions to bind widgets |
Adam Cohen | ad4e15c | 2013-10-17 16:21:35 -0700 | [diff] [blame] | 692 | final int appWidgetId = data != null ? |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 693 | data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1; |
| 694 | if (resultCode == RESULT_CANCELED) { |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 695 | completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId, requestArgs); |
Sunny Goyal | 6e379fc | 2020-03-19 16:08:14 -0700 | [diff] [blame] | 696 | mWorkspace.removeExtraEmptyScreenDelayed( |
| 697 | ON_ACTIVITY_RESULT_ANIMATION_DELAY, false, exitSpringLoaded); |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 698 | } else if (resultCode == RESULT_OK) { |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 699 | addAppWidgetImpl( |
| 700 | appWidgetId, requestArgs, null, |
Sunny Goyal | 04a324a | 2017-01-20 21:08:59 -0800 | [diff] [blame] | 701 | requestArgs.getWidgetHandler(), |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 702 | ON_ACTIVITY_RESULT_ANIMATION_DELAY); |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 703 | } |
| 704 | return; |
| 705 | } |
Michael Jurka | 336fd4f | 2013-09-12 00:05:02 +0200 | [diff] [blame] | 706 | |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 707 | boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET || |
Sunny Goyal | 5c97f51 | 2015-05-19 16:03:28 -0700 | [diff] [blame] | 708 | requestCode == REQUEST_CREATE_APPWIDGET); |
Romain Guy | aad5ef4 | 2009-06-10 02:48:37 -0700 | [diff] [blame] | 709 | |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 710 | // We have special handling for widgets |
| 711 | if (isWidgetDrop) { |
Adam Cohen | 4637b5a | 2013-11-04 18:21:24 -0800 | [diff] [blame] | 712 | final int appWidgetId; |
| 713 | int widgetId = data != null ? data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) |
| 714 | : -1; |
| 715 | if (widgetId < 0) { |
| 716 | appWidgetId = pendingAddWidgetId; |
| 717 | } else { |
| 718 | appWidgetId = widgetId; |
| 719 | } |
| 720 | |
Adam Cohen | ad4e15c | 2013-10-17 16:21:35 -0700 | [diff] [blame] | 721 | final int result; |
Adam Cohen | f0129b1 | 2013-11-04 17:57:36 -0800 | [diff] [blame] | 722 | if (appWidgetId < 0 || resultCode == RESULT_CANCELED) { |
Adam Cohen | db364c3 | 2014-05-20 14:23:40 -0700 | [diff] [blame] | 723 | Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not " + |
| 724 | "returned from the widget configuration activity."); |
Adam Cohen | ad4e15c | 2013-10-17 16:21:35 -0700 | [diff] [blame] | 725 | result = RESULT_CANCELED; |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 726 | completeTwoStageWidgetDrop(result, appWidgetId, requestArgs); |
Sunny Goyal | 6e379fc | 2020-03-19 16:08:14 -0700 | [diff] [blame] | 727 | mWorkspace.removeExtraEmptyScreenDelayed( |
| 728 | ON_ACTIVITY_RESULT_ANIMATION_DELAY, false, |
| 729 | () -> getStateManager().goToState(NORMAL)); |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 730 | } else { |
| 731 | if (requestArgs.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) { |
| 732 | // When the screen id represents an actual screen (as opposed to a rank) |
| 733 | // we make sure that the drop page actually exists. |
| 734 | requestArgs.screenId = |
| 735 | ensurePendingDropLayoutExists(requestArgs.screenId); |
Adam Cohen | db364c3 | 2014-05-20 14:23:40 -0700 | [diff] [blame] | 736 | } |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 737 | final CellLayout dropLayout = |
| 738 | mWorkspace.getScreenWithId(requestArgs.screenId); |
| 739 | |
| 740 | dropLayout.setDropPending(true); |
| 741 | final Runnable onComplete = new Runnable() { |
| 742 | @Override |
| 743 | public void run() { |
| 744 | completeTwoStageWidgetDrop(resultCode, appWidgetId, requestArgs); |
| 745 | dropLayout.setDropPending(false); |
| 746 | } |
| 747 | }; |
Sunny Goyal | 6e379fc | 2020-03-19 16:08:14 -0700 | [diff] [blame] | 748 | mWorkspace.removeExtraEmptyScreenDelayed( |
| 749 | ON_ACTIVITY_RESULT_ANIMATION_DELAY, false, onComplete); |
Winson Chung | 5aaab77 | 2012-04-27 15:24:02 -0700 | [diff] [blame] | 750 | } |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 751 | return; |
| 752 | } |
| 753 | |
Sunny Goyal | d478c83 | 2016-04-01 12:04:16 -0700 | [diff] [blame] | 754 | if (requestCode == REQUEST_RECONFIGURE_APPWIDGET |
| 755 | || requestCode == REQUEST_BIND_PENDING_APPWIDGET) { |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 756 | if (resultCode == RESULT_OK) { |
| 757 | // Update the widget view. |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 758 | completeAdd(requestCode, data, pendingAddWidgetId, requestArgs); |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 759 | } |
| 760 | // Leave the widget in the pending state if the user canceled the configure. |
| 761 | return; |
| 762 | } |
| 763 | |
Sunny Goyal | aad9058 | 2015-07-09 14:22:50 -0700 | [diff] [blame] | 764 | if (requestCode == REQUEST_CREATE_SHORTCUT) { |
| 765 | // Handle custom shortcuts created using ACTION_CREATE_SHORTCUT. |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 766 | if (resultCode == RESULT_OK && requestArgs.container != ItemInfo.NO_ID) { |
| 767 | completeAdd(requestCode, data, -1, requestArgs); |
Sunny Goyal | 6e379fc | 2020-03-19 16:08:14 -0700 | [diff] [blame] | 768 | mWorkspace.removeExtraEmptyScreenDelayed( |
| 769 | ON_ACTIVITY_RESULT_ANIMATION_DELAY, false, exitSpringLoaded); |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 770 | |
Sunny Goyal | aad9058 | 2015-07-09 14:22:50 -0700 | [diff] [blame] | 771 | } else if (resultCode == RESULT_CANCELED) { |
Sunny Goyal | 6e379fc | 2020-03-19 16:08:14 -0700 | [diff] [blame] | 772 | mWorkspace.removeExtraEmptyScreenDelayed( |
| 773 | ON_ACTIVITY_RESULT_ANIMATION_DELAY, false, exitSpringLoaded); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 774 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 775 | } |
Hongming Jin | d91cb6e | 2020-01-27 16:23:03 -0800 | [diff] [blame] | 776 | |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 777 | mDragLayer.clearAnimatedView(); |
Adam Cohen | c7cd2cb | 2014-11-17 17:45:34 -0800 | [diff] [blame] | 778 | } |
| 779 | |
| 780 | @Override |
Sunny Goyal | 64a75aa | 2017-07-03 13:50:52 -0700 | [diff] [blame] | 781 | public void onActivityResult( |
Adam Cohen | c7cd2cb | 2014-11-17 17:45:34 -0800 | [diff] [blame] | 782 | final int requestCode, final int resultCode, final Intent data) { |
Sunny Goyal | dedda05 | 2019-05-14 15:23:48 -0700 | [diff] [blame] | 783 | mPendingActivityRequestCode = -1; |
Adam Cohen | c7cd2cb | 2014-11-17 17:45:34 -0800 | [diff] [blame] | 784 | handleActivityResult(requestCode, resultCode, data); |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 785 | } |
| 786 | |
Sunny Goyal | 7ce471b | 2017-08-02 03:37:39 -0700 | [diff] [blame] | 787 | @Override |
Sunny Goyal | dd2e6df | 2015-07-07 10:57:57 -0700 | [diff] [blame] | 788 | public void onRequestPermissionsResult(int requestCode, String[] permissions, |
Dave Hawkey | 3a43ed6 | 2015-06-26 10:27:47 -0600 | [diff] [blame] | 789 | int[] grantResults) { |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 790 | PendingRequestArgs pendingArgs = mPendingRequestArgs; |
| 791 | if (requestCode == REQUEST_PERMISSION_CALL_PHONE && pendingArgs != null |
| 792 | && pendingArgs.getRequestCode() == REQUEST_PERMISSION_CALL_PHONE) { |
| 793 | setWaitingForResult(null); |
| 794 | |
Sunny Goyal | 28c6b96 | 2015-10-12 11:42:05 -0700 | [diff] [blame] | 795 | View v = null; |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 796 | CellLayout layout = getCellLayout(pendingArgs.container, pendingArgs.screenId); |
Sunny Goyal | 28c6b96 | 2015-10-12 11:42:05 -0700 | [diff] [blame] | 797 | if (layout != null) { |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 798 | v = layout.getChildAt(pendingArgs.cellX, pendingArgs.cellY); |
Sunny Goyal | 28c6b96 | 2015-10-12 11:42:05 -0700 | [diff] [blame] | 799 | } |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 800 | Intent intent = pendingArgs.getPendingIntent(); |
| 801 | |
Sunny Goyal | 28c6b96 | 2015-10-12 11:42:05 -0700 | [diff] [blame] | 802 | if (grantResults.length > 0 |
| 803 | && grantResults[0] == PackageManager.PERMISSION_GRANTED) { |
Sunny Goyal | 852537f | 2020-07-15 17:02:16 -0700 | [diff] [blame] | 804 | startActivitySafely(v, intent, null); |
Sunny Goyal | 28c6b96 | 2015-10-12 11:42:05 -0700 | [diff] [blame] | 805 | } else { |
| 806 | // TODO: Show a snack bar with link to settings |
| 807 | Toast.makeText(this, getString(R.string.msg_no_phone_permission, |
Sunny Goyal | 112ce42 | 2016-08-22 16:45:29 -0700 | [diff] [blame] | 808 | getString(R.string.derived_app_name)), Toast.LENGTH_SHORT).show(); |
Sunny Goyal | 28c6b96 | 2015-10-12 11:42:05 -0700 | [diff] [blame] | 809 | } |
| 810 | } |
Dave Hawkey | 3a43ed6 | 2015-06-26 10:27:47 -0600 | [diff] [blame] | 811 | } |
| 812 | |
Adam Cohen | db364c3 | 2014-05-20 14:23:40 -0700 | [diff] [blame] | 813 | /** |
| 814 | * Check to see if a given screen id exists. If not, create it at the end, return the new id. |
| 815 | * |
| 816 | * @param screenId the screen id to check |
| 817 | * @return the new screen, or screenId if it exists |
| 818 | */ |
Sunny Goyal | efb7e84 | 2018-10-04 15:11:00 -0700 | [diff] [blame] | 819 | private int ensurePendingDropLayoutExists(int screenId) { |
Sunny Goyal | 32554d1 | 2015-12-03 15:31:25 -0800 | [diff] [blame] | 820 | CellLayout dropLayout = mWorkspace.getScreenWithId(screenId); |
Adam Cohen | db364c3 | 2014-05-20 14:23:40 -0700 | [diff] [blame] | 821 | if (dropLayout == null) { |
| 822 | // it's possible that the add screen was removed because it was |
| 823 | // empty and a re-bind occurred |
| 824 | mWorkspace.addExtraEmptyScreen(); |
| 825 | return mWorkspace.commitExtraEmptyScreen(); |
| 826 | } else { |
| 827 | return screenId; |
| 828 | } |
| 829 | } |
| 830 | |
Samuel Fufa | ca37b8a | 2019-08-19 17:04:36 -0700 | [diff] [blame] | 831 | @Thunk |
| 832 | void completeTwoStageWidgetDrop( |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 833 | final int resultCode, final int appWidgetId, final PendingRequestArgs requestArgs) { |
| 834 | CellLayout cellLayout = mWorkspace.getScreenWithId(requestArgs.screenId); |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 835 | Runnable onCompleteRunnable = null; |
| 836 | int animationType = 0; |
| 837 | |
Adam Cohen | 9d5b7d8 | 2012-05-09 18:00:44 -0700 | [diff] [blame] | 838 | AppWidgetHostView boundWidget = null; |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 839 | if (resultCode == RESULT_OK) { |
| 840 | animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION; |
| 841 | final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId, |
Sunny Goyal | 04a324a | 2017-01-20 21:08:59 -0800 | [diff] [blame] | 842 | requestArgs.getWidgetHandler().getProviderInfo(this)); |
Adam Cohen | 9d5b7d8 | 2012-05-09 18:00:44 -0700 | [diff] [blame] | 843 | boundWidget = layout; |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 844 | onCompleteRunnable = new Runnable() { |
| 845 | @Override |
| 846 | public void run() { |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 847 | completeAddAppWidget(appWidgetId, requestArgs, layout, null); |
Sunny Goyal | 3e3f44c | 2017-10-23 17:14:52 -0700 | [diff] [blame] | 848 | mStateManager.goToState(NORMAL, SPRING_LOADED_EXIT_DELAY); |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 849 | } |
| 850 | }; |
| 851 | } else if (resultCode == RESULT_CANCELED) { |
Adam Cohen | 4637b5a | 2013-11-04 18:21:24 -0800 | [diff] [blame] | 852 | mAppWidgetHost.deleteAppWidgetId(appWidgetId); |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 853 | animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION; |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 854 | } |
Adam Cohen | 9d5b7d8 | 2012-05-09 18:00:44 -0700 | [diff] [blame] | 855 | if (mDragLayer.getAnimatedView() != null) { |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 856 | mWorkspace.animateWidgetDrop(requestArgs, cellLayout, |
Adam Cohen | 9d5b7d8 | 2012-05-09 18:00:44 -0700 | [diff] [blame] | 857 | (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable, |
| 858 | animationType, boundWidget, true); |
Adam Cohen | ad4e15c | 2013-10-17 16:21:35 -0700 | [diff] [blame] | 859 | } else if (onCompleteRunnable != null) { |
Adam Cohen | 9d5b7d8 | 2012-05-09 18:00:44 -0700 | [diff] [blame] | 860 | // The animated view may be null in the case of a rotation during widget configuration |
| 861 | onCompleteRunnable.run(); |
| 862 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 863 | } |
| 864 | |
| 865 | @Override |
Michael Jurka | cd496d7 | 2013-04-11 11:32:45 -0700 | [diff] [blame] | 866 | protected void onStop() { |
| 867 | super.onStop(); |
Sunny Goyal | b1d7de2 | 2019-09-06 10:36:54 -0700 | [diff] [blame] | 868 | if (mDeferOverlayCallbacks) { |
| 869 | checkIfOverlayStillDeferred(); |
| 870 | } else { |
| 871 | mOverlayManager.onActivityStopped(this); |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 872 | } |
Sunny Goyal | b1d7de2 | 2019-09-06 10:36:54 -0700 | [diff] [blame] | 873 | |
Hyunyoung Song | 95786e0 | 2020-09-15 00:34:10 -0700 | [diff] [blame] | 874 | logStopAndResume(false /* isResume */); |
vadimt | 04ebcf4 | 2021-02-03 15:31:51 -0800 | [diff] [blame] | 875 | mAppWidgetHost.setActivityStarted(false); |
Tony Wickham | 010d255 | 2017-01-20 08:15:28 -0800 | [diff] [blame] | 876 | NotificationListener.removeNotificationsChangedListener(); |
Michael Jurka | cd496d7 | 2013-04-11 11:32:45 -0700 | [diff] [blame] | 877 | } |
| 878 | |
| 879 | @Override |
| 880 | protected void onStart() { |
Winson Chung | 5cc62c7 | 2019-10-16 11:32:41 -0700 | [diff] [blame] | 881 | Object traceToken = TraceHelper.INSTANCE.beginSection(ON_START_EVT, |
| 882 | TraceHelper.FLAG_UI_EVENT); |
Michael Jurka | cd496d7 | 2013-04-11 11:32:45 -0700 | [diff] [blame] | 883 | super.onStart(); |
Sunny Goyal | b1d7de2 | 2019-09-06 10:36:54 -0700 | [diff] [blame] | 884 | if (!mDeferOverlayCallbacks) { |
| 885 | mOverlayManager.onActivityStarted(this); |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 886 | } |
Sunny Goyal | b1d7de2 | 2019-09-06 10:36:54 -0700 | [diff] [blame] | 887 | |
vadimt | 04ebcf4 | 2021-02-03 15:31:51 -0800 | [diff] [blame] | 888 | mAppWidgetHost.setActivityStarted(true); |
Winson Chung | 5cc62c7 | 2019-10-16 11:32:41 -0700 | [diff] [blame] | 889 | TraceHelper.INSTANCE.endSection(traceToken); |
Michael Jurka | cd496d7 | 2013-04-11 11:32:45 -0700 | [diff] [blame] | 890 | } |
| 891 | |
Sunny Goyal | 35e7d38 | 2020-05-08 13:37:58 -0700 | [diff] [blame] | 892 | @Override |
| 893 | @CallSuper |
| 894 | protected void onDeferredResumed() { |
Hyunyoung Song | 95786e0 | 2020-09-15 00:34:10 -0700 | [diff] [blame] | 895 | logStopAndResume(true /* isResume */); |
Sunny Goyal | a002c6c | 2019-02-12 16:20:10 -0800 | [diff] [blame] | 896 | |
Sunny Goyal | 35e7d38 | 2020-05-08 13:37:58 -0700 | [diff] [blame] | 897 | // Process any items that were added while Launcher was away. |
Sunny Goyal | 60e68c9 | 2020-08-12 13:59:27 -0700 | [diff] [blame] | 898 | ItemInstallQueue.INSTANCE.get(this) |
| 899 | .resumeModelPush(FLAG_ACTIVITY_PAUSED); |
Sunny Goyal | e9c6f4c | 2019-05-30 11:35:25 -0700 | [diff] [blame] | 900 | |
Sunny Goyal | 35e7d38 | 2020-05-08 13:37:58 -0700 | [diff] [blame] | 901 | // Refresh shortcuts if the permission changed. |
Sunny Goyal | 8b74cc7 | 2020-07-27 17:50:33 -0700 | [diff] [blame] | 902 | mModel.validateModelDataOnResume(); |
Sunny Goyal | e9c6f4c | 2019-05-30 11:35:25 -0700 | [diff] [blame] | 903 | |
Sunny Goyal | 35e7d38 | 2020-05-08 13:37:58 -0700 | [diff] [blame] | 904 | // Set the notification listener and fetch updated notifications when we resume |
| 905 | NotificationListener.setNotificationsChangedListener(mPopupDataProvider); |
Winson Chung | 8758311 | 2019-06-10 14:20:58 -0700 | [diff] [blame] | 906 | |
Sunny Goyal | 35e7d38 | 2020-05-08 13:37:58 -0700 | [diff] [blame] | 907 | DiscoveryBounce.showForHomeIfNeeded(this); |
vadimt | 04ebcf4 | 2021-02-03 15:31:51 -0800 | [diff] [blame] | 908 | mAppWidgetHost.setActivityResumed(true); |
Sunny Goyal | dedda05 | 2019-05-14 15:23:48 -0700 | [diff] [blame] | 909 | } |
| 910 | |
Hyunyoung Song | 95786e0 | 2020-09-15 00:34:10 -0700 | [diff] [blame] | 911 | private void logStopAndResume(boolean isResume) { |
Hyunyoung Song | 77e2977 | 2020-08-25 00:53:48 -0700 | [diff] [blame] | 912 | if (mPendingExecutor != null) return; |
Hyunyoung Song | 801f81f | 2020-06-19 02:58:53 -0700 | [diff] [blame] | 913 | int pageIndex = mWorkspace.isOverlayShown() ? -1 : mWorkspace.getCurrentPage(); |
Hyunyoung Song | 95786e0 | 2020-09-15 00:34:10 -0700 | [diff] [blame] | 914 | int statsLogOrdinal = mStateManager.getState().statsLogOrdinal; |
Hyunyoung Song | 801f81f | 2020-06-19 02:58:53 -0700 | [diff] [blame] | 915 | |
| 916 | StatsLogManager.EventEnum event; |
| 917 | StatsLogManager.StatsLogger logger = getStatsLogManager().logger(); |
Hyunyoung Song | 95786e0 | 2020-09-15 00:34:10 -0700 | [diff] [blame] | 918 | if (isResume) { |
Hyunyoung Song | 801f81f | 2020-06-19 02:58:53 -0700 | [diff] [blame] | 919 | logger.withSrcState(LAUNCHER_STATE_BACKGROUND) |
Hyunyoung Song | 95786e0 | 2020-09-15 00:34:10 -0700 | [diff] [blame] | 920 | .withDstState(mStateManager.getState().statsLogOrdinal); |
Hyunyoung Song | 801f81f | 2020-06-19 02:58:53 -0700 | [diff] [blame] | 921 | event = LAUNCHER_ONRESUME; |
| 922 | } else { /* command == Action.Command.STOP */ |
Hyunyoung Song | 95786e0 | 2020-09-15 00:34:10 -0700 | [diff] [blame] | 923 | logger.withSrcState(mStateManager.getState().statsLogOrdinal) |
Hyunyoung Song | 801f81f | 2020-06-19 02:58:53 -0700 | [diff] [blame] | 924 | .withDstState(LAUNCHER_STATE_BACKGROUND); |
| 925 | event = LAUNCHER_ONSTOP; |
| 926 | } |
| 927 | |
Hyunyoung Song | 95786e0 | 2020-09-15 00:34:10 -0700 | [diff] [blame] | 928 | if (statsLogOrdinal == LAUNCHER_STATE_HOME && mWorkspace != null) { |
Hyunyoung Song | 801f81f | 2020-06-19 02:58:53 -0700 | [diff] [blame] | 929 | logger.withContainerInfo(LauncherAtom.ContainerInfo.newBuilder() |
| 930 | .setWorkspace( |
| 931 | LauncherAtom.WorkspaceContainer.newBuilder() |
| 932 | .setPageIndex(pageIndex)).build()); |
Becky Qiu | bfc2da1 | 2019-08-01 11:09:38 -0700 | [diff] [blame] | 933 | } |
Hyunyoung Song | 801f81f | 2020-06-19 02:58:53 -0700 | [diff] [blame] | 934 | logger.log(event); |
Sunny Goyal | b1d7de2 | 2019-09-06 10:36:54 -0700 | [diff] [blame] | 935 | } |
Becky Qiu | bfc2da1 | 2019-08-01 11:09:38 -0700 | [diff] [blame] | 936 | |
Sunny Goyal | b1d7de2 | 2019-09-06 10:36:54 -0700 | [diff] [blame] | 937 | private void scheduleDeferredCheck() { |
| 938 | mHandler.removeCallbacks(mDeferredOverlayCallbacks); |
| 939 | postAsyncCallback(mHandler, mDeferredOverlayCallbacks); |
| 940 | } |
| 941 | |
| 942 | private void checkIfOverlayStillDeferred() { |
| 943 | if (!mDeferOverlayCallbacks) { |
| 944 | return; |
| 945 | } |
Sunny Goyal | 8f96546 | 2020-04-23 19:00:36 -0700 | [diff] [blame] | 946 | if (isStarted() && (!hasBeenResumed() |
| 947 | || mStateManager.getState().hasFlag(FLAG_NON_INTERACTIVE))) { |
Sunny Goyal | b1d7de2 | 2019-09-06 10:36:54 -0700 | [diff] [blame] | 948 | return; |
| 949 | } |
| 950 | mDeferOverlayCallbacks = false; |
| 951 | |
| 952 | // Move the client to the correct state. Calling the same method twice is no-op. |
| 953 | if (isStarted()) { |
| 954 | mOverlayManager.onActivityStarted(this); |
| 955 | } |
| 956 | if (hasBeenResumed()) { |
| 957 | mOverlayManager.onActivityResumed(this); |
| 958 | } else { |
| 959 | mOverlayManager.onActivityPaused(this); |
| 960 | } |
| 961 | if (!isStarted()) { |
| 962 | mOverlayManager.onActivityStopped(this); |
| 963 | } |
| 964 | } |
| 965 | |
| 966 | public void deferOverlayCallbacksUntilNextResumeOrStop() { |
| 967 | mDeferOverlayCallbacks = true; |
| 968 | } |
| 969 | |
| 970 | public LauncherOverlayManager getOverlayManager() { |
| 971 | return mOverlayManager; |
Becky Qiu | bfc2da1 | 2019-08-01 11:09:38 -0700 | [diff] [blame] | 972 | } |
| 973 | |
Sunny Goyal | 35e7d38 | 2020-05-08 13:37:58 -0700 | [diff] [blame] | 974 | @Override |
Winson Chung | ef52876 | 2019-09-06 12:05:52 -0700 | [diff] [blame] | 975 | public void onStateSetStart(LauncherState state) { |
Sunny Goyal | 35e7d38 | 2020-05-08 13:37:58 -0700 | [diff] [blame] | 976 | super.onStateSetStart(state); |
Sunny Goyal | b1d7de2 | 2019-09-06 10:36:54 -0700 | [diff] [blame] | 977 | if (mDeferOverlayCallbacks) { |
| 978 | scheduleDeferredCheck(); |
Sunny Goyal | e9c6f4c | 2019-05-30 11:35:25 -0700 | [diff] [blame] | 979 | } |
Sunny Goyal | 210e174 | 2019-10-17 12:05:38 -0700 | [diff] [blame] | 980 | addActivityFlags(ACTIVITY_STATE_TRANSITION_ACTIVE); |
Sunny Goyal | 8f96546 | 2020-04-23 19:00:36 -0700 | [diff] [blame] | 981 | |
| 982 | if (state.hasFlag(FLAG_CLOSE_POPUPS)) { |
| 983 | AbstractFloatingView.closeAllOpenViews(this, !state.hasFlag(FLAG_NON_INTERACTIVE)); |
| 984 | } |
| 985 | |
| 986 | if (state == SPRING_LOADED) { |
| 987 | // Prevent any Un/InstallShortcutReceivers from updating the db while we are |
| 988 | // not on homescreen |
Sunny Goyal | 60e68c9 | 2020-08-12 13:59:27 -0700 | [diff] [blame] | 989 | ItemInstallQueue.INSTANCE.get(this).pauseModelPush(FLAG_DRAG_AND_DROP); |
Sunny Goyal | 8f96546 | 2020-04-23 19:00:36 -0700 | [diff] [blame] | 990 | getRotationHelper().setCurrentStateRequest(REQUEST_LOCK); |
| 991 | |
| 992 | mWorkspace.showPageIndicatorAtCurrentScroll(); |
| 993 | mWorkspace.setClipChildren(false); |
| 994 | } |
| 995 | // When multiple pages are visible, show persistent page indicator |
| 996 | mWorkspace.getPageIndicator().setShouldAutoHide(!state.hasFlag(FLAG_MULTI_PAGE)); |
thiruram | 0eabc78 | 2021-04-02 14:30:10 -0700 | [diff] [blame^] | 997 | |
thiruram | c96873c | 2021-02-11 15:13:47 -0800 | [diff] [blame] | 998 | mPrevLauncherState = mStateManager.getCurrentStableState(); |
thiruram | 0eabc78 | 2021-04-02 14:30:10 -0700 | [diff] [blame^] | 999 | if (mPrevLauncherState != state && ALL_APPS.equals(state) |
| 1000 | // Making sure mAllAppsSessionLogId is null to avoid double logging. |
| 1001 | && mAllAppsSessionLogId == null) { |
| 1002 | // creates new instance ID since new all apps session is started. |
| 1003 | mAllAppsSessionLogId = new InstanceIdSequence().newInstanceId(); |
| 1004 | getStatsLogManager() |
| 1005 | .logger() |
| 1006 | .log(FeatureFlags.ENABLE_DEVICE_SEARCH.get() |
| 1007 | ? LAUNCHER_ALLAPPS_ENTRY_WITH_DEVICE_SEARCH |
| 1008 | : LAUNCHER_ALLAPPS_ENTRY); |
| 1009 | } |
Sunny Goyal | dedda05 | 2019-05-14 15:23:48 -0700 | [diff] [blame] | 1010 | } |
| 1011 | |
Sunny Goyal | 35e7d38 | 2020-05-08 13:37:58 -0700 | [diff] [blame] | 1012 | @Override |
Winson Chung | ef52876 | 2019-09-06 12:05:52 -0700 | [diff] [blame] | 1013 | public void onStateSetEnd(LauncherState state) { |
Sunny Goyal | fee1b25 | 2020-12-14 12:30:38 -0800 | [diff] [blame] | 1014 | super.onStateSetEnd(state); |
vadimt | 04ebcf4 | 2021-02-03 15:31:51 -0800 | [diff] [blame] | 1015 | getAppWidgetHost().setStateIsNormal(state == LauncherState.NORMAL); |
Sunny Goyal | 8f96546 | 2020-04-23 19:00:36 -0700 | [diff] [blame] | 1016 | getWorkspace().setClipChildren(!state.hasFlag(FLAG_MULTI_PAGE)); |
| 1017 | |
Winson Chung | ef52876 | 2019-09-06 12:05:52 -0700 | [diff] [blame] | 1018 | finishAutoCancelActionMode(); |
Sunny Goyal | 210e174 | 2019-10-17 12:05:38 -0700 | [diff] [blame] | 1019 | removeActivityFlags(ACTIVITY_STATE_TRANSITION_ACTIVE); |
Sunny Goyal | 8f96546 | 2020-04-23 19:00:36 -0700 | [diff] [blame] | 1020 | |
| 1021 | // dispatch window state changed |
| 1022 | getWindow().getDecorView().sendAccessibilityEvent(TYPE_WINDOW_STATE_CHANGED); |
| 1023 | AccessibilityManagerCompat.sendStateEventToTest(this, state.ordinal); |
| 1024 | |
| 1025 | if (state == NORMAL) { |
| 1026 | // Re-enable any Un/InstallShortcutReceiver and now process any queued items |
Sunny Goyal | 60e68c9 | 2020-08-12 13:59:27 -0700 | [diff] [blame] | 1027 | ItemInstallQueue.INSTANCE.get(this) |
| 1028 | .resumeModelPush(FLAG_DRAG_AND_DROP); |
Sunny Goyal | 8f96546 | 2020-04-23 19:00:36 -0700 | [diff] [blame] | 1029 | |
| 1030 | // Clear any rotation locks when going to normal state |
| 1031 | getRotationHelper().setCurrentStateRequest(REQUEST_NONE); |
| 1032 | } |
thiruram | c96873c | 2021-02-11 15:13:47 -0800 | [diff] [blame] | 1033 | |
thiruram | 0eabc78 | 2021-04-02 14:30:10 -0700 | [diff] [blame^] | 1034 | if (mPrevLauncherState != state && !ALL_APPS.equals(state) |
| 1035 | // Making sure mAllAppsSessionLogId is not null to avoid double logging. |
thiruram | c96873c | 2021-02-11 15:13:47 -0800 | [diff] [blame] | 1036 | && mAllAppsSessionLogId != null) { |
| 1037 | getStatsLogManager().logger().log(LAUNCHER_ALLAPPS_EXIT); |
| 1038 | mAllAppsSessionLogId = null; |
| 1039 | } |
Winson Chung | ef52876 | 2019-09-06 12:05:52 -0700 | [diff] [blame] | 1040 | } |
| 1041 | |
Michael Jurka | cd496d7 | 2013-04-11 11:32:45 -0700 | [diff] [blame] | 1042 | @Override |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1043 | protected void onResume() { |
Winson Chung | 5cc62c7 | 2019-10-16 11:32:41 -0700 | [diff] [blame] | 1044 | Object traceToken = TraceHelper.INSTANCE.beginSection(ON_RESUME_EVT, |
| 1045 | TraceHelper.FLAG_UI_EVENT); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1046 | super.onResume(); |
Sunny Goyal | fca6bc9 | 2017-09-28 16:28:34 -0700 | [diff] [blame] | 1047 | |
Sunny Goyal | b1d7de2 | 2019-09-06 10:36:54 -0700 | [diff] [blame] | 1048 | if (mDeferOverlayCallbacks) { |
| 1049 | scheduleDeferredCheck(); |
| 1050 | } else { |
| 1051 | mOverlayManager.onActivityResumed(this); |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 1052 | } |
Mario Bertschler | 0fc6f68 | 2017-02-17 12:16:13 -0800 | [diff] [blame] | 1053 | |
Winson Chung | 5cc62c7 | 2019-10-16 11:32:41 -0700 | [diff] [blame] | 1054 | TraceHelper.INSTANCE.endSection(traceToken); |
Adam Cohen | 06dff35 | 2012-06-01 17:17:08 -0700 | [diff] [blame] | 1055 | } |
| 1056 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1057 | @Override |
The Android Open Source Project | 7376fae | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 1058 | protected void onPause() { |
Winson Chung | 997a923 | 2013-07-24 15:33:46 -0700 | [diff] [blame] | 1059 | // Ensure that items added to Launcher are queued until Launcher returns |
Sunny Goyal | 60e68c9 | 2020-08-12 13:59:27 -0700 | [diff] [blame] | 1060 | ItemInstallQueue.INSTANCE.get(this).pauseModelPush(FLAG_ACTIVITY_PAUSED); |
Winson Chung | 997a923 | 2013-07-24 15:33:46 -0700 | [diff] [blame] | 1061 | |
The Android Open Source Project | 7376fae | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 1062 | super.onPause(); |
Joe Onorato | 24b6fd8 | 2009-11-12 13:47:09 -0800 | [diff] [blame] | 1063 | mDragController.cancelDrag(); |
Sunny Goyal | 9b18010 | 2020-03-11 10:02:29 -0700 | [diff] [blame] | 1064 | mLastTouchUpTime = -1; |
Hyunyoung Song | 497708c | 2019-05-01 16:16:53 -0700 | [diff] [blame] | 1065 | mDropTargetBar.animateToVisibility(false); |
Sunny Goyal | b1d7de2 | 2019-09-06 10:36:54 -0700 | [diff] [blame] | 1066 | |
| 1067 | if (!mDeferOverlayCallbacks) { |
| 1068 | mOverlayManager.onActivityPaused(this); |
Adam Cohen | bffe745 | 2013-07-22 18:21:45 -0700 | [diff] [blame] | 1069 | } |
vadimt | 04ebcf4 | 2021-02-03 15:31:51 -0800 | [diff] [blame] | 1070 | mAppWidgetHost.setActivityResumed(false); |
Adam Cohen | bffe745 | 2013-07-22 18:21:45 -0700 | [diff] [blame] | 1071 | } |
| 1072 | |
Adam Cohen | c2d6e89 | 2014-10-16 09:49:24 -0700 | [diff] [blame] | 1073 | class LauncherOverlayCallbacksImpl implements LauncherOverlayCallbacks { |
| 1074 | |
Sunny Goyal | c86df47 | 2016-02-25 09:19:38 -0800 | [diff] [blame] | 1075 | public void onScrollChanged(float progress) { |
| 1076 | if (mWorkspace != null) { |
| 1077 | mWorkspace.onOverlayScrollChanged(progress); |
| 1078 | } |
| 1079 | } |
Adam Cohen | c2d6e89 | 2014-10-16 09:49:24 -0700 | [diff] [blame] | 1080 | } |
| 1081 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1082 | /** |
| 1083 | * Restores the previous state, if it exists. |
| 1084 | * |
| 1085 | * @param savedState The previous state. |
| 1086 | */ |
| 1087 | private void restoreState(Bundle savedState) { |
| 1088 | if (savedState == null) { |
| 1089 | return; |
| 1090 | } |
| 1091 | |
Sunny Goyal | 3e3f44c | 2017-10-23 17:14:52 -0700 | [diff] [blame] | 1092 | int stateOrdinal = savedState.getInt(RUNTIME_STATE, NORMAL.ordinal); |
Sunny Goyal | f9403d9 | 2017-10-18 10:55:56 -0700 | [diff] [blame] | 1093 | LauncherState[] stateValues = LauncherState.values(); |
| 1094 | LauncherState state = stateValues[stateOrdinal]; |
Sunny Goyal | 6c0c61a | 2020-12-08 19:19:56 -0800 | [diff] [blame] | 1095 | |
| 1096 | NonConfigInstance lastInstance = (NonConfigInstance) getLastNonConfigurationInstance(); |
| 1097 | boolean forceRestore = lastInstance != null |
| 1098 | && (lastInstance.config.diff(mOldConfig) & CONFIG_UI_MODE) != 0; |
| 1099 | if (forceRestore || !state.shouldDisableRestore()) { |
Sunny Goyal | 3e3f44c | 2017-10-23 17:14:52 -0700 | [diff] [blame] | 1100 | mStateManager.goToState(state, false /* animated */); |
Joe Onorato | 3a8820b | 2009-11-10 15:06:42 -0800 | [diff] [blame] | 1101 | } |
| 1102 | |
Samuel Fufa | ca37b8a | 2019-08-19 17:04:36 -0700 | [diff] [blame] | 1103 | PendingRequestArgs requestArgs = savedState.getParcelable( |
| 1104 | RUNTIME_STATE_PENDING_REQUEST_ARGS); |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 1105 | if (requestArgs != null) { |
| 1106 | setWaitingForResult(requestArgs); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1107 | } |
Sunny Goyal | dedda05 | 2019-05-14 15:23:48 -0700 | [diff] [blame] | 1108 | mPendingActivityRequestCode = savedState.getInt(RUNTIME_STATE_PENDING_REQUEST_CODE); |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 1109 | |
| 1110 | mPendingActivityResult = savedState.getParcelable(RUNTIME_STATE_PENDING_ACTIVITY_RESULT); |
Sunny Goyal | f1fbc3f | 2017-10-10 15:21:15 -0700 | [diff] [blame] | 1111 | |
| 1112 | SparseArray<Parcelable> widgetsState = |
| 1113 | savedState.getSparseParcelableArray(RUNTIME_STATE_WIDGET_PANEL); |
| 1114 | if (widgetsState != null) { |
| 1115 | WidgetsFullSheet.show(this, false).restoreHierarchyState(widgetsState); |
| 1116 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1117 | } |
| 1118 | |
| 1119 | /** |
| 1120 | * Finds all the views we need and configure them properly. |
| 1121 | */ |
Tony Wickham | 04fca16 | 2020-02-05 15:06:52 -0800 | [diff] [blame] | 1122 | protected void setupViews() { |
Sunny Goyal | cc96aa1 | 2018-01-11 09:56:07 -0800 | [diff] [blame] | 1123 | mDragLayer = findViewById(R.id.drag_layer); |
Sunny Goyal | 3333b0c | 2016-05-09 20:43:21 -0700 | [diff] [blame] | 1124 | mFocusHandler = mDragLayer.getFocusIndicatorHelper(); |
Sunny Goyal | 966d901 | 2017-06-06 16:43:59 -0700 | [diff] [blame] | 1125 | mWorkspace = mDragLayer.findViewById(R.id.workspace); |
Sunny Goyal | d0a6ae7 | 2016-06-16 12:29:03 -0700 | [diff] [blame] | 1126 | mWorkspace.initParentViews(mDragLayer); |
Sreyas | 321bfae | 2020-02-21 17:53:02 -0800 | [diff] [blame] | 1127 | mOverviewPanel = findViewById(R.id.overview_panel); |
Sunny Goyal | 7c7be8c | 2018-03-07 19:58:07 -0800 | [diff] [blame] | 1128 | mHotseat = findViewById(R.id.hotseat); |
Adam Cohen | b66675a | 2020-05-15 16:16:17 -0700 | [diff] [blame] | 1129 | mHotseat.setWorkspace(mWorkspace); |
Craig Mautner | 360310b | 2012-10-26 15:13:08 -0700 | [diff] [blame] | 1130 | |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 1131 | // Setup the drag layer |
Sunny Goyal | 5d1873a | 2018-05-08 11:10:44 -0700 | [diff] [blame] | 1132 | mDragLayer.setup(mDragController, mWorkspace); |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 1133 | |
Hyunyoung Song | 645764e | 2016-06-06 14:19:02 -0700 | [diff] [blame] | 1134 | mWorkspace.setup(mDragController); |
Winson | c7d2e83 | 2016-07-28 12:24:55 -0700 | [diff] [blame] | 1135 | // Until the workspace is bound, ensure that we keep the wallpaper offset locked to the |
| 1136 | // default state, otherwise we will update to the wrong offsets in RTL |
| 1137 | mWorkspace.lockWallpaperToDefaultPage(); |
Sunny Goyal | da4fe1a | 2016-05-26 16:05:17 -0700 | [diff] [blame] | 1138 | mWorkspace.bindAndInitFirstWorkspaceScreen(null /* recycled qsb */); |
Hyunyoung Song | 645764e | 2016-06-06 14:19:02 -0700 | [diff] [blame] | 1139 | mDragController.addDragListener(mWorkspace); |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 1140 | |
Tony Wickham | 34d2c91 | 2015-09-11 09:27:58 -0700 | [diff] [blame] | 1141 | // Get the search/delete/uninstall bar |
Rajeev Kumar | 43c0f58 | 2017-06-23 15:34:55 -0700 | [diff] [blame] | 1142 | mDropTargetBar = mDragLayer.findViewById(R.id.drop_target_bar); |
Patrick Dubroy | 3ec8bdd | 2010-08-06 16:01:33 -0700 | [diff] [blame] | 1143 | |
Sunny Goyal | f1fbc3f | 2017-10-10 15:21:15 -0700 | [diff] [blame] | 1144 | // Setup Apps |
| 1145 | mAppsView = findViewById(R.id.apps_view); |
Craig Mautner | 360310b | 2012-10-26 15:13:08 -0700 | [diff] [blame] | 1146 | |
Govinda Wasserman | c06e151 | 2019-04-09 09:56:53 -0400 | [diff] [blame] | 1147 | // Setup Scrim |
| 1148 | mScrimView = findViewById(R.id.scrim_view); |
| 1149 | |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 1150 | // Setup the drag controller (drop targets have to be added in reverse order in priority) |
Sunny Goyal | 47328fd | 2016-05-25 18:56:41 -0700 | [diff] [blame] | 1151 | mDropTargetBar.setup(mDragController); |
Daniel Sandler | 924b993 | 2013-06-12 00:38:25 -0400 | [diff] [blame] | 1152 | |
Tony Wickham | 490a8ab | 2020-04-01 17:03:58 -0700 | [diff] [blame] | 1153 | mAllAppsController.setupViews(mAppsView, mScrimView); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1154 | } |
| 1155 | |
| 1156 | /** |
| 1157 | * Creates a view representing a shortcut. |
| 1158 | * |
| 1159 | * @param info The data structure describing the shortcut. |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1160 | */ |
Sunny Goyal | 9589916 | 2019-03-27 16:03:06 -0700 | [diff] [blame] | 1161 | View createShortcut(WorkspaceItemInfo info) { |
Sunny Goyal | dfaccf6 | 2015-05-11 16:30:44 -0700 | [diff] [blame] | 1162 | return createShortcut((ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1163 | } |
| 1164 | |
| 1165 | /** |
| 1166 | * Creates a view representing a shortcut inflated from the specified resource. |
| 1167 | * |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1168 | * @param parent The group the shortcut belongs to. |
Samuel Fufa | ca37b8a | 2019-08-19 17:04:36 -0700 | [diff] [blame] | 1169 | * @param info The data structure describing the shortcut. |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1170 | * @return A View inflated from layoutResId. |
| 1171 | */ |
Sunny Goyal | 9589916 | 2019-03-27 16:03:06 -0700 | [diff] [blame] | 1172 | public View createShortcut(ViewGroup parent, WorkspaceItemInfo info) { |
Sunny Goyal | 9b29ca5 | 2017-02-17 10:39:44 -0800 | [diff] [blame] | 1173 | BubbleTextView favorite = (BubbleTextView) LayoutInflater.from(parent.getContext()) |
| 1174 | .inflate(R.layout.app_icon, parent, false); |
Sunny Goyal | 9589916 | 2019-03-27 16:03:06 -0700 | [diff] [blame] | 1175 | favorite.applyFromWorkspaceItem(info); |
Sunny Goyal | 8a2a63b | 2018-03-06 22:15:18 -0800 | [diff] [blame] | 1176 | favorite.setOnClickListener(ItemClickHandler.INSTANCE); |
Sunny Goyal | dcbcc86 | 2014-08-12 15:58:36 -0700 | [diff] [blame] | 1177 | favorite.setOnFocusChangeListener(mFocusHandler); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1178 | return favorite; |
| 1179 | } |
| 1180 | |
| 1181 | /** |
Jon Miranda | c476d6e | 2017-05-04 16:30:01 -0700 | [diff] [blame] | 1182 | * Add a shortcut to the workspace or to a Folder. |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1183 | * |
| 1184 | * @param data The intent describing the shortcut. |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1185 | */ |
Sunny Goyal | efb7e84 | 2018-10-04 15:11:00 -0700 | [diff] [blame] | 1186 | private void completeAddShortcut(Intent data, int container, int screenId, int cellX, |
Sunny Goyal | fb5096d | 2016-09-08 14:32:06 -0700 | [diff] [blame] | 1187 | int cellY, PendingRequestArgs args) { |
Pinyao Ting | 5eee5f4 | 2019-10-31 16:47:35 -0700 | [diff] [blame] | 1188 | if (args.getRequestCode() != REQUEST_CREATE_SHORTCUT |
Jon Miranda | c476d6e | 2017-05-04 16:30:01 -0700 | [diff] [blame] | 1189 | || args.getPendingIntent().getComponent() == null) { |
Sunny Goyal | fb5096d | 2016-09-08 14:32:06 -0700 | [diff] [blame] | 1190 | return; |
| 1191 | } |
Adam Cohen | 558baaf | 2011-08-15 15:22:57 -0700 | [diff] [blame] | 1192 | |
Jon Miranda | c476d6e | 2017-05-04 16:30:01 -0700 | [diff] [blame] | 1193 | int[] cellXY = mTmpAddItemCellCoordinates; |
| 1194 | CellLayout layout = getCellLayout(container, screenId); |
| 1195 | |
Sunny Goyal | eaf7a95 | 2020-07-29 16:54:20 -0700 | [diff] [blame] | 1196 | WorkspaceItemInfo info = PinRequestHelper.createWorkspaceItemFromPinItemRequest( |
Sunny Goyal | e7b0012 | 2019-10-02 16:13:34 -0700 | [diff] [blame] | 1197 | this, PinRequestHelper.getPinItemRequest(data), 0); |
Sunny Goyal | 782f0c9 | 2017-01-19 10:27:54 -0800 | [diff] [blame] | 1198 | |
| 1199 | if (info == null) { |
Sunny Goyal | b57645f | 2017-03-20 13:57:28 -0700 | [diff] [blame] | 1200 | // Legacy shortcuts are only supported for primary profile. |
| 1201 | info = Process.myUserHandle().equals(args.user) |
Sunny Goyal | 53116c6 | 2020-08-07 16:32:18 -0700 | [diff] [blame] | 1202 | ? ModelUtils.fromLegacyShortcutIntent(this, data) : null; |
Sunny Goyal | 782f0c9 | 2017-01-19 10:27:54 -0800 | [diff] [blame] | 1203 | |
Sunny Goyal | b57645f | 2017-03-20 13:57:28 -0700 | [diff] [blame] | 1204 | if (info == null) { |
| 1205 | Log.e(TAG, "Unable to parse a valid custom shortcut result"); |
| 1206 | return; |
| 1207 | } else if (!new PackageManagerHelper(this).hasPermissionForActivity( |
Sunny Goyal | 342e466 | 2017-02-02 15:21:08 -0800 | [diff] [blame] | 1208 | info.intent, args.getPendingIntent().getComponent().getPackageName())) { |
Sunny Goyal | 782f0c9 | 2017-01-19 10:27:54 -0800 | [diff] [blame] | 1209 | // The app is trying to add a shortcut without sufficient permissions |
| 1210 | Log.e(TAG, "Ignoring malicious intent " + info.intent.toUri(0)); |
| 1211 | return; |
| 1212 | } |
| 1213 | } |
| 1214 | |
Jon Miranda | c476d6e | 2017-05-04 16:30:01 -0700 | [diff] [blame] | 1215 | if (container < 0) { |
| 1216 | // Adding a shortcut to the Workspace. |
| 1217 | final View view = createShortcut(info); |
| 1218 | boolean foundCellSpan = false; |
| 1219 | // First we check if we already know the exact location where we want to add this item. |
| 1220 | if (cellX >= 0 && cellY >= 0) { |
| 1221 | cellXY[0] = cellX; |
| 1222 | cellXY[1] = cellY; |
| 1223 | foundCellSpan = true; |
Adam Cohen | 558baaf | 2011-08-15 15:22:57 -0700 | [diff] [blame] | 1224 | |
Hyunyoung Song | 1ae4242 | 2020-01-26 23:25:14 -0800 | [diff] [blame] | 1225 | DragObject dragObject = new DragObject(getApplicationContext()); |
| 1226 | dragObject.dragInfo = info; |
Jon Miranda | c476d6e | 2017-05-04 16:30:01 -0700 | [diff] [blame] | 1227 | // If appropriate, either create a folder or add to an existing folder |
| 1228 | if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0, |
Hyunyoung Song | 1ae4242 | 2020-01-26 23:25:14 -0800 | [diff] [blame] | 1229 | true, dragObject)) { |
Jon Miranda | c476d6e | 2017-05-04 16:30:01 -0700 | [diff] [blame] | 1230 | return; |
| 1231 | } |
Jon Miranda | c476d6e | 2017-05-04 16:30:01 -0700 | [diff] [blame] | 1232 | if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject, |
| 1233 | true)) { |
| 1234 | return; |
| 1235 | } |
| 1236 | } else { |
| 1237 | foundCellSpan = layout.findCellForSpan(cellXY, 1, 1); |
| 1238 | } |
| 1239 | |
| 1240 | if (!foundCellSpan) { |
| 1241 | mWorkspace.onNoCellFound(layout); |
Adam Cohen | 558baaf | 2011-08-15 15:22:57 -0700 | [diff] [blame] | 1242 | return; |
| 1243 | } |
Jon Miranda | c476d6e | 2017-05-04 16:30:01 -0700 | [diff] [blame] | 1244 | |
| 1245 | getModelWriter().addItemToDatabase(info, container, screenId, cellXY[0], cellXY[1]); |
| 1246 | mWorkspace.addInScreen(view, info); |
Michael Jurka | d3ef306 | 2010-11-23 16:23:58 -0800 | [diff] [blame] | 1247 | } else { |
Jon Miranda | c476d6e | 2017-05-04 16:30:01 -0700 | [diff] [blame] | 1248 | // Adding a shortcut to a Folder. |
Sunny Goyal | e29897f5 | 2017-07-20 10:09:42 -0700 | [diff] [blame] | 1249 | FolderIcon folderIcon = findFolderIcon(container); |
Jon Miranda | c476d6e | 2017-05-04 16:30:01 -0700 | [diff] [blame] | 1250 | if (folderIcon != null) { |
| 1251 | FolderInfo folderInfo = (FolderInfo) folderIcon.getTag(); |
| 1252 | folderInfo.add(info, args.rank, false); |
| 1253 | } else { |
Sunny Goyal | e29897f5 | 2017-07-20 10:09:42 -0700 | [diff] [blame] | 1254 | Log.e(TAG, "Could not find folder with id " + container + " to add shortcut."); |
Jon Miranda | c476d6e | 2017-05-04 16:30:01 -0700 | [diff] [blame] | 1255 | } |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 1256 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1257 | } |
| 1258 | |
Sunny Goyal | efb7e84 | 2018-10-04 15:11:00 -0700 | [diff] [blame] | 1259 | public FolderIcon findFolderIcon(final int folderIconId) { |
Sunny Goyal | 83fd25e | 2018-07-09 16:47:01 -0700 | [diff] [blame] | 1260 | return (FolderIcon) mWorkspace.getHomescreenIconByItemId(folderIconId); |
Sunny Goyal | e29897f5 | 2017-07-20 10:09:42 -0700 | [diff] [blame] | 1261 | } |
| 1262 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1263 | /** |
The Android Open Source Project | 7376fae | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 1264 | * Add a widget to the workspace. |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1265 | * |
Romain Guy | 5bbc91b | 2010-08-18 11:38:46 -0700 | [diff] [blame] | 1266 | * @param appWidgetId The app widget id |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1267 | */ |
Samuel Fufa | ca37b8a | 2019-08-19 17:04:36 -0700 | [diff] [blame] | 1268 | @Thunk |
| 1269 | void completeAddAppWidget(int appWidgetId, ItemInfo itemInfo, |
Adam Cohen | 5940042 | 2014-03-05 18:07:04 -0800 | [diff] [blame] | 1270 | AppWidgetHostView hostView, LauncherAppWidgetProviderInfo appWidgetInfo) { |
| 1271 | |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 1272 | if (appWidgetInfo == null) { |
Sunny Goyal | 2e1efb4 | 2016-03-03 16:58:55 -0800 | [diff] [blame] | 1273 | appWidgetInfo = mAppWidgetManager.getLauncherAppWidgetInfo(appWidgetId); |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 1274 | } |
Romain Guy | cbb89e4 | 2009-06-08 15:52:54 -0700 | [diff] [blame] | 1275 | |
Adam Cohen | 5940042 | 2014-03-05 18:07:04 -0800 | [diff] [blame] | 1276 | LauncherAppWidgetInfo launcherInfo; |
| 1277 | launcherInfo = new LauncherAppWidgetInfo(appWidgetId, appWidgetInfo.provider); |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 1278 | launcherInfo.spanX = itemInfo.spanX; |
| 1279 | launcherInfo.spanY = itemInfo.spanY; |
| 1280 | launcherInfo.minSpanX = itemInfo.minSpanX; |
| 1281 | launcherInfo.minSpanY = itemInfo.minSpanY; |
Sunny Goyal | 952e63d | 2017-08-16 04:59:08 -0700 | [diff] [blame] | 1282 | launcherInfo.user = appWidgetInfo.getProfile(); |
Romain Guy | cbb89e4 | 2009-06-08 15:52:54 -0700 | [diff] [blame] | 1283 | |
Sunny Goyal | 43bf11d | 2017-02-02 13:52:53 -0800 | [diff] [blame] | 1284 | getModelWriter().addItemToDatabase(launcherInfo, |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 1285 | itemInfo.container, itemInfo.screenId, itemInfo.cellX, itemInfo.cellY); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1286 | |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 1287 | if (hostView == null) { |
| 1288 | // Perform actual inflation because we're live |
| 1289 | hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1290 | } |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 1291 | hostView.setVisibility(View.VISIBLE); |
Sunny Goyal | d5462aa | 2016-11-22 16:52:39 +0530 | [diff] [blame] | 1292 | prepareAppWidget(hostView, launcherInfo); |
| 1293 | mWorkspace.addInScreen(hostView, launcherInfo); |
Pinyao Ting | c907427 | 2019-11-11 11:51:44 -0800 | [diff] [blame] | 1294 | announceForAccessibility(R.string.item_added_to_workspace); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1295 | } |
Romain Guy | cbb89e4 | 2009-06-08 15:52:54 -0700 | [diff] [blame] | 1296 | |
Sunny Goyal | d5462aa | 2016-11-22 16:52:39 +0530 | [diff] [blame] | 1297 | private void prepareAppWidget(AppWidgetHostView hostView, LauncherAppWidgetInfo item) { |
Sunny Goyal | 87af0fd | 2016-05-16 14:56:02 -0700 | [diff] [blame] | 1298 | hostView.setTag(item); |
| 1299 | item.onBindAppWidget(this, hostView); |
Sunny Goyal | 87af0fd | 2016-05-16 14:56:02 -0700 | [diff] [blame] | 1300 | hostView.setFocusable(true); |
| 1301 | hostView.setOnFocusChangeListener(mFocusHandler); |
Sunny Goyal | 25c2e3e | 2015-10-28 23:28:21 -0700 | [diff] [blame] | 1302 | } |
| 1303 | |
Sunny Goyal | 5d1873a | 2018-05-08 11:10:44 -0700 | [diff] [blame] | 1304 | private final BroadcastReceiver mScreenOffReceiver = new BroadcastReceiver() { |
Adam Cohen | ded9f8d | 2010-11-03 13:25:16 -0700 | [diff] [blame] | 1305 | @Override |
| 1306 | public void onReceive(Context context, Intent intent) { |
Sunny Goyal | 5d1873a | 2018-05-08 11:10:44 -0700 | [diff] [blame] | 1307 | // Reset AllApps to its initial state only if we are not in the middle of |
| 1308 | // processing a multi-step drop |
| 1309 | if (mPendingRequestArgs == null) { |
Riddle Hsu | 7a7468f | 2019-11-21 01:32:58 +0800 | [diff] [blame] | 1310 | if (!isInState(NORMAL)) { |
| 1311 | onUiChangedWhileSleeping(); |
| 1312 | } |
Sunny Goyal | 5d1873a | 2018-05-08 11:10:44 -0700 | [diff] [blame] | 1313 | mStateManager.goToState(NORMAL); |
Adam Cohen | ded9f8d | 2010-11-03 13:25:16 -0700 | [diff] [blame] | 1314 | } |
| 1315 | } |
| 1316 | }; |
| 1317 | |
Sunny Goyal | 9c2b960 | 2020-01-07 13:07:55 -0800 | [diff] [blame] | 1318 | private void updateNotificationDots(Predicate<PackageUserKey> updatedDots) { |
Tony Wickham | f34bee8 | 2018-12-03 18:11:39 -0800 | [diff] [blame] | 1319 | mWorkspace.updateNotificationDots(updatedDots); |
| 1320 | mAppsView.getAppsStore().updateNotificationDots(updatedDots); |
Tony Wickham | 010d255 | 2017-01-20 08:15:28 -0800 | [diff] [blame] | 1321 | } |
| 1322 | |
Adam Cohen | ded9f8d | 2010-11-03 13:25:16 -0700 | [diff] [blame] | 1323 | @Override |
| 1324 | public void onAttachedToWindow() { |
| 1325 | super.onAttachedToWindow(); |
Sunny Goyal | b1d7de2 | 2019-09-06 10:36:54 -0700 | [diff] [blame] | 1326 | mOverlayManager.onAttachedToWindow(); |
Adam Cohen | ded9f8d | 2010-11-03 13:25:16 -0700 | [diff] [blame] | 1327 | } |
| 1328 | |
| 1329 | @Override |
| 1330 | public void onDetachedFromWindow() { |
| 1331 | super.onDetachedFromWindow(); |
Sunny Goyal | b1d7de2 | 2019-09-06 10:36:54 -0700 | [diff] [blame] | 1332 | mOverlayManager.onDetachedFromWindow(); |
| 1333 | closeContextMenu(); |
Adam Cohen | ded9f8d | 2010-11-03 13:25:16 -0700 | [diff] [blame] | 1334 | } |
| 1335 | |
Schneider Victor-tulias | 25ecae1 | 2020-09-14 14:07:38 -0700 | [diff] [blame] | 1336 | @Override |
| 1337 | public Object onRetainNonConfigurationInstance() { |
Sunny Goyal | 6c0c61a | 2020-12-08 19:19:56 -0800 | [diff] [blame] | 1338 | NonConfigInstance instance = new NonConfigInstance(); |
| 1339 | instance.config = new Configuration(mOldConfig); |
| 1340 | |
Schneider Victor-tulias | 25ecae1 | 2020-09-14 14:07:38 -0700 | [diff] [blame] | 1341 | int width = mDragLayer.getWidth(); |
| 1342 | int height = mDragLayer.getHeight(); |
| 1343 | |
Schneider Victor-tulias | 5aad9d8 | 2020-12-15 10:47:44 -0500 | [diff] [blame] | 1344 | if (FeatureFlags.ENABLE_LAUNCHER_ACTIVITY_THEME_CROSSFADE.get() |
| 1345 | && width > 0 |
| 1346 | && height > 0) { |
Sunny Goyal | 6c0c61a | 2020-12-08 19:19:56 -0800 | [diff] [blame] | 1347 | instance.snapshot = |
| 1348 | BitmapRenderer.createHardwareBitmap(width, height, mDragLayer::draw); |
Schneider Victor-tulias | 25ecae1 | 2020-09-14 14:07:38 -0700 | [diff] [blame] | 1349 | } |
Sunny Goyal | 6c0c61a | 2020-12-08 19:19:56 -0800 | [diff] [blame] | 1350 | return instance; |
Schneider Victor-tulias | 25ecae1 | 2020-09-14 14:07:38 -0700 | [diff] [blame] | 1351 | } |
| 1352 | |
Sunny Goyal | c4fa8c3 | 2017-11-07 12:23:58 -0800 | [diff] [blame] | 1353 | public AllAppsTransitionController getAllAppsController() { |
| 1354 | return mAllAppsController; |
| 1355 | } |
| 1356 | |
Sunny Goyal | 9d69c8d | 2018-03-19 13:41:31 -0700 | [diff] [blame] | 1357 | @Override |
Winson Chung | a694524 | 2014-01-08 14:04:34 -0800 | [diff] [blame] | 1358 | public DragLayer getDragLayer() { |
| 1359 | return mDragLayer; |
| 1360 | } |
| 1361 | |
Winson Chung | 5f4e0fd | 2015-05-22 11:12:27 -0700 | [diff] [blame] | 1362 | public AllAppsContainerView getAppsView() { |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 1363 | return mAppsView; |
| 1364 | } |
| 1365 | |
Winson Chung | a694524 | 2014-01-08 14:04:34 -0800 | [diff] [blame] | 1366 | public Workspace getWorkspace() { |
| 1367 | return mWorkspace; |
| 1368 | } |
| 1369 | |
| 1370 | public Hotseat getHotseat() { |
| 1371 | return mHotseat; |
| 1372 | } |
| 1373 | |
Sunny Goyal | 7c7be8c | 2018-03-07 19:58:07 -0800 | [diff] [blame] | 1374 | public <T extends View> T getOverviewPanel() { |
Winson Chung | 8ae4198 | 2017-11-10 11:42:13 -0800 | [diff] [blame] | 1375 | return (T) mOverviewPanel; |
Winson Chung | a694524 | 2014-01-08 14:04:34 -0800 | [diff] [blame] | 1376 | } |
| 1377 | |
Sunny Goyal | 47328fd | 2016-05-25 18:56:41 -0700 | [diff] [blame] | 1378 | public DropTargetBar getDropTargetBar() { |
| 1379 | return mDropTargetBar; |
Tony Wickham | 34d2c91 | 2015-09-11 09:27:58 -0700 | [diff] [blame] | 1380 | } |
| 1381 | |
Tony Wickham | 490a8ab | 2020-04-01 17:03:58 -0700 | [diff] [blame] | 1382 | public ScrimView getScrimView() { |
| 1383 | return mScrimView; |
| 1384 | } |
| 1385 | |
The Android Open Source Project | 7376fae | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 1386 | public LauncherAppWidgetHost getAppWidgetHost() { |
| 1387 | return mAppWidgetHost; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1388 | } |
Romain Guy | cbb89e4 | 2009-06-08 15:52:54 -0700 | [diff] [blame] | 1389 | |
Winson Chung | a9abd0e | 2010-10-27 17:18:37 -0700 | [diff] [blame] | 1390 | public LauncherModel getModel() { |
| 1391 | return mModel; |
| 1392 | } |
| 1393 | |
Sunny Goyal | 43bf11d | 2017-02-02 13:52:53 -0800 | [diff] [blame] | 1394 | public ModelWriter getModelWriter() { |
| 1395 | return mModelWriter; |
| 1396 | } |
| 1397 | |
Sunny Goyal | b1d7de2 | 2019-09-06 10:36:54 -0700 | [diff] [blame] | 1398 | @Override |
Adam Cohen | 79d90c5 | 2016-04-22 13:29:20 -0700 | [diff] [blame] | 1399 | public SharedPreferences getSharedPrefs() { |
Winson Chung | a694524 | 2014-01-08 14:04:34 -0800 | [diff] [blame] | 1400 | return mSharedPrefs; |
| 1401 | } |
| 1402 | |
Sunny Goyal | b1d7de2 | 2019-09-06 10:36:54 -0700 | [diff] [blame] | 1403 | @Override |
| 1404 | public SharedPreferences getDevicePrefs() { |
| 1405 | return Utilities.getDevicePrefs(this); |
| 1406 | } |
| 1407 | |
Samuel Fufa | ca37b8a | 2019-08-19 17:04:36 -0700 | [diff] [blame] | 1408 | public int getOrientation() { |
| 1409 | return mOldConfig.orientation; |
| 1410 | } |
Jon Miranda | 6bed350 | 2017-09-19 14:43:17 -0700 | [diff] [blame] | 1411 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1412 | @Override |
| 1413 | protected void onNewIntent(Intent intent) { |
vadimt | baf5fbb | 2019-12-16 18:56:09 -0800 | [diff] [blame] | 1414 | if (Utilities.IS_RUNNING_IN_TEST_HARNESS) { |
| 1415 | Log.d(TestProtocol.PERMANENT_DIAG_TAG, "Launcher.onNewIntent: " + intent); |
| 1416 | } |
Winson Chung | 5cc62c7 | 2019-10-16 11:32:41 -0700 | [diff] [blame] | 1417 | Object traceToken = TraceHelper.INSTANCE.beginSection(ON_NEW_INTENT_EVT); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1418 | super.onNewIntent(intent); |
| 1419 | |
Sunny Goyal | f4aceab | 2017-12-06 16:16:31 -0800 | [diff] [blame] | 1420 | boolean alreadyOnHome = hasWindowFocus() && ((intent.getFlags() & |
Winson | 15f8b17 | 2015-08-19 11:02:39 -0700 | [diff] [blame] | 1421 | Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT) |
| 1422 | != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT); |
Sunny Goyal | 8531373 | 2016-09-28 12:00:07 -0700 | [diff] [blame] | 1423 | |
| 1424 | // Check this condition before handling isActionMain, as this will get reset. |
Sunny Goyal | 3e3f44c | 2017-10-23 17:14:52 -0700 | [diff] [blame] | 1425 | boolean shouldMoveToDefaultScreen = alreadyOnHome && isInState(NORMAL) |
Sunny Goyal | f9403d9 | 2017-10-18 10:55:56 -0700 | [diff] [blame] | 1426 | && AbstractFloatingView.getTopOpenView(this) == null; |
Winson | 15f8b17 | 2015-08-19 11:02:39 -0700 | [diff] [blame] | 1427 | boolean isActionMain = Intent.ACTION_MAIN.equals(intent.getAction()); |
Sunny Goyal | e84c5b8 | 2019-09-26 17:05:31 -0700 | [diff] [blame] | 1428 | boolean internalStateHandled = ACTIVITY_TRACKER.handleNewIntent(this, intent); |
Sunny Goyal | d3864fa | 2017-11-14 15:06:36 -0800 | [diff] [blame] | 1429 | |
Winson | 15f8b17 | 2015-08-19 11:02:39 -0700 | [diff] [blame] | 1430 | if (isActionMain) { |
Sunny Goyal | d3864fa | 2017-11-14 15:06:36 -0800 | [diff] [blame] | 1431 | if (!internalStateHandled) { |
Sunny Goyal | d3864fa | 2017-11-14 15:06:36 -0800 | [diff] [blame] | 1432 | // In all these cases, only animate if we're already on home |
Andy Wickham | 65ced1b | 2020-03-07 02:14:19 +0000 | [diff] [blame] | 1433 | closeOpenViews(isStarted()); |
Jon Miranda | feba90f | 2016-10-06 10:53:29 -0700 | [diff] [blame] | 1434 | |
Sunny Goyal | a246727 | 2018-03-16 14:53:05 -0700 | [diff] [blame] | 1435 | if (!isInState(NORMAL)) { |
| 1436 | // Only change state, if not already the same. This prevents cancelling any |
| 1437 | // animations running as part of resume |
Sunny Goyal | fee1b25 | 2020-12-14 12:30:38 -0800 | [diff] [blame] | 1438 | mStateManager.goToState(NORMAL, mStateManager.shouldAnimateStateChange()); |
Sunny Goyal | a246727 | 2018-03-16 14:53:05 -0700 | [diff] [blame] | 1439 | } |
Sunny Goyal | d3864fa | 2017-11-14 15:06:36 -0800 | [diff] [blame] | 1440 | |
| 1441 | // Reset the apps view |
Sunny Goyal | 5d1873a | 2018-05-08 11:10:44 -0700 | [diff] [blame] | 1442 | if (!alreadyOnHome) { |
Sunny Goyal | 7185dd6 | 2018-03-14 17:51:49 -0700 | [diff] [blame] | 1443 | mAppsView.reset(isStarted() /* animate */); |
Sunny Goyal | d3864fa | 2017-11-14 15:06:36 -0800 | [diff] [blame] | 1444 | } |
| 1445 | |
Sunny Goyal | aad3359 | 2018-08-07 17:20:35 -0700 | [diff] [blame] | 1446 | if (shouldMoveToDefaultScreen && !mWorkspace.isHandlingTouch()) { |
Sunny Goyal | d3864fa | 2017-11-14 15:06:36 -0800 | [diff] [blame] | 1447 | mWorkspace.post(mWorkspace::moveToDefaultScreen); |
| 1448 | } |
| 1449 | } |
Adam Cohen | 6fecd41 | 2013-10-02 17:41:50 -0700 | [diff] [blame] | 1450 | |
Hyunyoung Song | 2a70b3d | 2019-06-11 12:47:07 -0700 | [diff] [blame] | 1451 | // Handle HOME_INTENT |
Sunny Goyal | deb91c4 | 2020-03-24 02:17:59 -0700 | [diff] [blame] | 1452 | hideKeyboard(); |
Adam Cohen | 6fecd41 | 2013-10-02 17:41:50 -0700 | [diff] [blame] | 1453 | |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 1454 | if (mLauncherCallbacks != null) { |
Sunny Goyal | 8546213 | 2018-04-24 11:39:37 -0700 | [diff] [blame] | 1455 | mLauncherCallbacks.onHomeIntent(internalStateHandled); |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 1456 | } |
Sunny Goyal | b1d7de2 | 2019-09-06 10:36:54 -0700 | [diff] [blame] | 1457 | mOverlayManager.hideOverlay(isStarted() && !isForceInvisible()); |
Sunny Goyal | 30ac97d | 2020-06-24 23:47:46 -0700 | [diff] [blame] | 1458 | handleGestureContract(intent); |
Sunny Goyal | 512a2c1 | 2020-04-08 12:52:45 -0700 | [diff] [blame] | 1459 | } else if (Intent.ACTION_ALL_APPS.equals(intent.getAction())) { |
Winson Chung | dd15ace | 2020-08-04 15:52:01 -0700 | [diff] [blame] | 1460 | showAllAppsFromIntent(alreadyOnHome); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1461 | } |
Winson | 15f8b17 | 2015-08-19 11:02:39 -0700 | [diff] [blame] | 1462 | |
Winson Chung | 5cc62c7 | 2019-10-16 11:32:41 -0700 | [diff] [blame] | 1463 | TraceHelper.INSTANCE.endSection(traceToken); |
Adam Copp | a120b8e | 2013-11-12 16:26:04 +0000 | [diff] [blame] | 1464 | } |
| 1465 | |
Winson Chung | dd15ace | 2020-08-04 15:52:01 -0700 | [diff] [blame] | 1466 | protected void showAllAppsFromIntent(boolean alreadyOnHome) { |
| 1467 | AbstractFloatingView.closeAllOpenViews(this); |
| 1468 | getStateManager().goToState(ALL_APPS, alreadyOnHome); |
| 1469 | } |
| 1470 | |
Sunny Goyal | deb91c4 | 2020-03-24 02:17:59 -0700 | [diff] [blame] | 1471 | /** |
Sunny Goyal | 30ac97d | 2020-06-24 23:47:46 -0700 | [diff] [blame] | 1472 | * Handles gesture nav contract |
| 1473 | */ |
| 1474 | protected void handleGestureContract(Intent intent) { |
| 1475 | GestureNavContract gnc = GestureNavContract.fromIntent(intent); |
| 1476 | if (gnc != null) { |
| 1477 | AbstractFloatingView.closeOpenViews(this, false, TYPE_ICON_SURFACE); |
| 1478 | FloatingSurfaceView.show(this, gnc); |
| 1479 | } |
| 1480 | } |
| 1481 | |
| 1482 | /** |
Sunny Goyal | deb91c4 | 2020-03-24 02:17:59 -0700 | [diff] [blame] | 1483 | * Hides the keyboard if visible |
| 1484 | */ |
| 1485 | public void hideKeyboard() { |
| 1486 | final View v = getWindow().peekDecorView(); |
| 1487 | if (v != null && v.getWindowToken() != null) { |
| 1488 | UiThreadHelper.hideKeyboardAsync(this, v.getWindowToken()); |
| 1489 | } |
| 1490 | } |
| 1491 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1492 | @Override |
Adam Cohen | 1462de3 | 2012-07-24 22:34:36 -0700 | [diff] [blame] | 1493 | public void onRestoreInstanceState(Bundle state) { |
| 1494 | super.onRestoreInstanceState(state); |
Sunny Goyal | f4aceab | 2017-12-06 16:16:31 -0800 | [diff] [blame] | 1495 | mWorkspace.restoreInstanceStateForChild(mSynchronouslyBoundPage); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1496 | } |
| 1497 | |
| 1498 | @Override |
| 1499 | protected void onSaveInstanceState(Bundle outState) { |
Adam Cohen | 21cd002 | 2013-10-09 18:57:02 -0700 | [diff] [blame] | 1500 | if (mWorkspace.getChildCount() > 0) { |
Sunny Goyal | 7ce471b | 2017-08-02 03:37:39 -0700 | [diff] [blame] | 1501 | outState.putInt(RUNTIME_STATE_CURRENT_SCREEN, mWorkspace.getNextPage()); |
Hyunyoung Song | 645764e | 2016-06-06 14:19:02 -0700 | [diff] [blame] | 1502 | |
Adam Cohen | 21cd002 | 2013-10-09 18:57:02 -0700 | [diff] [blame] | 1503 | } |
Sunny Goyal | ea60926 | 2017-10-25 15:47:38 -0700 | [diff] [blame] | 1504 | outState.putInt(RUNTIME_STATE, mStateManager.getState().ordinal); |
Sunny Goyal | f1fbc3f | 2017-10-10 15:21:15 -0700 | [diff] [blame] | 1505 | |
| 1506 | |
| 1507 | AbstractFloatingView widgets = AbstractFloatingView |
| 1508 | .getOpenView(this, AbstractFloatingView.TYPE_WIDGETS_FULL_SHEET); |
| 1509 | if (widgets != null) { |
| 1510 | SparseArray<Parcelable> widgetsState = new SparseArray<>(); |
| 1511 | widgets.saveHierarchyState(widgetsState); |
| 1512 | outState.putSparseParcelableArray(RUNTIME_STATE_WIDGET_PANEL, widgetsState); |
| 1513 | } else { |
| 1514 | outState.remove(RUNTIME_STATE_WIDGET_PANEL); |
| 1515 | } |
| 1516 | |
Pinyao Ting | a74b63a | 2019-07-17 23:26:06 -0700 | [diff] [blame] | 1517 | // We close any open folders and shortcut containers that are not safe for rebind, |
Sunny Goyal | 740ac7f | 2016-09-28 16:47:32 -0700 | [diff] [blame] | 1518 | // and we need to make sure this state is reflected. |
Pinyao Ting | a74b63a | 2019-07-17 23:26:06 -0700 | [diff] [blame] | 1519 | AbstractFloatingView.closeOpenViews(this, false, TYPE_ALL & ~TYPE_REBIND_SAFE); |
| 1520 | finishAutoCancelActionMode(); |
Tony Wickham | 49c8d29 | 2016-07-01 11:44:34 -0700 | [diff] [blame] | 1521 | |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 1522 | if (mPendingRequestArgs != null) { |
| 1523 | outState.putParcelable(RUNTIME_STATE_PENDING_REQUEST_ARGS, mPendingRequestArgs); |
| 1524 | } |
Sunny Goyal | dedda05 | 2019-05-14 15:23:48 -0700 | [diff] [blame] | 1525 | outState.putInt(RUNTIME_STATE_PENDING_REQUEST_CODE, mPendingActivityRequestCode); |
| 1526 | |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 1527 | if (mPendingActivityResult != null) { |
| 1528 | outState.putParcelable(RUNTIME_STATE_PENDING_ACTIVITY_RESULT, mPendingActivityResult); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1529 | } |
| 1530 | |
Sunny Goyal | f1fbc3f | 2017-10-10 15:21:15 -0700 | [diff] [blame] | 1531 | super.onSaveInstanceState(outState); |
Sunny Goyal | b1d7de2 | 2019-09-06 10:36:54 -0700 | [diff] [blame] | 1532 | mOverlayManager.onActivitySaveInstanceState(this, outState); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1533 | } |
| 1534 | |
| 1535 | @Override |
| 1536 | public void onDestroy() { |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1537 | super.onDestroy(); |
Sunny Goyal | e84c5b8 | 2019-09-26 17:05:31 -0700 | [diff] [blame] | 1538 | ACTIVITY_TRACKER.onActivityDestroyed(this); |
Romain Guy | cbb89e4 | 2009-06-08 15:52:54 -0700 | [diff] [blame] | 1539 | |
Sunny Goyal | 5d1873a | 2018-05-08 11:10:44 -0700 | [diff] [blame] | 1540 | unregisterReceiver(mScreenOffReceiver); |
Sunny Goyal | aaf7d1d | 2016-05-17 13:38:54 -0700 | [diff] [blame] | 1541 | mWorkspace.removeFolderListeners(); |
Sunny Goyal | b1d7de2 | 2019-09-06 10:36:54 -0700 | [diff] [blame] | 1542 | PluginManagerWrapper.INSTANCE.get(this).removePluginListener(this); |
Winson Chung | e7a0394 | 2011-08-05 15:05:12 -0700 | [diff] [blame] | 1543 | |
Sunny Goyal | a7a5bf3 | 2020-01-05 15:35:29 +0530 | [diff] [blame] | 1544 | mModel.removeCallbacks(this); |
Sunny Goyal | 623eddd | 2018-03-02 12:24:41 -0800 | [diff] [blame] | 1545 | mRotationHelper.destroy(); |
Sunny Goyal | 745bad9 | 2016-05-02 10:54:12 -0700 | [diff] [blame] | 1546 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1547 | try { |
The Android Open Source Project | 7376fae | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 1548 | mAppWidgetHost.stopListening(); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1549 | } catch (NullPointerException ex) { |
Joe Onorato | a30ce8e | 2009-11-11 08:16:49 -0800 | [diff] [blame] | 1550 | Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1551 | } |
Patrick Dubroy | 2313eff | 2011-01-11 20:01:31 -0800 | [diff] [blame] | 1552 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1553 | TextKeyListener.getInstance().release(); |
Tony | 2917a8b | 2017-07-31 23:29:42 -0700 | [diff] [blame] | 1554 | clearPendingBinds(); |
Hyunyoung Song | 31971a3 | 2019-01-27 12:31:12 -0800 | [diff] [blame] | 1555 | LauncherAppState.getIDP(this).removeOnChangeListener(this); |
Sunny Goyal | b1d7de2 | 2019-09-06 10:36:54 -0700 | [diff] [blame] | 1556 | |
| 1557 | mOverlayManager.onActivityDestroyed(this); |
Samuel Fufa | 41d909f | 2020-03-20 16:27:09 -0700 | [diff] [blame] | 1558 | mUserChangedCallbackCloseable.close(); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1559 | } |
| 1560 | |
Sunny Goyal | ae50284 | 2016-06-17 08:43:56 -0700 | [diff] [blame] | 1561 | public LauncherAccessibilityDelegate getAccessibilityDelegate() { |
| 1562 | return mAccessibilityDelegate; |
| 1563 | } |
| 1564 | |
Adam Cohen | a9cf38f | 2011-05-02 15:36:58 -0700 | [diff] [blame] | 1565 | public DragController getDragController() { |
| 1566 | return mDragController; |
| 1567 | } |
| 1568 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1569 | @Override |
Sunny Goyal | 0eca4e2 | 2016-07-20 11:43:06 -0700 | [diff] [blame] | 1570 | public void startActivityForResult(Intent intent, int requestCode, Bundle options) { |
Sunny Goyal | dedda05 | 2019-05-14 15:23:48 -0700 | [diff] [blame] | 1571 | if (requestCode != -1) { |
| 1572 | mPendingActivityRequestCode = requestCode; |
| 1573 | } |
Sunny Goyal | 210e174 | 2019-10-17 12:05:38 -0700 | [diff] [blame] | 1574 | super.startActivityForResult(intent, requestCode, options); |
Adam Cohen | 173f711 | 2015-03-27 15:14:00 -0700 | [diff] [blame] | 1575 | } |
| 1576 | |
| 1577 | @Override |
Sunny Goyal | dedda05 | 2019-05-14 15:23:48 -0700 | [diff] [blame] | 1578 | public void startIntentSenderForResult(IntentSender intent, int requestCode, |
Adam Cohen | 173f711 | 2015-03-27 15:14:00 -0700 | [diff] [blame] | 1579 | Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) { |
Sunny Goyal | dedda05 | 2019-05-14 15:23:48 -0700 | [diff] [blame] | 1580 | if (requestCode != -1) { |
| 1581 | mPendingActivityRequestCode = requestCode; |
| 1582 | } |
Sunny Goyal | 210e174 | 2019-10-17 12:05:38 -0700 | [diff] [blame] | 1583 | try { |
| 1584 | super.startIntentSenderForResult(intent, requestCode, |
| 1585 | fillInIntent, flagsMask, flagsValues, extraFlags, options); |
| 1586 | } catch (IntentSender.SendIntentException e) { |
| 1587 | throw new ActivityNotFoundException(); |
Adam Cohen | 173f711 | 2015-03-27 15:14:00 -0700 | [diff] [blame] | 1588 | } |
| 1589 | } |
| 1590 | |
Winson Chung | 70d7210 | 2011-08-12 11:24:35 -0700 | [diff] [blame] | 1591 | /** |
| 1592 | * Indicates that we want global search for this activity by setting the globalSearch |
| 1593 | * argument for {@link #startSearch} to true. |
| 1594 | */ |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1595 | @Override |
Romain Guy | cbb89e4 | 2009-06-08 15:52:54 -0700 | [diff] [blame] | 1596 | public void startSearch(String initialQuery, boolean selectInitialQuery, |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1597 | Bundle appSearchData, boolean globalSearch) { |
| 1598 | if (appSearchData == null) { |
| 1599 | appSearchData = new Bundle(); |
Bjorn Bringert | 32b12d2 | 2013-06-06 13:00:41 +0100 | [diff] [blame] | 1600 | appSearchData.putString("source", "launcher-search"); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1601 | } |
Sunny Goyal | da4fe1a | 2016-05-26 16:05:17 -0700 | [diff] [blame] | 1602 | |
Sunny Goyal | 6f28e71 | 2016-09-13 14:19:29 -0700 | [diff] [blame] | 1603 | if (mLauncherCallbacks == null || |
| 1604 | !mLauncherCallbacks.startSearch(initialQuery, selectInitialQuery, appSearchData)) { |
| 1605 | // Starting search from the callbacks failed. Start the default global search. |
Sunny Goyal | f4aceab | 2017-12-06 16:16:31 -0800 | [diff] [blame] | 1606 | super.startSearch(initialQuery, selectInitialQuery, appSearchData, true); |
Ian Parkinson | 047036e | 2014-09-01 15:40:53 +0100 | [diff] [blame] | 1607 | } |
Winson Chung | cd99cd3 | 2015-04-29 11:03:24 -0700 | [diff] [blame] | 1608 | |
| 1609 | // We need to show the workspace after starting the search |
Sunny Goyal | 3e3f44c | 2017-10-23 17:14:52 -0700 | [diff] [blame] | 1610 | mStateManager.goToState(NORMAL); |
Bjorn Bringert | c459e52 | 2013-06-07 19:36:01 +0100 | [diff] [blame] | 1611 | } |
| 1612 | |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 1613 | public boolean isWorkspaceLocked() { |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 1614 | return mWorkspaceLoading || mPendingRequestArgs != null; |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 1615 | } |
| 1616 | |
Adam Cohen | 517a7f5 | 2014-03-01 12:12:59 -0800 | [diff] [blame] | 1617 | public boolean isWorkspaceLoading() { |
| 1618 | return mWorkspaceLoading; |
| 1619 | } |
| 1620 | |
Anjali Koppal | ff7ceff | 2014-05-01 18:26:37 -0700 | [diff] [blame] | 1621 | private void setWorkspaceLoading(boolean value) { |
Anjali Koppal | ff7ceff | 2014-05-01 18:26:37 -0700 | [diff] [blame] | 1622 | mWorkspaceLoading = value; |
Anjali Koppal | ff7ceff | 2014-05-01 18:26:37 -0700 | [diff] [blame] | 1623 | } |
| 1624 | |
Sunny Goyal | 04a324a | 2017-01-20 21:08:59 -0800 | [diff] [blame] | 1625 | public void setWaitingForResult(PendingRequestArgs args) { |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 1626 | mPendingRequestArgs = args; |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 1627 | } |
Anjali Koppal | ff7ceff | 2014-05-01 18:26:37 -0700 | [diff] [blame] | 1628 | |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 1629 | void addAppWidgetFromDropImpl(int appWidgetId, ItemInfo info, AppWidgetHostView boundWidget, |
Sunny Goyal | 04a324a | 2017-01-20 21:08:59 -0800 | [diff] [blame] | 1630 | WidgetAddFlowHandler addFlowHandler) { |
Tony Wickham | a0628cc | 2015-10-14 15:23:04 -0700 | [diff] [blame] | 1631 | if (LOGD) { |
| 1632 | Log.d(TAG, "Adding widget from drop"); |
| 1633 | } |
Sunny Goyal | 04a324a | 2017-01-20 21:08:59 -0800 | [diff] [blame] | 1634 | addAppWidgetImpl(appWidgetId, info, boundWidget, addFlowHandler, 0); |
Adam Cohen | ad4e15c | 2013-10-17 16:21:35 -0700 | [diff] [blame] | 1635 | } |
| 1636 | |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 1637 | void addAppWidgetImpl(int appWidgetId, ItemInfo info, |
Sunny Goyal | 04a324a | 2017-01-20 21:08:59 -0800 | [diff] [blame] | 1638 | AppWidgetHostView boundWidget, WidgetAddFlowHandler addFlowHandler, int delay) { |
Samuel Fufa | ca37b8a | 2019-08-19 17:04:36 -0700 | [diff] [blame] | 1639 | if (!addFlowHandler.startConfigActivity(this, appWidgetId, info, |
| 1640 | REQUEST_CREATE_APPWIDGET)) { |
Sunny Goyal | 04a324a | 2017-01-20 21:08:59 -0800 | [diff] [blame] | 1641 | // If the configuration flow was not started, add the widget |
Michael Jurka | af44209 | 2010-06-10 17:01:57 -0700 | [diff] [blame] | 1642 | |
Adam Cohen | ad4e15c | 2013-10-17 16:21:35 -0700 | [diff] [blame] | 1643 | Runnable onComplete = new Runnable() { |
| 1644 | @Override |
| 1645 | public void run() { |
| 1646 | // Exit spring loaded mode if necessary after adding the widget |
Sunny Goyal | 3e3f44c | 2017-10-23 17:14:52 -0700 | [diff] [blame] | 1647 | mStateManager.goToState(NORMAL, SPRING_LOADED_EXIT_DELAY); |
Adam Cohen | ad4e15c | 2013-10-17 16:21:35 -0700 | [diff] [blame] | 1648 | } |
| 1649 | }; |
Samuel Fufa | ca37b8a | 2019-08-19 17:04:36 -0700 | [diff] [blame] | 1650 | completeAddAppWidget(appWidgetId, info, boundWidget, |
| 1651 | addFlowHandler.getProviderInfo(this)); |
Sunny Goyal | 6e379fc | 2020-03-19 16:08:14 -0700 | [diff] [blame] | 1652 | mWorkspace.removeExtraEmptyScreenDelayed(delay, false, onComplete); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1653 | } |
| 1654 | } |
Romain Guy | cbb89e4 | 2009-06-08 15:52:54 -0700 | [diff] [blame] | 1655 | |
Sunny Goyal | efb7e84 | 2018-10-04 15:11:00 -0700 | [diff] [blame] | 1656 | public void addPendingItem(PendingAddItemInfo info, int container, int screenId, |
Sunny Goyal | 71b5c0b | 2015-01-08 16:59:04 -0800 | [diff] [blame] | 1657 | int[] cell, int spanX, int spanY) { |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 1658 | info.container = container; |
| 1659 | info.screenId = screenId; |
| 1660 | if (cell != null) { |
| 1661 | info.cellX = cell[0]; |
| 1662 | info.cellY = cell[1]; |
| 1663 | } |
| 1664 | info.spanX = spanX; |
| 1665 | info.spanY = spanY; |
| 1666 | |
Sunny Goyal | 71b5c0b | 2015-01-08 16:59:04 -0800 | [diff] [blame] | 1667 | switch (info.itemType) { |
| 1668 | case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET: |
| 1669 | case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET: |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 1670 | addAppWidgetFromDrop((PendingAddWidgetInfo) info); |
Sunny Goyal | 71b5c0b | 2015-01-08 16:59:04 -0800 | [diff] [blame] | 1671 | break; |
| 1672 | case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT: |
Sunny Goyal | 782f0c9 | 2017-01-19 10:27:54 -0800 | [diff] [blame] | 1673 | processShortcutFromDrop((PendingAddShortcutInfo) info); |
Sunny Goyal | 71b5c0b | 2015-01-08 16:59:04 -0800 | [diff] [blame] | 1674 | break; |
| 1675 | default: |
| 1676 | throw new IllegalStateException("Unknown item type: " + info.itemType); |
Samuel Fufa | ca37b8a | 2019-08-19 17:04:36 -0700 | [diff] [blame] | 1677 | } |
Sunny Goyal | 71b5c0b | 2015-01-08 16:59:04 -0800 | [diff] [blame] | 1678 | } |
| 1679 | |
Adam Cohen | fbba09b | 2011-07-18 21:43:05 -0700 | [diff] [blame] | 1680 | /** |
| 1681 | * Process a shortcut drop. |
Adam Cohen | fbba09b | 2011-07-18 21:43:05 -0700 | [diff] [blame] | 1682 | */ |
Sunny Goyal | 782f0c9 | 2017-01-19 10:27:54 -0800 | [diff] [blame] | 1683 | private void processShortcutFromDrop(PendingAddShortcutInfo info) { |
Sunny Goyal | fb5096d | 2016-09-08 14:32:06 -0700 | [diff] [blame] | 1684 | Intent intent = new Intent(Intent.ACTION_CREATE_SHORTCUT).setComponent(info.componentName); |
| 1685 | setWaitingForResult(PendingRequestArgs.forIntent(REQUEST_CREATE_SHORTCUT, intent, info)); |
vadimt | cf275c1 | 2020-04-15 12:43:01 -0700 | [diff] [blame] | 1686 | TestLogging.recordEvent(TestProtocol.SEQUENCE_MAIN, "start: processShortcutFromDrop"); |
Sunny Goyal | 782f0c9 | 2017-01-19 10:27:54 -0800 | [diff] [blame] | 1687 | if (!info.activityInfo.startConfigActivity(this, REQUEST_CREATE_SHORTCUT)) { |
| 1688 | handleActivityResult(REQUEST_CREATE_SHORTCUT, RESULT_CANCELED, null); |
| 1689 | } |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 1690 | } |
| 1691 | |
Adam Cohen | fbba09b | 2011-07-18 21:43:05 -0700 | [diff] [blame] | 1692 | /** |
| 1693 | * Process a widget drop. |
Adam Cohen | fbba09b | 2011-07-18 21:43:05 -0700 | [diff] [blame] | 1694 | */ |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 1695 | private void addAppWidgetFromDrop(PendingAddWidgetInfo info) { |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 1696 | AppWidgetHostView hostView = info.boundWidget; |
Sunny Goyal | 952e63d | 2017-08-16 04:59:08 -0700 | [diff] [blame] | 1697 | final int appWidgetId; |
Sunny Goyal | 8a0dc38 | 2017-01-25 11:30:06 -0800 | [diff] [blame] | 1698 | WidgetAddFlowHandler addFlowHandler = info.getHandler(); |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 1699 | if (hostView != null) { |
Tony Wickham | a0628cc | 2015-10-14 15:23:04 -0700 | [diff] [blame] | 1700 | // In the case where we've prebound the widget, we remove it from the DragLayer |
| 1701 | if (LOGD) { |
| 1702 | Log.d(TAG, "Removing widget view from drag layer and setting boundWidget to null"); |
| 1703 | } |
| 1704 | getDragLayer().removeView(hostView); |
| 1705 | |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 1706 | appWidgetId = hostView.getAppWidgetId(); |
Sunny Goyal | 04a324a | 2017-01-20 21:08:59 -0800 | [diff] [blame] | 1707 | addAppWidgetFromDropImpl(appWidgetId, info, hostView, addFlowHandler); |
Sunny Goyal | 5b9ebca | 2015-06-01 18:37:32 -0700 | [diff] [blame] | 1708 | |
| 1709 | // Clear the boundWidget so that it doesn't get destroyed. |
| 1710 | info.boundWidget = null; |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 1711 | } else { |
Adam Cohen | 9d5b7d8 | 2012-05-09 18:00:44 -0700 | [diff] [blame] | 1712 | // In this case, we either need to start an activity to get permission to bind |
| 1713 | // the widget, or we need to start an activity to configure the widget, or both. |
Pinyao Ting | c7a6c29 | 2019-08-26 14:36:02 -0700 | [diff] [blame] | 1714 | if (info.itemType == LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET) { |
| 1715 | appWidgetId = CustomWidgetManager.INSTANCE.get(this).getWidgetIdForCustomProvider( |
| 1716 | info.componentName); |
Sunny Goyal | 952e63d | 2017-08-16 04:59:08 -0700 | [diff] [blame] | 1717 | } else { |
| 1718 | appWidgetId = getAppWidgetHost().allocateAppWidgetId(); |
| 1719 | } |
Adam Cohen | dd70d66 | 2012-10-04 16:53:44 -0700 | [diff] [blame] | 1720 | Bundle options = info.bindOptions; |
| 1721 | |
Sunny Goyal | ffe83f1 | 2014-08-14 17:39:34 -0700 | [diff] [blame] | 1722 | boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed( |
| 1723 | appWidgetId, info.info, options); |
Adam Cohen | dd70d66 | 2012-10-04 16:53:44 -0700 | [diff] [blame] | 1724 | if (success) { |
Sunny Goyal | 04a324a | 2017-01-20 21:08:59 -0800 | [diff] [blame] | 1725 | addAppWidgetFromDropImpl(appWidgetId, info, null, addFlowHandler); |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 1726 | } else { |
Sunny Goyal | 04a324a | 2017-01-20 21:08:59 -0800 | [diff] [blame] | 1727 | addFlowHandler.startBindFlow(this, appWidgetId, info, REQUEST_BIND_APPWIDGET); |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 1728 | } |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 1729 | } |
Adam Cohen | fbba09b | 2011-07-18 21:43:05 -0700 | [diff] [blame] | 1730 | } |
| 1731 | |
Samuel Fufa | 746d420 | 2020-02-02 18:55:44 -0800 | [diff] [blame] | 1732 | /** |
| 1733 | * Creates and adds new folder to CellLayout |
| 1734 | */ |
Samuel Fufa | 28c3e45 | 2020-02-08 16:07:16 -0800 | [diff] [blame] | 1735 | public FolderIcon addFolder(CellLayout layout, int container, final int screenId, int cellX, |
| 1736 | int cellY) { |
Michael Jurka | c9d95c5 | 2011-08-29 14:03:34 -0700 | [diff] [blame] | 1737 | final FolderInfo folderInfo = new FolderInfo(); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1738 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1739 | // Update the model |
Sunny Goyal | 43bf11d | 2017-02-02 13:52:53 -0800 | [diff] [blame] | 1740 | getModelWriter().addItemToDatabase(folderInfo, container, screenId, cellX, cellY); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1741 | |
| 1742 | // Create the view |
Samuel Fufa | 746d420 | 2020-02-02 18:55:44 -0800 | [diff] [blame] | 1743 | FolderIcon newFolder = FolderIcon.inflateFolderAndIcon(R.layout.folder_icon, this, layout, |
| 1744 | folderInfo); |
Sunny Goyal | d5462aa | 2016-11-22 16:52:39 +0530 | [diff] [blame] | 1745 | mWorkspace.addInScreen(newFolder, folderInfo); |
Winson Chung | 5f8afe6 | 2013-08-12 16:19:28 -0700 | [diff] [blame] | 1746 | // Force measure the new folder icon |
| 1747 | CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder); |
| 1748 | parent.getShortcutsAndWidgets().measureChild(newFolder); |
Adam Cohen | df03538 | 2011-04-11 17:22:04 -0700 | [diff] [blame] | 1749 | return newFolder; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1750 | } |
Romain Guy | cbb89e4 | 2009-06-08 15:52:54 -0700 | [diff] [blame] | 1751 | |
Tony Wickham | 1906cc3 | 2021-02-11 11:55:24 -0800 | [diff] [blame] | 1752 | @Override |
| 1753 | public Rect getFolderBoundingBox() { |
| 1754 | // We need to bound the folder to the currently visible workspace area |
Andras Kloczl | 3a4ba0b | 2021-03-29 18:47:14 +0200 | [diff] [blame] | 1755 | return getWorkspace().getPageAreaRelativeToDragLayer(); |
Tony Wickham | 1906cc3 | 2021-02-11 11:55:24 -0800 | [diff] [blame] | 1756 | } |
| 1757 | |
| 1758 | @Override |
| 1759 | public void updateOpenFolderPosition(int[] inOutPosition, Rect bounds, int width, int height) { |
| 1760 | int left = inOutPosition[0]; |
| 1761 | int top = inOutPosition[1]; |
| 1762 | DeviceProfile grid = getDeviceProfile(); |
| 1763 | int distFromEdgeOfScreen = getWorkspace().getPaddingLeft(); |
| 1764 | if (grid.isPhone && (grid.availableWidthPx - width) < 4 * distFromEdgeOfScreen) { |
| 1765 | // Center the folder if it is very close to being centered anyway, by virtue of |
| 1766 | // filling the majority of the viewport. ie. remove it from the uncanny valley |
| 1767 | // of centeredness. |
| 1768 | left = (grid.availableWidthPx - width) / 2; |
| 1769 | } else if (width >= bounds.width()) { |
| 1770 | // If the folder doesn't fit within the bounds, center it about the desired bounds |
| 1771 | left = bounds.left + (bounds.width() - width) / 2; |
| 1772 | } |
| 1773 | if (height >= bounds.height()) { |
| 1774 | // Folder height is greater than page height, center on page |
| 1775 | top = bounds.top + (bounds.height() - height) / 2; |
| 1776 | } else { |
| 1777 | // Folder height is less than page height, so bound it to the absolute open folder |
| 1778 | // bounds if necessary |
| 1779 | Rect folderBounds = grid.getAbsoluteOpenFolderBounds(); |
| 1780 | left = Math.max(folderBounds.left, Math.min(left, folderBounds.right - width)); |
| 1781 | top = Math.max(folderBounds.top, Math.min(top, folderBounds.bottom - height)); |
| 1782 | } |
| 1783 | inOutPosition[0] = left; |
| 1784 | inOutPosition[1] = top; |
| 1785 | } |
| 1786 | |
Winson | c0b52fe | 2015-09-09 16:38:15 -0700 | [diff] [blame] | 1787 | /** |
Winson | fa56b3f | 2015-09-14 12:01:13 -0700 | [diff] [blame] | 1788 | * Unbinds the view for the specified item, and removes the item and all its children. |
| 1789 | * |
| 1790 | * @param v the view being removed. |
Winson | fa56b3f | 2015-09-14 12:01:13 -0700 | [diff] [blame] | 1791 | * @param itemInfo the {@link ItemInfo} for this view. |
| 1792 | * @param deleteFromDb whether or not to delete this item from the db. |
Winson | c0b52fe | 2015-09-09 16:38:15 -0700 | [diff] [blame] | 1793 | */ |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 1794 | public boolean removeItem(View v, final ItemInfo itemInfo, boolean deleteFromDb) { |
Sunny Goyal | 9589916 | 2019-03-27 16:03:06 -0700 | [diff] [blame] | 1795 | if (itemInfo instanceof WorkspaceItemInfo) { |
Winson | fa56b3f | 2015-09-14 12:01:13 -0700 | [diff] [blame] | 1796 | // Remove the shortcut from the folder before removing it from launcher |
Sunny Goyal | 44c0643 | 2016-04-02 10:56:02 -0700 | [diff] [blame] | 1797 | View folderIcon = mWorkspace.getHomescreenIconByItemId(itemInfo.container); |
| 1798 | if (folderIcon instanceof FolderIcon) { |
Sunny Goyal | 9589916 | 2019-03-27 16:03:06 -0700 | [diff] [blame] | 1799 | ((FolderInfo) folderIcon.getTag()).remove((WorkspaceItemInfo) itemInfo, true); |
Winson | fa56b3f | 2015-09-14 12:01:13 -0700 | [diff] [blame] | 1800 | } else { |
| 1801 | mWorkspace.removeWorkspaceItem(v); |
| 1802 | } |
Winson | c0b52fe | 2015-09-09 16:38:15 -0700 | [diff] [blame] | 1803 | if (deleteFromDb) { |
Sunny Goyal | 43bf11d | 2017-02-02 13:52:53 -0800 | [diff] [blame] | 1804 | getModelWriter().deleteItemFromDatabase(itemInfo); |
Winson | c0b52fe | 2015-09-09 16:38:15 -0700 | [diff] [blame] | 1805 | } |
| 1806 | } else if (itemInfo instanceof FolderInfo) { |
| 1807 | final FolderInfo folderInfo = (FolderInfo) itemInfo; |
Sunny Goyal | aaf7d1d | 2016-05-17 13:38:54 -0700 | [diff] [blame] | 1808 | if (v instanceof FolderIcon) { |
| 1809 | ((FolderIcon) v).removeListeners(); |
| 1810 | } |
Winson | c0b52fe | 2015-09-09 16:38:15 -0700 | [diff] [blame] | 1811 | mWorkspace.removeWorkspaceItem(v); |
| 1812 | if (deleteFromDb) { |
Sunny Goyal | 43bf11d | 2017-02-02 13:52:53 -0800 | [diff] [blame] | 1813 | getModelWriter().deleteFolderAndContentsFromDatabase(folderInfo); |
Winson | c0b52fe | 2015-09-09 16:38:15 -0700 | [diff] [blame] | 1814 | } |
| 1815 | } else if (itemInfo instanceof LauncherAppWidgetInfo) { |
| 1816 | final LauncherAppWidgetInfo widgetInfo = (LauncherAppWidgetInfo) itemInfo; |
Winson | 44818e0 | 2015-10-02 11:25:46 -0700 | [diff] [blame] | 1817 | mWorkspace.removeWorkspaceItem(v); |
Winson | c0b52fe | 2015-09-09 16:38:15 -0700 | [diff] [blame] | 1818 | if (deleteFromDb) { |
Tony Wickham | 6a71a5b | 2018-08-21 11:40:23 -0700 | [diff] [blame] | 1819 | getModelWriter().deleteWidgetInfo(widgetInfo, getAppWidgetHost()); |
Winson | c0b52fe | 2015-09-09 16:38:15 -0700 | [diff] [blame] | 1820 | } |
| 1821 | } else { |
| 1822 | return false; |
| 1823 | } |
| 1824 | return true; |
| 1825 | } |
| 1826 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1827 | @Override |
| 1828 | public boolean dispatchKeyEvent(KeyEvent event) { |
vadimt | d633c9c | 2020-01-22 18:00:37 -0800 | [diff] [blame] | 1829 | TestLogging.recordEvent(TestProtocol.SEQUENCE_MAIN, "Key event", event); |
Hyunyoung Song | 3c7d9cb | 2017-01-30 15:11:27 -0800 | [diff] [blame] | 1830 | return (event.getKeyCode() == KeyEvent.KEYCODE_HOME) || super.dispatchKeyEvent(event); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1831 | } |
| 1832 | |
Joe Onorato | 88ec099 | 2009-11-19 13:16:06 -0800 | [diff] [blame] | 1833 | @Override |
vadimt | 9af34a7 | 2020-01-21 11:19:13 -0800 | [diff] [blame] | 1834 | public boolean dispatchTouchEvent(MotionEvent ev) { |
Sunny Goyal | a306e59 | 2020-03-24 01:51:41 -0700 | [diff] [blame] | 1835 | switch (ev.getAction()) { |
| 1836 | case MotionEvent.ACTION_DOWN: |
| 1837 | mTouchInProgress = true; |
| 1838 | break; |
| 1839 | case MotionEvent.ACTION_UP: |
Riddle Hsu | b30adcb | 2020-10-07 15:57:44 +0800 | [diff] [blame] | 1840 | mLastTouchUpTime = SystemClock.uptimeMillis(); |
Sunny Goyal | a306e59 | 2020-03-24 01:51:41 -0700 | [diff] [blame] | 1841 | // Follow through |
| 1842 | case MotionEvent.ACTION_CANCEL: |
| 1843 | mTouchInProgress = false; |
| 1844 | break; |
Sunny Goyal | 9b18010 | 2020-03-11 10:02:29 -0700 | [diff] [blame] | 1845 | } |
vadimt | d633c9c | 2020-01-22 18:00:37 -0800 | [diff] [blame] | 1846 | TestLogging.recordMotionEvent(TestProtocol.SEQUENCE_MAIN, "Touch event", ev); |
vadimt | 9af34a7 | 2020-01-21 11:19:13 -0800 | [diff] [blame] | 1847 | return super.dispatchTouchEvent(ev); |
| 1848 | } |
| 1849 | |
Sunny Goyal | a306e59 | 2020-03-24 01:51:41 -0700 | [diff] [blame] | 1850 | /** |
| 1851 | * Returns true if a touch interaction is in progress |
| 1852 | */ |
| 1853 | public boolean isTouchInProgress() { |
| 1854 | return mTouchInProgress; |
| 1855 | } |
| 1856 | |
vadimt | 9af34a7 | 2020-01-21 11:19:13 -0800 | [diff] [blame] | 1857 | @Override |
Joe Onorato | 88ec099 | 2009-11-19 13:16:06 -0800 | [diff] [blame] | 1858 | public void onBackPressed() { |
Sunny Goyal | 7c8a65e | 2017-12-22 11:11:33 -0800 | [diff] [blame] | 1859 | if (finishAutoCancelActionMode()) { |
| 1860 | return; |
| 1861 | } |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 1862 | |
Sunny Goyal | 4547802 | 2015-06-08 16:52:41 -0700 | [diff] [blame] | 1863 | if (mDragController.isDragging()) { |
| 1864 | mDragController.cancelDrag(); |
Adam Cohen | c9735cf | 2015-01-23 16:11:55 -0800 | [diff] [blame] | 1865 | return; |
| 1866 | } |
| 1867 | |
Jon Miranda | feba90f | 2016-10-06 10:53:29 -0700 | [diff] [blame] | 1868 | // Note: There should be at most one log per method call. This is enforced implicitly |
| 1869 | // by using if-else statements. |
Sunny Goyal | 740ac7f | 2016-09-28 16:47:32 -0700 | [diff] [blame] | 1870 | AbstractFloatingView topView = AbstractFloatingView.getTopOpenView(this); |
Tony Wickham | 52c1b66 | 2018-05-21 13:13:58 -0700 | [diff] [blame] | 1871 | if (topView != null && topView.onBackPressed()) { |
| 1872 | // Handled by the floating view. |
Patrick Dubroy | 94f78a5 | 2011-02-28 17:39:16 -0800 | [diff] [blame] | 1873 | } else { |
Sunny Goyal | e39690b | 2018-08-02 13:35:07 -0700 | [diff] [blame] | 1874 | mStateManager.getState().onBackPressed(this); |
Michael Jurka | af44209 | 2010-06-10 17:01:57 -0700 | [diff] [blame] | 1875 | } |
Joe Onorato | 88ec099 | 2009-11-19 13:16:06 -0800 | [diff] [blame] | 1876 | } |
| 1877 | |
Sunny Goyal | fe770c9 | 2016-09-27 14:38:58 -0700 | [diff] [blame] | 1878 | @TargetApi(Build.VERSION_CODES.M) |
Sunny Goyal | 0b0847b | 2018-03-14 12:30:11 -0700 | [diff] [blame] | 1879 | @Override |
Sunny Goyal | 0b0847b | 2018-03-14 12:30:11 -0700 | [diff] [blame] | 1880 | protected boolean onErrorStartingShortcut(Intent intent, ItemInfo info) { |
| 1881 | // Due to legacy reasons, direct call shortcuts require Launchers to have the |
| 1882 | // corresponding permission. Show the appropriate permission prompt if that |
| 1883 | // is the case. |
| 1884 | if (intent.getComponent() == null |
| 1885 | && Intent.ACTION_CALL.equals(intent.getAction()) |
| 1886 | && checkSelfPermission(android.Manifest.permission.CALL_PHONE) != |
| 1887 | PackageManager.PERMISSION_GRANTED) { |
| 1888 | |
| 1889 | setWaitingForResult(PendingRequestArgs |
| 1890 | .forIntent(REQUEST_PERMISSION_CALL_PHONE, intent, info)); |
| 1891 | requestPermissions(new String[]{android.Manifest.permission.CALL_PHONE}, |
| 1892 | REQUEST_PERMISSION_CALL_PHONE); |
| 1893 | return true; |
| 1894 | } else { |
| 1895 | return false; |
| 1896 | } |
Sunny Goyal | 0eca4e2 | 2016-07-20 11:43:06 -0700 | [diff] [blame] | 1897 | } |
| 1898 | |
Hyunyoung Song | 46d07f7 | 2018-05-22 15:41:25 -0700 | [diff] [blame] | 1899 | @Override |
Sunny Goyal | 852537f | 2020-07-15 17:02:16 -0700 | [diff] [blame] | 1900 | public boolean startActivitySafely(View v, Intent intent, ItemInfo item) { |
Tony Wickham | 794fe4f | 2021-01-11 14:54:23 -0600 | [diff] [blame] | 1901 | if (isViewInTaskbar(v)) { |
| 1902 | // Start the activity without the hacky workarounds below, which assume the View was |
| 1903 | // clicked when Launcher was resumed and will be hidden until Launcher is re-resumed |
| 1904 | // (this isn't the case for Taskbar). |
| 1905 | return super.startActivitySafely(v, intent, item); |
| 1906 | } |
| 1907 | |
Winson Chung | 0b70cd4 | 2019-06-17 22:34:33 -0700 | [diff] [blame] | 1908 | if (!hasBeenResumed()) { |
| 1909 | // Workaround an issue where the WM launch animation is clobbered when finishing the |
| 1910 | // recents animation into launcher. Defer launching the activity until Launcher is |
| 1911 | // next resumed. |
Sunny Goyal | 852537f | 2020-07-15 17:02:16 -0700 | [diff] [blame] | 1912 | addOnResumeCallback(() -> startActivitySafely(v, intent, item)); |
Winson Chung | c9bf6d4 | 2019-10-04 15:33:18 -0700 | [diff] [blame] | 1913 | if (mOnDeferredActivityLaunchCallback != null) { |
| 1914 | mOnDeferredActivityLaunchCallback.run(); |
| 1915 | mOnDeferredActivityLaunchCallback = null; |
| 1916 | } |
Winson Chung | 0b70cd4 | 2019-06-17 22:34:33 -0700 | [diff] [blame] | 1917 | return true; |
| 1918 | } |
| 1919 | |
Sunny Goyal | 852537f | 2020-07-15 17:02:16 -0700 | [diff] [blame] | 1920 | boolean success = super.startActivitySafely(v, intent, item); |
Hyunyoung Song | 1241e61 | 2018-05-15 21:46:51 -0700 | [diff] [blame] | 1921 | if (success && v instanceof BubbleTextView) { |
Sunny Goyal | 0b0847b | 2018-03-14 12:30:11 -0700 | [diff] [blame] | 1922 | // This is set to the view that launched the activity that navigated the user away |
| 1923 | // from launcher. Since there is no callback for when the activity has finished |
| 1924 | // launching, enable the press state and keep this reference to reset the press |
| 1925 | // state when we return to launcher. |
| 1926 | BubbleTextView btv = (BubbleTextView) v; |
| 1927 | btv.setStayPressed(true); |
Sunny Goyal | b65d766 | 2021-03-07 15:09:11 -0800 | [diff] [blame] | 1928 | addOnResumeCallback(() -> btv.setStayPressed(false)); |
Sunny Goyal | a7ce166 | 2016-05-31 15:01:35 -0700 | [diff] [blame] | 1929 | } |
Hyunyoung Song | 1241e61 | 2018-05-15 21:46:51 -0700 | [diff] [blame] | 1930 | return success; |
Michael Jurka | 86a720e | 2012-05-09 11:23:23 -0700 | [diff] [blame] | 1931 | } |
| 1932 | |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 1933 | boolean isHotseatLayout(View layout) { |
Sunny Goyal | c13403c | 2016-11-18 23:44:48 -0800 | [diff] [blame] | 1934 | // TODO: Remove this method |
Sunny Goyal | 876e462 | 2018-11-02 13:50:40 -0700 | [diff] [blame] | 1935 | return mHotseat != null && (layout == mHotseat); |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 1936 | } |
Romain Guy | 1fbc1c8 | 2009-11-09 20:43:08 -0800 | [diff] [blame] | 1937 | |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 1938 | /** |
| 1939 | * Returns the CellLayout of the specified container at the specified screen. |
| 1940 | */ |
Sunny Goyal | efb7e84 | 2018-10-04 15:11:00 -0700 | [diff] [blame] | 1941 | public CellLayout getCellLayout(int container, int screenId) { |
Sunny Goyal | 876e462 | 2018-11-02 13:50:40 -0700 | [diff] [blame] | 1942 | return (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) |
| 1943 | ? mHotseat : mWorkspace.getScreenWithId(screenId); |
Romain Guy | a6abce8 | 2009-11-10 02:54:41 -0800 | [diff] [blame] | 1944 | } |
| 1945 | |
Michael Jurka | e326f18 | 2011-11-21 14:05:46 -0800 | [diff] [blame] | 1946 | @Override |
| 1947 | public void onTrimMemory(int level) { |
| 1948 | super.onTrimMemory(level); |
Adam Cohen | 3f9c971 | 2014-10-31 11:48:25 -0700 | [diff] [blame] | 1949 | if (level >= ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) { |
| 1950 | // The widget preview db can result in holding onto over |
| 1951 | // 3MB of memory for caching which isn't necessary. |
| 1952 | SQLiteDatabase.releaseMemory(); |
| 1953 | |
Adam Cohen | c8f4e1b | 2014-11-19 16:03:20 -0800 | [diff] [blame] | 1954 | // This clears all widget bitmaps from the widget tray |
Hyunyoung Song | 3f47144 | 2015-04-08 19:01:34 -0700 | [diff] [blame] | 1955 | // TODO(hyunyoungs) |
Michael Jurka | e326f18 | 2011-11-21 14:05:46 -0800 | [diff] [blame] | 1956 | } |
| 1957 | } |
| 1958 | |
Michael Jurka | d7c2805 | 2012-04-27 15:43:36 -0700 | [diff] [blame] | 1959 | @Override |
| 1960 | public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) { |
alanv | 1d4fde6 | 2012-10-17 13:15:47 -0700 | [diff] [blame] | 1961 | final boolean result = super.dispatchPopulateAccessibilityEvent(event); |
Michael Jurka | d7c2805 | 2012-04-27 15:43:36 -0700 | [diff] [blame] | 1962 | final List<CharSequence> text = event.getText(); |
| 1963 | text.clear(); |
alanv | 1d4fde6 | 2012-10-17 13:15:47 -0700 | [diff] [blame] | 1964 | // Populate event with a fake title based on the current state. |
Sunny Goyal | 3e3f44c | 2017-10-23 17:14:52 -0700 | [diff] [blame] | 1965 | // TODO: When can workspace be null? |
| 1966 | text.add(mWorkspace == null |
Sunny Goyal | 52e2545 | 2020-07-20 12:38:01 -0700 | [diff] [blame] | 1967 | ? getString(R.string.home_screen) |
Sunny Goyal | ea60926 | 2017-10-25 15:47:38 -0700 | [diff] [blame] | 1968 | : mStateManager.getState().getDescription(this)); |
Michael Jurka | d7c2805 | 2012-04-27 15:43:36 -0700 | [diff] [blame] | 1969 | return result; |
| 1970 | } |
| 1971 | |
Michael Jurka | 7607c2f | 2013-04-03 14:33:19 -0700 | [diff] [blame] | 1972 | /** |
Winson Chung | c9bf6d4 | 2019-10-04 15:33:18 -0700 | [diff] [blame] | 1973 | * 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 Goyal | a7a5bf3 | 2020-01-05 15:35:29 +0530 | [diff] [blame] | 1981 | * 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 Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 1989 | * Implementation of the method from LauncherModel.Callbacks. |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1990 | */ |
Sunny Goyal | 93f878c | 2016-03-30 17:31:24 -0700 | [diff] [blame] | 1991 | @Override |
Sunny Goyal | a7a5bf3 | 2020-01-05 15:35:29 +0530 | [diff] [blame] | 1992 | public int getPageToBindSynchronously() { |
| 1993 | if (mPageToBindSynchronously != PagedView.INVALID_PAGE) { |
| 1994 | return mPageToBindSynchronously; |
| 1995 | } else if (mWorkspace != null) { |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 1996 | return mWorkspace.getCurrentPage(); |
Joe Onorato | d0afc87 | 2010-06-11 00:03:15 -0700 | [diff] [blame] | 1997 | } else { |
Winson Chung | 882a52e | 2015-07-08 14:32:26 -0700 | [diff] [blame] | 1998 | return 0; |
Joe Onorato | d0afc87 | 2010-06-11 00:03:15 -0700 | [diff] [blame] | 1999 | } |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 2000 | } |
The Android Open Source Project | f96811c | 2009-03-18 17:39:48 -0700 | [diff] [blame] | 2001 | |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 2002 | /** |
Sunny Goyal | 527c7d3 | 2015-08-28 15:19:36 -0700 | [diff] [blame] | 2003 | * 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 Goyal | 527c7d3 | 2015-08-28 15:19:36 -0700 | [diff] [blame] | 2008 | if (mPendingExecutor != null) { |
| 2009 | mPendingExecutor.markCompleted(); |
| 2010 | mPendingExecutor = null; |
Sunny Goyal | 6b6d0a3 | 2019-08-05 17:19:32 -0700 | [diff] [blame] | 2011 | |
| 2012 | // We might have set this flag previously and forgot to clear it. |
| 2013 | mAppsView.getAppsStore() |
| 2014 | .disableDeferUpdatesSilently(AllAppsStore.DEFER_UPDATES_NEXT_DRAW); |
Sunny Goyal | 527c7d3 | 2015-08-28 15:19:36 -0700 | [diff] [blame] | 2015 | } |
| 2016 | } |
| 2017 | |
| 2018 | /** |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 2019 | * Refreshes the shortcuts shown on the workspace. |
| 2020 | * |
| 2021 | * Implementation of the method from LauncherModel.Callbacks. |
| 2022 | */ |
| 2023 | public void startBinding() { |
Winson Chung | 5cc62c7 | 2019-10-16 11:32:41 -0700 | [diff] [blame] | 2024 | Object traceToken = TraceHelper.INSTANCE.beginSection("startBinding"); |
Sunny Goyal | f1fbc3f | 2017-10-10 15:21:15 -0700 | [diff] [blame] | 2025 | // 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 Ting | a74b63a | 2019-07-17 23:26:06 -0700 | [diff] [blame] | 2028 | AbstractFloatingView.closeOpenViews(this, true, TYPE_ALL & ~TYPE_REBIND_SAFE); |
Jon Miranda | 6dc7f1e | 2017-02-21 12:37:51 -0800 | [diff] [blame] | 2029 | |
Anjali Koppal | ff7ceff | 2014-05-01 18:26:37 -0700 | [diff] [blame] | 2030 | setWorkspaceLoading(true); |
Adam Cohen | 517a7f5 | 2014-03-01 12:12:59 -0800 | [diff] [blame] | 2031 | |
Winson Chung | d64d176 | 2013-08-20 14:37:16 -0700 | [diff] [blame] | 2032 | // Clear the workspace because it's going to be rebound |
Sunny Goyal | 2db5342 | 2019-03-01 16:06:12 -0800 | [diff] [blame] | 2033 | mDragController.cancelDrag(); |
| 2034 | |
Adam Cohen | df03538 | 2011-04-11 17:22:04 -0700 | [diff] [blame] | 2035 | mWorkspace.clearDropTargets(); |
Winson Chung | 9e6a0a2 | 2013-08-27 11:58:12 -0700 | [diff] [blame] | 2036 | mWorkspace.removeAllWorkspaceScreens(); |
Sunny Goyal | c11fac3 | 2018-02-27 19:20:15 -0800 | [diff] [blame] | 2037 | mAppWidgetHost.clearViews(); |
Winson Chung | d64d176 | 2013-08-20 14:37:16 -0700 | [diff] [blame] | 2038 | |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 2039 | if (mHotseat != null) { |
Sunny Goyal | c4d3201 | 2020-04-03 17:10:11 -0700 | [diff] [blame] | 2040 | mHotseat.resetLayout(getDeviceProfile().isVerticalBarLayout()); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 2041 | } |
Winson Chung | 5cc62c7 | 2019-10-16 11:32:41 -0700 | [diff] [blame] | 2042 | TraceHelper.INSTANCE.endSection(traceToken); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 2043 | } |
| 2044 | |
Adam Cohen | dcd297f | 2013-06-18 13:13:40 -0700 | [diff] [blame] | 2045 | @Override |
Sunny Goyal | efb7e84 | 2018-10-04 15:11:00 -0700 | [diff] [blame] | 2046 | public void bindScreens(IntArray orderedScreenIds) { |
Sunny Goyal | da4fe1a | 2016-05-26 16:05:17 -0700 | [diff] [blame] | 2047 | // Make sure the first screen is always at the start. |
Jon Miranda | 7143ba6 | 2019-03-15 09:00:05 -0700 | [diff] [blame] | 2048 | if (FeatureFlags.QSB_ON_FIRST_SCREEN && |
Sunny Goyal | a9e2f5a | 2016-06-10 12:22:04 -0700 | [diff] [blame] | 2049 | orderedScreenIds.indexOf(Workspace.FIRST_SCREEN_ID) != 0) { |
Sunny Goyal | efb7e84 | 2018-10-04 15:11:00 -0700 | [diff] [blame] | 2050 | orderedScreenIds.removeValue(Workspace.FIRST_SCREEN_ID); |
Sunny Goyal | da4fe1a | 2016-05-26 16:05:17 -0700 | [diff] [blame] | 2051 | orderedScreenIds.add(0, Workspace.FIRST_SCREEN_ID); |
Jon Miranda | 7143ba6 | 2019-03-15 09:00:05 -0700 | [diff] [blame] | 2052 | } else if (!FeatureFlags.QSB_ON_FIRST_SCREEN && orderedScreenIds.isEmpty()) { |
Sunny Goyal | a9e2f5a | 2016-06-10 12:22:04 -0700 | [diff] [blame] | 2053 | // If there are no screens, we need to have an empty screen |
| 2054 | mWorkspace.addExtraEmptyScreen(); |
Adam Cohen | 5084cba | 2013-09-03 12:01:16 -0700 | [diff] [blame] | 2055 | } |
Sunny Goyal | da4fe1a | 2016-05-26 16:05:17 -0700 | [diff] [blame] | 2056 | bindAddScreens(orderedScreenIds); |
Winson Chung | 0e6a713 | 2013-08-23 12:55:10 -0700 | [diff] [blame] | 2057 | |
Winson | c7d2e83 | 2016-07-28 12:24:55 -0700 | [diff] [blame] | 2058 | // 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 Chung | 64359a5 | 2013-07-08 17:17:08 -0700 | [diff] [blame] | 2062 | } |
| 2063 | |
Sunny Goyal | efb7e84 | 2018-10-04 15:11:00 -0700 | [diff] [blame] | 2064 | private void bindAddScreens(IntArray orderedScreenIds) { |
Adam Cohen | dcd297f | 2013-06-18 13:13:40 -0700 | [diff] [blame] | 2065 | int count = orderedScreenIds.size(); |
| 2066 | for (int i = 0; i < count; i++) { |
Sunny Goyal | efb7e84 | 2018-10-04 15:11:00 -0700 | [diff] [blame] | 2067 | int screenId = orderedScreenIds.get(i); |
Jon Miranda | 7143ba6 | 2019-03-15 09:00:05 -0700 | [diff] [blame] | 2068 | if (!FeatureFlags.QSB_ON_FIRST_SCREEN || screenId != Workspace.FIRST_SCREEN_ID) { |
Sunny Goyal | da4fe1a | 2016-05-26 16:05:17 -0700 | [diff] [blame] | 2069 | // No need to bind the first screen, as its always bound. |
| 2070 | mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(screenId); |
| 2071 | } |
Adam Cohen | dcd297f | 2013-06-18 13:13:40 -0700 | [diff] [blame] | 2072 | } |
Adam Cohen | dcd297f | 2013-06-18 13:13:40 -0700 | [diff] [blame] | 2073 | } |
| 2074 | |
Sunny Goyal | b23980c | 2017-08-17 07:45:25 -0700 | [diff] [blame] | 2075 | @Override |
Tony Wickham | 6a71a5b | 2018-08-21 11:40:23 -0700 | [diff] [blame] | 2076 | 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 Goyal | efb7e84 | 2018-10-04 15:11:00 -0700 | [diff] [blame] | 2087 | public void bindAppsAdded(IntArray newScreens, ArrayList<ItemInfo> addNotAnimated, |
Sunny Goyal | 29947f0 | 2017-12-18 13:49:44 -0800 | [diff] [blame] | 2088 | ArrayList<ItemInfo> addAnimated) { |
Winson Chung | d64d176 | 2013-08-20 14:37:16 -0700 | [diff] [blame] | 2089 | // Add the new screens |
Adam Cohen | 76a47a1 | 2014-02-05 11:47:43 -0800 | [diff] [blame] | 2090 | if (newScreens != null) { |
| 2091 | bindAddScreens(newScreens); |
| 2092 | } |
Winson Chung | d64d176 | 2013-08-20 14:37:16 -0700 | [diff] [blame] | 2093 | |
| 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 Cohen | 76a47a1 | 2014-02-05 11:47:43 -0800 | [diff] [blame] | 2096 | if (addNotAnimated != null && !addNotAnimated.isEmpty()) { |
Sunny Goyal | b23980c | 2017-08-17 07:45:25 -0700 | [diff] [blame] | 2097 | bindItems(addNotAnimated, false); |
Winson Chung | d64d176 | 2013-08-20 14:37:16 -0700 | [diff] [blame] | 2098 | } |
Adam Cohen | 76a47a1 | 2014-02-05 11:47:43 -0800 | [diff] [blame] | 2099 | if (addAnimated != null && !addAnimated.isEmpty()) { |
Sunny Goyal | b23980c | 2017-08-17 07:45:25 -0700 | [diff] [blame] | 2100 | bindItems(addAnimated, true); |
Winson Chung | d64d176 | 2013-08-20 14:37:16 -0700 | [diff] [blame] | 2101 | } |
Winson Chung | c58497e | 2013-09-03 17:48:37 -0700 | [diff] [blame] | 2102 | |
Winson Chung | 8741298 | 2013-10-03 18:34:14 -0700 | [diff] [blame] | 2103 | // Remove the extra empty screen |
Sunny Goyal | 6e379fc | 2020-03-19 16:08:14 -0700 | [diff] [blame] | 2104 | mWorkspace.removeExtraEmptyScreen(false); |
Winson Chung | d64d176 | 2013-08-20 14:37:16 -0700 | [diff] [blame] | 2105 | } |
| 2106 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 2107 | /** |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 2108 | * Bind the items start-end from the list. |
| 2109 | * |
| 2110 | * Implementation of the method from LauncherModel.Callbacks. |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 2111 | */ |
Tony Wickham | 0bb211a | 2015-10-02 16:22:08 -0700 | [diff] [blame] | 2112 | @Override |
Sunny Goyal | b23980c | 2017-08-17 07:45:25 -0700 | [diff] [blame] | 2113 | public void bindItems(final List<ItemInfo> items, final boolean forceAnimateIcons) { |
Sunny Goyal | 3be633b | 2016-12-08 09:59:25 -0800 | [diff] [blame] | 2114 | // Get the list of added items and intersect them with the set of items here |
Rajeev Kumar | 43c0f58 | 2017-06-23 15:34:55 -0700 | [diff] [blame] | 2115 | final Collection<Animator> bounceAnims = new ArrayList<>(); |
Winson Chung | 997a923 | 2013-07-24 15:33:46 -0700 | [diff] [blame] | 2116 | final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation(); |
Winson Chung | f0c6ae0 | 2012-03-21 16:10:31 -0700 | [diff] [blame] | 2117 | Workspace workspace = mWorkspace; |
Sunny Goyal | efb7e84 | 2018-10-04 15:11:00 -0700 | [diff] [blame] | 2118 | int newItemsScreenId = -1; |
Sunny Goyal | b23980c | 2017-08-17 07:45:25 -0700 | [diff] [blame] | 2119 | int end = items.size(); |
| 2120 | for (int i = 0; i < end; i++) { |
Sunny Goyal | 3be633b | 2016-12-08 09:59:25 -0800 | [diff] [blame] | 2121 | final ItemInfo item = items.get(i); |
Winson Chung | 4d279d9 | 2011-07-21 11:46:32 -0700 | [diff] [blame] | 2122 | |
| 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 Goyal | 639e906 | 2015-08-19 19:17:06 -0700 | [diff] [blame] | 2129 | final View view; |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 2130 | switch (item.itemType) { |
| 2131 | case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION: |
| 2132 | case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT: |
Sunny Goyal | 3be633b | 2016-12-08 09:59:25 -0800 | [diff] [blame] | 2133 | case LauncherSettings.Favorites.ITEM_TYPE_DEEP_SHORTCUT: { |
Sunny Goyal | 9589916 | 2019-03-27 16:03:06 -0700 | [diff] [blame] | 2134 | WorkspaceItemInfo info = (WorkspaceItemInfo) item; |
Sunny Goyal | 639e906 | 2015-08-19 19:17:06 -0700 | [diff] [blame] | 2135 | view = createShortcut(info); |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 2136 | break; |
Sunny Goyal | 3be633b | 2016-12-08 09:59:25 -0800 | [diff] [blame] | 2137 | } |
| 2138 | case LauncherSettings.Favorites.ITEM_TYPE_FOLDER: { |
Tracy Zhou | 4d7b244 | 2019-12-09 13:42:57 -0800 | [diff] [blame] | 2139 | view = FolderIcon.inflateFolderAndIcon(R.layout.folder_icon, this, |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 2140 | (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()), |
Sunny Goyal | 1cd01b0 | 2016-11-09 10:43:58 -0800 | [diff] [blame] | 2141 | (FolderInfo) item); |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 2142 | break; |
Sunny Goyal | 3be633b | 2016-12-08 09:59:25 -0800 | [diff] [blame] | 2143 | } |
Sunny Goyal | 952e63d | 2017-08-16 04:59:08 -0700 | [diff] [blame] | 2144 | case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET: |
| 2145 | case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET: { |
Sunny Goyal | a9a1a21 | 2017-08-18 01:03:21 -0700 | [diff] [blame] | 2146 | view = inflateAppWidget((LauncherAppWidgetInfo) item); |
Sunny Goyal | b23980c | 2017-08-17 07:45:25 -0700 | [diff] [blame] | 2147 | if (view == null) { |
| 2148 | continue; |
Sunny Goyal | 3be633b | 2016-12-08 09:59:25 -0800 | [diff] [blame] | 2149 | } |
Sunny Goyal | 3be633b | 2016-12-08 09:59:25 -0800 | [diff] [blame] | 2150 | break; |
| 2151 | } |
Winson Chung | c763c4e | 2013-07-19 13:49:06 -0700 | [diff] [blame] | 2152 | default: |
| 2153 | throw new RuntimeException("Invalid Item Type"); |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 2154 | } |
Sunny Goyal | 639e906 | 2015-08-19 19:17:06 -0700 | [diff] [blame] | 2155 | |
Samuel Fufa | ca37b8a | 2019-08-19 17:04:36 -0700 | [diff] [blame] | 2156 | /* |
Sunny Goyal | da4fe1a | 2016-05-26 16:05:17 -0700 | [diff] [blame] | 2157 | * 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 Cohen | 3eeb41d | 2020-02-14 14:15:13 -0800 | [diff] [blame] | 2166 | if (FeatureFlags.IS_STUDIO_BUILD) { |
Sunny Goyal | da4fe1a | 2016-05-26 16:05:17 -0700 | [diff] [blame] | 2167 | throw (new RuntimeException(desc)); |
| 2168 | } else { |
| 2169 | Log.d(TAG, desc); |
Sunny Goyal | 43bf11d | 2017-02-02 13:52:53 -0800 | [diff] [blame] | 2170 | getModelWriter().deleteItemFromDatabase(item); |
Sunny Goyal | da4fe1a | 2016-05-26 16:05:17 -0700 | [diff] [blame] | 2171 | continue; |
| 2172 | } |
| 2173 | } |
| 2174 | } |
Sunny Goyal | d5462aa | 2016-11-22 16:52:39 +0530 | [diff] [blame] | 2175 | workspace.addInScreenFromBind(view, item); |
Sunny Goyal | 639e906 | 2015-08-19 19:17:06 -0700 | [diff] [blame] | 2176 | 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 Goyal | 3be633b | 2016-12-08 09:59:25 -0800 | [diff] [blame] | 2182 | newItemsScreenId = item.screenId; |
Sunny Goyal | 639e906 | 2015-08-19 19:17:06 -0700 | [diff] [blame] | 2183 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 2184 | } |
Winson Chung | f0c6ae0 | 2012-03-21 16:10:31 -0700 | [diff] [blame] | 2185 | |
Sunny Goyal | f0b6db7 | 2018-08-13 16:10:14 -0700 | [diff] [blame] | 2186 | // Animate to the correct page |
| 2187 | if (animateIcons && newItemsScreenId > -1) { |
| 2188 | AnimatorSet anim = new AnimatorSet(); |
| 2189 | anim.playTogether(bounceAnims); |
Jon Miranda | 64eb8ea | 2018-03-29 11:43:58 -0700 | [diff] [blame] | 2190 | |
Sunny Goyal | efb7e84 | 2018-10-04 15:11:00 -0700 | [diff] [blame] | 2191 | int currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage()); |
Sunny Goyal | f0b6db7 | 2018-08-13 16:10:14 -0700 | [diff] [blame] | 2192 | 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 Wickham | 65ced1b | 2020-03-07 02:14:19 +0000 | [diff] [blame] | 2201 | closeOpenViews(false); |
Sunny Goyal | f0b6db7 | 2018-08-13 16:10:14 -0700 | [diff] [blame] | 2202 | |
| 2203 | mWorkspace.snapToPage(newScreenIndex); |
| 2204 | mWorkspace.postDelayed(startBounceAnimRunnable, |
| 2205 | NEW_APPS_ANIMATION_DELAY); |
Winson Chung | 94d6768 | 2013-09-25 16:29:40 -0700 | [diff] [blame] | 2206 | } |
Sunny Goyal | f0b6db7 | 2018-08-13 16:10:14 -0700 | [diff] [blame] | 2207 | } |
| 2208 | }, NEW_APPS_PAGE_MOVE_DELAY); |
| 2209 | } else { |
| 2210 | mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY); |
Winson Chung | 997a923 | 2013-07-24 15:33:46 -0700 | [diff] [blame] | 2211 | } |
Winson Chung | 64359a5 | 2013-07-08 17:17:08 -0700 | [diff] [blame] | 2212 | } |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 2213 | workspace.requestLayout(); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 2214 | } |
| 2215 | |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 2216 | /** |
| 2217 | * Add the views for a widget to the workspace. |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 2218 | */ |
Sunny Goyal | a9a1a21 | 2017-08-18 01:03:21 -0700 | [diff] [blame] | 2219 | 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 Fufa | ca37b8a | 2019-08-19 17:04:36 -0700 | [diff] [blame] | 2228 | 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 Goyal | 17c72fb | 2019-10-14 14:06:38 -0700 | [diff] [blame] | 2235 | final AppWidgetHostView view; |
Sunny Goyal | 2e1efb4 | 2016-03-03 16:58:55 -0800 | [diff] [blame] | 2236 | if (mIsSafeModeEnabled) { |
Sunny Goyal | 17c72fb | 2019-10-14 14:06:38 -0700 | [diff] [blame] | 2237 | view = new PendingAppWidgetHostView(this, item, mIconCache, true); |
Sunny Goyal | d5462aa | 2016-11-22 16:52:39 +0530 | [diff] [blame] | 2238 | prepareAppWidget(view, item); |
Sunny Goyal | b23980c | 2017-08-17 07:45:25 -0700 | [diff] [blame] | 2239 | return view; |
Sunny Goyal | 2e1efb4 | 2016-03-03 16:58:55 -0800 | [diff] [blame] | 2240 | } |
| 2241 | |
Winson Chung | 5cc62c7 | 2019-10-16 11:32:41 -0700 | [diff] [blame] | 2242 | Object traceToken = TraceHelper.INSTANCE.beginSection("BIND_WIDGET_id=" + item.appWidgetId); |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 2243 | |
Sunny Goyal | 17c72fb | 2019-10-14 14:06:38 -0700 | [diff] [blame] | 2244 | try { |
| 2245 | final LauncherAppWidgetProviderInfo appWidgetInfo; |
Adam Cohen | 5940042 | 2014-03-05 18:07:04 -0800 | [diff] [blame] | 2246 | |
Sunny Goyal | 17c72fb | 2019-10-14 14:06:38 -0700 | [diff] [blame] | 2247 | 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 Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 2255 | } |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 2256 | |
Sunny Goyal | 17c72fb | 2019-10-14 14:06:38 -0700 | [diff] [blame] | 2257 | // 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 Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 2267 | |
Sunny Goyal | 17c72fb | 2019-10-14 14:06:38 -0700 | [diff] [blame] | 2268 | // 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 Goyal | 86df138 | 2016-08-10 15:03:22 -0700 | [diff] [blame] | 2274 | |
Sunny Goyal | 17c72fb | 2019-10-14 14:06:38 -0700 | [diff] [blame] | 2275 | // 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 Goyal | 86df138 | 2016-08-10 15:03:22 -0700 | [diff] [blame] | 2293 | } |
Sunny Goyal | 17c72fb | 2019-10-14 14:06:38 -0700 | [diff] [blame] | 2294 | 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 Goyal | 86df138 | 2016-08-10 15:03:22 -0700 | [diff] [blame] | 2313 | } |
Sunny Goyal | 17c72fb | 2019-10-14 14:06:38 -0700 | [diff] [blame] | 2314 | } 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 Goyal | 43bf11d | 2017-02-02 13:52:53 -0800 | [diff] [blame] | 2319 | getModelWriter().updateItemInDatabase(item); |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 2320 | } |
Samuel Fufa | 9151c01 | 2020-02-24 17:06:28 -0800 | [diff] [blame] | 2321 | 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 Goyal | 56c7360 | 2015-09-25 12:55:01 -0700 | [diff] [blame] | 2328 | } |
| 2329 | |
Sunny Goyal | 17c72fb | 2019-10-14 14:06:38 -0700 | [diff] [blame] | 2330 | if (item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) { |
| 2331 | // Verify that we own the widget |
| 2332 | if (appWidgetInfo == null) { |
Pinyao Ting | 0d97f8d | 2020-12-04 15:12:26 -0800 | [diff] [blame] | 2333 | FileLog.e(TAG, "Removing invalid widget: id=" + item.appWidgetId); |
Sunny Goyal | 17c72fb | 2019-10-14 14:06:38 -0700 | [diff] [blame] | 2334 | getModelWriter().deleteWidgetInfo(item, getAppWidgetHost()); |
| 2335 | return null; |
| 2336 | } |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 2337 | |
Sunny Goyal | 17c72fb | 2019-10-14 14:06:38 -0700 | [diff] [blame] | 2338 | item.minSpanX = appWidgetInfo.minSpanX; |
| 2339 | item.minSpanY = appWidgetInfo.minSpanY; |
| 2340 | view = mAppWidgetHost.createView(this, item.appWidgetId, appWidgetInfo); |
Samuel Fufa | 9151c01 | 2020-02-24 17:06:28 -0800 | [diff] [blame] | 2341 | } 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 Goyal | 17c72fb | 2019-10-14 14:06:38 -0700 | [diff] [blame] | 2346 | } else { |
| 2347 | view = new PendingAppWidgetHostView(this, item, mIconCache, false); |
| 2348 | } |
| 2349 | prepareAppWidget(view, item); |
| 2350 | } finally { |
Winson Chung | 5cc62c7 | 2019-10-16 11:32:41 -0700 | [diff] [blame] | 2351 | TraceHelper.INSTANCE.endSection(traceToken); |
Sunny Goyal | 17c72fb | 2019-10-14 14:06:38 -0700 | [diff] [blame] | 2352 | } |
| 2353 | |
Sunny Goyal | b23980c | 2017-08-17 07:45:25 -0700 | [diff] [blame] | 2354 | return view; |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 2355 | } |
| 2356 | |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 2357 | /** |
| 2358 | * Restores a pending widget. |
| 2359 | * |
| 2360 | * @param appWidgetId The app widget id |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 2361 | */ |
Sunny Goyal | d478c83 | 2016-04-01 12:04:16 -0700 | [diff] [blame] | 2362 | private LauncherAppWidgetInfo completeRestoreAppWidget(int appWidgetId, int finalRestoreFlag) { |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 2363 | 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 Goyal | d478c83 | 2016-04-01 12:04:16 -0700 | [diff] [blame] | 2366 | return null; |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 2367 | } |
| 2368 | |
Sunny Goyal | 0fc1be1 | 2014-08-11 17:05:23 -0700 | [diff] [blame] | 2369 | LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) view.getTag(); |
Sunny Goyal | d478c83 | 2016-04-01 12:04:16 -0700 | [diff] [blame] | 2370 | info.restoreStatus = finalRestoreFlag; |
Jon Miranda | 2b823f4 | 2017-05-02 18:36:18 -0700 | [diff] [blame] | 2371 | if (info.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) { |
| 2372 | info.pendingItemInfo = null; |
| 2373 | } |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 2374 | |
Sunny Goyal | ba47faa | 2017-10-04 16:50:57 -0700 | [diff] [blame] | 2375 | if (((PendingAppWidgetHostView) view).isReinflateIfNeeded()) { |
Sunny Goyal | 29947f0 | 2017-12-18 13:49:44 -0800 | [diff] [blame] | 2376 | view.reInflate(); |
Sunny Goyal | ba47faa | 2017-10-04 16:50:57 -0700 | [diff] [blame] | 2377 | } |
| 2378 | |
Sunny Goyal | 43bf11d | 2017-02-02 13:52:53 -0800 | [diff] [blame] | 2379 | getModelWriter().updateItemInDatabase(info); |
Sunny Goyal | d478c83 | 2016-04-01 12:04:16 -0700 | [diff] [blame] | 2380 | return info; |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 2381 | } |
| 2382 | |
Adam Cohen | 1462de3 | 2012-07-24 22:34:36 -0700 | [diff] [blame] | 2383 | public void onPageBoundSynchronously(int page) { |
Sunny Goyal | f4aceab | 2017-12-06 16:16:31 -0800 | [diff] [blame] | 2384 | mSynchronouslyBoundPage = page; |
Sunny Goyal | a7a5bf3 | 2020-01-05 15:35:29 +0530 | [diff] [blame] | 2385 | mWorkspace.setCurrentPage(page); |
| 2386 | mPageToBindSynchronously = PagedView.INVALID_PAGE; |
Adam Cohen | 1462de3 | 2012-07-24 22:34:36 -0700 | [diff] [blame] | 2387 | } |
| 2388 | |
Sunny Goyal | 527c7d3 | 2015-08-28 15:19:36 -0700 | [diff] [blame] | 2389 | @Override |
| 2390 | public void executeOnNextDraw(ViewOnDrawExecutor executor) { |
Sunny Goyal | 6b6d0a3 | 2019-08-05 17:19:32 -0700 | [diff] [blame] | 2391 | clearPendingBinds(); |
Sunny Goyal | 527c7d3 | 2015-08-28 15:19:36 -0700 | [diff] [blame] | 2392 | mPendingExecutor = executor; |
Sunny Goyal | 60180b0 | 2018-02-07 12:56:30 -0800 | [diff] [blame] | 2393 | if (!isInState(ALL_APPS)) { |
vadimt | d4c90e1 | 2019-06-04 13:59:43 -0700 | [diff] [blame] | 2394 | mAppsView.getAppsStore().enableDeferUpdates(AllAppsStore.DEFER_UPDATES_NEXT_DRAW); |
| 2395 | mPendingExecutor.execute(() -> mAppsView.getAppsStore().disableDeferUpdates( |
| 2396 | AllAppsStore.DEFER_UPDATES_NEXT_DRAW)); |
Sunny Goyal | 60180b0 | 2018-02-07 12:56:30 -0800 | [diff] [blame] | 2397 | } |
| 2398 | |
Sunny Goyal | 527c7d3 | 2015-08-28 15:19:36 -0700 | [diff] [blame] | 2399 | executor.attachTo(this); |
| 2400 | } |
| 2401 | |
| 2402 | public void clearPendingExecutor(ViewOnDrawExecutor executor) { |
| 2403 | if (mPendingExecutor == executor) { |
| 2404 | mPendingExecutor = null; |
| 2405 | } |
| 2406 | } |
| 2407 | |
Sunny Goyal | b5b9ad6 | 2016-04-02 11:23:39 -0700 | [diff] [blame] | 2408 | @Override |
| 2409 | public void finishFirstPageBind(final ViewOnDrawExecutor executor) { |
Sunny Goyal | 6001ea2 | 2018-05-10 16:31:00 -0700 | [diff] [blame] | 2410 | 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 Goyal | 29947f0 | 2017-12-18 13:49:44 -0800 | [diff] [blame] | 2422 | } else if (executor != null) { |
| 2423 | executor.onLoadAnimationCompleted(); |
Sunny Goyal | b5b9ad6 | 2016-04-02 11:23:39 -0700 | [diff] [blame] | 2424 | } |
| 2425 | } |
| 2426 | |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 2427 | /** |
| 2428 | * Callback saying that there aren't any more items to bind. |
| 2429 | * |
| 2430 | * Implementation of the method from LauncherModel.Callbacks. |
| 2431 | */ |
Tony | f80e893 | 2018-12-21 11:58:04 -0800 | [diff] [blame] | 2432 | public void finishBindingItems(int pageBoundFirst) { |
Winson Chung | 5cc62c7 | 2019-10-16 11:32:41 -0700 | [diff] [blame] | 2433 | Object traceToken = TraceHelper.INSTANCE.beginSection("finishBindingItems"); |
Adam Cohen | 1462de3 | 2012-07-24 22:34:36 -0700 | [diff] [blame] | 2434 | mWorkspace.restoreInstanceStateForRemainingPages(); |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 2435 | |
Anjali Koppal | ff7ceff | 2014-05-01 18:26:37 -0700 | [diff] [blame] | 2436 | setWorkspaceLoading(false); |
Adam Cohen | db364c3 | 2014-05-20 14:23:40 -0700 | [diff] [blame] | 2437 | |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 2438 | if (mPendingActivityResult != null) { |
| 2439 | handleActivityResult(mPendingActivityResult.requestCode, |
| 2440 | mPendingActivityResult.resultCode, mPendingActivityResult.data); |
| 2441 | mPendingActivityResult = null; |
Adam Cohen | db364c3 | 2014-05-20 14:23:40 -0700 | [diff] [blame] | 2442 | } |
| 2443 | |
Sunny Goyal | 60e68c9 | 2020-08-12 13:59:27 -0700 | [diff] [blame] | 2444 | ItemInstallQueue.INSTANCE.get(this) |
| 2445 | .resumeModelPush(FLAG_LOADER_RUNNING); |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 2446 | |
Tony | f80e893 | 2018-12-21 11:58:04 -0800 | [diff] [blame] | 2447 | // When undoing the removal of the last item on a page, return to that page. |
Tony Wickham | 03f2701 | 2019-04-25 14:22:54 -0700 | [diff] [blame] | 2448 | // 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 Goyal | a7a5bf3 | 2020-01-05 15:35:29 +0530 | [diff] [blame] | 2451 | mPageToBindSynchronously = PagedView.INVALID_PAGE; |
Tony Wickham | 6a71a5b | 2018-08-21 11:40:23 -0700 | [diff] [blame] | 2452 | |
Sunny Goyal | ac6f69f | 2019-08-16 11:59:55 -0700 | [diff] [blame] | 2453 | // 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 Chung | 5cc62c7 | 2019-10-16 11:32:41 -0700 | [diff] [blame] | 2458 | TraceHelper.INSTANCE.endSection(traceToken); |
Winson Chung | f0c6ae0 | 2012-03-21 16:10:31 -0700 | [diff] [blame] | 2459 | } |
| 2460 | |
Winson Chung | a241375 | 2012-04-03 14:22:34 -0700 | [diff] [blame] | 2461 | private boolean canRunNewAppsAnimation() { |
Sunny Goyal | 9b18010 | 2020-03-11 10:02:29 -0700 | [diff] [blame] | 2462 | if (mDragController.isDragging()) { |
| 2463 | return false; |
| 2464 | } else { |
Riddle Hsu | 979da64 | 2020-09-22 21:52:40 +0800 | [diff] [blame] | 2465 | return (SystemClock.uptimeMillis() - mLastTouchUpTime) |
Sunny Goyal | 9b18010 | 2020-03-11 10:02:29 -0700 | [diff] [blame] | 2466 | > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000); |
| 2467 | } |
Winson Chung | a241375 | 2012-04-03 14:22:34 -0700 | [diff] [blame] | 2468 | } |
| 2469 | |
Winson Chung | c916834 | 2013-06-26 14:54:55 -0700 | [diff] [blame] | 2470 | private ValueAnimator createNewAppBounceAnimation(View v, int i) { |
Sunny Goyal | f0b6db7 | 2018-08-13 16:10:14 -0700 | [diff] [blame] | 2471 | ValueAnimator bounceAnim = new PropertyListBuilder().alpha(1).scale(1).build(v) |
Sunny Goyal | 60e68c9 | 2020-08-12 13:59:27 -0700 | [diff] [blame] | 2472 | .setDuration(ItemInstallQueue.NEW_SHORTCUT_BOUNCE_DURATION); |
| 2473 | bounceAnim.setStartDelay(i * ItemInstallQueue.NEW_SHORTCUT_STAGGER_DELAY); |
Sunny Goyal | 5a1f53b | 2015-05-27 10:24:24 -0700 | [diff] [blame] | 2474 | bounceAnim.setInterpolator(new OvershootInterpolator(BOUNCE_ANIMATION_TENSION)); |
Winson Chung | c916834 | 2013-06-26 14:54:55 -0700 | [diff] [blame] | 2475 | return bounceAnim; |
| 2476 | } |
| 2477 | |
Pinyao Ting | c907427 | 2019-11-11 11:51:44 -0800 | [diff] [blame] | 2478 | private void announceForAccessibility(@StringRes int stringResId) { |
| 2479 | getDragLayer().announceForAccessibility(getString(stringResId)); |
| 2480 | } |
| 2481 | |
Amith Yamasani | 6d7fe50 | 2010-11-16 09:05:07 -0800 | [diff] [blame] | 2482 | /** |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 2483 | * Add the icons for all apps. |
| 2484 | * |
| 2485 | * Implementation of the method from LauncherModel.Callbacks. |
| 2486 | */ |
Sunny Goyal | 28daf4a | 2020-06-08 17:06:09 -0700 | [diff] [blame] | 2487 | @Override |
| 2488 | public void bindAllApplications(AppInfo[] apps, int flags) { |
| 2489 | mAppsView.getAppsStore().setApps(apps, flags); |
Sunny Goyal | 1818fb7 | 2020-11-09 14:32:48 -0800 | [diff] [blame] | 2490 | PopupContainerWithArrow.dismissInvalidPopup(this); |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 2491 | } |
| 2492 | |
| 2493 | /** |
Zak Cohen | 658c67a | 2018-10-19 14:21:05 -0700 | [diff] [blame] | 2494 | * Copies LauncherModel's map of activities to shortcut counts to Launcher's. This is necessary |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 2495 | * because LauncherModel's map is updated in the background, while Launcher runs on the UI. |
| 2496 | */ |
| 2497 | @Override |
Zak Cohen | 658c67a | 2018-10-19 14:21:05 -0700 | [diff] [blame] | 2498 | public void bindDeepShortcutMap(HashMap<ComponentKey, Integer> deepShortcutMapCopy) { |
Tony Wickham | 010d255 | 2017-01-20 08:15:28 -0800 | [diff] [blame] | 2499 | mPopupDataProvider.setDeepShortcutMap(deepShortcutMapCopy); |
Tony Wickham | 1bce7fd | 2016-04-28 17:39:03 -0700 | [diff] [blame] | 2500 | } |
| 2501 | |
Sunny Goyal | 4390ace | 2014-10-13 11:33:11 -0700 | [diff] [blame] | 2502 | @Override |
Schneider Victor-tulias | 6a5f431 | 2021-01-12 19:30:02 +0000 | [diff] [blame] | 2503 | public void bindIncrementalDownloadProgressUpdated(AppInfo app) { |
| 2504 | mAppsView.getAppsStore().updateProgressBar(app); |
Mario Bertschler | 08ffaae | 2017-03-20 11:30:27 -0700 | [diff] [blame] | 2505 | } |
| 2506 | |
| 2507 | @Override |
Sunny Goyal | 29947f0 | 2017-12-18 13:49:44 -0800 | [diff] [blame] | 2508 | public void bindWidgetsRestored(ArrayList<LauncherAppWidgetInfo> widgets) { |
Sunny Goyal | 4390ace | 2014-10-13 11:33:11 -0700 | [diff] [blame] | 2509 | mWorkspace.widgetsRestored(widgets); |
| 2510 | } |
| 2511 | |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 2512 | /** |
Sunny Goyal | b50cc8c | 2014-10-06 16:23:56 -0700 | [diff] [blame] | 2513 | * Some shortcuts were updated in the background. |
Sunny Goyal | b50cc8c | 2014-10-06 16:23:56 -0700 | [diff] [blame] | 2514 | * Implementation of the method from LauncherModel.Callbacks. |
Sunny Goyal | d3b87ef | 2016-07-28 12:11:54 -0700 | [diff] [blame] | 2515 | * |
| 2516 | * @param updated list of shortcuts which have changed. |
Sunny Goyal | b50cc8c | 2014-10-06 16:23:56 -0700 | [diff] [blame] | 2517 | */ |
Sunny Goyal | 4390ace | 2014-10-13 11:33:11 -0700 | [diff] [blame] | 2518 | @Override |
Sunny Goyal | 28f5075 | 2020-07-21 14:15:13 -0700 | [diff] [blame] | 2519 | public void bindWorkspaceItemsChanged(List<WorkspaceItemInfo> updated) { |
Sunny Goyal | 4390ace | 2014-10-13 11:33:11 -0700 | [diff] [blame] | 2520 | if (!updated.isEmpty()) { |
| 2521 | mWorkspace.updateShortcuts(updated); |
Sunny Goyal | 1818fb7 | 2020-11-09 14:32:48 -0800 | [diff] [blame] | 2522 | PopupContainerWithArrow.dismissInvalidPopup(this); |
Sunny Goyal | 4390ace | 2014-10-13 11:33:11 -0700 | [diff] [blame] | 2523 | } |
Sunny Goyal | b50cc8c | 2014-10-06 16:23:56 -0700 | [diff] [blame] | 2524 | } |
| 2525 | |
| 2526 | /** |
Chris Wren | aeff7ea | 2014-02-14 16:59:24 -0500 | [diff] [blame] | 2527 | * Update the state of a package, typically related to install state. |
| 2528 | * |
| 2529 | * Implementation of the method from LauncherModel.Callbacks. |
| 2530 | */ |
Sunny Goyal | e755d46 | 2014-07-22 13:48:29 -0700 | [diff] [blame] | 2531 | @Override |
Sunny Goyal | 29947f0 | 2017-12-18 13:49:44 -0800 | [diff] [blame] | 2532 | public void bindRestoreItemsChange(HashSet<ItemInfo> updates) { |
Sunny Goyal | 756adbc | 2015-04-16 15:20:51 -0700 | [diff] [blame] | 2533 | mWorkspace.updateRestoreItems(updates); |
Sunny Goyal | a22666f | 2014-09-18 13:25:15 -0700 | [diff] [blame] | 2534 | } |
| 2535 | |
| 2536 | /** |
Sunny Goyal | 3bbbabc | 2016-03-15 09:16:30 -0700 | [diff] [blame] | 2537 | * A package was uninstalled/updated. We take both the super set of packageNames |
Winson Chung | 83892cc | 2013-05-01 16:53:33 -0700 | [diff] [blame] | 2538 | * in addition to specific applications to remove, the reason being that |
| 2539 | * this can be called when a package is updated as well. In that scenario, |
Sunny Goyal | 3bbbabc | 2016-03-15 09:16:30 -0700 | [diff] [blame] | 2540 | * we only remove specific components from the workspace and hotseat, where as |
Winson Chung | 83892cc | 2013-05-01 16:53:33 -0700 | [diff] [blame] | 2541 | * package-removal should clear all items by package name. |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 2542 | */ |
Sunny Goyal | 1a745e8 | 2014-10-02 15:58:31 -0700 | [diff] [blame] | 2543 | @Override |
Sunny Goyal | 6e13dd3 | 2017-08-17 03:01:19 -0700 | [diff] [blame] | 2544 | public void bindWorkspaceComponentsRemoved(final ItemInfoMatcher matcher) { |
Sunny Goyal | 6e13dd3 | 2017-08-17 03:01:19 -0700 | [diff] [blame] | 2545 | mWorkspace.removeItemsByMatcher(matcher); |
| 2546 | mDragController.onAppsRemoved(matcher); |
Sunny Goyal | 1818fb7 | 2020-11-09 14:32:48 -0800 | [diff] [blame] | 2547 | PopupContainerWithArrow.dismissInvalidPopup(this); |
Sunny Goyal | 3bbbabc | 2016-03-15 09:16:30 -0700 | [diff] [blame] | 2548 | } |
Sunny Goyal | 4390ace | 2014-10-13 11:33:11 -0700 | [diff] [blame] | 2549 | |
Sunny Goyal | 3bbbabc | 2016-03-15 09:16:30 -0700 | [diff] [blame] | 2550 | @Override |
Steven Ng | 2f5648a | 2021-02-08 17:18:25 +0000 | [diff] [blame] | 2551 | public void bindAllWidgets(final List<WidgetsListBaseEntry> allWidgets) { |
Sunny Goyal | f1fbc3f | 2017-10-10 15:21:15 -0700 | [diff] [blame] | 2552 | mPopupDataProvider.setAllWidgets(allWidgets); |
Tony Wickham | 26b1746 | 2017-03-20 17:12:24 -0700 | [diff] [blame] | 2553 | } |
| 2554 | |
Tony Wickham | 86222d2 | 2017-03-29 15:30:43 -0700 | [diff] [blame] | 2555 | /** |
| 2556 | * @param packageUser if null, refreshes all widgets and shortcuts, otherwise only |
| 2557 | * refreshes the widgets and shortcuts associated with the given package/user |
| 2558 | */ |
| 2559 | public void refreshAndBindWidgetsForPackageUser(@Nullable PackageUserKey packageUser) { |
Sunny Goyal | c6e9769 | 2017-06-02 13:46:55 -0700 | [diff] [blame] | 2560 | mModel.refreshAndBindWidgetsAndShortcuts(packageUser); |
Sunny Goyal | 2e1efb4 | 2016-03-03 16:58:55 -0800 | [diff] [blame] | 2561 | } |
| 2562 | |
Winson Chung | 80baf5a | 2010-08-09 16:03:15 -0700 | [diff] [blame] | 2563 | /** |
Hyunyoung Song | 3c7d9cb | 2017-01-30 15:11:27 -0800 | [diff] [blame] | 2564 | * $ adb shell dumpsys activity com.android.launcher3.Launcher [--all] |
Joe Onorato | be38609 | 2009-11-17 17:32:16 -0800 | [diff] [blame] | 2565 | */ |
Adam Cohen | 16d7ffc | 2011-10-05 17:49:14 -0700 | [diff] [blame] | 2566 | @Override |
| 2567 | public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) { |
| 2568 | super.dump(prefix, fd, writer, args); |
Sunny Goyal | a136545 | 2015-10-01 15:46:24 -0700 | [diff] [blame] | 2569 | |
Hyunyoung Song | 3c7d9cb | 2017-01-30 15:11:27 -0800 | [diff] [blame] | 2570 | if (args.length > 0 && TextUtils.equals(args[0], "--all")) { |
| 2571 | writer.println(prefix + "Workspace Items"); |
Sunny Goyal | 7ce471b | 2017-08-02 03:37:39 -0700 | [diff] [blame] | 2572 | for (int i = 0; i < mWorkspace.getPageCount(); i++) { |
Hyunyoung Song | 3c7d9cb | 2017-01-30 15:11:27 -0800 | [diff] [blame] | 2573 | writer.println(prefix + " Homescreen " + i); |
| 2574 | |
| 2575 | ViewGroup layout = ((CellLayout) mWorkspace.getPageAt(i)).getShortcutsAndWidgets(); |
| 2576 | for (int j = 0; j < layout.getChildCount(); j++) { |
| 2577 | Object tag = layout.getChildAt(j).getTag(); |
| 2578 | if (tag != null) { |
| 2579 | writer.println(prefix + " " + tag.toString()); |
| 2580 | } |
| 2581 | } |
| 2582 | } |
| 2583 | |
| 2584 | writer.println(prefix + " Hotseat"); |
Sunny Goyal | 876e462 | 2018-11-02 13:50:40 -0700 | [diff] [blame] | 2585 | ViewGroup layout = mHotseat.getShortcutsAndWidgets(); |
Sunny Goyal | a136545 | 2015-10-01 15:46:24 -0700 | [diff] [blame] | 2586 | for (int j = 0; j < layout.getChildCount(); j++) { |
| 2587 | Object tag = layout.getChildAt(j).getTag(); |
| 2588 | if (tag != null) { |
| 2589 | writer.println(prefix + " " + tag.toString()); |
| 2590 | } |
Adam Cohen | 4caf298 | 2013-08-20 18:54:31 -0700 | [diff] [blame] | 2591 | } |
Sunny Goyal | a136545 | 2015-10-01 15:46:24 -0700 | [diff] [blame] | 2592 | } |
| 2593 | |
Hyunyoung Song | 3c7d9cb | 2017-01-30 15:11:27 -0800 | [diff] [blame] | 2594 | writer.println(prefix + "Misc:"); |
Winson Chung | ef52876 | 2019-09-06 12:05:52 -0700 | [diff] [blame] | 2595 | dumpMisc(prefix + "\t", writer); |
| 2596 | writer.println(prefix + "\tmWorkspaceLoading=" + mWorkspaceLoading); |
| 2597 | writer.println(prefix + "\tmPendingRequestArgs=" + mPendingRequestArgs |
| 2598 | + " mPendingActivityResult=" + mPendingActivityResult); |
| 2599 | writer.println(prefix + "\tmRotationHelper: " + mRotationHelper); |
| 2600 | writer.println(prefix + "\tmAppWidgetHost.isListening: " + mAppWidgetHost.isListening()); |
| 2601 | |
Tony Wickham | 646e448 | 2020-04-06 17:25:53 -0700 | [diff] [blame] | 2602 | // Extra logging for general debugging |
Hyunyoung Song | a310a80 | 2019-04-25 13:57:16 -0700 | [diff] [blame] | 2603 | mDragLayer.dump(prefix, writer); |
| 2604 | mStateManager.dump(prefix, writer); |
Tony Wickham | 646e448 | 2020-04-06 17:25:53 -0700 | [diff] [blame] | 2605 | mPopupDataProvider.dump(prefix, writer); |
Jon Miranda | 58561d4 | 2021-03-17 10:51:54 -0400 | [diff] [blame] | 2606 | mDeviceProfile.dump(prefix, writer); |
Sunny Goyal | 2bba190 | 2018-02-27 12:20:50 -0800 | [diff] [blame] | 2607 | |
| 2608 | try { |
| 2609 | FileLog.flushAll(writer); |
| 2610 | } catch (Exception e) { |
| 2611 | // Ignore |
| 2612 | } |
Hyunyoung Song | 3c7d9cb | 2017-01-30 15:11:27 -0800 | [diff] [blame] | 2613 | |
| 2614 | mModel.dumpState(prefix, fd, writer, args); |
Sunny Goyal | a136545 | 2015-10-01 15:46:24 -0700 | [diff] [blame] | 2615 | |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 2616 | if (mLauncherCallbacks != null) { |
| 2617 | mLauncherCallbacks.dump(prefix, fd, writer, args); |
| 2618 | } |
Sunny Goyal | b1d7de2 | 2019-09-06 10:36:54 -0700 | [diff] [blame] | 2619 | mOverlayManager.dump(prefix, writer); |
Adam Cohen | 16d7ffc | 2011-10-05 17:49:14 -0700 | [diff] [blame] | 2620 | } |
Adam Cohen | 487f7dd | 2012-06-28 18:12:10 -0700 | [diff] [blame] | 2621 | |
Sunny Goyal | 66b2457 | 2016-09-21 15:57:55 -0700 | [diff] [blame] | 2622 | @Override |
Sunny Goyal | 66b2457 | 2016-09-21 15:57:55 -0700 | [diff] [blame] | 2623 | public void onProvideKeyboardShortcuts( |
| 2624 | List<KeyboardShortcutGroup> data, Menu menu, int deviceId) { |
| 2625 | |
| 2626 | ArrayList<KeyboardShortcutInfo> shortcutInfos = new ArrayList<>(); |
Sunny Goyal | 3e3f44c | 2017-10-23 17:14:52 -0700 | [diff] [blame] | 2627 | if (isInState(NORMAL)) { |
Sunny Goyal | 66b2457 | 2016-09-21 15:57:55 -0700 | [diff] [blame] | 2628 | shortcutInfos.add(new KeyboardShortcutInfo(getString(R.string.all_apps_button_label), |
| 2629 | KeyEvent.KEYCODE_A, KeyEvent.META_CTRL_ON)); |
Vadim Tryshev | 74c261c | 2018-06-12 13:44:43 -0700 | [diff] [blame] | 2630 | shortcutInfos.add(new KeyboardShortcutInfo(getString(R.string.widget_button_text), |
| 2631 | KeyEvent.KEYCODE_W, KeyEvent.META_CTRL_ON)); |
Sunny Goyal | 66b2457 | 2016-09-21 15:57:55 -0700 | [diff] [blame] | 2632 | } |
Sunny Goyal | 384b578 | 2021-02-09 22:50:02 -0800 | [diff] [blame] | 2633 | getSupportedActions(this, getCurrentFocus()).forEach(la -> |
Vadim Tryshev | 3455f8d | 2018-05-11 20:02:20 -0700 | [diff] [blame] | 2634 | shortcutInfos.add(new KeyboardShortcutInfo( |
Sunny Goyal | 384b578 | 2021-02-09 22:50:02 -0800 | [diff] [blame] | 2635 | la.accessibilityAction.getLabel(), la.keyCode, KeyEvent.META_CTRL_ON))); |
Sunny Goyal | 66b2457 | 2016-09-21 15:57:55 -0700 | [diff] [blame] | 2636 | if (!shortcutInfos.isEmpty()) { |
| 2637 | data.add(new KeyboardShortcutGroup(getString(R.string.home_screen), shortcutInfos)); |
| 2638 | } |
| 2639 | |
| 2640 | super.onProvideKeyboardShortcuts(data, menu, deviceId); |
| 2641 | } |
| 2642 | |
| 2643 | @Override |
| 2644 | public boolean onKeyShortcut(int keyCode, KeyEvent event) { |
| 2645 | if (event.hasModifiers(KeyEvent.META_CTRL_ON)) { |
| 2646 | switch (keyCode) { |
| 2647 | case KeyEvent.KEYCODE_A: |
Sunny Goyal | 3e3f44c | 2017-10-23 17:14:52 -0700 | [diff] [blame] | 2648 | if (isInState(NORMAL)) { |
| 2649 | getStateManager().goToState(ALL_APPS); |
Sunny Goyal | 66b2457 | 2016-09-21 15:57:55 -0700 | [diff] [blame] | 2650 | return true; |
| 2651 | } |
| 2652 | break; |
Vadim Tryshev | 74c261c | 2018-06-12 13:44:43 -0700 | [diff] [blame] | 2653 | case KeyEvent.KEYCODE_W: |
| 2654 | if (isInState(NORMAL)) { |
| 2655 | OptionsPopupView.openWidgets(this); |
| 2656 | return true; |
| 2657 | } |
| 2658 | break; |
Sunny Goyal | 384b578 | 2021-02-09 22:50:02 -0800 | [diff] [blame] | 2659 | default: |
| 2660 | for (LauncherAction la : getSupportedActions(this, getCurrentFocus())) { |
| 2661 | if (la.keyCode == keyCode) { |
| 2662 | return la.invokeFromKeyboard(getCurrentFocus()); |
| 2663 | } |
| 2664 | } |
Sunny Goyal | 66b2457 | 2016-09-21 15:57:55 -0700 | [diff] [blame] | 2665 | } |
| 2666 | } |
| 2667 | return super.onKeyShortcut(keyCode, event); |
| 2668 | } |
| 2669 | |
Vadim Tryshev | 646a0dd | 2018-02-05 16:27:50 -0800 | [diff] [blame] | 2670 | @Override |
| 2671 | public boolean onKeyUp(int keyCode, KeyEvent event) { |
| 2672 | if (keyCode == KeyEvent.KEYCODE_MENU) { |
| 2673 | // KEYCODE_MENU is sent by some tests, for example |
| 2674 | // LauncherJankTests#testWidgetsContainerFling. Don't just remove its handling. |
| 2675 | if (!mDragController.isDragging() && !mWorkspace.isSwitchingState() && |
| 2676 | isInState(NORMAL)) { |
| 2677 | // Close any open floating views. |
Andy Wickham | 65ced1b | 2020-03-07 02:14:19 +0000 | [diff] [blame] | 2678 | closeOpenViews(); |
Vadim Tryshev | 646a0dd | 2018-02-05 16:27:50 -0800 | [diff] [blame] | 2679 | |
| 2680 | // Setting the touch point to (-1, -1) will show the options popup in the center of |
| 2681 | // the screen. |
vadimt | bc5d7e6 | 2019-12-09 13:53:05 -0800 | [diff] [blame] | 2682 | if (Utilities.IS_RUNNING_IN_TEST_HARNESS) { |
| 2683 | Log.d(TestProtocol.PERMANENT_DIAG_TAG, "Opening options popup on key up"); |
| 2684 | } |
Sunny Goyal | 2fd7a8b | 2018-03-30 17:10:13 -0700 | [diff] [blame] | 2685 | OptionsPopupView.showDefaultOptions(this, -1, -1); |
Vadim Tryshev | 646a0dd | 2018-02-05 16:27:50 -0800 | [diff] [blame] | 2686 | } |
| 2687 | return true; |
| 2688 | } |
| 2689 | return super.onKeyUp(keyCode, event); |
| 2690 | } |
| 2691 | |
Sunny Goyal | b5181c8 | 2021-03-10 07:39:12 +0000 | [diff] [blame] | 2692 | @Override |
| 2693 | protected void collectStateHandlers(List<StateHandler> out) { |
| 2694 | out.add(getAllAppsController()); |
| 2695 | out.add(getWorkspace()); |
Andrew Sapperstein | abef55a | 2016-06-19 12:49:00 -0700 | [diff] [blame] | 2696 | } |
| 2697 | |
Sunny Goyal | 210e174 | 2019-10-17 12:05:38 -0700 | [diff] [blame] | 2698 | public TouchController[] createTouchControllers() { |
| 2699 | return new TouchController[] {getDragController(), new AllAppsSwipeController(this)}; |
| 2700 | } |
| 2701 | |
Sunny Goyal | 210e174 | 2019-10-17 12:05:38 -0700 | [diff] [blame] | 2702 | public void useFadeOutAnimationForLauncherStart(CancellationSignal signal) { } |
| 2703 | |
| 2704 | public void onDragLayerHierarchyChanged() { } |
| 2705 | |
Vinit Nayak | f9b585b | 2019-07-10 14:25:32 -0700 | [diff] [blame] | 2706 | @Override |
| 2707 | public void returnToHomescreen() { |
| 2708 | super.returnToHomescreen(); |
| 2709 | getStateManager().goToState(LauncherState.NORMAL); |
| 2710 | } |
| 2711 | |
Andy Wickham | 65ced1b | 2020-03-07 02:14:19 +0000 | [diff] [blame] | 2712 | private void closeOpenViews() { |
| 2713 | closeOpenViews(true); |
| 2714 | } |
| 2715 | |
| 2716 | protected void closeOpenViews(boolean animate) { |
| 2717 | AbstractFloatingView.closeAllOpenViews(this, animate); |
| 2718 | } |
| 2719 | |
Sunny Goyal | 3a1eadd | 2019-10-23 17:44:27 -0700 | [diff] [blame] | 2720 | public Stream<SystemShortcut.Factory> getSupportedShortcuts() { |
Samuel Fufa | 5cf3e86 | 2020-02-03 20:22:54 -0800 | [diff] [blame] | 2721 | return Stream.of(APP_INFO, WIDGETS, INSTALL); |
Sunny Goyal | 3a1eadd | 2019-10-23 17:44:27 -0700 | [diff] [blame] | 2722 | } |
| 2723 | |
Sunny Goyal | 384b578 | 2021-02-09 22:50:02 -0800 | [diff] [blame] | 2724 | protected LauncherAccessibilityDelegate createAccessibilityDelegate() { |
| 2725 | return new LauncherAccessibilityDelegate(this); |
| 2726 | } |
Sunny Goyal | f2393f1 | 2020-04-01 20:13:12 -0700 | [diff] [blame] | 2727 | |
| 2728 | /** |
| 2729 | * @see LauncherState#getOverviewScaleAndOffset(Launcher) |
| 2730 | */ |
| 2731 | public float[] getNormalOverviewScaleAndOffset() { |
| 2732 | return new float[] {NO_SCALE, NO_OFFSET}; |
| 2733 | } |
| 2734 | |
Tony Wickham | 02e9f1e | 2021-03-22 17:32:50 -0700 | [diff] [blame] | 2735 | /** |
| 2736 | * @see LauncherState#getTaskbarScale(Launcher) |
| 2737 | */ |
| 2738 | public float getNormalTaskbarScale() { |
| 2739 | return 1f; |
| 2740 | } |
| 2741 | |
Sunny Goyal | 210e174 | 2019-10-17 12:05:38 -0700 | [diff] [blame] | 2742 | public static Launcher getLauncher(Context context) { |
Winson Chung | 8687bc2 | 2020-02-27 23:34:24 -0800 | [diff] [blame] | 2743 | return fromContext(context); |
Sunny Goyal | 210e174 | 2019-10-17 12:05:38 -0700 | [diff] [blame] | 2744 | } |
| 2745 | |
Sunny Goyal | 3dce5f3 | 2017-10-05 11:40:05 -0700 | [diff] [blame] | 2746 | /** |
Sunny Goyal | ab770a1 | 2018-11-14 15:17:26 -0800 | [diff] [blame] | 2747 | * Just a wrapper around the type cast to allow easier tracking of calls. |
| 2748 | */ |
| 2749 | public static <T extends Launcher> T cast(ActivityContext activityContext) { |
| 2750 | return (T) activityContext; |
| 2751 | } |
| 2752 | |
Schneider Victor-tulias | 25ecae1 | 2020-09-14 14:07:38 -0700 | [diff] [blame] | 2753 | /** |
| 2754 | * Cross-fades the launcher's updated appearance with its previous appearance. |
| 2755 | * |
| 2756 | * This method is used to cross-fade UI updates on activity creation, specifically dark mode |
| 2757 | * updates. |
| 2758 | */ |
| 2759 | private void crossFadeWithPreviousAppearance() { |
Sunny Goyal | 6c0c61a | 2020-12-08 19:19:56 -0800 | [diff] [blame] | 2760 | NonConfigInstance lastInstance = (NonConfigInstance) getLastNonConfigurationInstance(); |
Schneider Victor-tulias | 25ecae1 | 2020-09-14 14:07:38 -0700 | [diff] [blame] | 2761 | |
Sunny Goyal | 6c0c61a | 2020-12-08 19:19:56 -0800 | [diff] [blame] | 2762 | if (lastInstance == null || lastInstance.snapshot == null) { |
Schneider Victor-tulias | 25ecae1 | 2020-09-14 14:07:38 -0700 | [diff] [blame] | 2763 | return; |
| 2764 | } |
| 2765 | |
| 2766 | ImageView crossFadeHelper = new ImageView(this); |
Sunny Goyal | 6c0c61a | 2020-12-08 19:19:56 -0800 | [diff] [blame] | 2767 | crossFadeHelper.setImageBitmap(lastInstance.snapshot); |
Schneider Victor-tulias | 25ecae1 | 2020-09-14 14:07:38 -0700 | [diff] [blame] | 2768 | crossFadeHelper.setImportantForAccessibility(IMPORTANT_FOR_ACCESSIBILITY_NO); |
| 2769 | |
| 2770 | InsettableFrameLayout.LayoutParams layoutParams = new InsettableFrameLayout.LayoutParams( |
| 2771 | InsettableFrameLayout.LayoutParams.MATCH_PARENT, |
| 2772 | InsettableFrameLayout.LayoutParams.MATCH_PARENT); |
| 2773 | |
| 2774 | layoutParams.ignoreInsets = true; |
| 2775 | |
| 2776 | crossFadeHelper.setLayoutParams(layoutParams); |
| 2777 | |
| 2778 | getRootView().addView(crossFadeHelper); |
| 2779 | |
| 2780 | crossFadeHelper |
| 2781 | .animate() |
| 2782 | .setDuration(THEME_CROSS_FADE_ANIMATION_DURATION) |
| 2783 | .alpha(0f) |
| 2784 | .withEndAction(() -> getRootView().removeView(crossFadeHelper)) |
| 2785 | .start(); |
| 2786 | } |
Sunny Goyal | 6c0c61a | 2020-12-08 19:19:56 -0800 | [diff] [blame] | 2787 | |
Tony Wickham | 794fe4f | 2021-01-11 14:54:23 -0600 | [diff] [blame] | 2788 | /** |
| 2789 | * @return Whether the View is in the same window as the Taskbar window. |
| 2790 | */ |
| 2791 | public boolean isViewInTaskbar(View v) { |
| 2792 | return false; |
| 2793 | } |
| 2794 | |
Sunny Goyal | b65d766 | 2021-03-07 15:09:11 -0800 | [diff] [blame] | 2795 | public boolean supportsAdaptiveIconAnimation(View clickedView) { |
| 2796 | return false; |
| 2797 | } |
| 2798 | |
Tony Wickham | 39938cb | 2021-02-26 09:15:31 -0800 | [diff] [blame] | 2799 | public DragOptions getDefaultWorkspaceDragOptions() { |
| 2800 | return new DragOptions(); |
| 2801 | } |
| 2802 | |
Sunny Goyal | 6c0c61a | 2020-12-08 19:19:56 -0800 | [diff] [blame] | 2803 | private static class NonConfigInstance { |
| 2804 | public Configuration config; |
| 2805 | public Bitmap snapshot; |
| 2806 | } |
thiruram | c96873c | 2021-02-11 15:13:47 -0800 | [diff] [blame] | 2807 | |
| 2808 | @Override |
| 2809 | public StatsLogManager getStatsLogManager() { |
| 2810 | return super.getStatsLogManager().withDefaultInstanceId(mAllAppsSessionLogId); |
| 2811 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 2812 | } |