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 | 28c6b96 | 2015-10-12 11:42:05 -0700 | [diff] [blame] | 19 | import android.Manifest; |
Gilles Debunne | dd6c992 | 2010-10-25 11:23:41 -0700 | [diff] [blame] | 20 | import android.animation.Animator; |
Michael Jurka | 8edd75c | 2010-12-17 20:15:06 -0800 | [diff] [blame] | 21 | import android.animation.AnimatorListenerAdapter; |
Gilles Debunne | dd6c992 | 2010-10-25 11:23:41 -0700 | [diff] [blame] | 22 | import android.animation.AnimatorSet; |
Adam Cohen | 2801caf | 2011-05-13 20:57:39 -0700 | [diff] [blame] | 23 | import android.animation.ObjectAnimator; |
Gilles Debunne | dd6c992 | 2010-10-25 11:23:41 -0700 | [diff] [blame] | 24 | import android.animation.ValueAnimator; |
Sunny Goyal | 7066003 | 2015-05-14 00:07:08 -0700 | [diff] [blame] | 25 | import android.annotation.SuppressLint; |
Adam Cohen | 0b39535 | 2014-06-09 22:54:36 +0000 | [diff] [blame] | 26 | import android.annotation.TargetApi; |
Michael Jurka | 946ad47 | 2010-07-09 18:05:18 -0700 | [diff] [blame] | 27 | import android.app.Activity; |
Winson Chung | c7450e3 | 2012-04-17 17:34:08 -0700 | [diff] [blame] | 28 | import android.app.ActivityOptions; |
Chris Wren | 40c5ed3 | 2014-06-24 18:24:23 -0400 | [diff] [blame] | 29 | import android.app.AlertDialog; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 30 | import android.app.SearchManager; |
Adam Cohen | 0cf2a7c | 2011-11-08 15:07:01 -0800 | [diff] [blame] | 31 | import android.appwidget.AppWidgetHostView; |
Michael Jurka | af44209 | 2010-06-10 17:01:57 -0700 | [diff] [blame] | 32 | import android.appwidget.AppWidgetManager; |
| 33 | import android.appwidget.AppWidgetProviderInfo; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 34 | import android.content.ActivityNotFoundException; |
Joe Onorato | 2ca0ae7 | 2009-11-10 13:14:13 -0800 | [diff] [blame] | 35 | import android.content.BroadcastReceiver; |
Michael Jurka | e326f18 | 2011-11-21 14:05:46 -0800 | [diff] [blame] | 36 | import android.content.ComponentCallbacks2; |
Daniel Sandler | c9b1877 | 2010-04-22 14:37:59 -0400 | [diff] [blame] | 37 | import android.content.ComponentName; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 38 | import android.content.Context; |
Andrew Sapperstein | abef55a | 2016-06-19 12:49:00 -0700 | [diff] [blame] | 39 | import android.content.ContextWrapper; |
Chris Wren | 40c5ed3 | 2014-06-24 18:24:23 -0400 | [diff] [blame] | 40 | import android.content.DialogInterface; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 41 | import android.content.Intent; |
Winson Chung | f0ea4d3 | 2011-06-06 14:27:16 -0700 | [diff] [blame] | 42 | import android.content.IntentFilter; |
Adam Cohen | 173f711 | 2015-03-27 15:14:00 -0700 | [diff] [blame] | 43 | import android.content.IntentSender; |
Winson Chung | 82f5553 | 2011-08-09 14:14:23 -0700 | [diff] [blame] | 44 | import android.content.SharedPreferences; |
Sunny Goyal | 745bad9 | 2016-05-02 10:54:12 -0700 | [diff] [blame] | 45 | import android.content.SharedPreferences.OnSharedPreferenceChangeListener; |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 46 | import android.content.pm.ActivityInfo; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 47 | import android.content.pm.PackageManager; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 48 | import android.content.res.Configuration; |
Adam Cohen | 3f9c971 | 2014-10-31 11:48:25 -0700 | [diff] [blame] | 49 | import android.database.sqlite.SQLiteDatabase; |
Adam Cohen | 268c475 | 2012-06-06 17:47:33 -0700 | [diff] [blame] | 50 | import android.graphics.Bitmap; |
| 51 | import android.graphics.Canvas; |
| 52 | import android.graphics.PorterDuff; |
Michael Jurka | af44209 | 2010-06-10 17:01:57 -0700 | [diff] [blame] | 53 | import android.graphics.Rect; |
Michael Jurka | af44209 | 2010-06-10 17:01:57 -0700 | [diff] [blame] | 54 | import android.graphics.drawable.Drawable; |
Brad Fitzpatrick | 319226a | 2010-09-01 13:45:16 -0700 | [diff] [blame] | 55 | import android.os.AsyncTask; |
Adam Cohen | 0f668f3 | 2014-09-08 19:54:17 +0200 | [diff] [blame] | 56 | import android.os.Build; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 57 | import android.os.Bundle; |
Jeff Sharkey | 1e2efc8 | 2009-11-06 15:17:59 -0800 | [diff] [blame] | 58 | import android.os.Handler; |
Adam Cohen | ded9f8d | 2010-11-03 13:25:16 -0700 | [diff] [blame] | 59 | import android.os.Message; |
Winson Chung | a241375 | 2012-04-03 14:22:34 -0700 | [diff] [blame] | 60 | import android.os.StrictMode; |
Daniel Sandler | 843e860 | 2010-06-07 14:59:01 -0400 | [diff] [blame] | 61 | import android.os.SystemClock; |
Sunny Goyal | e26d100 | 2016-06-20 14:52:14 -0700 | [diff] [blame] | 62 | import android.os.Trace; |
Sunny Goyal | a1d1bf3 | 2015-06-26 13:24:53 -0700 | [diff] [blame] | 63 | import android.os.UserHandle; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 64 | import android.text.Selection; |
| 65 | import android.text.SpannableStringBuilder; |
Michael Jurka | a33411c | 2012-06-14 16:18:21 -0700 | [diff] [blame] | 66 | import android.text.TextUtils; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 67 | import android.text.method.TextKeyListener; |
Joe Onorato | 7c312c1 | 2009-08-13 21:36:53 -0700 | [diff] [blame] | 68 | import android.util.Log; |
Adam Cohen | 96d30a1 | 2013-07-16 18:13:21 -0700 | [diff] [blame] | 69 | import android.view.Display; |
Adam Cohen | 96d30a1 | 2013-07-16 18:13:21 -0700 | [diff] [blame] | 70 | import android.view.HapticFeedbackConstants; |
| 71 | import android.view.KeyEvent; |
Adam Cohen | 96d30a1 | 2013-07-16 18:13:21 -0700 | [diff] [blame] | 72 | import android.view.Menu; |
Adam Cohen | 96d30a1 | 2013-07-16 18:13:21 -0700 | [diff] [blame] | 73 | import android.view.MotionEvent; |
| 74 | import android.view.Surface; |
| 75 | import android.view.View; |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 76 | import android.view.View.OnClickListener; |
Adam Cohen | 0cf2a7c | 2011-11-08 15:07:01 -0800 | [diff] [blame] | 77 | import android.view.View.OnLongClickListener; |
Adam Cohen | 96d30a1 | 2013-07-16 18:13:21 -0700 | [diff] [blame] | 78 | import android.view.ViewGroup; |
| 79 | import android.view.ViewTreeObserver; |
Svetoslav Ganov | 815ba2d | 2011-01-07 14:55:17 -0800 | [diff] [blame] | 80 | import android.view.accessibility.AccessibilityEvent; |
Tony Wickham | e221725 | 2016-03-22 16:34:23 -0700 | [diff] [blame] | 81 | import android.view.accessibility.AccessibilityManager; |
Sunny Goyal | 5a1f53b | 2015-05-27 10:24:24 -0700 | [diff] [blame] | 82 | import android.view.animation.OvershootInterpolator; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 83 | import android.view.inputmethod.InputMethodManager; |
Adam Cohen | 96d30a1 | 2013-07-16 18:13:21 -0700 | [diff] [blame] | 84 | import android.widget.Advanceable; |
Adam Cohen | 96d30a1 | 2013-07-16 18:13:21 -0700 | [diff] [blame] | 85 | import android.widget.ImageView; |
Chet Haase | a8f996d | 2015-02-17 12:56:04 -0800 | [diff] [blame] | 86 | import android.widget.TextView; |
Adam Cohen | 96d30a1 | 2013-07-16 18:13:21 -0700 | [diff] [blame] | 87 | import android.widget.Toast; |
Sunny Goyal | a1d1bf3 | 2015-06-26 13:24:53 -0700 | [diff] [blame] | 88 | |
Sunny Goyal | 651077b | 2014-06-30 14:15:31 -0700 | [diff] [blame] | 89 | import com.android.launcher3.DropTarget.DragObject; |
Sunny Goyal | a7ce166 | 2016-05-31 15:01:35 -0700 | [diff] [blame] | 90 | import com.android.launcher3.LauncherSettings.Favorites; |
Sunny Goyal | ae50284 | 2016-06-17 08:43:56 -0700 | [diff] [blame] | 91 | import com.android.launcher3.accessibility.LauncherAccessibilityDelegate; |
Winson Chung | 5f4e0fd | 2015-05-22 11:12:27 -0700 | [diff] [blame] | 92 | import com.android.launcher3.allapps.AllAppsContainerView; |
Hyunyoung Song | 645764e | 2016-06-06 14:19:02 -0700 | [diff] [blame] | 93 | import com.android.launcher3.allapps.AllAppsTransitionController; |
Sunny Goyal | 0ac7ede | 2016-01-29 13:14:14 -0800 | [diff] [blame] | 94 | import com.android.launcher3.allapps.DefaultAppSearchController; |
Sunny Goyal | ffe83f1 | 2014-08-14 17:39:34 -0700 | [diff] [blame] | 95 | import com.android.launcher3.compat.AppWidgetManagerCompat; |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 96 | import com.android.launcher3.compat.LauncherActivityInfoCompat; |
| 97 | import com.android.launcher3.compat.LauncherAppsCompat; |
| 98 | import com.android.launcher3.compat.UserHandleCompat; |
| 99 | import com.android.launcher3.compat.UserManagerCompat; |
Tony Wickham | e0c3323 | 2016-02-08 11:37:04 -0800 | [diff] [blame] | 100 | import com.android.launcher3.config.FeatureFlags; |
Sunny Goyal | 6c56c68 | 2015-07-16 14:09:05 -0700 | [diff] [blame] | 101 | import com.android.launcher3.config.ProviderConfig; |
Vadim Tryshev | fedca43 | 2015-08-19 17:55:02 -0700 | [diff] [blame] | 102 | import com.android.launcher3.dragndrop.DragController; |
| 103 | import com.android.launcher3.dragndrop.DragLayer; |
Sunny Goyal | 94b510c | 2016-08-16 15:36:48 -0700 | [diff] [blame] | 104 | import com.android.launcher3.dragndrop.DragOptions; |
Vadim Tryshev | fedca43 | 2015-08-19 17:55:02 -0700 | [diff] [blame] | 105 | import com.android.launcher3.dragndrop.DragView; |
Tony Wickham | 827cef2 | 2016-03-17 15:39:39 -0700 | [diff] [blame] | 106 | import com.android.launcher3.dynamicui.ExtractedColors; |
Sunny Goyal | 2611943 | 2016-02-18 22:09:23 +0000 | [diff] [blame] | 107 | import com.android.launcher3.folder.Folder; |
| 108 | import com.android.launcher3.folder.FolderIcon; |
Sunny Goyal | 3333b0c | 2016-05-09 20:43:21 -0700 | [diff] [blame] | 109 | import com.android.launcher3.keyboard.ViewGroupFocusHelper; |
Sunny Goyal | a7ce166 | 2016-05-31 15:01:35 -0700 | [diff] [blame] | 110 | import com.android.launcher3.logging.FileLog; |
Hyunyoung Song | aa95365 | 2016-04-19 18:30:24 -0700 | [diff] [blame] | 111 | import com.android.launcher3.logging.UserEventDispatcher; |
Hyunyoung Song | 2bd3d7d | 2015-05-21 13:04:53 -0700 | [diff] [blame] | 112 | import com.android.launcher3.model.WidgetsModel; |
Hyunyoung Song | 7d2fc81 | 2016-06-15 12:51:30 -0700 | [diff] [blame] | 113 | import com.android.launcher3.pageindicators.PageIndicator; |
Tony Wickham | 1bce7fd | 2016-04-28 17:39:03 -0700 | [diff] [blame] | 114 | import com.android.launcher3.shortcuts.DeepShortcutManager; |
Tony Wickham | 49c8d29 | 2016-07-01 11:44:34 -0700 | [diff] [blame] | 115 | import com.android.launcher3.shortcuts.DeepShortcutsContainer; |
Sunny Goyal | d3b87ef | 2016-07-28 12:11:54 -0700 | [diff] [blame] | 116 | import com.android.launcher3.shortcuts.ShortcutKey; |
Hyunyoung Song | 5aa2714 | 2016-07-21 11:48:37 -0700 | [diff] [blame] | 117 | import com.android.launcher3.userevent.nano.LauncherLogProto; |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 118 | import com.android.launcher3.util.ActivityResultInfo; |
Winson Chung | 6b1c73f | 2015-06-18 11:38:42 -0700 | [diff] [blame] | 119 | import com.android.launcher3.util.ComponentKey; |
Sunny Goyal | d3b87ef | 2016-07-28 12:11:54 -0700 | [diff] [blame] | 120 | import com.android.launcher3.util.ItemInfoMatcher; |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 121 | import com.android.launcher3.util.MultiHashMap; |
Sunny Goyal | 04cc3a7 | 2016-05-17 10:32:43 -0700 | [diff] [blame] | 122 | import com.android.launcher3.util.PackageManagerHelper; |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 123 | import com.android.launcher3.util.PendingRequestArgs; |
Sunny Goyal | 322d556 | 2015-06-25 19:35:49 -0700 | [diff] [blame] | 124 | import com.android.launcher3.util.TestingUtils; |
Adam Cohen | 091440a | 2015-03-18 14:16:05 -0700 | [diff] [blame] | 125 | import com.android.launcher3.util.Thunk; |
Sunny Goyal | 527c7d3 | 2015-08-28 15:19:36 -0700 | [diff] [blame] | 126 | import com.android.launcher3.util.ViewOnDrawExecutor; |
Hyunyoung Song | 3f47144 | 2015-04-08 19:01:34 -0700 | [diff] [blame] | 127 | import com.android.launcher3.widget.PendingAddWidgetInfo; |
Hyunyoung Song | b99ff3e | 2015-04-23 15:17:50 -0700 | [diff] [blame] | 128 | import com.android.launcher3.widget.WidgetHostViewLoader; |
Hyunyoung Song | 3f47144 | 2015-04-08 19:01:34 -0700 | [diff] [blame] | 129 | import com.android.launcher3.widget.WidgetsContainerView; |
Adam Cohen | 6c5891a | 2014-07-09 23:53:15 -0700 | [diff] [blame] | 130 | |
Adam Cohen | 16d7ffc | 2011-10-05 17:49:14 -0700 | [diff] [blame] | 131 | import java.io.FileDescriptor; |
Adam Cohen | 16d7ffc | 2011-10-05 17:49:14 -0700 | [diff] [blame] | 132 | import java.io.PrintWriter; |
Adam Cohen | c0dcf59 | 2011-06-01 15:30:43 -0700 | [diff] [blame] | 133 | import java.util.ArrayList; |
Winson Chung | f0c6ae0 | 2012-03-21 16:10:31 -0700 | [diff] [blame] | 134 | import java.util.Collection; |
Sunny Goyal | 2953833 | 2016-02-18 09:10:19 -0800 | [diff] [blame] | 135 | import java.util.Collections; |
Adam Cohen | c0dcf59 | 2011-06-01 15:30:43 -0700 | [diff] [blame] | 136 | import java.util.HashMap; |
Sunny Goyal | 4390ace | 2014-10-13 11:33:11 -0700 | [diff] [blame] | 137 | import java.util.HashSet; |
Michael Jurka | d7c2805 | 2012-04-27 15:43:36 -0700 | [diff] [blame] | 138 | import java.util.List; |
Adam Cohen | c0dcf59 | 2011-06-01 15:30:43 -0700 | [diff] [blame] | 139 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 140 | /** |
| 141 | * Default launcher application. |
| 142 | */ |
Bjorn Bringert | c459e52 | 2013-06-07 19:36:01 +0100 | [diff] [blame] | 143 | public class Launcher extends Activity |
Adam Cohen | 79d90c5 | 2016-04-22 13:29:20 -0700 | [diff] [blame] | 144 | implements LauncherExterns, View.OnClickListener, OnLongClickListener, |
| 145 | LauncherModel.Callbacks, View.OnTouchListener, LauncherProviderChangeListener, |
Tony Wickham | e221725 | 2016-03-22 16:34:23 -0700 | [diff] [blame] | 146 | AccessibilityManager.AccessibilityStateChangeListener { |
Vadim Tryshev | fedca43 | 2015-08-19 17:55:02 -0700 | [diff] [blame] | 147 | public static final String TAG = "Launcher"; |
Sunny Goyal | 2bba4c3 | 2015-05-18 15:42:48 -0700 | [diff] [blame] | 148 | static final boolean LOGD = false; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 149 | |
Sunny Goyal | c84e6e1 | 2015-10-02 12:48:37 -0700 | [diff] [blame] | 150 | static final boolean DEBUG_WIDGETS = false; |
Winson Chung | a241375 | 2012-04-03 14:22:34 -0700 | [diff] [blame] | 151 | static final boolean DEBUG_STRICT_MODE = false; |
Daniel Sandler | f061f82 | 2013-06-27 13:59:36 -0400 | [diff] [blame] | 152 | static final boolean DEBUG_RESUME_TIME = false; |
Romain Guy | 6fefcf1 | 2009-06-11 13:07:43 -0700 | [diff] [blame] | 153 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 154 | private static final int REQUEST_CREATE_SHORTCUT = 1; |
The Android Open Source Project | 7376fae | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 155 | private static final int REQUEST_CREATE_APPWIDGET = 5; |
The Android Open Source Project | 7376fae | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 156 | private static final int REQUEST_PICK_APPWIDGET = 9; |
Mike Cleron | a0618e4 | 2009-10-22 13:55:21 -0700 | [diff] [blame] | 157 | private static final int REQUEST_PICK_WALLPAPER = 10; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 158 | |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 159 | private static final int REQUEST_BIND_APPWIDGET = 11; |
Sunny Goyal | d478c83 | 2016-04-01 12:04:16 -0700 | [diff] [blame] | 160 | private static final int REQUEST_BIND_PENDING_APPWIDGET = 14; |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 161 | private static final int REQUEST_RECONFIGURE_APPWIDGET = 12; |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 162 | |
Sunny Goyal | 28c6b96 | 2015-10-12 11:42:05 -0700 | [diff] [blame] | 163 | private static final int REQUEST_PERMISSION_CALL_PHONE = 13; |
| 164 | |
Sunny Goyal | 5a1f53b | 2015-05-27 10:24:24 -0700 | [diff] [blame] | 165 | private static final float BOUNCE_ANIMATION_TENSION = 1.3f; |
| 166 | |
Mathew Inwood | 876a846 | 2013-06-14 14:12:41 +0100 | [diff] [blame] | 167 | /** |
| 168 | * IntentStarter uses request codes starting with this. This must be greater than all activity |
| 169 | * request codes used internally. |
| 170 | */ |
| 171 | protected static final int REQUEST_LAST = 100; |
| 172 | |
Michael Jurka | 0a457bf | 2012-11-19 14:05:05 -0800 | [diff] [blame] | 173 | // To turn on these properties, type |
Hyunyoung Song | ddec1c7 | 2016-04-12 18:32:04 -0700 | [diff] [blame] | 174 | // adb shell setprop logTap.tag.PROPERTY_NAME [VERBOSE | SUPPRESS] |
Michael Jurka | 0a457bf | 2012-11-19 14:05:05 -0800 | [diff] [blame] | 175 | static final String DUMP_STATE_PROPERTY = "launcher_dump_state"; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 176 | |
Winson Chung | 2672ff9 | 2012-05-04 16:22:30 -0700 | [diff] [blame] | 177 | // The Intent extra that defines whether to ignore the launch animation |
| 178 | static final String INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION = |
Daniel Sandler | 325dc23 | 2013-06-05 22:57:57 -0400 | [diff] [blame] | 179 | "com.android.launcher3.intent.extra.shortcut.INGORE_LAUNCH_ANIMATION"; |
Winson Chung | 2672ff9 | 2012-05-04 16:22:30 -0700 | [diff] [blame] | 180 | |
Sunny Goyal | da4fe1a | 2016-05-26 16:05:17 -0700 | [diff] [blame] | 181 | public static final String ACTION_APPWIDGET_HOST_RESET = |
| 182 | "com.android.launcher3.intent.ACTION_APPWIDGET_HOST_RESET"; |
| 183 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 184 | // Type: int |
| 185 | private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen"; |
Michael Jurka | 883f55b | 2010-10-21 15:47:14 -0700 | [diff] [blame] | 186 | // Type: int |
| 187 | private static final String RUNTIME_STATE = "launcher.state"; |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 188 | // Type: PendingRequestArgs |
| 189 | private static final String RUNTIME_STATE_PENDING_REQUEST_ARGS = "launcher.request_args"; |
| 190 | // Type: ActivityResultInfo |
| 191 | private static final String RUNTIME_STATE_PENDING_ACTIVITY_RESULT = "launcher.activity_result"; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 192 | |
Hyunyoung Song | c001cf5 | 2016-07-21 17:32:43 -0700 | [diff] [blame] | 193 | static final String APPS_VIEW_SHOWN = "launcher.apps_view_shown"; |
Adam Cohen | b54a598 | 2014-01-08 15:21:04 -0800 | [diff] [blame] | 194 | |
Patrick Dubroy | 6b509c1 | 2010-08-23 15:08:16 -0700 | [diff] [blame] | 195 | /** The different states that Launcher can be in. */ |
Tony Wickham | 94e0d37 | 2015-09-11 12:17:48 -0700 | [diff] [blame] | 196 | enum State { NONE, WORKSPACE, WORKSPACE_SPRING_LOADED, APPS, APPS_SPRING_LOADED, |
| 197 | WIDGETS, WIDGETS_SPRING_LOADED } |
Rahul Chaturvedi | 7fc77ca | 2015-05-19 18:02:16 -0700 | [diff] [blame] | 198 | |
Adam Cohen | 091440a | 2015-03-18 14:16:05 -0700 | [diff] [blame] | 199 | @Thunk State mState = State.WORKSPACE; |
Adam Cohen | 091440a | 2015-03-18 14:16:05 -0700 | [diff] [blame] | 200 | @Thunk LauncherStateTransitionAnimation mStateTransitionAnimation; |
Patrick Dubroy | 6b509c1 | 2010-08-23 15:08:16 -0700 | [diff] [blame] | 201 | |
Sunny Goyal | c5c60ad | 2014-07-14 12:02:01 -0700 | [diff] [blame] | 202 | private boolean mIsSafeModeEnabled; |
| 203 | |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 204 | static final int APPWIDGET_HOST_ID = 1024; |
Adam Cohen | 4f8071b | 2016-02-13 16:06:05 -0800 | [diff] [blame] | 205 | public static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 500; |
Adam Cohen | ad4e15c | 2013-10-17 16:21:35 -0700 | [diff] [blame] | 206 | private static final int ON_ACTIVITY_RESULT_ANIMATION_DELAY = 500; |
Adam Cohen | 646fdf7 | 2014-04-08 16:59:36 -0700 | [diff] [blame] | 207 | private static final int ACTIVITY_START_DELAY = 1000; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 208 | |
Winson Chung | a241375 | 2012-04-03 14:22:34 -0700 | [diff] [blame] | 209 | // How long to wait before the new-shortcut animation automatically pans the workspace |
Winson Chung | 94d6768 | 2013-09-25 16:29:40 -0700 | [diff] [blame] | 210 | private static int NEW_APPS_PAGE_MOVE_DELAY = 500; |
| 211 | private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 5; |
Adam Cohen | 091440a | 2015-03-18 14:16:05 -0700 | [diff] [blame] | 212 | @Thunk static int NEW_APPS_ANIMATION_DELAY = 500; |
Winson Chung | a241375 | 2012-04-03 14:22:34 -0700 | [diff] [blame] | 213 | |
Sunny Goyal | da4fe1a | 2016-05-26 16:05:17 -0700 | [diff] [blame] | 214 | private final BroadcastReceiver mUiBroadcastReceiver = new BroadcastReceiver() { |
| 215 | |
| 216 | @Override |
| 217 | public void onReceive(Context context, Intent intent) { |
| 218 | if (Intent.ACTION_CLOSE_SYSTEM_DIALOGS.equals(intent.getAction())) { |
| 219 | closeSystemDialogs(); |
| 220 | } else if (ACTION_APPWIDGET_HOST_RESET.equals(intent.getAction())) { |
| 221 | if (mAppWidgetHost != null) { |
| 222 | mAppWidgetHost.startListening(); |
| 223 | } |
| 224 | } |
| 225 | } |
| 226 | }; |
Jeff Sharkey | 1e2efc8 | 2009-11-06 15:17:59 -0800 | [diff] [blame] | 227 | |
Adam Cohen | 091440a | 2015-03-18 14:16:05 -0700 | [diff] [blame] | 228 | @Thunk Workspace mWorkspace; |
Craig Mautner | 360310b | 2012-10-26 15:13:08 -0700 | [diff] [blame] | 229 | private View mLauncherView; |
Adam Cohen | 091440a | 2015-03-18 14:16:05 -0700 | [diff] [blame] | 230 | @Thunk DragLayer mDragLayer; |
Michael Jurka | b737ee6 | 2011-11-15 15:57:22 -0800 | [diff] [blame] | 231 | private DragController mDragController; |
Sunny Goyal | 6178f13 | 2016-07-11 17:30:03 -0700 | [diff] [blame] | 232 | private View mQsbContainer; |
Sunny Goyal | 322d556 | 2015-06-25 19:35:49 -0700 | [diff] [blame] | 233 | |
| 234 | public View mWeightWatcher; |
Romain Guy | cbb89e4 | 2009-06-08 15:52:54 -0700 | [diff] [blame] | 235 | |
Sunny Goyal | ffe83f1 | 2014-08-14 17:39:34 -0700 | [diff] [blame] | 236 | private AppWidgetManagerCompat mAppWidgetManager; |
The Android Open Source Project | 7376fae | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 237 | private LauncherAppWidgetHost mAppWidgetHost; |
Romain Guy | cbb89e4 | 2009-06-08 15:52:54 -0700 | [diff] [blame] | 238 | |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 239 | private int[] mTmpAddItemCellCoordinates = new int[2]; |
| 240 | |
Sunny Goyal | 316490e | 2015-06-02 09:38:28 -0700 | [diff] [blame] | 241 | @Thunk Hotseat mHotseat; |
Jorim Jaggi | d017f88 | 2014-01-14 17:08:48 -0800 | [diff] [blame] | 242 | private ViewGroup mOverviewPanel; |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 243 | |
Michael Jurka | 838a4ca | 2011-02-07 13:33:06 -0800 | [diff] [blame] | 244 | private View mAllAppsButton; |
Hyunyoung Song | 98ff38a | 2015-07-10 17:50:13 -0700 | [diff] [blame] | 245 | private View mWidgetsButton; |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 246 | |
Sunny Goyal | 47328fd | 2016-05-25 18:56:41 -0700 | [diff] [blame] | 247 | private DropTargetBar mDropTargetBar; |
Hyunyoung Song | 3f47144 | 2015-04-08 19:01:34 -0700 | [diff] [blame] | 248 | |
| 249 | // Main container view for the all apps screen. |
Winson Chung | 5f4e0fd | 2015-05-22 11:12:27 -0700 | [diff] [blame] | 250 | @Thunk AllAppsContainerView mAppsView; |
Hyunyoung Song | 645764e | 2016-06-06 14:19:02 -0700 | [diff] [blame] | 251 | AllAppsTransitionController mAllAppsController; |
Hyunyoung Song | 3f47144 | 2015-04-08 19:01:34 -0700 | [diff] [blame] | 252 | |
Hyunyoung Song | 2bd3d7d | 2015-05-21 13:04:53 -0700 | [diff] [blame] | 253 | // Main container view and the model for the widget tray screen. |
| 254 | @Thunk WidgetsContainerView mWidgetsView; |
| 255 | @Thunk WidgetsModel mWidgetsModel; |
Hyunyoung Song | 3f47144 | 2015-04-08 19:01:34 -0700 | [diff] [blame] | 256 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 257 | private Bundle mSavedState; |
Winson Chung | 4a2afa3 | 2012-07-19 14:53:05 -0700 | [diff] [blame] | 258 | // We set the state in both onCreate and then onNewIntent in some cases, which causes both |
| 259 | // scroll issues (because the workspace may not have been measured yet) and extra work. |
| 260 | // Instead, just save the state that we need to restore Launcher to, and commit it in onResume. |
| 261 | private State mOnResumeState = State.NONE; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 262 | |
| 263 | private SpannableStringBuilder mDefaultKeySsb = null; |
| 264 | |
Adam Cohen | 091440a | 2015-03-18 14:16:05 -0700 | [diff] [blame] | 265 | @Thunk boolean mWorkspaceLoading = true; |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 266 | |
Joe Onorato | 34a0e1b | 2009-12-14 17:44:51 -0800 | [diff] [blame] | 267 | private boolean mPaused = true; |
Joe Onorato | ef2efcf | 2010-10-27 13:21:00 -0700 | [diff] [blame] | 268 | private boolean mOnResumeNeedsLoad; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 269 | |
Michael Jurka | 1e2f465 | 2013-07-08 18:03:46 -0700 | [diff] [blame] | 270 | private ArrayList<Runnable> mBindOnResumeCallbacks = new ArrayList<Runnable>(); |
Michael Jurka | 7607c2f | 2013-04-03 14:33:19 -0700 | [diff] [blame] | 271 | private ArrayList<Runnable> mOnResumeCallbacks = new ArrayList<Runnable>(); |
Sunny Goyal | 527c7d3 | 2015-08-28 15:19:36 -0700 | [diff] [blame] | 272 | private ViewOnDrawExecutor mPendingExecutor; |
Michael Jurka | 7607c2f | 2013-04-03 14:33:19 -0700 | [diff] [blame] | 273 | |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 274 | private LauncherModel mModel; |
Joe Onorato | 0589f0f | 2010-02-08 13:44:00 -0800 | [diff] [blame] | 275 | private IconCache mIconCache; |
Tony Wickham | 827cef2 | 2016-03-17 15:39:39 -0700 | [diff] [blame] | 276 | private ExtractedColors mExtractedColors; |
Sunny Goyal | ae50284 | 2016-06-17 08:43:56 -0700 | [diff] [blame] | 277 | private LauncherAccessibilityDelegate mAccessibilityDelegate; |
Hyunyoung Song | c001cf5 | 2016-07-21 17:32:43 -0700 | [diff] [blame] | 278 | private boolean mIsResumeFromActionScreenOff; |
Adam Cohen | 091440a | 2015-03-18 14:16:05 -0700 | [diff] [blame] | 279 | @Thunk boolean mUserPresent = true; |
Adam Cohen | d113e0c | 2010-11-11 10:48:05 -0800 | [diff] [blame] | 280 | private boolean mVisible = false; |
Adam Cohen | ed307df | 2013-10-02 09:37:31 -0700 | [diff] [blame] | 281 | private boolean mHasFocus = false; |
Adam Cohen | d113e0c | 2010-11-11 10:48:05 -0800 | [diff] [blame] | 282 | private boolean mAttached = false; |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 283 | |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 284 | /** Maps launcher activity components to their list of shortcut ids. */ |
| 285 | private MultiHashMap<ComponentKey, String> mDeepShortcutMap = new MultiHashMap<>(); |
| 286 | |
Adam Cohen | 61f560d | 2013-09-30 15:58:20 -0700 | [diff] [blame] | 287 | private View.OnTouchListener mHapticFeedbackTouchListener; |
| 288 | |
Adam Cohen | ded9f8d | 2010-11-03 13:25:16 -0700 | [diff] [blame] | 289 | // Related to the auto-advancing of widgets |
| 290 | private final int ADVANCE_MSG = 1; |
Sunny Goyal | 756cd26 | 2015-08-20 12:33:21 -0700 | [diff] [blame] | 291 | private static final int ADVANCE_INTERVAL = 20000; |
| 292 | private static final int ADVANCE_STAGGER = 250; |
| 293 | |
| 294 | private boolean mAutoAdvanceRunning = false; |
Adam Cohen | ded9f8d | 2010-11-03 13:25:16 -0700 | [diff] [blame] | 295 | private long mAutoAdvanceSentTime; |
| 296 | private long mAutoAdvanceTimeLeft = -1; |
Sunny Goyal | 756cd26 | 2015-08-20 12:33:21 -0700 | [diff] [blame] | 297 | @Thunk HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance = new HashMap<>(); |
Adam Cohen | ded9f8d | 2010-11-03 13:25:16 -0700 | [diff] [blame] | 298 | |
Winson Chung | 400438b | 2011-01-16 17:53:48 -0800 | [diff] [blame] | 299 | // Determines how long to wait after a rotation before restoring the screen orientation to |
| 300 | // match the sensor state. |
Sunny Goyal | 756cd26 | 2015-08-20 12:33:21 -0700 | [diff] [blame] | 301 | private static final int RESTORE_SCREEN_ORIENTATION_DELAY = 500; |
Winson Chung | 400438b | 2011-01-16 17:53:48 -0800 | [diff] [blame] | 302 | |
Adam Cohen | 1462de3 | 2012-07-24 22:34:36 -0700 | [diff] [blame] | 303 | private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>(); |
| 304 | |
Winson Chung | 46353de | 2012-02-16 14:05:10 -0800 | [diff] [blame] | 305 | // We only want to get the SharedPreferences once since it does an FS stat each time we get |
| 306 | // it from the context. |
| 307 | private SharedPreferences mSharedPrefs; |
| 308 | |
Winson Chung | f0c6ae0 | 2012-03-21 16:10:31 -0700 | [diff] [blame] | 309 | // Holds the page that we need to animate to, and the icon views that we need to animate up |
| 310 | // when we scroll to that page on resume. |
Adam Cohen | 091440a | 2015-03-18 14:16:05 -0700 | [diff] [blame] | 311 | @Thunk ImageView mFolderIconImageView; |
Adam Cohen | 268c475 | 2012-06-06 17:47:33 -0700 | [diff] [blame] | 312 | private Bitmap mFolderIconBitmap; |
| 313 | private Canvas mFolderIconCanvas; |
| 314 | private Rect mRectForFolderAnimation = new Rect(); |
Adam Cohen | 2801caf | 2011-05-13 20:57:39 -0700 | [diff] [blame] | 315 | |
Sunny Goyal | dfaccf6 | 2015-05-11 16:30:44 -0700 | [diff] [blame] | 316 | private DeviceProfile mDeviceProfile; |
| 317 | |
Adam Cohen | 4b66bf3 | 2015-09-18 12:15:19 -0700 | [diff] [blame] | 318 | private boolean mMoveToDefaultScreenFromNewIntent; |
| 319 | |
Winson Chung | 13eb527 | 2015-05-11 16:30:13 -0700 | [diff] [blame] | 320 | // This is set to the view that launched the activity that navigated the user away from |
| 321 | // launcher. Since there is no callback for when the activity has finished launching, enable |
| 322 | // the press state and keep this reference to reset the press state when we return to launcher. |
Michael Jurka | ddd62e9 | 2011-02-16 17:49:14 -0800 | [diff] [blame] | 323 | private BubbleTextView mWaitingForResume; |
| 324 | |
Adam Cohen | 5940042 | 2014-03-05 18:07:04 -0800 | [diff] [blame] | 325 | protected static HashMap<String, CustomAppWidget> sCustomAppWidgets = |
| 326 | new HashMap<String, CustomAppWidget>(); |
| 327 | |
Adam Cohen | 5940042 | 2014-03-05 18:07:04 -0800 | [diff] [blame] | 328 | static { |
Sunny Goyal | 322d556 | 2015-06-25 19:35:49 -0700 | [diff] [blame] | 329 | if (TestingUtils.ENABLE_CUSTOM_WIDGET_TEST) { |
| 330 | TestingUtils.addDummyWidget(sCustomAppWidgets); |
Adam Cohen | 5940042 | 2014-03-05 18:07:04 -0800 | [diff] [blame] | 331 | } |
| 332 | } |
| 333 | |
Hyunyoung Song | 06ca756 | 2016-07-29 13:03:54 -0700 | [diff] [blame] | 334 | // Exiting spring loaded mode happens with a delay. This runnable object triggers the |
| 335 | // state transition. If another state transition happened during this delay, |
| 336 | // simply unregister this runnable. |
| 337 | private Runnable mExitSpringLoadedModeRunnable; |
| 338 | |
Adam Cohen | 091440a | 2015-03-18 14:16:05 -0700 | [diff] [blame] | 339 | @Thunk Runnable mBuildLayersRunnable = new Runnable() { |
Michael Jurka | c1f5d26 | 2011-09-30 19:32:27 -0700 | [diff] [blame] | 340 | public void run() { |
Michael Jurka | 9d906c7 | 2011-10-14 06:25:36 -0700 | [diff] [blame] | 341 | if (mWorkspace != null) { |
| 342 | mWorkspace.buildPageHardwareLayers(); |
| 343 | } |
Michael Jurka | c1f5d26 | 2011-09-30 19:32:27 -0700 | [diff] [blame] | 344 | } |
| 345 | }; |
| 346 | |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 347 | // Activity result which needs to be processed after workspace has loaded. |
| 348 | private ActivityResultInfo mPendingActivityResult; |
| 349 | /** |
| 350 | * Holds extra information required to handle a result from an external call, like |
| 351 | * {@link #startActivityForResult(Intent, int)} or {@link #requestPermissions(String[], int)} |
| 352 | */ |
| 353 | private PendingRequestArgs mPendingRequestArgs; |
Patrick Dubroy | 002cbf4 | 2011-03-03 16:36:21 -0800 | [diff] [blame] | 354 | |
Hyunyoung Song | aa95365 | 2016-04-19 18:30:24 -0700 | [diff] [blame] | 355 | private UserEventDispatcher mUserEventDispatcher; |
Hyunyoung Song | fbf19cc | 2016-02-19 12:14:47 -0800 | [diff] [blame] | 356 | |
Sunny Goyal | 3333b0c | 2016-05-09 20:43:21 -0700 | [diff] [blame] | 357 | public ViewGroupFocusHelper mFocusHandler; |
Sunny Goyal | 7779d62 | 2015-06-11 16:18:39 -0700 | [diff] [blame] | 358 | private boolean mRotationEnabled = false; |
Rahul Chaturvedi | 799aa04 | 2015-06-01 21:26:41 -0400 | [diff] [blame] | 359 | |
| 360 | @Thunk void setOrientation() { |
| 361 | if (mRotationEnabled) { |
| 362 | unlockScreenOrientation(true); |
| 363 | } else { |
| 364 | setRequestedOrientation( |
| 365 | ActivityInfo.SCREEN_ORIENTATION_NOSENSOR); |
Rahul Chaturvedi | 7fc77ca | 2015-05-19 18:02:16 -0700 | [diff] [blame] | 366 | } |
Rahul Chaturvedi | 799aa04 | 2015-06-01 21:26:41 -0400 | [diff] [blame] | 367 | } |
Rahul Chaturvedi | 7fc77ca | 2015-05-19 18:02:16 -0700 | [diff] [blame] | 368 | |
Sunny Goyal | 745bad9 | 2016-05-02 10:54:12 -0700 | [diff] [blame] | 369 | private RotationPrefChangeHandler mRotationPrefChangeHandler; |
Sunny Goyal | 7779d62 | 2015-06-11 16:18:39 -0700 | [diff] [blame] | 370 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 371 | @Override |
| 372 | protected void onCreate(Bundle savedInstanceState) { |
Winson Chung | a241375 | 2012-04-03 14:22:34 -0700 | [diff] [blame] | 373 | if (DEBUG_STRICT_MODE) { |
| 374 | StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder() |
| 375 | .detectDiskReads() |
| 376 | .detectDiskWrites() |
| 377 | .detectNetwork() // or .detectAll() for all detectable problems |
| 378 | .penaltyLog() |
| 379 | .build()); |
| 380 | StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder() |
| 381 | .detectLeakedSqlLiteObjects() |
| 382 | .detectLeakedClosableObjects() |
| 383 | .penaltyLog() |
| 384 | .penaltyDeath() |
| 385 | .build()); |
| 386 | } |
Sunny Goyal | e26d100 | 2016-06-20 14:52:14 -0700 | [diff] [blame] | 387 | if (LauncherAppState.PROFILE_STARTUP) { |
| 388 | Trace.beginSection("Launcher-onCreate"); |
| 389 | } |
Winson Chung | a241375 | 2012-04-03 14:22:34 -0700 | [diff] [blame] | 390 | |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 391 | if (mLauncherCallbacks != null) { |
| 392 | mLauncherCallbacks.preOnCreate(); |
| 393 | } |
| 394 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 395 | super.onCreate(savedInstanceState); |
Daniel Sandler | e060b0b | 2013-06-27 21:47:55 -0400 | [diff] [blame] | 396 | |
Daniel Sandler | cc8befa | 2013-06-11 14:45:48 -0400 | [diff] [blame] | 397 | LauncherAppState app = LauncherAppState.getInstance(); |
Winson Chung | 6e1c0d3 | 2013-10-25 15:24:24 -0700 | [diff] [blame] | 398 | |
Adam Cohen | 2e6da15 | 2015-05-06 11:42:25 -0700 | [diff] [blame] | 399 | // Load configuration-specific DeviceProfile |
Sunny Goyal | c620560 | 2015-05-21 20:46:33 -0700 | [diff] [blame] | 400 | mDeviceProfile = getResources().getConfiguration().orientation |
| 401 | == Configuration.ORIENTATION_LANDSCAPE ? |
Tony Wickham | 3a3517f | 2015-10-06 11:27:04 -0700 | [diff] [blame] | 402 | app.getInvariantDeviceProfile().landscapeProfile |
| 403 | : app.getInvariantDeviceProfile().portraitProfile; |
Sunny Goyal | c620560 | 2015-05-21 20:46:33 -0700 | [diff] [blame] | 404 | |
Sunny Goyal | f725824 | 2015-10-19 16:59:07 -0700 | [diff] [blame] | 405 | mSharedPrefs = Utilities.getPrefs(this); |
Sunny Goyal | c5c60ad | 2014-07-14 12:02:01 -0700 | [diff] [blame] | 406 | mIsSafeModeEnabled = getPackageManager().isSafeMode(); |
Joe Onorato | 0589f0f | 2010-02-08 13:44:00 -0800 | [diff] [blame] | 407 | mModel = app.setLauncher(this); |
| 408 | mIconCache = app.getIconCache(); |
Sunny Goyal | ae50284 | 2016-06-17 08:43:56 -0700 | [diff] [blame] | 409 | mAccessibilityDelegate = new LauncherAccessibilityDelegate(this); |
Adam Cohen | 2e6da15 | 2015-05-06 11:42:25 -0700 | [diff] [blame] | 410 | |
Joe Onorato | 41a12d2 | 2009-10-31 18:30:00 -0400 | [diff] [blame] | 411 | mDragController = new DragController(this); |
Hyunyoung Song | 645764e | 2016-06-06 14:19:02 -0700 | [diff] [blame] | 412 | mAllAppsController = new AllAppsTransitionController(this); |
| 413 | mStateTransitionAnimation = new LauncherStateTransitionAnimation(this, mAllAppsController); |
Romain Guy | cbb89e4 | 2009-06-08 15:52:54 -0700 | [diff] [blame] | 414 | |
Sunny Goyal | ffe83f1 | 2014-08-14 17:39:34 -0700 | [diff] [blame] | 415 | mAppWidgetManager = AppWidgetManagerCompat.getInstance(this); |
Adam Cohen | 5380521 | 2013-10-01 10:39:23 -0700 | [diff] [blame] | 416 | |
The Android Open Source Project | 7376fae | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 417 | mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID); |
| 418 | mAppWidgetHost.startListening(); |
Romain Guy | cbb89e4 | 2009-06-08 15:52:54 -0700 | [diff] [blame] | 419 | |
Winson Chung | b8b2a5a | 2012-07-12 17:55:31 -0700 | [diff] [blame] | 420 | // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here, |
| 421 | // this also ensures that any synchronous binding below doesn't re-trigger another |
| 422 | // LauncherModel load. |
| 423 | mPaused = false; |
| 424 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 425 | setContentView(R.layout.launcher); |
Michael Jurka | 7267fa5 | 2013-09-26 15:29:57 -0700 | [diff] [blame] | 426 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 427 | setupViews(); |
Winson | 1f06427 | 2016-07-18 17:18:02 -0700 | [diff] [blame] | 428 | mDeviceProfile.layout(this, false /* notifyListeners */); |
Tony Wickham | 827cef2 | 2016-03-17 15:39:39 -0700 | [diff] [blame] | 429 | mExtractedColors = new ExtractedColors(); |
| 430 | loadExtractedColorsAndColorItems(); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 431 | |
Tony Wickham | e221725 | 2016-03-22 16:34:23 -0700 | [diff] [blame] | 432 | ((AccessibilityManager) getSystemService(ACCESSIBILITY_SERVICE)) |
| 433 | .addAccessibilityStateChangeListener(this); |
| 434 | |
Joe Onorato | 7c312c1 | 2009-08-13 21:36:53 -0700 | [diff] [blame] | 435 | lockAllApps(); |
Joe Onorato | 7404ee4 | 2009-07-31 11:54:44 -0700 | [diff] [blame] | 436 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 437 | mSavedState = savedInstanceState; |
| 438 | restoreState(mSavedState); |
| 439 | |
Sunny Goyal | e26d100 | 2016-06-20 14:52:14 -0700 | [diff] [blame] | 440 | if (LauncherAppState.PROFILE_STARTUP) { |
| 441 | Trace.endSection(); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 442 | } |
| 443 | |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 444 | // We only load the page synchronously if the user rotates (or triggers a |
| 445 | // configuration change) while launcher is in the foreground |
| 446 | if (!mModel.startLoader(mWorkspace.getRestorePage())) { |
| 447 | // If we are not binding synchronously, show a fade in animation when |
| 448 | // the first page bind completes. |
| 449 | mDragLayer.setAlpha(0); |
| 450 | } else { |
| 451 | setWorkspaceLoading(true); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 452 | } |
| 453 | |
| 454 | // For handling default keys |
| 455 | mDefaultKeySsb = new SpannableStringBuilder(); |
| 456 | Selection.setSelection(mDefaultKeySsb, 0); |
Joe Onorato | 34a0e1b | 2009-12-14 17:44:51 -0800 | [diff] [blame] | 457 | |
| 458 | IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS); |
Sunny Goyal | da4fe1a | 2016-05-26 16:05:17 -0700 | [diff] [blame] | 459 | filter.addAction(ACTION_APPWIDGET_HOST_RESET); |
| 460 | registerReceiver(mUiBroadcastReceiver, filter); |
Michael Jurka | 4ef207b | 2010-11-29 17:05:45 -0800 | [diff] [blame] | 461 | |
Sunny Goyal | 8f3819b | 2016-02-23 14:49:22 -0800 | [diff] [blame] | 462 | mRotationEnabled = getResources().getBoolean(R.bool.allow_rotation); |
Rahul Chaturvedi | 7fc77ca | 2015-05-19 18:02:16 -0700 | [diff] [blame] | 463 | // In case we are on a device with locked rotation, we should look at preferences to check |
| 464 | // if the user has specifically allowed rotation. |
| 465 | if (!mRotationEnabled) { |
Sunny Goyal | 21bf531 | 2015-08-21 11:08:24 -0700 | [diff] [blame] | 466 | mRotationEnabled = Utilities.isAllowRotationPrefEnabled(getApplicationContext()); |
Sunny Goyal | 745bad9 | 2016-05-02 10:54:12 -0700 | [diff] [blame] | 467 | mRotationPrefChangeHandler = new RotationPrefChangeHandler(); |
| 468 | mSharedPrefs.registerOnSharedPreferenceChangeListener(mRotationPrefChangeHandler); |
Rahul Chaturvedi | 7fc77ca | 2015-05-19 18:02:16 -0700 | [diff] [blame] | 469 | } |
| 470 | |
| 471 | // On large interfaces, or on devices that a user has specifically enabled screen rotation, |
| 472 | // we want the screen to auto-rotate based on the current orientation |
Rahul Chaturvedi | 799aa04 | 2015-06-01 21:26:41 -0400 | [diff] [blame] | 473 | setOrientation(); |
Winson Chung | af40f20 | 2013-09-18 18:26:31 -0700 | [diff] [blame] | 474 | |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 475 | if (mLauncherCallbacks != null) { |
| 476 | mLauncherCallbacks.onCreate(savedInstanceState); |
| 477 | } |
| 478 | } |
| 479 | |
Sunny Goyal | 7779d62 | 2015-06-11 16:18:39 -0700 | [diff] [blame] | 480 | @Override |
Tony Wickham | 827cef2 | 2016-03-17 15:39:39 -0700 | [diff] [blame] | 481 | public void onExtractedColorsChanged() { |
| 482 | loadExtractedColorsAndColorItems(); |
| 483 | } |
| 484 | |
| 485 | private void loadExtractedColorsAndColorItems() { |
Tony Wickham | 462b5cc | 2016-04-01 16:00:49 -0700 | [diff] [blame] | 486 | // TODO: do this in pre-N as well, once the extraction part is complete. |
| 487 | if (mExtractedColors != null && Utilities.isNycOrAbove()) { |
Tony Wickham | 827cef2 | 2016-03-17 15:39:39 -0700 | [diff] [blame] | 488 | mExtractedColors.load(this); |
Tony Wickham | 462b5cc | 2016-04-01 16:00:49 -0700 | [diff] [blame] | 489 | mHotseat.updateColor(mExtractedColors, !mPaused); |
Sunny Goyal | d0a6ae7 | 2016-06-16 12:29:03 -0700 | [diff] [blame] | 490 | mWorkspace.getPageIndicator().updateColor(mExtractedColors); |
Tony Wickham | 827cef2 | 2016-03-17 15:39:39 -0700 | [diff] [blame] | 491 | } |
| 492 | } |
| 493 | |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 494 | private LauncherCallbacks mLauncherCallbacks; |
| 495 | |
| 496 | public void onPostCreate(Bundle savedInstanceState) { |
| 497 | super.onPostCreate(savedInstanceState); |
| 498 | if (mLauncherCallbacks != null) { |
| 499 | mLauncherCallbacks.onPostCreate(savedInstanceState); |
| 500 | } |
| 501 | } |
| 502 | |
Winson | 1f06427 | 2016-07-18 17:18:02 -0700 | [diff] [blame] | 503 | public void onInsetsChanged(Rect insets) { |
| 504 | mDeviceProfile.updateInsets(insets); |
| 505 | mDeviceProfile.layout(this, true /* notifyListeners */); |
| 506 | } |
| 507 | |
Sunny Goyal | 32554d1 | 2015-12-03 15:31:25 -0800 | [diff] [blame] | 508 | /** |
| 509 | * Call this after onCreate to set or clear overlay. |
| 510 | */ |
| 511 | public void setLauncherOverlay(LauncherOverlay overlay) { |
| 512 | if (overlay != null) { |
| 513 | overlay.setOverlayCallbacks(new LauncherOverlayCallbacksImpl()); |
| 514 | } |
| 515 | mWorkspace.setLauncherOverlay(overlay); |
| 516 | } |
| 517 | |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 518 | public boolean setLauncherCallbacks(LauncherCallbacks callbacks) { |
| 519 | mLauncherCallbacks = callbacks; |
Jun Mukai | 8af0cd8 | 2015-05-12 12:32:12 -0700 | [diff] [blame] | 520 | mLauncherCallbacks.setLauncherSearchCallback(new Launcher.LauncherSearchCallbacks() { |
Jun Mukai | e9819e6 | 2015-06-17 10:58:59 -0700 | [diff] [blame] | 521 | private boolean mWorkspaceImportanceStored = false; |
| 522 | private boolean mHotseatImportanceStored = false; |
Jun Mukai | 8af0cd8 | 2015-05-12 12:32:12 -0700 | [diff] [blame] | 523 | private int mWorkspaceImportanceForAccessibility = |
Hyunyoung Song | 8fd5e93 | 2016-03-08 16:55:47 -0800 | [diff] [blame] | 524 | View.IMPORTANT_FOR_ACCESSIBILITY_AUTO; |
Jun Mukai | 8af0cd8 | 2015-05-12 12:32:12 -0700 | [diff] [blame] | 525 | private int mHotseatImportanceForAccessibility = View.IMPORTANT_FOR_ACCESSIBILITY_AUTO; |
| 526 | |
| 527 | @Override |
| 528 | public void onSearchOverlayOpened() { |
Jun Mukai | e9819e6 | 2015-06-17 10:58:59 -0700 | [diff] [blame] | 529 | if (mWorkspaceImportanceStored || mHotseatImportanceStored) { |
Jun Mukai | 8af0cd8 | 2015-05-12 12:32:12 -0700 | [diff] [blame] | 530 | return; |
| 531 | } |
| 532 | // The underlying workspace and hotseat are temporarily suppressed by the search |
Sunny Goyal | 08442b8 | 2015-10-21 17:15:08 -0700 | [diff] [blame] | 533 | // overlay. So they shouldn't be accessible. |
Jun Mukai | e9819e6 | 2015-06-17 10:58:59 -0700 | [diff] [blame] | 534 | if (mWorkspace != null) { |
| 535 | mWorkspaceImportanceForAccessibility = |
| 536 | mWorkspace.getImportantForAccessibility(); |
| 537 | mWorkspace.setImportantForAccessibility( |
| 538 | View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS); |
| 539 | mWorkspaceImportanceStored = true; |
| 540 | } |
| 541 | if (mHotseat != null) { |
| 542 | mHotseatImportanceForAccessibility = mHotseat.getImportantForAccessibility(); |
| 543 | mHotseat.setImportantForAccessibility( |
| 544 | View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS); |
| 545 | mHotseatImportanceStored = true; |
| 546 | } |
Jun Mukai | 8af0cd8 | 2015-05-12 12:32:12 -0700 | [diff] [blame] | 547 | } |
| 548 | |
| 549 | @Override |
| 550 | public void onSearchOverlayClosed() { |
Jun Mukai | e9819e6 | 2015-06-17 10:58:59 -0700 | [diff] [blame] | 551 | if (mWorkspaceImportanceStored && mWorkspace != null) { |
| 552 | mWorkspace.setImportantForAccessibility(mWorkspaceImportanceForAccessibility); |
| 553 | } |
| 554 | if (mHotseatImportanceStored && mHotseat != null) { |
| 555 | mHotseat.setImportantForAccessibility(mHotseatImportanceForAccessibility); |
| 556 | } |
| 557 | mWorkspaceImportanceStored = false; |
| 558 | mHotseatImportanceStored = false; |
Jun Mukai | 8af0cd8 | 2015-05-12 12:32:12 -0700 | [diff] [blame] | 559 | } |
| 560 | }); |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 561 | return true; |
Adam Cohen | f9426d5 | 2012-06-04 17:26:21 -0700 | [diff] [blame] | 562 | } |
| 563 | |
Anjali Koppal | 67e7cae | 2014-03-13 12:14:12 -0700 | [diff] [blame] | 564 | @Override |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 565 | public void onLauncherProviderChange() { |
| 566 | if (mLauncherCallbacks != null) { |
| 567 | mLauncherCallbacks.onLauncherProviderChange(); |
| 568 | } |
| 569 | } |
Anjali Koppal | 67e7cae | 2014-03-13 12:14:12 -0700 | [diff] [blame] | 570 | |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 571 | /** To be overridden by subclasses to hint to Launcher that we have custom content */ |
Winson Chung | 98ca0f7 | 2013-07-29 12:58:51 -0700 | [diff] [blame] | 572 | protected boolean hasCustomContentToLeft() { |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 573 | if (mLauncherCallbacks != null) { |
| 574 | return mLauncherCallbacks.hasCustomContentToLeft(); |
| 575 | } |
Winson Chung | 98ca0f7 | 2013-07-29 12:58:51 -0700 | [diff] [blame] | 576 | return false; |
| 577 | } |
| 578 | |
Dave Hawkey | a888158 | 2013-09-17 15:55:33 -0600 | [diff] [blame] | 579 | /** |
Derek Prothro | dadd984 | 2014-01-17 13:43:50 -0500 | [diff] [blame] | 580 | * To be overridden by subclasses to populate the custom content container and call |
Dave Hawkey | a888158 | 2013-09-17 15:55:33 -0600 | [diff] [blame] | 581 | * {@link #addToCustomContentPage}. This will only be invoked if |
| 582 | * {@link #hasCustomContentToLeft()} is {@code true}. |
| 583 | */ |
Derek Prothro | dadd984 | 2014-01-17 13:43:50 -0500 | [diff] [blame] | 584 | protected void populateCustomContentContainer() { |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 585 | if (mLauncherCallbacks != null) { |
| 586 | mLauncherCallbacks.populateCustomContentContainer(); |
| 587 | } |
Dave Hawkey | a888158 | 2013-09-17 15:55:33 -0600 | [diff] [blame] | 588 | } |
| 589 | |
| 590 | /** |
| 591 | * Invoked by subclasses to signal a change to the {@link #addCustomContentToLeft} value to |
| 592 | * ensure the custom content page is added or removed if necessary. |
| 593 | */ |
| 594 | protected void invalidateHasCustomContentToLeft() { |
Dave Hawkey | 3a733a7 | 2013-09-30 11:52:21 -0600 | [diff] [blame] | 595 | if (mWorkspace == null || mWorkspace.getScreenOrder().isEmpty()) { |
Dave Hawkey | a888158 | 2013-09-17 15:55:33 -0600 | [diff] [blame] | 596 | // Not bound yet, wait for bindScreens to be called. |
| 597 | return; |
| 598 | } |
| 599 | |
| 600 | if (!mWorkspace.hasCustomContent() && hasCustomContentToLeft()) { |
| 601 | // Create the custom content page and call the subclass to populate it. |
Derek Prothro | dadd984 | 2014-01-17 13:43:50 -0500 | [diff] [blame] | 602 | mWorkspace.createCustomContentContainer(); |
| 603 | populateCustomContentContainer(); |
Dave Hawkey | a888158 | 2013-09-17 15:55:33 -0600 | [diff] [blame] | 604 | } else if (mWorkspace.hasCustomContent() && !hasCustomContentToLeft()) { |
| 605 | mWorkspace.removeCustomContentPage(); |
| 606 | } |
| 607 | } |
| 608 | |
Hyunyoung Song | aa95365 | 2016-04-19 18:30:24 -0700 | [diff] [blame] | 609 | public UserEventDispatcher getUserEventDispatcher() { |
| 610 | if (mLauncherCallbacks != null) { |
| 611 | UserEventDispatcher dispatcher = mLauncherCallbacks.getUserEventDispatcher(); |
| 612 | if (dispatcher != null) { |
| 613 | return dispatcher; |
| 614 | } |
| 615 | } |
| 616 | |
Sunny Goyal | 64976d5 | 2016-06-20 14:56:28 -0700 | [diff] [blame] | 617 | // Logger object is a singleton and does not have to be coupled with the foreground |
| 618 | // activity. Since most user event logging is done on the UI, the object is retrieved |
| 619 | // from the callback for convenience. |
Hyunyoung Song | aa95365 | 2016-04-19 18:30:24 -0700 | [diff] [blame] | 620 | if (mUserEventDispatcher == null) { |
Sunny Goyal | 64976d5 | 2016-06-20 14:56:28 -0700 | [diff] [blame] | 621 | mUserEventDispatcher = new UserEventDispatcher(); |
Hyunyoung Song | aa95365 | 2016-04-19 18:30:24 -0700 | [diff] [blame] | 622 | } |
| 623 | return mUserEventDispatcher; |
Hyunyoung Song | 8fd5e93 | 2016-03-08 16:55:47 -0800 | [diff] [blame] | 624 | } |
Anton Hansson | a2f665f | 2013-09-26 12:18:32 +0100 | [diff] [blame] | 625 | |
Hyunyoung Song | 3f47144 | 2015-04-08 19:01:34 -0700 | [diff] [blame] | 626 | public boolean isDraggingEnabled() { |
Winson Chung | 36a62fe | 2012-05-06 18:04:42 -0700 | [diff] [blame] | 627 | // We prevent dragging when we are loading the workspace as it is possible to pick up a view |
| 628 | // that is subsequently removed from the workspace in startBinding(). |
Sunny Goyal | 639e906 | 2015-08-19 19:17:06 -0700 | [diff] [blame] | 629 | return !isWorkspaceLoading(); |
Winson Chung | 36a62fe | 2012-05-06 18:04:42 -0700 | [diff] [blame] | 630 | } |
| 631 | |
Adam Cohen | c76e1dd | 2013-11-14 11:09:14 +0000 | [diff] [blame] | 632 | public int getViewIdForItem(ItemInfo info) { |
Sunny Goyal | e2fd14b | 2015-08-27 17:45:46 -0700 | [diff] [blame] | 633 | // aapt-generated IDs have the high byte nonzero; clamp to the range under that. |
| 634 | // This cast is safe as long as the id < 0x00FFFFFF |
| 635 | // Since we jail all the dynamically generated views, there should be no clashes |
| 636 | // with any other views. |
| 637 | return (int) info.id; |
Adam Cohen | c76e1dd | 2013-11-14 11:09:14 +0000 | [diff] [blame] | 638 | } |
| 639 | |
| 640 | /** |
Winson Chung | 557d6ed | 2011-07-08 15:34:52 -0700 | [diff] [blame] | 641 | * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have |
| 642 | * a configuration step, this allows the proper animations to run after other transitions. |
| 643 | */ |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 644 | private long completeAdd( |
| 645 | int requestCode, Intent intent, int appWidgetId, PendingRequestArgs info) { |
| 646 | long screenId = info.screenId; |
| 647 | if (info.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) { |
Adam Cohen | 83079e4 | 2014-09-19 17:43:08 -0700 | [diff] [blame] | 648 | // When the screen id represents an actual screen (as opposed to a rank) we make sure |
| 649 | // that the drop page actually exists. |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 650 | screenId = ensurePendingDropLayoutExists(info.screenId); |
Adam Cohen | 83079e4 | 2014-09-19 17:43:08 -0700 | [diff] [blame] | 651 | } |
Adam Cohen | db364c3 | 2014-05-20 14:23:40 -0700 | [diff] [blame] | 652 | |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 653 | switch (requestCode) { |
Patrick Dubroy | 002cbf4 | 2011-03-03 16:36:21 -0800 | [diff] [blame] | 654 | case REQUEST_CREATE_SHORTCUT: |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 655 | completeAddShortcut(intent, info.container, screenId, info.cellX, info.cellY); |
Winson Chung | b8472bb | 2011-08-05 13:49:21 -0700 | [diff] [blame] | 656 | break; |
Patrick Dubroy | 002cbf4 | 2011-03-03 16:36:21 -0800 | [diff] [blame] | 657 | case REQUEST_CREATE_APPWIDGET: |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 658 | completeAddAppWidget(appWidgetId, info, null, null); |
Winson Chung | b8472bb | 2011-08-05 13:49:21 -0700 | [diff] [blame] | 659 | break; |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 660 | case REQUEST_RECONFIGURE_APPWIDGET: |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 661 | completeRestoreAppWidget(appWidgetId, LauncherAppWidgetInfo.RESTORE_COMPLETED); |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 662 | break; |
Sunny Goyal | d478c83 | 2016-04-01 12:04:16 -0700 | [diff] [blame] | 663 | case REQUEST_BIND_PENDING_APPWIDGET: { |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 664 | int widgetId = appWidgetId; |
| 665 | LauncherAppWidgetInfo widgetInfo = |
Sunny Goyal | d478c83 | 2016-04-01 12:04:16 -0700 | [diff] [blame] | 666 | completeRestoreAppWidget(widgetId, LauncherAppWidgetInfo.FLAG_UI_NOT_READY); |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 667 | if (widgetInfo != null) { |
Sunny Goyal | d478c83 | 2016-04-01 12:04:16 -0700 | [diff] [blame] | 668 | // Since the view was just bound, also launch the configure activity if needed |
| 669 | LauncherAppWidgetProviderInfo provider = mAppWidgetManager |
| 670 | .getLauncherAppWidgetInfo(widgetId); |
| 671 | if (provider != null && provider.configure != null) { |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 672 | startRestoredWidgetReconfigActivity(provider, widgetInfo); |
Sunny Goyal | d478c83 | 2016-04-01 12:04:16 -0700 | [diff] [blame] | 673 | } |
| 674 | } |
| 675 | break; |
| 676 | } |
Patrick Dubroy | 002cbf4 | 2011-03-03 16:36:21 -0800 | [diff] [blame] | 677 | } |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 678 | |
Adam Cohen | db364c3 | 2014-05-20 14:23:40 -0700 | [diff] [blame] | 679 | return screenId; |
Patrick Dubroy | 002cbf4 | 2011-03-03 16:36:21 -0800 | [diff] [blame] | 680 | } |
| 681 | |
Adam Cohen | c7cd2cb | 2014-11-17 17:45:34 -0800 | [diff] [blame] | 682 | private void handleActivityResult( |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 683 | final int requestCode, final int resultCode, final Intent data) { |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 684 | if (isWorkspaceLoading()) { |
| 685 | // process the result once the workspace has loaded. |
| 686 | mPendingActivityResult = new ActivityResultInfo(requestCode, resultCode, data); |
| 687 | return; |
| 688 | } |
| 689 | mPendingActivityResult = null; |
| 690 | |
Winson Chung | e341d30 | 2013-08-16 14:31:00 -0700 | [diff] [blame] | 691 | // Reset the startActivity waiting flag |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 692 | final PendingRequestArgs requestArgs = mPendingRequestArgs; |
| 693 | setWaitingForResult(null); |
| 694 | if (requestArgs == null) { |
| 695 | return; |
| 696 | } |
| 697 | |
| 698 | final int pendingAddWidgetId = requestArgs.getWidgetId(); |
Winson Chung | e341d30 | 2013-08-16 14:31:00 -0700 | [diff] [blame] | 699 | |
Adam Cohen | ad4e15c | 2013-10-17 16:21:35 -0700 | [diff] [blame] | 700 | Runnable exitSpringLoaded = new Runnable() { |
| 701 | @Override |
| 702 | public void run() { |
| 703 | exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED), |
| 704 | EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null); |
| 705 | } |
| 706 | }; |
| 707 | |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 708 | if (requestCode == REQUEST_BIND_APPWIDGET) { |
Winson | a1f79d3 | 2015-08-05 14:00:45 -0700 | [diff] [blame] | 709 | // 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] | 710 | final int appWidgetId = data != null ? |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 711 | data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1; |
| 712 | if (resultCode == RESULT_CANCELED) { |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 713 | completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId, requestArgs); |
Adam Cohen | 689ff16 | 2014-05-08 17:27:56 -0700 | [diff] [blame] | 714 | mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded, |
Adam Cohen | ad4e15c | 2013-10-17 16:21:35 -0700 | [diff] [blame] | 715 | ON_ACTIVITY_RESULT_ANIMATION_DELAY, false); |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 716 | } else if (resultCode == RESULT_OK) { |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 717 | addAppWidgetImpl( |
| 718 | appWidgetId, requestArgs, null, |
| 719 | requestArgs.getWidgetProvider(), |
| 720 | ON_ACTIVITY_RESULT_ANIMATION_DELAY); |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 721 | } |
| 722 | return; |
Michael Jurka | 336fd4f | 2013-09-12 00:05:02 +0200 | [diff] [blame] | 723 | } else if (requestCode == REQUEST_PICK_WALLPAPER) { |
| 724 | if (resultCode == RESULT_OK && mWorkspace.isInOverviewMode()) { |
Tony Wickham | e305441 | 2015-09-09 09:05:25 -0700 | [diff] [blame] | 725 | // User could have free-scrolled between pages before picking a wallpaper; make sure |
| 726 | // we move to the closest one now. |
| 727 | mWorkspace.setCurrentPage(mWorkspace.getPageNearestToCenterOfScreen()); |
Winson Chung | dc61c4d | 2015-04-20 18:26:57 -0700 | [diff] [blame] | 728 | showWorkspace(false); |
Michael Jurka | 336fd4f | 2013-09-12 00:05:02 +0200 | [diff] [blame] | 729 | } |
| 730 | return; |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 731 | } |
Michael Jurka | 336fd4f | 2013-09-12 00:05:02 +0200 | [diff] [blame] | 732 | |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 733 | boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET || |
Sunny Goyal | 5c97f51 | 2015-05-19 16:03:28 -0700 | [diff] [blame] | 734 | requestCode == REQUEST_CREATE_APPWIDGET); |
Romain Guy | aad5ef4 | 2009-06-10 02:48:37 -0700 | [diff] [blame] | 735 | |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 736 | // We have special handling for widgets |
| 737 | if (isWidgetDrop) { |
Adam Cohen | 4637b5a | 2013-11-04 18:21:24 -0800 | [diff] [blame] | 738 | final int appWidgetId; |
| 739 | int widgetId = data != null ? data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) |
| 740 | : -1; |
| 741 | if (widgetId < 0) { |
| 742 | appWidgetId = pendingAddWidgetId; |
| 743 | } else { |
| 744 | appWidgetId = widgetId; |
| 745 | } |
| 746 | |
Adam Cohen | ad4e15c | 2013-10-17 16:21:35 -0700 | [diff] [blame] | 747 | final int result; |
Adam Cohen | f0129b1 | 2013-11-04 17:57:36 -0800 | [diff] [blame] | 748 | if (appWidgetId < 0 || resultCode == RESULT_CANCELED) { |
Adam Cohen | db364c3 | 2014-05-20 14:23:40 -0700 | [diff] [blame] | 749 | Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not " + |
| 750 | "returned from the widget configuration activity."); |
Adam Cohen | ad4e15c | 2013-10-17 16:21:35 -0700 | [diff] [blame] | 751 | result = RESULT_CANCELED; |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 752 | completeTwoStageWidgetDrop(result, appWidgetId, requestArgs); |
Adam Cohen | db364c3 | 2014-05-20 14:23:40 -0700 | [diff] [blame] | 753 | final Runnable onComplete = new Runnable() { |
Adam Cohen | ad4e15c | 2013-10-17 16:21:35 -0700 | [diff] [blame] | 754 | @Override |
| 755 | public void run() { |
| 756 | exitSpringLoadedDragModeDelayed(false, 0, null); |
| 757 | } |
| 758 | }; |
Adam Cohen | db364c3 | 2014-05-20 14:23:40 -0700 | [diff] [blame] | 759 | |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 760 | mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, |
| 761 | ON_ACTIVITY_RESULT_ANIMATION_DELAY, false); |
| 762 | } else { |
| 763 | if (requestArgs.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) { |
| 764 | // When the screen id represents an actual screen (as opposed to a rank) |
| 765 | // we make sure that the drop page actually exists. |
| 766 | requestArgs.screenId = |
| 767 | ensurePendingDropLayoutExists(requestArgs.screenId); |
Adam Cohen | db364c3 | 2014-05-20 14:23:40 -0700 | [diff] [blame] | 768 | } |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 769 | final CellLayout dropLayout = |
| 770 | mWorkspace.getScreenWithId(requestArgs.screenId); |
| 771 | |
| 772 | dropLayout.setDropPending(true); |
| 773 | final Runnable onComplete = new Runnable() { |
| 774 | @Override |
| 775 | public void run() { |
| 776 | completeTwoStageWidgetDrop(resultCode, appWidgetId, requestArgs); |
| 777 | dropLayout.setDropPending(false); |
| 778 | } |
| 779 | }; |
| 780 | mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, |
| 781 | ON_ACTIVITY_RESULT_ANIMATION_DELAY, false); |
Winson Chung | 5aaab77 | 2012-04-27 15:24:02 -0700 | [diff] [blame] | 782 | } |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 783 | return; |
| 784 | } |
| 785 | |
Sunny Goyal | d478c83 | 2016-04-01 12:04:16 -0700 | [diff] [blame] | 786 | if (requestCode == REQUEST_RECONFIGURE_APPWIDGET |
| 787 | || requestCode == REQUEST_BIND_PENDING_APPWIDGET) { |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 788 | if (resultCode == RESULT_OK) { |
| 789 | // Update the widget view. |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 790 | completeAdd(requestCode, data, pendingAddWidgetId, requestArgs); |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 791 | } |
| 792 | // Leave the widget in the pending state if the user canceled the configure. |
| 793 | return; |
| 794 | } |
| 795 | |
Sunny Goyal | aad9058 | 2015-07-09 14:22:50 -0700 | [diff] [blame] | 796 | if (requestCode == REQUEST_CREATE_SHORTCUT) { |
| 797 | // Handle custom shortcuts created using ACTION_CREATE_SHORTCUT. |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 798 | if (resultCode == RESULT_OK && requestArgs.container != ItemInfo.NO_ID) { |
| 799 | completeAdd(requestCode, data, -1, requestArgs); |
| 800 | mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded, |
| 801 | ON_ACTIVITY_RESULT_ANIMATION_DELAY, false); |
| 802 | |
Sunny Goyal | aad9058 | 2015-07-09 14:22:50 -0700 | [diff] [blame] | 803 | } else if (resultCode == RESULT_CANCELED) { |
Adam Cohen | db364c3 | 2014-05-20 14:23:40 -0700 | [diff] [blame] | 804 | mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded, |
| 805 | ON_ACTIVITY_RESULT_ANIMATION_DELAY, false); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 806 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 807 | } |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 808 | mDragLayer.clearAnimatedView(); |
Adam Cohen | c7cd2cb | 2014-11-17 17:45:34 -0800 | [diff] [blame] | 809 | } |
| 810 | |
| 811 | @Override |
| 812 | protected void onActivityResult( |
| 813 | final int requestCode, final int resultCode, final Intent data) { |
| 814 | handleActivityResult(requestCode, resultCode, data); |
| 815 | if (mLauncherCallbacks != null) { |
| 816 | mLauncherCallbacks.onActivityResult(requestCode, resultCode, data); |
| 817 | } |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 818 | } |
| 819 | |
Dave Hawkey | 3a43ed6 | 2015-06-26 10:27:47 -0600 | [diff] [blame] | 820 | /** @Override for MNC */ |
Sunny Goyal | dd2e6df | 2015-07-07 10:57:57 -0700 | [diff] [blame] | 821 | public void onRequestPermissionsResult(int requestCode, String[] permissions, |
Dave Hawkey | 3a43ed6 | 2015-06-26 10:27:47 -0600 | [diff] [blame] | 822 | int[] grantResults) { |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 823 | PendingRequestArgs pendingArgs = mPendingRequestArgs; |
| 824 | if (requestCode == REQUEST_PERMISSION_CALL_PHONE && pendingArgs != null |
| 825 | && pendingArgs.getRequestCode() == REQUEST_PERMISSION_CALL_PHONE) { |
| 826 | setWaitingForResult(null); |
| 827 | |
Sunny Goyal | 28c6b96 | 2015-10-12 11:42:05 -0700 | [diff] [blame] | 828 | View v = null; |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 829 | CellLayout layout = getCellLayout(pendingArgs.container, pendingArgs.screenId); |
Sunny Goyal | 28c6b96 | 2015-10-12 11:42:05 -0700 | [diff] [blame] | 830 | if (layout != null) { |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 831 | v = layout.getChildAt(pendingArgs.cellX, pendingArgs.cellY); |
Sunny Goyal | 28c6b96 | 2015-10-12 11:42:05 -0700 | [diff] [blame] | 832 | } |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 833 | Intent intent = pendingArgs.getPendingIntent(); |
| 834 | |
Sunny Goyal | 28c6b96 | 2015-10-12 11:42:05 -0700 | [diff] [blame] | 835 | if (grantResults.length > 0 |
| 836 | && grantResults[0] == PackageManager.PERMISSION_GRANTED) { |
Sunny Goyal | 85fc55a | 2016-05-31 10:44:03 -0700 | [diff] [blame] | 837 | startActivitySafely(v, intent, null); |
Sunny Goyal | 28c6b96 | 2015-10-12 11:42:05 -0700 | [diff] [blame] | 838 | } else { |
| 839 | // TODO: Show a snack bar with link to settings |
| 840 | Toast.makeText(this, getString(R.string.msg_no_phone_permission, |
Sunny Goyal | 112ce42 | 2016-08-22 16:45:29 -0700 | [diff] [blame] | 841 | getString(R.string.derived_app_name)), Toast.LENGTH_SHORT).show(); |
Sunny Goyal | 28c6b96 | 2015-10-12 11:42:05 -0700 | [diff] [blame] | 842 | } |
| 843 | } |
Dave Hawkey | 3a43ed6 | 2015-06-26 10:27:47 -0600 | [diff] [blame] | 844 | if (mLauncherCallbacks != null) { |
| 845 | mLauncherCallbacks.onRequestPermissionsResult(requestCode, permissions, |
| 846 | grantResults); |
| 847 | } |
| 848 | } |
| 849 | |
Adam Cohen | db364c3 | 2014-05-20 14:23:40 -0700 | [diff] [blame] | 850 | /** |
| 851 | * Check to see if a given screen id exists. If not, create it at the end, return the new id. |
| 852 | * |
| 853 | * @param screenId the screen id to check |
| 854 | * @return the new screen, or screenId if it exists |
| 855 | */ |
| 856 | private long ensurePendingDropLayoutExists(long screenId) { |
Sunny Goyal | 32554d1 | 2015-12-03 15:31:25 -0800 | [diff] [blame] | 857 | CellLayout dropLayout = mWorkspace.getScreenWithId(screenId); |
Adam Cohen | db364c3 | 2014-05-20 14:23:40 -0700 | [diff] [blame] | 858 | if (dropLayout == null) { |
| 859 | // it's possible that the add screen was removed because it was |
| 860 | // empty and a re-bind occurred |
| 861 | mWorkspace.addExtraEmptyScreen(); |
| 862 | return mWorkspace.commitExtraEmptyScreen(); |
| 863 | } else { |
| 864 | return screenId; |
| 865 | } |
| 866 | } |
| 867 | |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 868 | @Thunk void completeTwoStageWidgetDrop( |
| 869 | final int resultCode, final int appWidgetId, final PendingRequestArgs requestArgs) { |
| 870 | CellLayout cellLayout = mWorkspace.getScreenWithId(requestArgs.screenId); |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 871 | Runnable onCompleteRunnable = null; |
| 872 | int animationType = 0; |
| 873 | |
Adam Cohen | 9d5b7d8 | 2012-05-09 18:00:44 -0700 | [diff] [blame] | 874 | AppWidgetHostView boundWidget = null; |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 875 | if (resultCode == RESULT_OK) { |
| 876 | animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION; |
| 877 | final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId, |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 878 | requestArgs.getWidgetProvider()); |
Adam Cohen | 9d5b7d8 | 2012-05-09 18:00:44 -0700 | [diff] [blame] | 879 | boundWidget = layout; |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 880 | onCompleteRunnable = new Runnable() { |
| 881 | @Override |
| 882 | public void run() { |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 883 | completeAddAppWidget(appWidgetId, requestArgs, layout, null); |
Adam Cohen | ad4e15c | 2013-10-17 16:21:35 -0700 | [diff] [blame] | 884 | exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED), |
| 885 | EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null); |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 886 | } |
| 887 | }; |
| 888 | } else if (resultCode == RESULT_CANCELED) { |
Adam Cohen | 4637b5a | 2013-11-04 18:21:24 -0800 | [diff] [blame] | 889 | mAppWidgetHost.deleteAppWidgetId(appWidgetId); |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 890 | animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION; |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 891 | } |
Adam Cohen | 9d5b7d8 | 2012-05-09 18:00:44 -0700 | [diff] [blame] | 892 | if (mDragLayer.getAnimatedView() != null) { |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 893 | mWorkspace.animateWidgetDrop(requestArgs, cellLayout, |
Adam Cohen | 9d5b7d8 | 2012-05-09 18:00:44 -0700 | [diff] [blame] | 894 | (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable, |
| 895 | animationType, boundWidget, true); |
Adam Cohen | ad4e15c | 2013-10-17 16:21:35 -0700 | [diff] [blame] | 896 | } else if (onCompleteRunnable != null) { |
Adam Cohen | 9d5b7d8 | 2012-05-09 18:00:44 -0700 | [diff] [blame] | 897 | // The animated view may be null in the case of a rotation during widget configuration |
| 898 | onCompleteRunnable.run(); |
| 899 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 900 | } |
| 901 | |
| 902 | @Override |
Michael Jurka | cd496d7 | 2013-04-11 11:32:45 -0700 | [diff] [blame] | 903 | protected void onStop() { |
| 904 | super.onStop(); |
| 905 | FirstFrameAnimatorHelper.setIsVisible(false); |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 906 | |
| 907 | if (mLauncherCallbacks != null) { |
| 908 | mLauncherCallbacks.onStop(); |
| 909 | } |
Sunny Goyal | 5da78f4 | 2016-06-17 14:00:22 -0700 | [diff] [blame] | 910 | |
| 911 | if (Utilities.isNycMR1OrAbove()) { |
| 912 | mAppWidgetHost.stopListening(); |
| 913 | } |
Michael Jurka | cd496d7 | 2013-04-11 11:32:45 -0700 | [diff] [blame] | 914 | } |
| 915 | |
| 916 | @Override |
| 917 | protected void onStart() { |
| 918 | super.onStart(); |
| 919 | FirstFrameAnimatorHelper.setIsVisible(true); |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 920 | |
| 921 | if (mLauncherCallbacks != null) { |
| 922 | mLauncherCallbacks.onStart(); |
| 923 | } |
Sunny Goyal | 5da78f4 | 2016-06-17 14:00:22 -0700 | [diff] [blame] | 924 | |
| 925 | if (Utilities.isNycMR1OrAbove()) { |
| 926 | mAppWidgetHost.startListening(); |
| 927 | } |
Michael Jurka | cd496d7 | 2013-04-11 11:32:45 -0700 | [diff] [blame] | 928 | } |
| 929 | |
| 930 | @Override |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 931 | protected void onResume() { |
Michael Jurka | 447bf84 | 2013-05-15 14:52:15 +0200 | [diff] [blame] | 932 | long startTime = 0; |
| 933 | if (DEBUG_RESUME_TIME) { |
| 934 | startTime = System.currentTimeMillis(); |
Daniel Sandler | 924b993 | 2013-06-12 00:38:25 -0400 | [diff] [blame] | 935 | Log.v(TAG, "Launcher.onResume()"); |
Michael Jurka | 447bf84 | 2013-05-15 14:52:15 +0200 | [diff] [blame] | 936 | } |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 937 | |
| 938 | if (mLauncherCallbacks != null) { |
| 939 | mLauncherCallbacks.preOnResume(); |
| 940 | } |
| 941 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 942 | super.onResume(); |
Hyunyoung Song | aa95365 | 2016-04-19 18:30:24 -0700 | [diff] [blame] | 943 | getUserEventDispatcher().resetElapsedSessionMillis(); |
Winson Chung | f0c6ae0 | 2012-03-21 16:10:31 -0700 | [diff] [blame] | 944 | |
Winson Chung | 4a2afa3 | 2012-07-19 14:53:05 -0700 | [diff] [blame] | 945 | // Restore the previous launcher state |
Winson Chung | 75cc825 | 2015-04-10 10:19:58 -0700 | [diff] [blame] | 946 | if (mOnResumeState == State.WORKSPACE) { |
Winson Chung | 4a2afa3 | 2012-07-19 14:53:05 -0700 | [diff] [blame] | 947 | showWorkspace(false); |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 948 | } else if (mOnResumeState == State.APPS) { |
Winson Chung | 13eb527 | 2015-05-11 16:30:13 -0700 | [diff] [blame] | 949 | boolean launchedFromApp = (mWaitingForResume != null); |
Winson Chung | 4ac3006 | 2015-05-08 17:34:17 -0700 | [diff] [blame] | 950 | // Don't update the predicted apps if the user is returning to launcher in the apps |
Winson Chung | 13eb527 | 2015-05-11 16:30:13 -0700 | [diff] [blame] | 951 | // view after launching an app, as they may be depending on the UI to be static to |
| 952 | // switch to another app, otherwise, if it was |
Hyunyoung Song | dd60ce4 | 2016-07-27 17:08:38 -0700 | [diff] [blame] | 953 | showAppsView(false /* animated */, !launchedFromApp /* updatePredictedApps */, |
| 954 | false /* focusSearchBar */); |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 955 | } else if (mOnResumeState == State.WIDGETS) { |
| 956 | showWidgetsView(false, false); |
Winson Chung | 4a2afa3 | 2012-07-19 14:53:05 -0700 | [diff] [blame] | 957 | } |
| 958 | mOnResumeState = State.NONE; |
| 959 | |
Joe Onorato | 34a0e1b | 2009-12-14 17:44:51 -0800 | [diff] [blame] | 960 | mPaused = false; |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 961 | if (mOnResumeNeedsLoad) { |
Anjali Koppal | ff7ceff | 2014-05-01 18:26:37 -0700 | [diff] [blame] | 962 | setWorkspaceLoading(true); |
Sunny Goyal | 93f878c | 2016-03-30 17:31:24 -0700 | [diff] [blame] | 963 | mModel.startLoader(getCurrentWorkspaceScreen()); |
Joe Onorato | ef2efcf | 2010-10-27 13:21:00 -0700 | [diff] [blame] | 964 | mOnResumeNeedsLoad = false; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 965 | } |
Michael Jurka | 1e2f465 | 2013-07-08 18:03:46 -0700 | [diff] [blame] | 966 | if (mBindOnResumeCallbacks.size() > 0) { |
Michael Jurka | c402cd9 | 2013-05-20 15:49:32 +0200 | [diff] [blame] | 967 | // We might have postponed some bind calls until onResume (see waitUntilResume) -- |
| 968 | // execute them here |
| 969 | long startTimeCallbacks = 0; |
| 970 | if (DEBUG_RESUME_TIME) { |
| 971 | startTimeCallbacks = System.currentTimeMillis(); |
| 972 | } |
| 973 | |
Michael Jurka | 1e2f465 | 2013-07-08 18:03:46 -0700 | [diff] [blame] | 974 | for (int i = 0; i < mBindOnResumeCallbacks.size(); i++) { |
| 975 | mBindOnResumeCallbacks.get(i).run(); |
Michael Jurka | c402cd9 | 2013-05-20 15:49:32 +0200 | [diff] [blame] | 976 | } |
Michael Jurka | 1e2f465 | 2013-07-08 18:03:46 -0700 | [diff] [blame] | 977 | mBindOnResumeCallbacks.clear(); |
Michael Jurka | c402cd9 | 2013-05-20 15:49:32 +0200 | [diff] [blame] | 978 | if (DEBUG_RESUME_TIME) { |
| 979 | Log.d(TAG, "Time spent processing callbacks in onResume: " + |
| 980 | (System.currentTimeMillis() - startTimeCallbacks)); |
| 981 | } |
Michael Jurka | 447bf84 | 2013-05-15 14:52:15 +0200 | [diff] [blame] | 982 | } |
Michael Jurka | 5455425 | 2013-08-01 12:52:23 +0200 | [diff] [blame] | 983 | if (mOnResumeCallbacks.size() > 0) { |
| 984 | for (int i = 0; i < mOnResumeCallbacks.size(); i++) { |
| 985 | mOnResumeCallbacks.get(i).run(); |
| 986 | } |
| 987 | mOnResumeCallbacks.clear(); |
| 988 | } |
Winson Chung | e4e5066 | 2012-01-23 14:45:13 -0800 | [diff] [blame] | 989 | |
| 990 | // Reset the pressed state of icons that were locked in the press state while activities |
| 991 | // were launching |
Michael Jurka | ddd62e9 | 2011-02-16 17:49:14 -0800 | [diff] [blame] | 992 | if (mWaitingForResume != null) { |
Winson Chung | e4e5066 | 2012-01-23 14:45:13 -0800 | [diff] [blame] | 993 | // Resets the previous workspace icon press state |
Michael Jurka | ddd62e9 | 2011-02-16 17:49:14 -0800 | [diff] [blame] | 994 | mWaitingForResume.setStayPressed(false); |
| 995 | } |
Winson Chung | 82963d5 | 2013-10-09 11:20:57 -0700 | [diff] [blame] | 996 | |
Adam Cohen | 06dff35 | 2012-06-01 17:17:08 -0700 | [diff] [blame] | 997 | // It is possible that widgets can receive updates while launcher is not in the foreground. |
| 998 | // Consequently, the widgets will be inflated in the orientation of the foreground activity |
| 999 | // (framework issue). On resuming, we ensure that any widgets are inflated for the current |
| 1000 | // orientation. |
Sunny Goyal | 6bec75f | 2015-10-01 18:50:48 -0700 | [diff] [blame] | 1001 | if (!isWorkspaceLoading()) { |
| 1002 | getWorkspace().reinflateWidgetsIfNecessary(); |
| 1003 | } |
Adam Cohen | f9426d5 | 2012-06-04 17:26:21 -0700 | [diff] [blame] | 1004 | |
Michael Jurka | 447bf84 | 2013-05-15 14:52:15 +0200 | [diff] [blame] | 1005 | if (DEBUG_RESUME_TIME) { |
| 1006 | Log.d(TAG, "Time spent in onResume: " + (System.currentTimeMillis() - startTime)); |
| 1007 | } |
Adam Cohen | 6fecd41 | 2013-10-02 17:41:50 -0700 | [diff] [blame] | 1008 | |
Adam Cohen | 4b66bf3 | 2015-09-18 12:15:19 -0700 | [diff] [blame] | 1009 | // We want to suppress callbacks about CustomContent being shown if we have just received |
| 1010 | // onNewIntent while the user was present within launcher. In that case, we post a call |
| 1011 | // to move the user to the main screen (which will occur after onResume). We don't want to |
| 1012 | // have onHide (from onPause), then onShow, then onHide again, which we get if we don't |
| 1013 | // suppress here. |
| 1014 | if (mWorkspace.getCustomContentCallbacks() != null |
| 1015 | && !mMoveToDefaultScreenFromNewIntent) { |
Adam Cohen | 6fecd41 | 2013-10-02 17:41:50 -0700 | [diff] [blame] | 1016 | // If we are resuming and the custom content is the current page, we call onShow(). |
Adam Cohen | 4b66bf3 | 2015-09-18 12:15:19 -0700 | [diff] [blame] | 1017 | // It is also possible that onShow will instead be called slightly after first layout |
Adam Cohen | 6fecd41 | 2013-10-02 17:41:50 -0700 | [diff] [blame] | 1018 | // if PagedView#setRestorePage was set to the custom content page in onCreate(). |
| 1019 | if (mWorkspace.isOnOrMovingToCustomContent()) { |
Selim Cinek | 3a8a8f7 | 2014-01-16 10:38:38 -0800 | [diff] [blame] | 1020 | mWorkspace.getCustomContentCallbacks().onShow(true); |
Adam Cohen | 6fecd41 | 2013-10-02 17:41:50 -0700 | [diff] [blame] | 1021 | } |
| 1022 | } |
Adam Cohen | 4b66bf3 | 2015-09-18 12:15:19 -0700 | [diff] [blame] | 1023 | mMoveToDefaultScreenFromNewIntent = false; |
Winson Chung | cd99cd3 | 2015-04-29 11:03:24 -0700 | [diff] [blame] | 1024 | updateInteraction(Workspace.State.NORMAL, mWorkspace.getState()); |
Adam Cohen | 5380521 | 2013-10-01 10:39:23 -0700 | [diff] [blame] | 1025 | mWorkspace.onResume(); |
Sunny Goyal | e755d46 | 2014-07-22 13:48:29 -0700 | [diff] [blame] | 1026 | |
Sunny Goyal | 756adbc | 2015-04-16 15:20:51 -0700 | [diff] [blame] | 1027 | if (!isWorkspaceLoading()) { |
| 1028 | // Process any items that were added while Launcher was away. |
| 1029 | InstallShortcutReceiver.disableAndFlushInstallQueue(this); |
Sunny Goyal | 95f3d6b | 2016-08-10 16:09:29 -0700 | [diff] [blame] | 1030 | |
| 1031 | // Refresh shortcuts if the permission changed. |
| 1032 | mModel.refreshShortcutsIfRequired(); |
Sunny Goyal | 756adbc | 2015-04-16 15:20:51 -0700 | [diff] [blame] | 1033 | } |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 1034 | |
Hyunyoung Song | c001cf5 | 2016-07-21 17:32:43 -0700 | [diff] [blame] | 1035 | if (shouldShowDiscoveryBounce()) { |
| 1036 | mAllAppsController.showDiscoveryBounce(); |
| 1037 | } |
| 1038 | mIsResumeFromActionScreenOff = false; |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 1039 | if (mLauncherCallbacks != null) { |
| 1040 | mLauncherCallbacks.onResume(); |
| 1041 | } |
Adam Cohen | 06dff35 | 2012-06-01 17:17:08 -0700 | [diff] [blame] | 1042 | } |
| 1043 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1044 | @Override |
The Android Open Source Project | 7376fae | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 1045 | protected void onPause() { |
Winson Chung | 997a923 | 2013-07-24 15:33:46 -0700 | [diff] [blame] | 1046 | // Ensure that items added to Launcher are queued until Launcher returns |
| 1047 | InstallShortcutReceiver.enableInstallQueue(); |
| 1048 | |
The Android Open Source Project | 7376fae | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 1049 | super.onPause(); |
Joe Onorato | ef2efcf | 2010-10-27 13:21:00 -0700 | [diff] [blame] | 1050 | mPaused = true; |
Joe Onorato | 24b6fd8 | 2009-11-12 13:47:09 -0800 | [diff] [blame] | 1051 | mDragController.cancelDrag(); |
Winson Chung | a241375 | 2012-04-03 14:22:34 -0700 | [diff] [blame] | 1052 | mDragController.resetLastGestureUpTime(); |
Adam Cohen | 6fecd41 | 2013-10-02 17:41:50 -0700 | [diff] [blame] | 1053 | |
| 1054 | // We call onHide() aggressively. The custom content callbacks should be able to |
| 1055 | // debounce excess onHide calls. |
| 1056 | if (mWorkspace.getCustomContentCallbacks() != null) { |
| 1057 | mWorkspace.getCustomContentCallbacks().onHide(); |
| 1058 | } |
Romain Guy | cbb89e4 | 2009-06-08 15:52:54 -0700 | [diff] [blame] | 1059 | |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 1060 | if (mLauncherCallbacks != null) { |
| 1061 | mLauncherCallbacks.onPause(); |
Adam Cohen | bffe745 | 2013-07-22 18:21:45 -0700 | [diff] [blame] | 1062 | } |
Adam Cohen | bffe745 | 2013-07-22 18:21:45 -0700 | [diff] [blame] | 1063 | } |
| 1064 | |
| 1065 | public interface CustomContentCallbacks { |
Selim Cinek | 3a8a8f7 | 2014-01-16 10:38:38 -0800 | [diff] [blame] | 1066 | // Custom content is completely shown. {@code fromResume} indicates whether this was caused |
| 1067 | // by a onResume or by scrolling otherwise. |
| 1068 | public void onShow(boolean fromResume); |
Adam Cohen | bffe745 | 2013-07-22 18:21:45 -0700 | [diff] [blame] | 1069 | |
| 1070 | // Custom content is completely hidden |
| 1071 | public void onHide(); |
Adam Cohen | c36fa5c | 2013-08-29 11:54:42 -0700 | [diff] [blame] | 1072 | |
| 1073 | // Custom content scroll progress changed. From 0 (not showing) to 1 (fully showing). |
| 1074 | public void onScrollProgressChanged(float progress); |
Jan-Willem Maarse | 2ff91c4 | 2014-07-10 15:58:12 -0700 | [diff] [blame] | 1075 | |
| 1076 | // Indicates whether the user is allowed to scroll away from the custom content. |
| 1077 | boolean isScrollingAllowed(); |
Adam Cohen | bffe745 | 2013-07-22 18:21:45 -0700 | [diff] [blame] | 1078 | } |
| 1079 | |
Adam Cohen | c2d6e89 | 2014-10-16 09:49:24 -0700 | [diff] [blame] | 1080 | public interface LauncherOverlay { |
| 1081 | |
| 1082 | /** |
| 1083 | * Touch interaction leading to overscroll has begun |
| 1084 | */ |
| 1085 | public void onScrollInteractionBegin(); |
| 1086 | |
| 1087 | /** |
| 1088 | * Touch interaction related to overscroll has ended |
| 1089 | */ |
| 1090 | public void onScrollInteractionEnd(); |
| 1091 | |
| 1092 | /** |
| 1093 | * Scroll progress, between 0 and 100, when the user scrolls beyond the leftmost |
| 1094 | * screen (or in the case of RTL, the rightmost screen). |
| 1095 | */ |
Sunny Goyal | c86df47 | 2016-02-25 09:19:38 -0800 | [diff] [blame] | 1096 | public void onScrollChange(float progress, boolean rtl); |
Adam Cohen | c2d6e89 | 2014-10-16 09:49:24 -0700 | [diff] [blame] | 1097 | |
| 1098 | /** |
Sunny Goyal | 32554d1 | 2015-12-03 15:31:25 -0800 | [diff] [blame] | 1099 | * Called when the launcher is ready to use the overlay |
| 1100 | * @param callbacks A set of callbacks provided by Launcher in relation to the overlay |
Adam Cohen | c2d6e89 | 2014-10-16 09:49:24 -0700 | [diff] [blame] | 1101 | */ |
Sunny Goyal | 32554d1 | 2015-12-03 15:31:25 -0800 | [diff] [blame] | 1102 | public void setOverlayCallbacks(LauncherOverlayCallbacks callbacks); |
Adam Cohen | c2d6e89 | 2014-10-16 09:49:24 -0700 | [diff] [blame] | 1103 | } |
| 1104 | |
Jun Mukai | 8af0cd8 | 2015-05-12 12:32:12 -0700 | [diff] [blame] | 1105 | public interface LauncherSearchCallbacks { |
| 1106 | /** |
| 1107 | * Called when the search overlay is shown. |
| 1108 | */ |
| 1109 | public void onSearchOverlayOpened(); |
| 1110 | |
| 1111 | /** |
| 1112 | * Called when the search overlay is dismissed. |
| 1113 | */ |
| 1114 | public void onSearchOverlayClosed(); |
| 1115 | } |
| 1116 | |
Adam Cohen | c2d6e89 | 2014-10-16 09:49:24 -0700 | [diff] [blame] | 1117 | public interface LauncherOverlayCallbacks { |
Sunny Goyal | c86df47 | 2016-02-25 09:19:38 -0800 | [diff] [blame] | 1118 | public void onScrollChanged(float progress); |
Adam Cohen | c2d6e89 | 2014-10-16 09:49:24 -0700 | [diff] [blame] | 1119 | } |
| 1120 | |
| 1121 | class LauncherOverlayCallbacksImpl implements LauncherOverlayCallbacks { |
| 1122 | |
Sunny Goyal | c86df47 | 2016-02-25 09:19:38 -0800 | [diff] [blame] | 1123 | public void onScrollChanged(float progress) { |
| 1124 | if (mWorkspace != null) { |
| 1125 | mWorkspace.onOverlayScrollChanged(progress); |
| 1126 | } |
| 1127 | } |
Adam Cohen | c2d6e89 | 2014-10-16 09:49:24 -0700 | [diff] [blame] | 1128 | } |
| 1129 | |
Jorim Jaggi | d017f88 | 2014-01-14 17:08:48 -0800 | [diff] [blame] | 1130 | protected boolean hasSettings() { |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 1131 | if (mLauncherCallbacks != null) { |
| 1132 | return mLauncherCallbacks.hasSettings(); |
Rahul Chaturvedi | 7fc77ca | 2015-05-19 18:02:16 -0700 | [diff] [blame] | 1133 | } else { |
| 1134 | // On devices with a locked orientation, we will at least have the allow rotation |
| 1135 | // setting. |
Sunny Goyal | 8f3819b | 2016-02-23 14:49:22 -0800 | [diff] [blame] | 1136 | return !getResources().getBoolean(R.bool.allow_rotation); |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 1137 | } |
Jorim Jaggi | d017f88 | 2014-01-14 17:08:48 -0800 | [diff] [blame] | 1138 | } |
| 1139 | |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 1140 | public void addToCustomContentPage(View customContent, |
Adam Cohen | 5380521 | 2013-10-01 10:39:23 -0700 | [diff] [blame] | 1141 | CustomContentCallbacks callbacks, String description) { |
| 1142 | mWorkspace.addToCustomContentPage(customContent, callbacks, description); |
Adam Cohen | 66a01fd | 2013-06-11 12:48:00 -0700 | [diff] [blame] | 1143 | } |
| 1144 | |
Adam Cohen | edb4076 | 2013-07-18 16:45:45 -0700 | [diff] [blame] | 1145 | // The custom content needs to offset its content to account for the QSB |
| 1146 | public int getTopOffsetForCustomContent() { |
| 1147 | return mWorkspace.getPaddingTop(); |
| 1148 | } |
| 1149 | |
Jeffrey Sharkey | 99c8758 | 2009-03-24 17:59:43 -0700 | [diff] [blame] | 1150 | @Override |
| 1151 | public Object onRetainNonConfigurationInstance() { |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 1152 | // Flag the loader to stop early before switching |
Adam Cohen | 1a85c58 | 2014-09-30 09:48:49 -0700 | [diff] [blame] | 1153 | if (mModel.isCurrentCallbacks(this)) { |
| 1154 | mModel.stopLoader(); |
| 1155 | } |
Hyunyoung Song | 3f47144 | 2015-04-08 19:01:34 -0700 | [diff] [blame] | 1156 | //TODO(hyunyoungs): stop the widgets loader when there is a rotation. |
| 1157 | |
Romain Guy | 13c2e7b | 2010-03-10 19:45:00 -0800 | [diff] [blame] | 1158 | return Boolean.TRUE; |
Jeffrey Sharkey | 99c8758 | 2009-03-24 17:59:43 -0700 | [diff] [blame] | 1159 | } |
The Android Open Source Project | 7376fae | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 1160 | |
Joe Onorato | 2d7e7d0 | 2010-01-29 15:57:19 -0800 | [diff] [blame] | 1161 | // We can't hide the IME if it was forced open. So don't bother |
Joe Onorato | 2d7e7d0 | 2010-01-29 15:57:19 -0800 | [diff] [blame] | 1162 | @Override |
| 1163 | public void onWindowFocusChanged(boolean hasFocus) { |
| 1164 | super.onWindowFocusChanged(hasFocus); |
Adam Cohen | ed307df | 2013-10-02 09:37:31 -0700 | [diff] [blame] | 1165 | mHasFocus = hasFocus; |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 1166 | |
| 1167 | if (mLauncherCallbacks != null) { |
| 1168 | mLauncherCallbacks.onWindowFocusChanged(hasFocus); |
| 1169 | } |
Joe Onorato | 2d7e7d0 | 2010-01-29 15:57:19 -0800 | [diff] [blame] | 1170 | } |
Joe Onorato | 2d7e7d0 | 2010-01-29 15:57:19 -0800 | [diff] [blame] | 1171 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1172 | private boolean acceptFilter() { |
| 1173 | final InputMethodManager inputManager = (InputMethodManager) |
| 1174 | getSystemService(Context.INPUT_METHOD_SERVICE); |
| 1175 | return !inputManager.isFullscreenMode(); |
| 1176 | } |
| 1177 | |
| 1178 | @Override |
| 1179 | public boolean onKeyDown(int keyCode, KeyEvent event) { |
Winson Chung | 97d85d2 | 2011-04-13 11:27:36 -0700 | [diff] [blame] | 1180 | final int uniChar = event.getUnicodeChar(); |
| 1181 | final boolean handled = super.onKeyDown(keyCode, event); |
| 1182 | final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar); |
| 1183 | if (!handled && acceptFilter() && isKeyNotWhitespace) { |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1184 | boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb, |
| 1185 | keyCode, event); |
| 1186 | if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) { |
Karl Rosaen | 138a041 | 2009-04-23 19:00:21 -0700 | [diff] [blame] | 1187 | // something usable has been typed - start a search |
Romain Guy | cbb89e4 | 2009-06-08 15:52:54 -0700 | [diff] [blame] | 1188 | // the typed text will be retrieved and cleared by |
Karl Rosaen | 138a041 | 2009-04-23 19:00:21 -0700 | [diff] [blame] | 1189 | // showSearchDialog() |
| 1190 | // If there are multiple keystrokes before the search dialog takes focus, |
| 1191 | // onSearchRequested() will be called for every keystroke, |
| 1192 | // but it is idempotent, so it's fine. |
| 1193 | return onSearchRequested(); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1194 | } |
| 1195 | } |
| 1196 | |
Joe Onorato | 8a9625e | 2010-01-28 15:55:35 -0800 | [diff] [blame] | 1197 | // Eat the long press event so the keyboard doesn't come up. |
| 1198 | if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) { |
| 1199 | return true; |
| 1200 | } |
| 1201 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1202 | return handled; |
| 1203 | } |
| 1204 | |
Winson | 4616347 | 2015-09-22 17:31:56 -0700 | [diff] [blame] | 1205 | @Override |
| 1206 | public boolean onKeyUp(int keyCode, KeyEvent event) { |
| 1207 | if (keyCode == KeyEvent.KEYCODE_MENU) { |
| 1208 | // Ignore the menu key if we are currently dragging or are on the custom content screen |
| 1209 | if (!isOnCustomContent() && !mDragController.isDragging()) { |
| 1210 | // Close any open folders |
| 1211 | closeFolder(); |
| 1212 | |
Tony Wickham | 49c8d29 | 2016-07-01 11:44:34 -0700 | [diff] [blame] | 1213 | // Close any shortcuts containers |
| 1214 | closeShortcutsContainer(); |
| 1215 | |
Winson | 4616347 | 2015-09-22 17:31:56 -0700 | [diff] [blame] | 1216 | // Stop resizing any widgets |
| 1217 | mWorkspace.exitWidgetResizeMode(); |
| 1218 | |
| 1219 | // Show the overview mode if we are on the workspace |
| 1220 | if (mState == State.WORKSPACE && !mWorkspace.isInOverviewMode() && |
| 1221 | !mWorkspace.isSwitchingState()) { |
| 1222 | mOverviewPanel.requestFocus(); |
Winson | e9f2727 | 2015-10-13 10:47:51 -0700 | [diff] [blame] | 1223 | showOverviewMode(true, true /* requestButtonFocus */); |
Winson | 4616347 | 2015-09-22 17:31:56 -0700 | [diff] [blame] | 1224 | } |
| 1225 | } |
| 1226 | return true; |
| 1227 | } |
| 1228 | return super.onKeyUp(keyCode, event); |
| 1229 | } |
| 1230 | |
Karl Rosaen | 138a041 | 2009-04-23 19:00:21 -0700 | [diff] [blame] | 1231 | private String getTypedText() { |
| 1232 | return mDefaultKeySsb.toString(); |
| 1233 | } |
| 1234 | |
| 1235 | private void clearTypedText() { |
| 1236 | mDefaultKeySsb.clear(); |
| 1237 | mDefaultKeySsb.clearSpans(); |
| 1238 | Selection.setSelection(mDefaultKeySsb, 0); |
| 1239 | } |
| 1240 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1241 | /** |
Michael Jurka | 883f55b | 2010-10-21 15:47:14 -0700 | [diff] [blame] | 1242 | * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type |
| 1243 | * State |
| 1244 | */ |
| 1245 | private static State intToState(int stateOrdinal) { |
| 1246 | State state = State.WORKSPACE; |
| 1247 | final State[] stateValues = State.values(); |
| 1248 | for (int i = 0; i < stateValues.length; i++) { |
| 1249 | if (stateValues[i].ordinal() == stateOrdinal) { |
| 1250 | state = stateValues[i]; |
| 1251 | break; |
| 1252 | } |
| 1253 | } |
| 1254 | return state; |
| 1255 | } |
| 1256 | |
| 1257 | /** |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1258 | * Restores the previous state, if it exists. |
| 1259 | * |
| 1260 | * @param savedState The previous state. |
| 1261 | */ |
| 1262 | private void restoreState(Bundle savedState) { |
| 1263 | if (savedState == null) { |
| 1264 | return; |
| 1265 | } |
| 1266 | |
Michael Jurka | 883f55b | 2010-10-21 15:47:14 -0700 | [diff] [blame] | 1267 | State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal())); |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 1268 | if (state == State.APPS || state == State.WIDGETS) { |
| 1269 | mOnResumeState = state; |
Joe Onorato | 3a8820b | 2009-11-10 15:06:42 -0800 | [diff] [blame] | 1270 | } |
| 1271 | |
Adam Cohen | 21cd002 | 2013-10-09 18:57:02 -0700 | [diff] [blame] | 1272 | int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN, |
| 1273 | PagedView.INVALID_RESTORE_PAGE); |
| 1274 | if (currentScreen != PagedView.INVALID_RESTORE_PAGE) { |
Winson Chung | 8c87cd8 | 2013-07-23 16:20:10 -0700 | [diff] [blame] | 1275 | mWorkspace.setRestorePage(currentScreen); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1276 | } |
| 1277 | |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 1278 | PendingRequestArgs requestArgs = savedState.getParcelable(RUNTIME_STATE_PENDING_REQUEST_ARGS); |
| 1279 | if (requestArgs != null) { |
| 1280 | setWaitingForResult(requestArgs); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1281 | } |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 1282 | |
| 1283 | mPendingActivityResult = savedState.getParcelable(RUNTIME_STATE_PENDING_ACTIVITY_RESULT); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1284 | } |
| 1285 | |
| 1286 | /** |
| 1287 | * Finds all the views we need and configure them properly. |
| 1288 | */ |
| 1289 | private void setupViews() { |
Craig Mautner | 360310b | 2012-10-26 15:13:08 -0700 | [diff] [blame] | 1290 | mLauncherView = findViewById(R.id.launcher); |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 1291 | mDragLayer = (DragLayer) findViewById(R.id.drag_layer); |
Sunny Goyal | 3333b0c | 2016-05-09 20:43:21 -0700 | [diff] [blame] | 1292 | mFocusHandler = mDragLayer.getFocusIndicatorHelper(); |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 1293 | mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace); |
Sunny Goyal | 6178f13 | 2016-07-11 17:30:03 -0700 | [diff] [blame] | 1294 | mQsbContainer = mDragLayer.findViewById(mDeviceProfile.isVerticalBarLayout() |
| 1295 | ? R.id.workspace_blocked_row : R.id.qsb_container); |
Sunny Goyal | d0a6ae7 | 2016-06-16 12:29:03 -0700 | [diff] [blame] | 1296 | mWorkspace.initParentViews(mDragLayer); |
Craig Mautner | 360310b | 2012-10-26 15:13:08 -0700 | [diff] [blame] | 1297 | |
Sunny Goyal | 784f9c3 | 2016-03-23 16:56:54 -0700 | [diff] [blame] | 1298 | mLauncherView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN |
| 1299 | | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION |
| 1300 | | View.SYSTEM_UI_FLAG_LAYOUT_STABLE); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1301 | |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 1302 | // Setup the drag layer |
Hyunyoung Song | 645764e | 2016-06-06 14:19:02 -0700 | [diff] [blame] | 1303 | mDragLayer.setup(this, mDragController, mAllAppsController); |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 1304 | |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 1305 | // Setup the hotseat |
| 1306 | mHotseat = (Hotseat) findViewById(R.id.hotseat); |
| 1307 | if (mHotseat != null) { |
Winson Chung | 11a1a53 | 2013-09-13 11:14:45 -0700 | [diff] [blame] | 1308 | mHotseat.setOnLongClickListener(this); |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 1309 | } |
| 1310 | |
Winson | e9f2727 | 2015-10-13 10:47:51 -0700 | [diff] [blame] | 1311 | // Setup the overview panel |
| 1312 | setupOverviewPanel(); |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 1313 | |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 1314 | // Setup the workspace |
| 1315 | mWorkspace.setHapticFeedbackEnabled(false); |
| 1316 | mWorkspace.setOnLongClickListener(this); |
Hyunyoung Song | 645764e | 2016-06-06 14:19:02 -0700 | [diff] [blame] | 1317 | mWorkspace.setup(mDragController); |
Winson | c7d2e83 | 2016-07-28 12:24:55 -0700 | [diff] [blame] | 1318 | // Until the workspace is bound, ensure that we keep the wallpaper offset locked to the |
| 1319 | // default state, otherwise we will update to the wrong offsets in RTL |
| 1320 | mWorkspace.lockWallpaperToDefaultPage(); |
Sunny Goyal | da4fe1a | 2016-05-26 16:05:17 -0700 | [diff] [blame] | 1321 | mWorkspace.bindAndInitFirstWorkspaceScreen(null /* recycled qsb */); |
Hyunyoung Song | 645764e | 2016-06-06 14:19:02 -0700 | [diff] [blame] | 1322 | mDragController.addDragListener(mWorkspace); |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 1323 | |
Tony Wickham | 34d2c91 | 2015-09-11 09:27:58 -0700 | [diff] [blame] | 1324 | // Get the search/delete/uninstall bar |
Sunny Goyal | 47328fd | 2016-05-25 18:56:41 -0700 | [diff] [blame] | 1325 | mDropTargetBar = (DropTargetBar) mDragLayer.findViewById(R.id.drop_target_bar); |
Patrick Dubroy | 3ec8bdd | 2010-08-06 16:01:33 -0700 | [diff] [blame] | 1326 | |
Winson Chung | ef7f874 | 2015-06-04 17:18:17 -0700 | [diff] [blame] | 1327 | // Setup Apps and Widgets |
Winson Chung | 5f4e0fd | 2015-05-22 11:12:27 -0700 | [diff] [blame] | 1328 | mAppsView = (AllAppsContainerView) findViewById(R.id.apps_view); |
Hyunyoung Song | 3f47144 | 2015-04-08 19:01:34 -0700 | [diff] [blame] | 1329 | mWidgetsView = (WidgetsContainerView) findViewById(R.id.widgets_view); |
Sunny Goyal | f51084c | 2016-02-18 00:40:49 +0000 | [diff] [blame] | 1330 | if (mLauncherCallbacks != null && mLauncherCallbacks.getAllAppsSearchBarController() != null) { |
| 1331 | mAppsView.setSearchBarController(mLauncherCallbacks.getAllAppsSearchBarController()); |
| 1332 | } else { |
| 1333 | mAppsView.setSearchBarController(new DefaultAppSearchController()); |
| 1334 | } |
Craig Mautner | 360310b | 2012-10-26 15:13:08 -0700 | [diff] [blame] | 1335 | |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 1336 | // Setup the drag controller (drop targets have to be added in reverse order in priority) |
Hyunyoung Song | 645764e | 2016-06-06 14:19:02 -0700 | [diff] [blame] | 1337 | mDragController.setDragScoller(mWorkspace); |
| 1338 | mDragController.setScrollView(mDragLayer); |
| 1339 | mDragController.setMoveTarget(mWorkspace); |
| 1340 | mDragController.addDropTarget(mWorkspace); |
Sunny Goyal | 47328fd | 2016-05-25 18:56:41 -0700 | [diff] [blame] | 1341 | mDropTargetBar.setup(mDragController); |
Daniel Sandler | 924b993 | 2013-06-12 00:38:25 -0400 | [diff] [blame] | 1342 | |
Peter Schiller | 310a988 | 2016-06-30 13:52:36 -0700 | [diff] [blame] | 1343 | if (FeatureFlags.LAUNCHER3_ALL_APPS_PULL_UP) { |
| 1344 | mAllAppsController.setupViews(mAppsView, mHotseat, mWorkspace); |
| 1345 | } |
Hyunyoung Song | a0c5647 | 2016-06-20 13:54:42 -0700 | [diff] [blame] | 1346 | |
Sunny Goyal | 322d556 | 2015-06-25 19:35:49 -0700 | [diff] [blame] | 1347 | if (TestingUtils.MEMORY_DUMP_ENABLED) { |
| 1348 | TestingUtils.addWeightWatcher(this); |
Daniel Sandler | 924b993 | 2013-06-12 00:38:25 -0400 | [diff] [blame] | 1349 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1350 | } |
| 1351 | |
Winson | e9f2727 | 2015-10-13 10:47:51 -0700 | [diff] [blame] | 1352 | private void setupOverviewPanel() { |
| 1353 | mOverviewPanel = (ViewGroup) findViewById(R.id.overview_panel); |
| 1354 | |
| 1355 | // Long-clicking buttons in the overview panel does the same thing as clicking them. |
| 1356 | OnLongClickListener performClickOnLongClick = new OnLongClickListener() { |
| 1357 | @Override |
| 1358 | public boolean onLongClick(View v) { |
| 1359 | return v.performClick(); |
| 1360 | } |
| 1361 | }; |
| 1362 | |
| 1363 | // Bind wallpaper button actions |
| 1364 | View wallpaperButton = findViewById(R.id.wallpaper_button); |
| 1365 | wallpaperButton.setOnClickListener(new OnClickListener() { |
| 1366 | @Override |
| 1367 | public void onClick(View view) { |
| 1368 | if (!mWorkspace.isSwitchingState()) { |
| 1369 | onClickWallpaperPicker(view); |
| 1370 | } |
| 1371 | } |
| 1372 | }); |
| 1373 | wallpaperButton.setOnLongClickListener(performClickOnLongClick); |
| 1374 | wallpaperButton.setOnTouchListener(getHapticFeedbackTouchListener()); |
| 1375 | |
| 1376 | // Bind widget button actions |
| 1377 | mWidgetsButton = findViewById(R.id.widget_button); |
| 1378 | mWidgetsButton.setOnClickListener(new OnClickListener() { |
| 1379 | @Override |
| 1380 | public void onClick(View view) { |
| 1381 | if (!mWorkspace.isSwitchingState()) { |
| 1382 | onClickAddWidgetButton(view); |
| 1383 | } |
| 1384 | } |
| 1385 | }); |
| 1386 | mWidgetsButton.setOnLongClickListener(performClickOnLongClick); |
| 1387 | mWidgetsButton.setOnTouchListener(getHapticFeedbackTouchListener()); |
| 1388 | |
| 1389 | // Bind settings actions |
| 1390 | View settingsButton = findViewById(R.id.settings_button); |
| 1391 | boolean hasSettings = hasSettings(); |
| 1392 | if (hasSettings) { |
| 1393 | settingsButton.setOnClickListener(new OnClickListener() { |
| 1394 | @Override |
| 1395 | public void onClick(View view) { |
| 1396 | if (!mWorkspace.isSwitchingState()) { |
| 1397 | onClickSettingsButton(view); |
| 1398 | } |
| 1399 | } |
| 1400 | }); |
| 1401 | settingsButton.setOnLongClickListener(performClickOnLongClick); |
| 1402 | settingsButton.setOnTouchListener(getHapticFeedbackTouchListener()); |
| 1403 | } else { |
| 1404 | settingsButton.setVisibility(View.GONE); |
| 1405 | } |
| 1406 | |
| 1407 | mOverviewPanel.setAlpha(0f); |
| 1408 | } |
| 1409 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1410 | /** |
Anjali Koppal | 5ad4484 | 2014-03-10 20:34:39 -0700 | [diff] [blame] | 1411 | * Sets the all apps button. This method is called from {@link Hotseat}. |
Sunny Goyal | bb011da | 2016-06-15 15:42:29 -0700 | [diff] [blame] | 1412 | * TODO: Get rid of this. |
Anjali Koppal | 5ad4484 | 2014-03-10 20:34:39 -0700 | [diff] [blame] | 1413 | */ |
| 1414 | public void setAllAppsButton(View allAppsButton) { |
| 1415 | mAllAppsButton = allAppsButton; |
| 1416 | } |
| 1417 | |
Sunny Goyal | bb011da | 2016-06-15 15:42:29 -0700 | [diff] [blame] | 1418 | public View getStartViewForAllAppsRevealAnimation() { |
Sunny Goyal | 2e08409 | 2016-06-22 14:37:34 -0700 | [diff] [blame] | 1419 | return FeatureFlags.NO_ALL_APPS_ICON ? mWorkspace.getPageIndicator() : mAllAppsButton; |
Anjali Koppal | 5ad4484 | 2014-03-10 20:34:39 -0700 | [diff] [blame] | 1420 | } |
| 1421 | |
Hyunyoung Song | 98ff38a | 2015-07-10 17:50:13 -0700 | [diff] [blame] | 1422 | public View getWidgetsButton() { |
| 1423 | return mWidgetsButton; |
| 1424 | } |
| 1425 | |
Anjali Koppal | 5ad4484 | 2014-03-10 20:34:39 -0700 | [diff] [blame] | 1426 | /** |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1427 | * Creates a view representing a shortcut. |
| 1428 | * |
| 1429 | * @param info The data structure describing the shortcut. |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1430 | */ |
Joe Onorato | 0589f0f | 2010-02-08 13:44:00 -0800 | [diff] [blame] | 1431 | View createShortcut(ShortcutInfo info) { |
Sunny Goyal | dfaccf6 | 2015-05-11 16:30:44 -0700 | [diff] [blame] | 1432 | return createShortcut((ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1433 | } |
| 1434 | |
| 1435 | /** |
| 1436 | * Creates a view representing a shortcut inflated from the specified resource. |
| 1437 | * |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1438 | * @param parent The group the shortcut belongs to. |
| 1439 | * @param info The data structure describing the shortcut. |
| 1440 | * |
| 1441 | * @return A View inflated from layoutResId. |
| 1442 | */ |
Sunny Goyal | dfaccf6 | 2015-05-11 16:30:44 -0700 | [diff] [blame] | 1443 | public View createShortcut(ViewGroup parent, ShortcutInfo info) { |
Sunny Goyal | 756cd26 | 2015-08-20 12:33:21 -0700 | [diff] [blame] | 1444 | BubbleTextView favorite = (BubbleTextView) getLayoutInflater().inflate(R.layout.app_icon, |
Sunny Goyal | dfaccf6 | 2015-05-11 16:30:44 -0700 | [diff] [blame] | 1445 | parent, false); |
| 1446 | favorite.applyFromShortcutInfo(info, mIconCache); |
| 1447 | favorite.setCompoundDrawablePadding(mDeviceProfile.iconDrawablePaddingPx); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1448 | favorite.setOnClickListener(this); |
Sunny Goyal | dcbcc86 | 2014-08-12 15:58:36 -0700 | [diff] [blame] | 1449 | favorite.setOnFocusChangeListener(mFocusHandler); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1450 | return favorite; |
| 1451 | } |
| 1452 | |
| 1453 | /** |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1454 | * Add a shortcut to the workspace. |
| 1455 | * |
| 1456 | * @param data The intent describing the shortcut. |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1457 | */ |
Adam Cohen | dcd297f | 2013-06-18 13:13:40 -0700 | [diff] [blame] | 1458 | private void completeAddShortcut(Intent data, long container, long screenId, int cellX, |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 1459 | int cellY) { |
| 1460 | int[] cellXY = mTmpAddItemCellCoordinates; |
Adam Cohen | dcd297f | 2013-06-18 13:13:40 -0700 | [diff] [blame] | 1461 | CellLayout layout = getCellLayout(container, screenId); |
Romain Guy | cbb89e4 | 2009-06-08 15:52:54 -0700 | [diff] [blame] | 1462 | |
Sunny Goyal | 5c97f51 | 2015-05-19 16:03:28 -0700 | [diff] [blame] | 1463 | ShortcutInfo info = InstallShortcutReceiver.fromShortcutIntent(this, data); |
Adam Cohen | d919882 | 2011-11-22 16:42:47 -0800 | [diff] [blame] | 1464 | if (info == null) { |
| 1465 | return; |
| 1466 | } |
Adam Cohen | 558baaf | 2011-08-15 15:22:57 -0700 | [diff] [blame] | 1467 | final View view = createShortcut(info); |
| 1468 | |
Sunny Goyal | 5c97f51 | 2015-05-19 16:03:28 -0700 | [diff] [blame] | 1469 | boolean foundCellSpan = false; |
Adam Cohen | fbba09b | 2011-07-18 21:43:05 -0700 | [diff] [blame] | 1470 | // First we check if we already know the exact location where we want to add this item. |
| 1471 | if (cellX >= 0 && cellY >= 0) { |
| 1472 | cellXY[0] = cellX; |
| 1473 | cellXY[1] = cellY; |
| 1474 | foundCellSpan = true; |
Adam Cohen | 558baaf | 2011-08-15 15:22:57 -0700 | [diff] [blame] | 1475 | |
| 1476 | // If appropriate, either create a folder or add to an existing folder |
Adam Cohen | 482ed82 | 2012-03-02 14:15:13 -0800 | [diff] [blame] | 1477 | if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0, |
Adam Cohen | 558baaf | 2011-08-15 15:22:57 -0700 | [diff] [blame] | 1478 | true, null,null)) { |
| 1479 | return; |
| 1480 | } |
| 1481 | DragObject dragObject = new DragObject(); |
| 1482 | dragObject.dragInfo = info; |
Adam Cohen | 482ed82 | 2012-03-02 14:15:13 -0800 | [diff] [blame] | 1483 | if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject, |
| 1484 | true)) { |
Adam Cohen | 558baaf | 2011-08-15 15:22:57 -0700 | [diff] [blame] | 1485 | return; |
| 1486 | } |
Michael Jurka | d3ef306 | 2010-11-23 16:23:58 -0800 | [diff] [blame] | 1487 | } else { |
Adam Cohen | fbba09b | 2011-07-18 21:43:05 -0700 | [diff] [blame] | 1488 | foundCellSpan = layout.findCellForSpan(cellXY, 1, 1); |
Michael Jurka | d3ef306 | 2010-11-23 16:23:58 -0800 | [diff] [blame] | 1489 | } |
| 1490 | |
| 1491 | if (!foundCellSpan) { |
Winson Chung | 93eef08 | 2012-03-23 15:59:27 -0700 | [diff] [blame] | 1492 | showOutOfSpaceMessage(isHotseatLayout(layout)); |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 1493 | return; |
| 1494 | } |
| 1495 | |
Sunny Goyal | 1d4a2df | 2015-03-30 11:11:46 -0700 | [diff] [blame] | 1496 | LauncherModel.addItemToDatabase(this, info, container, screenId, cellXY[0], cellXY[1]); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1497 | |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 1498 | mWorkspace.addInScreen(view, container, screenId, cellXY[0], cellXY[1], 1, 1, |
| 1499 | isWorkspaceLocked()); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1500 | } |
| 1501 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1502 | /** |
The Android Open Source Project | 7376fae | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 1503 | * Add a widget to the workspace. |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1504 | * |
Romain Guy | 5bbc91b | 2010-08-18 11:38:46 -0700 | [diff] [blame] | 1505 | * @param appWidgetId The app widget id |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1506 | */ |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 1507 | @Thunk void completeAddAppWidget(int appWidgetId, ItemInfo itemInfo, |
Adam Cohen | 5940042 | 2014-03-05 18:07:04 -0800 | [diff] [blame] | 1508 | AppWidgetHostView hostView, LauncherAppWidgetProviderInfo appWidgetInfo) { |
| 1509 | |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 1510 | if (appWidgetInfo == null) { |
Sunny Goyal | 2e1efb4 | 2016-03-03 16:58:55 -0800 | [diff] [blame] | 1511 | appWidgetInfo = mAppWidgetManager.getLauncherAppWidgetInfo(appWidgetId); |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 1512 | } |
Romain Guy | cbb89e4 | 2009-06-08 15:52:54 -0700 | [diff] [blame] | 1513 | |
Adam Cohen | 5940042 | 2014-03-05 18:07:04 -0800 | [diff] [blame] | 1514 | if (appWidgetInfo.isCustomWidget) { |
| 1515 | appWidgetId = LauncherAppWidgetInfo.CUSTOM_WIDGET_ID; |
Michael Jurka | a63c452 | 2010-08-19 13:52:27 -0700 | [diff] [blame] | 1516 | } |
| 1517 | |
Adam Cohen | 5940042 | 2014-03-05 18:07:04 -0800 | [diff] [blame] | 1518 | LauncherAppWidgetInfo launcherInfo; |
| 1519 | launcherInfo = new LauncherAppWidgetInfo(appWidgetId, appWidgetInfo.provider); |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 1520 | launcherInfo.spanX = itemInfo.spanX; |
| 1521 | launcherInfo.spanY = itemInfo.spanY; |
| 1522 | launcherInfo.minSpanX = itemInfo.minSpanX; |
| 1523 | launcherInfo.minSpanY = itemInfo.minSpanY; |
Sunny Goyal | ffe83f1 | 2014-08-14 17:39:34 -0700 | [diff] [blame] | 1524 | launcherInfo.user = mAppWidgetManager.getUser(appWidgetInfo); |
Romain Guy | cbb89e4 | 2009-06-08 15:52:54 -0700 | [diff] [blame] | 1525 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1526 | LauncherModel.addItemToDatabase(this, launcherInfo, |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 1527 | itemInfo.container, itemInfo.screenId, itemInfo.cellX, itemInfo.cellY); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1528 | |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 1529 | if (hostView == null) { |
| 1530 | // Perform actual inflation because we're live |
| 1531 | hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1532 | } |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 1533 | hostView.setVisibility(View.VISIBLE); |
| 1534 | addAppWidgetToWorkspace(hostView, launcherInfo, appWidgetInfo, isWorkspaceLocked()); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1535 | } |
Romain Guy | cbb89e4 | 2009-06-08 15:52:54 -0700 | [diff] [blame] | 1536 | |
Sunny Goyal | 87af0fd | 2016-05-16 14:56:02 -0700 | [diff] [blame] | 1537 | private void addAppWidgetToWorkspace( |
| 1538 | AppWidgetHostView hostView, LauncherAppWidgetInfo item, |
Sunny Goyal | 25c2e3e | 2015-10-28 23:28:21 -0700 | [diff] [blame] | 1539 | LauncherAppWidgetProviderInfo appWidgetInfo, boolean insert) { |
Sunny Goyal | 87af0fd | 2016-05-16 14:56:02 -0700 | [diff] [blame] | 1540 | hostView.setTag(item); |
| 1541 | item.onBindAppWidget(this, hostView); |
Sunny Goyal | 25c2e3e | 2015-10-28 23:28:21 -0700 | [diff] [blame] | 1542 | |
Sunny Goyal | 87af0fd | 2016-05-16 14:56:02 -0700 | [diff] [blame] | 1543 | hostView.setFocusable(true); |
| 1544 | hostView.setOnFocusChangeListener(mFocusHandler); |
Sunny Goyal | 25c2e3e | 2015-10-28 23:28:21 -0700 | [diff] [blame] | 1545 | |
Sunny Goyal | 87af0fd | 2016-05-16 14:56:02 -0700 | [diff] [blame] | 1546 | mWorkspace.addInScreen(hostView, item.container, item.screenId, |
Sunny Goyal | 25c2e3e | 2015-10-28 23:28:21 -0700 | [diff] [blame] | 1547 | item.cellX, item.cellY, item.spanX, item.spanY, insert); |
| 1548 | |
| 1549 | if (!item.isCustomWidget()) { |
Sunny Goyal | 87af0fd | 2016-05-16 14:56:02 -0700 | [diff] [blame] | 1550 | addWidgetToAutoAdvanceIfNeeded(hostView, appWidgetInfo); |
Sunny Goyal | 25c2e3e | 2015-10-28 23:28:21 -0700 | [diff] [blame] | 1551 | } |
| 1552 | } |
| 1553 | |
Adam Cohen | ded9f8d | 2010-11-03 13:25:16 -0700 | [diff] [blame] | 1554 | private final BroadcastReceiver mReceiver = new BroadcastReceiver() { |
| 1555 | @Override |
| 1556 | public void onReceive(Context context, Intent intent) { |
| 1557 | final String action = intent.getAction(); |
| 1558 | if (Intent.ACTION_SCREEN_OFF.equals(action)) { |
| 1559 | mUserPresent = false; |
Adam Cohen | bec6ac5 | 2011-07-19 20:50:27 -0700 | [diff] [blame] | 1560 | mDragLayer.clearAllResizeFrames(); |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 1561 | updateAutoAdvanceState(); |
Winson Chung | 337cd9d | 2011-03-30 10:39:30 -0700 | [diff] [blame] | 1562 | |
Winson Chung | c100e8e | 2011-08-09 16:02:43 -0700 | [diff] [blame] | 1563 | // Reset AllApps to its initial state only if we are not in the middle of |
Winson Chung | b8472bb | 2011-08-05 13:49:21 -0700 | [diff] [blame] | 1564 | // processing a multi-step drop |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 1565 | if (mAppsView != null && mWidgetsView != null && mPendingRequestArgs == null) { |
Winson | 5c6bdbb | 2015-09-03 11:36:19 -0700 | [diff] [blame] | 1566 | if (!showWorkspace(false)) { |
| 1567 | // If we are already on the workspace, then manually reset all apps |
| 1568 | mAppsView.reset(); |
| 1569 | } |
Winson Chung | 785d2eb | 2011-04-14 16:08:02 -0700 | [diff] [blame] | 1570 | } |
Hyunyoung Song | c001cf5 | 2016-07-21 17:32:43 -0700 | [diff] [blame] | 1571 | mIsResumeFromActionScreenOff = true; |
Adam Cohen | ded9f8d | 2010-11-03 13:25:16 -0700 | [diff] [blame] | 1572 | } else if (Intent.ACTION_USER_PRESENT.equals(action)) { |
| 1573 | mUserPresent = true; |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 1574 | updateAutoAdvanceState(); |
Adam Cohen | ded9f8d | 2010-11-03 13:25:16 -0700 | [diff] [blame] | 1575 | } |
| 1576 | } |
| 1577 | }; |
| 1578 | |
| 1579 | @Override |
| 1580 | public void onAttachedToWindow() { |
| 1581 | super.onAttachedToWindow(); |
| 1582 | |
| 1583 | // Listen for broadcasts related to user-presence |
| 1584 | final IntentFilter filter = new IntentFilter(); |
| 1585 | filter.addAction(Intent.ACTION_SCREEN_OFF); |
| 1586 | filter.addAction(Intent.ACTION_USER_PRESENT); |
| 1587 | registerReceiver(mReceiver, filter); |
Michael Jurka | f1ad608 | 2013-03-13 12:55:46 +0100 | [diff] [blame] | 1588 | FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView()); |
Adam Cohen | d113e0c | 2010-11-11 10:48:05 -0800 | [diff] [blame] | 1589 | mAttached = true; |
Adam Cohen | ded9f8d | 2010-11-03 13:25:16 -0700 | [diff] [blame] | 1590 | mVisible = true; |
Sunny Goyal | c86df47 | 2016-02-25 09:19:38 -0800 | [diff] [blame] | 1591 | |
| 1592 | if (mLauncherCallbacks != null) { |
| 1593 | mLauncherCallbacks.onAttachedToWindow(); |
| 1594 | } |
Adam Cohen | ded9f8d | 2010-11-03 13:25:16 -0700 | [diff] [blame] | 1595 | } |
| 1596 | |
| 1597 | @Override |
| 1598 | public void onDetachedFromWindow() { |
| 1599 | super.onDetachedFromWindow(); |
| 1600 | mVisible = false; |
| 1601 | |
Adam Cohen | d113e0c | 2010-11-11 10:48:05 -0800 | [diff] [blame] | 1602 | if (mAttached) { |
| 1603 | unregisterReceiver(mReceiver); |
| 1604 | mAttached = false; |
| 1605 | } |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 1606 | updateAutoAdvanceState(); |
Sunny Goyal | c86df47 | 2016-02-25 09:19:38 -0800 | [diff] [blame] | 1607 | |
| 1608 | if (mLauncherCallbacks != null) { |
| 1609 | mLauncherCallbacks.onDetachedFromWindow(); |
| 1610 | } |
Adam Cohen | ded9f8d | 2010-11-03 13:25:16 -0700 | [diff] [blame] | 1611 | } |
| 1612 | |
| 1613 | public void onWindowVisibilityChanged(int visibility) { |
| 1614 | mVisible = visibility == View.VISIBLE; |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 1615 | updateAutoAdvanceState(); |
Michael Jurka | 2a4b1a8 | 2011-12-07 14:00:02 -0800 | [diff] [blame] | 1616 | // The following code used to be in onResume, but it turns out onResume is called when |
| 1617 | // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged |
| 1618 | // is a more appropriate event to handle |
| 1619 | if (mVisible) { |
Michael Jurka | 2a4b1a8 | 2011-12-07 14:00:02 -0800 | [diff] [blame] | 1620 | if (!mWorkspaceLoading) { |
| 1621 | final ViewTreeObserver observer = mWorkspace.getViewTreeObserver(); |
Michael Jurka | 2a4b1a8 | 2011-12-07 14:00:02 -0800 | [diff] [blame] | 1622 | // We want to let Launcher draw itself at least once before we force it to build |
| 1623 | // layers on all the workspace pages, so that transitioning to Launcher from other |
Michael Jurka | f1ad608 | 2013-03-13 12:55:46 +0100 | [diff] [blame] | 1624 | // apps is nice and speedy. |
| 1625 | observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() { |
Michael Jurka | df96add | 2013-04-03 16:25:02 -0700 | [diff] [blame] | 1626 | private boolean mStarted = false; |
Michael Jurka | f1ad608 | 2013-03-13 12:55:46 +0100 | [diff] [blame] | 1627 | public void onDraw() { |
Michael Jurka | df96add | 2013-04-03 16:25:02 -0700 | [diff] [blame] | 1628 | if (mStarted) return; |
| 1629 | mStarted = true; |
Michael Jurka | 6ee21d2 | 2012-02-21 18:20:27 -0800 | [diff] [blame] | 1630 | // We delay the layer building a bit in order to give |
| 1631 | // other message processing a time to run. In particular |
| 1632 | // this avoids a delay in hiding the IME if it was |
| 1633 | // currently shown, because doing that may involve |
| 1634 | // some communication back with the app. |
Winson Chung | aeae56b | 2012-02-24 15:47:27 -0800 | [diff] [blame] | 1635 | mWorkspace.postDelayed(mBuildLayersRunnable, 500); |
Michael Jurka | df96add | 2013-04-03 16:25:02 -0700 | [diff] [blame] | 1636 | final ViewTreeObserver.OnDrawListener listener = this; |
| 1637 | mWorkspace.post(new Runnable() { |
Tony Wickham | a0628cc | 2015-10-14 15:23:04 -0700 | [diff] [blame] | 1638 | public void run() { |
| 1639 | if (mWorkspace != null && |
| 1640 | mWorkspace.getViewTreeObserver() != null) { |
| 1641 | mWorkspace.getViewTreeObserver(). |
| 1642 | removeOnDrawListener(listener); |
Michael Jurka | df96add | 2013-04-03 16:25:02 -0700 | [diff] [blame] | 1643 | } |
Tony Wickham | a0628cc | 2015-10-14 15:23:04 -0700 | [diff] [blame] | 1644 | } |
| 1645 | }); |
Michael Jurka | f1ad608 | 2013-03-13 12:55:46 +0100 | [diff] [blame] | 1646 | return; |
Michael Jurka | 2a4b1a8 | 2011-12-07 14:00:02 -0800 | [diff] [blame] | 1647 | } |
| 1648 | }); |
| 1649 | } |
| 1650 | clearTypedText(); |
| 1651 | } |
Adam Cohen | ded9f8d | 2010-11-03 13:25:16 -0700 | [diff] [blame] | 1652 | } |
| 1653 | |
Adam Cohen | 091440a | 2015-03-18 14:16:05 -0700 | [diff] [blame] | 1654 | @Thunk void sendAdvanceMessage(long delay) { |
Adam Cohen | ded9f8d | 2010-11-03 13:25:16 -0700 | [diff] [blame] | 1655 | mHandler.removeMessages(ADVANCE_MSG); |
| 1656 | Message msg = mHandler.obtainMessage(ADVANCE_MSG); |
| 1657 | mHandler.sendMessageDelayed(msg, delay); |
| 1658 | mAutoAdvanceSentTime = System.currentTimeMillis(); |
| 1659 | } |
| 1660 | |
Adam Cohen | 091440a | 2015-03-18 14:16:05 -0700 | [diff] [blame] | 1661 | @Thunk void updateAutoAdvanceState() { |
Adam Cohen | ded9f8d | 2010-11-03 13:25:16 -0700 | [diff] [blame] | 1662 | boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty(); |
| 1663 | if (autoAdvanceRunning != mAutoAdvanceRunning) { |
| 1664 | mAutoAdvanceRunning = autoAdvanceRunning; |
| 1665 | if (autoAdvanceRunning) { |
Sunny Goyal | 756cd26 | 2015-08-20 12:33:21 -0700 | [diff] [blame] | 1666 | long delay = mAutoAdvanceTimeLeft == -1 ? ADVANCE_INTERVAL : mAutoAdvanceTimeLeft; |
Adam Cohen | ded9f8d | 2010-11-03 13:25:16 -0700 | [diff] [blame] | 1667 | sendAdvanceMessage(delay); |
| 1668 | } else { |
| 1669 | if (!mWidgetsToAdvance.isEmpty()) { |
Sunny Goyal | 756cd26 | 2015-08-20 12:33:21 -0700 | [diff] [blame] | 1670 | mAutoAdvanceTimeLeft = Math.max(0, ADVANCE_INTERVAL - |
Adam Cohen | ded9f8d | 2010-11-03 13:25:16 -0700 | [diff] [blame] | 1671 | (System.currentTimeMillis() - mAutoAdvanceSentTime)); |
| 1672 | } |
| 1673 | mHandler.removeMessages(ADVANCE_MSG); |
Patrick Dubroy | 2313eff | 2011-01-11 20:01:31 -0800 | [diff] [blame] | 1674 | mHandler.removeMessages(0); // Remove messages sent using postDelayed() |
Adam Cohen | ded9f8d | 2010-11-03 13:25:16 -0700 | [diff] [blame] | 1675 | } |
| 1676 | } |
| 1677 | } |
| 1678 | |
Sunny Goyal | 4f3e938 | 2015-06-05 00:13:25 -0700 | [diff] [blame] | 1679 | @Thunk final Handler mHandler = new Handler(new Handler.Callback() { |
| 1680 | |
Adam Cohen | ded9f8d | 2010-11-03 13:25:16 -0700 | [diff] [blame] | 1681 | @Override |
Sunny Goyal | 4f3e938 | 2015-06-05 00:13:25 -0700 | [diff] [blame] | 1682 | public boolean handleMessage(Message msg) { |
Adam Cohen | ded9f8d | 2010-11-03 13:25:16 -0700 | [diff] [blame] | 1683 | if (msg.what == ADVANCE_MSG) { |
| 1684 | int i = 0; |
| 1685 | for (View key: mWidgetsToAdvance.keySet()) { |
| 1686 | final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId); |
Sunny Goyal | 756cd26 | 2015-08-20 12:33:21 -0700 | [diff] [blame] | 1687 | final int delay = ADVANCE_STAGGER * i; |
Adam Cohen | ded9f8d | 2010-11-03 13:25:16 -0700 | [diff] [blame] | 1688 | if (v instanceof Advanceable) { |
Sunny Goyal | 4f3e938 | 2015-06-05 00:13:25 -0700 | [diff] [blame] | 1689 | mHandler.postDelayed(new Runnable() { |
Adam Cohen | ded9f8d | 2010-11-03 13:25:16 -0700 | [diff] [blame] | 1690 | public void run() { |
| 1691 | ((Advanceable) v).advance(); |
| 1692 | } |
| 1693 | }, delay); |
| 1694 | } |
| 1695 | i++; |
| 1696 | } |
Sunny Goyal | 756cd26 | 2015-08-20 12:33:21 -0700 | [diff] [blame] | 1697 | sendAdvanceMessage(ADVANCE_INTERVAL); |
Adam Cohen | ded9f8d | 2010-11-03 13:25:16 -0700 | [diff] [blame] | 1698 | } |
Sunny Goyal | 4f3e938 | 2015-06-05 00:13:25 -0700 | [diff] [blame] | 1699 | return true; |
Adam Cohen | ded9f8d | 2010-11-03 13:25:16 -0700 | [diff] [blame] | 1700 | } |
Sunny Goyal | 4f3e938 | 2015-06-05 00:13:25 -0700 | [diff] [blame] | 1701 | }); |
Adam Cohen | ded9f8d | 2010-11-03 13:25:16 -0700 | [diff] [blame] | 1702 | |
Winson | c0b52fe | 2015-09-09 16:38:15 -0700 | [diff] [blame] | 1703 | private void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) { |
Adam Cohen | 292c025 | 2011-07-18 13:55:17 -0700 | [diff] [blame] | 1704 | if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return; |
Adam Cohen | ded9f8d | 2010-11-03 13:25:16 -0700 | [diff] [blame] | 1705 | View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId); |
| 1706 | if (v instanceof Advanceable) { |
| 1707 | mWidgetsToAdvance.put(hostView, appWidgetInfo); |
Adam Cohen | 2ddf13e | 2011-01-19 21:26:33 -0800 | [diff] [blame] | 1708 | ((Advanceable) v).fyiWillBeAdvancedByHostKThx(); |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 1709 | updateAutoAdvanceState(); |
Adam Cohen | ded9f8d | 2010-11-03 13:25:16 -0700 | [diff] [blame] | 1710 | } |
| 1711 | } |
| 1712 | |
Winson | c0b52fe | 2015-09-09 16:38:15 -0700 | [diff] [blame] | 1713 | private void removeWidgetToAutoAdvance(View hostView) { |
Adam Cohen | ded9f8d | 2010-11-03 13:25:16 -0700 | [diff] [blame] | 1714 | if (mWidgetsToAdvance.containsKey(hostView)) { |
| 1715 | mWidgetsToAdvance.remove(hostView); |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 1716 | updateAutoAdvanceState(); |
Adam Cohen | ded9f8d | 2010-11-03 13:25:16 -0700 | [diff] [blame] | 1717 | } |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 1718 | } |
| 1719 | |
Hyunyoung Song | 3f47144 | 2015-04-08 19:01:34 -0700 | [diff] [blame] | 1720 | public void showOutOfSpaceMessage(boolean isHotseatLayout) { |
Winson Chung | 93eef08 | 2012-03-23 15:59:27 -0700 | [diff] [blame] | 1721 | int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space); |
| 1722 | Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show(); |
Adam Cohen | ded9f8d | 2010-11-03 13:25:16 -0700 | [diff] [blame] | 1723 | } |
| 1724 | |
Winson Chung | a694524 | 2014-01-08 14:04:34 -0800 | [diff] [blame] | 1725 | public DragLayer getDragLayer() { |
| 1726 | return mDragLayer; |
| 1727 | } |
| 1728 | |
Winson Chung | 5f4e0fd | 2015-05-22 11:12:27 -0700 | [diff] [blame] | 1729 | public AllAppsContainerView getAppsView() { |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 1730 | return mAppsView; |
| 1731 | } |
| 1732 | |
Hyunyoung Song | 3f47144 | 2015-04-08 19:01:34 -0700 | [diff] [blame] | 1733 | public WidgetsContainerView getWidgetsView() { |
| 1734 | return mWidgetsView; |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 1735 | } |
| 1736 | |
Winson Chung | a694524 | 2014-01-08 14:04:34 -0800 | [diff] [blame] | 1737 | public Workspace getWorkspace() { |
| 1738 | return mWorkspace; |
| 1739 | } |
| 1740 | |
Sunny Goyal | 6178f13 | 2016-07-11 17:30:03 -0700 | [diff] [blame] | 1741 | public View getQsbContainer() { |
| 1742 | return mQsbContainer; |
| 1743 | } |
| 1744 | |
Winson Chung | a694524 | 2014-01-08 14:04:34 -0800 | [diff] [blame] | 1745 | public Hotseat getHotseat() { |
| 1746 | return mHotseat; |
| 1747 | } |
| 1748 | |
Jorim Jaggi | d017f88 | 2014-01-14 17:08:48 -0800 | [diff] [blame] | 1749 | public ViewGroup getOverviewPanel() { |
Winson Chung | a694524 | 2014-01-08 14:04:34 -0800 | [diff] [blame] | 1750 | return mOverviewPanel; |
| 1751 | } |
| 1752 | |
Sunny Goyal | 47328fd | 2016-05-25 18:56:41 -0700 | [diff] [blame] | 1753 | public DropTargetBar getDropTargetBar() { |
| 1754 | return mDropTargetBar; |
Tony Wickham | 34d2c91 | 2015-09-11 09:27:58 -0700 | [diff] [blame] | 1755 | } |
| 1756 | |
The Android Open Source Project | 7376fae | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 1757 | public LauncherAppWidgetHost getAppWidgetHost() { |
| 1758 | return mAppWidgetHost; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1759 | } |
Romain Guy | cbb89e4 | 2009-06-08 15:52:54 -0700 | [diff] [blame] | 1760 | |
Winson Chung | a9abd0e | 2010-10-27 17:18:37 -0700 | [diff] [blame] | 1761 | public LauncherModel getModel() { |
| 1762 | return mModel; |
| 1763 | } |
| 1764 | |
Adam Cohen | 79d90c5 | 2016-04-22 13:29:20 -0700 | [diff] [blame] | 1765 | public SharedPreferences getSharedPrefs() { |
Winson Chung | a694524 | 2014-01-08 14:04:34 -0800 | [diff] [blame] | 1766 | return mSharedPrefs; |
| 1767 | } |
| 1768 | |
Adam Cohen | 2e6da15 | 2015-05-06 11:42:25 -0700 | [diff] [blame] | 1769 | public DeviceProfile getDeviceProfile() { |
| 1770 | return mDeviceProfile; |
| 1771 | } |
| 1772 | |
Bjorn Bringert | c459e52 | 2013-06-07 19:36:01 +0100 | [diff] [blame] | 1773 | public void closeSystemDialogs() { |
Joe Onorato | 2ca0ae7 | 2009-11-10 13:14:13 -0800 | [diff] [blame] | 1774 | getWindow().closeAllPanels(); |
| 1775 | |
Joe Onorato | a5c32d6 | 2009-11-19 10:28:49 -0800 | [diff] [blame] | 1776 | // Whatever we were doing is hereby canceled. |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 1777 | setWaitingForResult(null); |
Joe Onorato | 2ca0ae7 | 2009-11-10 13:14:13 -0800 | [diff] [blame] | 1778 | } |
| 1779 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1780 | @Override |
| 1781 | protected void onNewIntent(Intent intent) { |
Michael Jurka | 447bf84 | 2013-05-15 14:52:15 +0200 | [diff] [blame] | 1782 | long startTime = 0; |
| 1783 | if (DEBUG_RESUME_TIME) { |
| 1784 | startTime = System.currentTimeMillis(); |
| 1785 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1786 | super.onNewIntent(intent); |
| 1787 | |
| 1788 | // Close the menu |
Winson | 15f8b17 | 2015-08-19 11:02:39 -0700 | [diff] [blame] | 1789 | Folder openFolder = mWorkspace.getOpenFolder(); |
| 1790 | boolean alreadyOnHome = mHasFocus && ((intent.getFlags() & |
| 1791 | Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT) |
| 1792 | != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT); |
| 1793 | boolean isActionMain = Intent.ACTION_MAIN.equals(intent.getAction()); |
| 1794 | if (isActionMain) { |
Joe Onorato | a5c32d6 | 2009-11-19 10:28:49 -0800 | [diff] [blame] | 1795 | // also will cancel mWaitingForResult. |
Joe Onorato | 2ca0ae7 | 2009-11-10 13:14:13 -0800 | [diff] [blame] | 1796 | closeSystemDialogs(); |
Jason Sams | fd22dac | 2009-09-20 17:24:16 -0700 | [diff] [blame] | 1797 | |
Adam Cohen | 6fecd41 | 2013-10-02 17:41:50 -0700 | [diff] [blame] | 1798 | if (mWorkspace == null) { |
| 1799 | // Can be cases where mWorkspace is null, this prevents a NPE |
| 1800 | return; |
| 1801 | } |
Adam Cohen | 6fecd41 | 2013-10-02 17:41:50 -0700 | [diff] [blame] | 1802 | // In all these cases, only animate if we're already on home |
| 1803 | mWorkspace.exitWidgetResizeMode(); |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 1804 | |
Sunny Goyal | 935fca1 | 2015-10-13 10:19:01 -0700 | [diff] [blame] | 1805 | closeFolder(alreadyOnHome); |
Sunny Goyal | a2454ad | 2016-07-22 10:50:11 -0700 | [diff] [blame] | 1806 | closeShortcutsContainer(alreadyOnHome); |
Adam Cohen | 6fecd41 | 2013-10-02 17:41:50 -0700 | [diff] [blame] | 1807 | exitSpringLoadedDragMode(); |
| 1808 | |
| 1809 | // If we are already on home, then just animate back to the workspace, |
| 1810 | // otherwise, just wait until onResume to set the state back to Workspace |
| 1811 | if (alreadyOnHome) { |
Adam Cohen | ed307df | 2013-10-02 09:37:31 -0700 | [diff] [blame] | 1812 | showWorkspace(true); |
Adam Cohen | 6fecd41 | 2013-10-02 17:41:50 -0700 | [diff] [blame] | 1813 | } else { |
| 1814 | mOnResumeState = State.WORKSPACE; |
| 1815 | } |
| 1816 | |
| 1817 | final View v = getWindow().peekDecorView(); |
| 1818 | if (v != null && v.getWindowToken() != null) { |
Tony | c1739096 | 2015-10-25 17:39:37 -0700 | [diff] [blame] | 1819 | InputMethodManager imm = (InputMethodManager) getSystemService( |
Adam Cohen | 6fecd41 | 2013-10-02 17:41:50 -0700 | [diff] [blame] | 1820 | INPUT_METHOD_SERVICE); |
| 1821 | imm.hideSoftInputFromWindow(v.getWindowToken(), 0); |
| 1822 | } |
| 1823 | |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 1824 | // Reset the apps view |
| 1825 | if (!alreadyOnHome && mAppsView != null) { |
| 1826 | mAppsView.scrollToTop(); |
| 1827 | } |
| 1828 | |
Hyunyoung Song | 3f47144 | 2015-04-08 19:01:34 -0700 | [diff] [blame] | 1829 | // Reset the widgets view |
| 1830 | if (!alreadyOnHome && mWidgetsView != null) { |
| 1831 | mWidgetsView.scrollToTop(); |
Adam Cohen | 6fecd41 | 2013-10-02 17:41:50 -0700 | [diff] [blame] | 1832 | } |
Adam Copp | a120b8e | 2013-11-12 16:26:04 +0000 | [diff] [blame] | 1833 | |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 1834 | if (mLauncherCallbacks != null) { |
| 1835 | mLauncherCallbacks.onHomeIntent(); |
| 1836 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1837 | } |
Adam Cohen | ed307df | 2013-10-02 09:37:31 -0700 | [diff] [blame] | 1838 | |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 1839 | if (mLauncherCallbacks != null) { |
| 1840 | mLauncherCallbacks.onNewIntent(intent); |
| 1841 | } |
Winson | 15f8b17 | 2015-08-19 11:02:39 -0700 | [diff] [blame] | 1842 | |
| 1843 | // Defer moving to the default screen until after we callback to the LauncherCallbacks |
| 1844 | // as slow logic in the callbacks eat into the time the scroller expects for the snapToPage |
| 1845 | // animation. |
| 1846 | if (isActionMain) { |
Ivan Lee | 667d688 | 2015-09-03 10:16:07 -0600 | [diff] [blame] | 1847 | boolean moveToDefaultScreen = mLauncherCallbacks != null ? |
| 1848 | mLauncherCallbacks.shouldMoveToDefaultScreenOnHomeIntent() : true; |
Winson | 15f8b17 | 2015-08-19 11:02:39 -0700 | [diff] [blame] | 1849 | if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() && |
| 1850 | openFolder == null && moveToDefaultScreen) { |
Adam Cohen | 4b66bf3 | 2015-09-18 12:15:19 -0700 | [diff] [blame] | 1851 | |
| 1852 | // We use this flag to suppress noisy callbacks above custom content state |
| 1853 | // from onResume. |
| 1854 | mMoveToDefaultScreenFromNewIntent = true; |
Winson | 15f8b17 | 2015-08-19 11:02:39 -0700 | [diff] [blame] | 1855 | mWorkspace.post(new Runnable() { |
| 1856 | @Override |
| 1857 | public void run() { |
Tony | c1739096 | 2015-10-25 17:39:37 -0700 | [diff] [blame] | 1858 | if (mWorkspace != null) { |
| 1859 | mWorkspace.moveToDefaultScreen(true); |
| 1860 | } |
Winson | 15f8b17 | 2015-08-19 11:02:39 -0700 | [diff] [blame] | 1861 | } |
| 1862 | }); |
| 1863 | } |
| 1864 | } |
| 1865 | |
| 1866 | if (DEBUG_RESUME_TIME) { |
| 1867 | Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime)); |
| 1868 | } |
Adam Copp | a120b8e | 2013-11-12 16:26:04 +0000 | [diff] [blame] | 1869 | } |
| 1870 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1871 | @Override |
Adam Cohen | 1462de3 | 2012-07-24 22:34:36 -0700 | [diff] [blame] | 1872 | public void onRestoreInstanceState(Bundle state) { |
| 1873 | super.onRestoreInstanceState(state); |
| 1874 | for (int page: mSynchronouslyBoundPages) { |
| 1875 | mWorkspace.restoreInstanceStateForChild(page); |
| 1876 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1877 | } |
| 1878 | |
| 1879 | @Override |
| 1880 | protected void onSaveInstanceState(Bundle outState) { |
Adam Cohen | 21cd002 | 2013-10-09 18:57:02 -0700 | [diff] [blame] | 1881 | if (mWorkspace.getChildCount() > 0) { |
Winson Chung | 9b9fb96 | 2013-11-15 15:39:34 -0800 | [diff] [blame] | 1882 | outState.putInt(RUNTIME_STATE_CURRENT_SCREEN, |
| 1883 | mWorkspace.getCurrentPageOffsetFromCustomContent()); |
Hyunyoung Song | 645764e | 2016-06-06 14:19:02 -0700 | [diff] [blame] | 1884 | |
Adam Cohen | 21cd002 | 2013-10-09 18:57:02 -0700 | [diff] [blame] | 1885 | } |
Adam Cohen | 95bb800 | 2011-07-03 23:40:28 -0700 | [diff] [blame] | 1886 | super.onSaveInstanceState(outState); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1887 | |
Michael Jurka | 883f55b | 2010-10-21 15:47:14 -0700 | [diff] [blame] | 1888 | outState.putInt(RUNTIME_STATE, mState.ordinal()); |
Sunny Goyal | 44d0b53 | 2016-03-14 14:08:12 -0700 | [diff] [blame] | 1889 | // We close any open folder since it will not be re-opened, and we need to make sure |
| 1890 | // this state is reflected. |
| 1891 | // TODO: Move folderInfo.isOpened out of the model and make it a UI state. |
| 1892 | closeFolder(false); |
Sunny Goyal | a2454ad | 2016-07-22 10:50:11 -0700 | [diff] [blame] | 1893 | closeShortcutsContainer(false); |
Tony Wickham | 49c8d29 | 2016-07-01 11:44:34 -0700 | [diff] [blame] | 1894 | |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 1895 | if (mPendingRequestArgs != null) { |
| 1896 | outState.putParcelable(RUNTIME_STATE_PENDING_REQUEST_ARGS, mPendingRequestArgs); |
| 1897 | } |
| 1898 | if (mPendingActivityResult != null) { |
| 1899 | outState.putParcelable(RUNTIME_STATE_PENDING_ACTIVITY_RESULT, mPendingActivityResult); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1900 | } |
| 1901 | |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 1902 | if (mLauncherCallbacks != null) { |
| 1903 | mLauncherCallbacks.onSaveInstanceState(outState); |
| 1904 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1905 | } |
| 1906 | |
| 1907 | @Override |
| 1908 | public void onDestroy() { |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1909 | super.onDestroy(); |
Romain Guy | cbb89e4 | 2009-06-08 15:52:54 -0700 | [diff] [blame] | 1910 | |
Winson Chung | e7a0394 | 2011-08-05 15:05:12 -0700 | [diff] [blame] | 1911 | // Remove all pending runnables |
| 1912 | mHandler.removeMessages(ADVANCE_MSG); |
| 1913 | mHandler.removeMessages(0); |
Michael Jurka | 9d906c7 | 2011-10-14 06:25:36 -0700 | [diff] [blame] | 1914 | mWorkspace.removeCallbacks(mBuildLayersRunnable); |
Sunny Goyal | aaf7d1d | 2016-05-17 13:38:54 -0700 | [diff] [blame] | 1915 | mWorkspace.removeFolderListeners(); |
Winson Chung | e7a0394 | 2011-08-05 15:05:12 -0700 | [diff] [blame] | 1916 | |
Winson Chung | cd2b014 | 2011-06-08 16:02:26 -0700 | [diff] [blame] | 1917 | // Stop callbacks from LauncherModel |
Adam Cohen | 1a85c58 | 2014-09-30 09:48:49 -0700 | [diff] [blame] | 1918 | // It's possible to receive onDestroy after a new Launcher activity has |
| 1919 | // been created. In this case, don't interfere with the new Launcher. |
| 1920 | if (mModel.isCurrentCallbacks(this)) { |
| 1921 | mModel.stopLoader(); |
Sunny Goyal | d365ed6 | 2016-02-12 09:44:03 -0800 | [diff] [blame] | 1922 | LauncherAppState.getInstance().setLauncher(null); |
Adam Cohen | 1a85c58 | 2014-09-30 09:48:49 -0700 | [diff] [blame] | 1923 | } |
Winson Chung | cd2b014 | 2011-06-08 16:02:26 -0700 | [diff] [blame] | 1924 | |
Sunny Goyal | 745bad9 | 2016-05-02 10:54:12 -0700 | [diff] [blame] | 1925 | if (mRotationPrefChangeHandler != null) { |
| 1926 | mSharedPrefs.unregisterOnSharedPreferenceChangeListener(mRotationPrefChangeHandler); |
| 1927 | } |
| 1928 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1929 | try { |
The Android Open Source Project | 7376fae | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 1930 | mAppWidgetHost.stopListening(); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1931 | } catch (NullPointerException ex) { |
Joe Onorato | a30ce8e | 2009-11-11 08:16:49 -0800 | [diff] [blame] | 1932 | 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] | 1933 | } |
Patrick Dubroy | 2313eff | 2011-01-11 20:01:31 -0800 | [diff] [blame] | 1934 | mAppWidgetHost = null; |
| 1935 | |
| 1936 | mWidgetsToAdvance.clear(); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1937 | |
| 1938 | TextKeyListener.getInstance().release(); |
| 1939 | |
Tony Wickham | e221725 | 2016-03-22 16:34:23 -0700 | [diff] [blame] | 1940 | ((AccessibilityManager) getSystemService(ACCESSIBILITY_SERVICE)) |
| 1941 | .removeAccessibilityStateChangeListener(this); |
| 1942 | |
Sunny Goyal | da4fe1a | 2016-05-26 16:05:17 -0700 | [diff] [blame] | 1943 | unregisterReceiver(mUiBroadcastReceiver); |
Patrick Dubroy | 2313eff | 2011-01-11 20:01:31 -0800 | [diff] [blame] | 1944 | |
Michael Jurka | 2ecf995 | 2012-06-18 12:52:28 -0700 | [diff] [blame] | 1945 | LauncherAnimUtils.onDestroyActivity(); |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 1946 | |
| 1947 | if (mLauncherCallbacks != null) { |
| 1948 | mLauncherCallbacks.onDestroy(); |
| 1949 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1950 | } |
| 1951 | |
Sunny Goyal | ae50284 | 2016-06-17 08:43:56 -0700 | [diff] [blame] | 1952 | public LauncherAccessibilityDelegate getAccessibilityDelegate() { |
| 1953 | return mAccessibilityDelegate; |
| 1954 | } |
| 1955 | |
Adam Cohen | a9cf38f | 2011-05-02 15:36:58 -0700 | [diff] [blame] | 1956 | public DragController getDragController() { |
| 1957 | return mDragController; |
| 1958 | } |
| 1959 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1960 | @Override |
Sunny Goyal | 0eca4e2 | 2016-07-20 11:43:06 -0700 | [diff] [blame] | 1961 | public void startActivityForResult(Intent intent, int requestCode, Bundle options) { |
Sunny Goyal | 0eca4e2 | 2016-07-20 11:43:06 -0700 | [diff] [blame] | 1962 | super.startActivityForResult(intent, requestCode, options); |
Adam Cohen | 173f711 | 2015-03-27 15:14:00 -0700 | [diff] [blame] | 1963 | } |
| 1964 | |
| 1965 | @Override |
| 1966 | public void startIntentSenderForResult (IntentSender intent, int requestCode, |
| 1967 | Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) { |
Adam Cohen | 173f711 | 2015-03-27 15:14:00 -0700 | [diff] [blame] | 1968 | try { |
| 1969 | super.startIntentSenderForResult(intent, requestCode, |
| 1970 | fillInIntent, flagsMask, flagsValues, extraFlags, options); |
| 1971 | } catch (IntentSender.SendIntentException e) { |
| 1972 | throw new ActivityNotFoundException(); |
| 1973 | } |
| 1974 | } |
| 1975 | |
Winson Chung | 70d7210 | 2011-08-12 11:24:35 -0700 | [diff] [blame] | 1976 | /** |
| 1977 | * Indicates that we want global search for this activity by setting the globalSearch |
| 1978 | * argument for {@link #startSearch} to true. |
| 1979 | */ |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1980 | @Override |
Romain Guy | cbb89e4 | 2009-06-08 15:52:54 -0700 | [diff] [blame] | 1981 | public void startSearch(String initialQuery, boolean selectInitialQuery, |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1982 | Bundle appSearchData, boolean globalSearch) { |
Karl Rosaen | 138a041 | 2009-04-23 19:00:21 -0700 | [diff] [blame] | 1983 | |
Karl Rosaen | 138a041 | 2009-04-23 19:00:21 -0700 | [diff] [blame] | 1984 | if (initialQuery == null) { |
| 1985 | // Use any text typed in the launcher as the initial query |
| 1986 | initialQuery = getTypedText(); |
Karl Rosaen | 138a041 | 2009-04-23 19:00:21 -0700 | [diff] [blame] | 1987 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1988 | if (appSearchData == null) { |
| 1989 | appSearchData = new Bundle(); |
Bjorn Bringert | 32b12d2 | 2013-06-06 13:00:41 +0100 | [diff] [blame] | 1990 | appSearchData.putString("source", "launcher-search"); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1991 | } |
Sunny Goyal | da4fe1a | 2016-05-26 16:05:17 -0700 | [diff] [blame] | 1992 | |
| 1993 | // TODO send proper bounds. |
| 1994 | Rect sourceBounds = null; |
Romain Guy | cbb89e4 | 2009-06-08 15:52:54 -0700 | [diff] [blame] | 1995 | |
Ian Parkinson | 047036e | 2014-09-01 15:40:53 +0100 | [diff] [blame] | 1996 | boolean clearTextImmediately = startSearch(initialQuery, selectInitialQuery, |
Bjorn Bringert | c459e52 | 2013-06-07 19:36:01 +0100 | [diff] [blame] | 1997 | appSearchData, sourceBounds); |
Ian Parkinson | 047036e | 2014-09-01 15:40:53 +0100 | [diff] [blame] | 1998 | if (clearTextImmediately) { |
| 1999 | clearTypedText(); |
| 2000 | } |
Winson Chung | cd99cd3 | 2015-04-29 11:03:24 -0700 | [diff] [blame] | 2001 | |
| 2002 | // We need to show the workspace after starting the search |
| 2003 | showWorkspace(true); |
Bjorn Bringert | c459e52 | 2013-06-07 19:36:01 +0100 | [diff] [blame] | 2004 | } |
| 2005 | |
Ian Parkinson | 047036e | 2014-09-01 15:40:53 +0100 | [diff] [blame] | 2006 | /** |
| 2007 | * Start a text search. |
| 2008 | * |
| 2009 | * @return {@code true} if the search will start immediately, so any further keypresses |
| 2010 | * will be handled directly by the search UI. {@code false} if {@link Launcher} should continue |
| 2011 | * to buffer keypresses. |
| 2012 | */ |
| 2013 | public boolean startSearch(String initialQuery, |
Bjorn Bringert | c459e52 | 2013-06-07 19:36:01 +0100 | [diff] [blame] | 2014 | boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) { |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 2015 | if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) { |
| 2016 | return mLauncherCallbacks.startSearch(initialQuery, selectInitialQuery, appSearchData, |
| 2017 | sourceBounds); |
| 2018 | } |
| 2019 | |
Michael Jurka | a33411c | 2012-06-14 16:18:21 -0700 | [diff] [blame] | 2020 | startGlobalSearch(initialQuery, selectInitialQuery, |
Bjorn Bringert | c459e52 | 2013-06-07 19:36:01 +0100 | [diff] [blame] | 2021 | appSearchData, sourceBounds); |
Ian Parkinson | 047036e | 2014-09-01 15:40:53 +0100 | [diff] [blame] | 2022 | return false; |
Michael Jurka | a33411c | 2012-06-14 16:18:21 -0700 | [diff] [blame] | 2023 | } |
| 2024 | |
| 2025 | /** |
| 2026 | * Starts the global search activity. This code is a copied from SearchManager |
| 2027 | */ |
Bjorn Bringert | c459e52 | 2013-06-07 19:36:01 +0100 | [diff] [blame] | 2028 | private void startGlobalSearch(String initialQuery, |
Michael Jurka | a33411c | 2012-06-14 16:18:21 -0700 | [diff] [blame] | 2029 | boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) { |
Karl Rosaen | 138a041 | 2009-04-23 19:00:21 -0700 | [diff] [blame] | 2030 | final SearchManager searchManager = |
Michael Jurka | a33411c | 2012-06-14 16:18:21 -0700 | [diff] [blame] | 2031 | (SearchManager) getSystemService(Context.SEARCH_SERVICE); |
| 2032 | ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity(); |
| 2033 | if (globalSearchActivity == null) { |
| 2034 | Log.w(TAG, "No global search activity found."); |
| 2035 | return; |
| 2036 | } |
| 2037 | Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH); |
| 2038 | intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); |
| 2039 | intent.setComponent(globalSearchActivity); |
| 2040 | // Make sure that we have a Bundle to put source in |
| 2041 | if (appSearchData == null) { |
| 2042 | appSearchData = new Bundle(); |
| 2043 | } else { |
| 2044 | appSearchData = new Bundle(appSearchData); |
| 2045 | } |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 2046 | // Set source to package name of app that starts global search if not set already. |
Michael Jurka | a33411c | 2012-06-14 16:18:21 -0700 | [diff] [blame] | 2047 | if (!appSearchData.containsKey("source")) { |
| 2048 | appSearchData.putString("source", getPackageName()); |
| 2049 | } |
| 2050 | intent.putExtra(SearchManager.APP_DATA, appSearchData); |
| 2051 | if (!TextUtils.isEmpty(initialQuery)) { |
| 2052 | intent.putExtra(SearchManager.QUERY, initialQuery); |
| 2053 | } |
| 2054 | if (selectInitialQuery) { |
| 2055 | intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery); |
| 2056 | } |
| 2057 | intent.setSourceBounds(sourceBounds); |
| 2058 | try { |
| 2059 | startActivity(intent); |
| 2060 | } catch (ActivityNotFoundException ex) { |
| 2061 | Log.e(TAG, "Global search activity not found: " + globalSearchActivity); |
| 2062 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 2063 | } |
| 2064 | |
Yura | 4f93ec6 | 2014-02-04 14:15:21 +0000 | [diff] [blame] | 2065 | public boolean isOnCustomContent() { |
| 2066 | return mWorkspace.isOnOrMovingToCustomContent(); |
| 2067 | } |
| 2068 | |
Winson Chung | 70d7210 | 2011-08-12 11:24:35 -0700 | [diff] [blame] | 2069 | @Override |
Winson Chung | 70d7210 | 2011-08-12 11:24:35 -0700 | [diff] [blame] | 2070 | public boolean onPrepareOptionsMenu(Menu menu) { |
| 2071 | super.onPrepareOptionsMenu(menu); |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 2072 | if (mLauncherCallbacks != null) { |
| 2073 | return mLauncherCallbacks.onPrepareOptionsMenu(menu); |
| 2074 | } |
Michael Jurka | b94f3f8 | 2013-09-11 18:08:54 +0200 | [diff] [blame] | 2075 | return false; |
Winson Chung | 70d7210 | 2011-08-12 11:24:35 -0700 | [diff] [blame] | 2076 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 2077 | |
The Android Open Source Project | ca9475f | 2009-03-13 13:04:24 -0700 | [diff] [blame] | 2078 | @Override |
| 2079 | public boolean onSearchRequested() { |
Romain Guy | cbb89e4 | 2009-06-08 15:52:54 -0700 | [diff] [blame] | 2080 | startSearch(null, false, null, true); |
Amith Yamasani | a135ba8 | 2011-08-09 17:42:01 -0700 | [diff] [blame] | 2081 | // Use a custom animation for launching search |
Karl Rosaen | 138a041 | 2009-04-23 19:00:21 -0700 | [diff] [blame] | 2082 | return true; |
The Android Open Source Project | ca9475f | 2009-03-13 13:04:24 -0700 | [diff] [blame] | 2083 | } |
| 2084 | |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 2085 | public boolean isWorkspaceLocked() { |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 2086 | return mWorkspaceLoading || mPendingRequestArgs != null; |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 2087 | } |
| 2088 | |
Adam Cohen | 517a7f5 | 2014-03-01 12:12:59 -0800 | [diff] [blame] | 2089 | public boolean isWorkspaceLoading() { |
| 2090 | return mWorkspaceLoading; |
| 2091 | } |
| 2092 | |
Anjali Koppal | ff7ceff | 2014-05-01 18:26:37 -0700 | [diff] [blame] | 2093 | private void setWorkspaceLoading(boolean value) { |
| 2094 | boolean isLocked = isWorkspaceLocked(); |
| 2095 | mWorkspaceLoading = value; |
| 2096 | if (isLocked != isWorkspaceLocked()) { |
| 2097 | onWorkspaceLockedChanged(); |
| 2098 | } |
| 2099 | } |
| 2100 | |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 2101 | private void setWaitingForResult(PendingRequestArgs args) { |
Anjali Koppal | ff7ceff | 2014-05-01 18:26:37 -0700 | [diff] [blame] | 2102 | boolean isLocked = isWorkspaceLocked(); |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 2103 | mPendingRequestArgs = args; |
Anjali Koppal | ff7ceff | 2014-05-01 18:26:37 -0700 | [diff] [blame] | 2104 | if (isLocked != isWorkspaceLocked()) { |
| 2105 | onWorkspaceLockedChanged(); |
| 2106 | } |
| 2107 | } |
| 2108 | |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 2109 | protected void onWorkspaceLockedChanged() { |
| 2110 | if (mLauncherCallbacks != null) { |
| 2111 | mLauncherCallbacks.onWorkspaceLockedChanged(); |
| 2112 | } |
| 2113 | } |
Anjali Koppal | ff7ceff | 2014-05-01 18:26:37 -0700 | [diff] [blame] | 2114 | |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 2115 | void addAppWidgetFromDropImpl(int appWidgetId, ItemInfo info, AppWidgetHostView boundWidget, |
| 2116 | LauncherAppWidgetProviderInfo appWidgetInfo) { |
Tony Wickham | a0628cc | 2015-10-14 15:23:04 -0700 | [diff] [blame] | 2117 | if (LOGD) { |
| 2118 | Log.d(TAG, "Adding widget from drop"); |
| 2119 | } |
Adam Cohen | ad4e15c | 2013-10-17 16:21:35 -0700 | [diff] [blame] | 2120 | addAppWidgetImpl(appWidgetId, info, boundWidget, appWidgetInfo, 0); |
| 2121 | } |
| 2122 | |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 2123 | void addAppWidgetImpl(int appWidgetId, ItemInfo info, |
| 2124 | AppWidgetHostView boundWidget, LauncherAppWidgetProviderInfo appWidgetInfo, |
Adam Cohen | 5940042 | 2014-03-05 18:07:04 -0800 | [diff] [blame] | 2125 | int delay) { |
Adam Cohen | 9d5b7d8 | 2012-05-09 18:00:44 -0700 | [diff] [blame] | 2126 | if (appWidgetInfo.configure != null) { |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 2127 | setWaitingForResult(PendingRequestArgs.forWidgetInfo(appWidgetId, appWidgetInfo, info)); |
Michael Jurka | af44209 | 2010-06-10 17:01:57 -0700 | [diff] [blame] | 2128 | |
Bjorn Bringert | 7984c94 | 2009-12-09 15:38:25 +0000 | [diff] [blame] | 2129 | // Launch over to configure widget, if needed |
Sunny Goyal | ffe83f1 | 2014-08-14 17:39:34 -0700 | [diff] [blame] | 2130 | mAppWidgetManager.startConfigActivity(appWidgetInfo, appWidgetId, this, |
| 2131 | mAppWidgetHost, REQUEST_CREATE_APPWIDGET); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 2132 | } else { |
Bjorn Bringert | 7984c94 | 2009-12-09 15:38:25 +0000 | [diff] [blame] | 2133 | // Otherwise just add it |
Adam Cohen | ad4e15c | 2013-10-17 16:21:35 -0700 | [diff] [blame] | 2134 | Runnable onComplete = new Runnable() { |
| 2135 | @Override |
| 2136 | public void run() { |
| 2137 | // Exit spring loaded mode if necessary after adding the widget |
| 2138 | exitSpringLoadedDragModeDelayed(true, EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, |
| 2139 | null); |
| 2140 | } |
| 2141 | }; |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 2142 | completeAddAppWidget(appWidgetId, info, boundWidget, appWidgetInfo); |
Adam Cohen | 689ff16 | 2014-05-08 17:27:56 -0700 | [diff] [blame] | 2143 | mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, delay, false); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 2144 | } |
| 2145 | } |
Romain Guy | cbb89e4 | 2009-06-08 15:52:54 -0700 | [diff] [blame] | 2146 | |
Allan Wojciechowski | af110e8 | 2013-09-12 10:48:23 +0100 | [diff] [blame] | 2147 | protected void moveToCustomContentScreen(boolean animate) { |
Sandeep Siddhartha | f2b47f1 | 2013-09-26 19:49:27 -0700 | [diff] [blame] | 2148 | // Close any folders that may be open. |
| 2149 | closeFolder(); |
Allan Wojciechowski | af110e8 | 2013-09-12 10:48:23 +0100 | [diff] [blame] | 2150 | mWorkspace.moveToCustomContentScreen(animate); |
| 2151 | } |
Sunny Goyal | 71b5c0b | 2015-01-08 16:59:04 -0800 | [diff] [blame] | 2152 | |
| 2153 | public void addPendingItem(PendingAddItemInfo info, long container, long screenId, |
| 2154 | int[] cell, int spanX, int spanY) { |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 2155 | info.container = container; |
| 2156 | info.screenId = screenId; |
| 2157 | if (cell != null) { |
| 2158 | info.cellX = cell[0]; |
| 2159 | info.cellY = cell[1]; |
| 2160 | } |
| 2161 | info.spanX = spanX; |
| 2162 | info.spanY = spanY; |
| 2163 | |
Sunny Goyal | 71b5c0b | 2015-01-08 16:59:04 -0800 | [diff] [blame] | 2164 | switch (info.itemType) { |
| 2165 | case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET: |
| 2166 | case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET: |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 2167 | addAppWidgetFromDrop((PendingAddWidgetInfo) info); |
Sunny Goyal | 71b5c0b | 2015-01-08 16:59:04 -0800 | [diff] [blame] | 2168 | break; |
| 2169 | case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT: |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 2170 | processShortcutFromDrop(info); |
Sunny Goyal | 71b5c0b | 2015-01-08 16:59:04 -0800 | [diff] [blame] | 2171 | break; |
| 2172 | default: |
| 2173 | throw new IllegalStateException("Unknown item type: " + info.itemType); |
| 2174 | } |
| 2175 | } |
| 2176 | |
Adam Cohen | fbba09b | 2011-07-18 21:43:05 -0700 | [diff] [blame] | 2177 | /** |
| 2178 | * Process a shortcut drop. |
Adam Cohen | fbba09b | 2011-07-18 21:43:05 -0700 | [diff] [blame] | 2179 | */ |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 2180 | private void processShortcutFromDrop(PendingAddItemInfo info) { |
| 2181 | setWaitingForResult(new PendingRequestArgs(info)); |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 2182 | Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT); |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 2183 | createShortcutIntent.setComponent(info.componentName); |
Sunny Goyal | 4f3e938 | 2015-06-05 00:13:25 -0700 | [diff] [blame] | 2184 | Utilities.startActivityForResultSafely(this, createShortcutIntent, REQUEST_CREATE_SHORTCUT); |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 2185 | } |
| 2186 | |
Adam Cohen | fbba09b | 2011-07-18 21:43:05 -0700 | [diff] [blame] | 2187 | /** |
| 2188 | * Process a widget drop. |
Adam Cohen | fbba09b | 2011-07-18 21:43:05 -0700 | [diff] [blame] | 2189 | */ |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 2190 | private void addAppWidgetFromDrop(PendingAddWidgetInfo info) { |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 2191 | AppWidgetHostView hostView = info.boundWidget; |
| 2192 | int appWidgetId; |
| 2193 | if (hostView != null) { |
Tony Wickham | a0628cc | 2015-10-14 15:23:04 -0700 | [diff] [blame] | 2194 | // In the case where we've prebound the widget, we remove it from the DragLayer |
| 2195 | if (LOGD) { |
| 2196 | Log.d(TAG, "Removing widget view from drag layer and setting boundWidget to null"); |
| 2197 | } |
| 2198 | getDragLayer().removeView(hostView); |
| 2199 | |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 2200 | appWidgetId = hostView.getAppWidgetId(); |
Tony Wickham | a0628cc | 2015-10-14 15:23:04 -0700 | [diff] [blame] | 2201 | addAppWidgetFromDropImpl(appWidgetId, info, hostView, info.info); |
Sunny Goyal | 5b9ebca | 2015-06-01 18:37:32 -0700 | [diff] [blame] | 2202 | |
| 2203 | // Clear the boundWidget so that it doesn't get destroyed. |
| 2204 | info.boundWidget = null; |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 2205 | } else { |
Adam Cohen | 9d5b7d8 | 2012-05-09 18:00:44 -0700 | [diff] [blame] | 2206 | // In this case, we either need to start an activity to get permission to bind |
| 2207 | // the widget, or we need to start an activity to configure the widget, or both. |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 2208 | appWidgetId = getAppWidgetHost().allocateAppWidgetId(); |
Adam Cohen | dd70d66 | 2012-10-04 16:53:44 -0700 | [diff] [blame] | 2209 | Bundle options = info.bindOptions; |
| 2210 | |
Sunny Goyal | ffe83f1 | 2014-08-14 17:39:34 -0700 | [diff] [blame] | 2211 | boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed( |
| 2212 | appWidgetId, info.info, options); |
Adam Cohen | dd70d66 | 2012-10-04 16:53:44 -0700 | [diff] [blame] | 2213 | if (success) { |
Tony Wickham | a0628cc | 2015-10-14 15:23:04 -0700 | [diff] [blame] | 2214 | addAppWidgetFromDropImpl(appWidgetId, info, null, info.info); |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 2215 | } else { |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 2216 | setWaitingForResult(PendingRequestArgs.forWidgetInfo(appWidgetId, info.info, info)); |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 2217 | Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND); |
| 2218 | intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId); |
| 2219 | intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName); |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 2220 | mAppWidgetManager.getUser(info.info) |
Sunny Goyal | ffe83f1 | 2014-08-14 17:39:34 -0700 | [diff] [blame] | 2221 | .addToIntent(intent, AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE); |
Adam Cohen | dd70d66 | 2012-10-04 16:53:44 -0700 | [diff] [blame] | 2222 | // TODO: we need to make sure that this accounts for the options bundle. |
| 2223 | // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options); |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 2224 | startActivityForResult(intent, REQUEST_BIND_APPWIDGET); |
| 2225 | } |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 2226 | } |
Adam Cohen | fbba09b | 2011-07-18 21:43:05 -0700 | [diff] [blame] | 2227 | } |
| 2228 | |
Adam Cohen | dcd297f | 2013-06-18 13:13:40 -0700 | [diff] [blame] | 2229 | FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX, |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 2230 | int cellY) { |
Michael Jurka | c9d95c5 | 2011-08-29 14:03:34 -0700 | [diff] [blame] | 2231 | final FolderInfo folderInfo = new FolderInfo(); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 2232 | folderInfo.title = getText(R.string.folder_name); |
| 2233 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 2234 | // Update the model |
Sunny Goyal | 1d4a2df | 2015-03-30 11:11:46 -0700 | [diff] [blame] | 2235 | LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId, |
| 2236 | cellX, cellY); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 2237 | |
| 2238 | // Create the view |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 2239 | FolderIcon newFolder = |
| 2240 | FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache); |
Adam Cohen | dcd297f | 2013-06-18 13:13:40 -0700 | [diff] [blame] | 2241 | mWorkspace.addInScreen(newFolder, container, screenId, cellX, cellY, 1, 1, |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 2242 | isWorkspaceLocked()); |
Winson Chung | 5f8afe6 | 2013-08-12 16:19:28 -0700 | [diff] [blame] | 2243 | // Force measure the new folder icon |
| 2244 | CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder); |
| 2245 | parent.getShortcutsAndWidgets().measureChild(newFolder); |
Adam Cohen | df03538 | 2011-04-11 17:22:04 -0700 | [diff] [blame] | 2246 | return newFolder; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 2247 | } |
Romain Guy | cbb89e4 | 2009-06-08 15:52:54 -0700 | [diff] [blame] | 2248 | |
Winson | c0b52fe | 2015-09-09 16:38:15 -0700 | [diff] [blame] | 2249 | /** |
Winson | fa56b3f | 2015-09-14 12:01:13 -0700 | [diff] [blame] | 2250 | * Unbinds the view for the specified item, and removes the item and all its children. |
| 2251 | * |
| 2252 | * @param v the view being removed. |
Winson | fa56b3f | 2015-09-14 12:01:13 -0700 | [diff] [blame] | 2253 | * @param itemInfo the {@link ItemInfo} for this view. |
| 2254 | * @param deleteFromDb whether or not to delete this item from the db. |
Winson | c0b52fe | 2015-09-09 16:38:15 -0700 | [diff] [blame] | 2255 | */ |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 2256 | public boolean removeItem(View v, final ItemInfo itemInfo, boolean deleteFromDb) { |
Winson | c0b52fe | 2015-09-09 16:38:15 -0700 | [diff] [blame] | 2257 | if (itemInfo instanceof ShortcutInfo) { |
Winson | fa56b3f | 2015-09-14 12:01:13 -0700 | [diff] [blame] | 2258 | // Remove the shortcut from the folder before removing it from launcher |
Sunny Goyal | 44c0643 | 2016-04-02 10:56:02 -0700 | [diff] [blame] | 2259 | View folderIcon = mWorkspace.getHomescreenIconByItemId(itemInfo.container); |
| 2260 | if (folderIcon instanceof FolderIcon) { |
Sunny Goyal | c52ba71 | 2016-04-05 15:59:05 -0700 | [diff] [blame] | 2261 | ((FolderInfo) folderIcon.getTag()).remove((ShortcutInfo) itemInfo, true); |
Winson | fa56b3f | 2015-09-14 12:01:13 -0700 | [diff] [blame] | 2262 | } else { |
| 2263 | mWorkspace.removeWorkspaceItem(v); |
| 2264 | } |
Winson | c0b52fe | 2015-09-09 16:38:15 -0700 | [diff] [blame] | 2265 | if (deleteFromDb) { |
| 2266 | LauncherModel.deleteItemFromDatabase(this, itemInfo); |
| 2267 | } |
| 2268 | } else if (itemInfo instanceof FolderInfo) { |
| 2269 | final FolderInfo folderInfo = (FolderInfo) itemInfo; |
Sunny Goyal | aaf7d1d | 2016-05-17 13:38:54 -0700 | [diff] [blame] | 2270 | if (v instanceof FolderIcon) { |
| 2271 | ((FolderIcon) v).removeListeners(); |
| 2272 | } |
Winson | c0b52fe | 2015-09-09 16:38:15 -0700 | [diff] [blame] | 2273 | mWorkspace.removeWorkspaceItem(v); |
| 2274 | if (deleteFromDb) { |
| 2275 | LauncherModel.deleteFolderAndContentsFromDatabase(this, folderInfo); |
| 2276 | } |
| 2277 | } else if (itemInfo instanceof LauncherAppWidgetInfo) { |
| 2278 | final LauncherAppWidgetInfo widgetInfo = (LauncherAppWidgetInfo) itemInfo; |
Winson | 44818e0 | 2015-10-02 11:25:46 -0700 | [diff] [blame] | 2279 | mWorkspace.removeWorkspaceItem(v); |
Sunny Goyal | 87af0fd | 2016-05-16 14:56:02 -0700 | [diff] [blame] | 2280 | removeWidgetToAutoAdvance(v); |
Winson | c0b52fe | 2015-09-09 16:38:15 -0700 | [diff] [blame] | 2281 | if (deleteFromDb) { |
Sunny Goyal | 56c7360 | 2015-09-25 12:55:01 -0700 | [diff] [blame] | 2282 | deleteWidgetInfo(widgetInfo); |
Winson | c0b52fe | 2015-09-09 16:38:15 -0700 | [diff] [blame] | 2283 | } |
| 2284 | } else { |
| 2285 | return false; |
| 2286 | } |
| 2287 | return true; |
| 2288 | } |
| 2289 | |
| 2290 | /** |
Sunny Goyal | 56c7360 | 2015-09-25 12:55:01 -0700 | [diff] [blame] | 2291 | * Deletes the widget info and the widget id. |
Winson | c0b52fe | 2015-09-09 16:38:15 -0700 | [diff] [blame] | 2292 | */ |
Sunny Goyal | 56c7360 | 2015-09-25 12:55:01 -0700 | [diff] [blame] | 2293 | private void deleteWidgetInfo(final LauncherAppWidgetInfo widgetInfo) { |
Winson | c0b52fe | 2015-09-09 16:38:15 -0700 | [diff] [blame] | 2294 | final LauncherAppWidgetHost appWidgetHost = getAppWidgetHost(); |
Sunny Goyal | d478c83 | 2016-04-01 12:04:16 -0700 | [diff] [blame] | 2295 | if (appWidgetHost != null && !widgetInfo.isCustomWidget() && widgetInfo.isWidgetIdAllocated()) { |
Winson | c0b52fe | 2015-09-09 16:38:15 -0700 | [diff] [blame] | 2296 | // Deleting an app widget ID is a void call but writes to disk before returning |
| 2297 | // to the caller... |
| 2298 | new AsyncTask<Void, Void, Void>() { |
| 2299 | public Void doInBackground(Void ... args) { |
| 2300 | appWidgetHost.deleteAppWidgetId(widgetInfo.appWidgetId); |
| 2301 | return null; |
| 2302 | } |
Sunny Goyal | f27cb0e | 2015-09-23 16:12:02 -0700 | [diff] [blame] | 2303 | }.executeOnExecutor(Utilities.THREAD_POOL_EXECUTOR); |
Winson | c0b52fe | 2015-09-09 16:38:15 -0700 | [diff] [blame] | 2304 | } |
Sunny Goyal | 56c7360 | 2015-09-25 12:55:01 -0700 | [diff] [blame] | 2305 | LauncherModel.deleteItemFromDatabase(this, widgetInfo); |
Winson | c0b52fe | 2015-09-09 16:38:15 -0700 | [diff] [blame] | 2306 | } |
| 2307 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 2308 | @Override |
| 2309 | public boolean dispatchKeyEvent(KeyEvent event) { |
| 2310 | if (event.getAction() == KeyEvent.ACTION_DOWN) { |
| 2311 | switch (event.getKeyCode()) { |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 2312 | case KeyEvent.KEYCODE_HOME: |
Dianne Hackborn | 6780086 | 2009-07-24 17:15:20 -0700 | [diff] [blame] | 2313 | return true; |
Joe Onorato | be38609 | 2009-11-17 17:32:16 -0800 | [diff] [blame] | 2314 | case KeyEvent.KEYCODE_VOLUME_DOWN: |
Sunny Goyal | 4bbf419 | 2014-11-11 12:23:59 -0800 | [diff] [blame] | 2315 | if (Utilities.isPropertyEnabled(DUMP_STATE_PROPERTY)) { |
Joe Onorato | be38609 | 2009-11-17 17:32:16 -0800 | [diff] [blame] | 2316 | dumpState(); |
| 2317 | return true; |
| 2318 | } |
| 2319 | break; |
Dianne Hackborn | 6780086 | 2009-07-24 17:15:20 -0700 | [diff] [blame] | 2320 | } |
| 2321 | } else if (event.getAction() == KeyEvent.ACTION_UP) { |
| 2322 | switch (event.getKeyCode()) { |
Dianne Hackborn | 6780086 | 2009-07-24 17:15:20 -0700 | [diff] [blame] | 2323 | case KeyEvent.KEYCODE_HOME: |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 2324 | return true; |
| 2325 | } |
| 2326 | } |
| 2327 | |
| 2328 | return super.dispatchKeyEvent(event); |
| 2329 | } |
| 2330 | |
Joe Onorato | 88ec099 | 2009-11-19 13:16:06 -0800 | [diff] [blame] | 2331 | @Override |
| 2332 | public void onBackPressed() { |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 2333 | if (mLauncherCallbacks != null && mLauncherCallbacks.handleBackPressed()) { |
| 2334 | return; |
| 2335 | } |
| 2336 | |
Sunny Goyal | 4547802 | 2015-06-08 16:52:41 -0700 | [diff] [blame] | 2337 | if (mDragController.isDragging()) { |
| 2338 | mDragController.cancelDrag(); |
Adam Cohen | c9735cf | 2015-01-23 16:11:55 -0800 | [diff] [blame] | 2339 | return; |
| 2340 | } |
| 2341 | |
Tony Wickham | 49c8d29 | 2016-07-01 11:44:34 -0700 | [diff] [blame] | 2342 | if (getOpenShortcutsContainer() != null) { |
| 2343 | closeShortcutsContainer(); |
| 2344 | } else if (isAppsViewVisible()) { |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 2345 | showWorkspace(true); |
| 2346 | } else if (isWidgetsViewVisible()) { |
| 2347 | showOverviewMode(true); |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 2348 | } else if (mWorkspace.isInOverviewMode()) { |
Winson Chung | dc61c4d | 2015-04-20 18:26:57 -0700 | [diff] [blame] | 2349 | showWorkspace(true); |
Patrick Dubroy | 94f78a5 | 2011-02-28 17:39:16 -0800 | [diff] [blame] | 2350 | } else if (mWorkspace.getOpenFolder() != null) { |
Adam Cohen | 76fc085 | 2011-06-17 13:26:23 -0700 | [diff] [blame] | 2351 | Folder openFolder = mWorkspace.getOpenFolder(); |
| 2352 | if (openFolder.isEditingName()) { |
| 2353 | openFolder.dismissEditingName(); |
| 2354 | } else { |
| 2355 | closeFolder(); |
| 2356 | } |
Patrick Dubroy | 94f78a5 | 2011-02-28 17:39:16 -0800 | [diff] [blame] | 2357 | } else { |
Patrick Dubroy | 758a923 | 2011-03-03 19:54:56 -0800 | [diff] [blame] | 2358 | mWorkspace.exitWidgetResizeMode(); |
| 2359 | |
Patrick Dubroy | 94f78a5 | 2011-02-28 17:39:16 -0800 | [diff] [blame] | 2360 | // Back button is a no-op here, but give at least some feedback for the button press |
| 2361 | mWorkspace.showOutlinesTemporarily(); |
Michael Jurka | af44209 | 2010-06-10 17:01:57 -0700 | [diff] [blame] | 2362 | } |
Joe Onorato | 88ec099 | 2009-11-19 13:16:06 -0800 | [diff] [blame] | 2363 | } |
| 2364 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 2365 | /** |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 2366 | * Launches the intent referred by the clicked shortcut. |
| 2367 | * |
| 2368 | * @param v The view representing the clicked shortcut. |
| 2369 | */ |
| 2370 | public void onClick(View v) { |
Adam Cohen | 9932a9b | 2011-08-02 22:14:07 -0700 | [diff] [blame] | 2371 | // Make sure that rogue clicks don't get through while allapps is launching, or after the |
| 2372 | // view has detached (it's possible for this to happen if the view is removed mid touch). |
| 2373 | if (v.getWindowToken() == null) { |
| 2374 | return; |
| 2375 | } |
| 2376 | |
Winson Chung | 9b0b2fe | 2012-02-24 13:03:34 -0800 | [diff] [blame] | 2377 | if (!mWorkspace.isFinishedSwitchingState()) { |
Adam Cohen | 9932a9b | 2011-08-02 22:14:07 -0700 | [diff] [blame] | 2378 | return; |
| 2379 | } |
Adam Cohen | 2f84ef2 | 2011-07-26 17:16:44 -0700 | [diff] [blame] | 2380 | |
Adam Cohen | 1697b79 | 2013-09-17 19:08:21 -0700 | [diff] [blame] | 2381 | if (v instanceof Workspace) { |
| 2382 | if (mWorkspace.isInOverviewMode()) { |
Winson Chung | dc61c4d | 2015-04-20 18:26:57 -0700 | [diff] [blame] | 2383 | showWorkspace(true); |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 2384 | } |
| 2385 | return; |
| 2386 | } |
| 2387 | |
| 2388 | if (v instanceof CellLayout) { |
| 2389 | if (mWorkspace.isInOverviewMode()) { |
Sunny Goyal | ce5a7e5 | 2015-07-08 15:44:27 -0700 | [diff] [blame] | 2390 | mWorkspace.snapToPageFromOverView(mWorkspace.indexOfChild(v)); |
| 2391 | showWorkspace(true); |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 2392 | } |
Sunny Goyal | ce5a7e5 | 2015-07-08 15:44:27 -0700 | [diff] [blame] | 2393 | return; |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 2394 | } |
| 2395 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 2396 | Object tag = v.getTag(); |
Joe Onorato | 0589f0f | 2010-02-08 13:44:00 -0800 | [diff] [blame] | 2397 | if (tag instanceof ShortcutInfo) { |
Sandeep Siddhartha | a942030 | 2014-02-12 18:24:31 -0800 | [diff] [blame] | 2398 | onClickAppShortcut(v); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 2399 | } else if (tag instanceof FolderInfo) { |
Adam Cohen | a9cf38f | 2011-05-02 15:36:58 -0700 | [diff] [blame] | 2400 | if (v instanceof FolderIcon) { |
Sandeep Siddhartha | a942030 | 2014-02-12 18:24:31 -0800 | [diff] [blame] | 2401 | onClickFolderIcon(v); |
Adam Cohen | a9cf38f | 2011-05-02 15:36:58 -0700 | [diff] [blame] | 2402 | } |
Hyunyoung Song | 68f98ac | 2016-07-22 14:22:49 -0700 | [diff] [blame] | 2403 | } else if ((FeatureFlags.LAUNCHER3_ALL_APPS_PULL_UP && v instanceof PageIndicator) || |
| 2404 | (v == mAllAppsButton && mAllAppsButton != null)) { |
Sandeep Siddhartha | a942030 | 2014-02-12 18:24:31 -0800 | [diff] [blame] | 2405 | onClickAllAppsButton(v); |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 2406 | } else if (tag instanceof AppInfo) { |
| 2407 | startAppShortcutOrInfoActivity(v); |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 2408 | } else if (tag instanceof LauncherAppWidgetInfo) { |
| 2409 | if (v instanceof PendingAppWidgetHostView) { |
| 2410 | onClickPendingWidget((PendingAppWidgetHostView) v); |
| 2411 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 2412 | } |
| 2413 | } |
| 2414 | |
Sunny Goyal | 7066003 | 2015-05-14 00:07:08 -0700 | [diff] [blame] | 2415 | @SuppressLint("ClickableViewAccessibility") |
Michael Jurka | 0e26059 | 2010-06-30 17:07:39 -0700 | [diff] [blame] | 2416 | public boolean onTouch(View v, MotionEvent event) { |
Michael Jurka | 0e26059 | 2010-06-30 17:07:39 -0700 | [diff] [blame] | 2417 | return false; |
| 2418 | } |
| 2419 | |
Michael Jurka | af44209 | 2010-06-10 17:01:57 -0700 | [diff] [blame] | 2420 | /** |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 2421 | * Event handler for the app widget view which has not fully restored. |
| 2422 | */ |
Sunny Goyal | e7b8cd9 | 2014-08-27 14:04:33 -0700 | [diff] [blame] | 2423 | public void onClickPendingWidget(final PendingAppWidgetHostView v) { |
Sunny Goyal | 9b4b081 | 2014-10-08 10:47:28 -0700 | [diff] [blame] | 2424 | if (mIsSafeModeEnabled) { |
| 2425 | Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show(); |
| 2426 | return; |
| 2427 | } |
| 2428 | |
Sunny Goyal | e7b8cd9 | 2014-08-27 14:04:33 -0700 | [diff] [blame] | 2429 | final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) v.getTag(); |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 2430 | if (v.isReadyForClickSetup()) { |
Sunny Goyal | d478c83 | 2016-04-01 12:04:16 -0700 | [diff] [blame] | 2431 | if (info.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_ID_NOT_VALID)) { |
| 2432 | if (!info.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_ID_ALLOCATED)) { |
| 2433 | // This should not happen, as we make sure that an Id is allocated during bind. |
| 2434 | return; |
| 2435 | } |
| 2436 | LauncherAppWidgetProviderInfo appWidgetInfo = |
| 2437 | mAppWidgetManager.findProvider(info.providerName, info.user); |
| 2438 | if (appWidgetInfo != null) { |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 2439 | setWaitingForResult(PendingRequestArgs |
| 2440 | .forWidgetInfo(info.appWidgetId, appWidgetInfo, info)); |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 2441 | |
Sunny Goyal | d478c83 | 2016-04-01 12:04:16 -0700 | [diff] [blame] | 2442 | Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND); |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 2443 | intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, info.appWidgetId); |
Sunny Goyal | d478c83 | 2016-04-01 12:04:16 -0700 | [diff] [blame] | 2444 | intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, appWidgetInfo.provider); |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 2445 | mAppWidgetManager.getUser(appWidgetInfo) |
Sunny Goyal | d478c83 | 2016-04-01 12:04:16 -0700 | [diff] [blame] | 2446 | .addToIntent(intent, AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE); |
| 2447 | startActivityForResult(intent, REQUEST_BIND_PENDING_APPWIDGET); |
| 2448 | } |
| 2449 | } else { |
| 2450 | LauncherAppWidgetProviderInfo appWidgetInfo = |
| 2451 | mAppWidgetManager.getLauncherAppWidgetInfo(info.appWidgetId); |
| 2452 | if (appWidgetInfo != null) { |
| 2453 | startRestoredWidgetReconfigActivity(appWidgetInfo, info); |
| 2454 | } |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 2455 | } |
Sunny Goyal | e7b8cd9 | 2014-08-27 14:04:33 -0700 | [diff] [blame] | 2456 | } else if (info.installProgress < 0) { |
| 2457 | // The install has not been queued |
| 2458 | final String packageName = info.providerName.getPackageName(); |
| 2459 | showBrokenAppInstallDialog(packageName, |
| 2460 | new DialogInterface.OnClickListener() { |
| 2461 | public void onClick(DialogInterface dialog, int id) { |
| 2462 | startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info); |
| 2463 | } |
| 2464 | }); |
| 2465 | } else { |
| 2466 | // Download has started. |
| 2467 | final String packageName = info.providerName.getPackageName(); |
| 2468 | startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info); |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 2469 | } |
| 2470 | } |
| 2471 | |
Sunny Goyal | d478c83 | 2016-04-01 12:04:16 -0700 | [diff] [blame] | 2472 | private void startRestoredWidgetReconfigActivity( |
| 2473 | LauncherAppWidgetProviderInfo provider, LauncherAppWidgetInfo info) { |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 2474 | setWaitingForResult(PendingRequestArgs.forWidgetInfo(info.appWidgetId, provider, info)); |
Sunny Goyal | d478c83 | 2016-04-01 12:04:16 -0700 | [diff] [blame] | 2475 | mAppWidgetManager.startConfigActivity(provider, |
| 2476 | info.appWidgetId, this, mAppWidgetHost, REQUEST_RECONFIGURE_APPWIDGET); |
| 2477 | } |
| 2478 | |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 2479 | /** |
Michael Jurka | 2c3af5f | 2010-08-03 13:53:20 -0700 | [diff] [blame] | 2480 | * Event handler for the "grid" button that appears on the home screen, which |
| 2481 | * enters all apps mode. |
| 2482 | * |
| 2483 | * @param v The view that was clicked. |
| 2484 | */ |
Sandeep Siddhartha | a942030 | 2014-02-12 18:24:31 -0800 | [diff] [blame] | 2485 | protected void onClickAllAppsButton(View v) { |
| 2486 | if (LOGD) Log.d(TAG, "onClickAllAppsButton"); |
Winson Chung | 76648c5 | 2015-07-10 14:33:23 -0700 | [diff] [blame] | 2487 | if (!isAppsViewVisible()) { |
Hyunyoung Song | 1ce0e30 | 2016-07-21 12:47:28 -0700 | [diff] [blame] | 2488 | getUserEventDispatcher().logActionOnControl(LauncherLogProto.Action.TAP, |
Hyunyoung Song | 5aa2714 | 2016-07-21 11:48:37 -0700 | [diff] [blame] | 2489 | LauncherLogProto.ALL_APPS_BUTTON); |
Hyunyoung Song | dd60ce4 | 2016-07-27 17:08:38 -0700 | [diff] [blame] | 2490 | showAppsView(true /* animated */, true /* updatePredictedApps */, |
| 2491 | false /* focusSearchBar */); |
Winson Chung | 76648c5 | 2015-07-10 14:33:23 -0700 | [diff] [blame] | 2492 | } |
| 2493 | } |
| 2494 | |
| 2495 | protected void onLongClickAllAppsButton(View v) { |
| 2496 | if (LOGD) Log.d(TAG, "onLongClickAllAppsButton"); |
| 2497 | if (!isAppsViewVisible()) { |
Hyunyoung Song | 1ce0e30 | 2016-07-21 12:47:28 -0700 | [diff] [blame] | 2498 | getUserEventDispatcher().logActionOnControl(LauncherLogProto.Action.LONGPRESS, |
Hyunyoung Song | 5aa2714 | 2016-07-21 11:48:37 -0700 | [diff] [blame] | 2499 | LauncherLogProto.ALL_APPS_BUTTON); |
Hyunyoung Song | dd60ce4 | 2016-07-27 17:08:38 -0700 | [diff] [blame] | 2500 | showAppsView(true /* animated */, |
Winson Chung | 76648c5 | 2015-07-10 14:33:23 -0700 | [diff] [blame] | 2501 | true /* updatePredictedApps */, true /* focusSearchBar */); |
Sandeep Siddhartha | a942030 | 2014-02-12 18:24:31 -0800 | [diff] [blame] | 2502 | } |
| 2503 | } |
| 2504 | |
Sunny Goyal | e7b8cd9 | 2014-08-27 14:04:33 -0700 | [diff] [blame] | 2505 | private void showBrokenAppInstallDialog(final String packageName, |
| 2506 | DialogInterface.OnClickListener onSearchClickListener) { |
Sunny Goyal | e03b812 | 2014-10-08 09:55:24 -0700 | [diff] [blame] | 2507 | new AlertDialog.Builder(this) |
Sunny Goyal | e7b8cd9 | 2014-08-27 14:04:33 -0700 | [diff] [blame] | 2508 | .setTitle(R.string.abandoned_promises_title) |
| 2509 | .setMessage(R.string.abandoned_promise_explanation) |
| 2510 | .setPositiveButton(R.string.abandoned_search, onSearchClickListener) |
| 2511 | .setNeutralButton(R.string.abandoned_clean_this, |
| 2512 | new DialogInterface.OnClickListener() { |
| 2513 | public void onClick(DialogInterface dialog, int id) { |
| 2514 | final UserHandleCompat user = UserHandleCompat.myUserHandle(); |
| 2515 | mWorkspace.removeAbandonedPromise(packageName, user); |
| 2516 | } |
| 2517 | }) |
| 2518 | .create().show(); |
| 2519 | return; |
| 2520 | } |
| 2521 | |
Sandeep Siddhartha | a942030 | 2014-02-12 18:24:31 -0800 | [diff] [blame] | 2522 | /** |
| 2523 | * Event handler for an app shortcut click. |
| 2524 | * |
| 2525 | * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}. |
| 2526 | */ |
Chris Wren | 40c5ed3 | 2014-06-24 18:24:23 -0400 | [diff] [blame] | 2527 | protected void onClickAppShortcut(final View v) { |
Sandeep Siddhartha | a942030 | 2014-02-12 18:24:31 -0800 | [diff] [blame] | 2528 | if (LOGD) Log.d(TAG, "onClickAppShortcut"); |
| 2529 | Object tag = v.getTag(); |
| 2530 | if (!(tag instanceof ShortcutInfo)) { |
| 2531 | throw new IllegalArgumentException("Input must be a Shortcut"); |
| 2532 | } |
| 2533 | |
| 2534 | // Open shortcut |
| 2535 | final ShortcutInfo shortcut = (ShortcutInfo) tag; |
Sunny Goyal | 1a745e8 | 2014-10-02 15:58:31 -0700 | [diff] [blame] | 2536 | |
| 2537 | if (shortcut.isDisabled != 0) { |
Sunny Goyal | d3b87ef | 2016-07-28 12:11:54 -0700 | [diff] [blame] | 2538 | if ((shortcut.isDisabled & |
| 2539 | ~ShortcutInfo.FLAG_DISABLED_SUSPENDED & |
| 2540 | ~ShortcutInfo.FLAG_DISABLED_QUIET_USER) == 0) { |
| 2541 | // If the app is only disabled because of the above flags, launch activity anyway. |
| 2542 | // Framework will tell the user why the app is suspended. |
Kenny Guy | 44cba69 | 2016-01-21 19:50:02 +0000 | [diff] [blame] | 2543 | } else { |
Tony Wickham | 4efffc5 | 2016-08-04 16:34:49 -0700 | [diff] [blame] | 2544 | if (!TextUtils.isEmpty(shortcut.disabledMessage)) { |
| 2545 | // Use a message specific to this shortcut, if it has one. |
| 2546 | Toast.makeText(this, shortcut.disabledMessage, Toast.LENGTH_SHORT).show(); |
| 2547 | return; |
| 2548 | } |
| 2549 | // Otherwise just use a generic error message. |
Kenny Guy | 44cba69 | 2016-01-21 19:50:02 +0000 | [diff] [blame] | 2550 | int error = R.string.activity_not_available; |
| 2551 | if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_SAFEMODE) != 0) { |
| 2552 | error = R.string.safemode_shortcut_error; |
Sunny Goyal | d3b87ef | 2016-07-28 12:11:54 -0700 | [diff] [blame] | 2553 | } else if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_BY_PUBLISHER) != 0 || |
| 2554 | (shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_LOCKED_USER) != 0) { |
Sunny Goyal | 70a7c9b | 2016-07-28 10:07:32 -0700 | [diff] [blame] | 2555 | error = R.string.shortcut_not_available; |
Kenny Guy | 44cba69 | 2016-01-21 19:50:02 +0000 | [diff] [blame] | 2556 | } |
| 2557 | Toast.makeText(this, error, Toast.LENGTH_SHORT).show(); |
| 2558 | return; |
Sunny Goyal | 1a745e8 | 2014-10-02 15:58:31 -0700 | [diff] [blame] | 2559 | } |
Sunny Goyal | 1a745e8 | 2014-10-02 15:58:31 -0700 | [diff] [blame] | 2560 | } |
| 2561 | |
Chris Wren | 40c5ed3 | 2014-06-24 18:24:23 -0400 | [diff] [blame] | 2562 | // Check for abandoned promise |
Sunny Goyal | 3494262 | 2014-08-29 17:20:55 -0700 | [diff] [blame] | 2563 | if ((v instanceof BubbleTextView) |
| 2564 | && shortcut.isPromise() |
| 2565 | && !shortcut.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE)) { |
Sunny Goyal | e7b8cd9 | 2014-08-27 14:04:33 -0700 | [diff] [blame] | 2566 | showBrokenAppInstallDialog( |
Sunny Goyal | 3494262 | 2014-08-29 17:20:55 -0700 | [diff] [blame] | 2567 | shortcut.getTargetComponent().getPackageName(), |
Chris Wren | 40c5ed3 | 2014-06-24 18:24:23 -0400 | [diff] [blame] | 2568 | new DialogInterface.OnClickListener() { |
| 2569 | public void onClick(DialogInterface dialog, int id) { |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 2570 | startAppShortcutOrInfoActivity(v); |
Chris Wren | 40c5ed3 | 2014-06-24 18:24:23 -0400 | [diff] [blame] | 2571 | } |
Chris Wren | 40c5ed3 | 2014-06-24 18:24:23 -0400 | [diff] [blame] | 2572 | }); |
Chris Wren | 40c5ed3 | 2014-06-24 18:24:23 -0400 | [diff] [blame] | 2573 | return; |
| 2574 | } |
| 2575 | |
Sandeep Siddhartha | a942030 | 2014-02-12 18:24:31 -0800 | [diff] [blame] | 2576 | // Start activities |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 2577 | startAppShortcutOrInfoActivity(v); |
Chris Wren | 40c5ed3 | 2014-06-24 18:24:23 -0400 | [diff] [blame] | 2578 | } |
| 2579 | |
Sunny Goyal | a7ce166 | 2016-05-31 15:01:35 -0700 | [diff] [blame] | 2580 | private void startAppShortcutOrInfoActivity(View v) { |
| 2581 | ItemInfo item = (ItemInfo) v.getTag(); |
| 2582 | Intent intent = item.getIntent(); |
| 2583 | if (intent == null) { |
| 2584 | throw new IllegalArgumentException("Input must have a valid intent"); |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 2585 | } |
Sunny Goyal | a7ce166 | 2016-05-31 15:01:35 -0700 | [diff] [blame] | 2586 | boolean success = startActivitySafely(v, intent, item); |
Hyunyoung Song | aa95365 | 2016-04-19 18:30:24 -0700 | [diff] [blame] | 2587 | getUserEventDispatcher().logAppLaunch(v, intent); |
Sandeep Siddhartha | a942030 | 2014-02-12 18:24:31 -0800 | [diff] [blame] | 2588 | |
| 2589 | if (success && v instanceof BubbleTextView) { |
| 2590 | mWaitingForResume = (BubbleTextView) v; |
| 2591 | mWaitingForResume.setStayPressed(true); |
| 2592 | } |
| 2593 | } |
| 2594 | |
| 2595 | /** |
| 2596 | * Event handler for a folder icon click. |
| 2597 | * |
| 2598 | * @param v The view that was clicked. Must be an instance of {@link FolderIcon}. |
| 2599 | */ |
| 2600 | protected void onClickFolderIcon(View v) { |
| 2601 | if (LOGD) Log.d(TAG, "onClickFolder"); |
| 2602 | if (!(v instanceof FolderIcon)){ |
| 2603 | throw new IllegalArgumentException("Input must be a FolderIcon"); |
| 2604 | } |
| 2605 | |
| 2606 | FolderIcon folderIcon = (FolderIcon) v; |
Sunny Goyal | 08442b8 | 2015-10-21 17:15:08 -0700 | [diff] [blame] | 2607 | if (!folderIcon.getFolderInfo().opened && !folderIcon.getFolder().isDestroyed()) { |
Sandeep Siddhartha | a942030 | 2014-02-12 18:24:31 -0800 | [diff] [blame] | 2608 | // Open the requested folder |
Adam Cohen | 37b2a49 | 2016-04-06 18:36:06 -0700 | [diff] [blame] | 2609 | openFolder(folderIcon); |
Sandeep Siddhartha | a942030 | 2014-02-12 18:24:31 -0800 | [diff] [blame] | 2610 | } |
Michael Jurka | 5130e40 | 2011-10-13 04:55:35 -0700 | [diff] [blame] | 2611 | } |
| 2612 | |
Sandeep Siddhartha | d805837 | 2014-01-28 10:41:15 -0800 | [diff] [blame] | 2613 | /** |
| 2614 | * Event handler for the (Add) Widgets button that appears after a long press |
| 2615 | * on the home screen. |
| 2616 | */ |
Sunny Goyal | d0a6ae7 | 2016-06-16 12:29:03 -0700 | [diff] [blame] | 2617 | public void onClickAddWidgetButton(View view) { |
Sandeep Siddhartha | a942030 | 2014-02-12 18:24:31 -0800 | [diff] [blame] | 2618 | if (LOGD) Log.d(TAG, "onClickAddWidgetButton"); |
Sunny Goyal | 9b4b081 | 2014-10-08 10:47:28 -0700 | [diff] [blame] | 2619 | if (mIsSafeModeEnabled) { |
| 2620 | Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show(); |
| 2621 | } else { |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 2622 | showWidgetsView(true /* animated */, true /* resetPageToZero */); |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 2623 | } |
Sandeep Siddhartha | d805837 | 2014-01-28 10:41:15 -0800 | [diff] [blame] | 2624 | } |
| 2625 | |
Sandeep Siddhartha | a942030 | 2014-02-12 18:24:31 -0800 | [diff] [blame] | 2626 | /** |
| 2627 | * Event handler for the wallpaper picker button that appears after a long press |
| 2628 | * on the home screen. |
| 2629 | */ |
Sunny Goyal | d0a6ae7 | 2016-06-16 12:29:03 -0700 | [diff] [blame] | 2630 | public void onClickWallpaperPicker(View v) { |
Sunny Goyal | 1ed6c4a | 2016-04-21 15:16:11 -0700 | [diff] [blame] | 2631 | if (!Utilities.isWallapaperAllowed(this)) { |
| 2632 | Toast.makeText(this, R.string.msg_disabled_by_admin, Toast.LENGTH_SHORT).show(); |
| 2633 | return; |
| 2634 | } |
| 2635 | |
Sunny Goyal | 04cc3a7 | 2016-05-17 10:32:43 -0700 | [diff] [blame] | 2636 | String pickerPackage = getString(R.string.wallpaper_picker_package); |
| 2637 | if (TextUtils.isEmpty(pickerPackage)) { |
| 2638 | pickerPackage = PackageManagerHelper.getWallpaperPickerPackage(getPackageManager()); |
| 2639 | } |
| 2640 | |
Tony Wickham | 785f7a5 | 2015-08-31 17:28:32 -0700 | [diff] [blame] | 2641 | int pageScroll = mWorkspace.getScrollForPage(mWorkspace.getPageNearestToCenterOfScreen()); |
| 2642 | float offset = mWorkspace.mWallpaperOffset.wallpaperOffsetForScroll(pageScroll); |
Sunny Goyal | 0eca4e2 | 2016-07-20 11:43:06 -0700 | [diff] [blame] | 2643 | |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 2644 | setWaitingForResult(new PendingRequestArgs(new ItemInfo())); |
Sunny Goyal | 0eca4e2 | 2016-07-20 11:43:06 -0700 | [diff] [blame] | 2645 | Intent intent = new Intent(Intent.ACTION_SET_WALLPAPER) |
Sunny Goyal | 04cc3a7 | 2016-05-17 10:32:43 -0700 | [diff] [blame] | 2646 | .setPackage(pickerPackage) |
Sunny Goyal | 0eca4e2 | 2016-07-20 11:43:06 -0700 | [diff] [blame] | 2647 | .putExtra(Utilities.EXTRA_WALLPAPER_OFFSET, offset); |
| 2648 | intent.setSourceBounds(getViewBounds(v)); |
| 2649 | startActivityForResult(intent, REQUEST_PICK_WALLPAPER, getActivityLaunchOptions(v)); |
Sandeep Siddhartha | a942030 | 2014-02-12 18:24:31 -0800 | [diff] [blame] | 2650 | } |
| 2651 | |
| 2652 | /** |
| 2653 | * Event handler for a click on the settings button that appears after a long press |
| 2654 | * on the home screen. |
| 2655 | */ |
Sunny Goyal | d0a6ae7 | 2016-06-16 12:29:03 -0700 | [diff] [blame] | 2656 | public void onClickSettingsButton(View v) { |
Sandeep Siddhartha | a942030 | 2014-02-12 18:24:31 -0800 | [diff] [blame] | 2657 | if (LOGD) Log.d(TAG, "onClickSettingsButton"); |
Sunny Goyal | f3a09f9 | 2016-08-25 09:45:14 -0700 | [diff] [blame] | 2658 | Intent intent = new Intent(Intent.ACTION_APPLICATION_PREFERENCES) |
| 2659 | .setPackage(getPackageName()); |
| 2660 | intent.setSourceBounds(getViewBounds(v)); |
| 2661 | startActivity(intent, getActivityLaunchOptions(v)); |
Sandeep Siddhartha | a942030 | 2014-02-12 18:24:31 -0800 | [diff] [blame] | 2662 | } |
| 2663 | |
Adam Cohen | 61f560d | 2013-09-30 15:58:20 -0700 | [diff] [blame] | 2664 | public View.OnTouchListener getHapticFeedbackTouchListener() { |
| 2665 | if (mHapticFeedbackTouchListener == null) { |
| 2666 | mHapticFeedbackTouchListener = new View.OnTouchListener() { |
Sunny Goyal | 7066003 | 2015-05-14 00:07:08 -0700 | [diff] [blame] | 2667 | @SuppressLint("ClickableViewAccessibility") |
Adam Cohen | 61f560d | 2013-09-30 15:58:20 -0700 | [diff] [blame] | 2668 | @Override |
| 2669 | public boolean onTouch(View v, MotionEvent event) { |
| 2670 | if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) { |
| 2671 | v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY); |
| 2672 | } |
| 2673 | return false; |
| 2674 | } |
| 2675 | }; |
| 2676 | } |
| 2677 | return mHapticFeedbackTouchListener; |
| 2678 | } |
| 2679 | |
Tony Wickham | e221725 | 2016-03-22 16:34:23 -0700 | [diff] [blame] | 2680 | @Override |
| 2681 | public void onAccessibilityStateChanged(boolean enabled) { |
| 2682 | mDragLayer.onAccessibilityStateChanged(enabled); |
| 2683 | } |
| 2684 | |
Sunny Goyal | 06e21a2 | 2016-08-11 16:02:02 -0700 | [diff] [blame] | 2685 | public void onDragStarted() { |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 2686 | if (isOnCustomContent()) { |
| 2687 | // Custom content screen doesn't participate in drag and drop. If on custom |
| 2688 | // content screen, move to default. |
| 2689 | moveWorkspaceToDefaultScreen(); |
| 2690 | } |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 2691 | } |
Anjali Koppal | 62d18ed | 2014-03-10 17:04:03 -0700 | [diff] [blame] | 2692 | |
Sandeep Siddhartha | ab2d9d7 | 2013-09-17 13:18:24 -0700 | [diff] [blame] | 2693 | /** |
| 2694 | * Called when the user stops interacting with the launcher. |
| 2695 | * This implies that the user is now on the homescreen and is not doing housekeeping. |
| 2696 | */ |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 2697 | protected void onInteractionEnd() { |
| 2698 | if (mLauncherCallbacks != null) { |
| 2699 | mLauncherCallbacks.onInteractionEnd(); |
| 2700 | } |
| 2701 | } |
Sandeep Siddhartha | ab2d9d7 | 2013-09-17 13:18:24 -0700 | [diff] [blame] | 2702 | |
| 2703 | /** |
| 2704 | * Called when the user starts interacting with the launcher. |
| 2705 | * The possible interactions are: |
| 2706 | * - open all apps |
| 2707 | * - reorder an app shortcut, or a widget |
| 2708 | * - open the overview mode. |
| 2709 | * This is a good time to stop doing things that only make sense |
| 2710 | * when the user is on the homescreen and not doing housekeeping. |
| 2711 | */ |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 2712 | protected void onInteractionBegin() { |
| 2713 | if (mLauncherCallbacks != null) { |
| 2714 | mLauncherCallbacks.onInteractionBegin(); |
| 2715 | } |
| 2716 | } |
Sandeep Siddhartha | ab2d9d7 | 2013-09-17 13:18:24 -0700 | [diff] [blame] | 2717 | |
Winson Chung | cd99cd3 | 2015-04-29 11:03:24 -0700 | [diff] [blame] | 2718 | /** Updates the interaction state. */ |
| 2719 | public void updateInteraction(Workspace.State fromState, Workspace.State toState) { |
Winson Chung | 83f59ab | 2015-05-05 17:21:58 -0700 | [diff] [blame] | 2720 | // Only update the interacting state if we are transitioning to/from a view with an |
Winson Chung | cd99cd3 | 2015-04-29 11:03:24 -0700 | [diff] [blame] | 2721 | // overlay |
Winson Chung | ef7f874 | 2015-06-04 17:18:17 -0700 | [diff] [blame] | 2722 | boolean fromStateWithOverlay = fromState != Workspace.State.NORMAL; |
| 2723 | boolean toStateWithOverlay = toState != Workspace.State.NORMAL; |
Winson Chung | 83f59ab | 2015-05-05 17:21:58 -0700 | [diff] [blame] | 2724 | if (toStateWithOverlay) { |
Winson Chung | cd99cd3 | 2015-04-29 11:03:24 -0700 | [diff] [blame] | 2725 | onInteractionBegin(); |
Winson Chung | 83f59ab | 2015-05-05 17:21:58 -0700 | [diff] [blame] | 2726 | } else if (fromStateWithOverlay) { |
Winson Chung | cd99cd3 | 2015-04-29 11:03:24 -0700 | [diff] [blame] | 2727 | onInteractionEnd(); |
| 2728 | } |
| 2729 | } |
| 2730 | |
Sunny Goyal | a7ce166 | 2016-05-31 15:01:35 -0700 | [diff] [blame] | 2731 | private void startShortcutIntentSafely(Intent intent, Bundle optsBundle, ItemInfo info) { |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 2732 | try { |
Sunny Goyal | a7ce166 | 2016-05-31 15:01:35 -0700 | [diff] [blame] | 2733 | StrictMode.VmPolicy oldPolicy = StrictMode.getVmPolicy(); |
| 2734 | try { |
| 2735 | // Temporarily disable deathPenalty on all default checks. For eg, shortcuts |
| 2736 | // containing file Uri's would cause a crash as penaltyDeathOnFileUriExposure |
| 2737 | // is enabled by default on NYC. |
| 2738 | StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder().detectAll() |
| 2739 | .penaltyLog().build()); |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 2740 | |
| 2741 | if (info.itemType == LauncherSettings.Favorites.ITEM_TYPE_DEEP_SHORTCUT) { |
| 2742 | String id = ((ShortcutInfo) info).getDeepShortcutId(); |
| 2743 | String packageName = intent.getPackage(); |
Sunny Goyal | 9994b2b | 2016-06-23 14:17:24 -0700 | [diff] [blame] | 2744 | LauncherAppState.getInstance().getShortcutManager().startShortcut( |
| 2745 | packageName, id, intent.getSourceBounds(), optsBundle, info.user); |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 2746 | } else { |
| 2747 | // Could be launching some bookkeeping activity |
| 2748 | startActivity(intent, optsBundle); |
| 2749 | } |
Sunny Goyal | a7ce166 | 2016-05-31 15:01:35 -0700 | [diff] [blame] | 2750 | } finally { |
| 2751 | StrictMode.setVmPolicy(oldPolicy); |
Kenny Guy | 1317e2d | 2014-05-08 18:52:50 +0100 | [diff] [blame] | 2752 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 2753 | } catch (SecurityException e) { |
Sunny Goyal | a7ce166 | 2016-05-31 15:01:35 -0700 | [diff] [blame] | 2754 | // Due to legacy reasons, direct call shortcuts require Launchers to have the |
| 2755 | // corresponding permission. Show the appropriate permission prompt if that |
| 2756 | // is the case. |
| 2757 | if (intent.getComponent() == null |
| 2758 | && Intent.ACTION_CALL.equals(intent.getAction()) |
| 2759 | && checkSelfPermission(Manifest.permission.CALL_PHONE) != |
| 2760 | PackageManager.PERMISSION_GRANTED) { |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 2761 | |
| 2762 | setWaitingForResult(PendingRequestArgs |
| 2763 | .forIntent(REQUEST_PERMISSION_CALL_PHONE, intent, info)); |
Sunny Goyal | a7ce166 | 2016-05-31 15:01:35 -0700 | [diff] [blame] | 2764 | requestPermissions(new String[]{Manifest.permission.CALL_PHONE}, |
| 2765 | REQUEST_PERMISSION_CALL_PHONE); |
| 2766 | } else { |
| 2767 | // No idea why this was thrown. |
| 2768 | throw e; |
Sunny Goyal | 28c6b96 | 2015-10-12 11:42:05 -0700 | [diff] [blame] | 2769 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 2770 | } |
| 2771 | } |
Winson Chung | aafa03c | 2010-06-11 17:34:16 -0700 | [diff] [blame] | 2772 | |
Sunny Goyal | a7ce166 | 2016-05-31 15:01:35 -0700 | [diff] [blame] | 2773 | private Bundle getActivityLaunchOptions(View v) { |
| 2774 | if (Utilities.ATLEAST_MARSHMALLOW) { |
| 2775 | int left = 0, top = 0; |
| 2776 | int width = v.getMeasuredWidth(), height = v.getMeasuredHeight(); |
| 2777 | if (v instanceof TextView) { |
| 2778 | // Launch from center of icon, not entire view |
| 2779 | Drawable icon = Workspace.getTextViewIcon((TextView) v); |
| 2780 | if (icon != null) { |
| 2781 | Rect bounds = icon.getBounds(); |
| 2782 | left = (width - bounds.width()) / 2; |
| 2783 | top = v.getPaddingTop(); |
| 2784 | width = bounds.width(); |
| 2785 | height = bounds.height(); |
| 2786 | } |
| 2787 | } |
| 2788 | return ActivityOptions.makeClipRevealAnimation(v, left, top, width, height).toBundle(); |
| 2789 | } else if (Utilities.ATLEAST_LOLLIPOP_MR1) { |
| 2790 | // On L devices, we use the device default slide-up transition. |
| 2791 | // On L MR1 devices, we use a custom version of the slide-up transition which |
| 2792 | // doesn't have the delay present in the device default. |
| 2793 | return ActivityOptions.makeCustomAnimation( |
| 2794 | this, R.anim.task_open_enter, R.anim.no_anim).toBundle(); |
| 2795 | } |
| 2796 | return null; |
| 2797 | } |
| 2798 | |
Sunny Goyal | 0eca4e2 | 2016-07-20 11:43:06 -0700 | [diff] [blame] | 2799 | private Rect getViewBounds(View v) { |
| 2800 | int[] pos = new int[2]; |
| 2801 | v.getLocationOnScreen(pos); |
| 2802 | return new Rect(pos[0], pos[1], pos[0] + v.getWidth(), pos[1] + v.getHeight()); |
| 2803 | } |
| 2804 | |
Sunny Goyal | a7ce166 | 2016-05-31 15:01:35 -0700 | [diff] [blame] | 2805 | public boolean startActivitySafely(View v, Intent intent, ItemInfo item) { |
Sunny Goyal | c5c60ad | 2014-07-14 12:02:01 -0700 | [diff] [blame] | 2806 | if (mIsSafeModeEnabled && !Utilities.isSystemApp(this, intent)) { |
| 2807 | Toast.makeText(this, R.string.safemode_shortcut_error, Toast.LENGTH_SHORT).show(); |
| 2808 | return false; |
| 2809 | } |
Sunny Goyal | a7ce166 | 2016-05-31 15:01:35 -0700 | [diff] [blame] | 2810 | // Only launch using the new animation if the shortcut has not opted out (this is a |
| 2811 | // private contract between launcher and may be ignored in the future). |
| 2812 | boolean useLaunchAnimation = (v != null) && |
| 2813 | !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION); |
| 2814 | Bundle optsBundle = useLaunchAnimation ? getActivityLaunchOptions(v) : null; |
| 2815 | |
| 2816 | UserHandleCompat user = null; |
| 2817 | if (intent.hasExtra(AppInfo.EXTRA_PROFILE)) { |
| 2818 | long serialNumber = intent.getLongExtra(AppInfo.EXTRA_PROFILE, -1); |
| 2819 | user = UserManagerCompat.getInstance(this).getUserForSerialNumber(serialNumber); |
Michael Jurka | 86a720e | 2012-05-09 11:23:23 -0700 | [diff] [blame] | 2820 | } |
Sunny Goyal | a7ce166 | 2016-05-31 15:01:35 -0700 | [diff] [blame] | 2821 | |
| 2822 | // Prepare intent |
| 2823 | intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); |
| 2824 | if (v != null) { |
Sunny Goyal | 0eca4e2 | 2016-07-20 11:43:06 -0700 | [diff] [blame] | 2825 | intent.setSourceBounds(getViewBounds(v)); |
Sunny Goyal | a7ce166 | 2016-05-31 15:01:35 -0700 | [diff] [blame] | 2826 | } |
| 2827 | try { |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 2828 | if (Utilities.ATLEAST_MARSHMALLOW && item != null |
| 2829 | && (item.itemType == Favorites.ITEM_TYPE_SHORTCUT |
Tony Wickham | fc02c1b | 2016-08-29 15:17:48 -0700 | [diff] [blame] | 2830 | || item.itemType == Favorites.ITEM_TYPE_DEEP_SHORTCUT) |
| 2831 | && ((ShortcutInfo) item).promisedIntent == null) { |
Sunny Goyal | a7ce166 | 2016-05-31 15:01:35 -0700 | [diff] [blame] | 2832 | // Shortcuts need some special checks due to legacy reasons. |
| 2833 | startShortcutIntentSafely(intent, optsBundle, item); |
| 2834 | } else if (user == null || user.equals(UserHandleCompat.myUserHandle())) { |
| 2835 | // Could be launching some bookkeeping activity |
| 2836 | startActivity(intent, optsBundle); |
| 2837 | } else { |
| 2838 | LauncherAppsCompat.getInstance(this).startActivityForProfile( |
| 2839 | intent.getComponent(), user, intent.getSourceBounds(), optsBundle); |
| 2840 | } |
| 2841 | return true; |
| 2842 | } catch (ActivityNotFoundException|SecurityException e) { |
| 2843 | Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show(); |
| 2844 | Log.e(TAG, "Unable to launch. tag=" + item + " intent=" + intent, e); |
| 2845 | } |
| 2846 | return false; |
Michael Jurka | 86a720e | 2012-05-09 11:23:23 -0700 | [diff] [blame] | 2847 | } |
| 2848 | |
Adam Cohen | 268c475 | 2012-06-06 17:47:33 -0700 | [diff] [blame] | 2849 | /** |
| 2850 | * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView |
| 2851 | * in the DragLayer in the exact absolute location of the original FolderIcon. |
| 2852 | */ |
| 2853 | private void copyFolderIconToImage(FolderIcon fi) { |
| 2854 | final int width = fi.getMeasuredWidth(); |
| 2855 | final int height = fi.getMeasuredHeight(); |
| 2856 | |
| 2857 | // Lazy load ImageView, Bitmap and Canvas |
| 2858 | if (mFolderIconImageView == null) { |
| 2859 | mFolderIconImageView = new ImageView(this); |
| 2860 | } |
| 2861 | if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width || |
| 2862 | mFolderIconBitmap.getHeight() != height) { |
| 2863 | mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888); |
| 2864 | mFolderIconCanvas = new Canvas(mFolderIconBitmap); |
| 2865 | } |
| 2866 | |
| 2867 | DragLayer.LayoutParams lp; |
| 2868 | if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) { |
| 2869 | lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams(); |
| 2870 | } else { |
| 2871 | lp = new DragLayer.LayoutParams(width, height); |
| 2872 | } |
| 2873 | |
Adam Cohen | 307fe23 | 2012-08-16 17:55:58 -0700 | [diff] [blame] | 2874 | // The layout from which the folder is being opened may be scaled, adjust the starting |
| 2875 | // view size by this scale factor. |
| 2876 | float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation); |
Adam Cohen | 268c475 | 2012-06-06 17:47:33 -0700 | [diff] [blame] | 2877 | lp.customPosition = true; |
| 2878 | lp.x = mRectForFolderAnimation.left; |
| 2879 | lp.y = mRectForFolderAnimation.top; |
Adam Cohen | 307fe23 | 2012-08-16 17:55:58 -0700 | [diff] [blame] | 2880 | lp.width = (int) (scale * width); |
| 2881 | lp.height = (int) (scale * height); |
Adam Cohen | 268c475 | 2012-06-06 17:47:33 -0700 | [diff] [blame] | 2882 | |
| 2883 | mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR); |
| 2884 | fi.draw(mFolderIconCanvas); |
| 2885 | mFolderIconImageView.setImageBitmap(mFolderIconBitmap); |
Adam Cohen | fb91f30 | 2012-06-11 15:45:18 -0700 | [diff] [blame] | 2886 | if (fi.getFolder() != null) { |
| 2887 | mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation()); |
| 2888 | mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation()); |
Adam Cohen | 8ec2303 | 2012-06-08 14:46:22 -0700 | [diff] [blame] | 2889 | } |
Adam Cohen | 268c475 | 2012-06-06 17:47:33 -0700 | [diff] [blame] | 2890 | // Just in case this image view is still in the drag layer from a previous animation, |
| 2891 | // we remove it and re-add it. |
| 2892 | if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) { |
| 2893 | mDragLayer.removeView(mFolderIconImageView); |
| 2894 | } |
| 2895 | mDragLayer.addView(mFolderIconImageView, lp); |
Adam Cohen | fb91f30 | 2012-06-11 15:45:18 -0700 | [diff] [blame] | 2896 | if (fi.getFolder() != null) { |
| 2897 | fi.getFolder().bringToFront(); |
Adam Cohen | 8ec2303 | 2012-06-08 14:46:22 -0700 | [diff] [blame] | 2898 | } |
Adam Cohen | 268c475 | 2012-06-06 17:47:33 -0700 | [diff] [blame] | 2899 | } |
| 2900 | |
Adam Cohen | 37b2a49 | 2016-04-06 18:36:06 -0700 | [diff] [blame] | 2901 | private void growAndFadeOutFolderIcon(FolderIcon fi) { |
Adam Cohen | 9932a9b | 2011-08-02 22:14:07 -0700 | [diff] [blame] | 2902 | if (fi == null) return; |
Adam Cohen | c51934b | 2011-07-26 21:07:43 -0700 | [diff] [blame] | 2903 | FolderInfo info = (FolderInfo) fi.getTag(); |
| 2904 | if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) { |
| 2905 | CellLayout cl = (CellLayout) fi.getParent().getParent(); |
Winson Chung | e50adee | 2011-08-11 16:12:00 -0700 | [diff] [blame] | 2906 | CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams(); |
| 2907 | cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY); |
Adam Cohen | c51934b | 2011-07-26 21:07:43 -0700 | [diff] [blame] | 2908 | } |
| 2909 | |
Adam Cohen | 268c475 | 2012-06-06 17:47:33 -0700 | [diff] [blame] | 2910 | // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original |
| 2911 | copyFolderIconToImage(fi); |
| 2912 | fi.setVisibility(View.INVISIBLE); |
| 2913 | |
Sunny Goyal | 5d2fc32 | 2015-07-06 22:52:49 -0700 | [diff] [blame] | 2914 | ObjectAnimator oa = LauncherAnimUtils.ofViewAlphaAndScale( |
| 2915 | mFolderIconImageView, 0, 1.5f, 1.5f); |
Sunny Goyal | 9fc953b | 2015-08-17 12:24:25 -0700 | [diff] [blame] | 2916 | if (Utilities.ATLEAST_LOLLIPOP) { |
Adam Cohen | c4fe9ea | 2014-08-18 18:54:10 -0700 | [diff] [blame] | 2917 | oa.setInterpolator(new LogDecelerateInterpolator(100, 0)); |
| 2918 | } |
| 2919 | oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration)); |
Adam Cohen | 2801caf | 2011-05-13 20:57:39 -0700 | [diff] [blame] | 2920 | oa.start(); |
| 2921 | } |
| 2922 | |
Sunny Goyal | 935fca1 | 2015-10-13 10:19:01 -0700 | [diff] [blame] | 2923 | private void shrinkAndFadeInFolderIcon(final FolderIcon fi, boolean animate) { |
Adam Cohen | 9932a9b | 2011-08-02 22:14:07 -0700 | [diff] [blame] | 2924 | if (fi == null) return; |
Adam Cohen | 268c475 | 2012-06-06 17:47:33 -0700 | [diff] [blame] | 2925 | final CellLayout cl = (CellLayout) fi.getParent().getParent(); |
Adam Cohen | c51934b | 2011-07-26 21:07:43 -0700 | [diff] [blame] | 2926 | |
Adam Cohen | 268c475 | 2012-06-06 17:47:33 -0700 | [diff] [blame] | 2927 | // We remove and re-draw the FolderIcon in-case it has changed |
| 2928 | mDragLayer.removeView(mFolderIconImageView); |
| 2929 | copyFolderIconToImage(fi); |
Adam Cohen | efca027 | 2016-02-24 19:19:06 -0800 | [diff] [blame] | 2930 | |
| 2931 | if (cl != null) { |
| 2932 | cl.clearFolderLeaveBehind(); |
| 2933 | } |
| 2934 | |
Sunny Goyal | 5d2fc32 | 2015-07-06 22:52:49 -0700 | [diff] [blame] | 2935 | ObjectAnimator oa = LauncherAnimUtils.ofViewAlphaAndScale(mFolderIconImageView, 1, 1, 1); |
Adam Cohen | c4fe9ea | 2014-08-18 18:54:10 -0700 | [diff] [blame] | 2936 | oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration)); |
Adam Cohen | c51934b | 2011-07-26 21:07:43 -0700 | [diff] [blame] | 2937 | oa.addListener(new AnimatorListenerAdapter() { |
| 2938 | @Override |
| 2939 | public void onAnimationEnd(Animator animation) { |
Adam Cohen | 268c475 | 2012-06-06 17:47:33 -0700 | [diff] [blame] | 2940 | if (cl != null) { |
Adam Cohen | 268c475 | 2012-06-06 17:47:33 -0700 | [diff] [blame] | 2941 | // Remove the ImageView copy of the FolderIcon and make the original visible. |
| 2942 | mDragLayer.removeView(mFolderIconImageView); |
| 2943 | fi.setVisibility(View.VISIBLE); |
Adam Cohen | c51934b | 2011-07-26 21:07:43 -0700 | [diff] [blame] | 2944 | } |
| 2945 | } |
| 2946 | }); |
Adam Cohen | 2801caf | 2011-05-13 20:57:39 -0700 | [diff] [blame] | 2947 | oa.start(); |
Sunny Goyal | 935fca1 | 2015-10-13 10:19:01 -0700 | [diff] [blame] | 2948 | if (!animate) { |
| 2949 | oa.end(); |
| 2950 | } |
Adam Cohen | 2801caf | 2011-05-13 20:57:39 -0700 | [diff] [blame] | 2951 | } |
| 2952 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 2953 | /** |
Michael Jurka | 774bd37 | 2010-10-22 13:40:50 -0700 | [diff] [blame] | 2954 | * Opens the user folder described by the specified tag. The opening of the folder |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 2955 | * is animated relative to the specified View. If the View is null, no animation |
| 2956 | * is played. |
| 2957 | * |
Sunny Goyal | 08442b8 | 2015-10-21 17:15:08 -0700 | [diff] [blame] | 2958 | * @param folderIcon The FolderIcon describing the folder to open. |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 2959 | */ |
Adam Cohen | 37b2a49 | 2016-04-06 18:36:06 -0700 | [diff] [blame] | 2960 | public void openFolder(FolderIcon folderIcon) { |
Sunny Goyal | 08442b8 | 2015-10-21 17:15:08 -0700 | [diff] [blame] | 2961 | |
Adam Cohen | fb91f30 | 2012-06-11 15:45:18 -0700 | [diff] [blame] | 2962 | Folder folder = folderIcon.getFolder(); |
Sunny Goyal | f406615 | 2015-04-15 09:42:19 -0700 | [diff] [blame] | 2963 | Folder openFolder = mWorkspace != null ? mWorkspace.getOpenFolder() : null; |
| 2964 | if (openFolder != null && openFolder != folder) { |
| 2965 | // Close any open folder before opening a folder. |
| 2966 | closeFolder(); |
| 2967 | } |
| 2968 | |
Adam Cohen | a9cf38f | 2011-05-02 15:36:58 -0700 | [diff] [blame] | 2969 | FolderInfo info = folder.mInfo; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 2970 | |
Adam Cohen | a9cf38f | 2011-05-02 15:36:58 -0700 | [diff] [blame] | 2971 | info.opened = true; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 2972 | |
Sunny Goyal | f406615 | 2015-04-15 09:42:19 -0700 | [diff] [blame] | 2973 | // While the folder is open, the position of the icon cannot change. |
| 2974 | ((CellLayout.LayoutParams) folderIcon.getLayoutParams()).canReorder = false; |
| 2975 | |
Adam Cohen | 4554ee1 | 2011-08-03 16:13:21 -0700 | [diff] [blame] | 2976 | // Just verify that the folder hasn't already been added to the DragLayer. |
| 2977 | // There was a one-off crash where the folder had a parent already. |
| 2978 | if (folder.getParent() == null) { |
| 2979 | mDragLayer.addView(folder); |
Sunny Goyal | 08442b8 | 2015-10-21 17:15:08 -0700 | [diff] [blame] | 2980 | mDragController.addDropTarget(folder); |
Adam Cohen | 4554ee1 | 2011-08-03 16:13:21 -0700 | [diff] [blame] | 2981 | } else { |
| 2982 | Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" + |
| 2983 | folder.getParent() + ")."); |
| 2984 | } |
Adam Cohen | 37b2a49 | 2016-04-06 18:36:06 -0700 | [diff] [blame] | 2985 | folder.animateOpen(); |
| 2986 | |
| 2987 | growAndFadeOutFolderIcon(folderIcon); |
Winson Chung | 83ca480 | 2013-04-12 15:10:52 -0700 | [diff] [blame] | 2988 | |
| 2989 | // Notify the accessibility manager that this folder "window" has appeared and occluded |
| 2990 | // the workspace items |
| 2991 | folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED); |
| 2992 | getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED); |
Adam Cohen | 4554ee1 | 2011-08-03 16:13:21 -0700 | [diff] [blame] | 2993 | } |
| 2994 | |
| 2995 | public void closeFolder() { |
Sunny Goyal | 935fca1 | 2015-10-13 10:19:01 -0700 | [diff] [blame] | 2996 | closeFolder(true); |
| 2997 | } |
| 2998 | |
| 2999 | public void closeFolder(boolean animate) { |
Adam Cohen | 37c717f | 2013-11-26 11:50:15 -0800 | [diff] [blame] | 3000 | Folder folder = mWorkspace != null ? mWorkspace.getOpenFolder() : null; |
Adam Cohen | 4554ee1 | 2011-08-03 16:13:21 -0700 | [diff] [blame] | 3001 | if (folder != null) { |
Adam Cohen | ac56cff | 2011-09-28 20:45:37 -0700 | [diff] [blame] | 3002 | if (folder.isEditingName()) { |
| 3003 | folder.dismissEditingName(); |
| 3004 | } |
Sunny Goyal | 935fca1 | 2015-10-13 10:19:01 -0700 | [diff] [blame] | 3005 | closeFolder(folder, animate); |
Adam Cohen | 4554ee1 | 2011-08-03 16:13:21 -0700 | [diff] [blame] | 3006 | } |
| 3007 | } |
| 3008 | |
Sunny Goyal | 935fca1 | 2015-10-13 10:19:01 -0700 | [diff] [blame] | 3009 | public void closeFolder(Folder folder, boolean animate) { |
Sunny Goyal | 08442b8 | 2015-10-21 17:15:08 -0700 | [diff] [blame] | 3010 | animate &= !Utilities.isPowerSaverOn(this); |
| 3011 | |
Adam Cohen | 4554ee1 | 2011-08-03 16:13:21 -0700 | [diff] [blame] | 3012 | folder.getInfo().opened = false; |
| 3013 | |
| 3014 | ViewGroup parent = (ViewGroup) folder.getParent().getParent(); |
| 3015 | if (parent != null) { |
| 3016 | FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo); |
Sunny Goyal | 935fca1 | 2015-10-13 10:19:01 -0700 | [diff] [blame] | 3017 | shrinkAndFadeInFolderIcon(fi, animate); |
Sunny Goyal | f406615 | 2015-04-15 09:42:19 -0700 | [diff] [blame] | 3018 | if (fi != null) { |
| 3019 | ((CellLayout.LayoutParams) fi.getLayoutParams()).canReorder = true; |
| 3020 | } |
Adam Cohen | 4554ee1 | 2011-08-03 16:13:21 -0700 | [diff] [blame] | 3021 | } |
Sunny Goyal | 935fca1 | 2015-10-13 10:19:01 -0700 | [diff] [blame] | 3022 | if (animate) { |
| 3023 | folder.animateClosed(); |
| 3024 | } else { |
Tony Wickham | 30bdd6e | 2015-11-17 17:59:26 -0800 | [diff] [blame] | 3025 | folder.close(false); |
Sunny Goyal | 935fca1 | 2015-10-13 10:19:01 -0700 | [diff] [blame] | 3026 | } |
Winson Chung | 83ca480 | 2013-04-12 15:10:52 -0700 | [diff] [blame] | 3027 | |
Sunny Goyal | 935fca1 | 2015-10-13 10:19:01 -0700 | [diff] [blame] | 3028 | // Notify the accessibility manager that this folder "window" has disappeared and no |
| 3029 | // longer occludes the workspace items |
Winson Chung | 83ca480 | 2013-04-12 15:10:52 -0700 | [diff] [blame] | 3030 | getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 3031 | } |
| 3032 | |
Tony Wickham | 49c8d29 | 2016-07-01 11:44:34 -0700 | [diff] [blame] | 3033 | public void closeShortcutsContainer() { |
Sunny Goyal | a2454ad | 2016-07-22 10:50:11 -0700 | [diff] [blame] | 3034 | closeShortcutsContainer(true); |
| 3035 | } |
| 3036 | |
| 3037 | public void closeShortcutsContainer(boolean animate) { |
Tony Wickham | 49c8d29 | 2016-07-01 11:44:34 -0700 | [diff] [blame] | 3038 | DeepShortcutsContainer deepShortcutsContainer = getOpenShortcutsContainer(); |
| 3039 | if (deepShortcutsContainer != null) { |
Sunny Goyal | a2454ad | 2016-07-22 10:50:11 -0700 | [diff] [blame] | 3040 | if (animate) { |
| 3041 | deepShortcutsContainer.animateClose(); |
| 3042 | } else { |
| 3043 | deepShortcutsContainer.close(); |
| 3044 | } |
Tony Wickham | 49c8d29 | 2016-07-01 11:44:34 -0700 | [diff] [blame] | 3045 | } |
| 3046 | } |
| 3047 | |
Sunny Goyal | 52851aa | 2016-09-02 10:41:43 -0700 | [diff] [blame] | 3048 | public View getTopFloatingView() { |
| 3049 | View topView = getOpenShortcutsContainer(); |
| 3050 | if (topView == null) { |
| 3051 | topView = getWorkspace().getOpenFolder(); |
| 3052 | } |
| 3053 | return topView; |
| 3054 | } |
| 3055 | |
Tony Wickham | 49c8d29 | 2016-07-01 11:44:34 -0700 | [diff] [blame] | 3056 | /** |
| 3057 | * @return The open shortcuts container, or null if there is none |
| 3058 | */ |
| 3059 | public DeepShortcutsContainer getOpenShortcutsContainer() { |
Sunny Goyal | 71b3d1c | 2016-07-20 17:42:05 -0700 | [diff] [blame] | 3060 | // Iterate in reverse order. Shortcuts container is added later to the dragLayer, |
| 3061 | // and will be one of the last views. |
| 3062 | for (int i = mDragLayer.getChildCount() - 1; i >= 0; i--) { |
| 3063 | View child = mDragLayer.getChildAt(i); |
Sunny Goyal | a2454ad | 2016-07-22 10:50:11 -0700 | [diff] [blame] | 3064 | if (child instanceof DeepShortcutsContainer |
| 3065 | && ((DeepShortcutsContainer) child).isOpen()) { |
Sunny Goyal | 71b3d1c | 2016-07-20 17:42:05 -0700 | [diff] [blame] | 3066 | return (DeepShortcutsContainer) child; |
| 3067 | } |
| 3068 | } |
| 3069 | return null; |
Tony Wickham | 49c8d29 | 2016-07-01 11:44:34 -0700 | [diff] [blame] | 3070 | } |
| 3071 | |
Tony Wickham | dadb304 | 2016-02-24 11:07:00 -0800 | [diff] [blame] | 3072 | @Override |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 3073 | public boolean onLongClick(View v) { |
Winson Chung | 36a62fe | 2012-05-06 18:04:42 -0700 | [diff] [blame] | 3074 | if (!isDraggingEnabled()) return false; |
| 3075 | if (isWorkspaceLocked()) return false; |
| 3076 | if (mState != State.WORKSPACE) return false; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 3077 | |
Hyunyoung Song | 68f98ac | 2016-07-22 14:22:49 -0700 | [diff] [blame] | 3078 | if ((FeatureFlags.LAUNCHER3_ALL_APPS_PULL_UP && v instanceof PageIndicator) || |
| 3079 | (v == mAllAppsButton && mAllAppsButton != null)) { |
Winson Chung | 76648c5 | 2015-07-10 14:33:23 -0700 | [diff] [blame] | 3080 | onLongClickAllAppsButton(v); |
| 3081 | return true; |
| 3082 | } |
| 3083 | |
Adam Cohen | 1697b79 | 2013-09-17 19:08:21 -0700 | [diff] [blame] | 3084 | if (v instanceof Workspace) { |
| 3085 | if (!mWorkspace.isInOverviewMode()) { |
Winson Chung | dc61c4d | 2015-04-20 18:26:57 -0700 | [diff] [blame] | 3086 | if (!mWorkspace.isTouchActive()) { |
| 3087 | showOverviewMode(true); |
Adam Cohen | 93c9756 | 2013-09-26 13:48:01 -0700 | [diff] [blame] | 3088 | mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS, |
| 3089 | HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING); |
| 3090 | return true; |
| 3091 | } else { |
| 3092 | return false; |
| 3093 | } |
Adam Cohen | aa4c8c1 | 2014-06-06 11:52:52 -0700 | [diff] [blame] | 3094 | } else { |
| 3095 | return false; |
Adam Cohen | 1697b79 | 2013-09-17 19:08:21 -0700 | [diff] [blame] | 3096 | } |
Adam Cohen | 1697b79 | 2013-09-17 19:08:21 -0700 | [diff] [blame] | 3097 | } |
| 3098 | |
Adam Cohen | e0aaa0d | 2014-05-12 12:44:22 -0700 | [diff] [blame] | 3099 | CellLayout.CellInfo longClickCellInfo = null; |
| 3100 | View itemUnderLongClick = null; |
| 3101 | if (v.getTag() instanceof ItemInfo) { |
| 3102 | ItemInfo info = (ItemInfo) v.getTag(); |
Adam Cohen | c9735cf | 2015-01-23 16:11:55 -0800 | [diff] [blame] | 3103 | longClickCellInfo = new CellLayout.CellInfo(v, info); |
Adam Cohen | e0aaa0d | 2014-05-12 12:44:22 -0700 | [diff] [blame] | 3104 | itemUnderLongClick = longClickCellInfo.cell; |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 3105 | mPendingRequestArgs = null; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 3106 | } |
| 3107 | |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 3108 | // The hotseat touch handling does not go through Workspace, and we always allow long press |
| 3109 | // on hotseat items. |
Sunny Goyal | 8e2133b | 2015-05-06 13:39:07 -0700 | [diff] [blame] | 3110 | if (!mDragController.isDragging()) { |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 3111 | if (itemUnderLongClick == null) { |
Adam Cohen | d3ecce9 | 2013-09-16 14:58:00 -0700 | [diff] [blame] | 3112 | // User long pressed on empty space |
| 3113 | mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS, |
| 3114 | HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING); |
Adam Cohen | d3ecce9 | 2013-09-16 14:58:00 -0700 | [diff] [blame] | 3115 | if (mWorkspace.isInOverviewMode()) { |
| 3116 | mWorkspace.startReordering(v); |
| 3117 | } else { |
Winson Chung | dc61c4d | 2015-04-20 18:26:57 -0700 | [diff] [blame] | 3118 | showOverviewMode(true); |
Hyunyoung Song | 645764e | 2016-06-06 14:19:02 -0700 | [diff] [blame] | 3119 | mHotseat.requestDisallowInterceptTouchEvent(true); |
Adam Cohen | dedbd96 | 2013-07-11 14:21:49 -0700 | [diff] [blame] | 3120 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 3121 | } else { |
Sunny Goyal | bb011da | 2016-06-15 15:42:29 -0700 | [diff] [blame] | 3122 | final boolean isAllAppsButton = |
| 3123 | !FeatureFlags.NO_ALL_APPS_ICON && isHotseatLayout(v) && |
| 3124 | mDeviceProfile.inv.isAllAppsButtonRank(mHotseat.getOrderInHotseat( |
| 3125 | longClickCellInfo.cellX, longClickCellInfo.cellY)); |
Dan Sandler | e26d094 | 2014-01-13 14:30:14 -0500 | [diff] [blame] | 3126 | if (!(itemUnderLongClick instanceof Folder || isAllAppsButton)) { |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 3127 | // User long pressed on an item |
Sunny Goyal | 94b510c | 2016-08-16 15:36:48 -0700 | [diff] [blame] | 3128 | mWorkspace.startDrag(longClickCellInfo, new DragOptions()); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 3129 | } |
| 3130 | } |
| 3131 | } |
| 3132 | return true; |
| 3133 | } |
| 3134 | |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 3135 | boolean isHotseatLayout(View layout) { |
| 3136 | return mHotseat != null && layout != null && |
| 3137 | (layout instanceof CellLayout) && (layout == mHotseat.getLayout()); |
| 3138 | } |
Romain Guy | 1fbc1c8 | 2009-11-09 20:43:08 -0800 | [diff] [blame] | 3139 | |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 3140 | /** |
| 3141 | * Returns the CellLayout of the specified container at the specified screen. |
| 3142 | */ |
Sunny Goyal | 9282059 | 2015-03-02 11:31:35 -0800 | [diff] [blame] | 3143 | public CellLayout getCellLayout(long container, long screenId) { |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 3144 | if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) { |
| 3145 | if (mHotseat != null) { |
| 3146 | return mHotseat.getLayout(); |
| 3147 | } else { |
| 3148 | return null; |
Romain Guy | e6b8e2f | 2009-11-10 11:56:55 -0800 | [diff] [blame] | 3149 | } |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 3150 | } else { |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 3151 | return mWorkspace.getScreenWithId(screenId); |
Romain Guy | a6abce8 | 2009-11-10 02:54:41 -0800 | [diff] [blame] | 3152 | } |
| 3153 | } |
| 3154 | |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 3155 | /** |
| 3156 | * For overridden classes. |
| 3157 | */ |
Daniel Sandler | 843e860 | 2010-06-07 14:59:01 -0400 | [diff] [blame] | 3158 | public boolean isAllAppsVisible() { |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 3159 | return isAppsViewVisible(); |
| 3160 | } |
| 3161 | |
| 3162 | public boolean isAppsViewVisible() { |
| 3163 | return (mState == State.APPS) || (mOnResumeState == State.APPS); |
| 3164 | } |
| 3165 | |
| 3166 | public boolean isWidgetsViewVisible() { |
| 3167 | return (mState == State.WIDGETS) || (mOnResumeState == State.WIDGETS); |
Joe Onorato | fb0ca67 | 2009-09-14 17:55:46 -0400 | [diff] [blame] | 3168 | } |
| 3169 | |
Michael Jurka | e326f18 | 2011-11-21 14:05:46 -0800 | [diff] [blame] | 3170 | @Override |
| 3171 | public void onTrimMemory(int level) { |
| 3172 | super.onTrimMemory(level); |
Adam Cohen | 3f9c971 | 2014-10-31 11:48:25 -0700 | [diff] [blame] | 3173 | if (level >= ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) { |
| 3174 | // The widget preview db can result in holding onto over |
| 3175 | // 3MB of memory for caching which isn't necessary. |
| 3176 | SQLiteDatabase.releaseMemory(); |
| 3177 | |
Adam Cohen | c8f4e1b | 2014-11-19 16:03:20 -0800 | [diff] [blame] | 3178 | // This clears all widget bitmaps from the widget tray |
Hyunyoung Song | 3f47144 | 2015-04-08 19:01:34 -0700 | [diff] [blame] | 3179 | // TODO(hyunyoungs) |
Michael Jurka | e326f18 | 2011-11-21 14:05:46 -0800 | [diff] [blame] | 3180 | } |
Robert Kozikowski | 67c3086 | 2015-03-30 23:46:46 +0100 | [diff] [blame] | 3181 | if (mLauncherCallbacks != null) { |
| 3182 | mLauncherCallbacks.onTrimMemory(level); |
| 3183 | } |
Michael Jurka | e326f18 | 2011-11-21 14:05:46 -0800 | [diff] [blame] | 3184 | } |
| 3185 | |
Winson | 5c6bdbb | 2015-09-03 11:36:19 -0700 | [diff] [blame] | 3186 | public boolean showWorkspace(boolean animated) { |
Winson | 10612a7 | 2015-09-09 17:06:09 -0700 | [diff] [blame] | 3187 | return showWorkspace(animated, null); |
Adam Cohen | ed307df | 2013-10-02 09:37:31 -0700 | [diff] [blame] | 3188 | } |
| 3189 | |
Winson | 5c6bdbb | 2015-09-03 11:36:19 -0700 | [diff] [blame] | 3190 | public boolean showWorkspace(boolean animated, Runnable onCompleteRunnable) { |
Winson Chung | 0f78572 | 2015-04-08 10:27:49 -0700 | [diff] [blame] | 3191 | boolean changed = mState != State.WORKSPACE || |
| 3192 | mWorkspace.getState() != Workspace.State.NORMAL; |
Hyunyoung Song | 9dcf0a3 | 2016-07-27 10:55:51 -0700 | [diff] [blame] | 3193 | if (changed || mAllAppsController.isTransitioning()) { |
Michael Jurka | b3e22d9 | 2011-10-31 15:58:33 -0700 | [diff] [blame] | 3194 | mWorkspace.setVisibility(View.VISIBLE); |
Winson Chung | 006ee26 | 2015-08-03 14:40:11 -0700 | [diff] [blame] | 3195 | mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(), |
Winson | 2a87fe8 | 2015-08-07 10:37:21 -0700 | [diff] [blame] | 3196 | Workspace.State.NORMAL, animated, onCompleteRunnable); |
Winson Chung | c7d2b60 | 2012-05-16 17:02:20 -0700 | [diff] [blame] | 3197 | |
Michael Jurka | b3e22d9 | 2011-10-31 15:58:33 -0700 | [diff] [blame] | 3198 | // Set focus to the AppsCustomize button |
| 3199 | if (mAllAppsButton != null) { |
| 3200 | mAllAppsButton.requestFocus(); |
| 3201 | } |
Michael Jurka | c0e8fca | 2010-10-06 16:41:29 -0700 | [diff] [blame] | 3202 | } |
Adam Lesinski | 6b879f0 | 2010-11-04 16:15:23 -0700 | [diff] [blame] | 3203 | |
Michael Jurka | c0e8fca | 2010-10-06 16:41:29 -0700 | [diff] [blame] | 3204 | // Change the state *after* we've called all the transition code |
| 3205 | mState = State.WORKSPACE; |
Svetoslav Ganov | 815ba2d | 2011-01-07 14:55:17 -0800 | [diff] [blame] | 3206 | |
Winson Chung | 5fb6347 | 2011-02-02 17:03:37 -0800 | [diff] [blame] | 3207 | // Resume the auto-advance of widgets |
| 3208 | mUserPresent = true; |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 3209 | updateAutoAdvanceState(); |
Winson Chung | 5fb6347 | 2011-02-02 17:03:37 -0800 | [diff] [blame] | 3210 | |
Winson Chung | 0f78572 | 2015-04-08 10:27:49 -0700 | [diff] [blame] | 3211 | if (changed) { |
| 3212 | // Send an accessibility event to announce the context change |
| 3213 | getWindow().getDecorView() |
| 3214 | .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED); |
Winson Chung | 0f78572 | 2015-04-08 10:27:49 -0700 | [diff] [blame] | 3215 | } |
Winson | 5c6bdbb | 2015-09-03 11:36:19 -0700 | [diff] [blame] | 3216 | return changed; |
Bjorn Bringert | c459e52 | 2013-06-07 19:36:01 +0100 | [diff] [blame] | 3217 | } |
| 3218 | |
Winson | e9f2727 | 2015-10-13 10:47:51 -0700 | [diff] [blame] | 3219 | /** |
| 3220 | * Shows the overview button. |
| 3221 | */ |
Sunny Goyal | d0a6ae7 | 2016-06-16 12:29:03 -0700 | [diff] [blame] | 3222 | public void showOverviewMode(boolean animated) { |
Winson | e9f2727 | 2015-10-13 10:47:51 -0700 | [diff] [blame] | 3223 | showOverviewMode(animated, false); |
| 3224 | } |
| 3225 | |
| 3226 | /** |
| 3227 | * Shows the overview button, and if {@param requestButtonFocus} is set, will force the focus |
| 3228 | * onto one of the overview panel buttons. |
| 3229 | */ |
| 3230 | void showOverviewMode(boolean animated, boolean requestButtonFocus) { |
| 3231 | Runnable postAnimRunnable = null; |
| 3232 | if (requestButtonFocus) { |
| 3233 | postAnimRunnable = new Runnable() { |
| 3234 | @Override |
| 3235 | public void run() { |
| 3236 | // Hitting the menu button when in touch mode does not trigger touch mode to |
| 3237 | // be disabled, so if requested, force focus on one of the overview panel |
| 3238 | // buttons. |
| 3239 | mOverviewPanel.requestFocusFromTouch(); |
| 3240 | } |
| 3241 | }; |
| 3242 | } |
Adam Cohen | ed307df | 2013-10-02 09:37:31 -0700 | [diff] [blame] | 3243 | mWorkspace.setVisibility(View.VISIBLE); |
Winson Chung | 006ee26 | 2015-08-03 14:40:11 -0700 | [diff] [blame] | 3244 | mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(), |
Winson | 6e6a9b4 | 2015-10-13 17:52:17 -0700 | [diff] [blame] | 3245 | Workspace.State.OVERVIEW, animated, postAnimRunnable); |
Adam Cohen | ed307df | 2013-10-02 09:37:31 -0700 | [diff] [blame] | 3246 | mState = State.WORKSPACE; |
Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 3247 | } |
| 3248 | |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 3249 | /** |
| 3250 | * Shows the apps view. |
| 3251 | */ |
Hyunyoung Song | dd60ce4 | 2016-07-27 17:08:38 -0700 | [diff] [blame] | 3252 | public void showAppsView(boolean animated, boolean updatePredictedApps, |
Winson Chung | 76648c5 | 2015-07-10 14:33:23 -0700 | [diff] [blame] | 3253 | boolean focusSearchBar) { |
Hyunyoung Song | c001cf5 | 2016-07-21 17:32:43 -0700 | [diff] [blame] | 3254 | markAppsViewShown(); |
Winson Chung | 4ac3006 | 2015-05-08 17:34:17 -0700 | [diff] [blame] | 3255 | if (updatePredictedApps) { |
| 3256 | tryAndUpdatePredictedApps(); |
| 3257 | } |
Winson Chung | 76648c5 | 2015-07-10 14:33:23 -0700 | [diff] [blame] | 3258 | showAppsOrWidgets(State.APPS, animated, focusSearchBar); |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 3259 | } |
Michael Jurka | b3e22d9 | 2011-10-31 15:58:33 -0700 | [diff] [blame] | 3260 | |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 3261 | /** |
| 3262 | * Shows the widgets view. |
| 3263 | */ |
| 3264 | void showWidgetsView(boolean animated, boolean resetPageToZero) { |
Sunny Goyal | 2bba4c3 | 2015-05-18 15:42:48 -0700 | [diff] [blame] | 3265 | if (LOGD) Log.d(TAG, "showWidgetsView:" + animated + " resetPageToZero:" + resetPageToZero); |
Winson Chung | 82963d5 | 2013-10-09 11:20:57 -0700 | [diff] [blame] | 3266 | if (resetPageToZero) { |
Hyunyoung Song | 3f47144 | 2015-04-08 19:01:34 -0700 | [diff] [blame] | 3267 | mWidgetsView.scrollToTop(); |
Winson Chung | 82963d5 | 2013-10-09 11:20:57 -0700 | [diff] [blame] | 3268 | } |
Winson Chung | 76648c5 | 2015-07-10 14:33:23 -0700 | [diff] [blame] | 3269 | showAppsOrWidgets(State.WIDGETS, animated, false); |
Hyunyoung Song | 3f47144 | 2015-04-08 19:01:34 -0700 | [diff] [blame] | 3270 | |
| 3271 | mWidgetsView.post(new Runnable() { |
Adam Cohen | dcc5e71 | 2014-06-23 15:38:55 -0400 | [diff] [blame] | 3272 | @Override |
| 3273 | public void run() { |
Hyunyoung Song | 3f47144 | 2015-04-08 19:01:34 -0700 | [diff] [blame] | 3274 | mWidgetsView.requestFocus(); |
Adam Cohen | dcc5e71 | 2014-06-23 15:38:55 -0400 | [diff] [blame] | 3275 | } |
| 3276 | }); |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 3277 | } |
| 3278 | |
| 3279 | /** |
| 3280 | * Sets up the transition to show the apps/widgets view. |
Hyunyoung Song | b790083 | 2015-05-15 16:29:45 -0700 | [diff] [blame] | 3281 | * |
| 3282 | * @return whether the current from and to state allowed this operation |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 3283 | */ |
Hyunyoung Song | b790083 | 2015-05-15 16:29:45 -0700 | [diff] [blame] | 3284 | // TODO: calling method should use the return value so that when {@code false} is returned |
| 3285 | // the workspace transition doesn't fall into invalid state. |
Winson Chung | 76648c5 | 2015-07-10 14:33:23 -0700 | [diff] [blame] | 3286 | private boolean showAppsOrWidgets(State toState, boolean animated, boolean focusSearchBar) { |
Hyunyoung Song | 9dcf0a3 | 2016-07-27 10:55:51 -0700 | [diff] [blame] | 3287 | if (!(mState == State.WORKSPACE || |
| 3288 | mState == State.APPS_SPRING_LOADED || |
| 3289 | mState == State.WIDGETS_SPRING_LOADED || |
| 3290 | (mState == State.APPS && mAllAppsController.isTransitioning()))) { |
Hyunyoung Song | b790083 | 2015-05-15 16:29:45 -0700 | [diff] [blame] | 3291 | return false; |
| 3292 | } |
| 3293 | if (toState != State.APPS && toState != State.WIDGETS) { |
| 3294 | return false; |
| 3295 | } |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 3296 | |
Hyunyoung Song | 06ca756 | 2016-07-29 13:03:54 -0700 | [diff] [blame] | 3297 | // This is a safe and supported transition to bypass spring_loaded mode. |
| 3298 | if (mExitSpringLoadedModeRunnable != null) { |
| 3299 | mHandler.removeCallbacks(mExitSpringLoadedModeRunnable); |
| 3300 | mExitSpringLoadedModeRunnable = null; |
| 3301 | } |
| 3302 | |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 3303 | if (toState == State.APPS) { |
Winson Chung | 006ee26 | 2015-08-03 14:40:11 -0700 | [diff] [blame] | 3304 | mStateTransitionAnimation.startAnimationToAllApps(mWorkspace.getState(), animated, |
| 3305 | focusSearchBar); |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 3306 | } else { |
Winson Chung | 006ee26 | 2015-08-03 14:40:11 -0700 | [diff] [blame] | 3307 | mStateTransitionAnimation.startAnimationToWidgets(mWorkspace.getState(), animated); |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 3308 | } |
Michael Jurka | b3e22d9 | 2011-10-31 15:58:33 -0700 | [diff] [blame] | 3309 | |
Michael Jurka | b3e22d9 | 2011-10-31 15:58:33 -0700 | [diff] [blame] | 3310 | // Change the state *after* we've called all the transition code |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 3311 | mState = toState; |
Michael Jurka | b3e22d9 | 2011-10-31 15:58:33 -0700 | [diff] [blame] | 3312 | |
| 3313 | // Pause the auto-advance of widgets until we are out of AllApps |
| 3314 | mUserPresent = false; |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 3315 | updateAutoAdvanceState(); |
Michael Jurka | b3e22d9 | 2011-10-31 15:58:33 -0700 | [diff] [blame] | 3316 | closeFolder(); |
Tony Wickham | 49c8d29 | 2016-07-01 11:44:34 -0700 | [diff] [blame] | 3317 | closeShortcutsContainer(); |
Michael Jurka | b3e22d9 | 2011-10-31 15:58:33 -0700 | [diff] [blame] | 3318 | |
| 3319 | // Send an accessibility event to announce the context change |
alanv | 1d4fde6 | 2012-10-17 13:15:47 -0700 | [diff] [blame] | 3320 | getWindow().getDecorView() |
| 3321 | .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED); |
Hyunyoung Song | b790083 | 2015-05-15 16:29:45 -0700 | [diff] [blame] | 3322 | return true; |
Michael Jurka | b3e22d9 | 2011-10-31 15:58:33 -0700 | [diff] [blame] | 3323 | } |
| 3324 | |
Winson Chung | cd99cd3 | 2015-04-29 11:03:24 -0700 | [diff] [blame] | 3325 | /** |
| 3326 | * Updates the workspace and interaction state on state change, and return the animation to this |
| 3327 | * new state. |
| 3328 | */ |
Sunny Goyal | ce5a7e5 | 2015-07-08 15:44:27 -0700 | [diff] [blame] | 3329 | public Animator startWorkspaceStateChangeAnimation(Workspace.State toState, |
Winson Chung | 006ee26 | 2015-08-03 14:40:11 -0700 | [diff] [blame] | 3330 | boolean animated, HashMap<View, Integer> layerViews) { |
Winson Chung | cd99cd3 | 2015-04-29 11:03:24 -0700 | [diff] [blame] | 3331 | Workspace.State fromState = mWorkspace.getState(); |
Winson | 2a87fe8 | 2015-08-07 10:37:21 -0700 | [diff] [blame] | 3332 | Animator anim = mWorkspace.setStateWithAnimation(toState, animated, layerViews); |
Winson Chung | cd99cd3 | 2015-04-29 11:03:24 -0700 | [diff] [blame] | 3333 | updateInteraction(fromState, toState); |
| 3334 | return anim; |
| 3335 | } |
| 3336 | |
Hyunyoung Song | 3f47144 | 2015-04-08 19:01:34 -0700 | [diff] [blame] | 3337 | public void enterSpringLoadedDragMode() { |
Sunny Goyal | 2bba4c3 | 2015-05-18 15:42:48 -0700 | [diff] [blame] | 3338 | if (LOGD) Log.d(TAG, String.format("enterSpringLoadedDragMode [mState=%s", mState.name())); |
Tony Wickham | 94e0d37 | 2015-09-11 12:17:48 -0700 | [diff] [blame] | 3339 | if (isStateSpringLoaded()) { |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 3340 | return; |
Winson Chung | b26f3d6 | 2011-06-02 10:49:29 -0700 | [diff] [blame] | 3341 | } |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 3342 | |
Winson Chung | 006ee26 | 2015-08-03 14:40:11 -0700 | [diff] [blame] | 3343 | mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(), |
Winson | 2a87fe8 | 2015-08-07 10:37:21 -0700 | [diff] [blame] | 3344 | Workspace.State.SPRING_LOADED, true /* animated */, |
Winson Chung | dc61c4d | 2015-04-20 18:26:57 -0700 | [diff] [blame] | 3345 | null /* onCompleteRunnable */); |
Tony Wickham | 94e0d37 | 2015-09-11 12:17:48 -0700 | [diff] [blame] | 3346 | |
| 3347 | if (isAppsViewVisible()) { |
| 3348 | mState = State.APPS_SPRING_LOADED; |
| 3349 | } else if (isWidgetsViewVisible()) { |
| 3350 | mState = State.WIDGETS_SPRING_LOADED; |
Tony Wickham | e0c3323 | 2016-02-08 11:37:04 -0800 | [diff] [blame] | 3351 | } else if (!FeatureFlags.LAUNCHER3_LEGACY_WORKSPACE_DND) { |
Tony Wickham | 94e0d37 | 2015-09-11 12:17:48 -0700 | [diff] [blame] | 3352 | mState = State.WORKSPACE_SPRING_LOADED; |
Tony Wickham | 0f97b78 | 2015-12-02 17:55:07 -0800 | [diff] [blame] | 3353 | } else { |
| 3354 | mState = State.WORKSPACE; |
Tony Wickham | 94e0d37 | 2015-09-11 12:17:48 -0700 | [diff] [blame] | 3355 | } |
Michael Jurka | d3ef306 | 2010-11-23 16:23:58 -0800 | [diff] [blame] | 3356 | } |
Adam Cohen | 7777d96 | 2011-08-18 18:58:38 -0700 | [diff] [blame] | 3357 | |
Hyunyoung Song | 3f47144 | 2015-04-08 19:01:34 -0700 | [diff] [blame] | 3358 | public void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, int delay, |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 3359 | final Runnable onCompleteRunnable) { |
Tony Wickham | 94e0d37 | 2015-09-11 12:17:48 -0700 | [diff] [blame] | 3360 | if (!isStateSpringLoaded()) return; |
Winson Chung | 09bfc45 | 2011-09-09 11:30:20 -0700 | [diff] [blame] | 3361 | |
Hyunyoung Song | 06ca756 | 2016-07-29 13:03:54 -0700 | [diff] [blame] | 3362 | if (mExitSpringLoadedModeRunnable != null) { |
| 3363 | mHandler.removeCallbacks(mExitSpringLoadedModeRunnable); |
| 3364 | } |
| 3365 | mExitSpringLoadedModeRunnable = new Runnable() { |
Winson Chung | 557d6ed | 2011-07-08 15:34:52 -0700 | [diff] [blame] | 3366 | @Override |
| 3367 | public void run() { |
Winson Chung | 6a3fd3f | 2011-08-02 14:03:26 -0700 | [diff] [blame] | 3368 | if (successfulDrop) { |
Hyunyoung Song | 3f47144 | 2015-04-08 19:01:34 -0700 | [diff] [blame] | 3369 | // TODO(hyunyoungs): verify if this hack is still needed, if not, delete. |
| 3370 | // |
Michael Jurka | 7bdb25a | 2011-08-03 15:16:44 -0700 | [diff] [blame] | 3371 | // Before we show workspace, hide all apps again because |
| 3372 | // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should |
| 3373 | // clean up our state transition functions |
Hyunyoung Song | 3f47144 | 2015-04-08 19:01:34 -0700 | [diff] [blame] | 3374 | mWidgetsView.setVisibility(View.GONE); |
Adam Cohen | ed66b2b | 2012-01-23 17:28:51 -0800 | [diff] [blame] | 3375 | showWorkspace(true, onCompleteRunnable); |
Adam Cohen | 7777d96 | 2011-08-18 18:58:38 -0700 | [diff] [blame] | 3376 | } else { |
| 3377 | exitSpringLoadedDragMode(); |
Winson Chung | 6a3fd3f | 2011-08-02 14:03:26 -0700 | [diff] [blame] | 3378 | } |
Hyunyoung Song | 06ca756 | 2016-07-29 13:03:54 -0700 | [diff] [blame] | 3379 | mExitSpringLoadedModeRunnable = null; |
Winson Chung | 557d6ed | 2011-07-08 15:34:52 -0700 | [diff] [blame] | 3380 | } |
Hyunyoung Song | 06ca756 | 2016-07-29 13:03:54 -0700 | [diff] [blame] | 3381 | }; |
| 3382 | mHandler.postDelayed(mExitSpringLoadedModeRunnable, delay); |
Winson Chung | 557d6ed | 2011-07-08 15:34:52 -0700 | [diff] [blame] | 3383 | } |
Michael Jurka | b3e22d9 | 2011-10-31 15:58:33 -0700 | [diff] [blame] | 3384 | |
Tony Wickham | e0c3323 | 2016-02-08 11:37:04 -0800 | [diff] [blame] | 3385 | boolean isStateSpringLoaded() { |
Tony Wickham | 94e0d37 | 2015-09-11 12:17:48 -0700 | [diff] [blame] | 3386 | return mState == State.WORKSPACE_SPRING_LOADED || mState == State.APPS_SPRING_LOADED |
| 3387 | || mState == State.WIDGETS_SPRING_LOADED; |
| 3388 | } |
| 3389 | |
Michael Jurka | d3ef306 | 2010-11-23 16:23:58 -0800 | [diff] [blame] | 3390 | void exitSpringLoadedDragMode() { |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 3391 | if (mState == State.APPS_SPRING_LOADED) { |
Hyunyoung Song | dd60ce4 | 2016-07-27 17:08:38 -0700 | [diff] [blame] | 3392 | showAppsView(true /* animated */, |
Winson Chung | 76648c5 | 2015-07-10 14:33:23 -0700 | [diff] [blame] | 3393 | false /* updatePredictedApps */, false /* focusSearchBar */); |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 3394 | } else if (mState == State.WIDGETS_SPRING_LOADED) { |
Winson Chung | cd99cd3 | 2015-04-29 11:03:24 -0700 | [diff] [blame] | 3395 | showWidgetsView(true, false); |
Tony Wickham | 94e0d37 | 2015-09-11 12:17:48 -0700 | [diff] [blame] | 3396 | } else if (mState == State.WORKSPACE_SPRING_LOADED) { |
| 3397 | showWorkspace(true); |
Winson Chung | f0ea4d3 | 2011-06-06 14:27:16 -0700 | [diff] [blame] | 3398 | } |
Winson Chung | f0ea4d3 | 2011-06-06 14:27:16 -0700 | [diff] [blame] | 3399 | } |
| 3400 | |
Winson Chung | 4ac3006 | 2015-05-08 17:34:17 -0700 | [diff] [blame] | 3401 | /** |
| 3402 | * Updates the set of predicted apps if it hasn't been updated since the last time Launcher was |
| 3403 | * resumed. |
| 3404 | */ |
Hyunyoung Song | a9a8a42 | 2016-06-15 16:45:48 -0700 | [diff] [blame] | 3405 | public void tryAndUpdatePredictedApps() { |
Winson Chung | 4ac3006 | 2015-05-08 17:34:17 -0700 | [diff] [blame] | 3406 | if (mLauncherCallbacks != null) { |
Winson Chung | 6b1c73f | 2015-06-18 11:38:42 -0700 | [diff] [blame] | 3407 | List<ComponentKey> apps = mLauncherCallbacks.getPredictedApps(); |
Winson Chung | 91c0595 | 2015-06-25 12:17:30 -0700 | [diff] [blame] | 3408 | if (apps != null) { |
Winson Chung | 4ac3006 | 2015-05-08 17:34:17 -0700 | [diff] [blame] | 3409 | mAppsView.setPredictedApps(apps); |
Hyunyoung Song | aa95365 | 2016-04-19 18:30:24 -0700 | [diff] [blame] | 3410 | getUserEventDispatcher().setPredictedApps(apps); |
Winson Chung | 4ac3006 | 2015-05-08 17:34:17 -0700 | [diff] [blame] | 3411 | } |
| 3412 | } |
| 3413 | } |
| 3414 | |
Michael Jurka | b3e22d9 | 2011-10-31 15:58:33 -0700 | [diff] [blame] | 3415 | void lockAllApps() { |
| 3416 | // TODO |
| 3417 | } |
| 3418 | |
| 3419 | void unlockAllApps() { |
| 3420 | // TODO |
| 3421 | } |
| 3422 | |
Winson | f768d93 | 2015-09-25 16:12:35 -0700 | [diff] [blame] | 3423 | public boolean launcherCallbacksProvidesSearch() { |
| 3424 | return (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()); |
| 3425 | } |
| 3426 | |
Michael Jurka | d7c2805 | 2012-04-27 15:43:36 -0700 | [diff] [blame] | 3427 | @Override |
| 3428 | public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) { |
alanv | 1d4fde6 | 2012-10-17 13:15:47 -0700 | [diff] [blame] | 3429 | final boolean result = super.dispatchPopulateAccessibilityEvent(event); |
Michael Jurka | d7c2805 | 2012-04-27 15:43:36 -0700 | [diff] [blame] | 3430 | final List<CharSequence> text = event.getText(); |
| 3431 | text.clear(); |
alanv | 1d4fde6 | 2012-10-17 13:15:47 -0700 | [diff] [blame] | 3432 | // Populate event with a fake title based on the current state. |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 3433 | if (mState == State.APPS) { |
Sunny Goyal | c525d80 | 2015-04-29 11:05:34 -0700 | [diff] [blame] | 3434 | text.add(getString(R.string.all_apps_button_label)); |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 3435 | } else if (mState == State.WIDGETS) { |
Sunny Goyal | c525d80 | 2015-04-29 11:05:34 -0700 | [diff] [blame] | 3436 | text.add(getString(R.string.widget_button_text)); |
Hyunyoung Song | 166e648 | 2015-06-25 21:06:07 -0700 | [diff] [blame] | 3437 | } else if (mWorkspace != null) { |
| 3438 | text.add(mWorkspace.getCurrentPageDescription()); |
alanv | 1d4fde6 | 2012-10-17 13:15:47 -0700 | [diff] [blame] | 3439 | } else { |
| 3440 | text.add(getString(R.string.all_apps_home_button_label)); |
| 3441 | } |
Michael Jurka | d7c2805 | 2012-04-27 15:43:36 -0700 | [diff] [blame] | 3442 | return result; |
| 3443 | } |
| 3444 | |
Patrick Dubroy | ceae05d | 2010-08-30 10:40:53 -0700 | [diff] [blame] | 3445 | /** |
Michael Jurka | 7607c2f | 2013-04-03 14:33:19 -0700 | [diff] [blame] | 3446 | * If the activity is currently paused, signal that we need to run the passed Runnable |
| 3447 | * in onResume. |
| 3448 | * |
| 3449 | * This needs to be called from incoming places where resources might have been loaded |
Hyunyoung Song | 8821ca9 | 2015-05-04 16:28:20 -0700 | [diff] [blame] | 3450 | * while the activity is paused. That is because the Configuration (e.g., rotation) might be |
| 3451 | * wrong when we're not running, and if the activity comes back to what the configuration was |
| 3452 | * when we were paused, activity is not restarted. |
Michael Jurka | 7607c2f | 2013-04-03 14:33:19 -0700 | [diff] [blame] | 3453 | * |
| 3454 | * Implementation of the method from LauncherModel.Callbacks. |
| 3455 | * |
Hyunyoung Song | 8821ca9 | 2015-05-04 16:28:20 -0700 | [diff] [blame] | 3456 | * @return {@code true} if we are currently paused. The caller might be able to skip some work |
Michael Jurka | 7607c2f | 2013-04-03 14:33:19 -0700 | [diff] [blame] | 3457 | */ |
Rahul Chaturvedi | 799aa04 | 2015-06-01 21:26:41 -0400 | [diff] [blame] | 3458 | @Thunk boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) { |
Michael Jurka | 7607c2f | 2013-04-03 14:33:19 -0700 | [diff] [blame] | 3459 | if (mPaused) { |
Sunny Goyal | 2bba4c3 | 2015-05-18 15:42:48 -0700 | [diff] [blame] | 3460 | if (LOGD) Log.d(TAG, "Deferring update until onResume"); |
Michael Jurka | c402cd9 | 2013-05-20 15:49:32 +0200 | [diff] [blame] | 3461 | if (deletePreviousRunnables) { |
Michael Jurka | 1e2f465 | 2013-07-08 18:03:46 -0700 | [diff] [blame] | 3462 | while (mBindOnResumeCallbacks.remove(run)) { |
Michael Jurka | c402cd9 | 2013-05-20 15:49:32 +0200 | [diff] [blame] | 3463 | } |
| 3464 | } |
Michael Jurka | 1e2f465 | 2013-07-08 18:03:46 -0700 | [diff] [blame] | 3465 | mBindOnResumeCallbacks.add(run); |
Michael Jurka | 7607c2f | 2013-04-03 14:33:19 -0700 | [diff] [blame] | 3466 | return true; |
| 3467 | } else { |
| 3468 | return false; |
| 3469 | } |
| 3470 | } |
| 3471 | |
Michael Jurka | c402cd9 | 2013-05-20 15:49:32 +0200 | [diff] [blame] | 3472 | private boolean waitUntilResume(Runnable run) { |
| 3473 | return waitUntilResume(run, false); |
| 3474 | } |
| 3475 | |
Michael Jurka | 1e2f465 | 2013-07-08 18:03:46 -0700 | [diff] [blame] | 3476 | public void addOnResumeCallback(Runnable run) { |
Michael Jurka | 5455425 | 2013-08-01 12:52:23 +0200 | [diff] [blame] | 3477 | mOnResumeCallbacks.add(run); |
Michael Jurka | 1e2f465 | 2013-07-08 18:03:46 -0700 | [diff] [blame] | 3478 | } |
| 3479 | |
Michael Jurka | 7607c2f | 2013-04-03 14:33:19 -0700 | [diff] [blame] | 3480 | /** |
Joe Onorato | ef2efcf | 2010-10-27 13:21:00 -0700 | [diff] [blame] | 3481 | * If the activity is currently paused, signal that we need to re-run the loader |
| 3482 | * in onResume. |
| 3483 | * |
| 3484 | * This needs to be called from incoming places where resources might have been loaded |
| 3485 | * while we are paused. That is becaues the Configuration might be wrong |
| 3486 | * when we're not running, and if it comes back to what it was when we |
| 3487 | * were paused, we are not restarted. |
| 3488 | * |
| 3489 | * Implementation of the method from LauncherModel.Callbacks. |
| 3490 | * |
| 3491 | * @return true if we are currently paused. The caller might be able to |
| 3492 | * skip some work in that case since we will come back again. |
| 3493 | */ |
Sunny Goyal | 93f878c | 2016-03-30 17:31:24 -0700 | [diff] [blame] | 3494 | @Override |
Joe Onorato | ef2efcf | 2010-10-27 13:21:00 -0700 | [diff] [blame] | 3495 | public boolean setLoadOnResume() { |
| 3496 | if (mPaused) { |
Sunny Goyal | 2bba4c3 | 2015-05-18 15:42:48 -0700 | [diff] [blame] | 3497 | if (LOGD) Log.d(TAG, "setLoadOnResume"); |
Joe Onorato | ef2efcf | 2010-10-27 13:21:00 -0700 | [diff] [blame] | 3498 | mOnResumeNeedsLoad = true; |
| 3499 | return true; |
| 3500 | } else { |
| 3501 | return false; |
| 3502 | } |
| 3503 | } |
| 3504 | |
| 3505 | /** |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 3506 | * Implementation of the method from LauncherModel.Callbacks. |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 3507 | */ |
Sunny Goyal | 93f878c | 2016-03-30 17:31:24 -0700 | [diff] [blame] | 3508 | @Override |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 3509 | public int getCurrentWorkspaceScreen() { |
Joe Onorato | d0afc87 | 2010-06-11 00:03:15 -0700 | [diff] [blame] | 3510 | if (mWorkspace != null) { |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 3511 | return mWorkspace.getCurrentPage(); |
Joe Onorato | d0afc87 | 2010-06-11 00:03:15 -0700 | [diff] [blame] | 3512 | } else { |
Winson Chung | 882a52e | 2015-07-08 14:32:26 -0700 | [diff] [blame] | 3513 | return 0; |
Joe Onorato | d0afc87 | 2010-06-11 00:03:15 -0700 | [diff] [blame] | 3514 | } |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 3515 | } |
The Android Open Source Project | f96811c | 2009-03-18 17:39:48 -0700 | [diff] [blame] | 3516 | |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 3517 | /** |
Sunny Goyal | 527c7d3 | 2015-08-28 15:19:36 -0700 | [diff] [blame] | 3518 | * Clear any pending bind callbacks. This is called when is loader is planning to |
| 3519 | * perform a full rebind from scratch. |
| 3520 | */ |
| 3521 | @Override |
| 3522 | public void clearPendingBinds() { |
| 3523 | mBindOnResumeCallbacks.clear(); |
| 3524 | if (mPendingExecutor != null) { |
| 3525 | mPendingExecutor.markCompleted(); |
| 3526 | mPendingExecutor = null; |
| 3527 | } |
| 3528 | } |
| 3529 | |
| 3530 | /** |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 3531 | * Refreshes the shortcuts shown on the workspace. |
| 3532 | * |
| 3533 | * Implementation of the method from LauncherModel.Callbacks. |
| 3534 | */ |
| 3535 | public void startBinding() { |
Sunny Goyal | e26d100 | 2016-06-20 14:52:14 -0700 | [diff] [blame] | 3536 | if (LauncherAppState.PROFILE_STARTUP) { |
| 3537 | Trace.beginSection("Starting page bind"); |
| 3538 | } |
Anjali Koppal | ff7ceff | 2014-05-01 18:26:37 -0700 | [diff] [blame] | 3539 | setWorkspaceLoading(true); |
Adam Cohen | 517a7f5 | 2014-03-01 12:12:59 -0800 | [diff] [blame] | 3540 | |
Winson Chung | d64d176 | 2013-08-20 14:37:16 -0700 | [diff] [blame] | 3541 | // Clear the workspace because it's going to be rebound |
Adam Cohen | df03538 | 2011-04-11 17:22:04 -0700 | [diff] [blame] | 3542 | mWorkspace.clearDropTargets(); |
Winson Chung | 9e6a0a2 | 2013-08-27 11:58:12 -0700 | [diff] [blame] | 3543 | mWorkspace.removeAllWorkspaceScreens(); |
Winson Chung | d64d176 | 2013-08-20 14:37:16 -0700 | [diff] [blame] | 3544 | |
Michael Jurka | 05bf644e | 2011-11-30 20:28:53 -0800 | [diff] [blame] | 3545 | mWidgetsToAdvance.clear(); |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 3546 | if (mHotseat != null) { |
| 3547 | mHotseat.resetLayout(); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 3548 | } |
Sunny Goyal | e26d100 | 2016-06-20 14:52:14 -0700 | [diff] [blame] | 3549 | if (LauncherAppState.PROFILE_STARTUP) { |
| 3550 | Trace.endSection(); |
| 3551 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 3552 | } |
| 3553 | |
Adam Cohen | dcd297f | 2013-06-18 13:13:40 -0700 | [diff] [blame] | 3554 | @Override |
| 3555 | public void bindScreens(ArrayList<Long> orderedScreenIds) { |
Sunny Goyal | da4fe1a | 2016-05-26 16:05:17 -0700 | [diff] [blame] | 3556 | // Make sure the first screen is always at the start. |
Sunny Goyal | a9e2f5a | 2016-06-10 12:22:04 -0700 | [diff] [blame] | 3557 | if (FeatureFlags.QSB_ON_FIRST_SCREEN && |
| 3558 | orderedScreenIds.indexOf(Workspace.FIRST_SCREEN_ID) != 0) { |
Sunny Goyal | da4fe1a | 2016-05-26 16:05:17 -0700 | [diff] [blame] | 3559 | orderedScreenIds.remove(Workspace.FIRST_SCREEN_ID); |
| 3560 | orderedScreenIds.add(0, Workspace.FIRST_SCREEN_ID); |
| 3561 | mModel.updateWorkspaceScreenOrder(this, orderedScreenIds); |
Sunny Goyal | a9e2f5a | 2016-06-10 12:22:04 -0700 | [diff] [blame] | 3562 | } else if (!FeatureFlags.QSB_ON_FIRST_SCREEN && orderedScreenIds.isEmpty()) { |
| 3563 | // If there are no screens, we need to have an empty screen |
| 3564 | mWorkspace.addExtraEmptyScreen(); |
Adam Cohen | 5084cba | 2013-09-03 12:01:16 -0700 | [diff] [blame] | 3565 | } |
Sunny Goyal | da4fe1a | 2016-05-26 16:05:17 -0700 | [diff] [blame] | 3566 | bindAddScreens(orderedScreenIds); |
Winson Chung | 0e6a713 | 2013-08-23 12:55:10 -0700 | [diff] [blame] | 3567 | |
| 3568 | // Create the custom content page (this call updates mDefaultScreen which calls |
Dave Hawkey | a888158 | 2013-09-17 15:55:33 -0600 | [diff] [blame] | 3569 | // setCurrentPage() so ensure that all pages are added before calling this). |
Derek Prothro | dadd984 | 2014-01-17 13:43:50 -0500 | [diff] [blame] | 3570 | if (hasCustomContentToLeft()) { |
| 3571 | mWorkspace.createCustomContentContainer(); |
| 3572 | populateCustomContentContainer(); |
Winson Chung | 0e6a713 | 2013-08-23 12:55:10 -0700 | [diff] [blame] | 3573 | } |
Winson | c7d2e83 | 2016-07-28 12:24:55 -0700 | [diff] [blame] | 3574 | |
| 3575 | // After we have added all the screens, if the wallpaper was locked to the default state, |
| 3576 | // then notify to indicate that it can be released and a proper wallpaper offset can be |
| 3577 | // computed before the next layout |
| 3578 | mWorkspace.unlockWallpaperFromDefaultPageOnNextLayout(); |
Winson Chung | 64359a5 | 2013-07-08 17:17:08 -0700 | [diff] [blame] | 3579 | } |
| 3580 | |
Sunny Goyal | da4fe1a | 2016-05-26 16:05:17 -0700 | [diff] [blame] | 3581 | private void bindAddScreens(ArrayList<Long> orderedScreenIds) { |
Adam Cohen | dcd297f | 2013-06-18 13:13:40 -0700 | [diff] [blame] | 3582 | int count = orderedScreenIds.size(); |
| 3583 | for (int i = 0; i < count; i++) { |
Sunny Goyal | da4fe1a | 2016-05-26 16:05:17 -0700 | [diff] [blame] | 3584 | long screenId = orderedScreenIds.get(i); |
Sunny Goyal | a9e2f5a | 2016-06-10 12:22:04 -0700 | [diff] [blame] | 3585 | if (!FeatureFlags.QSB_ON_FIRST_SCREEN || screenId != Workspace.FIRST_SCREEN_ID) { |
Sunny Goyal | da4fe1a | 2016-05-26 16:05:17 -0700 | [diff] [blame] | 3586 | // No need to bind the first screen, as its always bound. |
| 3587 | mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(screenId); |
| 3588 | } |
Adam Cohen | dcd297f | 2013-06-18 13:13:40 -0700 | [diff] [blame] | 3589 | } |
Adam Cohen | dcd297f | 2013-06-18 13:13:40 -0700 | [diff] [blame] | 3590 | } |
| 3591 | |
Winson Chung | d64d176 | 2013-08-20 14:37:16 -0700 | [diff] [blame] | 3592 | public void bindAppsAdded(final ArrayList<Long> newScreens, |
| 3593 | final ArrayList<ItemInfo> addNotAnimated, |
Winson Chung | c58497e | 2013-09-03 17:48:37 -0700 | [diff] [blame] | 3594 | final ArrayList<ItemInfo> addAnimated, |
| 3595 | final ArrayList<AppInfo> addedApps) { |
Winson Chung | d64d176 | 2013-08-20 14:37:16 -0700 | [diff] [blame] | 3596 | Runnable r = new Runnable() { |
| 3597 | public void run() { |
Winson Chung | c58497e | 2013-09-03 17:48:37 -0700 | [diff] [blame] | 3598 | bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps); |
Winson Chung | d64d176 | 2013-08-20 14:37:16 -0700 | [diff] [blame] | 3599 | } |
| 3600 | }; |
| 3601 | if (waitUntilResume(r)) { |
| 3602 | return; |
| 3603 | } |
| 3604 | |
Winson Chung | d64d176 | 2013-08-20 14:37:16 -0700 | [diff] [blame] | 3605 | // Add the new screens |
Adam Cohen | 76a47a1 | 2014-02-05 11:47:43 -0800 | [diff] [blame] | 3606 | if (newScreens != null) { |
| 3607 | bindAddScreens(newScreens); |
| 3608 | } |
Winson Chung | d64d176 | 2013-08-20 14:37:16 -0700 | [diff] [blame] | 3609 | |
| 3610 | // We add the items without animation on non-visible pages, and with |
| 3611 | // animations on the new page (which we will try and snap to). |
Adam Cohen | 76a47a1 | 2014-02-05 11:47:43 -0800 | [diff] [blame] | 3612 | if (addNotAnimated != null && !addNotAnimated.isEmpty()) { |
Winson Chung | d64d176 | 2013-08-20 14:37:16 -0700 | [diff] [blame] | 3613 | bindItems(addNotAnimated, 0, |
| 3614 | addNotAnimated.size(), false); |
| 3615 | } |
Adam Cohen | 76a47a1 | 2014-02-05 11:47:43 -0800 | [diff] [blame] | 3616 | if (addAnimated != null && !addAnimated.isEmpty()) { |
Winson Chung | d64d176 | 2013-08-20 14:37:16 -0700 | [diff] [blame] | 3617 | bindItems(addAnimated, 0, |
| 3618 | addAnimated.size(), true); |
| 3619 | } |
Winson Chung | c58497e | 2013-09-03 17:48:37 -0700 | [diff] [blame] | 3620 | |
Winson Chung | 8741298 | 2013-10-03 18:34:14 -0700 | [diff] [blame] | 3621 | // Remove the extra empty screen |
Adam Cohen | 689ff16 | 2014-05-08 17:27:56 -0700 | [diff] [blame] | 3622 | mWorkspace.removeExtraEmptyScreen(false, false); |
Winson Chung | 8741298 | 2013-10-03 18:34:14 -0700 | [diff] [blame] | 3623 | |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 3624 | if (addedApps != null && mAppsView != null) { |
| 3625 | mAppsView.addApps(addedApps); |
Winson Chung | c58497e | 2013-09-03 17:48:37 -0700 | [diff] [blame] | 3626 | } |
Winson Chung | d64d176 | 2013-08-20 14:37:16 -0700 | [diff] [blame] | 3627 | } |
| 3628 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 3629 | /** |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 3630 | * Bind the items start-end from the list. |
| 3631 | * |
| 3632 | * Implementation of the method from LauncherModel.Callbacks. |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 3633 | */ |
Tony Wickham | 0bb211a | 2015-10-02 16:22:08 -0700 | [diff] [blame] | 3634 | @Override |
Winson Chung | 64359a5 | 2013-07-08 17:17:08 -0700 | [diff] [blame] | 3635 | public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end, |
| 3636 | final boolean forceAnimateIcons) { |
Winson Chung | d64d176 | 2013-08-20 14:37:16 -0700 | [diff] [blame] | 3637 | Runnable r = new Runnable() { |
| 3638 | public void run() { |
| 3639 | bindItems(shortcuts, start, end, forceAnimateIcons); |
| 3640 | } |
| 3641 | }; |
| 3642 | if (waitUntilResume(r)) { |
Michael Jurka | 7607c2f | 2013-04-03 14:33:19 -0700 | [diff] [blame] | 3643 | return; |
| 3644 | } |
Joe Onorato | ef2efcf | 2010-10-27 13:21:00 -0700 | [diff] [blame] | 3645 | |
Winson Chung | f0c6ae0 | 2012-03-21 16:10:31 -0700 | [diff] [blame] | 3646 | // Get the list of added shortcuts and intersect them with the set of shortcuts here |
Winson Chung | 64359a5 | 2013-07-08 17:17:08 -0700 | [diff] [blame] | 3647 | final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet(); |
| 3648 | final Collection<Animator> bounceAnims = new ArrayList<Animator>(); |
Winson Chung | 997a923 | 2013-07-24 15:33:46 -0700 | [diff] [blame] | 3649 | final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation(); |
Winson Chung | f0c6ae0 | 2012-03-21 16:10:31 -0700 | [diff] [blame] | 3650 | Workspace workspace = mWorkspace; |
Winson Chung | 997a923 | 2013-07-24 15:33:46 -0700 | [diff] [blame] | 3651 | long newShortcutsScreenId = -1; |
Winson Chung | f0c6ae0 | 2012-03-21 16:10:31 -0700 | [diff] [blame] | 3652 | for (int i = start; i < end; i++) { |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 3653 | final ItemInfo item = shortcuts.get(i); |
Winson Chung | 4d279d9 | 2011-07-21 11:46:32 -0700 | [diff] [blame] | 3654 | |
| 3655 | // Short circuit if we are loading dock items for a configuration which has no dock |
| 3656 | if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT && |
| 3657 | mHotseat == null) { |
| 3658 | continue; |
| 3659 | } |
| 3660 | |
Sunny Goyal | 639e906 | 2015-08-19 19:17:06 -0700 | [diff] [blame] | 3661 | final View view; |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 3662 | switch (item.itemType) { |
| 3663 | case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION: |
| 3664 | case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT: |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 3665 | case LauncherSettings.Favorites.ITEM_TYPE_DEEP_SHORTCUT: |
Winson Chung | f0c6ae0 | 2012-03-21 16:10:31 -0700 | [diff] [blame] | 3666 | ShortcutInfo info = (ShortcutInfo) item; |
Sunny Goyal | 639e906 | 2015-08-19 19:17:06 -0700 | [diff] [blame] | 3667 | view = createShortcut(info); |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 3668 | break; |
Adam Cohen | df2cc41 | 2011-04-27 16:56:57 -0700 | [diff] [blame] | 3669 | case LauncherSettings.Favorites.ITEM_TYPE_FOLDER: |
Sunny Goyal | 639e906 | 2015-08-19 19:17:06 -0700 | [diff] [blame] | 3670 | view = FolderIcon.fromXml(R.layout.folder_icon, this, |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 3671 | (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()), |
Adam Cohen | df2cc41 | 2011-04-27 16:56:57 -0700 | [diff] [blame] | 3672 | (FolderInfo) item, mIconCache); |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 3673 | break; |
Winson Chung | c763c4e | 2013-07-19 13:49:06 -0700 | [diff] [blame] | 3674 | default: |
| 3675 | throw new RuntimeException("Invalid Item Type"); |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 3676 | } |
Sunny Goyal | 639e906 | 2015-08-19 19:17:06 -0700 | [diff] [blame] | 3677 | |
Sunny Goyal | da4fe1a | 2016-05-26 16:05:17 -0700 | [diff] [blame] | 3678 | /* |
| 3679 | * Remove colliding items. |
| 3680 | */ |
| 3681 | if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) { |
| 3682 | CellLayout cl = mWorkspace.getScreenWithId(item.screenId); |
| 3683 | if (cl != null && cl.isOccupied(item.cellX, item.cellY)) { |
| 3684 | View v = cl.getChildAt(item.cellX, item.cellY); |
| 3685 | Object tag = v.getTag(); |
| 3686 | String desc = "Collision while binding workspace item: " + item |
| 3687 | + ". Collides with " + tag; |
| 3688 | if (ProviderConfig.IS_DOGFOOD_BUILD) { |
| 3689 | throw (new RuntimeException(desc)); |
| 3690 | } else { |
| 3691 | Log.d(TAG, desc); |
| 3692 | LauncherModel.deleteItemFromDatabase(this, item); |
| 3693 | continue; |
| 3694 | } |
| 3695 | } |
| 3696 | } |
Sunny Goyal | 639e906 | 2015-08-19 19:17:06 -0700 | [diff] [blame] | 3697 | workspace.addInScreenFromBind(view, item.container, item.screenId, item.cellX, |
| 3698 | item.cellY, 1, 1); |
| 3699 | if (animateIcons) { |
| 3700 | // Animate all the applications up now |
| 3701 | view.setAlpha(0f); |
| 3702 | view.setScaleX(0f); |
| 3703 | view.setScaleY(0f); |
| 3704 | bounceAnims.add(createNewAppBounceAnimation(view, i)); |
| 3705 | newShortcutsScreenId = item.screenId; |
| 3706 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 3707 | } |
Winson Chung | f0c6ae0 | 2012-03-21 16:10:31 -0700 | [diff] [blame] | 3708 | |
Winson Chung | 997a923 | 2013-07-24 15:33:46 -0700 | [diff] [blame] | 3709 | if (animateIcons) { |
| 3710 | // Animate to the correct page |
| 3711 | if (newShortcutsScreenId > -1) { |
| 3712 | long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage()); |
Winson Chung | 94d6768 | 2013-09-25 16:29:40 -0700 | [diff] [blame] | 3713 | final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId); |
Winson Chung | b232383 | 2013-10-03 15:22:09 -0700 | [diff] [blame] | 3714 | final Runnable startBounceAnimRunnable = new Runnable() { |
| 3715 | public void run() { |
| 3716 | anim.playTogether(bounceAnims); |
| 3717 | anim.start(); |
| 3718 | } |
| 3719 | }; |
Winson Chung | 997a923 | 2013-07-24 15:33:46 -0700 | [diff] [blame] | 3720 | if (newShortcutsScreenId != currentScreenId) { |
Winson Chung | 94d6768 | 2013-09-25 16:29:40 -0700 | [diff] [blame] | 3721 | // We post the animation slightly delayed to prevent slowdowns |
| 3722 | // when we are loading right after we return to launcher. |
| 3723 | mWorkspace.postDelayed(new Runnable() { |
| 3724 | public void run() { |
Ian Parkinson | 9444915 | 2014-01-21 13:09:59 +0000 | [diff] [blame] | 3725 | if (mWorkspace != null) { |
| 3726 | mWorkspace.snapToPage(newScreenIndex); |
| 3727 | mWorkspace.postDelayed(startBounceAnimRunnable, |
| 3728 | NEW_APPS_ANIMATION_DELAY); |
| 3729 | } |
Winson Chung | 94d6768 | 2013-09-25 16:29:40 -0700 | [diff] [blame] | 3730 | } |
| 3731 | }, NEW_APPS_PAGE_MOVE_DELAY); |
Winson Chung | b232383 | 2013-10-03 15:22:09 -0700 | [diff] [blame] | 3732 | } else { |
| 3733 | mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY); |
Winson Chung | 997a923 | 2013-07-24 15:33:46 -0700 | [diff] [blame] | 3734 | } |
| 3735 | } |
Winson Chung | 64359a5 | 2013-07-08 17:17:08 -0700 | [diff] [blame] | 3736 | } |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 3737 | workspace.requestLayout(); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 3738 | } |
| 3739 | |
Sunny Goyal | 2e1efb4 | 2016-03-03 16:58:55 -0800 | [diff] [blame] | 3740 | private void bindSafeModeWidget(LauncherAppWidgetInfo item) { |
| 3741 | PendingAppWidgetHostView view = new PendingAppWidgetHostView(this, item, true); |
| 3742 | view.updateIcon(mIconCache); |
Sunny Goyal | 87af0fd | 2016-05-16 14:56:02 -0700 | [diff] [blame] | 3743 | view.updateAppWidget(null); |
| 3744 | view.setOnClickListener(this); |
| 3745 | addAppWidgetToWorkspace(view, item, null, false); |
Sunny Goyal | 2e1efb4 | 2016-03-03 16:58:55 -0800 | [diff] [blame] | 3746 | mWorkspace.requestLayout(); |
| 3747 | } |
| 3748 | |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 3749 | /** |
| 3750 | * Add the views for a widget to the workspace. |
| 3751 | * |
| 3752 | * Implementation of the method from LauncherModel.Callbacks. |
| 3753 | */ |
Michael Jurka | 7607c2f | 2013-04-03 14:33:19 -0700 | [diff] [blame] | 3754 | public void bindAppWidget(final LauncherAppWidgetInfo item) { |
Winson Chung | d64d176 | 2013-08-20 14:37:16 -0700 | [diff] [blame] | 3755 | Runnable r = new Runnable() { |
| 3756 | public void run() { |
| 3757 | bindAppWidget(item); |
| 3758 | } |
| 3759 | }; |
| 3760 | if (waitUntilResume(r)) { |
Michael Jurka | 7607c2f | 2013-04-03 14:33:19 -0700 | [diff] [blame] | 3761 | return; |
| 3762 | } |
Joe Onorato | ef2efcf | 2010-10-27 13:21:00 -0700 | [diff] [blame] | 3763 | |
Sunny Goyal | 2e1efb4 | 2016-03-03 16:58:55 -0800 | [diff] [blame] | 3764 | if (mIsSafeModeEnabled) { |
| 3765 | bindSafeModeWidget(item); |
| 3766 | return; |
| 3767 | } |
| 3768 | |
Daniel Sandler | 843e860 | 2010-06-07 14:59:01 -0400 | [diff] [blame] | 3769 | final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0; |
| 3770 | if (DEBUG_WIDGETS) { |
| 3771 | Log.d(TAG, "bindAppWidget: " + item); |
| 3772 | } |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 3773 | |
Sunny Goyal | 2e1efb4 | 2016-03-03 16:58:55 -0800 | [diff] [blame] | 3774 | final LauncherAppWidgetProviderInfo appWidgetInfo; |
Adam Cohen | 5940042 | 2014-03-05 18:07:04 -0800 | [diff] [blame] | 3775 | |
Sunny Goyal | 2e1efb4 | 2016-03-03 16:58:55 -0800 | [diff] [blame] | 3776 | if (item.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY)) { |
| 3777 | // If the provider is not ready, bind as a pending widget. |
| 3778 | appWidgetInfo = null; |
| 3779 | } else if (item.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_ID_NOT_VALID)) { |
| 3780 | // The widget id is not valid. Try to find the widget based on the provider info. |
| 3781 | appWidgetInfo = mAppWidgetManager.findProvider(item.providerName, item.user); |
| 3782 | } else { |
| 3783 | appWidgetInfo = mAppWidgetManager.getLauncherAppWidgetInfo(item.appWidgetId); |
| 3784 | } |
Sunny Goyal | 84b4adc | 2015-08-12 15:12:16 -0700 | [diff] [blame] | 3785 | |
Sunny Goyal | 2e1efb4 | 2016-03-03 16:58:55 -0800 | [diff] [blame] | 3786 | // If the provider is ready, but the width is not yet restored, try to restore it. |
| 3787 | if (!item.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY) && |
| 3788 | (item.restoreStatus != LauncherAppWidgetInfo.RESTORE_COMPLETED)) { |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 3789 | if (appWidgetInfo == null) { |
| 3790 | if (DEBUG_WIDGETS) { |
| 3791 | Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId |
| 3792 | + " belongs to component " + item.providerName |
| 3793 | + ", as the povider is null"); |
| 3794 | } |
| 3795 | LauncherModel.deleteItemFromDatabase(this, item); |
| 3796 | return; |
| 3797 | } |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 3798 | |
Sunny Goyal | 84b4adc | 2015-08-12 15:12:16 -0700 | [diff] [blame] | 3799 | // If we do not have a valid id, try to bind an id. |
Sunny Goyal | 2e1efb4 | 2016-03-03 16:58:55 -0800 | [diff] [blame] | 3800 | if (item.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_ID_NOT_VALID)) { |
Sunny Goyal | d478c83 | 2016-04-01 12:04:16 -0700 | [diff] [blame] | 3801 | if (!item.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_ID_ALLOCATED)) { |
| 3802 | // Id has not been allocated yet. Allocate a new id. |
| 3803 | item.appWidgetId = mAppWidgetHost.allocateAppWidgetId(); |
| 3804 | item.restoreStatus |= LauncherAppWidgetInfo.FLAG_ID_ALLOCATED; |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 3805 | |
Sunny Goyal | d478c83 | 2016-04-01 12:04:16 -0700 | [diff] [blame] | 3806 | // Also try to bind the widget. If the bind fails, the user will be shown |
| 3807 | // a click to setup UI, which will ask for the bind permission. |
| 3808 | PendingAddWidgetInfo pendingInfo = new PendingAddWidgetInfo(this, appWidgetInfo); |
| 3809 | pendingInfo.spanX = item.spanX; |
| 3810 | pendingInfo.spanY = item.spanY; |
| 3811 | pendingInfo.minSpanX = item.minSpanX; |
| 3812 | pendingInfo.minSpanY = item.minSpanY; |
| 3813 | Bundle options = WidgetHostViewLoader.getDefaultOptionsForWidget(this, pendingInfo); |
Sunny Goyal | 86df138 | 2016-08-10 15:03:22 -0700 | [diff] [blame] | 3814 | |
| 3815 | boolean isDirectConfig = |
| 3816 | item.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_DIRECT_CONFIG); |
| 3817 | if (isDirectConfig && item.bindOptions != null) { |
| 3818 | Bundle newOptions = item.bindOptions.getExtras(); |
| 3819 | if (options != null) { |
| 3820 | newOptions.putAll(options); |
| 3821 | } |
| 3822 | options = newOptions; |
| 3823 | } |
Sunny Goyal | d478c83 | 2016-04-01 12:04:16 -0700 | [diff] [blame] | 3824 | boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed( |
| 3825 | item.appWidgetId, appWidgetInfo, options); |
Sunny Goyal | 84b4adc | 2015-08-12 15:12:16 -0700 | [diff] [blame] | 3826 | |
Sunny Goyal | 86df138 | 2016-08-10 15:03:22 -0700 | [diff] [blame] | 3827 | // We tried to bind once. If we were not able to bind, we would need to |
| 3828 | // go through the permission dialog, which means we cannot skip the config |
| 3829 | // activity. |
| 3830 | item.bindOptions = null; |
| 3831 | item.restoreStatus &= ~LauncherAppWidgetInfo.FLAG_DIRECT_CONFIG; |
| 3832 | |
Sunny Goyal | d478c83 | 2016-04-01 12:04:16 -0700 | [diff] [blame] | 3833 | // Bind succeeded |
| 3834 | if (success) { |
| 3835 | // If the widget has a configure activity, it is still needs to set it up, |
| 3836 | // otherwise the widget is ready to go. |
Sunny Goyal | 86df138 | 2016-08-10 15:03:22 -0700 | [diff] [blame] | 3837 | item.restoreStatus = (appWidgetInfo.configure == null) || isDirectConfig |
Sunny Goyal | d478c83 | 2016-04-01 12:04:16 -0700 | [diff] [blame] | 3838 | ? LauncherAppWidgetInfo.RESTORE_COMPLETED |
| 3839 | : LauncherAppWidgetInfo.FLAG_UI_NOT_READY; |
Sunny Goyal | 84b4adc | 2015-08-12 15:12:16 -0700 | [diff] [blame] | 3840 | } |
Sunny Goyal | d478c83 | 2016-04-01 12:04:16 -0700 | [diff] [blame] | 3841 | |
| 3842 | LauncherModel.updateItemInDatabase(this, item); |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 3843 | } |
Sunny Goyal | 2e1efb4 | 2016-03-03 16:58:55 -0800 | [diff] [blame] | 3844 | } else if (item.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_UI_NOT_READY) |
Sunny Goyal | 84b4adc | 2015-08-12 15:12:16 -0700 | [diff] [blame] | 3845 | && (appWidgetInfo.configure == null)) { |
Sunny Goyal | 2e1efb4 | 2016-03-03 16:58:55 -0800 | [diff] [blame] | 3846 | // The widget was marked as UI not ready, but there is no configure activity to |
| 3847 | // update the UI. |
Sunny Goyal | 84b4adc | 2015-08-12 15:12:16 -0700 | [diff] [blame] | 3848 | item.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED; |
| 3849 | LauncherModel.updateItemInDatabase(this, item); |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 3850 | } |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 3851 | } |
| 3852 | |
Sunny Goyal | 2e1efb4 | 2016-03-03 16:58:55 -0800 | [diff] [blame] | 3853 | if (item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) { |
Sunny Goyal | 651077b | 2014-06-30 14:15:31 -0700 | [diff] [blame] | 3854 | if (DEBUG_WIDGETS) { |
Adam Cohen | 5940042 | 2014-03-05 18:07:04 -0800 | [diff] [blame] | 3855 | Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component " |
| 3856 | + appWidgetInfo.provider); |
Sunny Goyal | 651077b | 2014-06-30 14:15:31 -0700 | [diff] [blame] | 3857 | } |
Daniel Sandler | 843e860 | 2010-06-07 14:59:01 -0400 | [diff] [blame] | 3858 | |
Sunny Goyal | 56c7360 | 2015-09-25 12:55:01 -0700 | [diff] [blame] | 3859 | // Verify that we own the widget |
Sunny Goyal | 2e1efb4 | 2016-03-03 16:58:55 -0800 | [diff] [blame] | 3860 | if (appWidgetInfo == null) { |
Sunny Goyal | 713edfc | 2016-05-06 09:58:34 -0700 | [diff] [blame] | 3861 | FileLog.e(TAG, "Removing invalid widget: id=" + item.appWidgetId); |
Sunny Goyal | 56c7360 | 2015-09-25 12:55:01 -0700 | [diff] [blame] | 3862 | deleteWidgetInfo(item); |
| 3863 | return; |
| 3864 | } |
| 3865 | |
Sunny Goyal | 233ee96 | 2015-08-03 13:05:01 -0700 | [diff] [blame] | 3866 | item.minSpanX = appWidgetInfo.minSpanX; |
| 3867 | item.minSpanY = appWidgetInfo.minSpanY; |
Sunny Goyal | 87af0fd | 2016-05-16 14:56:02 -0700 | [diff] [blame] | 3868 | addAppWidgetToWorkspace( |
| 3869 | mAppWidgetHost.createView(this, item.appWidgetId, appWidgetInfo), |
| 3870 | item, appWidgetInfo, false); |
Sunny Goyal | 651077b | 2014-06-30 14:15:31 -0700 | [diff] [blame] | 3871 | } else { |
Sunny Goyal | 87af0fd | 2016-05-16 14:56:02 -0700 | [diff] [blame] | 3872 | PendingAppWidgetHostView view = new PendingAppWidgetHostView(this, item, false); |
Sunny Goyal | 0fc1be1 | 2014-08-11 17:05:23 -0700 | [diff] [blame] | 3873 | view.updateIcon(mIconCache); |
Sunny Goyal | 87af0fd | 2016-05-16 14:56:02 -0700 | [diff] [blame] | 3874 | view.updateAppWidget(null); |
| 3875 | view.setOnClickListener(this); |
| 3876 | addAppWidgetToWorkspace(view, item, null, false); |
Sunny Goyal | 651077b | 2014-06-30 14:15:31 -0700 | [diff] [blame] | 3877 | } |
Sunny Goyal | 2e1efb4 | 2016-03-03 16:58:55 -0800 | [diff] [blame] | 3878 | mWorkspace.requestLayout(); |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 3879 | |
Daniel Sandler | 843e860 | 2010-06-07 14:59:01 -0400 | [diff] [blame] | 3880 | if (DEBUG_WIDGETS) { |
| 3881 | Log.d(TAG, "bound widget id="+item.appWidgetId+" in " |
| 3882 | + (SystemClock.uptimeMillis()-start) + "ms"); |
| 3883 | } |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 3884 | } |
| 3885 | |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 3886 | /** |
| 3887 | * Restores a pending widget. |
| 3888 | * |
| 3889 | * @param appWidgetId The app widget id |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 3890 | */ |
Sunny Goyal | d478c83 | 2016-04-01 12:04:16 -0700 | [diff] [blame] | 3891 | private LauncherAppWidgetInfo completeRestoreAppWidget(int appWidgetId, int finalRestoreFlag) { |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 3892 | LauncherAppWidgetHostView view = mWorkspace.getWidgetForAppWidgetId(appWidgetId); |
| 3893 | if ((view == null) || !(view instanceof PendingAppWidgetHostView)) { |
| 3894 | Log.e(TAG, "Widget update called, when the widget no longer exists."); |
Sunny Goyal | d478c83 | 2016-04-01 12:04:16 -0700 | [diff] [blame] | 3895 | return null; |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 3896 | } |
| 3897 | |
Sunny Goyal | 0fc1be1 | 2014-08-11 17:05:23 -0700 | [diff] [blame] | 3898 | LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) view.getTag(); |
Sunny Goyal | d478c83 | 2016-04-01 12:04:16 -0700 | [diff] [blame] | 3899 | info.restoreStatus = finalRestoreFlag; |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 3900 | |
| 3901 | mWorkspace.reinflateWidgetsIfNecessary(); |
| 3902 | LauncherModel.updateItemInDatabase(this, info); |
Sunny Goyal | d478c83 | 2016-04-01 12:04:16 -0700 | [diff] [blame] | 3903 | return info; |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 3904 | } |
| 3905 | |
Adam Cohen | 1462de3 | 2012-07-24 22:34:36 -0700 | [diff] [blame] | 3906 | public void onPageBoundSynchronously(int page) { |
| 3907 | mSynchronouslyBoundPages.add(page); |
| 3908 | } |
| 3909 | |
Sunny Goyal | 527c7d3 | 2015-08-28 15:19:36 -0700 | [diff] [blame] | 3910 | @Override |
| 3911 | public void executeOnNextDraw(ViewOnDrawExecutor executor) { |
| 3912 | if (mPendingExecutor != null) { |
| 3913 | mPendingExecutor.markCompleted(); |
| 3914 | } |
| 3915 | mPendingExecutor = executor; |
| 3916 | executor.attachTo(this); |
| 3917 | } |
| 3918 | |
| 3919 | public void clearPendingExecutor(ViewOnDrawExecutor executor) { |
| 3920 | if (mPendingExecutor == executor) { |
| 3921 | mPendingExecutor = null; |
| 3922 | } |
| 3923 | } |
| 3924 | |
Sunny Goyal | b5b9ad6 | 2016-04-02 11:23:39 -0700 | [diff] [blame] | 3925 | @Override |
| 3926 | public void finishFirstPageBind(final ViewOnDrawExecutor executor) { |
| 3927 | Runnable r = new Runnable() { |
| 3928 | public void run() { |
| 3929 | finishFirstPageBind(executor); |
| 3930 | } |
| 3931 | }; |
| 3932 | if (waitUntilResume(r)) { |
| 3933 | return; |
| 3934 | } |
| 3935 | |
| 3936 | Runnable onComplete = new Runnable() { |
| 3937 | @Override |
| 3938 | public void run() { |
| 3939 | if (executor != null) { |
| 3940 | executor.onLoadAnimationCompleted(); |
| 3941 | } |
| 3942 | } |
| 3943 | }; |
| 3944 | if (mDragLayer.getAlpha() < 1) { |
| 3945 | mDragLayer.animate().alpha(1).withEndAction(onComplete).start(); |
| 3946 | } else { |
| 3947 | onComplete.run(); |
| 3948 | } |
| 3949 | } |
| 3950 | |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 3951 | /** |
| 3952 | * Callback saying that there aren't any more items to bind. |
| 3953 | * |
| 3954 | * Implementation of the method from LauncherModel.Callbacks. |
| 3955 | */ |
Sunny Goyal | 66cfdc2 | 2015-02-02 13:01:51 -0800 | [diff] [blame] | 3956 | public void finishBindingItems() { |
Winson Chung | d64d176 | 2013-08-20 14:37:16 -0700 | [diff] [blame] | 3957 | Runnable r = new Runnable() { |
| 3958 | public void run() { |
Sunny Goyal | 66cfdc2 | 2015-02-02 13:01:51 -0800 | [diff] [blame] | 3959 | finishBindingItems(); |
Winson Chung | d64d176 | 2013-08-20 14:37:16 -0700 | [diff] [blame] | 3960 | } |
| 3961 | }; |
| 3962 | if (waitUntilResume(r)) { |
Michael Jurka | 7607c2f | 2013-04-03 14:33:19 -0700 | [diff] [blame] | 3963 | return; |
| 3964 | } |
Sunny Goyal | e26d100 | 2016-06-20 14:52:14 -0700 | [diff] [blame] | 3965 | if (LauncherAppState.PROFILE_STARTUP) { |
| 3966 | Trace.beginSection("Page bind completed"); |
| 3967 | } |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 3968 | if (mSavedState != null) { |
| 3969 | if (!mWorkspace.hasFocus()) { |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 3970 | mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus(); |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 3971 | } |
Sunny Goyal | 08442b8 | 2015-10-21 17:15:08 -0700 | [diff] [blame] | 3972 | |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 3973 | mSavedState = null; |
| 3974 | } |
| 3975 | |
Adam Cohen | 1462de3 | 2012-07-24 22:34:36 -0700 | [diff] [blame] | 3976 | mWorkspace.restoreInstanceStateForRemainingPages(); |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 3977 | |
Anjali Koppal | ff7ceff | 2014-05-01 18:26:37 -0700 | [diff] [blame] | 3978 | setWorkspaceLoading(false); |
Adam Cohen | db364c3 | 2014-05-20 14:23:40 -0700 | [diff] [blame] | 3979 | |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 3980 | if (mPendingActivityResult != null) { |
| 3981 | handleActivityResult(mPendingActivityResult.requestCode, |
| 3982 | mPendingActivityResult.resultCode, mPendingActivityResult.data); |
| 3983 | mPendingActivityResult = null; |
Adam Cohen | db364c3 | 2014-05-20 14:23:40 -0700 | [diff] [blame] | 3984 | } |
| 3985 | |
Sunny Goyal | 756adbc | 2015-04-16 15:20:51 -0700 | [diff] [blame] | 3986 | InstallShortcutReceiver.disableAndFlushInstallQueue(this); |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 3987 | |
| 3988 | if (mLauncherCallbacks != null) { |
Sunny Goyal | 66cfdc2 | 2015-02-02 13:01:51 -0800 | [diff] [blame] | 3989 | mLauncherCallbacks.finishBindingItems(false); |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 3990 | } |
Sunny Goyal | e26d100 | 2016-06-20 14:52:14 -0700 | [diff] [blame] | 3991 | if (LauncherAppState.PROFILE_STARTUP) { |
| 3992 | Trace.endSection(); |
| 3993 | } |
Winson Chung | f0c6ae0 | 2012-03-21 16:10:31 -0700 | [diff] [blame] | 3994 | } |
| 3995 | |
Winson Chung | a241375 | 2012-04-03 14:22:34 -0700 | [diff] [blame] | 3996 | private boolean canRunNewAppsAnimation() { |
| 3997 | long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime(); |
Andrew Sapperstein | 932eb83 | 2016-06-30 18:10:09 -0700 | [diff] [blame] | 3998 | return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000); |
Winson Chung | a241375 | 2012-04-03 14:22:34 -0700 | [diff] [blame] | 3999 | } |
| 4000 | |
Winson Chung | c916834 | 2013-06-26 14:54:55 -0700 | [diff] [blame] | 4001 | private ValueAnimator createNewAppBounceAnimation(View v, int i) { |
Sunny Goyal | 5d2fc32 | 2015-07-06 22:52:49 -0700 | [diff] [blame] | 4002 | ValueAnimator bounceAnim = LauncherAnimUtils.ofViewAlphaAndScale(v, 1, 1, 1); |
Winson Chung | c916834 | 2013-06-26 14:54:55 -0700 | [diff] [blame] | 4003 | bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION); |
| 4004 | bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY); |
Sunny Goyal | 5a1f53b | 2015-05-27 10:24:24 -0700 | [diff] [blame] | 4005 | bounceAnim.setInterpolator(new OvershootInterpolator(BOUNCE_ANIMATION_TENSION)); |
Winson Chung | c916834 | 2013-06-26 14:54:55 -0700 | [diff] [blame] | 4006 | return bounceAnim; |
| 4007 | } |
| 4008 | |
Adam Cohen | 2777273 | 2013-11-11 14:00:56 +0000 | [diff] [blame] | 4009 | public boolean useVerticalBarLayout() { |
Sunny Goyal | dfaccf6 | 2015-05-11 16:30:44 -0700 | [diff] [blame] | 4010 | return mDeviceProfile.isVerticalBarLayout(); |
Adam Cohen | 2777273 | 2013-11-11 14:00:56 +0000 | [diff] [blame] | 4011 | } |
| 4012 | |
Tony Wickham | 55616cd | 2015-09-23 14:55:17 -0700 | [diff] [blame] | 4013 | public int getSearchBarHeight() { |
| 4014 | if (mLauncherCallbacks != null) { |
| 4015 | return mLauncherCallbacks.getSearchBarHeight(); |
| 4016 | } |
| 4017 | return LauncherCallbacks.SEARCH_BAR_HEIGHT_NORMAL; |
| 4018 | } |
| 4019 | |
Amith Yamasani | 6d7fe50 | 2010-11-16 09:05:07 -0800 | [diff] [blame] | 4020 | /** |
Winson Chung | bb785c6 | 2015-05-05 10:05:08 -0700 | [diff] [blame] | 4021 | * A runnable that we can dequeue and re-enqueue when all applications are bound (to prevent |
| 4022 | * multiple calls to bind the same list.) |
| 4023 | */ |
| 4024 | @Thunk ArrayList<AppInfo> mTmpAppsList; |
| 4025 | private Runnable mBindAllApplicationsRunnable = new Runnable() { |
| 4026 | public void run() { |
| 4027 | bindAllApplications(mTmpAppsList); |
| 4028 | mTmpAppsList = null; |
| 4029 | } |
| 4030 | }; |
| 4031 | |
| 4032 | /** |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 4033 | * Add the icons for all apps. |
| 4034 | * |
| 4035 | * Implementation of the method from LauncherModel.Callbacks. |
| 4036 | */ |
Michael Jurka | eadbfc5 | 2013-09-04 00:45:37 +0200 | [diff] [blame] | 4037 | public void bindAllApplications(final ArrayList<AppInfo> apps) { |
Winson Chung | bb785c6 | 2015-05-05 10:05:08 -0700 | [diff] [blame] | 4038 | if (waitUntilResume(mBindAllApplicationsRunnable, true)) { |
| 4039 | mTmpAppsList = apps; |
| 4040 | return; |
| 4041 | } |
| 4042 | |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 4043 | if (mAppsView != null) { |
| 4044 | mAppsView.setApps(apps); |
| 4045 | } |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 4046 | if (mLauncherCallbacks != null) { |
| 4047 | mLauncherCallbacks.bindAllApplications(apps); |
| 4048 | } |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 4049 | } |
| 4050 | |
| 4051 | /** |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 4052 | * Copies LauncherModel's map of activities to shortcut ids to Launcher's. This is necessary |
| 4053 | * because LauncherModel's map is updated in the background, while Launcher runs on the UI. |
| 4054 | */ |
| 4055 | @Override |
| 4056 | public void bindDeepShortcutMap(MultiHashMap<ComponentKey, String> deepShortcutMapCopy) { |
| 4057 | mDeepShortcutMap = deepShortcutMapCopy; |
| 4058 | if (LOGD) Log.d(TAG, "bindDeepShortcutMap: " + mDeepShortcutMap); |
| 4059 | } |
| 4060 | |
Tony Wickham | 1bce7fd | 2016-04-28 17:39:03 -0700 | [diff] [blame] | 4061 | public List<String> getShortcutIdsForItem(ItemInfo info) { |
| 4062 | if (!DeepShortcutManager.supportsShortcuts(info)) { |
| 4063 | return Collections.EMPTY_LIST; |
| 4064 | } |
| 4065 | ComponentName component = info.getTargetComponent(); |
Hyunyoung Song | d3bf980 | 2016-08-29 14:43:53 -0700 | [diff] [blame] | 4066 | if (component == null) { |
| 4067 | return Collections.EMPTY_LIST; |
| 4068 | } |
| 4069 | |
Tony Wickham | 1bce7fd | 2016-04-28 17:39:03 -0700 | [diff] [blame] | 4070 | List<String> ids = mDeepShortcutMap.get(new ComponentKey(component, info.user)); |
| 4071 | return ids == null ? Collections.EMPTY_LIST : ids; |
| 4072 | } |
| 4073 | |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 4074 | /** |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 4075 | * A package was updated. |
| 4076 | * |
| 4077 | * Implementation of the method from LauncherModel.Callbacks. |
| 4078 | */ |
Michael Jurka | eadbfc5 | 2013-09-04 00:45:37 +0200 | [diff] [blame] | 4079 | public void bindAppsUpdated(final ArrayList<AppInfo> apps) { |
Winson Chung | d64d176 | 2013-08-20 14:37:16 -0700 | [diff] [blame] | 4080 | Runnable r = new Runnable() { |
| 4081 | public void run() { |
| 4082 | bindAppsUpdated(apps); |
| 4083 | } |
| 4084 | }; |
| 4085 | if (waitUntilResume(r)) { |
Michael Jurka | 7607c2f | 2013-04-03 14:33:19 -0700 | [diff] [blame] | 4086 | return; |
| 4087 | } |
| 4088 | |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 4089 | if (mAppsView != null) { |
| 4090 | mAppsView.updateApps(apps); |
Winson Chung | c58497e | 2013-09-03 17:48:37 -0700 | [diff] [blame] | 4091 | } |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 4092 | } |
| 4093 | |
Sunny Goyal | 4390ace | 2014-10-13 11:33:11 -0700 | [diff] [blame] | 4094 | @Override |
| 4095 | public void bindWidgetsRestored(final ArrayList<LauncherAppWidgetInfo> widgets) { |
| 4096 | Runnable r = new Runnable() { |
| 4097 | public void run() { |
| 4098 | bindWidgetsRestored(widgets); |
| 4099 | } |
| 4100 | }; |
| 4101 | if (waitUntilResume(r)) { |
| 4102 | return; |
| 4103 | } |
| 4104 | mWorkspace.widgetsRestored(widgets); |
| 4105 | } |
| 4106 | |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 4107 | /** |
Sunny Goyal | b50cc8c | 2014-10-06 16:23:56 -0700 | [diff] [blame] | 4108 | * Some shortcuts were updated in the background. |
Sunny Goyal | b50cc8c | 2014-10-06 16:23:56 -0700 | [diff] [blame] | 4109 | * Implementation of the method from LauncherModel.Callbacks. |
Sunny Goyal | d3b87ef | 2016-07-28 12:11:54 -0700 | [diff] [blame] | 4110 | * |
| 4111 | * @param updated list of shortcuts which have changed. |
| 4112 | * @param removed list of shortcuts which were deleted in the background. This can happen when |
| 4113 | * an app gets removed from the system or some of its components are no longer |
| 4114 | * available. |
Sunny Goyal | b50cc8c | 2014-10-06 16:23:56 -0700 | [diff] [blame] | 4115 | */ |
Sunny Goyal | 4390ace | 2014-10-13 11:33:11 -0700 | [diff] [blame] | 4116 | @Override |
| 4117 | public void bindShortcutsChanged(final ArrayList<ShortcutInfo> updated, |
| 4118 | final ArrayList<ShortcutInfo> removed, final UserHandleCompat user) { |
Sunny Goyal | b50cc8c | 2014-10-06 16:23:56 -0700 | [diff] [blame] | 4119 | Runnable r = new Runnable() { |
| 4120 | public void run() { |
Sunny Goyal | 4390ace | 2014-10-13 11:33:11 -0700 | [diff] [blame] | 4121 | bindShortcutsChanged(updated, removed, user); |
Sunny Goyal | b50cc8c | 2014-10-06 16:23:56 -0700 | [diff] [blame] | 4122 | } |
| 4123 | }; |
| 4124 | if (waitUntilResume(r)) { |
| 4125 | return; |
| 4126 | } |
| 4127 | |
Sunny Goyal | 4390ace | 2014-10-13 11:33:11 -0700 | [diff] [blame] | 4128 | if (!updated.isEmpty()) { |
| 4129 | mWorkspace.updateShortcuts(updated); |
| 4130 | } |
| 4131 | |
| 4132 | if (!removed.isEmpty()) { |
Sunny Goyal | d3b87ef | 2016-07-28 12:11:54 -0700 | [diff] [blame] | 4133 | HashSet<ComponentName> removedComponents = new HashSet<>(); |
| 4134 | HashSet<ShortcutKey> removedDeepShortcuts = new HashSet<>(); |
| 4135 | |
Sunny Goyal | 4390ace | 2014-10-13 11:33:11 -0700 | [diff] [blame] | 4136 | for (ShortcutInfo si : removed) { |
Sunny Goyal | d3b87ef | 2016-07-28 12:11:54 -0700 | [diff] [blame] | 4137 | if (si.itemType == Favorites.ITEM_TYPE_DEEP_SHORTCUT) { |
Tony Wickham | fc02c1b | 2016-08-29 15:17:48 -0700 | [diff] [blame] | 4138 | removedDeepShortcuts.add(ShortcutKey.fromShortcutInfo(si)); |
Sunny Goyal | d3b87ef | 2016-07-28 12:11:54 -0700 | [diff] [blame] | 4139 | } else { |
| 4140 | removedComponents.add(si.getTargetComponent()); |
| 4141 | } |
Sunny Goyal | 4390ace | 2014-10-13 11:33:11 -0700 | [diff] [blame] | 4142 | } |
Sunny Goyal | d3b87ef | 2016-07-28 12:11:54 -0700 | [diff] [blame] | 4143 | |
| 4144 | if (!removedComponents.isEmpty()) { |
| 4145 | ItemInfoMatcher matcher = ItemInfoMatcher.ofComponents(removedComponents, user); |
| 4146 | mWorkspace.removeItemsByMatcher(matcher); |
| 4147 | mDragController.onAppsRemoved(matcher); |
| 4148 | } |
| 4149 | |
| 4150 | if (!removedDeepShortcuts.isEmpty()) { |
| 4151 | ItemInfoMatcher matcher = ItemInfoMatcher.ofShortcutKeys(removedDeepShortcuts); |
| 4152 | mWorkspace.removeItemsByMatcher(matcher); |
| 4153 | mDragController.onAppsRemoved(matcher); |
| 4154 | } |
Sunny Goyal | b50cc8c | 2014-10-06 16:23:56 -0700 | [diff] [blame] | 4155 | } |
| 4156 | } |
| 4157 | |
| 4158 | /** |
Chris Wren | aeff7ea | 2014-02-14 16:59:24 -0500 | [diff] [blame] | 4159 | * Update the state of a package, typically related to install state. |
| 4160 | * |
| 4161 | * Implementation of the method from LauncherModel.Callbacks. |
| 4162 | */ |
Sunny Goyal | e755d46 | 2014-07-22 13:48:29 -0700 | [diff] [blame] | 4163 | @Override |
Sunny Goyal | 756adbc | 2015-04-16 15:20:51 -0700 | [diff] [blame] | 4164 | public void bindRestoreItemsChange(final HashSet<ItemInfo> updates) { |
| 4165 | Runnable r = new Runnable() { |
| 4166 | public void run() { |
| 4167 | bindRestoreItemsChange(updates); |
| 4168 | } |
| 4169 | }; |
| 4170 | if (waitUntilResume(r)) { |
| 4171 | return; |
Chris Wren | aeff7ea | 2014-02-14 16:59:24 -0500 | [diff] [blame] | 4172 | } |
Chris Wren | aeff7ea | 2014-02-14 16:59:24 -0500 | [diff] [blame] | 4173 | |
Sunny Goyal | 756adbc | 2015-04-16 15:20:51 -0700 | [diff] [blame] | 4174 | mWorkspace.updateRestoreItems(updates); |
Sunny Goyal | a22666f | 2014-09-18 13:25:15 -0700 | [diff] [blame] | 4175 | } |
| 4176 | |
| 4177 | /** |
Sunny Goyal | 3bbbabc | 2016-03-15 09:16:30 -0700 | [diff] [blame] | 4178 | * 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] | 4179 | * in addition to specific applications to remove, the reason being that |
| 4180 | * 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] | 4181 | * we only remove specific components from the workspace and hotseat, where as |
Winson Chung | 83892cc | 2013-05-01 16:53:33 -0700 | [diff] [blame] | 4182 | * package-removal should clear all items by package name. |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 4183 | */ |
Sunny Goyal | 1a745e8 | 2014-10-02 15:58:31 -0700 | [diff] [blame] | 4184 | @Override |
Sunny Goyal | 3bbbabc | 2016-03-15 09:16:30 -0700 | [diff] [blame] | 4185 | public void bindWorkspaceComponentsRemoved( |
| 4186 | final HashSet<String> packageNames, final HashSet<ComponentName> components, |
| 4187 | final UserHandleCompat user) { |
Winson Chung | d64d176 | 2013-08-20 14:37:16 -0700 | [diff] [blame] | 4188 | Runnable r = new Runnable() { |
Winson Chung | 83892cc | 2013-05-01 16:53:33 -0700 | [diff] [blame] | 4189 | public void run() { |
Sunny Goyal | 3bbbabc | 2016-03-15 09:16:30 -0700 | [diff] [blame] | 4190 | bindWorkspaceComponentsRemoved(packageNames, components, user); |
Winson Chung | 83892cc | 2013-05-01 16:53:33 -0700 | [diff] [blame] | 4191 | } |
Winson Chung | d64d176 | 2013-08-20 14:37:16 -0700 | [diff] [blame] | 4192 | }; |
| 4193 | if (waitUntilResume(r)) { |
Winson Chung | 83892cc | 2013-05-01 16:53:33 -0700 | [diff] [blame] | 4194 | return; |
| 4195 | } |
Sunny Goyal | 3bbbabc | 2016-03-15 09:16:30 -0700 | [diff] [blame] | 4196 | if (!packageNames.isEmpty()) { |
Sunny Goyal | d3b87ef | 2016-07-28 12:11:54 -0700 | [diff] [blame] | 4197 | ItemInfoMatcher matcher = ItemInfoMatcher.ofPackages(packageNames, user); |
| 4198 | mWorkspace.removeItemsByMatcher(matcher); |
| 4199 | mDragController.onAppsRemoved(matcher); |
| 4200 | |
Sunny Goyal | 3bbbabc | 2016-03-15 09:16:30 -0700 | [diff] [blame] | 4201 | } |
| 4202 | if (!components.isEmpty()) { |
Sunny Goyal | d3b87ef | 2016-07-28 12:11:54 -0700 | [diff] [blame] | 4203 | ItemInfoMatcher matcher = ItemInfoMatcher.ofComponents(components, user); |
| 4204 | mWorkspace.removeItemsByMatcher(matcher); |
| 4205 | mDragController.onAppsRemoved(matcher); |
Sunny Goyal | 3bbbabc | 2016-03-15 09:16:30 -0700 | [diff] [blame] | 4206 | } |
Sunny Goyal | 3bbbabc | 2016-03-15 09:16:30 -0700 | [diff] [blame] | 4207 | } |
Sunny Goyal | 4390ace | 2014-10-13 11:33:11 -0700 | [diff] [blame] | 4208 | |
Sunny Goyal | 3bbbabc | 2016-03-15 09:16:30 -0700 | [diff] [blame] | 4209 | @Override |
| 4210 | public void bindAppInfosRemoved(final ArrayList<AppInfo> appInfos) { |
| 4211 | Runnable r = new Runnable() { |
| 4212 | public void run() { |
| 4213 | bindAppInfosRemoved(appInfos); |
| 4214 | } |
| 4215 | }; |
| 4216 | if (waitUntilResume(r)) { |
| 4217 | return; |
Joe Onorato | 3611578 | 2010-06-17 13:28:48 -0400 | [diff] [blame] | 4218 | } |
Winson Chung | f0ea4d3 | 2011-06-06 14:27:16 -0700 | [diff] [blame] | 4219 | |
Winson Chung | df95eb1 | 2013-10-16 14:57:07 -0700 | [diff] [blame] | 4220 | // Update AllApps |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 4221 | if (mAppsView != null) { |
| 4222 | mAppsView.removeApps(appInfos); |
Winson Chung | c58497e | 2013-09-03 17:48:37 -0700 | [diff] [blame] | 4223 | } |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 4224 | } |
Joe Onorato | be38609 | 2009-11-17 17:32:16 -0800 | [diff] [blame] | 4225 | |
Sunny Goyal | 2e1efb4 | 2016-03-03 16:58:55 -0800 | [diff] [blame] | 4226 | private Runnable mBindWidgetModelRunnable = new Runnable() { |
Winson Chung | 83892cc | 2013-05-01 16:53:33 -0700 | [diff] [blame] | 4227 | public void run() { |
Sunny Goyal | 2e1efb4 | 2016-03-03 16:58:55 -0800 | [diff] [blame] | 4228 | bindWidgetsModel(mWidgetsModel); |
Winson Chung | 83892cc | 2013-05-01 16:53:33 -0700 | [diff] [blame] | 4229 | } |
Michael Jurka | c402cd9 | 2013-05-20 15:49:32 +0200 | [diff] [blame] | 4230 | }; |
Hyunyoung Song | 3f47144 | 2015-04-08 19:01:34 -0700 | [diff] [blame] | 4231 | |
Hyunyoung Song | 8821ca9 | 2015-05-04 16:28:20 -0700 | [diff] [blame] | 4232 | @Override |
Sunny Goyal | 2e1efb4 | 2016-03-03 16:58:55 -0800 | [diff] [blame] | 4233 | public void bindWidgetsModel(WidgetsModel model) { |
| 4234 | if (waitUntilResume(mBindWidgetModelRunnable, true)) { |
Hyunyoung Song | 2bd3d7d | 2015-05-21 13:04:53 -0700 | [diff] [blame] | 4235 | mWidgetsModel = model; |
Winson Chung | 83892cc | 2013-05-01 16:53:33 -0700 | [diff] [blame] | 4236 | return; |
| 4237 | } |
| 4238 | |
Hyunyoung Song | 2bd3d7d | 2015-05-21 13:04:53 -0700 | [diff] [blame] | 4239 | if (mWidgetsView != null && model != null) { |
| 4240 | mWidgetsView.addWidgets(model); |
| 4241 | mWidgetsModel = null; |
Winson Chung | 785d2eb | 2011-04-14 16:08:02 -0700 | [diff] [blame] | 4242 | } |
Winson Chung | 80baf5a | 2010-08-09 16:03:15 -0700 | [diff] [blame] | 4243 | } |
| 4244 | |
Sunny Goyal | 2e1efb4 | 2016-03-03 16:58:55 -0800 | [diff] [blame] | 4245 | @Override |
| 4246 | public void notifyWidgetProvidersChanged() { |
| 4247 | if (mWorkspace.getState().shouldUpdateWidget) { |
| 4248 | mModel.refreshAndBindWidgetsAndShortcuts(this, mWidgetsView.isEmpty()); |
| 4249 | } |
| 4250 | } |
| 4251 | |
Winson Chung | 400438b | 2011-01-16 17:53:48 -0800 | [diff] [blame] | 4252 | private int mapConfigurationOriActivityInfoOri(int configOri) { |
| 4253 | final Display d = getWindowManager().getDefaultDisplay(); |
| 4254 | int naturalOri = Configuration.ORIENTATION_LANDSCAPE; |
| 4255 | switch (d.getRotation()) { |
| 4256 | case Surface.ROTATION_0: |
| 4257 | case Surface.ROTATION_180: |
| 4258 | // We are currently in the same basic orientation as the natural orientation |
| 4259 | naturalOri = configOri; |
| 4260 | break; |
| 4261 | case Surface.ROTATION_90: |
| 4262 | case Surface.ROTATION_270: |
| 4263 | // We are currently in the other basic orientation to the natural orientation |
| 4264 | naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ? |
| 4265 | Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE; |
| 4266 | break; |
| 4267 | } |
| 4268 | |
| 4269 | int[] oriMap = { |
| 4270 | ActivityInfo.SCREEN_ORIENTATION_PORTRAIT, |
| 4271 | ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE, |
| 4272 | ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT, |
| 4273 | ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE |
| 4274 | }; |
| 4275 | // Since the map starts at portrait, we need to offset if this device's natural orientation |
| 4276 | // is landscape. |
| 4277 | int indexOffset = 0; |
| 4278 | if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) { |
| 4279 | indexOffset = 1; |
| 4280 | } |
| 4281 | return oriMap[(d.getRotation() + indexOffset) % 4]; |
| 4282 | } |
Adam Cohen | 446e940 | 2011-09-15 18:21:21 -0700 | [diff] [blame] | 4283 | |
Sunny Goyal | 9fc953b | 2015-08-17 12:24:25 -0700 | [diff] [blame] | 4284 | @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR2) |
Winson Chung | 4b919f8 | 2012-05-01 10:44:08 -0700 | [diff] [blame] | 4285 | public void lockScreenOrientation() { |
Rahul Chaturvedi | 7fc77ca | 2015-05-19 18:02:16 -0700 | [diff] [blame] | 4286 | if (mRotationEnabled) { |
Sunny Goyal | 9fc953b | 2015-08-17 12:24:25 -0700 | [diff] [blame] | 4287 | if (Utilities.ATLEAST_JB_MR2) { |
| 4288 | setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LOCKED); |
| 4289 | } else { |
Sunny Goyal | 3c1865a | 2015-02-10 14:28:44 -0800 | [diff] [blame] | 4290 | setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources() |
| 4291 | .getConfiguration().orientation)); |
Sunny Goyal | 3c1865a | 2015-02-10 14:28:44 -0800 | [diff] [blame] | 4292 | } |
Winson Chung | 4b919f8 | 2012-05-01 10:44:08 -0700 | [diff] [blame] | 4293 | } |
| 4294 | } |
Rahul Chaturvedi | 7fc77ca | 2015-05-19 18:02:16 -0700 | [diff] [blame] | 4295 | |
Winson Chung | 4b919f8 | 2012-05-01 10:44:08 -0700 | [diff] [blame] | 4296 | public void unlockScreenOrientation(boolean immediate) { |
Rahul Chaturvedi | 7fc77ca | 2015-05-19 18:02:16 -0700 | [diff] [blame] | 4297 | if (mRotationEnabled) { |
Winson Chung | 4b919f8 | 2012-05-01 10:44:08 -0700 | [diff] [blame] | 4298 | if (immediate) { |
Winson Chung | 641d71d | 2012-04-26 15:58:01 -0700 | [diff] [blame] | 4299 | setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED); |
Winson Chung | 4b919f8 | 2012-05-01 10:44:08 -0700 | [diff] [blame] | 4300 | } else { |
| 4301 | mHandler.postDelayed(new Runnable() { |
| 4302 | public void run() { |
| 4303 | setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED); |
| 4304 | } |
Sunny Goyal | 756cd26 | 2015-08-20 12:33:21 -0700 | [diff] [blame] | 4305 | }, RESTORE_SCREEN_ORIENTATION_DELAY); |
Winson Chung | 641d71d | 2012-04-26 15:58:01 -0700 | [diff] [blame] | 4306 | } |
Winson Chung | 4b919f8 | 2012-05-01 10:44:08 -0700 | [diff] [blame] | 4307 | } |
Winson Chung | 400438b | 2011-01-16 17:53:48 -0800 | [diff] [blame] | 4308 | } |
| 4309 | |
Hyunyoung Song | c001cf5 | 2016-07-21 17:32:43 -0700 | [diff] [blame] | 4310 | private void markAppsViewShown() { |
| 4311 | if (mSharedPrefs.getBoolean(APPS_VIEW_SHOWN, false)) { |
| 4312 | return; |
| 4313 | } |
| 4314 | mSharedPrefs.edit().putBoolean(APPS_VIEW_SHOWN, true).apply(); |
| 4315 | } |
| 4316 | |
| 4317 | private boolean shouldShowDiscoveryBounce() { |
| 4318 | if (mState != mState.WORKSPACE) { |
| 4319 | return false; |
| 4320 | } |
| 4321 | if (mLauncherCallbacks != null && mLauncherCallbacks.shouldShowDiscoveryBounce()) { |
| 4322 | return true; |
| 4323 | } |
| 4324 | if (!mIsResumeFromActionScreenOff) { |
| 4325 | return false; |
| 4326 | } |
| 4327 | if (mSharedPrefs.getBoolean(APPS_VIEW_SHOWN, false)) { |
| 4328 | return false; |
| 4329 | } |
| 4330 | return true; |
| 4331 | } |
| 4332 | |
Winson Chung | 5ffd51d | 2015-06-25 11:36:50 -0700 | [diff] [blame] | 4333 | // TODO: These method should be a part of LauncherSearchCallback |
Sunny Goyal | a1d1bf3 | 2015-06-26 13:24:53 -0700 | [diff] [blame] | 4334 | @TargetApi(Build.VERSION_CODES.LOLLIPOP) |
Mathew Inwood | 72fbec1 | 2013-11-19 15:45:07 +0000 | [diff] [blame] | 4335 | public ItemInfo createAppDragInfo(Intent appLaunchIntent) { |
Winson Chung | 5ffd51d | 2015-06-25 11:36:50 -0700 | [diff] [blame] | 4336 | // Called from search suggestion |
Sunny Goyal | a1d1bf3 | 2015-06-26 13:24:53 -0700 | [diff] [blame] | 4337 | UserHandleCompat user = null; |
Sunny Goyal | 9fc953b | 2015-08-17 12:24:25 -0700 | [diff] [blame] | 4338 | if (Utilities.ATLEAST_LOLLIPOP) { |
Sunny Goyal | a1d1bf3 | 2015-06-26 13:24:53 -0700 | [diff] [blame] | 4339 | UserHandle userHandle = appLaunchIntent.getParcelableExtra(Intent.EXTRA_USER); |
| 4340 | if (userHandle != null) { |
| 4341 | user = UserHandleCompat.fromUser(userHandle); |
| 4342 | } |
| 4343 | } |
| 4344 | return createAppDragInfo(appLaunchIntent, user); |
Winson Chung | 5ffd51d | 2015-06-25 11:36:50 -0700 | [diff] [blame] | 4345 | } |
| 4346 | |
| 4347 | // TODO: This method should be a part of LauncherSearchCallback |
Sunny Goyal | a1d1bf3 | 2015-06-26 13:24:53 -0700 | [diff] [blame] | 4348 | public ItemInfo createAppDragInfo(Intent intent, UserHandleCompat user) { |
Winson Chung | 5ffd51d | 2015-06-25 11:36:50 -0700 | [diff] [blame] | 4349 | if (user == null) { |
| 4350 | user = UserHandleCompat.myUserHandle(); |
| 4351 | } |
| 4352 | |
| 4353 | // Called from search suggestion, add the profile extra to the intent to ensure that we |
| 4354 | // can launch it correctly |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 4355 | LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this); |
Sunny Goyal | a1d1bf3 | 2015-06-26 13:24:53 -0700 | [diff] [blame] | 4356 | LauncherActivityInfoCompat activityInfo = launcherApps.resolveActivity(intent, user); |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 4357 | if (activityInfo == null) { |
Mathew Inwood | 72fbec1 | 2013-11-19 15:45:07 +0000 | [diff] [blame] | 4358 | return null; |
| 4359 | } |
Winson Chung | 5ffd51d | 2015-06-25 11:36:50 -0700 | [diff] [blame] | 4360 | return new AppInfo(this, activityInfo, user, mIconCache); |
Mathew Inwood | 72fbec1 | 2013-11-19 15:45:07 +0000 | [diff] [blame] | 4361 | } |
| 4362 | |
Winson Chung | 5ffd51d | 2015-06-25 11:36:50 -0700 | [diff] [blame] | 4363 | // TODO: This method should be a part of LauncherSearchCallback |
Mathew Inwood | 72fbec1 | 2013-11-19 15:45:07 +0000 | [diff] [blame] | 4364 | public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption, |
| 4365 | Bitmap icon) { |
Sunny Goyal | a1d1bf3 | 2015-06-26 13:24:53 -0700 | [diff] [blame] | 4366 | return new ShortcutInfo(shortcutIntent, caption, caption, icon, |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 4367 | UserHandleCompat.myUserHandle()); |
| 4368 | } |
| 4369 | |
Winson Chung | 5ffd51d | 2015-06-25 11:36:50 -0700 | [diff] [blame] | 4370 | protected void moveWorkspaceToDefaultScreen() { |
| 4371 | mWorkspace.moveToDefaultScreen(false); |
| 4372 | } |
| 4373 | |
Winson Chung | 80baf5a | 2010-08-09 16:03:15 -0700 | [diff] [blame] | 4374 | /** |
Sunny Goyal | 53d7ee4 | 2015-05-22 12:25:45 -0700 | [diff] [blame] | 4375 | * Returns a FastBitmapDrawable with the icon, accurately sized. |
| 4376 | */ |
| 4377 | public FastBitmapDrawable createIconDrawable(Bitmap icon) { |
| 4378 | FastBitmapDrawable d = new FastBitmapDrawable(icon); |
| 4379 | d.setFilterBitmap(true); |
| 4380 | resizeIconDrawable(d); |
| 4381 | return d; |
| 4382 | } |
| 4383 | |
| 4384 | /** |
| 4385 | * Resizes an icon drawable to the correct icon size. |
| 4386 | */ |
Winson | 5fbe074 | 2015-09-30 15:33:00 -0700 | [diff] [blame] | 4387 | public Drawable resizeIconDrawable(Drawable icon) { |
Sunny Goyal | 53d7ee4 | 2015-05-22 12:25:45 -0700 | [diff] [blame] | 4388 | icon.setBounds(0, 0, mDeviceProfile.iconSizePx, mDeviceProfile.iconSizePx); |
Winson | 5fbe074 | 2015-09-30 15:33:00 -0700 | [diff] [blame] | 4389 | return icon; |
Sunny Goyal | 53d7ee4 | 2015-05-22 12:25:45 -0700 | [diff] [blame] | 4390 | } |
| 4391 | |
| 4392 | /** |
Joe Onorato | be38609 | 2009-11-17 17:32:16 -0800 | [diff] [blame] | 4393 | * Prints out out state for debugging. |
| 4394 | */ |
| 4395 | public void dumpState() { |
Daniel Sandler | 325dc23 | 2013-06-05 22:57:57 -0400 | [diff] [blame] | 4396 | Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this); |
Joe Onorato | 39bfc13 | 2009-11-18 17:22:01 -0800 | [diff] [blame] | 4397 | Log.d(TAG, "mSavedState=" + mSavedState); |
Joe Onorato | 39bfc13 | 2009-11-18 17:22:01 -0800 | [diff] [blame] | 4398 | Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading); |
Sunny Goyal | 2100c78 | 2016-08-22 16:00:03 -0700 | [diff] [blame] | 4399 | Log.d(TAG, "mPendingRequestArgs=" + mPendingRequestArgs); |
| 4400 | Log.d(TAG, "mPendingActivityResult=" + mPendingActivityResult); |
Joe Onorato | be38609 | 2009-11-17 17:32:16 -0800 | [diff] [blame] | 4401 | mModel.dumpState(); |
Hyunyoung Song | 3f47144 | 2015-04-08 19:01:34 -0700 | [diff] [blame] | 4402 | // TODO(hyunyoungs): add mWidgetsView.dumpState(); or mWidgetsModel.dumpState(); |
Winson Chung | f0ea4d3 | 2011-06-06 14:27:16 -0700 | [diff] [blame] | 4403 | |
Daniel Sandler | 325dc23 | 2013-06-05 22:57:57 -0400 | [diff] [blame] | 4404 | Log.d(TAG, "END launcher3 dump state"); |
Joe Onorato | be38609 | 2009-11-17 17:32:16 -0800 | [diff] [blame] | 4405 | } |
Adam Cohen | 16d7ffc | 2011-10-05 17:49:14 -0700 | [diff] [blame] | 4406 | |
| 4407 | @Override |
| 4408 | public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) { |
| 4409 | super.dump(prefix, fd, writer, args); |
Sunny Goyal | a136545 | 2015-10-01 15:46:24 -0700 | [diff] [blame] | 4410 | // Dump workspace |
| 4411 | writer.println(prefix + "Workspace Items"); |
| 4412 | for (int i = mWorkspace.numCustomPages(); i < mWorkspace.getPageCount(); i++) { |
| 4413 | writer.println(prefix + " Homescreen " + i); |
| 4414 | |
| 4415 | ViewGroup layout = ((CellLayout) mWorkspace.getPageAt(i)).getShortcutsAndWidgets(); |
| 4416 | for (int j = 0; j < layout.getChildCount(); j++) { |
| 4417 | Object tag = layout.getChildAt(j).getTag(); |
| 4418 | if (tag != null) { |
| 4419 | writer.println(prefix + " " + tag.toString()); |
| 4420 | } |
Adam Cohen | 4caf298 | 2013-08-20 18:54:31 -0700 | [diff] [blame] | 4421 | } |
Adam Cohen | 16d7ffc | 2011-10-05 17:49:14 -0700 | [diff] [blame] | 4422 | } |
Sunny Goyal | a136545 | 2015-10-01 15:46:24 -0700 | [diff] [blame] | 4423 | |
| 4424 | writer.println(prefix + " Hotseat"); |
| 4425 | ViewGroup layout = mHotseat.getLayout().getShortcutsAndWidgets(); |
| 4426 | for (int j = 0; j < layout.getChildCount(); j++) { |
| 4427 | Object tag = layout.getChildAt(j).getTag(); |
| 4428 | if (tag != null) { |
| 4429 | writer.println(prefix + " " + tag.toString()); |
| 4430 | } |
| 4431 | } |
| 4432 | |
Sunny Goyal | 713edfc | 2016-05-06 09:58:34 -0700 | [diff] [blame] | 4433 | try { |
| 4434 | FileLog.flushAll(writer); |
| 4435 | } catch (Exception e) { |
| 4436 | // Ignore |
Sunny Goyal | a136545 | 2015-10-01 15:46:24 -0700 | [diff] [blame] | 4437 | } |
| 4438 | |
Adam Cohen | 9211d42 | 2014-10-07 18:14:53 -0700 | [diff] [blame] | 4439 | if (mLauncherCallbacks != null) { |
| 4440 | mLauncherCallbacks.dump(prefix, fd, writer, args); |
| 4441 | } |
Adam Cohen | 16d7ffc | 2011-10-05 17:49:14 -0700 | [diff] [blame] | 4442 | } |
Adam Cohen | 487f7dd | 2012-06-28 18:12:10 -0700 | [diff] [blame] | 4443 | |
Adam Cohen | 5940042 | 2014-03-05 18:07:04 -0800 | [diff] [blame] | 4444 | public static CustomAppWidget getCustomAppWidget(String name) { |
| 4445 | return sCustomAppWidgets.get(name); |
| 4446 | } |
| 4447 | |
| 4448 | public static HashMap<String, CustomAppWidget> getCustomAppWidgets() { |
| 4449 | return sCustomAppWidgets; |
| 4450 | } |
| 4451 | |
Sunny Goyal | 2953833 | 2016-02-18 09:10:19 -0800 | [diff] [blame] | 4452 | public static List<View> getFolderContents(View icon) { |
| 4453 | if (icon instanceof FolderIcon) { |
| 4454 | return ((FolderIcon) icon).getFolder().getItemsInReadingOrder(); |
| 4455 | } else { |
| 4456 | return Collections.EMPTY_LIST; |
| 4457 | } |
| 4458 | } |
Sunny Goyal | 745bad9 | 2016-05-02 10:54:12 -0700 | [diff] [blame] | 4459 | |
Andrew Sapperstein | abef55a | 2016-06-19 12:49:00 -0700 | [diff] [blame] | 4460 | public static Launcher getLauncher(Context context) { |
| 4461 | if (context instanceof Launcher) { |
| 4462 | return (Launcher) context; |
| 4463 | } |
| 4464 | return ((Launcher) ((ContextWrapper) context).getBaseContext()); |
| 4465 | } |
| 4466 | |
Sunny Goyal | 745bad9 | 2016-05-02 10:54:12 -0700 | [diff] [blame] | 4467 | private class RotationPrefChangeHandler implements OnSharedPreferenceChangeListener, Runnable { |
| 4468 | |
| 4469 | @Override |
| 4470 | public void onSharedPreferenceChanged( |
| 4471 | SharedPreferences sharedPreferences, String key) { |
| 4472 | if (Utilities.ALLOW_ROTATION_PREFERENCE_KEY.equals(key)) { |
| 4473 | mRotationEnabled = Utilities.isAllowRotationPrefEnabled(getApplicationContext()); |
| 4474 | if (!waitUntilResume(this, true)) { |
| 4475 | run(); |
| 4476 | } |
| 4477 | } |
| 4478 | } |
| 4479 | |
| 4480 | @Override |
| 4481 | public void run() { |
| 4482 | setOrientation(); |
| 4483 | } |
| 4484 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 4485 | } |