blob: b18dee327baf6260edd573ffdae35646dbbaf165 [file] [log] [blame]
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Daniel Sandler325dc232013-06-05 22:57:57 -040017package com.android.launcher3;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080018
Sunny Goyal28c6b962015-10-12 11:42:05 -070019import android.Manifest;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070020import android.animation.Animator;
Michael Jurka8edd75c2010-12-17 20:15:06 -080021import android.animation.AnimatorListenerAdapter;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070022import android.animation.AnimatorSet;
Adam Cohen2801caf2011-05-13 20:57:39 -070023import android.animation.ObjectAnimator;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070024import android.animation.ValueAnimator;
Sunny Goyal70660032015-05-14 00:07:08 -070025import android.annotation.SuppressLint;
Adam Cohen0b395352014-06-09 22:54:36 +000026import android.annotation.TargetApi;
Michael Jurka946ad472010-07-09 18:05:18 -070027import android.app.Activity;
Winson Chungc7450e32012-04-17 17:34:08 -070028import android.app.ActivityOptions;
Chris Wren40c5ed32014-06-24 18:24:23 -040029import android.app.AlertDialog;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080030import android.app.SearchManager;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080031import android.appwidget.AppWidgetHostView;
Michael Jurkaaf442092010-06-10 17:01:57 -070032import android.appwidget.AppWidgetManager;
33import android.appwidget.AppWidgetProviderInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080034import android.content.ActivityNotFoundException;
Joe Onorato2ca0ae72009-11-10 13:14:13 -080035import android.content.BroadcastReceiver;
Michael Jurkae326f182011-11-21 14:05:46 -080036import android.content.ComponentCallbacks2;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040037import android.content.ComponentName;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080038import android.content.Context;
Andrew Sappersteinabef55a2016-06-19 12:49:00 -070039import android.content.ContextWrapper;
Chris Wren40c5ed32014-06-24 18:24:23 -040040import android.content.DialogInterface;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080041import android.content.Intent;
Winson Chungf0ea4d32011-06-06 14:27:16 -070042import android.content.IntentFilter;
Adam Cohen173f7112015-03-27 15:14:00 -070043import android.content.IntentSender;
Winson Chung82f55532011-08-09 14:14:23 -070044import android.content.SharedPreferences;
Sunny Goyal745bad92016-05-02 10:54:12 -070045import android.content.SharedPreferences.OnSharedPreferenceChangeListener;
Winson Chungaafa03c2010-06-11 17:34:16 -070046import android.content.pm.ActivityInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080047import android.content.pm.PackageManager;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080048import android.content.res.Configuration;
Adam Cohen3f9c9712014-10-31 11:48:25 -070049import android.database.sqlite.SQLiteDatabase;
Adam Cohen268c4752012-06-06 17:47:33 -070050import android.graphics.Bitmap;
51import android.graphics.Canvas;
52import android.graphics.PorterDuff;
Michael Jurkaaf442092010-06-10 17:01:57 -070053import android.graphics.Rect;
Michael Jurkaaf442092010-06-10 17:01:57 -070054import android.graphics.drawable.Drawable;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -070055import android.os.AsyncTask;
Adam Cohen0f668f32014-09-08 19:54:17 +020056import android.os.Build;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080057import android.os.Bundle;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080058import android.os.Handler;
Adam Cohended9f8d2010-11-03 13:25:16 -070059import android.os.Message;
Winson Chunga2413752012-04-03 14:22:34 -070060import android.os.StrictMode;
Daniel Sandler843e8602010-06-07 14:59:01 -040061import android.os.SystemClock;
Sunny Goyale26d1002016-06-20 14:52:14 -070062import android.os.Trace;
Sunny Goyala1d1bf32015-06-26 13:24:53 -070063import android.os.UserHandle;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080064import android.text.Selection;
65import android.text.SpannableStringBuilder;
Michael Jurkaa33411c2012-06-14 16:18:21 -070066import android.text.TextUtils;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080067import android.text.method.TextKeyListener;
Joe Onorato7c312c12009-08-13 21:36:53 -070068import android.util.Log;
Adam Cohen96d30a12013-07-16 18:13:21 -070069import android.view.Display;
Adam Cohen96d30a12013-07-16 18:13:21 -070070import android.view.HapticFeedbackConstants;
71import android.view.KeyEvent;
Adam Cohen96d30a12013-07-16 18:13:21 -070072import android.view.Menu;
Adam Cohen96d30a12013-07-16 18:13:21 -070073import android.view.MotionEvent;
74import android.view.Surface;
75import android.view.View;
Adam Cohenf358a4b2013-07-23 16:47:31 -070076import android.view.View.OnClickListener;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080077import android.view.View.OnLongClickListener;
Adam Cohen96d30a12013-07-16 18:13:21 -070078import android.view.ViewGroup;
79import android.view.ViewTreeObserver;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -080080import android.view.accessibility.AccessibilityEvent;
Tony Wickhame2217252016-03-22 16:34:23 -070081import android.view.accessibility.AccessibilityManager;
Sunny Goyal5a1f53b2015-05-27 10:24:24 -070082import android.view.animation.OvershootInterpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080083import android.view.inputmethod.InputMethodManager;
Adam Cohen96d30a12013-07-16 18:13:21 -070084import android.widget.Advanceable;
Adam Cohen96d30a12013-07-16 18:13:21 -070085import android.widget.ImageView;
Chet Haasea8f996d2015-02-17 12:56:04 -080086import android.widget.TextView;
Adam Cohen96d30a12013-07-16 18:13:21 -070087import android.widget.Toast;
Sunny Goyala1d1bf32015-06-26 13:24:53 -070088
Sunny Goyal651077b2014-06-30 14:15:31 -070089import com.android.launcher3.DropTarget.DragObject;
Sunny Goyala7ce1662016-05-31 15:01:35 -070090import com.android.launcher3.LauncherSettings.Favorites;
Sunny Goyalae502842016-06-17 08:43:56 -070091import com.android.launcher3.accessibility.LauncherAccessibilityDelegate;
Winson Chung5f4e0fd2015-05-22 11:12:27 -070092import com.android.launcher3.allapps.AllAppsContainerView;
Hyunyoung Song645764e2016-06-06 14:19:02 -070093import com.android.launcher3.allapps.AllAppsTransitionController;
Sunny Goyal0ac7ede2016-01-29 13:14:14 -080094import com.android.launcher3.allapps.DefaultAppSearchController;
Sunny Goyalffe83f12014-08-14 17:39:34 -070095import com.android.launcher3.compat.AppWidgetManagerCompat;
Kenny Guyed131872014-04-30 03:02:21 +010096import com.android.launcher3.compat.LauncherActivityInfoCompat;
97import com.android.launcher3.compat.LauncherAppsCompat;
98import com.android.launcher3.compat.UserHandleCompat;
99import com.android.launcher3.compat.UserManagerCompat;
Tony Wickhame0c33232016-02-08 11:37:04 -0800100import com.android.launcher3.config.FeatureFlags;
Sunny Goyal6c56c682015-07-16 14:09:05 -0700101import com.android.launcher3.config.ProviderConfig;
Vadim Tryshevfedca432015-08-19 17:55:02 -0700102import com.android.launcher3.dragndrop.DragController;
103import com.android.launcher3.dragndrop.DragLayer;
Sunny Goyal94b510c2016-08-16 15:36:48 -0700104import com.android.launcher3.dragndrop.DragOptions;
Vadim Tryshevfedca432015-08-19 17:55:02 -0700105import com.android.launcher3.dragndrop.DragView;
Tony Wickham827cef22016-03-17 15:39:39 -0700106import com.android.launcher3.dynamicui.ExtractedColors;
Sunny Goyal26119432016-02-18 22:09:23 +0000107import com.android.launcher3.folder.Folder;
108import com.android.launcher3.folder.FolderIcon;
Sunny Goyal3333b0c2016-05-09 20:43:21 -0700109import com.android.launcher3.keyboard.ViewGroupFocusHelper;
Sunny Goyala7ce1662016-05-31 15:01:35 -0700110import com.android.launcher3.logging.FileLog;
Hyunyoung Songaa953652016-04-19 18:30:24 -0700111import com.android.launcher3.logging.UserEventDispatcher;
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700112import com.android.launcher3.model.WidgetsModel;
Hyunyoung Song7d2fc812016-06-15 12:51:30 -0700113import com.android.launcher3.pageindicators.PageIndicator;
Tony Wickham1bce7fd2016-04-28 17:39:03 -0700114import com.android.launcher3.shortcuts.DeepShortcutManager;
Tony Wickham49c8d292016-07-01 11:44:34 -0700115import com.android.launcher3.shortcuts.DeepShortcutsContainer;
Sunny Goyald3b87ef2016-07-28 12:11:54 -0700116import com.android.launcher3.shortcuts.ShortcutKey;
Hyunyoung Song5aa27142016-07-21 11:48:37 -0700117import com.android.launcher3.userevent.nano.LauncherLogProto;
Sunny Goyal2100c782016-08-22 16:00:03 -0700118import com.android.launcher3.util.ActivityResultInfo;
Winson Chung6b1c73f2015-06-18 11:38:42 -0700119import com.android.launcher3.util.ComponentKey;
Sunny Goyald3b87ef2016-07-28 12:11:54 -0700120import com.android.launcher3.util.ItemInfoMatcher;
Tony Wickhambfbf7f92016-05-19 11:19:39 -0700121import com.android.launcher3.util.MultiHashMap;
Sunny Goyal04cc3a72016-05-17 10:32:43 -0700122import com.android.launcher3.util.PackageManagerHelper;
Sunny Goyal2100c782016-08-22 16:00:03 -0700123import com.android.launcher3.util.PendingRequestArgs;
Sunny Goyal322d5562015-06-25 19:35:49 -0700124import com.android.launcher3.util.TestingUtils;
Adam Cohen091440a2015-03-18 14:16:05 -0700125import com.android.launcher3.util.Thunk;
Sunny Goyal527c7d32015-08-28 15:19:36 -0700126import com.android.launcher3.util.ViewOnDrawExecutor;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700127import com.android.launcher3.widget.PendingAddWidgetInfo;
Hyunyoung Songb99ff3e2015-04-23 15:17:50 -0700128import com.android.launcher3.widget.WidgetHostViewLoader;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700129import com.android.launcher3.widget.WidgetsContainerView;
Adam Cohen6c5891a2014-07-09 23:53:15 -0700130
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700131import java.io.FileDescriptor;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700132import java.io.PrintWriter;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700133import java.util.ArrayList;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700134import java.util.Collection;
Sunny Goyal29538332016-02-18 09:10:19 -0800135import java.util.Collections;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700136import java.util.HashMap;
Sunny Goyal4390ace2014-10-13 11:33:11 -0700137import java.util.HashSet;
Michael Jurkad7c28052012-04-27 15:43:36 -0700138import java.util.List;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700139
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800140/**
141 * Default launcher application.
142 */
Bjorn Bringertc459e522013-06-07 19:36:01 +0100143public class Launcher extends Activity
Adam Cohen79d90c52016-04-22 13:29:20 -0700144 implements LauncherExterns, View.OnClickListener, OnLongClickListener,
145 LauncherModel.Callbacks, View.OnTouchListener, LauncherProviderChangeListener,
Tony Wickhame2217252016-03-22 16:34:23 -0700146 AccessibilityManager.AccessibilityStateChangeListener {
Vadim Tryshevfedca432015-08-19 17:55:02 -0700147 public static final String TAG = "Launcher";
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700148 static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800149
Sunny Goyalc84e6e12015-10-02 12:48:37 -0700150 static final boolean DEBUG_WIDGETS = false;
Winson Chunga2413752012-04-03 14:22:34 -0700151 static final boolean DEBUG_STRICT_MODE = false;
Daniel Sandlerf061f822013-06-27 13:59:36 -0400152 static final boolean DEBUG_RESUME_TIME = false;
Romain Guy6fefcf12009-06-11 13:07:43 -0700153
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800154 private static final int REQUEST_CREATE_SHORTCUT = 1;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700155 private static final int REQUEST_CREATE_APPWIDGET = 5;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700156 private static final int REQUEST_PICK_APPWIDGET = 9;
Mike Clerona0618e42009-10-22 13:55:21 -0700157 private static final int REQUEST_PICK_WALLPAPER = 10;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800158
Michael Jurka8b805b12012-04-18 14:23:14 -0700159 private static final int REQUEST_BIND_APPWIDGET = 11;
Sunny Goyald478c832016-04-01 12:04:16 -0700160 private static final int REQUEST_BIND_PENDING_APPWIDGET = 14;
Sunny Goyalff572272014-07-23 13:58:07 -0700161 private static final int REQUEST_RECONFIGURE_APPWIDGET = 12;
Michael Jurka8b805b12012-04-18 14:23:14 -0700162
Sunny Goyal28c6b962015-10-12 11:42:05 -0700163 private static final int REQUEST_PERMISSION_CALL_PHONE = 13;
164
Sunny Goyal5a1f53b2015-05-27 10:24:24 -0700165 private static final float BOUNCE_ANIMATION_TENSION = 1.3f;
166
Mathew Inwood876a8462013-06-14 14:12:41 +0100167 /**
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 Jurka0a457bf2012-11-19 14:05:05 -0800173 // To turn on these properties, type
Hyunyoung Songddec1c72016-04-12 18:32:04 -0700174 // adb shell setprop logTap.tag.PROPERTY_NAME [VERBOSE | SUPPRESS]
Michael Jurka0a457bf2012-11-19 14:05:05 -0800175 static final String DUMP_STATE_PROPERTY = "launcher_dump_state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800176
Winson Chung2672ff92012-05-04 16:22:30 -0700177 // The Intent extra that defines whether to ignore the launch animation
178 static final String INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION =
Daniel Sandler325dc232013-06-05 22:57:57 -0400179 "com.android.launcher3.intent.extra.shortcut.INGORE_LAUNCH_ANIMATION";
Winson Chung2672ff92012-05-04 16:22:30 -0700180
Sunny Goyalda4fe1a2016-05-26 16:05:17 -0700181 public static final String ACTION_APPWIDGET_HOST_RESET =
182 "com.android.launcher3.intent.ACTION_APPWIDGET_HOST_RESET";
183
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800184 // Type: int
185 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
Michael Jurka883f55b2010-10-21 15:47:14 -0700186 // Type: int
187 private static final String RUNTIME_STATE = "launcher.state";
Sunny Goyal2100c782016-08-22 16:00:03 -0700188 // 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 Project31dd5032009-03-03 19:32:27 -0800192
Hyunyoung Songc001cf52016-07-21 17:32:43 -0700193 static final String APPS_VIEW_SHOWN = "launcher.apps_view_shown";
Adam Cohenb54a5982014-01-08 15:21:04 -0800194
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700195 /** The different states that Launcher can be in. */
Tony Wickham94e0d372015-09-11 12:17:48 -0700196 enum State { NONE, WORKSPACE, WORKSPACE_SPRING_LOADED, APPS, APPS_SPRING_LOADED,
197 WIDGETS, WIDGETS_SPRING_LOADED }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700198
Adam Cohen091440a2015-03-18 14:16:05 -0700199 @Thunk State mState = State.WORKSPACE;
Adam Cohen091440a2015-03-18 14:16:05 -0700200 @Thunk LauncherStateTransitionAnimation mStateTransitionAnimation;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700201
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700202 private boolean mIsSafeModeEnabled;
203
Joe Onorato9c1289c2009-08-17 11:03:03 -0400204 static final int APPWIDGET_HOST_ID = 1024;
Adam Cohen4f8071b2016-02-13 16:06:05 -0800205 public static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 500;
Adam Cohenad4e15c2013-10-17 16:21:35 -0700206 private static final int ON_ACTIVITY_RESULT_ANIMATION_DELAY = 500;
Adam Cohen646fdf72014-04-08 16:59:36 -0700207 private static final int ACTIVITY_START_DELAY = 1000;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800208
Winson Chunga2413752012-04-03 14:22:34 -0700209 // How long to wait before the new-shortcut animation automatically pans the workspace
Winson Chung94d67682013-09-25 16:29:40 -0700210 private static int NEW_APPS_PAGE_MOVE_DELAY = 500;
211 private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 5;
Adam Cohen091440a2015-03-18 14:16:05 -0700212 @Thunk static int NEW_APPS_ANIMATION_DELAY = 500;
Winson Chunga2413752012-04-03 14:22:34 -0700213
Sunny Goyalda4fe1a2016-05-26 16:05:17 -0700214 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 Sharkey1e2efc82009-11-06 15:17:59 -0800227
Adam Cohen091440a2015-03-18 14:16:05 -0700228 @Thunk Workspace mWorkspace;
Craig Mautner360310b2012-10-26 15:13:08 -0700229 private View mLauncherView;
Adam Cohen091440a2015-03-18 14:16:05 -0700230 @Thunk DragLayer mDragLayer;
Michael Jurkab737ee62011-11-15 15:57:22 -0800231 private DragController mDragController;
Sunny Goyal6178f132016-07-11 17:30:03 -0700232 private View mQsbContainer;
Sunny Goyal322d5562015-06-25 19:35:49 -0700233
234 public View mWeightWatcher;
Romain Guycbb89e42009-06-08 15:52:54 -0700235
Sunny Goyalffe83f12014-08-14 17:39:34 -0700236 private AppWidgetManagerCompat mAppWidgetManager;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700237 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700238
Michael Jurka0280c3b2010-09-17 15:00:07 -0700239 private int[] mTmpAddItemCellCoordinates = new int[2];
240
Sunny Goyal316490e2015-06-02 09:38:28 -0700241 @Thunk Hotseat mHotseat;
Jorim Jaggid017f882014-01-14 17:08:48 -0800242 private ViewGroup mOverviewPanel;
Adam Cohenf358a4b2013-07-23 16:47:31 -0700243
Michael Jurka838a4ca2011-02-07 13:33:06 -0800244 private View mAllAppsButton;
Hyunyoung Song98ff38a2015-07-10 17:50:13 -0700245 private View mWidgetsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700246
Sunny Goyal47328fd2016-05-25 18:56:41 -0700247 private DropTargetBar mDropTargetBar;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700248
249 // Main container view for the all apps screen.
Winson Chung5f4e0fd2015-05-22 11:12:27 -0700250 @Thunk AllAppsContainerView mAppsView;
Hyunyoung Song645764e2016-06-06 14:19:02 -0700251 AllAppsTransitionController mAllAppsController;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700252
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700253 // Main container view and the model for the widget tray screen.
254 @Thunk WidgetsContainerView mWidgetsView;
255 @Thunk WidgetsModel mWidgetsModel;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700256
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800257 private Bundle mSavedState;
Winson Chung4a2afa32012-07-19 14:53:05 -0700258 // 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 Project31dd5032009-03-03 19:32:27 -0800262
263 private SpannableStringBuilder mDefaultKeySsb = null;
264
Adam Cohen091440a2015-03-18 14:16:05 -0700265 @Thunk boolean mWorkspaceLoading = true;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400266
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800267 private boolean mPaused = true;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700268 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800269
Michael Jurka1e2f4652013-07-08 18:03:46 -0700270 private ArrayList<Runnable> mBindOnResumeCallbacks = new ArrayList<Runnable>();
Michael Jurka7607c2f2013-04-03 14:33:19 -0700271 private ArrayList<Runnable> mOnResumeCallbacks = new ArrayList<Runnable>();
Sunny Goyal527c7d32015-08-28 15:19:36 -0700272 private ViewOnDrawExecutor mPendingExecutor;
Michael Jurka7607c2f2013-04-03 14:33:19 -0700273
Joe Onorato9c1289c2009-08-17 11:03:03 -0400274 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800275 private IconCache mIconCache;
Tony Wickham827cef22016-03-17 15:39:39 -0700276 private ExtractedColors mExtractedColors;
Sunny Goyalae502842016-06-17 08:43:56 -0700277 private LauncherAccessibilityDelegate mAccessibilityDelegate;
Hyunyoung Songc001cf52016-07-21 17:32:43 -0700278 private boolean mIsResumeFromActionScreenOff;
Adam Cohen091440a2015-03-18 14:16:05 -0700279 @Thunk boolean mUserPresent = true;
Adam Cohend113e0c2010-11-11 10:48:05 -0800280 private boolean mVisible = false;
Adam Cohened307df2013-10-02 09:37:31 -0700281 private boolean mHasFocus = false;
Adam Cohend113e0c2010-11-11 10:48:05 -0800282 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400283
Tony Wickhambfbf7f92016-05-19 11:19:39 -0700284 /** Maps launcher activity components to their list of shortcut ids. */
285 private MultiHashMap<ComponentKey, String> mDeepShortcutMap = new MultiHashMap<>();
286
Adam Cohen61f560d2013-09-30 15:58:20 -0700287 private View.OnTouchListener mHapticFeedbackTouchListener;
288
Adam Cohended9f8d2010-11-03 13:25:16 -0700289 // Related to the auto-advancing of widgets
290 private final int ADVANCE_MSG = 1;
Sunny Goyal756cd262015-08-20 12:33:21 -0700291 private static final int ADVANCE_INTERVAL = 20000;
292 private static final int ADVANCE_STAGGER = 250;
293
294 private boolean mAutoAdvanceRunning = false;
Adam Cohended9f8d2010-11-03 13:25:16 -0700295 private long mAutoAdvanceSentTime;
296 private long mAutoAdvanceTimeLeft = -1;
Sunny Goyal756cd262015-08-20 12:33:21 -0700297 @Thunk HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance = new HashMap<>();
Adam Cohended9f8d2010-11-03 13:25:16 -0700298
Winson Chung400438b2011-01-16 17:53:48 -0800299 // Determines how long to wait after a rotation before restoring the screen orientation to
300 // match the sensor state.
Sunny Goyal756cd262015-08-20 12:33:21 -0700301 private static final int RESTORE_SCREEN_ORIENTATION_DELAY = 500;
Winson Chung400438b2011-01-16 17:53:48 -0800302
Adam Cohen1462de32012-07-24 22:34:36 -0700303 private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>();
304
Winson Chung46353de2012-02-16 14:05:10 -0800305 // 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 Chungf0c6ae02012-03-21 16:10:31 -0700309 // 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 Cohen091440a2015-03-18 14:16:05 -0700311 @Thunk ImageView mFolderIconImageView;
Adam Cohen268c4752012-06-06 17:47:33 -0700312 private Bitmap mFolderIconBitmap;
313 private Canvas mFolderIconCanvas;
314 private Rect mRectForFolderAnimation = new Rect();
Adam Cohen2801caf2011-05-13 20:57:39 -0700315
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700316 private DeviceProfile mDeviceProfile;
317
Adam Cohen4b66bf32015-09-18 12:15:19 -0700318 private boolean mMoveToDefaultScreenFromNewIntent;
319
Winson Chung13eb5272015-05-11 16:30:13 -0700320 // 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 Jurkaddd62e92011-02-16 17:49:14 -0800323 private BubbleTextView mWaitingForResume;
324
Adam Cohen59400422014-03-05 18:07:04 -0800325 protected static HashMap<String, CustomAppWidget> sCustomAppWidgets =
326 new HashMap<String, CustomAppWidget>();
327
Adam Cohen59400422014-03-05 18:07:04 -0800328 static {
Sunny Goyal322d5562015-06-25 19:35:49 -0700329 if (TestingUtils.ENABLE_CUSTOM_WIDGET_TEST) {
330 TestingUtils.addDummyWidget(sCustomAppWidgets);
Adam Cohen59400422014-03-05 18:07:04 -0800331 }
332 }
333
Hyunyoung Song06ca7562016-07-29 13:03:54 -0700334 // 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 Cohen091440a2015-03-18 14:16:05 -0700339 @Thunk Runnable mBuildLayersRunnable = new Runnable() {
Michael Jurkac1f5d262011-09-30 19:32:27 -0700340 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700341 if (mWorkspace != null) {
342 mWorkspace.buildPageHardwareLayers();
343 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700344 }
345 };
346
Sunny Goyal2100c782016-08-22 16:00:03 -0700347 // 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 Dubroy002cbf42011-03-03 16:36:21 -0800354
Hyunyoung Songaa953652016-04-19 18:30:24 -0700355 private UserEventDispatcher mUserEventDispatcher;
Hyunyoung Songfbf19cc2016-02-19 12:14:47 -0800356
Jon Miranda379198e2016-09-23 08:54:40 -0700357 private float mLastDispatchTouchEventX = 0.0f;
358 private float mEdgeOfScreenThresholdPx = 0.0f;
359
Sunny Goyal3333b0c2016-05-09 20:43:21 -0700360 public ViewGroupFocusHelper mFocusHandler;
Sunny Goyal7779d622015-06-11 16:18:39 -0700361 private boolean mRotationEnabled = false;
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400362
363 @Thunk void setOrientation() {
364 if (mRotationEnabled) {
365 unlockScreenOrientation(true);
366 } else {
367 setRequestedOrientation(
368 ActivityInfo.SCREEN_ORIENTATION_NOSENSOR);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700369 }
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400370 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700371
Sunny Goyal745bad92016-05-02 10:54:12 -0700372 private RotationPrefChangeHandler mRotationPrefChangeHandler;
Sunny Goyal7779d622015-06-11 16:18:39 -0700373
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800374 @Override
375 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700376 if (DEBUG_STRICT_MODE) {
377 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
378 .detectDiskReads()
379 .detectDiskWrites()
380 .detectNetwork() // or .detectAll() for all detectable problems
381 .penaltyLog()
382 .build());
383 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
384 .detectLeakedSqlLiteObjects()
385 .detectLeakedClosableObjects()
386 .penaltyLog()
387 .penaltyDeath()
388 .build());
389 }
Sunny Goyale26d1002016-06-20 14:52:14 -0700390 if (LauncherAppState.PROFILE_STARTUP) {
391 Trace.beginSection("Launcher-onCreate");
392 }
Winson Chunga2413752012-04-03 14:22:34 -0700393
Adam Cohen9211d422014-10-07 18:14:53 -0700394 if (mLauncherCallbacks != null) {
395 mLauncherCallbacks.preOnCreate();
396 }
397
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800398 super.onCreate(savedInstanceState);
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400399
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400400 LauncherAppState app = LauncherAppState.getInstance();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700401
Adam Cohen2e6da152015-05-06 11:42:25 -0700402 // Load configuration-specific DeviceProfile
Sunny Goyalc6205602015-05-21 20:46:33 -0700403 mDeviceProfile = getResources().getConfiguration().orientation
404 == Configuration.ORIENTATION_LANDSCAPE ?
Tony Wickham3a3517f2015-10-06 11:27:04 -0700405 app.getInvariantDeviceProfile().landscapeProfile
406 : app.getInvariantDeviceProfile().portraitProfile;
Sunny Goyalc6205602015-05-21 20:46:33 -0700407
Sunny Goyalf7258242015-10-19 16:59:07 -0700408 mSharedPrefs = Utilities.getPrefs(this);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700409 mIsSafeModeEnabled = getPackageManager().isSafeMode();
Joe Onorato0589f0f2010-02-08 13:44:00 -0800410 mModel = app.setLauncher(this);
411 mIconCache = app.getIconCache();
Sunny Goyalae502842016-06-17 08:43:56 -0700412 mAccessibilityDelegate = new LauncherAccessibilityDelegate(this);
Adam Cohen2e6da152015-05-06 11:42:25 -0700413
Joe Onorato41a12d22009-10-31 18:30:00 -0400414 mDragController = new DragController(this);
Hyunyoung Song645764e2016-06-06 14:19:02 -0700415 mAllAppsController = new AllAppsTransitionController(this);
416 mStateTransitionAnimation = new LauncherStateTransitionAnimation(this, mAllAppsController);
Romain Guycbb89e42009-06-08 15:52:54 -0700417
Sunny Goyalffe83f12014-08-14 17:39:34 -0700418 mAppWidgetManager = AppWidgetManagerCompat.getInstance(this);
Adam Cohen53805212013-10-01 10:39:23 -0700419
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700420 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
421 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700422
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700423 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
424 // this also ensures that any synchronous binding below doesn't re-trigger another
425 // LauncherModel load.
426 mPaused = false;
427
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800428 setContentView(R.layout.launcher);
Michael Jurka7267fa52013-09-26 15:29:57 -0700429
Jon Miranda379198e2016-09-23 08:54:40 -0700430 mEdgeOfScreenThresholdPx = getResources()
431 .getDimensionPixelSize(R.dimen.edge_of_screen_threshold);
432
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800433 setupViews();
Winson1f064272016-07-18 17:18:02 -0700434 mDeviceProfile.layout(this, false /* notifyListeners */);
Tony Wickham827cef22016-03-17 15:39:39 -0700435 mExtractedColors = new ExtractedColors();
436 loadExtractedColorsAndColorItems();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800437
Tony Wickhame2217252016-03-22 16:34:23 -0700438 ((AccessibilityManager) getSystemService(ACCESSIBILITY_SERVICE))
439 .addAccessibilityStateChangeListener(this);
440
Joe Onorato7c312c12009-08-13 21:36:53 -0700441 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700442
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800443 mSavedState = savedInstanceState;
444 restoreState(mSavedState);
445
Sunny Goyale26d1002016-06-20 14:52:14 -0700446 if (LauncherAppState.PROFILE_STARTUP) {
447 Trace.endSection();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800448 }
449
Sunny Goyal2100c782016-08-22 16:00:03 -0700450 // We only load the page synchronously if the user rotates (or triggers a
451 // configuration change) while launcher is in the foreground
452 if (!mModel.startLoader(mWorkspace.getRestorePage())) {
453 // If we are not binding synchronously, show a fade in animation when
454 // the first page bind completes.
455 mDragLayer.setAlpha(0);
456 } else {
457 setWorkspaceLoading(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800458 }
459
460 // For handling default keys
461 mDefaultKeySsb = new SpannableStringBuilder();
462 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800463
464 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
Sunny Goyalda4fe1a2016-05-26 16:05:17 -0700465 filter.addAction(ACTION_APPWIDGET_HOST_RESET);
466 registerReceiver(mUiBroadcastReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800467
Sunny Goyal8f3819b2016-02-23 14:49:22 -0800468 mRotationEnabled = getResources().getBoolean(R.bool.allow_rotation);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700469 // In case we are on a device with locked rotation, we should look at preferences to check
470 // if the user has specifically allowed rotation.
471 if (!mRotationEnabled) {
Sunny Goyal21bf5312015-08-21 11:08:24 -0700472 mRotationEnabled = Utilities.isAllowRotationPrefEnabled(getApplicationContext());
Sunny Goyal745bad92016-05-02 10:54:12 -0700473 mRotationPrefChangeHandler = new RotationPrefChangeHandler();
474 mSharedPrefs.registerOnSharedPreferenceChangeListener(mRotationPrefChangeHandler);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700475 }
476
477 // On large interfaces, or on devices that a user has specifically enabled screen rotation,
478 // we want the screen to auto-rotate based on the current orientation
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400479 setOrientation();
Winson Chungaf40f202013-09-18 18:26:31 -0700480
Adam Cohen9211d422014-10-07 18:14:53 -0700481 if (mLauncherCallbacks != null) {
482 mLauncherCallbacks.onCreate(savedInstanceState);
483 }
484 }
485
Sunny Goyal7779d622015-06-11 16:18:39 -0700486 @Override
Tony Wickham827cef22016-03-17 15:39:39 -0700487 public void onExtractedColorsChanged() {
488 loadExtractedColorsAndColorItems();
489 }
490
491 private void loadExtractedColorsAndColorItems() {
Tony Wickham462b5cc2016-04-01 16:00:49 -0700492 // TODO: do this in pre-N as well, once the extraction part is complete.
493 if (mExtractedColors != null && Utilities.isNycOrAbove()) {
Tony Wickham827cef22016-03-17 15:39:39 -0700494 mExtractedColors.load(this);
Tony Wickham462b5cc2016-04-01 16:00:49 -0700495 mHotseat.updateColor(mExtractedColors, !mPaused);
Sunny Goyald0a6ae72016-06-16 12:29:03 -0700496 mWorkspace.getPageIndicator().updateColor(mExtractedColors);
Tony Wickham827cef22016-03-17 15:39:39 -0700497 }
498 }
499
Adam Cohen9211d422014-10-07 18:14:53 -0700500 private LauncherCallbacks mLauncherCallbacks;
501
502 public void onPostCreate(Bundle savedInstanceState) {
503 super.onPostCreate(savedInstanceState);
504 if (mLauncherCallbacks != null) {
505 mLauncherCallbacks.onPostCreate(savedInstanceState);
506 }
507 }
508
Winson1f064272016-07-18 17:18:02 -0700509 public void onInsetsChanged(Rect insets) {
510 mDeviceProfile.updateInsets(insets);
511 mDeviceProfile.layout(this, true /* notifyListeners */);
512 }
513
Sunny Goyal32554d12015-12-03 15:31:25 -0800514 /**
515 * Call this after onCreate to set or clear overlay.
516 */
517 public void setLauncherOverlay(LauncherOverlay overlay) {
518 if (overlay != null) {
519 overlay.setOverlayCallbacks(new LauncherOverlayCallbacksImpl());
520 }
521 mWorkspace.setLauncherOverlay(overlay);
522 }
523
Adam Cohen9211d422014-10-07 18:14:53 -0700524 public boolean setLauncherCallbacks(LauncherCallbacks callbacks) {
525 mLauncherCallbacks = callbacks;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700526 mLauncherCallbacks.setLauncherSearchCallback(new Launcher.LauncherSearchCallbacks() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700527 private boolean mWorkspaceImportanceStored = false;
528 private boolean mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700529 private int mWorkspaceImportanceForAccessibility =
Hyunyoung Song8fd5e932016-03-08 16:55:47 -0800530 View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700531 private int mHotseatImportanceForAccessibility = View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
532
533 @Override
534 public void onSearchOverlayOpened() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700535 if (mWorkspaceImportanceStored || mHotseatImportanceStored) {
Jun Mukai8af0cd82015-05-12 12:32:12 -0700536 return;
537 }
538 // The underlying workspace and hotseat are temporarily suppressed by the search
Sunny Goyal08442b82015-10-21 17:15:08 -0700539 // overlay. So they shouldn't be accessible.
Jun Mukaie9819e62015-06-17 10:58:59 -0700540 if (mWorkspace != null) {
541 mWorkspaceImportanceForAccessibility =
542 mWorkspace.getImportantForAccessibility();
543 mWorkspace.setImportantForAccessibility(
544 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
545 mWorkspaceImportanceStored = true;
546 }
547 if (mHotseat != null) {
548 mHotseatImportanceForAccessibility = mHotseat.getImportantForAccessibility();
549 mHotseat.setImportantForAccessibility(
550 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
551 mHotseatImportanceStored = true;
552 }
Jun Mukai8af0cd82015-05-12 12:32:12 -0700553 }
554
555 @Override
556 public void onSearchOverlayClosed() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700557 if (mWorkspaceImportanceStored && mWorkspace != null) {
558 mWorkspace.setImportantForAccessibility(mWorkspaceImportanceForAccessibility);
559 }
560 if (mHotseatImportanceStored && mHotseat != null) {
561 mHotseat.setImportantForAccessibility(mHotseatImportanceForAccessibility);
562 }
563 mWorkspaceImportanceStored = false;
564 mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700565 }
566 });
Adam Cohen9211d422014-10-07 18:14:53 -0700567 return true;
Adam Cohenf9426d52012-06-04 17:26:21 -0700568 }
569
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700570 @Override
Adam Cohen9211d422014-10-07 18:14:53 -0700571 public void onLauncherProviderChange() {
572 if (mLauncherCallbacks != null) {
573 mLauncherCallbacks.onLauncherProviderChange();
574 }
575 }
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700576
Adam Cohen9211d422014-10-07 18:14:53 -0700577 /** To be overridden by subclasses to hint to Launcher that we have custom content */
Winson Chung98ca0f72013-07-29 12:58:51 -0700578 protected boolean hasCustomContentToLeft() {
Adam Cohen9211d422014-10-07 18:14:53 -0700579 if (mLauncherCallbacks != null) {
580 return mLauncherCallbacks.hasCustomContentToLeft();
581 }
Winson Chung98ca0f72013-07-29 12:58:51 -0700582 return false;
583 }
584
Dave Hawkeya8881582013-09-17 15:55:33 -0600585 /**
Derek Prothrodadd9842014-01-17 13:43:50 -0500586 * To be overridden by subclasses to populate the custom content container and call
Dave Hawkeya8881582013-09-17 15:55:33 -0600587 * {@link #addToCustomContentPage}. This will only be invoked if
588 * {@link #hasCustomContentToLeft()} is {@code true}.
589 */
Derek Prothrodadd9842014-01-17 13:43:50 -0500590 protected void populateCustomContentContainer() {
Adam Cohen9211d422014-10-07 18:14:53 -0700591 if (mLauncherCallbacks != null) {
592 mLauncherCallbacks.populateCustomContentContainer();
593 }
Dave Hawkeya8881582013-09-17 15:55:33 -0600594 }
595
596 /**
597 * Invoked by subclasses to signal a change to the {@link #addCustomContentToLeft} value to
598 * ensure the custom content page is added or removed if necessary.
599 */
600 protected void invalidateHasCustomContentToLeft() {
Dave Hawkey3a733a72013-09-30 11:52:21 -0600601 if (mWorkspace == null || mWorkspace.getScreenOrder().isEmpty()) {
Dave Hawkeya8881582013-09-17 15:55:33 -0600602 // Not bound yet, wait for bindScreens to be called.
603 return;
604 }
605
606 if (!mWorkspace.hasCustomContent() && hasCustomContentToLeft()) {
607 // Create the custom content page and call the subclass to populate it.
Derek Prothrodadd9842014-01-17 13:43:50 -0500608 mWorkspace.createCustomContentContainer();
609 populateCustomContentContainer();
Dave Hawkeya8881582013-09-17 15:55:33 -0600610 } else if (mWorkspace.hasCustomContent() && !hasCustomContentToLeft()) {
611 mWorkspace.removeCustomContentPage();
612 }
613 }
614
Hyunyoung Songaa953652016-04-19 18:30:24 -0700615 public UserEventDispatcher getUserEventDispatcher() {
616 if (mLauncherCallbacks != null) {
617 UserEventDispatcher dispatcher = mLauncherCallbacks.getUserEventDispatcher();
618 if (dispatcher != null) {
619 return dispatcher;
620 }
621 }
622
Sunny Goyal64976d52016-06-20 14:56:28 -0700623 // Logger object is a singleton and does not have to be coupled with the foreground
624 // activity. Since most user event logging is done on the UI, the object is retrieved
625 // from the callback for convenience.
Hyunyoung Songaa953652016-04-19 18:30:24 -0700626 if (mUserEventDispatcher == null) {
Sunny Goyal64976d52016-06-20 14:56:28 -0700627 mUserEventDispatcher = new UserEventDispatcher();
Hyunyoung Songaa953652016-04-19 18:30:24 -0700628 }
629 return mUserEventDispatcher;
Hyunyoung Song8fd5e932016-03-08 16:55:47 -0800630 }
Anton Hanssona2f665f2013-09-26 12:18:32 +0100631
Hyunyoung Song3f471442015-04-08 19:01:34 -0700632 public boolean isDraggingEnabled() {
Winson Chung36a62fe2012-05-06 18:04:42 -0700633 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
634 // that is subsequently removed from the workspace in startBinding().
Sunny Goyal639e9062015-08-19 19:17:06 -0700635 return !isWorkspaceLoading();
Winson Chung36a62fe2012-05-06 18:04:42 -0700636 }
637
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000638 public int getViewIdForItem(ItemInfo info) {
Sunny Goyale2fd14b2015-08-27 17:45:46 -0700639 // aapt-generated IDs have the high byte nonzero; clamp to the range under that.
640 // This cast is safe as long as the id < 0x00FFFFFF
641 // Since we jail all the dynamically generated views, there should be no clashes
642 // with any other views.
643 return (int) info.id;
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000644 }
645
646 /**
Winson Chung557d6ed2011-07-08 15:34:52 -0700647 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
648 * a configuration step, this allows the proper animations to run after other transitions.
649 */
Sunny Goyal2100c782016-08-22 16:00:03 -0700650 private long completeAdd(
651 int requestCode, Intent intent, int appWidgetId, PendingRequestArgs info) {
652 long screenId = info.screenId;
653 if (info.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
Adam Cohen83079e42014-09-19 17:43:08 -0700654 // When the screen id represents an actual screen (as opposed to a rank) we make sure
655 // that the drop page actually exists.
Sunny Goyal2100c782016-08-22 16:00:03 -0700656 screenId = ensurePendingDropLayoutExists(info.screenId);
Adam Cohen83079e42014-09-19 17:43:08 -0700657 }
Adam Cohendb364c32014-05-20 14:23:40 -0700658
Sunny Goyal2100c782016-08-22 16:00:03 -0700659 switch (requestCode) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800660 case REQUEST_CREATE_SHORTCUT:
Sunny Goyalfb5096d2016-09-08 14:32:06 -0700661 completeAddShortcut(intent, info.container, screenId, info.cellX, info.cellY, info);
Winson Chungb8472bb2011-08-05 13:49:21 -0700662 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800663 case REQUEST_CREATE_APPWIDGET:
Sunny Goyal2100c782016-08-22 16:00:03 -0700664 completeAddAppWidget(appWidgetId, info, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700665 break;
Sunny Goyalff572272014-07-23 13:58:07 -0700666 case REQUEST_RECONFIGURE_APPWIDGET:
Sunny Goyal2100c782016-08-22 16:00:03 -0700667 completeRestoreAppWidget(appWidgetId, LauncherAppWidgetInfo.RESTORE_COMPLETED);
Sunny Goyalff572272014-07-23 13:58:07 -0700668 break;
Sunny Goyald478c832016-04-01 12:04:16 -0700669 case REQUEST_BIND_PENDING_APPWIDGET: {
Sunny Goyal2100c782016-08-22 16:00:03 -0700670 int widgetId = appWidgetId;
671 LauncherAppWidgetInfo widgetInfo =
Sunny Goyald478c832016-04-01 12:04:16 -0700672 completeRestoreAppWidget(widgetId, LauncherAppWidgetInfo.FLAG_UI_NOT_READY);
Sunny Goyal2100c782016-08-22 16:00:03 -0700673 if (widgetInfo != null) {
Sunny Goyald478c832016-04-01 12:04:16 -0700674 // Since the view was just bound, also launch the configure activity if needed
675 LauncherAppWidgetProviderInfo provider = mAppWidgetManager
676 .getLauncherAppWidgetInfo(widgetId);
677 if (provider != null && provider.configure != null) {
Sunny Goyal2100c782016-08-22 16:00:03 -0700678 startRestoredWidgetReconfigActivity(provider, widgetInfo);
Sunny Goyald478c832016-04-01 12:04:16 -0700679 }
680 }
681 break;
682 }
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800683 }
Sunny Goyal2100c782016-08-22 16:00:03 -0700684
Adam Cohendb364c32014-05-20 14:23:40 -0700685 return screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800686 }
687
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800688 private void handleActivityResult(
Michael Jurka8b805b12012-04-18 14:23:14 -0700689 final int requestCode, final int resultCode, final Intent data) {
Sunny Goyal2100c782016-08-22 16:00:03 -0700690 if (isWorkspaceLoading()) {
691 // process the result once the workspace has loaded.
692 mPendingActivityResult = new ActivityResultInfo(requestCode, resultCode, data);
693 return;
694 }
695 mPendingActivityResult = null;
696
Winson Chunge341d302013-08-16 14:31:00 -0700697 // Reset the startActivity waiting flag
Sunny Goyal2100c782016-08-22 16:00:03 -0700698 final PendingRequestArgs requestArgs = mPendingRequestArgs;
699 setWaitingForResult(null);
700 if (requestArgs == null) {
701 return;
702 }
703
704 final int pendingAddWidgetId = requestArgs.getWidgetId();
Winson Chunge341d302013-08-16 14:31:00 -0700705
Adam Cohenad4e15c2013-10-17 16:21:35 -0700706 Runnable exitSpringLoaded = new Runnable() {
707 @Override
708 public void run() {
709 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
710 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
711 }
712 };
713
Michael Jurka8b805b12012-04-18 14:23:14 -0700714 if (requestCode == REQUEST_BIND_APPWIDGET) {
Winsona1f79d32015-08-05 14:00:45 -0700715 // This is called only if the user did not previously have permissions to bind widgets
Adam Cohenad4e15c2013-10-17 16:21:35 -0700716 final int appWidgetId = data != null ?
Michael Jurka8b805b12012-04-18 14:23:14 -0700717 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
718 if (resultCode == RESULT_CANCELED) {
Sunny Goyal2100c782016-08-22 16:00:03 -0700719 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId, requestArgs);
Adam Cohen689ff162014-05-08 17:27:56 -0700720 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700721 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
Michael Jurka8b805b12012-04-18 14:23:14 -0700722 } else if (resultCode == RESULT_OK) {
Sunny Goyal2100c782016-08-22 16:00:03 -0700723 addAppWidgetImpl(
724 appWidgetId, requestArgs, null,
725 requestArgs.getWidgetProvider(),
726 ON_ACTIVITY_RESULT_ANIMATION_DELAY);
Michael Jurka8b805b12012-04-18 14:23:14 -0700727 }
728 return;
Michael Jurka336fd4f2013-09-12 00:05:02 +0200729 } else if (requestCode == REQUEST_PICK_WALLPAPER) {
730 if (resultCode == RESULT_OK && mWorkspace.isInOverviewMode()) {
Tony Wickhame3054412015-09-09 09:05:25 -0700731 // User could have free-scrolled between pages before picking a wallpaper; make sure
732 // we move to the closest one now.
733 mWorkspace.setCurrentPage(mWorkspace.getPageNearestToCenterOfScreen());
Winson Chungdc61c4d2015-04-20 18:26:57 -0700734 showWorkspace(false);
Michael Jurka336fd4f2013-09-12 00:05:02 +0200735 }
736 return;
Michael Jurka8b805b12012-04-18 14:23:14 -0700737 }
Michael Jurka336fd4f2013-09-12 00:05:02 +0200738
Adam Cohened66b2b2012-01-23 17:28:51 -0800739 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
Sunny Goyal5c97f512015-05-19 16:03:28 -0700740 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700741
Adam Cohened66b2b2012-01-23 17:28:51 -0800742 // We have special handling for widgets
743 if (isWidgetDrop) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800744 final int appWidgetId;
745 int widgetId = data != null ? data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1)
746 : -1;
747 if (widgetId < 0) {
748 appWidgetId = pendingAddWidgetId;
749 } else {
750 appWidgetId = widgetId;
751 }
752
Adam Cohenad4e15c2013-10-17 16:21:35 -0700753 final int result;
Adam Cohenf0129b12013-11-04 17:57:36 -0800754 if (appWidgetId < 0 || resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700755 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not " +
756 "returned from the widget configuration activity.");
Adam Cohenad4e15c2013-10-17 16:21:35 -0700757 result = RESULT_CANCELED;
Sunny Goyal2100c782016-08-22 16:00:03 -0700758 completeTwoStageWidgetDrop(result, appWidgetId, requestArgs);
Adam Cohendb364c32014-05-20 14:23:40 -0700759 final Runnable onComplete = new Runnable() {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700760 @Override
761 public void run() {
762 exitSpringLoadedDragModeDelayed(false, 0, null);
763 }
764 };
Adam Cohendb364c32014-05-20 14:23:40 -0700765
Sunny Goyal2100c782016-08-22 16:00:03 -0700766 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
767 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
768 } else {
769 if (requestArgs.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
770 // When the screen id represents an actual screen (as opposed to a rank)
771 // we make sure that the drop page actually exists.
772 requestArgs.screenId =
773 ensurePendingDropLayoutExists(requestArgs.screenId);
Adam Cohendb364c32014-05-20 14:23:40 -0700774 }
Sunny Goyal2100c782016-08-22 16:00:03 -0700775 final CellLayout dropLayout =
776 mWorkspace.getScreenWithId(requestArgs.screenId);
777
778 dropLayout.setDropPending(true);
779 final Runnable onComplete = new Runnable() {
780 @Override
781 public void run() {
782 completeTwoStageWidgetDrop(resultCode, appWidgetId, requestArgs);
783 dropLayout.setDropPending(false);
784 }
785 };
786 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
787 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
Winson Chung5aaab772012-04-27 15:24:02 -0700788 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800789 return;
790 }
791
Sunny Goyald478c832016-04-01 12:04:16 -0700792 if (requestCode == REQUEST_RECONFIGURE_APPWIDGET
793 || requestCode == REQUEST_BIND_PENDING_APPWIDGET) {
Sunny Goyalff572272014-07-23 13:58:07 -0700794 if (resultCode == RESULT_OK) {
795 // Update the widget view.
Sunny Goyal2100c782016-08-22 16:00:03 -0700796 completeAdd(requestCode, data, pendingAddWidgetId, requestArgs);
Sunny Goyalff572272014-07-23 13:58:07 -0700797 }
798 // Leave the widget in the pending state if the user canceled the configure.
799 return;
800 }
801
Sunny Goyalaad90582015-07-09 14:22:50 -0700802 if (requestCode == REQUEST_CREATE_SHORTCUT) {
803 // Handle custom shortcuts created using ACTION_CREATE_SHORTCUT.
Sunny Goyal2100c782016-08-22 16:00:03 -0700804 if (resultCode == RESULT_OK && requestArgs.container != ItemInfo.NO_ID) {
805 completeAdd(requestCode, data, -1, requestArgs);
806 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
807 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
808
Sunny Goyalaad90582015-07-09 14:22:50 -0700809 } else if (resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700810 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
811 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800812 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800813 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800814 mDragLayer.clearAnimatedView();
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800815 }
816
817 @Override
818 protected void onActivityResult(
819 final int requestCode, final int resultCode, final Intent data) {
820 handleActivityResult(requestCode, resultCode, data);
821 if (mLauncherCallbacks != null) {
822 mLauncherCallbacks.onActivityResult(requestCode, resultCode, data);
823 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800824 }
825
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600826 /** @Override for MNC */
Sunny Goyaldd2e6df2015-07-07 10:57:57 -0700827 public void onRequestPermissionsResult(int requestCode, String[] permissions,
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600828 int[] grantResults) {
Sunny Goyal2100c782016-08-22 16:00:03 -0700829 PendingRequestArgs pendingArgs = mPendingRequestArgs;
830 if (requestCode == REQUEST_PERMISSION_CALL_PHONE && pendingArgs != null
831 && pendingArgs.getRequestCode() == REQUEST_PERMISSION_CALL_PHONE) {
832 setWaitingForResult(null);
833
Sunny Goyal28c6b962015-10-12 11:42:05 -0700834 View v = null;
Sunny Goyal2100c782016-08-22 16:00:03 -0700835 CellLayout layout = getCellLayout(pendingArgs.container, pendingArgs.screenId);
Sunny Goyal28c6b962015-10-12 11:42:05 -0700836 if (layout != null) {
Sunny Goyal2100c782016-08-22 16:00:03 -0700837 v = layout.getChildAt(pendingArgs.cellX, pendingArgs.cellY);
Sunny Goyal28c6b962015-10-12 11:42:05 -0700838 }
Sunny Goyal2100c782016-08-22 16:00:03 -0700839 Intent intent = pendingArgs.getPendingIntent();
840
Sunny Goyal28c6b962015-10-12 11:42:05 -0700841 if (grantResults.length > 0
842 && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
Sunny Goyal85fc55a2016-05-31 10:44:03 -0700843 startActivitySafely(v, intent, null);
Sunny Goyal28c6b962015-10-12 11:42:05 -0700844 } else {
845 // TODO: Show a snack bar with link to settings
846 Toast.makeText(this, getString(R.string.msg_no_phone_permission,
Sunny Goyal112ce422016-08-22 16:45:29 -0700847 getString(R.string.derived_app_name)), Toast.LENGTH_SHORT).show();
Sunny Goyal28c6b962015-10-12 11:42:05 -0700848 }
849 }
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600850 if (mLauncherCallbacks != null) {
851 mLauncherCallbacks.onRequestPermissionsResult(requestCode, permissions,
852 grantResults);
853 }
854 }
855
Adam Cohendb364c32014-05-20 14:23:40 -0700856 /**
857 * Check to see if a given screen id exists. If not, create it at the end, return the new id.
858 *
859 * @param screenId the screen id to check
860 * @return the new screen, or screenId if it exists
861 */
862 private long ensurePendingDropLayoutExists(long screenId) {
Sunny Goyal32554d12015-12-03 15:31:25 -0800863 CellLayout dropLayout = mWorkspace.getScreenWithId(screenId);
Adam Cohendb364c32014-05-20 14:23:40 -0700864 if (dropLayout == null) {
865 // it's possible that the add screen was removed because it was
866 // empty and a re-bind occurred
867 mWorkspace.addExtraEmptyScreen();
868 return mWorkspace.commitExtraEmptyScreen();
869 } else {
870 return screenId;
871 }
872 }
873
Sunny Goyal2100c782016-08-22 16:00:03 -0700874 @Thunk void completeTwoStageWidgetDrop(
875 final int resultCode, final int appWidgetId, final PendingRequestArgs requestArgs) {
876 CellLayout cellLayout = mWorkspace.getScreenWithId(requestArgs.screenId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800877 Runnable onCompleteRunnable = null;
878 int animationType = 0;
879
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700880 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800881 if (resultCode == RESULT_OK) {
882 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
883 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Sunny Goyal2100c782016-08-22 16:00:03 -0700884 requestArgs.getWidgetProvider());
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700885 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800886 onCompleteRunnable = new Runnable() {
887 @Override
888 public void run() {
Sunny Goyal2100c782016-08-22 16:00:03 -0700889 completeAddAppWidget(appWidgetId, requestArgs, layout, null);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700890 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
891 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
Adam Cohened66b2b2012-01-23 17:28:51 -0800892 }
893 };
894 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800895 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800896 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
Adam Cohened66b2b2012-01-23 17:28:51 -0800897 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700898 if (mDragLayer.getAnimatedView() != null) {
Sunny Goyal2100c782016-08-22 16:00:03 -0700899 mWorkspace.animateWidgetDrop(requestArgs, cellLayout,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700900 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
901 animationType, boundWidget, true);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700902 } else if (onCompleteRunnable != null) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700903 // The animated view may be null in the case of a rotation during widget configuration
904 onCompleteRunnable.run();
905 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800906 }
907
908 @Override
Michael Jurkacd496d72013-04-11 11:32:45 -0700909 protected void onStop() {
910 super.onStop();
911 FirstFrameAnimatorHelper.setIsVisible(false);
Adam Cohen9211d422014-10-07 18:14:53 -0700912
913 if (mLauncherCallbacks != null) {
914 mLauncherCallbacks.onStop();
915 }
Sunny Goyal5da78f42016-06-17 14:00:22 -0700916
917 if (Utilities.isNycMR1OrAbove()) {
918 mAppWidgetHost.stopListening();
919 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700920 }
921
922 @Override
923 protected void onStart() {
924 super.onStart();
925 FirstFrameAnimatorHelper.setIsVisible(true);
Adam Cohen9211d422014-10-07 18:14:53 -0700926
927 if (mLauncherCallbacks != null) {
928 mLauncherCallbacks.onStart();
929 }
Sunny Goyal5da78f42016-06-17 14:00:22 -0700930
931 if (Utilities.isNycMR1OrAbove()) {
932 mAppWidgetHost.startListening();
933 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700934 }
935
936 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800937 protected void onResume() {
Michael Jurka447bf842013-05-15 14:52:15 +0200938 long startTime = 0;
939 if (DEBUG_RESUME_TIME) {
940 startTime = System.currentTimeMillis();
Daniel Sandler924b9932013-06-12 00:38:25 -0400941 Log.v(TAG, "Launcher.onResume()");
Michael Jurka447bf842013-05-15 14:52:15 +0200942 }
Adam Cohen9211d422014-10-07 18:14:53 -0700943
944 if (mLauncherCallbacks != null) {
945 mLauncherCallbacks.preOnResume();
946 }
947
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800948 super.onResume();
Hyunyoung Songaa953652016-04-19 18:30:24 -0700949 getUserEventDispatcher().resetElapsedSessionMillis();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700950
Winson Chung4a2afa32012-07-19 14:53:05 -0700951 // Restore the previous launcher state
Winson Chung75cc8252015-04-10 10:19:58 -0700952 if (mOnResumeState == State.WORKSPACE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700953 showWorkspace(false);
Winson Chungb745afb2015-03-02 11:51:23 -0800954 } else if (mOnResumeState == State.APPS) {
Winson Chung13eb5272015-05-11 16:30:13 -0700955 boolean launchedFromApp = (mWaitingForResume != null);
Winson Chung4ac30062015-05-08 17:34:17 -0700956 // Don't update the predicted apps if the user is returning to launcher in the apps
Winson Chung13eb5272015-05-11 16:30:13 -0700957 // view after launching an app, as they may be depending on the UI to be static to
958 // switch to another app, otherwise, if it was
Hyunyoung Songdd60ce42016-07-27 17:08:38 -0700959 showAppsView(false /* animated */, !launchedFromApp /* updatePredictedApps */,
Hyunyoung Songc2fe1142016-09-09 15:02:20 -0700960 mAppsView.shouldRestoreImeState() /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -0800961 } else if (mOnResumeState == State.WIDGETS) {
962 showWidgetsView(false, false);
Winson Chung4a2afa32012-07-19 14:53:05 -0700963 }
964 mOnResumeState = State.NONE;
965
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800966 mPaused = false;
Sunny Goyal2100c782016-08-22 16:00:03 -0700967 if (mOnResumeNeedsLoad) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700968 setWorkspaceLoading(true);
Sunny Goyal93f878c2016-03-30 17:31:24 -0700969 mModel.startLoader(getCurrentWorkspaceScreen());
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700970 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800971 }
Michael Jurka1e2f4652013-07-08 18:03:46 -0700972 if (mBindOnResumeCallbacks.size() > 0) {
Michael Jurkac402cd92013-05-20 15:49:32 +0200973 // We might have postponed some bind calls until onResume (see waitUntilResume) --
974 // execute them here
975 long startTimeCallbacks = 0;
976 if (DEBUG_RESUME_TIME) {
977 startTimeCallbacks = System.currentTimeMillis();
978 }
979
Michael Jurka1e2f4652013-07-08 18:03:46 -0700980 for (int i = 0; i < mBindOnResumeCallbacks.size(); i++) {
981 mBindOnResumeCallbacks.get(i).run();
Michael Jurkac402cd92013-05-20 15:49:32 +0200982 }
Michael Jurka1e2f4652013-07-08 18:03:46 -0700983 mBindOnResumeCallbacks.clear();
Michael Jurkac402cd92013-05-20 15:49:32 +0200984 if (DEBUG_RESUME_TIME) {
985 Log.d(TAG, "Time spent processing callbacks in onResume: " +
986 (System.currentTimeMillis() - startTimeCallbacks));
987 }
Michael Jurka447bf842013-05-15 14:52:15 +0200988 }
Michael Jurka54554252013-08-01 12:52:23 +0200989 if (mOnResumeCallbacks.size() > 0) {
990 for (int i = 0; i < mOnResumeCallbacks.size(); i++) {
991 mOnResumeCallbacks.get(i).run();
992 }
993 mOnResumeCallbacks.clear();
994 }
Winson Chunge4e50662012-01-23 14:45:13 -0800995
996 // Reset the pressed state of icons that were locked in the press state while activities
997 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -0800998 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -0800999 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -08001000 mWaitingForResume.setStayPressed(false);
1001 }
Winson Chung82963d52013-10-09 11:20:57 -07001002
Adam Cohen06dff352012-06-01 17:17:08 -07001003 // It is possible that widgets can receive updates while launcher is not in the foreground.
1004 // Consequently, the widgets will be inflated in the orientation of the foreground activity
1005 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
1006 // orientation.
Sunny Goyal6bec75f2015-10-01 18:50:48 -07001007 if (!isWorkspaceLoading()) {
1008 getWorkspace().reinflateWidgetsIfNecessary();
1009 }
Adam Cohenf9426d52012-06-04 17:26:21 -07001010
Michael Jurka447bf842013-05-15 14:52:15 +02001011 if (DEBUG_RESUME_TIME) {
1012 Log.d(TAG, "Time spent in onResume: " + (System.currentTimeMillis() - startTime));
1013 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001014
Adam Cohen4b66bf32015-09-18 12:15:19 -07001015 // We want to suppress callbacks about CustomContent being shown if we have just received
1016 // onNewIntent while the user was present within launcher. In that case, we post a call
1017 // to move the user to the main screen (which will occur after onResume). We don't want to
1018 // have onHide (from onPause), then onShow, then onHide again, which we get if we don't
1019 // suppress here.
1020 if (mWorkspace.getCustomContentCallbacks() != null
1021 && !mMoveToDefaultScreenFromNewIntent) {
Adam Cohen6fecd412013-10-02 17:41:50 -07001022 // If we are resuming and the custom content is the current page, we call onShow().
Adam Cohen4b66bf32015-09-18 12:15:19 -07001023 // It is also possible that onShow will instead be called slightly after first layout
Adam Cohen6fecd412013-10-02 17:41:50 -07001024 // if PagedView#setRestorePage was set to the custom content page in onCreate().
1025 if (mWorkspace.isOnOrMovingToCustomContent()) {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001026 mWorkspace.getCustomContentCallbacks().onShow(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001027 }
1028 }
Adam Cohen4b66bf32015-09-18 12:15:19 -07001029 mMoveToDefaultScreenFromNewIntent = false;
Winson Chungcd99cd32015-04-29 11:03:24 -07001030 updateInteraction(Workspace.State.NORMAL, mWorkspace.getState());
Adam Cohen53805212013-10-01 10:39:23 -07001031 mWorkspace.onResume();
Sunny Goyale755d462014-07-22 13:48:29 -07001032
Sunny Goyal756adbc2015-04-16 15:20:51 -07001033 if (!isWorkspaceLoading()) {
1034 // Process any items that were added while Launcher was away.
1035 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
Sunny Goyal95f3d6b2016-08-10 16:09:29 -07001036
1037 // Refresh shortcuts if the permission changed.
1038 mModel.refreshShortcutsIfRequired();
Sunny Goyal756adbc2015-04-16 15:20:51 -07001039 }
Adam Cohen9211d422014-10-07 18:14:53 -07001040
Hyunyoung Songc001cf52016-07-21 17:32:43 -07001041 if (shouldShowDiscoveryBounce()) {
1042 mAllAppsController.showDiscoveryBounce();
1043 }
1044 mIsResumeFromActionScreenOff = false;
Adam Cohen9211d422014-10-07 18:14:53 -07001045 if (mLauncherCallbacks != null) {
1046 mLauncherCallbacks.onResume();
1047 }
Adam Cohen06dff352012-06-01 17:17:08 -07001048 }
1049
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001050 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001051 protected void onPause() {
Winson Chung997a9232013-07-24 15:33:46 -07001052 // Ensure that items added to Launcher are queued until Launcher returns
1053 InstallShortcutReceiver.enableInstallQueue();
1054
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001055 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001056 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -08001057 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -07001058 mDragController.resetLastGestureUpTime();
Adam Cohen6fecd412013-10-02 17:41:50 -07001059
1060 // We call onHide() aggressively. The custom content callbacks should be able to
1061 // debounce excess onHide calls.
1062 if (mWorkspace.getCustomContentCallbacks() != null) {
1063 mWorkspace.getCustomContentCallbacks().onHide();
1064 }
Romain Guycbb89e42009-06-08 15:52:54 -07001065
Adam Cohen9211d422014-10-07 18:14:53 -07001066 if (mLauncherCallbacks != null) {
1067 mLauncherCallbacks.onPause();
Adam Cohenbffe7452013-07-22 18:21:45 -07001068 }
Adam Cohenbffe7452013-07-22 18:21:45 -07001069 }
1070
1071 public interface CustomContentCallbacks {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001072 // Custom content is completely shown. {@code fromResume} indicates whether this was caused
1073 // by a onResume or by scrolling otherwise.
1074 public void onShow(boolean fromResume);
Adam Cohenbffe7452013-07-22 18:21:45 -07001075
1076 // Custom content is completely hidden
1077 public void onHide();
Adam Cohenc36fa5c2013-08-29 11:54:42 -07001078
1079 // Custom content scroll progress changed. From 0 (not showing) to 1 (fully showing).
1080 public void onScrollProgressChanged(float progress);
Jan-Willem Maarse2ff91c42014-07-10 15:58:12 -07001081
1082 // Indicates whether the user is allowed to scroll away from the custom content.
1083 boolean isScrollingAllowed();
Adam Cohenbffe7452013-07-22 18:21:45 -07001084 }
1085
Adam Cohenc2d6e892014-10-16 09:49:24 -07001086 public interface LauncherOverlay {
1087
1088 /**
1089 * Touch interaction leading to overscroll has begun
1090 */
1091 public void onScrollInteractionBegin();
1092
1093 /**
1094 * Touch interaction related to overscroll has ended
1095 */
1096 public void onScrollInteractionEnd();
1097
1098 /**
1099 * Scroll progress, between 0 and 100, when the user scrolls beyond the leftmost
1100 * screen (or in the case of RTL, the rightmost screen).
1101 */
Sunny Goyalc86df472016-02-25 09:19:38 -08001102 public void onScrollChange(float progress, boolean rtl);
Adam Cohenc2d6e892014-10-16 09:49:24 -07001103
1104 /**
Sunny Goyal32554d12015-12-03 15:31:25 -08001105 * Called when the launcher is ready to use the overlay
1106 * @param callbacks A set of callbacks provided by Launcher in relation to the overlay
Adam Cohenc2d6e892014-10-16 09:49:24 -07001107 */
Sunny Goyal32554d12015-12-03 15:31:25 -08001108 public void setOverlayCallbacks(LauncherOverlayCallbacks callbacks);
Adam Cohenc2d6e892014-10-16 09:49:24 -07001109 }
1110
Jun Mukai8af0cd82015-05-12 12:32:12 -07001111 public interface LauncherSearchCallbacks {
1112 /**
1113 * Called when the search overlay is shown.
1114 */
1115 public void onSearchOverlayOpened();
1116
1117 /**
1118 * Called when the search overlay is dismissed.
1119 */
1120 public void onSearchOverlayClosed();
1121 }
1122
Adam Cohenc2d6e892014-10-16 09:49:24 -07001123 public interface LauncherOverlayCallbacks {
Sunny Goyalc86df472016-02-25 09:19:38 -08001124 public void onScrollChanged(float progress);
Adam Cohenc2d6e892014-10-16 09:49:24 -07001125 }
1126
1127 class LauncherOverlayCallbacksImpl implements LauncherOverlayCallbacks {
1128
Sunny Goyalc86df472016-02-25 09:19:38 -08001129 public void onScrollChanged(float progress) {
1130 if (mWorkspace != null) {
1131 mWorkspace.onOverlayScrollChanged(progress);
1132 }
1133 }
Adam Cohenc2d6e892014-10-16 09:49:24 -07001134 }
1135
Jorim Jaggid017f882014-01-14 17:08:48 -08001136 protected boolean hasSettings() {
Adam Cohen9211d422014-10-07 18:14:53 -07001137 if (mLauncherCallbacks != null) {
1138 return mLauncherCallbacks.hasSettings();
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07001139 } else {
1140 // On devices with a locked orientation, we will at least have the allow rotation
1141 // setting.
Sunny Goyal8f3819b2016-02-23 14:49:22 -08001142 return !getResources().getBoolean(R.bool.allow_rotation);
Adam Cohen9211d422014-10-07 18:14:53 -07001143 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001144 }
1145
Adam Cohen9211d422014-10-07 18:14:53 -07001146 public void addToCustomContentPage(View customContent,
Adam Cohen53805212013-10-01 10:39:23 -07001147 CustomContentCallbacks callbacks, String description) {
1148 mWorkspace.addToCustomContentPage(customContent, callbacks, description);
Adam Cohen66a01fd2013-06-11 12:48:00 -07001149 }
1150
Adam Cohenedb40762013-07-18 16:45:45 -07001151 // The custom content needs to offset its content to account for the QSB
1152 public int getTopOffsetForCustomContent() {
1153 return mWorkspace.getPaddingTop();
1154 }
1155
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001156 @Override
1157 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001158 // Flag the loader to stop early before switching
Adam Cohen1a85c582014-09-30 09:48:49 -07001159 if (mModel.isCurrentCallbacks(this)) {
1160 mModel.stopLoader();
1161 }
Hyunyoung Song3f471442015-04-08 19:01:34 -07001162 //TODO(hyunyoungs): stop the widgets loader when there is a rotation.
1163
Romain Guy13c2e7b2010-03-10 19:45:00 -08001164 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001165 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001166
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001167 // We can't hide the IME if it was forced open. So don't bother
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001168 @Override
1169 public void onWindowFocusChanged(boolean hasFocus) {
1170 super.onWindowFocusChanged(hasFocus);
Adam Cohened307df2013-10-02 09:37:31 -07001171 mHasFocus = hasFocus;
Adam Cohen9211d422014-10-07 18:14:53 -07001172
1173 if (mLauncherCallbacks != null) {
1174 mLauncherCallbacks.onWindowFocusChanged(hasFocus);
1175 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001176 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001177
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001178 private boolean acceptFilter() {
1179 final InputMethodManager inputManager = (InputMethodManager)
1180 getSystemService(Context.INPUT_METHOD_SERVICE);
1181 return !inputManager.isFullscreenMode();
1182 }
1183
1184 @Override
1185 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -07001186 final int uniChar = event.getUnicodeChar();
1187 final boolean handled = super.onKeyDown(keyCode, event);
1188 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
1189 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001190 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
1191 keyCode, event);
1192 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001193 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -07001194 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -07001195 // showSearchDialog()
1196 // If there are multiple keystrokes before the search dialog takes focus,
1197 // onSearchRequested() will be called for every keystroke,
1198 // but it is idempotent, so it's fine.
1199 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001200 }
1201 }
1202
Joe Onorato8a9625e2010-01-28 15:55:35 -08001203 // Eat the long press event so the keyboard doesn't come up.
1204 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
1205 return true;
1206 }
1207
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001208 return handled;
1209 }
1210
Winson46163472015-09-22 17:31:56 -07001211 @Override
1212 public boolean onKeyUp(int keyCode, KeyEvent event) {
1213 if (keyCode == KeyEvent.KEYCODE_MENU) {
1214 // Ignore the menu key if we are currently dragging or are on the custom content screen
1215 if (!isOnCustomContent() && !mDragController.isDragging()) {
1216 // Close any open folders
1217 closeFolder();
1218
Tony Wickham49c8d292016-07-01 11:44:34 -07001219 // Close any shortcuts containers
1220 closeShortcutsContainer();
1221
Winson46163472015-09-22 17:31:56 -07001222 // Stop resizing any widgets
1223 mWorkspace.exitWidgetResizeMode();
1224
1225 // Show the overview mode if we are on the workspace
1226 if (mState == State.WORKSPACE && !mWorkspace.isInOverviewMode() &&
1227 !mWorkspace.isSwitchingState()) {
1228 mOverviewPanel.requestFocus();
Winsone9f27272015-10-13 10:47:51 -07001229 showOverviewMode(true, true /* requestButtonFocus */);
Winson46163472015-09-22 17:31:56 -07001230 }
1231 }
1232 return true;
1233 }
1234 return super.onKeyUp(keyCode, event);
1235 }
1236
Karl Rosaen138a0412009-04-23 19:00:21 -07001237 private String getTypedText() {
1238 return mDefaultKeySsb.toString();
1239 }
1240
Sunny Goyal6f28e712016-09-13 14:19:29 -07001241 @Override
1242 public void clearTypedText() {
Karl Rosaen138a0412009-04-23 19:00:21 -07001243 mDefaultKeySsb.clear();
1244 mDefaultKeySsb.clearSpans();
1245 Selection.setSelection(mDefaultKeySsb, 0);
1246 }
1247
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001248 /**
Michael Jurka883f55b2010-10-21 15:47:14 -07001249 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
1250 * State
1251 */
1252 private static State intToState(int stateOrdinal) {
1253 State state = State.WORKSPACE;
1254 final State[] stateValues = State.values();
1255 for (int i = 0; i < stateValues.length; i++) {
1256 if (stateValues[i].ordinal() == stateOrdinal) {
1257 state = stateValues[i];
1258 break;
1259 }
1260 }
1261 return state;
1262 }
1263
1264 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001265 * Restores the previous state, if it exists.
1266 *
1267 * @param savedState The previous state.
1268 */
1269 private void restoreState(Bundle savedState) {
1270 if (savedState == null) {
1271 return;
1272 }
1273
Michael Jurka883f55b2010-10-21 15:47:14 -07001274 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungb745afb2015-03-02 11:51:23 -08001275 if (state == State.APPS || state == State.WIDGETS) {
1276 mOnResumeState = state;
Joe Onorato3a8820b2009-11-10 15:06:42 -08001277 }
1278
Adam Cohen21cd0022013-10-09 18:57:02 -07001279 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN,
1280 PagedView.INVALID_RESTORE_PAGE);
1281 if (currentScreen != PagedView.INVALID_RESTORE_PAGE) {
Winson Chung8c87cd82013-07-23 16:20:10 -07001282 mWorkspace.setRestorePage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001283 }
1284
Sunny Goyal2100c782016-08-22 16:00:03 -07001285 PendingRequestArgs requestArgs = savedState.getParcelable(RUNTIME_STATE_PENDING_REQUEST_ARGS);
1286 if (requestArgs != null) {
1287 setWaitingForResult(requestArgs);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001288 }
Sunny Goyal2100c782016-08-22 16:00:03 -07001289
1290 mPendingActivityResult = savedState.getParcelable(RUNTIME_STATE_PENDING_ACTIVITY_RESULT);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001291 }
1292
1293 /**
1294 * Finds all the views we need and configure them properly.
1295 */
1296 private void setupViews() {
Craig Mautner360310b2012-10-26 15:13:08 -07001297 mLauncherView = findViewById(R.id.launcher);
Winson Chung4c98d922011-05-31 16:50:48 -07001298 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
Sunny Goyal3333b0c2016-05-09 20:43:21 -07001299 mFocusHandler = mDragLayer.getFocusIndicatorHelper();
Winson Chung4c98d922011-05-31 16:50:48 -07001300 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Sunny Goyal6178f132016-07-11 17:30:03 -07001301 mQsbContainer = mDragLayer.findViewById(mDeviceProfile.isVerticalBarLayout()
1302 ? R.id.workspace_blocked_row : R.id.qsb_container);
Sunny Goyald0a6ae72016-06-16 12:29:03 -07001303 mWorkspace.initParentViews(mDragLayer);
Craig Mautner360310b2012-10-26 15:13:08 -07001304
Sunny Goyal784f9c32016-03-23 16:56:54 -07001305 mLauncherView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
1306 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
1307 | View.SYSTEM_UI_FLAG_LAYOUT_STABLE);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001308
Winson Chung4c98d922011-05-31 16:50:48 -07001309 // Setup the drag layer
Hyunyoung Song645764e2016-06-06 14:19:02 -07001310 mDragLayer.setup(this, mDragController, mAllAppsController);
Winson Chung4c98d922011-05-31 16:50:48 -07001311
Winson Chung3d503fb2011-07-13 17:25:49 -07001312 // Setup the hotseat
1313 mHotseat = (Hotseat) findViewById(R.id.hotseat);
1314 if (mHotseat != null) {
Winson Chung11a1a532013-09-13 11:14:45 -07001315 mHotseat.setOnLongClickListener(this);
Winson Chung3d503fb2011-07-13 17:25:49 -07001316 }
1317
Winsone9f27272015-10-13 10:47:51 -07001318 // Setup the overview panel
1319 setupOverviewPanel();
Adam Cohenf358a4b2013-07-23 16:47:31 -07001320
Winson Chung4c98d922011-05-31 16:50:48 -07001321 // Setup the workspace
1322 mWorkspace.setHapticFeedbackEnabled(false);
1323 mWorkspace.setOnLongClickListener(this);
Hyunyoung Song645764e2016-06-06 14:19:02 -07001324 mWorkspace.setup(mDragController);
Winsonc7d2e832016-07-28 12:24:55 -07001325 // Until the workspace is bound, ensure that we keep the wallpaper offset locked to the
1326 // default state, otherwise we will update to the wrong offsets in RTL
1327 mWorkspace.lockWallpaperToDefaultPage();
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07001328 mWorkspace.bindAndInitFirstWorkspaceScreen(null /* recycled qsb */);
Hyunyoung Song645764e2016-06-06 14:19:02 -07001329 mDragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001330
Tony Wickham34d2c912015-09-11 09:27:58 -07001331 // Get the search/delete/uninstall bar
Sunny Goyal47328fd2016-05-25 18:56:41 -07001332 mDropTargetBar = (DropTargetBar) mDragLayer.findViewById(R.id.drop_target_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001333
Winson Chungef7f8742015-06-04 17:18:17 -07001334 // Setup Apps and Widgets
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001335 mAppsView = (AllAppsContainerView) findViewById(R.id.apps_view);
Hyunyoung Song3f471442015-04-08 19:01:34 -07001336 mWidgetsView = (WidgetsContainerView) findViewById(R.id.widgets_view);
Sunny Goyalf51084c2016-02-18 00:40:49 +00001337 if (mLauncherCallbacks != null && mLauncherCallbacks.getAllAppsSearchBarController() != null) {
1338 mAppsView.setSearchBarController(mLauncherCallbacks.getAllAppsSearchBarController());
1339 } else {
1340 mAppsView.setSearchBarController(new DefaultAppSearchController());
1341 }
Craig Mautner360310b2012-10-26 15:13:08 -07001342
Winson Chung3d503fb2011-07-13 17:25:49 -07001343 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Hyunyoung Song645764e2016-06-06 14:19:02 -07001344 mDragController.setDragScoller(mWorkspace);
1345 mDragController.setScrollView(mDragLayer);
1346 mDragController.setMoveTarget(mWorkspace);
1347 mDragController.addDropTarget(mWorkspace);
Sunny Goyal47328fd2016-05-25 18:56:41 -07001348 mDropTargetBar.setup(mDragController);
Daniel Sandler924b9932013-06-12 00:38:25 -04001349
Peter Schiller310a9882016-06-30 13:52:36 -07001350 if (FeatureFlags.LAUNCHER3_ALL_APPS_PULL_UP) {
1351 mAllAppsController.setupViews(mAppsView, mHotseat, mWorkspace);
1352 }
Hyunyoung Songa0c56472016-06-20 13:54:42 -07001353
Sunny Goyal322d5562015-06-25 19:35:49 -07001354 if (TestingUtils.MEMORY_DUMP_ENABLED) {
1355 TestingUtils.addWeightWatcher(this);
Daniel Sandler924b9932013-06-12 00:38:25 -04001356 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001357 }
1358
Winsone9f27272015-10-13 10:47:51 -07001359 private void setupOverviewPanel() {
1360 mOverviewPanel = (ViewGroup) findViewById(R.id.overview_panel);
1361
1362 // Long-clicking buttons in the overview panel does the same thing as clicking them.
1363 OnLongClickListener performClickOnLongClick = new OnLongClickListener() {
1364 @Override
1365 public boolean onLongClick(View v) {
1366 return v.performClick();
1367 }
1368 };
1369
1370 // Bind wallpaper button actions
1371 View wallpaperButton = findViewById(R.id.wallpaper_button);
1372 wallpaperButton.setOnClickListener(new OnClickListener() {
1373 @Override
1374 public void onClick(View view) {
1375 if (!mWorkspace.isSwitchingState()) {
1376 onClickWallpaperPicker(view);
1377 }
1378 }
1379 });
1380 wallpaperButton.setOnLongClickListener(performClickOnLongClick);
1381 wallpaperButton.setOnTouchListener(getHapticFeedbackTouchListener());
1382
1383 // Bind widget button actions
1384 mWidgetsButton = findViewById(R.id.widget_button);
1385 mWidgetsButton.setOnClickListener(new OnClickListener() {
1386 @Override
1387 public void onClick(View view) {
1388 if (!mWorkspace.isSwitchingState()) {
1389 onClickAddWidgetButton(view);
1390 }
1391 }
1392 });
1393 mWidgetsButton.setOnLongClickListener(performClickOnLongClick);
1394 mWidgetsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1395
1396 // Bind settings actions
1397 View settingsButton = findViewById(R.id.settings_button);
1398 boolean hasSettings = hasSettings();
1399 if (hasSettings) {
1400 settingsButton.setOnClickListener(new OnClickListener() {
1401 @Override
1402 public void onClick(View view) {
1403 if (!mWorkspace.isSwitchingState()) {
1404 onClickSettingsButton(view);
1405 }
1406 }
1407 });
1408 settingsButton.setOnLongClickListener(performClickOnLongClick);
1409 settingsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1410 } else {
1411 settingsButton.setVisibility(View.GONE);
1412 }
1413
1414 mOverviewPanel.setAlpha(0f);
1415 }
1416
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001417 /**
Anjali Koppal5ad44842014-03-10 20:34:39 -07001418 * Sets the all apps button. This method is called from {@link Hotseat}.
Sunny Goyalbb011da2016-06-15 15:42:29 -07001419 * TODO: Get rid of this.
Anjali Koppal5ad44842014-03-10 20:34:39 -07001420 */
1421 public void setAllAppsButton(View allAppsButton) {
1422 mAllAppsButton = allAppsButton;
1423 }
1424
Sunny Goyalbb011da2016-06-15 15:42:29 -07001425 public View getStartViewForAllAppsRevealAnimation() {
Sunny Goyal2e084092016-06-22 14:37:34 -07001426 return FeatureFlags.NO_ALL_APPS_ICON ? mWorkspace.getPageIndicator() : mAllAppsButton;
Anjali Koppal5ad44842014-03-10 20:34:39 -07001427 }
1428
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001429 public View getWidgetsButton() {
1430 return mWidgetsButton;
1431 }
1432
Anjali Koppal5ad44842014-03-10 20:34:39 -07001433 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001434 * Creates a view representing a shortcut.
1435 *
1436 * @param info The data structure describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001437 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001438 View createShortcut(ShortcutInfo info) {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001439 return createShortcut((ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001440 }
1441
1442 /**
1443 * Creates a view representing a shortcut inflated from the specified resource.
1444 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001445 * @param parent The group the shortcut belongs to.
1446 * @param info The data structure describing the shortcut.
1447 *
1448 * @return A View inflated from layoutResId.
1449 */
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001450 public View createShortcut(ViewGroup parent, ShortcutInfo info) {
Sunny Goyal756cd262015-08-20 12:33:21 -07001451 BubbleTextView favorite = (BubbleTextView) getLayoutInflater().inflate(R.layout.app_icon,
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001452 parent, false);
1453 favorite.applyFromShortcutInfo(info, mIconCache);
1454 favorite.setCompoundDrawablePadding(mDeviceProfile.iconDrawablePaddingPx);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001455 favorite.setOnClickListener(this);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001456 favorite.setOnFocusChangeListener(mFocusHandler);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001457 return favorite;
1458 }
1459
1460 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001461 * Add a shortcut to the workspace.
1462 *
1463 * @param data The intent describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001464 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001465 private void completeAddShortcut(Intent data, long container, long screenId, int cellX,
Sunny Goyalfb5096d2016-09-08 14:32:06 -07001466 int cellY, PendingRequestArgs args) {
Winson Chung3d503fb2011-07-13 17:25:49 -07001467 int[] cellXY = mTmpAddItemCellCoordinates;
Adam Cohendcd297f2013-06-18 13:13:40 -07001468 CellLayout layout = getCellLayout(container, screenId);
Romain Guycbb89e42009-06-08 15:52:54 -07001469
Sunny Goyal5c97f512015-05-19 16:03:28 -07001470 ShortcutInfo info = InstallShortcutReceiver.fromShortcutIntent(this, data);
Sunny Goyalfb5096d2016-09-08 14:32:06 -07001471 if (info == null || args.getRequestCode() != REQUEST_CREATE_SHORTCUT ||
1472 args.getPendingIntent().getComponent() == null) {
1473 return;
1474 }
1475 if (!PackageManagerHelper.hasPermissionForActivity(
1476 this, info.intent, args.getPendingIntent().getComponent().getPackageName())) {
1477 // The app is trying to add a shortcut without sufficient permissions
1478 Log.e(TAG, "Ignoring malicious intent " + info.intent.toUri(0));
Adam Cohend9198822011-11-22 16:42:47 -08001479 return;
1480 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001481 final View view = createShortcut(info);
1482
Sunny Goyal5c97f512015-05-19 16:03:28 -07001483 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001484 // First we check if we already know the exact location where we want to add this item.
1485 if (cellX >= 0 && cellY >= 0) {
1486 cellXY[0] = cellX;
1487 cellXY[1] = cellY;
1488 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001489
1490 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001491 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001492 true, null,null)) {
1493 return;
1494 }
1495 DragObject dragObject = new DragObject();
1496 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001497 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1498 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001499 return;
1500 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08001501 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001502 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001503 }
1504
1505 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001506 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001507 return;
1508 }
1509
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001510 LauncherModel.addItemToDatabase(this, info, container, screenId, cellXY[0], cellXY[1]);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001511
Sunny Goyal2100c782016-08-22 16:00:03 -07001512 mWorkspace.addInScreen(view, container, screenId, cellXY[0], cellXY[1], 1, 1,
1513 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001514 }
1515
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001516 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001517 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001518 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001519 * @param appWidgetId The app widget id
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001520 */
Sunny Goyal2100c782016-08-22 16:00:03 -07001521 @Thunk void completeAddAppWidget(int appWidgetId, ItemInfo itemInfo,
Adam Cohen59400422014-03-05 18:07:04 -08001522 AppWidgetHostView hostView, LauncherAppWidgetProviderInfo appWidgetInfo) {
1523
Adam Cohened66b2b2012-01-23 17:28:51 -08001524 if (appWidgetInfo == null) {
Sunny Goyal2e1efb42016-03-03 16:58:55 -08001525 appWidgetInfo = mAppWidgetManager.getLauncherAppWidgetInfo(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -08001526 }
Romain Guycbb89e42009-06-08 15:52:54 -07001527
Adam Cohen59400422014-03-05 18:07:04 -08001528 if (appWidgetInfo.isCustomWidget) {
1529 appWidgetId = LauncherAppWidgetInfo.CUSTOM_WIDGET_ID;
Michael Jurkaa63c4522010-08-19 13:52:27 -07001530 }
1531
Adam Cohen59400422014-03-05 18:07:04 -08001532 LauncherAppWidgetInfo launcherInfo;
1533 launcherInfo = new LauncherAppWidgetInfo(appWidgetId, appWidgetInfo.provider);
Sunny Goyal2100c782016-08-22 16:00:03 -07001534 launcherInfo.spanX = itemInfo.spanX;
1535 launcherInfo.spanY = itemInfo.spanY;
1536 launcherInfo.minSpanX = itemInfo.minSpanX;
1537 launcherInfo.minSpanY = itemInfo.minSpanY;
Sunny Goyalffe83f12014-08-14 17:39:34 -07001538 launcherInfo.user = mAppWidgetManager.getUser(appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001539
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001540 LauncherModel.addItemToDatabase(this, launcherInfo,
Sunny Goyal2100c782016-08-22 16:00:03 -07001541 itemInfo.container, itemInfo.screenId, itemInfo.cellX, itemInfo.cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001542
Sunny Goyal2100c782016-08-22 16:00:03 -07001543 if (hostView == null) {
1544 // Perform actual inflation because we're live
1545 hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001546 }
Sunny Goyal2100c782016-08-22 16:00:03 -07001547 hostView.setVisibility(View.VISIBLE);
1548 addAppWidgetToWorkspace(hostView, launcherInfo, appWidgetInfo, isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001549 }
Romain Guycbb89e42009-06-08 15:52:54 -07001550
Sunny Goyal87af0fd2016-05-16 14:56:02 -07001551 private void addAppWidgetToWorkspace(
1552 AppWidgetHostView hostView, LauncherAppWidgetInfo item,
Sunny Goyal25c2e3e2015-10-28 23:28:21 -07001553 LauncherAppWidgetProviderInfo appWidgetInfo, boolean insert) {
Sunny Goyal87af0fd2016-05-16 14:56:02 -07001554 hostView.setTag(item);
1555 item.onBindAppWidget(this, hostView);
Sunny Goyal25c2e3e2015-10-28 23:28:21 -07001556
Sunny Goyal87af0fd2016-05-16 14:56:02 -07001557 hostView.setFocusable(true);
1558 hostView.setOnFocusChangeListener(mFocusHandler);
Sunny Goyal25c2e3e2015-10-28 23:28:21 -07001559
Sunny Goyal87af0fd2016-05-16 14:56:02 -07001560 mWorkspace.addInScreen(hostView, item.container, item.screenId,
Sunny Goyal25c2e3e2015-10-28 23:28:21 -07001561 item.cellX, item.cellY, item.spanX, item.spanY, insert);
1562
1563 if (!item.isCustomWidget()) {
Sunny Goyal87af0fd2016-05-16 14:56:02 -07001564 addWidgetToAutoAdvanceIfNeeded(hostView, appWidgetInfo);
Sunny Goyal25c2e3e2015-10-28 23:28:21 -07001565 }
1566 }
1567
Adam Cohended9f8d2010-11-03 13:25:16 -07001568 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1569 @Override
1570 public void onReceive(Context context, Intent intent) {
1571 final String action = intent.getAction();
1572 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1573 mUserPresent = false;
Sunny Goyal6ad72f02016-09-23 11:01:10 -07001574 mDragLayer.clearResizeFrame();
Winson Chungb745afb2015-03-02 11:51:23 -08001575 updateAutoAdvanceState();
Winson Chung337cd9d2011-03-30 10:39:30 -07001576
Winson Chungc100e8e2011-08-09 16:02:43 -07001577 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001578 // processing a multi-step drop
Sunny Goyal2100c782016-08-22 16:00:03 -07001579 if (mAppsView != null && mWidgetsView != null && mPendingRequestArgs == null) {
Winson5c6bdbb2015-09-03 11:36:19 -07001580 if (!showWorkspace(false)) {
1581 // If we are already on the workspace, then manually reset all apps
1582 mAppsView.reset();
1583 }
Winson Chung785d2eb2011-04-14 16:08:02 -07001584 }
Hyunyoung Songc001cf52016-07-21 17:32:43 -07001585 mIsResumeFromActionScreenOff = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001586 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1587 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08001588 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001589 }
1590 }
1591 };
1592
1593 @Override
1594 public void onAttachedToWindow() {
1595 super.onAttachedToWindow();
1596
1597 // Listen for broadcasts related to user-presence
1598 final IntentFilter filter = new IntentFilter();
1599 filter.addAction(Intent.ACTION_SCREEN_OFF);
1600 filter.addAction(Intent.ACTION_USER_PRESENT);
1601 registerReceiver(mReceiver, filter);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001602 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Adam Cohend113e0c2010-11-11 10:48:05 -08001603 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001604 mVisible = true;
Sunny Goyalc86df472016-02-25 09:19:38 -08001605
1606 if (mLauncherCallbacks != null) {
1607 mLauncherCallbacks.onAttachedToWindow();
1608 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001609 }
1610
1611 @Override
1612 public void onDetachedFromWindow() {
1613 super.onDetachedFromWindow();
1614 mVisible = false;
1615
Adam Cohend113e0c2010-11-11 10:48:05 -08001616 if (mAttached) {
1617 unregisterReceiver(mReceiver);
1618 mAttached = false;
1619 }
Winson Chungb745afb2015-03-02 11:51:23 -08001620 updateAutoAdvanceState();
Sunny Goyalc86df472016-02-25 09:19:38 -08001621
1622 if (mLauncherCallbacks != null) {
1623 mLauncherCallbacks.onDetachedFromWindow();
1624 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001625 }
1626
1627 public void onWindowVisibilityChanged(int visibility) {
1628 mVisible = visibility == View.VISIBLE;
Winson Chungb745afb2015-03-02 11:51:23 -08001629 updateAutoAdvanceState();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001630 // The following code used to be in onResume, but it turns out onResume is called when
1631 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1632 // is a more appropriate event to handle
1633 if (mVisible) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001634 if (!mWorkspaceLoading) {
1635 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001636 // We want to let Launcher draw itself at least once before we force it to build
1637 // layers on all the workspace pages, so that transitioning to Launcher from other
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001638 // apps is nice and speedy.
1639 observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001640 private boolean mStarted = false;
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001641 public void onDraw() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001642 if (mStarted) return;
1643 mStarted = true;
Michael Jurka6ee21d22012-02-21 18:20:27 -08001644 // We delay the layer building a bit in order to give
1645 // other message processing a time to run. In particular
1646 // this avoids a delay in hiding the IME if it was
1647 // currently shown, because doing that may involve
1648 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001649 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurkadf96add2013-04-03 16:25:02 -07001650 final ViewTreeObserver.OnDrawListener listener = this;
1651 mWorkspace.post(new Runnable() {
Tony Wickhama0628cc2015-10-14 15:23:04 -07001652 public void run() {
1653 if (mWorkspace != null &&
1654 mWorkspace.getViewTreeObserver() != null) {
1655 mWorkspace.getViewTreeObserver().
1656 removeOnDrawListener(listener);
Michael Jurkadf96add2013-04-03 16:25:02 -07001657 }
Tony Wickhama0628cc2015-10-14 15:23:04 -07001658 }
1659 });
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001660 return;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001661 }
1662 });
1663 }
1664 clearTypedText();
1665 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001666 }
1667
Adam Cohen091440a2015-03-18 14:16:05 -07001668 @Thunk void sendAdvanceMessage(long delay) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001669 mHandler.removeMessages(ADVANCE_MSG);
1670 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1671 mHandler.sendMessageDelayed(msg, delay);
1672 mAutoAdvanceSentTime = System.currentTimeMillis();
1673 }
1674
Adam Cohen091440a2015-03-18 14:16:05 -07001675 @Thunk void updateAutoAdvanceState() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001676 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1677 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1678 mAutoAdvanceRunning = autoAdvanceRunning;
1679 if (autoAdvanceRunning) {
Sunny Goyal756cd262015-08-20 12:33:21 -07001680 long delay = mAutoAdvanceTimeLeft == -1 ? ADVANCE_INTERVAL : mAutoAdvanceTimeLeft;
Adam Cohended9f8d2010-11-03 13:25:16 -07001681 sendAdvanceMessage(delay);
1682 } else {
1683 if (!mWidgetsToAdvance.isEmpty()) {
Sunny Goyal756cd262015-08-20 12:33:21 -07001684 mAutoAdvanceTimeLeft = Math.max(0, ADVANCE_INTERVAL -
Adam Cohended9f8d2010-11-03 13:25:16 -07001685 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1686 }
1687 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001688 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001689 }
1690 }
1691 }
1692
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001693 @Thunk final Handler mHandler = new Handler(new Handler.Callback() {
1694
Adam Cohended9f8d2010-11-03 13:25:16 -07001695 @Override
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001696 public boolean handleMessage(Message msg) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001697 if (msg.what == ADVANCE_MSG) {
1698 int i = 0;
1699 for (View key: mWidgetsToAdvance.keySet()) {
1700 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
Sunny Goyal756cd262015-08-20 12:33:21 -07001701 final int delay = ADVANCE_STAGGER * i;
Adam Cohended9f8d2010-11-03 13:25:16 -07001702 if (v instanceof Advanceable) {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001703 mHandler.postDelayed(new Runnable() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001704 public void run() {
1705 ((Advanceable) v).advance();
1706 }
1707 }, delay);
1708 }
1709 i++;
1710 }
Sunny Goyal756cd262015-08-20 12:33:21 -07001711 sendAdvanceMessage(ADVANCE_INTERVAL);
Adam Cohended9f8d2010-11-03 13:25:16 -07001712 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001713 return true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001714 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001715 });
Adam Cohended9f8d2010-11-03 13:25:16 -07001716
Winsonc0b52fe2015-09-09 16:38:15 -07001717 private void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001718 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001719 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1720 if (v instanceof Advanceable) {
1721 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001722 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Winson Chungb745afb2015-03-02 11:51:23 -08001723 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001724 }
1725 }
1726
Winsonc0b52fe2015-09-09 16:38:15 -07001727 private void removeWidgetToAutoAdvance(View hostView) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001728 if (mWidgetsToAdvance.containsKey(hostView)) {
1729 mWidgetsToAdvance.remove(hostView);
Winson Chungb745afb2015-03-02 11:51:23 -08001730 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001731 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001732 }
1733
Hyunyoung Song3f471442015-04-08 19:01:34 -07001734 public void showOutOfSpaceMessage(boolean isHotseatLayout) {
Winson Chung93eef082012-03-23 15:59:27 -07001735 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1736 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001737 }
1738
Winson Chunga6945242014-01-08 14:04:34 -08001739 public DragLayer getDragLayer() {
1740 return mDragLayer;
1741 }
1742
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001743 public AllAppsContainerView getAppsView() {
Winson Chungb745afb2015-03-02 11:51:23 -08001744 return mAppsView;
1745 }
1746
Hyunyoung Song3f471442015-04-08 19:01:34 -07001747 public WidgetsContainerView getWidgetsView() {
1748 return mWidgetsView;
Winson Chungb745afb2015-03-02 11:51:23 -08001749 }
1750
Winson Chunga6945242014-01-08 14:04:34 -08001751 public Workspace getWorkspace() {
1752 return mWorkspace;
1753 }
1754
Sunny Goyal6178f132016-07-11 17:30:03 -07001755 public View getQsbContainer() {
1756 return mQsbContainer;
1757 }
1758
Winson Chunga6945242014-01-08 14:04:34 -08001759 public Hotseat getHotseat() {
1760 return mHotseat;
1761 }
1762
Jorim Jaggid017f882014-01-14 17:08:48 -08001763 public ViewGroup getOverviewPanel() {
Winson Chunga6945242014-01-08 14:04:34 -08001764 return mOverviewPanel;
1765 }
1766
Sunny Goyal47328fd2016-05-25 18:56:41 -07001767 public DropTargetBar getDropTargetBar() {
1768 return mDropTargetBar;
Tony Wickham34d2c912015-09-11 09:27:58 -07001769 }
1770
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001771 public LauncherAppWidgetHost getAppWidgetHost() {
1772 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001773 }
Romain Guycbb89e42009-06-08 15:52:54 -07001774
Winson Chunga9abd0e2010-10-27 17:18:37 -07001775 public LauncherModel getModel() {
1776 return mModel;
1777 }
1778
Adam Cohen79d90c52016-04-22 13:29:20 -07001779 public SharedPreferences getSharedPrefs() {
Winson Chunga6945242014-01-08 14:04:34 -08001780 return mSharedPrefs;
1781 }
1782
Adam Cohen2e6da152015-05-06 11:42:25 -07001783 public DeviceProfile getDeviceProfile() {
1784 return mDeviceProfile;
1785 }
1786
Bjorn Bringertc459e522013-06-07 19:36:01 +01001787 public void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001788 getWindow().closeAllPanels();
1789
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001790 // Whatever we were doing is hereby canceled.
Sunny Goyal2100c782016-08-22 16:00:03 -07001791 setWaitingForResult(null);
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001792 }
1793
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001794 @Override
1795 protected void onNewIntent(Intent intent) {
Michael Jurka447bf842013-05-15 14:52:15 +02001796 long startTime = 0;
1797 if (DEBUG_RESUME_TIME) {
1798 startTime = System.currentTimeMillis();
1799 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001800 super.onNewIntent(intent);
1801
1802 // Close the menu
Winson15f8b172015-08-19 11:02:39 -07001803 Folder openFolder = mWorkspace.getOpenFolder();
1804 boolean alreadyOnHome = mHasFocus && ((intent.getFlags() &
1805 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1806 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
1807 boolean isActionMain = Intent.ACTION_MAIN.equals(intent.getAction());
1808 if (isActionMain) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001809 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001810 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001811
Adam Cohen6fecd412013-10-02 17:41:50 -07001812 if (mWorkspace == null) {
1813 // Can be cases where mWorkspace is null, this prevents a NPE
1814 return;
1815 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001816 // In all these cases, only animate if we're already on home
1817 mWorkspace.exitWidgetResizeMode();
Adam Cohen9211d422014-10-07 18:14:53 -07001818
Sunny Goyal935fca12015-10-13 10:19:01 -07001819 closeFolder(alreadyOnHome);
Sunny Goyala2454ad2016-07-22 10:50:11 -07001820 closeShortcutsContainer(alreadyOnHome);
Adam Cohen6fecd412013-10-02 17:41:50 -07001821 exitSpringLoadedDragMode();
1822
1823 // If we are already on home, then just animate back to the workspace,
1824 // otherwise, just wait until onResume to set the state back to Workspace
1825 if (alreadyOnHome) {
Adam Cohened307df2013-10-02 09:37:31 -07001826 showWorkspace(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001827 } else {
1828 mOnResumeState = State.WORKSPACE;
1829 }
1830
1831 final View v = getWindow().peekDecorView();
1832 if (v != null && v.getWindowToken() != null) {
Tonyc17390962015-10-25 17:39:37 -07001833 InputMethodManager imm = (InputMethodManager) getSystemService(
Adam Cohen6fecd412013-10-02 17:41:50 -07001834 INPUT_METHOD_SERVICE);
1835 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1836 }
1837
Winson Chungb745afb2015-03-02 11:51:23 -08001838 // Reset the apps view
1839 if (!alreadyOnHome && mAppsView != null) {
1840 mAppsView.scrollToTop();
1841 }
1842
Hyunyoung Song3f471442015-04-08 19:01:34 -07001843 // Reset the widgets view
1844 if (!alreadyOnHome && mWidgetsView != null) {
1845 mWidgetsView.scrollToTop();
Adam Cohen6fecd412013-10-02 17:41:50 -07001846 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001847
Adam Cohen9211d422014-10-07 18:14:53 -07001848 if (mLauncherCallbacks != null) {
1849 mLauncherCallbacks.onHomeIntent();
1850 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001851 }
Adam Cohened307df2013-10-02 09:37:31 -07001852
Adam Cohen9211d422014-10-07 18:14:53 -07001853 if (mLauncherCallbacks != null) {
1854 mLauncherCallbacks.onNewIntent(intent);
1855 }
Winson15f8b172015-08-19 11:02:39 -07001856
1857 // Defer moving to the default screen until after we callback to the LauncherCallbacks
1858 // as slow logic in the callbacks eat into the time the scroller expects for the snapToPage
1859 // animation.
1860 if (isActionMain) {
Ivan Lee667d6882015-09-03 10:16:07 -06001861 boolean moveToDefaultScreen = mLauncherCallbacks != null ?
1862 mLauncherCallbacks.shouldMoveToDefaultScreenOnHomeIntent() : true;
Winson15f8b172015-08-19 11:02:39 -07001863 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
1864 openFolder == null && moveToDefaultScreen) {
Adam Cohen4b66bf32015-09-18 12:15:19 -07001865
1866 // We use this flag to suppress noisy callbacks above custom content state
1867 // from onResume.
1868 mMoveToDefaultScreenFromNewIntent = true;
Winson15f8b172015-08-19 11:02:39 -07001869 mWorkspace.post(new Runnable() {
1870 @Override
1871 public void run() {
Tonyc17390962015-10-25 17:39:37 -07001872 if (mWorkspace != null) {
1873 mWorkspace.moveToDefaultScreen(true);
1874 }
Winson15f8b172015-08-19 11:02:39 -07001875 }
1876 });
1877 }
1878 }
1879
1880 if (DEBUG_RESUME_TIME) {
1881 Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime));
1882 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001883 }
1884
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001885 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001886 public void onRestoreInstanceState(Bundle state) {
1887 super.onRestoreInstanceState(state);
1888 for (int page: mSynchronouslyBoundPages) {
1889 mWorkspace.restoreInstanceStateForChild(page);
1890 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001891 }
1892
1893 @Override
1894 protected void onSaveInstanceState(Bundle outState) {
Adam Cohen21cd0022013-10-09 18:57:02 -07001895 if (mWorkspace.getChildCount() > 0) {
Winson Chung9b9fb962013-11-15 15:39:34 -08001896 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN,
1897 mWorkspace.getCurrentPageOffsetFromCustomContent());
Hyunyoung Song645764e2016-06-06 14:19:02 -07001898
Adam Cohen21cd0022013-10-09 18:57:02 -07001899 }
Adam Cohen95bb8002011-07-03 23:40:28 -07001900 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001901
Michael Jurka883f55b2010-10-21 15:47:14 -07001902 outState.putInt(RUNTIME_STATE, mState.ordinal());
Sunny Goyal44d0b532016-03-14 14:08:12 -07001903 // We close any open folder since it will not be re-opened, and we need to make sure
1904 // this state is reflected.
1905 // TODO: Move folderInfo.isOpened out of the model and make it a UI state.
1906 closeFolder(false);
Sunny Goyala2454ad2016-07-22 10:50:11 -07001907 closeShortcutsContainer(false);
Tony Wickham49c8d292016-07-01 11:44:34 -07001908
Sunny Goyal2100c782016-08-22 16:00:03 -07001909 if (mPendingRequestArgs != null) {
1910 outState.putParcelable(RUNTIME_STATE_PENDING_REQUEST_ARGS, mPendingRequestArgs);
1911 }
1912 if (mPendingActivityResult != null) {
1913 outState.putParcelable(RUNTIME_STATE_PENDING_ACTIVITY_RESULT, mPendingActivityResult);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001914 }
1915
Adam Cohen9211d422014-10-07 18:14:53 -07001916 if (mLauncherCallbacks != null) {
1917 mLauncherCallbacks.onSaveInstanceState(outState);
1918 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001919 }
1920
1921 @Override
1922 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001923 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001924
Winson Chunge7a03942011-08-05 15:05:12 -07001925 // Remove all pending runnables
1926 mHandler.removeMessages(ADVANCE_MSG);
1927 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07001928 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Sunny Goyalaaf7d1d2016-05-17 13:38:54 -07001929 mWorkspace.removeFolderListeners();
Winson Chunge7a03942011-08-05 15:05:12 -07001930
Winson Chungcd2b0142011-06-08 16:02:26 -07001931 // Stop callbacks from LauncherModel
Adam Cohen1a85c582014-09-30 09:48:49 -07001932 // It's possible to receive onDestroy after a new Launcher activity has
1933 // been created. In this case, don't interfere with the new Launcher.
1934 if (mModel.isCurrentCallbacks(this)) {
1935 mModel.stopLoader();
Sunny Goyald365ed62016-02-12 09:44:03 -08001936 LauncherAppState.getInstance().setLauncher(null);
Adam Cohen1a85c582014-09-30 09:48:49 -07001937 }
Winson Chungcd2b0142011-06-08 16:02:26 -07001938
Sunny Goyal745bad92016-05-02 10:54:12 -07001939 if (mRotationPrefChangeHandler != null) {
1940 mSharedPrefs.unregisterOnSharedPreferenceChangeListener(mRotationPrefChangeHandler);
1941 }
1942
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001943 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001944 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001945 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001946 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001947 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001948 mAppWidgetHost = null;
1949
1950 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001951
1952 TextKeyListener.getInstance().release();
1953
Tony Wickhame2217252016-03-22 16:34:23 -07001954 ((AccessibilityManager) getSystemService(ACCESSIBILITY_SERVICE))
1955 .removeAccessibilityStateChangeListener(this);
1956
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07001957 unregisterReceiver(mUiBroadcastReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001958
Michael Jurka2ecf9952012-06-18 12:52:28 -07001959 LauncherAnimUtils.onDestroyActivity();
Adam Cohen9211d422014-10-07 18:14:53 -07001960
1961 if (mLauncherCallbacks != null) {
1962 mLauncherCallbacks.onDestroy();
1963 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001964 }
1965
Sunny Goyalae502842016-06-17 08:43:56 -07001966 public LauncherAccessibilityDelegate getAccessibilityDelegate() {
1967 return mAccessibilityDelegate;
1968 }
1969
Adam Cohena9cf38f2011-05-02 15:36:58 -07001970 public DragController getDragController() {
1971 return mDragController;
1972 }
1973
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001974 @Override
Sunny Goyal0eca4e22016-07-20 11:43:06 -07001975 public void startActivityForResult(Intent intent, int requestCode, Bundle options) {
Sunny Goyal0eca4e22016-07-20 11:43:06 -07001976 super.startActivityForResult(intent, requestCode, options);
Adam Cohen173f7112015-03-27 15:14:00 -07001977 }
1978
1979 @Override
1980 public void startIntentSenderForResult (IntentSender intent, int requestCode,
1981 Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) {
Adam Cohen173f7112015-03-27 15:14:00 -07001982 try {
1983 super.startIntentSenderForResult(intent, requestCode,
1984 fillInIntent, flagsMask, flagsValues, extraFlags, options);
1985 } catch (IntentSender.SendIntentException e) {
1986 throw new ActivityNotFoundException();
1987 }
1988 }
1989
Winson Chung70d72102011-08-12 11:24:35 -07001990 /**
1991 * Indicates that we want global search for this activity by setting the globalSearch
1992 * argument for {@link #startSearch} to true.
1993 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001994 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07001995 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001996 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001997
Karl Rosaen138a0412009-04-23 19:00:21 -07001998 if (initialQuery == null) {
1999 // Use any text typed in the launcher as the initial query
2000 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07002001 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002002 if (appSearchData == null) {
2003 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01002004 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002005 }
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07002006
Sunny Goyal6f28e712016-09-13 14:19:29 -07002007 if (mLauncherCallbacks == null ||
2008 !mLauncherCallbacks.startSearch(initialQuery, selectInitialQuery, appSearchData)) {
2009 // Starting search from the callbacks failed. Start the default global search.
2010 startGlobalSearch(initialQuery, selectInitialQuery, appSearchData, null);
Ian Parkinson047036e2014-09-01 15:40:53 +01002011 }
Winson Chungcd99cd32015-04-29 11:03:24 -07002012
2013 // We need to show the workspace after starting the search
2014 showWorkspace(true);
Bjorn Bringertc459e522013-06-07 19:36:01 +01002015 }
2016
Ian Parkinson047036e2014-09-01 15:40:53 +01002017 /**
Michael Jurkaa33411c2012-06-14 16:18:21 -07002018 * Starts the global search activity. This code is a copied from SearchManager
2019 */
Sunny Goyal6f28e712016-09-13 14:19:29 -07002020 public void startGlobalSearch(String initialQuery,
Michael Jurkaa33411c2012-06-14 16:18:21 -07002021 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002022 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07002023 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2024 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
2025 if (globalSearchActivity == null) {
2026 Log.w(TAG, "No global search activity found.");
2027 return;
2028 }
2029 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
2030 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2031 intent.setComponent(globalSearchActivity);
2032 // Make sure that we have a Bundle to put source in
2033 if (appSearchData == null) {
2034 appSearchData = new Bundle();
2035 } else {
2036 appSearchData = new Bundle(appSearchData);
2037 }
Adam Cohen9211d422014-10-07 18:14:53 -07002038 // Set source to package name of app that starts global search if not set already.
Michael Jurkaa33411c2012-06-14 16:18:21 -07002039 if (!appSearchData.containsKey("source")) {
2040 appSearchData.putString("source", getPackageName());
2041 }
2042 intent.putExtra(SearchManager.APP_DATA, appSearchData);
2043 if (!TextUtils.isEmpty(initialQuery)) {
2044 intent.putExtra(SearchManager.QUERY, initialQuery);
2045 }
2046 if (selectInitialQuery) {
2047 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
2048 }
2049 intent.setSourceBounds(sourceBounds);
2050 try {
2051 startActivity(intent);
2052 } catch (ActivityNotFoundException ex) {
2053 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
2054 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002055 }
2056
Yura4f93ec62014-02-04 14:15:21 +00002057 public boolean isOnCustomContent() {
2058 return mWorkspace.isOnOrMovingToCustomContent();
2059 }
2060
Winson Chung70d72102011-08-12 11:24:35 -07002061 @Override
Winson Chung70d72102011-08-12 11:24:35 -07002062 public boolean onPrepareOptionsMenu(Menu menu) {
2063 super.onPrepareOptionsMenu(menu);
Adam Cohen9211d422014-10-07 18:14:53 -07002064 if (mLauncherCallbacks != null) {
2065 return mLauncherCallbacks.onPrepareOptionsMenu(menu);
2066 }
Michael Jurkab94f3f82013-09-11 18:08:54 +02002067 return false;
Winson Chung70d72102011-08-12 11:24:35 -07002068 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002069
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002070 @Override
2071 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07002072 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07002073 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07002074 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002075 }
2076
Joe Onorato9c1289c2009-08-17 11:03:03 -04002077 public boolean isWorkspaceLocked() {
Sunny Goyal2100c782016-08-22 16:00:03 -07002078 return mWorkspaceLoading || mPendingRequestArgs != null;
Joe Onorato9c1289c2009-08-17 11:03:03 -04002079 }
2080
Adam Cohen517a7f52014-03-01 12:12:59 -08002081 public boolean isWorkspaceLoading() {
2082 return mWorkspaceLoading;
2083 }
2084
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002085 private void setWorkspaceLoading(boolean value) {
2086 boolean isLocked = isWorkspaceLocked();
2087 mWorkspaceLoading = value;
2088 if (isLocked != isWorkspaceLocked()) {
2089 onWorkspaceLockedChanged();
2090 }
2091 }
2092
Sunny Goyal2100c782016-08-22 16:00:03 -07002093 private void setWaitingForResult(PendingRequestArgs args) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002094 boolean isLocked = isWorkspaceLocked();
Sunny Goyal2100c782016-08-22 16:00:03 -07002095 mPendingRequestArgs = args;
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002096 if (isLocked != isWorkspaceLocked()) {
2097 onWorkspaceLockedChanged();
2098 }
2099 }
2100
Adam Cohen9211d422014-10-07 18:14:53 -07002101 protected void onWorkspaceLockedChanged() {
2102 if (mLauncherCallbacks != null) {
2103 mLauncherCallbacks.onWorkspaceLockedChanged();
2104 }
2105 }
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002106
Sunny Goyal2100c782016-08-22 16:00:03 -07002107 void addAppWidgetFromDropImpl(int appWidgetId, ItemInfo info, AppWidgetHostView boundWidget,
2108 LauncherAppWidgetProviderInfo appWidgetInfo) {
Tony Wickhama0628cc2015-10-14 15:23:04 -07002109 if (LOGD) {
2110 Log.d(TAG, "Adding widget from drop");
2111 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07002112 addAppWidgetImpl(appWidgetId, info, boundWidget, appWidgetInfo, 0);
2113 }
2114
Sunny Goyal2100c782016-08-22 16:00:03 -07002115 void addAppWidgetImpl(int appWidgetId, ItemInfo info,
2116 AppWidgetHostView boundWidget, LauncherAppWidgetProviderInfo appWidgetInfo,
Adam Cohen59400422014-03-05 18:07:04 -08002117 int delay) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002118 if (appWidgetInfo.configure != null) {
Sunny Goyal2100c782016-08-22 16:00:03 -07002119 setWaitingForResult(PendingRequestArgs.forWidgetInfo(appWidgetId, appWidgetInfo, info));
Michael Jurkaaf442092010-06-10 17:01:57 -07002120
Bjorn Bringert7984c942009-12-09 15:38:25 +00002121 // Launch over to configure widget, if needed
Sunny Goyalffe83f12014-08-14 17:39:34 -07002122 mAppWidgetManager.startConfigActivity(appWidgetInfo, appWidgetId, this,
2123 mAppWidgetHost, REQUEST_CREATE_APPWIDGET);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002124 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00002125 // Otherwise just add it
Adam Cohenad4e15c2013-10-17 16:21:35 -07002126 Runnable onComplete = new Runnable() {
2127 @Override
2128 public void run() {
2129 // Exit spring loaded mode if necessary after adding the widget
2130 exitSpringLoadedDragModeDelayed(true, EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT,
2131 null);
2132 }
2133 };
Sunny Goyal2100c782016-08-22 16:00:03 -07002134 completeAddAppWidget(appWidgetId, info, boundWidget, appWidgetInfo);
Adam Cohen689ff162014-05-08 17:27:56 -07002135 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, delay, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002136 }
2137 }
Romain Guycbb89e42009-06-08 15:52:54 -07002138
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002139 protected void moveToCustomContentScreen(boolean animate) {
Sandeep Siddharthaf2b47f12013-09-26 19:49:27 -07002140 // Close any folders that may be open.
2141 closeFolder();
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002142 mWorkspace.moveToCustomContentScreen(animate);
2143 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002144
2145 public void addPendingItem(PendingAddItemInfo info, long container, long screenId,
2146 int[] cell, int spanX, int spanY) {
Sunny Goyal2100c782016-08-22 16:00:03 -07002147 info.container = container;
2148 info.screenId = screenId;
2149 if (cell != null) {
2150 info.cellX = cell[0];
2151 info.cellY = cell[1];
2152 }
2153 info.spanX = spanX;
2154 info.spanY = spanY;
2155
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002156 switch (info.itemType) {
2157 case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET:
2158 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
Sunny Goyal2100c782016-08-22 16:00:03 -07002159 addAppWidgetFromDrop((PendingAddWidgetInfo) info);
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002160 break;
2161 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Sunny Goyal2100c782016-08-22 16:00:03 -07002162 processShortcutFromDrop(info);
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002163 break;
2164 default:
2165 throw new IllegalStateException("Unknown item type: " + info.itemType);
2166 }
2167 }
2168
Adam Cohenfbba09b2011-07-18 21:43:05 -07002169 /**
2170 * Process a shortcut drop.
Adam Cohenfbba09b2011-07-18 21:43:05 -07002171 */
Sunny Goyal2100c782016-08-22 16:00:03 -07002172 private void processShortcutFromDrop(PendingAddItemInfo info) {
Sunny Goyalfb5096d2016-09-08 14:32:06 -07002173 Intent intent = new Intent(Intent.ACTION_CREATE_SHORTCUT).setComponent(info.componentName);
2174 setWaitingForResult(PendingRequestArgs.forIntent(REQUEST_CREATE_SHORTCUT, intent, info));
2175 Utilities.startActivityForResultSafely(this, intent, REQUEST_CREATE_SHORTCUT);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002176 }
2177
Adam Cohenfbba09b2011-07-18 21:43:05 -07002178 /**
2179 * Process a widget drop.
Adam Cohenfbba09b2011-07-18 21:43:05 -07002180 */
Sunny Goyal2100c782016-08-22 16:00:03 -07002181 private void addAppWidgetFromDrop(PendingAddWidgetInfo info) {
Adam Cohened66b2b2012-01-23 17:28:51 -08002182 AppWidgetHostView hostView = info.boundWidget;
2183 int appWidgetId;
2184 if (hostView != null) {
Tony Wickhama0628cc2015-10-14 15:23:04 -07002185 // In the case where we've prebound the widget, we remove it from the DragLayer
2186 if (LOGD) {
2187 Log.d(TAG, "Removing widget view from drag layer and setting boundWidget to null");
2188 }
2189 getDragLayer().removeView(hostView);
2190
Adam Cohened66b2b2012-01-23 17:28:51 -08002191 appWidgetId = hostView.getAppWidgetId();
Tony Wickhama0628cc2015-10-14 15:23:04 -07002192 addAppWidgetFromDropImpl(appWidgetId, info, hostView, info.info);
Sunny Goyal5b9ebca2015-06-01 18:37:32 -07002193
2194 // Clear the boundWidget so that it doesn't get destroyed.
2195 info.boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -08002196 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002197 // In this case, we either need to start an activity to get permission to bind
2198 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08002199 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07002200 Bundle options = info.bindOptions;
2201
Sunny Goyalffe83f12014-08-14 17:39:34 -07002202 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
2203 appWidgetId, info.info, options);
Adam Cohendd70d662012-10-04 16:53:44 -07002204 if (success) {
Tony Wickhama0628cc2015-10-14 15:23:04 -07002205 addAppWidgetFromDropImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07002206 } else {
Sunny Goyal2100c782016-08-22 16:00:03 -07002207 setWaitingForResult(PendingRequestArgs.forWidgetInfo(appWidgetId, info.info, info));
Michael Jurka8b805b12012-04-18 14:23:14 -07002208 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
2209 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
2210 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Sunny Goyal2100c782016-08-22 16:00:03 -07002211 mAppWidgetManager.getUser(info.info)
Sunny Goyalffe83f12014-08-14 17:39:34 -07002212 .addToIntent(intent, AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE);
Adam Cohendd70d662012-10-04 16:53:44 -07002213 // TODO: we need to make sure that this accounts for the options bundle.
2214 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07002215 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
2216 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002217 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002218 }
2219
Adam Cohendcd297f2013-06-18 13:13:40 -07002220 FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07002221 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07002222 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002223 folderInfo.title = getText(R.string.folder_name);
2224
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002225 // Update the model
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07002226 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId,
2227 cellX, cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002228
2229 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07002230 FolderIcon newFolder =
2231 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07002232 mWorkspace.addInScreen(newFolder, container, screenId, cellX, cellY, 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07002233 isWorkspaceLocked());
Winson Chung5f8afe62013-08-12 16:19:28 -07002234 // Force measure the new folder icon
2235 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
2236 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07002237 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002238 }
Romain Guycbb89e42009-06-08 15:52:54 -07002239
Winsonc0b52fe2015-09-09 16:38:15 -07002240 /**
Winsonfa56b3f2015-09-14 12:01:13 -07002241 * Unbinds the view for the specified item, and removes the item and all its children.
2242 *
2243 * @param v the view being removed.
Winsonfa56b3f2015-09-14 12:01:13 -07002244 * @param itemInfo the {@link ItemInfo} for this view.
2245 * @param deleteFromDb whether or not to delete this item from the db.
Winsonc0b52fe2015-09-09 16:38:15 -07002246 */
Tony Wickhambfbf7f92016-05-19 11:19:39 -07002247 public boolean removeItem(View v, final ItemInfo itemInfo, boolean deleteFromDb) {
Winsonc0b52fe2015-09-09 16:38:15 -07002248 if (itemInfo instanceof ShortcutInfo) {
Winsonfa56b3f2015-09-14 12:01:13 -07002249 // Remove the shortcut from the folder before removing it from launcher
Sunny Goyal44c06432016-04-02 10:56:02 -07002250 View folderIcon = mWorkspace.getHomescreenIconByItemId(itemInfo.container);
2251 if (folderIcon instanceof FolderIcon) {
Sunny Goyalc52ba712016-04-05 15:59:05 -07002252 ((FolderInfo) folderIcon.getTag()).remove((ShortcutInfo) itemInfo, true);
Winsonfa56b3f2015-09-14 12:01:13 -07002253 } else {
2254 mWorkspace.removeWorkspaceItem(v);
2255 }
Winsonc0b52fe2015-09-09 16:38:15 -07002256 if (deleteFromDb) {
2257 LauncherModel.deleteItemFromDatabase(this, itemInfo);
2258 }
2259 } else if (itemInfo instanceof FolderInfo) {
2260 final FolderInfo folderInfo = (FolderInfo) itemInfo;
Sunny Goyalaaf7d1d2016-05-17 13:38:54 -07002261 if (v instanceof FolderIcon) {
2262 ((FolderIcon) v).removeListeners();
2263 }
Winsonc0b52fe2015-09-09 16:38:15 -07002264 mWorkspace.removeWorkspaceItem(v);
2265 if (deleteFromDb) {
2266 LauncherModel.deleteFolderAndContentsFromDatabase(this, folderInfo);
2267 }
2268 } else if (itemInfo instanceof LauncherAppWidgetInfo) {
2269 final LauncherAppWidgetInfo widgetInfo = (LauncherAppWidgetInfo) itemInfo;
Winson44818e02015-10-02 11:25:46 -07002270 mWorkspace.removeWorkspaceItem(v);
Sunny Goyal87af0fd2016-05-16 14:56:02 -07002271 removeWidgetToAutoAdvance(v);
Winsonc0b52fe2015-09-09 16:38:15 -07002272 if (deleteFromDb) {
Sunny Goyal56c73602015-09-25 12:55:01 -07002273 deleteWidgetInfo(widgetInfo);
Winsonc0b52fe2015-09-09 16:38:15 -07002274 }
2275 } else {
2276 return false;
2277 }
2278 return true;
2279 }
2280
2281 /**
Sunny Goyal56c73602015-09-25 12:55:01 -07002282 * Deletes the widget info and the widget id.
Winsonc0b52fe2015-09-09 16:38:15 -07002283 */
Sunny Goyal56c73602015-09-25 12:55:01 -07002284 private void deleteWidgetInfo(final LauncherAppWidgetInfo widgetInfo) {
Winsonc0b52fe2015-09-09 16:38:15 -07002285 final LauncherAppWidgetHost appWidgetHost = getAppWidgetHost();
Sunny Goyald478c832016-04-01 12:04:16 -07002286 if (appWidgetHost != null && !widgetInfo.isCustomWidget() && widgetInfo.isWidgetIdAllocated()) {
Winsonc0b52fe2015-09-09 16:38:15 -07002287 // Deleting an app widget ID is a void call but writes to disk before returning
2288 // to the caller...
2289 new AsyncTask<Void, Void, Void>() {
2290 public Void doInBackground(Void ... args) {
2291 appWidgetHost.deleteAppWidgetId(widgetInfo.appWidgetId);
2292 return null;
2293 }
Sunny Goyalf27cb0e2015-09-23 16:12:02 -07002294 }.executeOnExecutor(Utilities.THREAD_POOL_EXECUTOR);
Winsonc0b52fe2015-09-09 16:38:15 -07002295 }
Sunny Goyal56c73602015-09-25 12:55:01 -07002296 LauncherModel.deleteItemFromDatabase(this, widgetInfo);
Winsonc0b52fe2015-09-09 16:38:15 -07002297 }
2298
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002299 @Override
2300 public boolean dispatchKeyEvent(KeyEvent event) {
2301 if (event.getAction() == KeyEvent.ACTION_DOWN) {
2302 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002303 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07002304 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08002305 case KeyEvent.KEYCODE_VOLUME_DOWN:
Sunny Goyal4bbf4192014-11-11 12:23:59 -08002306 if (Utilities.isPropertyEnabled(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08002307 dumpState();
2308 return true;
2309 }
2310 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07002311 }
2312 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2313 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07002314 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002315 return true;
2316 }
2317 }
2318
2319 return super.dispatchKeyEvent(event);
2320 }
2321
Joe Onorato88ec0992009-11-19 13:16:06 -08002322 @Override
2323 public void onBackPressed() {
Adam Cohen9211d422014-10-07 18:14:53 -07002324 if (mLauncherCallbacks != null && mLauncherCallbacks.handleBackPressed()) {
2325 return;
2326 }
2327
Sunny Goyal45478022015-06-08 16:52:41 -07002328 if (mDragController.isDragging()) {
2329 mDragController.cancelDrag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08002330 return;
2331 }
2332
Tony Wickham49c8d292016-07-01 11:44:34 -07002333 if (getOpenShortcutsContainer() != null) {
2334 closeShortcutsContainer();
2335 } else if (isAppsViewVisible()) {
Winson Chungb745afb2015-03-02 11:51:23 -08002336 showWorkspace(true);
2337 } else if (isWidgetsViewVisible()) {
2338 showOverviewMode(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002339 } else if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002340 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002341 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07002342 Folder openFolder = mWorkspace.getOpenFolder();
2343 if (openFolder.isEditingName()) {
2344 openFolder.dismissEditingName();
2345 } else {
2346 closeFolder();
2347 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002348 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08002349 mWorkspace.exitWidgetResizeMode();
2350
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002351 // Back button is a no-op here, but give at least some feedback for the button press
2352 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07002353 }
Joe Onorato88ec0992009-11-19 13:16:06 -08002354 }
2355
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002356 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002357 * Launches the intent referred by the clicked shortcut.
2358 *
2359 * @param v The view representing the clicked shortcut.
2360 */
2361 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002362 // Make sure that rogue clicks don't get through while allapps is launching, or after the
2363 // view has detached (it's possible for this to happen if the view is removed mid touch).
2364 if (v.getWindowToken() == null) {
2365 return;
2366 }
2367
Winson Chung9b0b2fe2012-02-24 13:03:34 -08002368 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002369 return;
2370 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07002371
Adam Cohen1697b792013-09-17 19:08:21 -07002372 if (v instanceof Workspace) {
2373 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002374 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002375 }
2376 return;
2377 }
2378
2379 if (v instanceof CellLayout) {
2380 if (mWorkspace.isInOverviewMode()) {
Sunny Goyalce5a7e52015-07-08 15:44:27 -07002381 mWorkspace.snapToPageFromOverView(mWorkspace.indexOfChild(v));
2382 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002383 }
Sunny Goyalce5a7e52015-07-08 15:44:27 -07002384 return;
Adam Cohenf358a4b2013-07-23 16:47:31 -07002385 }
2386
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002387 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002388 if (tag instanceof ShortcutInfo) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002389 onClickAppShortcut(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002390 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002391 if (v instanceof FolderIcon) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002392 onClickFolderIcon(v);
Adam Cohena9cf38f2011-05-02 15:36:58 -07002393 }
Hyunyoung Song68f98ac2016-07-22 14:22:49 -07002394 } else if ((FeatureFlags.LAUNCHER3_ALL_APPS_PULL_UP && v instanceof PageIndicator) ||
2395 (v == mAllAppsButton && mAllAppsButton != null)) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002396 onClickAllAppsButton(v);
Sunny Goyal508da152014-08-14 10:53:27 -07002397 } else if (tag instanceof AppInfo) {
2398 startAppShortcutOrInfoActivity(v);
Sunny Goyalff572272014-07-23 13:58:07 -07002399 } else if (tag instanceof LauncherAppWidgetInfo) {
2400 if (v instanceof PendingAppWidgetHostView) {
2401 onClickPendingWidget((PendingAppWidgetHostView) v);
2402 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002403 }
2404 }
2405
Sunny Goyal70660032015-05-14 00:07:08 -07002406 @SuppressLint("ClickableViewAccessibility")
Michael Jurka0e260592010-06-30 17:07:39 -07002407 public boolean onTouch(View v, MotionEvent event) {
Michael Jurka0e260592010-06-30 17:07:39 -07002408 return false;
2409 }
2410
Michael Jurkaaf442092010-06-10 17:01:57 -07002411 /**
Sunny Goyalff572272014-07-23 13:58:07 -07002412 * Event handler for the app widget view which has not fully restored.
2413 */
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002414 public void onClickPendingWidget(final PendingAppWidgetHostView v) {
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002415 if (mIsSafeModeEnabled) {
2416 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2417 return;
2418 }
2419
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002420 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) v.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07002421 if (v.isReadyForClickSetup()) {
Sunny Goyald478c832016-04-01 12:04:16 -07002422 if (info.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_ID_NOT_VALID)) {
2423 if (!info.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_ID_ALLOCATED)) {
2424 // This should not happen, as we make sure that an Id is allocated during bind.
2425 return;
2426 }
2427 LauncherAppWidgetProviderInfo appWidgetInfo =
2428 mAppWidgetManager.findProvider(info.providerName, info.user);
2429 if (appWidgetInfo != null) {
Sunny Goyal2100c782016-08-22 16:00:03 -07002430 setWaitingForResult(PendingRequestArgs
2431 .forWidgetInfo(info.appWidgetId, appWidgetInfo, info));
Sunny Goyalff572272014-07-23 13:58:07 -07002432
Sunny Goyald478c832016-04-01 12:04:16 -07002433 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
Sunny Goyal2100c782016-08-22 16:00:03 -07002434 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, info.appWidgetId);
Sunny Goyald478c832016-04-01 12:04:16 -07002435 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, appWidgetInfo.provider);
Sunny Goyal2100c782016-08-22 16:00:03 -07002436 mAppWidgetManager.getUser(appWidgetInfo)
Sunny Goyald478c832016-04-01 12:04:16 -07002437 .addToIntent(intent, AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE);
2438 startActivityForResult(intent, REQUEST_BIND_PENDING_APPWIDGET);
2439 }
2440 } else {
2441 LauncherAppWidgetProviderInfo appWidgetInfo =
2442 mAppWidgetManager.getLauncherAppWidgetInfo(info.appWidgetId);
2443 if (appWidgetInfo != null) {
2444 startRestoredWidgetReconfigActivity(appWidgetInfo, info);
2445 }
Sunny Goyalff572272014-07-23 13:58:07 -07002446 }
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002447 } else if (info.installProgress < 0) {
2448 // The install has not been queued
2449 final String packageName = info.providerName.getPackageName();
2450 showBrokenAppInstallDialog(packageName,
2451 new DialogInterface.OnClickListener() {
2452 public void onClick(DialogInterface dialog, int id) {
2453 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
2454 }
2455 });
2456 } else {
2457 // Download has started.
2458 final String packageName = info.providerName.getPackageName();
2459 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
Sunny Goyalff572272014-07-23 13:58:07 -07002460 }
2461 }
2462
Sunny Goyald478c832016-04-01 12:04:16 -07002463 private void startRestoredWidgetReconfigActivity(
2464 LauncherAppWidgetProviderInfo provider, LauncherAppWidgetInfo info) {
Sunny Goyal2100c782016-08-22 16:00:03 -07002465 setWaitingForResult(PendingRequestArgs.forWidgetInfo(info.appWidgetId, provider, info));
Sunny Goyald478c832016-04-01 12:04:16 -07002466 mAppWidgetManager.startConfigActivity(provider,
2467 info.appWidgetId, this, mAppWidgetHost, REQUEST_RECONFIGURE_APPWIDGET);
2468 }
2469
Sunny Goyalff572272014-07-23 13:58:07 -07002470 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002471 * Event handler for the "grid" button that appears on the home screen, which
2472 * enters all apps mode.
2473 *
2474 * @param v The view that was clicked.
2475 */
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002476 protected void onClickAllAppsButton(View v) {
2477 if (LOGD) Log.d(TAG, "onClickAllAppsButton");
Winson Chung76648c52015-07-10 14:33:23 -07002478 if (!isAppsViewVisible()) {
Hyunyoung Song1ce0e302016-07-21 12:47:28 -07002479 getUserEventDispatcher().logActionOnControl(LauncherLogProto.Action.TAP,
Hyunyoung Song5aa27142016-07-21 11:48:37 -07002480 LauncherLogProto.ALL_APPS_BUTTON);
Hyunyoung Songdd60ce42016-07-27 17:08:38 -07002481 showAppsView(true /* animated */, true /* updatePredictedApps */,
2482 false /* focusSearchBar */);
Winson Chung76648c52015-07-10 14:33:23 -07002483 }
2484 }
2485
2486 protected void onLongClickAllAppsButton(View v) {
2487 if (LOGD) Log.d(TAG, "onLongClickAllAppsButton");
2488 if (!isAppsViewVisible()) {
Hyunyoung Song1ce0e302016-07-21 12:47:28 -07002489 getUserEventDispatcher().logActionOnControl(LauncherLogProto.Action.LONGPRESS,
Hyunyoung Song5aa27142016-07-21 11:48:37 -07002490 LauncherLogProto.ALL_APPS_BUTTON);
Hyunyoung Songdd60ce42016-07-27 17:08:38 -07002491 showAppsView(true /* animated */,
Winson Chung76648c52015-07-10 14:33:23 -07002492 true /* updatePredictedApps */, true /* focusSearchBar */);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002493 }
2494 }
2495
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002496 private void showBrokenAppInstallDialog(final String packageName,
2497 DialogInterface.OnClickListener onSearchClickListener) {
Sunny Goyale03b8122014-10-08 09:55:24 -07002498 new AlertDialog.Builder(this)
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002499 .setTitle(R.string.abandoned_promises_title)
2500 .setMessage(R.string.abandoned_promise_explanation)
2501 .setPositiveButton(R.string.abandoned_search, onSearchClickListener)
2502 .setNeutralButton(R.string.abandoned_clean_this,
2503 new DialogInterface.OnClickListener() {
2504 public void onClick(DialogInterface dialog, int id) {
2505 final UserHandleCompat user = UserHandleCompat.myUserHandle();
2506 mWorkspace.removeAbandonedPromise(packageName, user);
2507 }
2508 })
2509 .create().show();
2510 return;
2511 }
2512
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002513 /**
2514 * Event handler for an app shortcut click.
2515 *
2516 * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.
2517 */
Chris Wren40c5ed32014-06-24 18:24:23 -04002518 protected void onClickAppShortcut(final View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002519 if (LOGD) Log.d(TAG, "onClickAppShortcut");
2520 Object tag = v.getTag();
2521 if (!(tag instanceof ShortcutInfo)) {
2522 throw new IllegalArgumentException("Input must be a Shortcut");
2523 }
2524
2525 // Open shortcut
2526 final ShortcutInfo shortcut = (ShortcutInfo) tag;
Sunny Goyal1a745e82014-10-02 15:58:31 -07002527
2528 if (shortcut.isDisabled != 0) {
Sunny Goyald3b87ef2016-07-28 12:11:54 -07002529 if ((shortcut.isDisabled &
2530 ~ShortcutInfo.FLAG_DISABLED_SUSPENDED &
2531 ~ShortcutInfo.FLAG_DISABLED_QUIET_USER) == 0) {
2532 // If the app is only disabled because of the above flags, launch activity anyway.
2533 // Framework will tell the user why the app is suspended.
Kenny Guy44cba692016-01-21 19:50:02 +00002534 } else {
Tony Wickham4efffc52016-08-04 16:34:49 -07002535 if (!TextUtils.isEmpty(shortcut.disabledMessage)) {
2536 // Use a message specific to this shortcut, if it has one.
2537 Toast.makeText(this, shortcut.disabledMessage, Toast.LENGTH_SHORT).show();
2538 return;
2539 }
2540 // Otherwise just use a generic error message.
Kenny Guy44cba692016-01-21 19:50:02 +00002541 int error = R.string.activity_not_available;
2542 if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_SAFEMODE) != 0) {
2543 error = R.string.safemode_shortcut_error;
Sunny Goyald3b87ef2016-07-28 12:11:54 -07002544 } else if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_BY_PUBLISHER) != 0 ||
2545 (shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_LOCKED_USER) != 0) {
Sunny Goyal70a7c9b2016-07-28 10:07:32 -07002546 error = R.string.shortcut_not_available;
Kenny Guy44cba692016-01-21 19:50:02 +00002547 }
2548 Toast.makeText(this, error, Toast.LENGTH_SHORT).show();
2549 return;
Sunny Goyal1a745e82014-10-02 15:58:31 -07002550 }
Sunny Goyal1a745e82014-10-02 15:58:31 -07002551 }
2552
Chris Wren40c5ed32014-06-24 18:24:23 -04002553 // Check for abandoned promise
Sunny Goyal34942622014-08-29 17:20:55 -07002554 if ((v instanceof BubbleTextView)
2555 && shortcut.isPromise()
2556 && !shortcut.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE)) {
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002557 showBrokenAppInstallDialog(
Sunny Goyal34942622014-08-29 17:20:55 -07002558 shortcut.getTargetComponent().getPackageName(),
Chris Wren40c5ed32014-06-24 18:24:23 -04002559 new DialogInterface.OnClickListener() {
2560 public void onClick(DialogInterface dialog, int id) {
Sunny Goyal508da152014-08-14 10:53:27 -07002561 startAppShortcutOrInfoActivity(v);
Chris Wren40c5ed32014-06-24 18:24:23 -04002562 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002563 });
Chris Wren40c5ed32014-06-24 18:24:23 -04002564 return;
2565 }
2566
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002567 // Start activities
Sunny Goyal508da152014-08-14 10:53:27 -07002568 startAppShortcutOrInfoActivity(v);
Chris Wren40c5ed32014-06-24 18:24:23 -04002569 }
2570
Sunny Goyala7ce1662016-05-31 15:01:35 -07002571 private void startAppShortcutOrInfoActivity(View v) {
2572 ItemInfo item = (ItemInfo) v.getTag();
2573 Intent intent = item.getIntent();
2574 if (intent == null) {
2575 throw new IllegalArgumentException("Input must have a valid intent");
Sunny Goyal508da152014-08-14 10:53:27 -07002576 }
Sunny Goyala7ce1662016-05-31 15:01:35 -07002577 boolean success = startActivitySafely(v, intent, item);
Hyunyoung Songaa953652016-04-19 18:30:24 -07002578 getUserEventDispatcher().logAppLaunch(v, intent);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002579
2580 if (success && v instanceof BubbleTextView) {
2581 mWaitingForResume = (BubbleTextView) v;
2582 mWaitingForResume.setStayPressed(true);
2583 }
2584 }
2585
2586 /**
2587 * Event handler for a folder icon click.
2588 *
2589 * @param v The view that was clicked. Must be an instance of {@link FolderIcon}.
2590 */
2591 protected void onClickFolderIcon(View v) {
2592 if (LOGD) Log.d(TAG, "onClickFolder");
2593 if (!(v instanceof FolderIcon)){
2594 throw new IllegalArgumentException("Input must be a FolderIcon");
2595 }
2596
2597 FolderIcon folderIcon = (FolderIcon) v;
Sunny Goyal08442b82015-10-21 17:15:08 -07002598 if (!folderIcon.getFolderInfo().opened && !folderIcon.getFolder().isDestroyed()) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002599 // Open the requested folder
Adam Cohen37b2a492016-04-06 18:36:06 -07002600 openFolder(folderIcon);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002601 }
Michael Jurka5130e402011-10-13 04:55:35 -07002602 }
2603
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002604 /**
2605 * Event handler for the (Add) Widgets button that appears after a long press
2606 * on the home screen.
2607 */
Sunny Goyald0a6ae72016-06-16 12:29:03 -07002608 public void onClickAddWidgetButton(View view) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002609 if (LOGD) Log.d(TAG, "onClickAddWidgetButton");
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002610 if (mIsSafeModeEnabled) {
2611 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2612 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08002613 showWidgetsView(true /* animated */, true /* resetPageToZero */);
Adam Cohen9211d422014-10-07 18:14:53 -07002614 }
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002615 }
2616
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002617 /**
2618 * Event handler for the wallpaper picker button that appears after a long press
2619 * on the home screen.
2620 */
Sunny Goyald0a6ae72016-06-16 12:29:03 -07002621 public void onClickWallpaperPicker(View v) {
Sunny Goyal1ed6c4a2016-04-21 15:16:11 -07002622 if (!Utilities.isWallapaperAllowed(this)) {
2623 Toast.makeText(this, R.string.msg_disabled_by_admin, Toast.LENGTH_SHORT).show();
2624 return;
2625 }
2626
Sunny Goyal04cc3a72016-05-17 10:32:43 -07002627 String pickerPackage = getString(R.string.wallpaper_picker_package);
2628 if (TextUtils.isEmpty(pickerPackage)) {
2629 pickerPackage = PackageManagerHelper.getWallpaperPickerPackage(getPackageManager());
2630 }
2631
Tony Wickham785f7a52015-08-31 17:28:32 -07002632 int pageScroll = mWorkspace.getScrollForPage(mWorkspace.getPageNearestToCenterOfScreen());
2633 float offset = mWorkspace.mWallpaperOffset.wallpaperOffsetForScroll(pageScroll);
Sunny Goyal0eca4e22016-07-20 11:43:06 -07002634
Sunny Goyal2100c782016-08-22 16:00:03 -07002635 setWaitingForResult(new PendingRequestArgs(new ItemInfo()));
Sunny Goyal0eca4e22016-07-20 11:43:06 -07002636 Intent intent = new Intent(Intent.ACTION_SET_WALLPAPER)
Sunny Goyal04cc3a72016-05-17 10:32:43 -07002637 .setPackage(pickerPackage)
Sunny Goyal0eca4e22016-07-20 11:43:06 -07002638 .putExtra(Utilities.EXTRA_WALLPAPER_OFFSET, offset);
2639 intent.setSourceBounds(getViewBounds(v));
2640 startActivityForResult(intent, REQUEST_PICK_WALLPAPER, getActivityLaunchOptions(v));
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002641 }
2642
2643 /**
2644 * Event handler for a click on the settings button that appears after a long press
2645 * on the home screen.
2646 */
Sunny Goyald0a6ae72016-06-16 12:29:03 -07002647 public void onClickSettingsButton(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002648 if (LOGD) Log.d(TAG, "onClickSettingsButton");
Sunny Goyalf3a09f92016-08-25 09:45:14 -07002649 Intent intent = new Intent(Intent.ACTION_APPLICATION_PREFERENCES)
2650 .setPackage(getPackageName());
2651 intent.setSourceBounds(getViewBounds(v));
2652 startActivity(intent, getActivityLaunchOptions(v));
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002653 }
2654
Adam Cohen61f560d2013-09-30 15:58:20 -07002655 public View.OnTouchListener getHapticFeedbackTouchListener() {
2656 if (mHapticFeedbackTouchListener == null) {
2657 mHapticFeedbackTouchListener = new View.OnTouchListener() {
Sunny Goyal70660032015-05-14 00:07:08 -07002658 @SuppressLint("ClickableViewAccessibility")
Adam Cohen61f560d2013-09-30 15:58:20 -07002659 @Override
2660 public boolean onTouch(View v, MotionEvent event) {
2661 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
2662 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2663 }
2664 return false;
2665 }
2666 };
2667 }
2668 return mHapticFeedbackTouchListener;
2669 }
2670
Tony Wickhame2217252016-03-22 16:34:23 -07002671 @Override
2672 public void onAccessibilityStateChanged(boolean enabled) {
2673 mDragLayer.onAccessibilityStateChanged(enabled);
2674 }
2675
Sunny Goyal06e21a22016-08-11 16:02:02 -07002676 public void onDragStarted() {
Adam Cohen9211d422014-10-07 18:14:53 -07002677 if (isOnCustomContent()) {
2678 // Custom content screen doesn't participate in drag and drop. If on custom
2679 // content screen, move to default.
2680 moveWorkspaceToDefaultScreen();
2681 }
Adam Cohen9211d422014-10-07 18:14:53 -07002682 }
Anjali Koppal62d18ed2014-03-10 17:04:03 -07002683
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002684 /**
2685 * Called when the user stops interacting with the launcher.
2686 * This implies that the user is now on the homescreen and is not doing housekeeping.
2687 */
Adam Cohen9211d422014-10-07 18:14:53 -07002688 protected void onInteractionEnd() {
2689 if (mLauncherCallbacks != null) {
2690 mLauncherCallbacks.onInteractionEnd();
2691 }
2692 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002693
2694 /**
2695 * Called when the user starts interacting with the launcher.
2696 * The possible interactions are:
2697 * - open all apps
2698 * - reorder an app shortcut, or a widget
2699 * - open the overview mode.
2700 * This is a good time to stop doing things that only make sense
2701 * when the user is on the homescreen and not doing housekeeping.
2702 */
Adam Cohen9211d422014-10-07 18:14:53 -07002703 protected void onInteractionBegin() {
2704 if (mLauncherCallbacks != null) {
2705 mLauncherCallbacks.onInteractionBegin();
2706 }
2707 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002708
Winson Chungcd99cd32015-04-29 11:03:24 -07002709 /** Updates the interaction state. */
2710 public void updateInteraction(Workspace.State fromState, Workspace.State toState) {
Winson Chung83f59ab2015-05-05 17:21:58 -07002711 // Only update the interacting state if we are transitioning to/from a view with an
Winson Chungcd99cd32015-04-29 11:03:24 -07002712 // overlay
Winson Chungef7f8742015-06-04 17:18:17 -07002713 boolean fromStateWithOverlay = fromState != Workspace.State.NORMAL;
2714 boolean toStateWithOverlay = toState != Workspace.State.NORMAL;
Winson Chung83f59ab2015-05-05 17:21:58 -07002715 if (toStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002716 onInteractionBegin();
Winson Chung83f59ab2015-05-05 17:21:58 -07002717 } else if (fromStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002718 onInteractionEnd();
2719 }
2720 }
2721
Sunny Goyala7ce1662016-05-31 15:01:35 -07002722 private void startShortcutIntentSafely(Intent intent, Bundle optsBundle, ItemInfo info) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002723 try {
Sunny Goyala7ce1662016-05-31 15:01:35 -07002724 StrictMode.VmPolicy oldPolicy = StrictMode.getVmPolicy();
2725 try {
2726 // Temporarily disable deathPenalty on all default checks. For eg, shortcuts
2727 // containing file Uri's would cause a crash as penaltyDeathOnFileUriExposure
2728 // is enabled by default on NYC.
2729 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder().detectAll()
2730 .penaltyLog().build());
Tony Wickhambfbf7f92016-05-19 11:19:39 -07002731
2732 if (info.itemType == LauncherSettings.Favorites.ITEM_TYPE_DEEP_SHORTCUT) {
2733 String id = ((ShortcutInfo) info).getDeepShortcutId();
2734 String packageName = intent.getPackage();
Sunny Goyal9994b2b2016-06-23 14:17:24 -07002735 LauncherAppState.getInstance().getShortcutManager().startShortcut(
2736 packageName, id, intent.getSourceBounds(), optsBundle, info.user);
Tony Wickhambfbf7f92016-05-19 11:19:39 -07002737 } else {
2738 // Could be launching some bookkeeping activity
2739 startActivity(intent, optsBundle);
2740 }
Sunny Goyala7ce1662016-05-31 15:01:35 -07002741 } finally {
2742 StrictMode.setVmPolicy(oldPolicy);
Kenny Guy1317e2d2014-05-08 18:52:50 +01002743 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002744 } catch (SecurityException e) {
Sunny Goyala7ce1662016-05-31 15:01:35 -07002745 // Due to legacy reasons, direct call shortcuts require Launchers to have the
2746 // corresponding permission. Show the appropriate permission prompt if that
2747 // is the case.
2748 if (intent.getComponent() == null
2749 && Intent.ACTION_CALL.equals(intent.getAction())
2750 && checkSelfPermission(Manifest.permission.CALL_PHONE) !=
2751 PackageManager.PERMISSION_GRANTED) {
Sunny Goyal2100c782016-08-22 16:00:03 -07002752
2753 setWaitingForResult(PendingRequestArgs
2754 .forIntent(REQUEST_PERMISSION_CALL_PHONE, intent, info));
Sunny Goyala7ce1662016-05-31 15:01:35 -07002755 requestPermissions(new String[]{Manifest.permission.CALL_PHONE},
2756 REQUEST_PERMISSION_CALL_PHONE);
2757 } else {
2758 // No idea why this was thrown.
2759 throw e;
Sunny Goyal28c6b962015-10-12 11:42:05 -07002760 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002761 }
2762 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002763
Sunny Goyala7ce1662016-05-31 15:01:35 -07002764 private Bundle getActivityLaunchOptions(View v) {
2765 if (Utilities.ATLEAST_MARSHMALLOW) {
2766 int left = 0, top = 0;
2767 int width = v.getMeasuredWidth(), height = v.getMeasuredHeight();
2768 if (v instanceof TextView) {
2769 // Launch from center of icon, not entire view
2770 Drawable icon = Workspace.getTextViewIcon((TextView) v);
2771 if (icon != null) {
2772 Rect bounds = icon.getBounds();
2773 left = (width - bounds.width()) / 2;
2774 top = v.getPaddingTop();
2775 width = bounds.width();
2776 height = bounds.height();
2777 }
2778 }
2779 return ActivityOptions.makeClipRevealAnimation(v, left, top, width, height).toBundle();
2780 } else if (Utilities.ATLEAST_LOLLIPOP_MR1) {
2781 // On L devices, we use the device default slide-up transition.
2782 // On L MR1 devices, we use a custom version of the slide-up transition which
2783 // doesn't have the delay present in the device default.
2784 return ActivityOptions.makeCustomAnimation(
2785 this, R.anim.task_open_enter, R.anim.no_anim).toBundle();
2786 }
2787 return null;
2788 }
2789
Sunny Goyal0eca4e22016-07-20 11:43:06 -07002790 private Rect getViewBounds(View v) {
2791 int[] pos = new int[2];
2792 v.getLocationOnScreen(pos);
2793 return new Rect(pos[0], pos[1], pos[0] + v.getWidth(), pos[1] + v.getHeight());
2794 }
2795
Sunny Goyala7ce1662016-05-31 15:01:35 -07002796 public boolean startActivitySafely(View v, Intent intent, ItemInfo item) {
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002797 if (mIsSafeModeEnabled && !Utilities.isSystemApp(this, intent)) {
2798 Toast.makeText(this, R.string.safemode_shortcut_error, Toast.LENGTH_SHORT).show();
2799 return false;
2800 }
Sunny Goyala7ce1662016-05-31 15:01:35 -07002801 // Only launch using the new animation if the shortcut has not opted out (this is a
2802 // private contract between launcher and may be ignored in the future).
2803 boolean useLaunchAnimation = (v != null) &&
2804 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
2805 Bundle optsBundle = useLaunchAnimation ? getActivityLaunchOptions(v) : null;
2806
2807 UserHandleCompat user = null;
2808 if (intent.hasExtra(AppInfo.EXTRA_PROFILE)) {
2809 long serialNumber = intent.getLongExtra(AppInfo.EXTRA_PROFILE, -1);
2810 user = UserManagerCompat.getInstance(this).getUserForSerialNumber(serialNumber);
Michael Jurka86a720e2012-05-09 11:23:23 -07002811 }
Sunny Goyala7ce1662016-05-31 15:01:35 -07002812
2813 // Prepare intent
2814 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2815 if (v != null) {
Sunny Goyal0eca4e22016-07-20 11:43:06 -07002816 intent.setSourceBounds(getViewBounds(v));
Sunny Goyala7ce1662016-05-31 15:01:35 -07002817 }
2818 try {
Tony Wickhambfbf7f92016-05-19 11:19:39 -07002819 if (Utilities.ATLEAST_MARSHMALLOW && item != null
2820 && (item.itemType == Favorites.ITEM_TYPE_SHORTCUT
Tony Wickhamfc02c1b2016-08-29 15:17:48 -07002821 || item.itemType == Favorites.ITEM_TYPE_DEEP_SHORTCUT)
2822 && ((ShortcutInfo) item).promisedIntent == null) {
Sunny Goyala7ce1662016-05-31 15:01:35 -07002823 // Shortcuts need some special checks due to legacy reasons.
2824 startShortcutIntentSafely(intent, optsBundle, item);
2825 } else if (user == null || user.equals(UserHandleCompat.myUserHandle())) {
2826 // Could be launching some bookkeeping activity
2827 startActivity(intent, optsBundle);
2828 } else {
2829 LauncherAppsCompat.getInstance(this).startActivityForProfile(
2830 intent.getComponent(), user, intent.getSourceBounds(), optsBundle);
2831 }
2832 return true;
2833 } catch (ActivityNotFoundException|SecurityException e) {
2834 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2835 Log.e(TAG, "Unable to launch. tag=" + item + " intent=" + intent, e);
2836 }
2837 return false;
Michael Jurka86a720e2012-05-09 11:23:23 -07002838 }
2839
Adam Cohen268c4752012-06-06 17:47:33 -07002840 /**
2841 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
2842 * in the DragLayer in the exact absolute location of the original FolderIcon.
2843 */
2844 private void copyFolderIconToImage(FolderIcon fi) {
2845 final int width = fi.getMeasuredWidth();
2846 final int height = fi.getMeasuredHeight();
2847
2848 // Lazy load ImageView, Bitmap and Canvas
2849 if (mFolderIconImageView == null) {
2850 mFolderIconImageView = new ImageView(this);
2851 }
2852 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
2853 mFolderIconBitmap.getHeight() != height) {
2854 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
2855 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
2856 }
2857
2858 DragLayer.LayoutParams lp;
2859 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
2860 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
2861 } else {
2862 lp = new DragLayer.LayoutParams(width, height);
2863 }
2864
Adam Cohen307fe232012-08-16 17:55:58 -07002865 // The layout from which the folder is being opened may be scaled, adjust the starting
2866 // view size by this scale factor.
2867 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07002868 lp.customPosition = true;
2869 lp.x = mRectForFolderAnimation.left;
2870 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07002871 lp.width = (int) (scale * width);
2872 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07002873
2874 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
2875 fi.draw(mFolderIconCanvas);
2876 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07002877 if (fi.getFolder() != null) {
2878 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
2879 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07002880 }
Adam Cohen268c4752012-06-06 17:47:33 -07002881 // Just in case this image view is still in the drag layer from a previous animation,
2882 // we remove it and re-add it.
2883 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
2884 mDragLayer.removeView(mFolderIconImageView);
2885 }
2886 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07002887 if (fi.getFolder() != null) {
2888 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07002889 }
Adam Cohen268c4752012-06-06 17:47:33 -07002890 }
2891
Adam Cohen37b2a492016-04-06 18:36:06 -07002892 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002893 if (fi == null) return;
Adam Cohenc51934b2011-07-26 21:07:43 -07002894 FolderInfo info = (FolderInfo) fi.getTag();
2895 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
2896 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07002897 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
2898 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07002899 }
2900
Adam Cohen268c4752012-06-06 17:47:33 -07002901 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
2902 copyFolderIconToImage(fi);
2903 fi.setVisibility(View.INVISIBLE);
2904
Sunny Goyal5d2fc322015-07-06 22:52:49 -07002905 ObjectAnimator oa = LauncherAnimUtils.ofViewAlphaAndScale(
2906 mFolderIconImageView, 0, 1.5f, 1.5f);
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002907 if (Utilities.ATLEAST_LOLLIPOP) {
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07002908 oa.setInterpolator(new LogDecelerateInterpolator(100, 0));
2909 }
2910 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohen2801caf2011-05-13 20:57:39 -07002911 oa.start();
2912 }
2913
Sunny Goyal935fca12015-10-13 10:19:01 -07002914 private void shrinkAndFadeInFolderIcon(final FolderIcon fi, boolean animate) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002915 if (fi == null) return;
Adam Cohen268c4752012-06-06 17:47:33 -07002916 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07002917
Adam Cohen268c4752012-06-06 17:47:33 -07002918 // We remove and re-draw the FolderIcon in-case it has changed
2919 mDragLayer.removeView(mFolderIconImageView);
2920 copyFolderIconToImage(fi);
Adam Cohenefca0272016-02-24 19:19:06 -08002921
2922 if (cl != null) {
2923 cl.clearFolderLeaveBehind();
2924 }
2925
Sunny Goyal5d2fc322015-07-06 22:52:49 -07002926 ObjectAnimator oa = LauncherAnimUtils.ofViewAlphaAndScale(mFolderIconImageView, 1, 1, 1);
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07002927 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07002928 oa.addListener(new AnimatorListenerAdapter() {
2929 @Override
2930 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07002931 if (cl != null) {
Adam Cohen268c4752012-06-06 17:47:33 -07002932 // Remove the ImageView copy of the FolderIcon and make the original visible.
2933 mDragLayer.removeView(mFolderIconImageView);
2934 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07002935 }
2936 }
2937 });
Adam Cohen2801caf2011-05-13 20:57:39 -07002938 oa.start();
Sunny Goyal935fca12015-10-13 10:19:01 -07002939 if (!animate) {
2940 oa.end();
2941 }
Adam Cohen2801caf2011-05-13 20:57:39 -07002942 }
2943
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002944 /**
Michael Jurka774bd372010-10-22 13:40:50 -07002945 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002946 * is animated relative to the specified View. If the View is null, no animation
2947 * is played.
2948 *
Sunny Goyal08442b82015-10-21 17:15:08 -07002949 * @param folderIcon The FolderIcon describing the folder to open.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002950 */
Adam Cohen37b2a492016-04-06 18:36:06 -07002951 public void openFolder(FolderIcon folderIcon) {
Sunny Goyal08442b82015-10-21 17:15:08 -07002952
Adam Cohenfb91f302012-06-11 15:45:18 -07002953 Folder folder = folderIcon.getFolder();
Sunny Goyalf4066152015-04-15 09:42:19 -07002954 Folder openFolder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
2955 if (openFolder != null && openFolder != folder) {
2956 // Close any open folder before opening a folder.
2957 closeFolder();
2958 }
2959
Adam Cohena9cf38f2011-05-02 15:36:58 -07002960 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002961
Adam Cohena9cf38f2011-05-02 15:36:58 -07002962 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002963
Sunny Goyalf4066152015-04-15 09:42:19 -07002964 // While the folder is open, the position of the icon cannot change.
2965 ((CellLayout.LayoutParams) folderIcon.getLayoutParams()).canReorder = false;
2966
Adam Cohen4554ee12011-08-03 16:13:21 -07002967 // Just verify that the folder hasn't already been added to the DragLayer.
2968 // There was a one-off crash where the folder had a parent already.
2969 if (folder.getParent() == null) {
2970 mDragLayer.addView(folder);
Sunny Goyal08442b82015-10-21 17:15:08 -07002971 mDragController.addDropTarget(folder);
Adam Cohen4554ee12011-08-03 16:13:21 -07002972 } else {
2973 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
2974 folder.getParent() + ").");
2975 }
Adam Cohen37b2a492016-04-06 18:36:06 -07002976 folder.animateOpen();
2977
2978 growAndFadeOutFolderIcon(folderIcon);
Winson Chung83ca4802013-04-12 15:10:52 -07002979
2980 // Notify the accessibility manager that this folder "window" has appeared and occluded
2981 // the workspace items
2982 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
2983 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07002984 }
2985
2986 public void closeFolder() {
Sunny Goyal935fca12015-10-13 10:19:01 -07002987 closeFolder(true);
2988 }
2989
2990 public void closeFolder(boolean animate) {
Adam Cohen37c717f2013-11-26 11:50:15 -08002991 Folder folder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
Adam Cohen4554ee12011-08-03 16:13:21 -07002992 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07002993 if (folder.isEditingName()) {
2994 folder.dismissEditingName();
2995 }
Sunny Goyal935fca12015-10-13 10:19:01 -07002996 closeFolder(folder, animate);
Adam Cohen4554ee12011-08-03 16:13:21 -07002997 }
2998 }
2999
Sunny Goyal935fca12015-10-13 10:19:01 -07003000 public void closeFolder(Folder folder, boolean animate) {
Sunny Goyal08442b82015-10-21 17:15:08 -07003001 animate &= !Utilities.isPowerSaverOn(this);
3002
Adam Cohen4554ee12011-08-03 16:13:21 -07003003 folder.getInfo().opened = false;
3004
3005 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
3006 if (parent != null) {
3007 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
Sunny Goyal935fca12015-10-13 10:19:01 -07003008 shrinkAndFadeInFolderIcon(fi, animate);
Sunny Goyalf4066152015-04-15 09:42:19 -07003009 if (fi != null) {
3010 ((CellLayout.LayoutParams) fi.getLayoutParams()).canReorder = true;
3011 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003012 }
Sunny Goyal935fca12015-10-13 10:19:01 -07003013 if (animate) {
3014 folder.animateClosed();
3015 } else {
Tony Wickham30bdd6e2015-11-17 17:59:26 -08003016 folder.close(false);
Sunny Goyal935fca12015-10-13 10:19:01 -07003017 }
Winson Chung83ca4802013-04-12 15:10:52 -07003018
Sunny Goyal935fca12015-10-13 10:19:01 -07003019 // Notify the accessibility manager that this folder "window" has disappeared and no
3020 // longer occludes the workspace items
Winson Chung83ca4802013-04-12 15:10:52 -07003021 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003022 }
3023
Tony Wickham49c8d292016-07-01 11:44:34 -07003024 public void closeShortcutsContainer() {
Sunny Goyala2454ad2016-07-22 10:50:11 -07003025 closeShortcutsContainer(true);
3026 }
3027
3028 public void closeShortcutsContainer(boolean animate) {
Tony Wickham49c8d292016-07-01 11:44:34 -07003029 DeepShortcutsContainer deepShortcutsContainer = getOpenShortcutsContainer();
3030 if (deepShortcutsContainer != null) {
Sunny Goyala2454ad2016-07-22 10:50:11 -07003031 if (animate) {
3032 deepShortcutsContainer.animateClose();
3033 } else {
3034 deepShortcutsContainer.close();
3035 }
Tony Wickham49c8d292016-07-01 11:44:34 -07003036 }
3037 }
3038
Sunny Goyal52851aa2016-09-02 10:41:43 -07003039 public View getTopFloatingView() {
3040 View topView = getOpenShortcutsContainer();
3041 if (topView == null) {
3042 topView = getWorkspace().getOpenFolder();
3043 }
3044 return topView;
3045 }
3046
Tony Wickham49c8d292016-07-01 11:44:34 -07003047 /**
3048 * @return The open shortcuts container, or null if there is none
3049 */
3050 public DeepShortcutsContainer getOpenShortcutsContainer() {
Sunny Goyal71b3d1c2016-07-20 17:42:05 -07003051 // Iterate in reverse order. Shortcuts container is added later to the dragLayer,
3052 // and will be one of the last views.
3053 for (int i = mDragLayer.getChildCount() - 1; i >= 0; i--) {
3054 View child = mDragLayer.getChildAt(i);
Sunny Goyala2454ad2016-07-22 10:50:11 -07003055 if (child instanceof DeepShortcutsContainer
3056 && ((DeepShortcutsContainer) child).isOpen()) {
Sunny Goyal71b3d1c2016-07-20 17:42:05 -07003057 return (DeepShortcutsContainer) child;
3058 }
3059 }
3060 return null;
Tony Wickham49c8d292016-07-01 11:44:34 -07003061 }
3062
Tony Wickhamdadb3042016-02-24 11:07:00 -08003063 @Override
Jon Miranda379198e2016-09-23 08:54:40 -07003064 public boolean dispatchTouchEvent(MotionEvent ev) {
3065 mLastDispatchTouchEventX = ev.getX();
3066 return super.dispatchTouchEvent(ev);
3067 }
3068
3069 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003070 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07003071 if (!isDraggingEnabled()) return false;
3072 if (isWorkspaceLocked()) return false;
3073 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003074
Hyunyoung Song68f98ac2016-07-22 14:22:49 -07003075 if ((FeatureFlags.LAUNCHER3_ALL_APPS_PULL_UP && v instanceof PageIndicator) ||
3076 (v == mAllAppsButton && mAllAppsButton != null)) {
Winson Chung76648c52015-07-10 14:33:23 -07003077 onLongClickAllAppsButton(v);
3078 return true;
3079 }
3080
Jon Miranda379198e2016-09-23 08:54:40 -07003081 boolean fromEdgeOfScreen = mLastDispatchTouchEventX < mEdgeOfScreenThresholdPx
3082 || mLastDispatchTouchEventX > (mDeviceProfile.widthPx - mEdgeOfScreenThresholdPx);
3083
Adam Cohen1697b792013-09-17 19:08:21 -07003084 if (v instanceof Workspace) {
3085 if (!mWorkspace.isInOverviewMode()) {
Jon Miranda379198e2016-09-23 08:54:40 -07003086 if (!mWorkspace.isTouchActive() && !fromEdgeOfScreen) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003087 showOverviewMode(true);
Adam Cohen93c97562013-09-26 13:48:01 -07003088 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3089 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
3090 return true;
3091 } else {
3092 return false;
3093 }
Adam Cohenaa4c8c12014-06-06 11:52:52 -07003094 } else {
3095 return false;
Adam Cohen1697b792013-09-17 19:08:21 -07003096 }
Adam Cohen1697b792013-09-17 19:08:21 -07003097 }
3098
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003099 CellLayout.CellInfo longClickCellInfo = null;
3100 View itemUnderLongClick = null;
3101 if (v.getTag() instanceof ItemInfo) {
3102 ItemInfo info = (ItemInfo) v.getTag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08003103 longClickCellInfo = new CellLayout.CellInfo(v, info);
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003104 itemUnderLongClick = longClickCellInfo.cell;
Sunny Goyal2100c782016-08-22 16:00:03 -07003105 mPendingRequestArgs = null;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003106 }
3107
Winson Chung3d503fb2011-07-13 17:25:49 -07003108 // The hotseat touch handling does not go through Workspace, and we always allow long press
3109 // on hotseat items.
Sunny Goyal8e2133b2015-05-06 13:39:07 -07003110 if (!mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07003111 if (itemUnderLongClick == null) {
Adam Cohend3ecce92013-09-16 14:58:00 -07003112 // User long pressed on empty space
Adam Cohend3ecce92013-09-16 14:58:00 -07003113 if (mWorkspace.isInOverviewMode()) {
3114 mWorkspace.startReordering(v);
3115 } else {
Jon Miranda379198e2016-09-23 08:54:40 -07003116 if (fromEdgeOfScreen) {
3117 return false;
3118 }
Winson Chungdc61c4d2015-04-20 18:26:57 -07003119 showOverviewMode(true);
Adam Cohendedbd962013-07-11 14:21:49 -07003120 }
Jon Miranda379198e2016-09-23 08:54:40 -07003121 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3122 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003123 } else {
Sunny Goyalbb011da2016-06-15 15:42:29 -07003124 final boolean isAllAppsButton =
3125 !FeatureFlags.NO_ALL_APPS_ICON && isHotseatLayout(v) &&
3126 mDeviceProfile.inv.isAllAppsButtonRank(mHotseat.getOrderInHotseat(
3127 longClickCellInfo.cellX, longClickCellInfo.cellY));
Dan Sandlere26d0942014-01-13 14:30:14 -05003128 if (!(itemUnderLongClick instanceof Folder || isAllAppsButton)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003129 // User long pressed on an item
Tony Wickham6e74e892016-09-19 14:06:31 -07003130 DragOptions dragOptions = new DragOptions();
3131 if (itemUnderLongClick instanceof BubbleTextView) {
3132 BubbleTextView icon = (BubbleTextView) itemUnderLongClick;
3133 if (icon.hasDeepShortcuts()) {
3134 DeepShortcutsContainer dsc = DeepShortcutsContainer.showForIcon(icon);
3135 if (dsc != null) {
3136 dragOptions.deferDragCondition = dsc.createDeferDragCondition(null);
3137 }
3138 }
3139 }
3140 mWorkspace.startDrag(longClickCellInfo, dragOptions);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003141 }
3142 }
3143 }
3144 return true;
3145 }
3146
Winson Chung3d503fb2011-07-13 17:25:49 -07003147 boolean isHotseatLayout(View layout) {
3148 return mHotseat != null && layout != null &&
3149 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
3150 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08003151
Winson Chung3d503fb2011-07-13 17:25:49 -07003152 /**
3153 * Returns the CellLayout of the specified container at the specified screen.
3154 */
Sunny Goyal92820592015-03-02 11:31:35 -08003155 public CellLayout getCellLayout(long container, long screenId) {
Winson Chung3d503fb2011-07-13 17:25:49 -07003156 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3157 if (mHotseat != null) {
3158 return mHotseat.getLayout();
3159 } else {
3160 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08003161 }
Winson Chung3d503fb2011-07-13 17:25:49 -07003162 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08003163 return mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08003164 }
3165 }
3166
Winson Chungb745afb2015-03-02 11:51:23 -08003167 /**
3168 * For overridden classes.
3169 */
Daniel Sandler843e8602010-06-07 14:59:01 -04003170 public boolean isAllAppsVisible() {
Winson Chungb745afb2015-03-02 11:51:23 -08003171 return isAppsViewVisible();
3172 }
3173
3174 public boolean isAppsViewVisible() {
3175 return (mState == State.APPS) || (mOnResumeState == State.APPS);
3176 }
3177
3178 public boolean isWidgetsViewVisible() {
3179 return (mState == State.WIDGETS) || (mOnResumeState == State.WIDGETS);
Joe Onoratofb0ca672009-09-14 17:55:46 -04003180 }
3181
Michael Jurkae326f182011-11-21 14:05:46 -08003182 @Override
3183 public void onTrimMemory(int level) {
3184 super.onTrimMemory(level);
Adam Cohen3f9c9712014-10-31 11:48:25 -07003185 if (level >= ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
3186 // The widget preview db can result in holding onto over
3187 // 3MB of memory for caching which isn't necessary.
3188 SQLiteDatabase.releaseMemory();
3189
Adam Cohenc8f4e1b2014-11-19 16:03:20 -08003190 // This clears all widget bitmaps from the widget tray
Hyunyoung Song3f471442015-04-08 19:01:34 -07003191 // TODO(hyunyoungs)
Michael Jurkae326f182011-11-21 14:05:46 -08003192 }
Robert Kozikowski67c30862015-03-30 23:46:46 +01003193 if (mLauncherCallbacks != null) {
3194 mLauncherCallbacks.onTrimMemory(level);
3195 }
Michael Jurkae326f182011-11-21 14:05:46 -08003196 }
3197
Winson5c6bdbb2015-09-03 11:36:19 -07003198 public boolean showWorkspace(boolean animated) {
Winson10612a72015-09-09 17:06:09 -07003199 return showWorkspace(animated, null);
Adam Cohened307df2013-10-02 09:37:31 -07003200 }
3201
Winson5c6bdbb2015-09-03 11:36:19 -07003202 public boolean showWorkspace(boolean animated, Runnable onCompleteRunnable) {
Winson Chung0f785722015-04-08 10:27:49 -07003203 boolean changed = mState != State.WORKSPACE ||
3204 mWorkspace.getState() != Workspace.State.NORMAL;
Hyunyoung Song9dcf0a32016-07-27 10:55:51 -07003205 if (changed || mAllAppsController.isTransitioning()) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003206 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003207 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
Winson2a87fe82015-08-07 10:37:21 -07003208 Workspace.State.NORMAL, animated, onCompleteRunnable);
Winson Chungc7d2b602012-05-16 17:02:20 -07003209
Michael Jurkab3e22d92011-10-31 15:58:33 -07003210 // Set focus to the AppsCustomize button
3211 if (mAllAppsButton != null) {
3212 mAllAppsButton.requestFocus();
3213 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003214 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07003215
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003216 // Change the state *after* we've called all the transition code
3217 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08003218
Winson Chung5fb63472011-02-02 17:03:37 -08003219 // Resume the auto-advance of widgets
3220 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08003221 updateAutoAdvanceState();
Winson Chung5fb63472011-02-02 17:03:37 -08003222
Winson Chung0f785722015-04-08 10:27:49 -07003223 if (changed) {
3224 // Send an accessibility event to announce the context change
3225 getWindow().getDecorView()
3226 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Winson Chung0f785722015-04-08 10:27:49 -07003227 }
Winson5c6bdbb2015-09-03 11:36:19 -07003228 return changed;
Bjorn Bringertc459e522013-06-07 19:36:01 +01003229 }
3230
Winsone9f27272015-10-13 10:47:51 -07003231 /**
3232 * Shows the overview button.
3233 */
Sunny Goyald0a6ae72016-06-16 12:29:03 -07003234 public void showOverviewMode(boolean animated) {
Winsone9f27272015-10-13 10:47:51 -07003235 showOverviewMode(animated, false);
3236 }
3237
3238 /**
3239 * Shows the overview button, and if {@param requestButtonFocus} is set, will force the focus
3240 * onto one of the overview panel buttons.
3241 */
3242 void showOverviewMode(boolean animated, boolean requestButtonFocus) {
3243 Runnable postAnimRunnable = null;
3244 if (requestButtonFocus) {
3245 postAnimRunnable = new Runnable() {
3246 @Override
3247 public void run() {
3248 // Hitting the menu button when in touch mode does not trigger touch mode to
3249 // be disabled, so if requested, force focus on one of the overview panel
3250 // buttons.
3251 mOverviewPanel.requestFocusFromTouch();
3252 }
3253 };
3254 }
Adam Cohened307df2013-10-02 09:37:31 -07003255 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003256 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
Winson6e6a9b42015-10-13 17:52:17 -07003257 Workspace.State.OVERVIEW, animated, postAnimRunnable);
Adam Cohened307df2013-10-02 09:37:31 -07003258 mState = State.WORKSPACE;
Hyunyoung Song0a9c0922016-09-20 22:50:06 -07003259 // If animated from long press, then don't allow any of the controller in the drag
3260 // layer to intercept any remaining touch.
3261 mWorkspace.requestDisallowInterceptTouchEvent(animated);
Joe Onorato00acb122009-08-04 16:04:30 -04003262 }
3263
Winson Chungb745afb2015-03-02 11:51:23 -08003264 /**
3265 * Shows the apps view.
3266 */
Hyunyoung Songdd60ce42016-07-27 17:08:38 -07003267 public void showAppsView(boolean animated, boolean updatePredictedApps,
Winson Chung76648c52015-07-10 14:33:23 -07003268 boolean focusSearchBar) {
Hyunyoung Songc001cf52016-07-21 17:32:43 -07003269 markAppsViewShown();
Winson Chung4ac30062015-05-08 17:34:17 -07003270 if (updatePredictedApps) {
3271 tryAndUpdatePredictedApps();
3272 }
Winson Chung76648c52015-07-10 14:33:23 -07003273 showAppsOrWidgets(State.APPS, animated, focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003274 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003275
Winson Chungb745afb2015-03-02 11:51:23 -08003276 /**
3277 * Shows the widgets view.
3278 */
3279 void showWidgetsView(boolean animated, boolean resetPageToZero) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003280 if (LOGD) Log.d(TAG, "showWidgetsView:" + animated + " resetPageToZero:" + resetPageToZero);
Winson Chung82963d52013-10-09 11:20:57 -07003281 if (resetPageToZero) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003282 mWidgetsView.scrollToTop();
Winson Chung82963d52013-10-09 11:20:57 -07003283 }
Winson Chung76648c52015-07-10 14:33:23 -07003284 showAppsOrWidgets(State.WIDGETS, animated, false);
Hyunyoung Song3f471442015-04-08 19:01:34 -07003285
3286 mWidgetsView.post(new Runnable() {
Adam Cohendcc5e712014-06-23 15:38:55 -04003287 @Override
3288 public void run() {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003289 mWidgetsView.requestFocus();
Adam Cohendcc5e712014-06-23 15:38:55 -04003290 }
3291 });
Winson Chungb745afb2015-03-02 11:51:23 -08003292 }
3293
3294 /**
3295 * Sets up the transition to show the apps/widgets view.
Hyunyoung Songb7900832015-05-15 16:29:45 -07003296 *
3297 * @return whether the current from and to state allowed this operation
Winson Chungb745afb2015-03-02 11:51:23 -08003298 */
Hyunyoung Songb7900832015-05-15 16:29:45 -07003299 // TODO: calling method should use the return value so that when {@code false} is returned
3300 // the workspace transition doesn't fall into invalid state.
Winson Chung76648c52015-07-10 14:33:23 -07003301 private boolean showAppsOrWidgets(State toState, boolean animated, boolean focusSearchBar) {
Hyunyoung Song9dcf0a32016-07-27 10:55:51 -07003302 if (!(mState == State.WORKSPACE ||
3303 mState == State.APPS_SPRING_LOADED ||
3304 mState == State.WIDGETS_SPRING_LOADED ||
3305 (mState == State.APPS && mAllAppsController.isTransitioning()))) {
Hyunyoung Songb7900832015-05-15 16:29:45 -07003306 return false;
3307 }
3308 if (toState != State.APPS && toState != State.WIDGETS) {
3309 return false;
3310 }
Winson Chungb745afb2015-03-02 11:51:23 -08003311
Hyunyoung Song06ca7562016-07-29 13:03:54 -07003312 // This is a safe and supported transition to bypass spring_loaded mode.
3313 if (mExitSpringLoadedModeRunnable != null) {
3314 mHandler.removeCallbacks(mExitSpringLoadedModeRunnable);
3315 mExitSpringLoadedModeRunnable = null;
3316 }
3317
Winson Chungb745afb2015-03-02 11:51:23 -08003318 if (toState == State.APPS) {
Winson Chung006ee262015-08-03 14:40:11 -07003319 mStateTransitionAnimation.startAnimationToAllApps(mWorkspace.getState(), animated,
3320 focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003321 } else {
Winson Chung006ee262015-08-03 14:40:11 -07003322 mStateTransitionAnimation.startAnimationToWidgets(mWorkspace.getState(), animated);
Winson Chungb745afb2015-03-02 11:51:23 -08003323 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003324
Michael Jurkab3e22d92011-10-31 15:58:33 -07003325 // Change the state *after* we've called all the transition code
Winson Chungb745afb2015-03-02 11:51:23 -08003326 mState = toState;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003327
3328 // Pause the auto-advance of widgets until we are out of AllApps
3329 mUserPresent = false;
Winson Chungb745afb2015-03-02 11:51:23 -08003330 updateAutoAdvanceState();
Michael Jurkab3e22d92011-10-31 15:58:33 -07003331 closeFolder();
Tony Wickham49c8d292016-07-01 11:44:34 -07003332 closeShortcutsContainer();
Michael Jurkab3e22d92011-10-31 15:58:33 -07003333
3334 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07003335 getWindow().getDecorView()
3336 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Hyunyoung Songb7900832015-05-15 16:29:45 -07003337 return true;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003338 }
3339
Winson Chungcd99cd32015-04-29 11:03:24 -07003340 /**
3341 * Updates the workspace and interaction state on state change, and return the animation to this
3342 * new state.
3343 */
Sunny Goyalce5a7e52015-07-08 15:44:27 -07003344 public Animator startWorkspaceStateChangeAnimation(Workspace.State toState,
Winson Chung006ee262015-08-03 14:40:11 -07003345 boolean animated, HashMap<View, Integer> layerViews) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003346 Workspace.State fromState = mWorkspace.getState();
Winson2a87fe82015-08-07 10:37:21 -07003347 Animator anim = mWorkspace.setStateWithAnimation(toState, animated, layerViews);
Winson Chungcd99cd32015-04-29 11:03:24 -07003348 updateInteraction(fromState, toState);
3349 return anim;
3350 }
3351
Hyunyoung Song3f471442015-04-08 19:01:34 -07003352 public void enterSpringLoadedDragMode() {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003353 if (LOGD) Log.d(TAG, String.format("enterSpringLoadedDragMode [mState=%s", mState.name()));
Tony Wickham94e0d372015-09-11 12:17:48 -07003354 if (isStateSpringLoaded()) {
Winson Chungb745afb2015-03-02 11:51:23 -08003355 return;
Winson Chungb26f3d62011-06-02 10:49:29 -07003356 }
Winson Chungb745afb2015-03-02 11:51:23 -08003357
Winson Chung006ee262015-08-03 14:40:11 -07003358 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
Winson2a87fe82015-08-07 10:37:21 -07003359 Workspace.State.SPRING_LOADED, true /* animated */,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003360 null /* onCompleteRunnable */);
Tony Wickham94e0d372015-09-11 12:17:48 -07003361
3362 if (isAppsViewVisible()) {
3363 mState = State.APPS_SPRING_LOADED;
3364 } else if (isWidgetsViewVisible()) {
3365 mState = State.WIDGETS_SPRING_LOADED;
Tony Wickhame0c33232016-02-08 11:37:04 -08003366 } else if (!FeatureFlags.LAUNCHER3_LEGACY_WORKSPACE_DND) {
Tony Wickham94e0d372015-09-11 12:17:48 -07003367 mState = State.WORKSPACE_SPRING_LOADED;
Tony Wickham0f97b782015-12-02 17:55:07 -08003368 } else {
3369 mState = State.WORKSPACE;
Tony Wickham94e0d372015-09-11 12:17:48 -07003370 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08003371 }
Adam Cohen7777d962011-08-18 18:58:38 -07003372
Hyunyoung Song3f471442015-04-08 19:01:34 -07003373 public void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, int delay,
Adam Cohened66b2b2012-01-23 17:28:51 -08003374 final Runnable onCompleteRunnable) {
Tony Wickham94e0d372015-09-11 12:17:48 -07003375 if (!isStateSpringLoaded()) return;
Winson Chung09bfc452011-09-09 11:30:20 -07003376
Hyunyoung Song06ca7562016-07-29 13:03:54 -07003377 if (mExitSpringLoadedModeRunnable != null) {
3378 mHandler.removeCallbacks(mExitSpringLoadedModeRunnable);
3379 }
3380 mExitSpringLoadedModeRunnable = new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07003381 @Override
3382 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003383 if (successfulDrop) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003384 // TODO(hyunyoungs): verify if this hack is still needed, if not, delete.
3385 //
Michael Jurka7bdb25a2011-08-03 15:16:44 -07003386 // Before we show workspace, hide all apps again because
3387 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
3388 // clean up our state transition functions
Hyunyoung Song3f471442015-04-08 19:01:34 -07003389 mWidgetsView.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003390 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07003391 } else {
3392 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003393 }
Hyunyoung Song06ca7562016-07-29 13:03:54 -07003394 mExitSpringLoadedModeRunnable = null;
Winson Chung557d6ed2011-07-08 15:34:52 -07003395 }
Hyunyoung Song06ca7562016-07-29 13:03:54 -07003396 };
3397 mHandler.postDelayed(mExitSpringLoadedModeRunnable, delay);
Winson Chung557d6ed2011-07-08 15:34:52 -07003398 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003399
Tony Wickhame0c33232016-02-08 11:37:04 -08003400 boolean isStateSpringLoaded() {
Tony Wickham94e0d372015-09-11 12:17:48 -07003401 return mState == State.WORKSPACE_SPRING_LOADED || mState == State.APPS_SPRING_LOADED
3402 || mState == State.WIDGETS_SPRING_LOADED;
3403 }
3404
Michael Jurkad3ef3062010-11-23 16:23:58 -08003405 void exitSpringLoadedDragMode() {
Winson Chungb745afb2015-03-02 11:51:23 -08003406 if (mState == State.APPS_SPRING_LOADED) {
Hyunyoung Songdd60ce42016-07-27 17:08:38 -07003407 showAppsView(true /* animated */,
Winson Chung76648c52015-07-10 14:33:23 -07003408 false /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -08003409 } else if (mState == State.WIDGETS_SPRING_LOADED) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003410 showWidgetsView(true, false);
Tony Wickham94e0d372015-09-11 12:17:48 -07003411 } else if (mState == State.WORKSPACE_SPRING_LOADED) {
3412 showWorkspace(true);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003413 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003414 }
3415
Winson Chung4ac30062015-05-08 17:34:17 -07003416 /**
3417 * Updates the set of predicted apps if it hasn't been updated since the last time Launcher was
3418 * resumed.
3419 */
Hyunyoung Songa9a8a422016-06-15 16:45:48 -07003420 public void tryAndUpdatePredictedApps() {
Winson Chung4ac30062015-05-08 17:34:17 -07003421 if (mLauncherCallbacks != null) {
Winson Chung6b1c73f2015-06-18 11:38:42 -07003422 List<ComponentKey> apps = mLauncherCallbacks.getPredictedApps();
Winson Chung91c05952015-06-25 12:17:30 -07003423 if (apps != null) {
Winson Chung4ac30062015-05-08 17:34:17 -07003424 mAppsView.setPredictedApps(apps);
Hyunyoung Songaa953652016-04-19 18:30:24 -07003425 getUserEventDispatcher().setPredictedApps(apps);
Winson Chung4ac30062015-05-08 17:34:17 -07003426 }
3427 }
3428 }
3429
Michael Jurkab3e22d92011-10-31 15:58:33 -07003430 void lockAllApps() {
3431 // TODO
3432 }
3433
3434 void unlockAllApps() {
3435 // TODO
3436 }
3437
Michael Jurkad7c28052012-04-27 15:43:36 -07003438 @Override
3439 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07003440 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07003441 final List<CharSequence> text = event.getText();
3442 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07003443 // Populate event with a fake title based on the current state.
Winson Chungb745afb2015-03-02 11:51:23 -08003444 if (mState == State.APPS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003445 text.add(getString(R.string.all_apps_button_label));
Winson Chungb745afb2015-03-02 11:51:23 -08003446 } else if (mState == State.WIDGETS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003447 text.add(getString(R.string.widget_button_text));
Hyunyoung Song166e6482015-06-25 21:06:07 -07003448 } else if (mWorkspace != null) {
3449 text.add(mWorkspace.getCurrentPageDescription());
alanv1d4fde62012-10-17 13:15:47 -07003450 } else {
3451 text.add(getString(R.string.all_apps_home_button_label));
3452 }
Michael Jurkad7c28052012-04-27 15:43:36 -07003453 return result;
3454 }
3455
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003456 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07003457 * If the activity is currently paused, signal that we need to run the passed Runnable
3458 * in onResume.
3459 *
3460 * This needs to be called from incoming places where resources might have been loaded
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003461 * while the activity is paused. That is because the Configuration (e.g., rotation) might be
3462 * wrong when we're not running, and if the activity comes back to what the configuration was
3463 * when we were paused, activity is not restarted.
Michael Jurka7607c2f2013-04-03 14:33:19 -07003464 *
3465 * Implementation of the method from LauncherModel.Callbacks.
3466 *
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003467 * @return {@code true} if we are currently paused. The caller might be able to skip some work
Michael Jurka7607c2f2013-04-03 14:33:19 -07003468 */
Rahul Chaturvedi799aa042015-06-01 21:26:41 -04003469 @Thunk boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003470 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003471 if (LOGD) Log.d(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02003472 if (deletePreviousRunnables) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07003473 while (mBindOnResumeCallbacks.remove(run)) {
Michael Jurkac402cd92013-05-20 15:49:32 +02003474 }
3475 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07003476 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07003477 return true;
3478 } else {
3479 return false;
3480 }
3481 }
3482
Michael Jurkac402cd92013-05-20 15:49:32 +02003483 private boolean waitUntilResume(Runnable run) {
3484 return waitUntilResume(run, false);
3485 }
3486
Michael Jurka1e2f4652013-07-08 18:03:46 -07003487 public void addOnResumeCallback(Runnable run) {
Michael Jurka54554252013-08-01 12:52:23 +02003488 mOnResumeCallbacks.add(run);
Michael Jurka1e2f4652013-07-08 18:03:46 -07003489 }
3490
Michael Jurka7607c2f2013-04-03 14:33:19 -07003491 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003492 * If the activity is currently paused, signal that we need to re-run the loader
3493 * in onResume.
3494 *
3495 * This needs to be called from incoming places where resources might have been loaded
3496 * while we are paused. That is becaues the Configuration might be wrong
3497 * when we're not running, and if it comes back to what it was when we
3498 * were paused, we are not restarted.
3499 *
3500 * Implementation of the method from LauncherModel.Callbacks.
3501 *
3502 * @return true if we are currently paused. The caller might be able to
3503 * skip some work in that case since we will come back again.
3504 */
Sunny Goyal93f878c2016-03-30 17:31:24 -07003505 @Override
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003506 public boolean setLoadOnResume() {
3507 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003508 if (LOGD) Log.d(TAG, "setLoadOnResume");
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003509 mOnResumeNeedsLoad = true;
3510 return true;
3511 } else {
3512 return false;
3513 }
3514 }
3515
3516 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003517 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003518 */
Sunny Goyal93f878c2016-03-30 17:31:24 -07003519 @Override
Joe Onorato9c1289c2009-08-17 11:03:03 -04003520 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003521 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003522 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003523 } else {
Winson Chung882a52e2015-07-08 14:32:26 -07003524 return 0;
Joe Onoratod0afc872010-06-11 00:03:15 -07003525 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003526 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003527
Joe Onorato9c1289c2009-08-17 11:03:03 -04003528 /**
Sunny Goyal527c7d32015-08-28 15:19:36 -07003529 * Clear any pending bind callbacks. This is called when is loader is planning to
3530 * perform a full rebind from scratch.
3531 */
3532 @Override
3533 public void clearPendingBinds() {
3534 mBindOnResumeCallbacks.clear();
3535 if (mPendingExecutor != null) {
3536 mPendingExecutor.markCompleted();
3537 mPendingExecutor = null;
3538 }
3539 }
3540
3541 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003542 * Refreshes the shortcuts shown on the workspace.
3543 *
3544 * Implementation of the method from LauncherModel.Callbacks.
3545 */
3546 public void startBinding() {
Sunny Goyale26d1002016-06-20 14:52:14 -07003547 if (LauncherAppState.PROFILE_STARTUP) {
3548 Trace.beginSection("Starting page bind");
3549 }
Anjali Koppalff7ceff2014-05-01 18:26:37 -07003550 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08003551
Winson Chungd64d1762013-08-20 14:37:16 -07003552 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07003553 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07003554 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07003555
Michael Jurka05bf644e2011-11-30 20:28:53 -08003556 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003557 if (mHotseat != null) {
3558 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003559 }
Sunny Goyale26d1002016-06-20 14:52:14 -07003560 if (LauncherAppState.PROFILE_STARTUP) {
3561 Trace.endSection();
3562 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003563 }
3564
Adam Cohendcd297f2013-06-18 13:13:40 -07003565 @Override
3566 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07003567 // Make sure the first screen is always at the start.
Sunny Goyala9e2f5a2016-06-10 12:22:04 -07003568 if (FeatureFlags.QSB_ON_FIRST_SCREEN &&
3569 orderedScreenIds.indexOf(Workspace.FIRST_SCREEN_ID) != 0) {
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07003570 orderedScreenIds.remove(Workspace.FIRST_SCREEN_ID);
3571 orderedScreenIds.add(0, Workspace.FIRST_SCREEN_ID);
3572 mModel.updateWorkspaceScreenOrder(this, orderedScreenIds);
Sunny Goyala9e2f5a2016-06-10 12:22:04 -07003573 } else if (!FeatureFlags.QSB_ON_FIRST_SCREEN && orderedScreenIds.isEmpty()) {
3574 // If there are no screens, we need to have an empty screen
3575 mWorkspace.addExtraEmptyScreen();
Adam Cohen5084cba2013-09-03 12:01:16 -07003576 }
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07003577 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07003578
3579 // Create the custom content page (this call updates mDefaultScreen which calls
Dave Hawkeya8881582013-09-17 15:55:33 -06003580 // setCurrentPage() so ensure that all pages are added before calling this).
Derek Prothrodadd9842014-01-17 13:43:50 -05003581 if (hasCustomContentToLeft()) {
3582 mWorkspace.createCustomContentContainer();
3583 populateCustomContentContainer();
Winson Chung0e6a7132013-08-23 12:55:10 -07003584 }
Winsonc7d2e832016-07-28 12:24:55 -07003585
3586 // After we have added all the screens, if the wallpaper was locked to the default state,
3587 // then notify to indicate that it can be released and a proper wallpaper offset can be
3588 // computed before the next layout
3589 mWorkspace.unlockWallpaperFromDefaultPageOnNextLayout();
Winson Chung64359a52013-07-08 17:17:08 -07003590 }
3591
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07003592 private void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Adam Cohendcd297f2013-06-18 13:13:40 -07003593 int count = orderedScreenIds.size();
3594 for (int i = 0; i < count; i++) {
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07003595 long screenId = orderedScreenIds.get(i);
Sunny Goyala9e2f5a2016-06-10 12:22:04 -07003596 if (!FeatureFlags.QSB_ON_FIRST_SCREEN || screenId != Workspace.FIRST_SCREEN_ID) {
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07003597 // No need to bind the first screen, as its always bound.
3598 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(screenId);
3599 }
Adam Cohendcd297f2013-06-18 13:13:40 -07003600 }
Adam Cohendcd297f2013-06-18 13:13:40 -07003601 }
3602
Winson Chungd64d1762013-08-20 14:37:16 -07003603 public void bindAppsAdded(final ArrayList<Long> newScreens,
3604 final ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -07003605 final ArrayList<ItemInfo> addAnimated,
3606 final ArrayList<AppInfo> addedApps) {
Winson Chungd64d1762013-08-20 14:37:16 -07003607 Runnable r = new Runnable() {
3608 public void run() {
Winson Chungc58497e2013-09-03 17:48:37 -07003609 bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps);
Winson Chungd64d1762013-08-20 14:37:16 -07003610 }
3611 };
3612 if (waitUntilResume(r)) {
3613 return;
3614 }
3615
Winson Chungd64d1762013-08-20 14:37:16 -07003616 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08003617 if (newScreens != null) {
3618 bindAddScreens(newScreens);
3619 }
Winson Chungd64d1762013-08-20 14:37:16 -07003620
3621 // We add the items without animation on non-visible pages, and with
3622 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08003623 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003624 bindItems(addNotAnimated, 0,
3625 addNotAnimated.size(), false);
3626 }
Adam Cohen76a47a12014-02-05 11:47:43 -08003627 if (addAnimated != null && !addAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003628 bindItems(addAnimated, 0,
3629 addAnimated.size(), true);
3630 }
Winson Chungc58497e2013-09-03 17:48:37 -07003631
Winson Chung87412982013-10-03 18:34:14 -07003632 // Remove the extra empty screen
Adam Cohen689ff162014-05-08 17:27:56 -07003633 mWorkspace.removeExtraEmptyScreen(false, false);
Winson Chung87412982013-10-03 18:34:14 -07003634
Winson Chungb745afb2015-03-02 11:51:23 -08003635 if (addedApps != null && mAppsView != null) {
3636 mAppsView.addApps(addedApps);
Winson Chungc58497e2013-09-03 17:48:37 -07003637 }
Winson Chungd64d1762013-08-20 14:37:16 -07003638 }
3639
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003640 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003641 * Bind the items start-end from the list.
3642 *
3643 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003644 */
Tony Wickham0bb211a2015-10-02 16:22:08 -07003645 @Override
Winson Chung64359a52013-07-08 17:17:08 -07003646 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end,
3647 final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07003648 Runnable r = new Runnable() {
3649 public void run() {
3650 bindItems(shortcuts, start, end, forceAnimateIcons);
3651 }
3652 };
3653 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003654 return;
3655 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003656
Winson Chungf0c6ae02012-03-21 16:10:31 -07003657 // Get the list of added shortcuts and intersect them with the set of shortcuts here
Winson Chung64359a52013-07-08 17:17:08 -07003658 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
3659 final Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chung997a9232013-07-24 15:33:46 -07003660 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07003661 Workspace workspace = mWorkspace;
Winson Chung997a9232013-07-24 15:33:46 -07003662 long newShortcutsScreenId = -1;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003663 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003664 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003665
3666 // Short circuit if we are loading dock items for a configuration which has no dock
3667 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3668 mHotseat == null) {
3669 continue;
3670 }
3671
Sunny Goyal639e9062015-08-19 19:17:06 -07003672 final View view;
Joe Onorato9c1289c2009-08-17 11:03:03 -04003673 switch (item.itemType) {
3674 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3675 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Tony Wickhambfbf7f92016-05-19 11:19:39 -07003676 case LauncherSettings.Favorites.ITEM_TYPE_DEEP_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07003677 ShortcutInfo info = (ShortcutInfo) item;
Sunny Goyal639e9062015-08-19 19:17:06 -07003678 view = createShortcut(info);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003679 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003680 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Sunny Goyal639e9062015-08-19 19:17:06 -07003681 view = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003682 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003683 (FolderInfo) item, mIconCache);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003684 break;
Winson Chungc763c4e2013-07-19 13:49:06 -07003685 default:
3686 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04003687 }
Sunny Goyal639e9062015-08-19 19:17:06 -07003688
Sunny Goyalda4fe1a2016-05-26 16:05:17 -07003689 /*
3690 * Remove colliding items.
3691 */
3692 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
3693 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
3694 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
3695 View v = cl.getChildAt(item.cellX, item.cellY);
3696 Object tag = v.getTag();
3697 String desc = "Collision while binding workspace item: " + item
3698 + ". Collides with " + tag;
3699 if (ProviderConfig.IS_DOGFOOD_BUILD) {
3700 throw (new RuntimeException(desc));
3701 } else {
3702 Log.d(TAG, desc);
3703 LauncherModel.deleteItemFromDatabase(this, item);
3704 continue;
3705 }
3706 }
3707 }
Sunny Goyal639e9062015-08-19 19:17:06 -07003708 workspace.addInScreenFromBind(view, item.container, item.screenId, item.cellX,
3709 item.cellY, 1, 1);
3710 if (animateIcons) {
3711 // Animate all the applications up now
3712 view.setAlpha(0f);
3713 view.setScaleX(0f);
3714 view.setScaleY(0f);
3715 bounceAnims.add(createNewAppBounceAnimation(view, i));
3716 newShortcutsScreenId = item.screenId;
3717 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003718 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003719
Winson Chung997a9232013-07-24 15:33:46 -07003720 if (animateIcons) {
3721 // Animate to the correct page
3722 if (newShortcutsScreenId > -1) {
3723 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Winson Chung94d67682013-09-25 16:29:40 -07003724 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId);
Winson Chungb2323832013-10-03 15:22:09 -07003725 final Runnable startBounceAnimRunnable = new Runnable() {
3726 public void run() {
3727 anim.playTogether(bounceAnims);
3728 anim.start();
3729 }
3730 };
Winson Chung997a9232013-07-24 15:33:46 -07003731 if (newShortcutsScreenId != currentScreenId) {
Winson Chung94d67682013-09-25 16:29:40 -07003732 // We post the animation slightly delayed to prevent slowdowns
3733 // when we are loading right after we return to launcher.
3734 mWorkspace.postDelayed(new Runnable() {
3735 public void run() {
Ian Parkinson94449152014-01-21 13:09:59 +00003736 if (mWorkspace != null) {
3737 mWorkspace.snapToPage(newScreenIndex);
3738 mWorkspace.postDelayed(startBounceAnimRunnable,
3739 NEW_APPS_ANIMATION_DELAY);
3740 }
Winson Chung94d67682013-09-25 16:29:40 -07003741 }
3742 }, NEW_APPS_PAGE_MOVE_DELAY);
Winson Chungb2323832013-10-03 15:22:09 -07003743 } else {
3744 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07003745 }
3746 }
Winson Chung64359a52013-07-08 17:17:08 -07003747 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003748 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003749 }
3750
Sunny Goyal2e1efb42016-03-03 16:58:55 -08003751 private void bindSafeModeWidget(LauncherAppWidgetInfo item) {
3752 PendingAppWidgetHostView view = new PendingAppWidgetHostView(this, item, true);
3753 view.updateIcon(mIconCache);
Sunny Goyal87af0fd2016-05-16 14:56:02 -07003754 view.updateAppWidget(null);
3755 view.setOnClickListener(this);
3756 addAppWidgetToWorkspace(view, item, null, false);
Sunny Goyal2e1efb42016-03-03 16:58:55 -08003757 mWorkspace.requestLayout();
3758 }
3759
Joe Onorato9c1289c2009-08-17 11:03:03 -04003760 /**
3761 * Add the views for a widget to the workspace.
3762 *
3763 * Implementation of the method from LauncherModel.Callbacks.
3764 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07003765 public void bindAppWidget(final LauncherAppWidgetInfo item) {
Winson Chungd64d1762013-08-20 14:37:16 -07003766 Runnable r = new Runnable() {
3767 public void run() {
3768 bindAppWidget(item);
3769 }
3770 };
3771 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003772 return;
3773 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003774
Sunny Goyal2e1efb42016-03-03 16:58:55 -08003775 if (mIsSafeModeEnabled) {
3776 bindSafeModeWidget(item);
3777 return;
3778 }
3779
Daniel Sandler843e8602010-06-07 14:59:01 -04003780 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
3781 if (DEBUG_WIDGETS) {
3782 Log.d(TAG, "bindAppWidget: " + item);
3783 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003784
Sunny Goyal2e1efb42016-03-03 16:58:55 -08003785 final LauncherAppWidgetProviderInfo appWidgetInfo;
Adam Cohen59400422014-03-05 18:07:04 -08003786
Sunny Goyal2e1efb42016-03-03 16:58:55 -08003787 if (item.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY)) {
3788 // If the provider is not ready, bind as a pending widget.
3789 appWidgetInfo = null;
3790 } else if (item.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_ID_NOT_VALID)) {
3791 // The widget id is not valid. Try to find the widget based on the provider info.
3792 appWidgetInfo = mAppWidgetManager.findProvider(item.providerName, item.user);
3793 } else {
3794 appWidgetInfo = mAppWidgetManager.getLauncherAppWidgetInfo(item.appWidgetId);
3795 }
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003796
Sunny Goyal2e1efb42016-03-03 16:58:55 -08003797 // If the provider is ready, but the width is not yet restored, try to restore it.
3798 if (!item.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY) &&
3799 (item.restoreStatus != LauncherAppWidgetInfo.RESTORE_COMPLETED)) {
Sunny Goyalff572272014-07-23 13:58:07 -07003800 if (appWidgetInfo == null) {
3801 if (DEBUG_WIDGETS) {
3802 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3803 + " belongs to component " + item.providerName
3804 + ", as the povider is null");
3805 }
3806 LauncherModel.deleteItemFromDatabase(this, item);
3807 return;
3808 }
Sunny Goyalff572272014-07-23 13:58:07 -07003809
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003810 // If we do not have a valid id, try to bind an id.
Sunny Goyal2e1efb42016-03-03 16:58:55 -08003811 if (item.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_ID_NOT_VALID)) {
Sunny Goyald478c832016-04-01 12:04:16 -07003812 if (!item.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_ID_ALLOCATED)) {
3813 // Id has not been allocated yet. Allocate a new id.
3814 item.appWidgetId = mAppWidgetHost.allocateAppWidgetId();
3815 item.restoreStatus |= LauncherAppWidgetInfo.FLAG_ID_ALLOCATED;
Sunny Goyalff572272014-07-23 13:58:07 -07003816
Sunny Goyald478c832016-04-01 12:04:16 -07003817 // Also try to bind the widget. If the bind fails, the user will be shown
3818 // a click to setup UI, which will ask for the bind permission.
3819 PendingAddWidgetInfo pendingInfo = new PendingAddWidgetInfo(this, appWidgetInfo);
3820 pendingInfo.spanX = item.spanX;
3821 pendingInfo.spanY = item.spanY;
3822 pendingInfo.minSpanX = item.minSpanX;
3823 pendingInfo.minSpanY = item.minSpanY;
3824 Bundle options = WidgetHostViewLoader.getDefaultOptionsForWidget(this, pendingInfo);
Sunny Goyal86df1382016-08-10 15:03:22 -07003825
3826 boolean isDirectConfig =
3827 item.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_DIRECT_CONFIG);
3828 if (isDirectConfig && item.bindOptions != null) {
3829 Bundle newOptions = item.bindOptions.getExtras();
3830 if (options != null) {
3831 newOptions.putAll(options);
3832 }
3833 options = newOptions;
3834 }
Sunny Goyald478c832016-04-01 12:04:16 -07003835 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
3836 item.appWidgetId, appWidgetInfo, options);
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003837
Sunny Goyal86df1382016-08-10 15:03:22 -07003838 // We tried to bind once. If we were not able to bind, we would need to
3839 // go through the permission dialog, which means we cannot skip the config
3840 // activity.
3841 item.bindOptions = null;
3842 item.restoreStatus &= ~LauncherAppWidgetInfo.FLAG_DIRECT_CONFIG;
3843
Sunny Goyald478c832016-04-01 12:04:16 -07003844 // Bind succeeded
3845 if (success) {
3846 // If the widget has a configure activity, it is still needs to set it up,
3847 // otherwise the widget is ready to go.
Sunny Goyal86df1382016-08-10 15:03:22 -07003848 item.restoreStatus = (appWidgetInfo.configure == null) || isDirectConfig
Sunny Goyald478c832016-04-01 12:04:16 -07003849 ? LauncherAppWidgetInfo.RESTORE_COMPLETED
3850 : LauncherAppWidgetInfo.FLAG_UI_NOT_READY;
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003851 }
Sunny Goyald478c832016-04-01 12:04:16 -07003852
3853 LauncherModel.updateItemInDatabase(this, item);
Sunny Goyalff572272014-07-23 13:58:07 -07003854 }
Sunny Goyal2e1efb42016-03-03 16:58:55 -08003855 } else if (item.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_UI_NOT_READY)
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003856 && (appWidgetInfo.configure == null)) {
Sunny Goyal2e1efb42016-03-03 16:58:55 -08003857 // The widget was marked as UI not ready, but there is no configure activity to
3858 // update the UI.
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003859 item.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
3860 LauncherModel.updateItemInDatabase(this, item);
Sunny Goyalff572272014-07-23 13:58:07 -07003861 }
Sunny Goyalff572272014-07-23 13:58:07 -07003862 }
3863
Sunny Goyal2e1efb42016-03-03 16:58:55 -08003864 if (item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
Sunny Goyal651077b2014-06-30 14:15:31 -07003865 if (DEBUG_WIDGETS) {
Adam Cohen59400422014-03-05 18:07:04 -08003866 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component "
3867 + appWidgetInfo.provider);
Sunny Goyal651077b2014-06-30 14:15:31 -07003868 }
Daniel Sandler843e8602010-06-07 14:59:01 -04003869
Sunny Goyal56c73602015-09-25 12:55:01 -07003870 // Verify that we own the widget
Sunny Goyal2e1efb42016-03-03 16:58:55 -08003871 if (appWidgetInfo == null) {
Sunny Goyal713edfc2016-05-06 09:58:34 -07003872 FileLog.e(TAG, "Removing invalid widget: id=" + item.appWidgetId);
Sunny Goyal56c73602015-09-25 12:55:01 -07003873 deleteWidgetInfo(item);
3874 return;
3875 }
3876
Sunny Goyal233ee962015-08-03 13:05:01 -07003877 item.minSpanX = appWidgetInfo.minSpanX;
3878 item.minSpanY = appWidgetInfo.minSpanY;
Sunny Goyal87af0fd2016-05-16 14:56:02 -07003879 addAppWidgetToWorkspace(
3880 mAppWidgetHost.createView(this, item.appWidgetId, appWidgetInfo),
3881 item, appWidgetInfo, false);
Sunny Goyal651077b2014-06-30 14:15:31 -07003882 } else {
Sunny Goyal87af0fd2016-05-16 14:56:02 -07003883 PendingAppWidgetHostView view = new PendingAppWidgetHostView(this, item, false);
Sunny Goyal0fc1be12014-08-11 17:05:23 -07003884 view.updateIcon(mIconCache);
Sunny Goyal87af0fd2016-05-16 14:56:02 -07003885 view.updateAppWidget(null);
3886 view.setOnClickListener(this);
3887 addAppWidgetToWorkspace(view, item, null, false);
Sunny Goyal651077b2014-06-30 14:15:31 -07003888 }
Sunny Goyal2e1efb42016-03-03 16:58:55 -08003889 mWorkspace.requestLayout();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003890
Daniel Sandler843e8602010-06-07 14:59:01 -04003891 if (DEBUG_WIDGETS) {
3892 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
3893 + (SystemClock.uptimeMillis()-start) + "ms");
3894 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003895 }
3896
Sunny Goyalff572272014-07-23 13:58:07 -07003897 /**
3898 * Restores a pending widget.
3899 *
3900 * @param appWidgetId The app widget id
Sunny Goyalff572272014-07-23 13:58:07 -07003901 */
Sunny Goyald478c832016-04-01 12:04:16 -07003902 private LauncherAppWidgetInfo completeRestoreAppWidget(int appWidgetId, int finalRestoreFlag) {
Sunny Goyalff572272014-07-23 13:58:07 -07003903 LauncherAppWidgetHostView view = mWorkspace.getWidgetForAppWidgetId(appWidgetId);
3904 if ((view == null) || !(view instanceof PendingAppWidgetHostView)) {
3905 Log.e(TAG, "Widget update called, when the widget no longer exists.");
Sunny Goyald478c832016-04-01 12:04:16 -07003906 return null;
Sunny Goyalff572272014-07-23 13:58:07 -07003907 }
3908
Sunny Goyal0fc1be12014-08-11 17:05:23 -07003909 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) view.getTag();
Sunny Goyald478c832016-04-01 12:04:16 -07003910 info.restoreStatus = finalRestoreFlag;
Sunny Goyalff572272014-07-23 13:58:07 -07003911
3912 mWorkspace.reinflateWidgetsIfNecessary();
3913 LauncherModel.updateItemInDatabase(this, info);
Sunny Goyald478c832016-04-01 12:04:16 -07003914 return info;
Sunny Goyalff572272014-07-23 13:58:07 -07003915 }
3916
Adam Cohen1462de32012-07-24 22:34:36 -07003917 public void onPageBoundSynchronously(int page) {
3918 mSynchronouslyBoundPages.add(page);
3919 }
3920
Sunny Goyal527c7d32015-08-28 15:19:36 -07003921 @Override
3922 public void executeOnNextDraw(ViewOnDrawExecutor executor) {
3923 if (mPendingExecutor != null) {
3924 mPendingExecutor.markCompleted();
3925 }
3926 mPendingExecutor = executor;
3927 executor.attachTo(this);
3928 }
3929
3930 public void clearPendingExecutor(ViewOnDrawExecutor executor) {
3931 if (mPendingExecutor == executor) {
3932 mPendingExecutor = null;
3933 }
3934 }
3935
Sunny Goyalb5b9ad62016-04-02 11:23:39 -07003936 @Override
3937 public void finishFirstPageBind(final ViewOnDrawExecutor executor) {
3938 Runnable r = new Runnable() {
3939 public void run() {
3940 finishFirstPageBind(executor);
3941 }
3942 };
3943 if (waitUntilResume(r)) {
3944 return;
3945 }
3946
3947 Runnable onComplete = new Runnable() {
3948 @Override
3949 public void run() {
3950 if (executor != null) {
3951 executor.onLoadAnimationCompleted();
3952 }
3953 }
3954 };
3955 if (mDragLayer.getAlpha() < 1) {
3956 mDragLayer.animate().alpha(1).withEndAction(onComplete).start();
3957 } else {
3958 onComplete.run();
3959 }
3960 }
3961
Joe Onorato9c1289c2009-08-17 11:03:03 -04003962 /**
3963 * Callback saying that there aren't any more items to bind.
3964 *
3965 * Implementation of the method from LauncherModel.Callbacks.
3966 */
Sunny Goyal66cfdc22015-02-02 13:01:51 -08003967 public void finishBindingItems() {
Winson Chungd64d1762013-08-20 14:37:16 -07003968 Runnable r = new Runnable() {
3969 public void run() {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08003970 finishBindingItems();
Winson Chungd64d1762013-08-20 14:37:16 -07003971 }
3972 };
3973 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003974 return;
3975 }
Sunny Goyale26d1002016-06-20 14:52:14 -07003976 if (LauncherAppState.PROFILE_STARTUP) {
3977 Trace.beginSection("Page bind completed");
3978 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003979 if (mSavedState != null) {
3980 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07003981 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003982 }
Sunny Goyal08442b82015-10-21 17:15:08 -07003983
Joe Onorato9c1289c2009-08-17 11:03:03 -04003984 mSavedState = null;
3985 }
3986
Adam Cohen1462de32012-07-24 22:34:36 -07003987 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003988
Anjali Koppalff7ceff2014-05-01 18:26:37 -07003989 setWorkspaceLoading(false);
Adam Cohendb364c32014-05-20 14:23:40 -07003990
Sunny Goyal2100c782016-08-22 16:00:03 -07003991 if (mPendingActivityResult != null) {
3992 handleActivityResult(mPendingActivityResult.requestCode,
3993 mPendingActivityResult.resultCode, mPendingActivityResult.data);
3994 mPendingActivityResult = null;
Adam Cohendb364c32014-05-20 14:23:40 -07003995 }
3996
Sunny Goyal756adbc2015-04-16 15:20:51 -07003997 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
Adam Cohen9211d422014-10-07 18:14:53 -07003998
3999 if (mLauncherCallbacks != null) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004000 mLauncherCallbacks.finishBindingItems(false);
Adam Cohen9211d422014-10-07 18:14:53 -07004001 }
Sunny Goyale26d1002016-06-20 14:52:14 -07004002 if (LauncherAppState.PROFILE_STARTUP) {
4003 Trace.endSection();
4004 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004005 }
4006
Winson Chunga2413752012-04-03 14:22:34 -07004007 private boolean canRunNewAppsAnimation() {
4008 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
Andrew Sapperstein932eb832016-06-30 18:10:09 -07004009 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000);
Winson Chunga2413752012-04-03 14:22:34 -07004010 }
4011
Winson Chungc9168342013-06-26 14:54:55 -07004012 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
Sunny Goyal5d2fc322015-07-06 22:52:49 -07004013 ValueAnimator bounceAnim = LauncherAnimUtils.ofViewAlphaAndScale(v, 1, 1, 1);
Winson Chungc9168342013-06-26 14:54:55 -07004014 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
4015 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
Sunny Goyal5a1f53b2015-05-27 10:24:24 -07004016 bounceAnim.setInterpolator(new OvershootInterpolator(BOUNCE_ANIMATION_TENSION));
Winson Chungc9168342013-06-26 14:54:55 -07004017 return bounceAnim;
4018 }
4019
Adam Cohen27772732013-11-11 14:00:56 +00004020 public boolean useVerticalBarLayout() {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07004021 return mDeviceProfile.isVerticalBarLayout();
Adam Cohen27772732013-11-11 14:00:56 +00004022 }
4023
Tony Wickham55616cd2015-09-23 14:55:17 -07004024 public int getSearchBarHeight() {
4025 if (mLauncherCallbacks != null) {
4026 return mLauncherCallbacks.getSearchBarHeight();
4027 }
4028 return LauncherCallbacks.SEARCH_BAR_HEIGHT_NORMAL;
4029 }
4030
Amith Yamasani6d7fe502010-11-16 09:05:07 -08004031 /**
Winson Chungbb785c62015-05-05 10:05:08 -07004032 * A runnable that we can dequeue and re-enqueue when all applications are bound (to prevent
4033 * multiple calls to bind the same list.)
4034 */
4035 @Thunk ArrayList<AppInfo> mTmpAppsList;
4036 private Runnable mBindAllApplicationsRunnable = new Runnable() {
4037 public void run() {
4038 bindAllApplications(mTmpAppsList);
4039 mTmpAppsList = null;
4040 }
4041 };
4042
4043 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004044 * Add the icons for all apps.
4045 *
4046 * Implementation of the method from LauncherModel.Callbacks.
4047 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004048 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Winson Chungbb785c62015-05-05 10:05:08 -07004049 if (waitUntilResume(mBindAllApplicationsRunnable, true)) {
4050 mTmpAppsList = apps;
4051 return;
4052 }
4053
Winson Chungb745afb2015-03-02 11:51:23 -08004054 if (mAppsView != null) {
4055 mAppsView.setApps(apps);
4056 }
Adam Cohen9211d422014-10-07 18:14:53 -07004057 if (mLauncherCallbacks != null) {
4058 mLauncherCallbacks.bindAllApplications(apps);
4059 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004060 }
4061
4062 /**
Tony Wickhambfbf7f92016-05-19 11:19:39 -07004063 * Copies LauncherModel's map of activities to shortcut ids to Launcher's. This is necessary
4064 * because LauncherModel's map is updated in the background, while Launcher runs on the UI.
4065 */
4066 @Override
4067 public void bindDeepShortcutMap(MultiHashMap<ComponentKey, String> deepShortcutMapCopy) {
4068 mDeepShortcutMap = deepShortcutMapCopy;
4069 if (LOGD) Log.d(TAG, "bindDeepShortcutMap: " + mDeepShortcutMap);
4070 }
4071
Tony Wickham1bce7fd2016-04-28 17:39:03 -07004072 public List<String> getShortcutIdsForItem(ItemInfo info) {
4073 if (!DeepShortcutManager.supportsShortcuts(info)) {
4074 return Collections.EMPTY_LIST;
4075 }
4076 ComponentName component = info.getTargetComponent();
Hyunyoung Songd3bf9802016-08-29 14:43:53 -07004077 if (component == null) {
4078 return Collections.EMPTY_LIST;
4079 }
4080
Tony Wickham1bce7fd2016-04-28 17:39:03 -07004081 List<String> ids = mDeepShortcutMap.get(new ComponentKey(component, info.user));
4082 return ids == null ? Collections.EMPTY_LIST : ids;
4083 }
4084
Tony Wickhambfbf7f92016-05-19 11:19:39 -07004085 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004086 * A package was updated.
4087 *
4088 * Implementation of the method from LauncherModel.Callbacks.
4089 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004090 public void bindAppsUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004091 Runnable r = new Runnable() {
4092 public void run() {
4093 bindAppsUpdated(apps);
4094 }
4095 };
4096 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004097 return;
4098 }
4099
Winson Chungb745afb2015-03-02 11:51:23 -08004100 if (mAppsView != null) {
4101 mAppsView.updateApps(apps);
Winson Chungc58497e2013-09-03 17:48:37 -07004102 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004103 }
4104
Sunny Goyal4390ace2014-10-13 11:33:11 -07004105 @Override
4106 public void bindWidgetsRestored(final ArrayList<LauncherAppWidgetInfo> widgets) {
4107 Runnable r = new Runnable() {
4108 public void run() {
4109 bindWidgetsRestored(widgets);
4110 }
4111 };
4112 if (waitUntilResume(r)) {
4113 return;
4114 }
4115 mWorkspace.widgetsRestored(widgets);
4116 }
4117
Joe Onorato9c1289c2009-08-17 11:03:03 -04004118 /**
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004119 * Some shortcuts were updated in the background.
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004120 * Implementation of the method from LauncherModel.Callbacks.
Sunny Goyald3b87ef2016-07-28 12:11:54 -07004121 *
4122 * @param updated list of shortcuts which have changed.
4123 * @param removed list of shortcuts which were deleted in the background. This can happen when
4124 * an app gets removed from the system or some of its components are no longer
4125 * available.
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004126 */
Sunny Goyal4390ace2014-10-13 11:33:11 -07004127 @Override
4128 public void bindShortcutsChanged(final ArrayList<ShortcutInfo> updated,
4129 final ArrayList<ShortcutInfo> removed, final UserHandleCompat user) {
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004130 Runnable r = new Runnable() {
4131 public void run() {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004132 bindShortcutsChanged(updated, removed, user);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004133 }
4134 };
4135 if (waitUntilResume(r)) {
4136 return;
4137 }
4138
Sunny Goyal4390ace2014-10-13 11:33:11 -07004139 if (!updated.isEmpty()) {
4140 mWorkspace.updateShortcuts(updated);
4141 }
4142
4143 if (!removed.isEmpty()) {
Sunny Goyald3b87ef2016-07-28 12:11:54 -07004144 HashSet<ComponentName> removedComponents = new HashSet<>();
4145 HashSet<ShortcutKey> removedDeepShortcuts = new HashSet<>();
4146
Sunny Goyal4390ace2014-10-13 11:33:11 -07004147 for (ShortcutInfo si : removed) {
Sunny Goyald3b87ef2016-07-28 12:11:54 -07004148 if (si.itemType == Favorites.ITEM_TYPE_DEEP_SHORTCUT) {
Tony Wickhamfc02c1b2016-08-29 15:17:48 -07004149 removedDeepShortcuts.add(ShortcutKey.fromShortcutInfo(si));
Sunny Goyald3b87ef2016-07-28 12:11:54 -07004150 } else {
4151 removedComponents.add(si.getTargetComponent());
4152 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004153 }
Sunny Goyald3b87ef2016-07-28 12:11:54 -07004154
4155 if (!removedComponents.isEmpty()) {
4156 ItemInfoMatcher matcher = ItemInfoMatcher.ofComponents(removedComponents, user);
4157 mWorkspace.removeItemsByMatcher(matcher);
4158 mDragController.onAppsRemoved(matcher);
4159 }
4160
4161 if (!removedDeepShortcuts.isEmpty()) {
4162 ItemInfoMatcher matcher = ItemInfoMatcher.ofShortcutKeys(removedDeepShortcuts);
4163 mWorkspace.removeItemsByMatcher(matcher);
4164 mDragController.onAppsRemoved(matcher);
4165 }
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004166 }
4167 }
4168
4169 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004170 * Update the state of a package, typically related to install state.
4171 *
4172 * Implementation of the method from LauncherModel.Callbacks.
4173 */
Sunny Goyale755d462014-07-22 13:48:29 -07004174 @Override
Sunny Goyal756adbc2015-04-16 15:20:51 -07004175 public void bindRestoreItemsChange(final HashSet<ItemInfo> updates) {
4176 Runnable r = new Runnable() {
4177 public void run() {
4178 bindRestoreItemsChange(updates);
4179 }
4180 };
4181 if (waitUntilResume(r)) {
4182 return;
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004183 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004184
Sunny Goyal756adbc2015-04-16 15:20:51 -07004185 mWorkspace.updateRestoreItems(updates);
Sunny Goyala22666f2014-09-18 13:25:15 -07004186 }
4187
4188 /**
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07004189 * A package was uninstalled/updated. We take both the super set of packageNames
Winson Chung83892cc2013-05-01 16:53:33 -07004190 * in addition to specific applications to remove, the reason being that
4191 * this can be called when a package is updated as well. In that scenario,
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07004192 * we only remove specific components from the workspace and hotseat, where as
Winson Chung83892cc2013-05-01 16:53:33 -07004193 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004194 */
Sunny Goyal1a745e82014-10-02 15:58:31 -07004195 @Override
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07004196 public void bindWorkspaceComponentsRemoved(
4197 final HashSet<String> packageNames, final HashSet<ComponentName> components,
4198 final UserHandleCompat user) {
Winson Chungd64d1762013-08-20 14:37:16 -07004199 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004200 public void run() {
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07004201 bindWorkspaceComponentsRemoved(packageNames, components, user);
Winson Chung83892cc2013-05-01 16:53:33 -07004202 }
Winson Chungd64d1762013-08-20 14:37:16 -07004203 };
4204 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07004205 return;
4206 }
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07004207 if (!packageNames.isEmpty()) {
Sunny Goyald3b87ef2016-07-28 12:11:54 -07004208 ItemInfoMatcher matcher = ItemInfoMatcher.ofPackages(packageNames, user);
4209 mWorkspace.removeItemsByMatcher(matcher);
4210 mDragController.onAppsRemoved(matcher);
4211
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07004212 }
4213 if (!components.isEmpty()) {
Sunny Goyald3b87ef2016-07-28 12:11:54 -07004214 ItemInfoMatcher matcher = ItemInfoMatcher.ofComponents(components, user);
4215 mWorkspace.removeItemsByMatcher(matcher);
4216 mDragController.onAppsRemoved(matcher);
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07004217 }
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07004218 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004219
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07004220 @Override
4221 public void bindAppInfosRemoved(final ArrayList<AppInfo> appInfos) {
4222 Runnable r = new Runnable() {
4223 public void run() {
4224 bindAppInfosRemoved(appInfos);
4225 }
4226 };
4227 if (waitUntilResume(r)) {
4228 return;
Joe Onorato36115782010-06-17 13:28:48 -04004229 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07004230
Winson Chungdf95eb12013-10-16 14:57:07 -07004231 // Update AllApps
Winson Chungb745afb2015-03-02 11:51:23 -08004232 if (mAppsView != null) {
4233 mAppsView.removeApps(appInfos);
Winson Chungc58497e2013-09-03 17:48:37 -07004234 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004235 }
Joe Onoratobe386092009-11-17 17:32:16 -08004236
Sunny Goyal2e1efb42016-03-03 16:58:55 -08004237 private Runnable mBindWidgetModelRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004238 public void run() {
Sunny Goyal2e1efb42016-03-03 16:58:55 -08004239 bindWidgetsModel(mWidgetsModel);
Winson Chung83892cc2013-05-01 16:53:33 -07004240 }
Michael Jurkac402cd92013-05-20 15:49:32 +02004241 };
Hyunyoung Song3f471442015-04-08 19:01:34 -07004242
Hyunyoung Song8821ca92015-05-04 16:28:20 -07004243 @Override
Sunny Goyal2e1efb42016-03-03 16:58:55 -08004244 public void bindWidgetsModel(WidgetsModel model) {
4245 if (waitUntilResume(mBindWidgetModelRunnable, true)) {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004246 mWidgetsModel = model;
Winson Chung83892cc2013-05-01 16:53:33 -07004247 return;
4248 }
4249
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004250 if (mWidgetsView != null && model != null) {
4251 mWidgetsView.addWidgets(model);
4252 mWidgetsModel = null;
Winson Chung785d2eb2011-04-14 16:08:02 -07004253 }
Winson Chung80baf5a2010-08-09 16:03:15 -07004254 }
4255
Sunny Goyal2e1efb42016-03-03 16:58:55 -08004256 @Override
4257 public void notifyWidgetProvidersChanged() {
4258 if (mWorkspace.getState().shouldUpdateWidget) {
4259 mModel.refreshAndBindWidgetsAndShortcuts(this, mWidgetsView.isEmpty());
4260 }
4261 }
4262
Winson Chung400438b2011-01-16 17:53:48 -08004263 private int mapConfigurationOriActivityInfoOri(int configOri) {
4264 final Display d = getWindowManager().getDefaultDisplay();
4265 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
4266 switch (d.getRotation()) {
4267 case Surface.ROTATION_0:
4268 case Surface.ROTATION_180:
4269 // We are currently in the same basic orientation as the natural orientation
4270 naturalOri = configOri;
4271 break;
4272 case Surface.ROTATION_90:
4273 case Surface.ROTATION_270:
4274 // We are currently in the other basic orientation to the natural orientation
4275 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
4276 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
4277 break;
4278 }
4279
4280 int[] oriMap = {
4281 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
4282 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
4283 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
4284 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
4285 };
4286 // Since the map starts at portrait, we need to offset if this device's natural orientation
4287 // is landscape.
4288 int indexOffset = 0;
4289 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
4290 indexOffset = 1;
4291 }
4292 return oriMap[(d.getRotation() + indexOffset) % 4];
4293 }
Adam Cohen446e9402011-09-15 18:21:21 -07004294
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004295 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR2)
Winson Chung4b919f82012-05-01 10:44:08 -07004296 public void lockScreenOrientation() {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004297 if (mRotationEnabled) {
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004298 if (Utilities.ATLEAST_JB_MR2) {
4299 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LOCKED);
4300 } else {
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004301 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
4302 .getConfiguration().orientation));
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004303 }
Winson Chung4b919f82012-05-01 10:44:08 -07004304 }
4305 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004306
Winson Chung4b919f82012-05-01 10:44:08 -07004307 public void unlockScreenOrientation(boolean immediate) {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004308 if (mRotationEnabled) {
Winson Chung4b919f82012-05-01 10:44:08 -07004309 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07004310 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07004311 } else {
4312 mHandler.postDelayed(new Runnable() {
4313 public void run() {
4314 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4315 }
Sunny Goyal756cd262015-08-20 12:33:21 -07004316 }, RESTORE_SCREEN_ORIENTATION_DELAY);
Winson Chung641d71d2012-04-26 15:58:01 -07004317 }
Winson Chung4b919f82012-05-01 10:44:08 -07004318 }
Winson Chung400438b2011-01-16 17:53:48 -08004319 }
4320
Hyunyoung Songc001cf52016-07-21 17:32:43 -07004321 private void markAppsViewShown() {
4322 if (mSharedPrefs.getBoolean(APPS_VIEW_SHOWN, false)) {
4323 return;
4324 }
4325 mSharedPrefs.edit().putBoolean(APPS_VIEW_SHOWN, true).apply();
4326 }
4327
4328 private boolean shouldShowDiscoveryBounce() {
4329 if (mState != mState.WORKSPACE) {
4330 return false;
4331 }
4332 if (mLauncherCallbacks != null && mLauncherCallbacks.shouldShowDiscoveryBounce()) {
4333 return true;
4334 }
4335 if (!mIsResumeFromActionScreenOff) {
4336 return false;
4337 }
4338 if (mSharedPrefs.getBoolean(APPS_VIEW_SHOWN, false)) {
4339 return false;
4340 }
4341 return true;
4342 }
4343
Winson Chung5ffd51d2015-06-25 11:36:50 -07004344 // TODO: These method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004345 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Mathew Inwood72fbec12013-11-19 15:45:07 +00004346 public ItemInfo createAppDragInfo(Intent appLaunchIntent) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004347 // Called from search suggestion
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004348 UserHandleCompat user = null;
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004349 if (Utilities.ATLEAST_LOLLIPOP) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004350 UserHandle userHandle = appLaunchIntent.getParcelableExtra(Intent.EXTRA_USER);
4351 if (userHandle != null) {
4352 user = UserHandleCompat.fromUser(userHandle);
4353 }
4354 }
4355 return createAppDragInfo(appLaunchIntent, user);
Winson Chung5ffd51d2015-06-25 11:36:50 -07004356 }
4357
4358 // TODO: This method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004359 public ItemInfo createAppDragInfo(Intent intent, UserHandleCompat user) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004360 if (user == null) {
4361 user = UserHandleCompat.myUserHandle();
4362 }
4363
4364 // Called from search suggestion, add the profile extra to the intent to ensure that we
4365 // can launch it correctly
Kenny Guyed131872014-04-30 03:02:21 +01004366 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004367 LauncherActivityInfoCompat activityInfo = launcherApps.resolveActivity(intent, user);
Kenny Guyed131872014-04-30 03:02:21 +01004368 if (activityInfo == null) {
Mathew Inwood72fbec12013-11-19 15:45:07 +00004369 return null;
4370 }
Winson Chung5ffd51d2015-06-25 11:36:50 -07004371 return new AppInfo(this, activityInfo, user, mIconCache);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004372 }
4373
Winson Chung5ffd51d2015-06-25 11:36:50 -07004374 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004375 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4376 Bitmap icon) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004377 return new ShortcutInfo(shortcutIntent, caption, caption, icon,
Kenny Guyed131872014-04-30 03:02:21 +01004378 UserHandleCompat.myUserHandle());
4379 }
4380
Winson Chung5ffd51d2015-06-25 11:36:50 -07004381 protected void moveWorkspaceToDefaultScreen() {
4382 mWorkspace.moveToDefaultScreen(false);
4383 }
4384
Winson Chung80baf5a2010-08-09 16:03:15 -07004385 /**
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004386 * Returns a FastBitmapDrawable with the icon, accurately sized.
4387 */
4388 public FastBitmapDrawable createIconDrawable(Bitmap icon) {
4389 FastBitmapDrawable d = new FastBitmapDrawable(icon);
4390 d.setFilterBitmap(true);
4391 resizeIconDrawable(d);
4392 return d;
4393 }
4394
4395 /**
4396 * Resizes an icon drawable to the correct icon size.
4397 */
Winson5fbe0742015-09-30 15:33:00 -07004398 public Drawable resizeIconDrawable(Drawable icon) {
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004399 icon.setBounds(0, 0, mDeviceProfile.iconSizePx, mDeviceProfile.iconSizePx);
Winson5fbe0742015-09-30 15:33:00 -07004400 return icon;
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004401 }
4402
4403 /**
Joe Onoratobe386092009-11-17 17:32:16 -08004404 * Prints out out state for debugging.
4405 */
4406 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04004407 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08004408 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08004409 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
Sunny Goyal2100c782016-08-22 16:00:03 -07004410 Log.d(TAG, "mPendingRequestArgs=" + mPendingRequestArgs);
4411 Log.d(TAG, "mPendingActivityResult=" + mPendingActivityResult);
Joe Onoratobe386092009-11-17 17:32:16 -08004412 mModel.dumpState();
Hyunyoung Song3f471442015-04-08 19:01:34 -07004413 // TODO(hyunyoungs): add mWidgetsView.dumpState(); or mWidgetsModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07004414
Daniel Sandler325dc232013-06-05 22:57:57 -04004415 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08004416 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004417
4418 @Override
4419 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
4420 super.dump(prefix, fd, writer, args);
Sunny Goyala1365452015-10-01 15:46:24 -07004421 // Dump workspace
4422 writer.println(prefix + "Workspace Items");
4423 for (int i = mWorkspace.numCustomPages(); i < mWorkspace.getPageCount(); i++) {
4424 writer.println(prefix + " Homescreen " + i);
4425
4426 ViewGroup layout = ((CellLayout) mWorkspace.getPageAt(i)).getShortcutsAndWidgets();
4427 for (int j = 0; j < layout.getChildCount(); j++) {
4428 Object tag = layout.getChildAt(j).getTag();
4429 if (tag != null) {
4430 writer.println(prefix + " " + tag.toString());
4431 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004432 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004433 }
Sunny Goyala1365452015-10-01 15:46:24 -07004434
4435 writer.println(prefix + " Hotseat");
4436 ViewGroup layout = mHotseat.getLayout().getShortcutsAndWidgets();
4437 for (int j = 0; j < layout.getChildCount(); j++) {
4438 Object tag = layout.getChildAt(j).getTag();
4439 if (tag != null) {
4440 writer.println(prefix + " " + tag.toString());
4441 }
4442 }
4443
Sunny Goyal713edfc2016-05-06 09:58:34 -07004444 try {
4445 FileLog.flushAll(writer);
4446 } catch (Exception e) {
4447 // Ignore
Sunny Goyala1365452015-10-01 15:46:24 -07004448 }
4449
Adam Cohen9211d422014-10-07 18:14:53 -07004450 if (mLauncherCallbacks != null) {
4451 mLauncherCallbacks.dump(prefix, fd, writer, args);
4452 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004453 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004454
Adam Cohen59400422014-03-05 18:07:04 -08004455 public static CustomAppWidget getCustomAppWidget(String name) {
4456 return sCustomAppWidgets.get(name);
4457 }
4458
4459 public static HashMap<String, CustomAppWidget> getCustomAppWidgets() {
4460 return sCustomAppWidgets;
4461 }
4462
Andrew Sappersteinabef55a2016-06-19 12:49:00 -07004463 public static Launcher getLauncher(Context context) {
4464 if (context instanceof Launcher) {
4465 return (Launcher) context;
4466 }
4467 return ((Launcher) ((ContextWrapper) context).getBaseContext());
4468 }
4469
Sunny Goyal745bad92016-05-02 10:54:12 -07004470 private class RotationPrefChangeHandler implements OnSharedPreferenceChangeListener, Runnable {
4471
4472 @Override
4473 public void onSharedPreferenceChanged(
4474 SharedPreferences sharedPreferences, String key) {
4475 if (Utilities.ALLOW_ROTATION_PREFERENCE_KEY.equals(key)) {
4476 mRotationEnabled = Utilities.isAllowRotationPrefEnabled(getApplicationContext());
4477 if (!waitUntilResume(this, true)) {
4478 run();
4479 }
4480 }
4481 }
4482
4483 @Override
4484 public void run() {
4485 setOrientation();
4486 }
4487 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004488}