blob: b16a6500cd3aea09b42e31e9571efc5251736afc [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;
Brett Chabot2a9e2282011-08-23 15:03:13 -070028import android.app.ActivityManager;
Winson Chungc7450e32012-04-17 17:34:08 -070029import android.app.ActivityOptions;
Chris Wren40c5ed32014-06-24 18:24:23 -040030import android.app.AlertDialog;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080031import android.app.SearchManager;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080032import android.appwidget.AppWidgetHostView;
Michael Jurkaaf442092010-06-10 17:01:57 -070033import android.appwidget.AppWidgetManager;
34import android.appwidget.AppWidgetProviderInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080035import android.content.ActivityNotFoundException;
Joe Onorato2ca0ae72009-11-10 13:14:13 -080036import android.content.BroadcastReceiver;
Michael Jurkae326f182011-11-21 14:05:46 -080037import android.content.ComponentCallbacks2;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040038import android.content.ComponentName;
Sunny Goyal756cd262015-08-20 12:33:21 -070039import android.content.ContentValues;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080040import android.content.Context;
Chris Wren40c5ed32014-06-24 18:24:23 -040041import android.content.DialogInterface;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080042import android.content.Intent;
Winson Chungf0ea4d32011-06-06 14:27:16 -070043import android.content.IntentFilter;
Adam Cohen173f7112015-03-27 15:14:00 -070044import android.content.IntentSender;
Winson Chung82f55532011-08-09 14:14:23 -070045import android.content.SharedPreferences;
Winson Chungaafa03c2010-06-11 17:34:16 -070046import android.content.pm.ActivityInfo;
Winson Chunge43a1e72014-01-15 10:33:02 -080047import android.content.pm.ApplicationInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080048import android.content.pm.PackageManager;
Adam Cohen716b51e2011-06-30 12:09:54 -070049import android.content.pm.PackageManager.NameNotFoundException;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080050import android.content.res.Configuration;
Adam Cohen3f9c9712014-10-31 11:48:25 -070051import android.database.sqlite.SQLiteDatabase;
Adam Cohen268c4752012-06-06 17:47:33 -070052import android.graphics.Bitmap;
53import android.graphics.Canvas;
Sandeep Siddhartha2efc7d92014-05-16 17:21:15 -070054import android.graphics.Color;
Tony Wickhama3c74d12015-10-23 11:43:47 -070055import android.graphics.Point;
Adam Cohen268c4752012-06-06 17:47:33 -070056import android.graphics.PorterDuff;
Michael Jurkaaf442092010-06-10 17:01:57 -070057import android.graphics.Rect;
Sunny Goyal4a6c6f32015-05-19 12:36:46 -070058import android.graphics.drawable.ColorDrawable;
Michael Jurkaaf442092010-06-10 17:01:57 -070059import android.graphics.drawable.Drawable;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -070060import android.os.AsyncTask;
Adam Cohen0f668f32014-09-08 19:54:17 +020061import android.os.Build;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080062import android.os.Bundle;
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +020063import android.os.Environment;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080064import android.os.Handler;
Adam Cohended9f8d2010-11-03 13:25:16 -070065import android.os.Message;
Winson Chunga2413752012-04-03 14:22:34 -070066import android.os.StrictMode;
Daniel Sandler843e8602010-06-07 14:59:01 -040067import android.os.SystemClock;
Sunny Goyala1d1bf32015-06-26 13:24:53 -070068import android.os.UserHandle;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080069import android.text.Selection;
70import android.text.SpannableStringBuilder;
Michael Jurkaa33411c2012-06-14 16:18:21 -070071import android.text.TextUtils;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080072import android.text.method.TextKeyListener;
Joe Onorato7c312c12009-08-13 21:36:53 -070073import android.util.Log;
Adam Cohen96d30a12013-07-16 18:13:21 -070074import android.view.Display;
Adam Cohen96d30a12013-07-16 18:13:21 -070075import android.view.HapticFeedbackConstants;
76import android.view.KeyEvent;
Adam Cohen96d30a12013-07-16 18:13:21 -070077import android.view.Menu;
Adam Cohen96d30a12013-07-16 18:13:21 -070078import android.view.MotionEvent;
79import android.view.Surface;
80import android.view.View;
Adam Cohenf358a4b2013-07-23 16:47:31 -070081import android.view.View.OnClickListener;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080082import android.view.View.OnLongClickListener;
Adam Cohen96d30a12013-07-16 18:13:21 -070083import android.view.ViewGroup;
84import android.view.ViewTreeObserver;
Adam Cohen96d30a12013-07-16 18:13:21 -070085import android.view.WindowManager;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -080086import android.view.accessibility.AccessibilityEvent;
Sunny Goyal5a1f53b2015-05-27 10:24:24 -070087import android.view.animation.OvershootInterpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080088import android.view.inputmethod.InputMethodManager;
Adam Cohen96d30a12013-07-16 18:13:21 -070089import android.widget.Advanceable;
Adam Cohen96d30a12013-07-16 18:13:21 -070090import android.widget.ImageView;
Chet Haasea8f996d2015-02-17 12:56:04 -080091import android.widget.TextView;
Adam Cohen96d30a12013-07-16 18:13:21 -070092import android.widget.Toast;
Sunny Goyala1d1bf32015-06-26 13:24:53 -070093
Sunny Goyal651077b2014-06-30 14:15:31 -070094import com.android.launcher3.DropTarget.DragObject;
95import com.android.launcher3.PagedView.PageSwitchListener;
Winson Chung5f4e0fd2015-05-22 11:12:27 -070096import com.android.launcher3.allapps.AllAppsContainerView;
Sunny Goyal0ac7ede2016-01-29 13:14:14 -080097import com.android.launcher3.allapps.DefaultAppSearchController;
Sunny Goyalffe83f12014-08-14 17:39:34 -070098import com.android.launcher3.compat.AppWidgetManagerCompat;
Kenny Guyed131872014-04-30 03:02:21 +010099import com.android.launcher3.compat.LauncherActivityInfoCompat;
100import com.android.launcher3.compat.LauncherAppsCompat;
101import com.android.launcher3.compat.UserHandleCompat;
102import com.android.launcher3.compat.UserManagerCompat;
Tony Wickhame0c33232016-02-08 11:37:04 -0800103import com.android.launcher3.config.FeatureFlags;
Sunny Goyal6c56c682015-07-16 14:09:05 -0700104import com.android.launcher3.config.ProviderConfig;
Vadim Tryshevfedca432015-08-19 17:55:02 -0700105import com.android.launcher3.dragndrop.DragController;
106import com.android.launcher3.dragndrop.DragLayer;
107import com.android.launcher3.dragndrop.DragView;
Sunny Goyal26119432016-02-18 22:09:23 +0000108import com.android.launcher3.folder.Folder;
109import com.android.launcher3.folder.FolderIcon;
Sunny Goyald5bd67d2016-03-11 01:10:19 -0800110import com.android.launcher3.logging.LoggerUtils;
Hyunyoung Song8fd5e932016-03-08 16:55:47 -0800111import com.android.launcher3.logging.UserEventLogger;
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700112import com.android.launcher3.model.WidgetsModel;
Hyunyoung Song8fd5e932016-03-08 16:55:47 -0800113import com.android.launcher3.userevent.nano.LauncherLogProto;
Winson Chung6b1c73f2015-06-18 11:38:42 -0700114import com.android.launcher3.util.ComponentKey;
Sunny Goyale2df0622015-04-24 11:27:00 -0700115import com.android.launcher3.util.LongArrayMap;
Sunny Goyal322d5562015-06-25 19:35:49 -0700116import com.android.launcher3.util.TestingUtils;
Adam Cohen091440a2015-03-18 14:16:05 -0700117import com.android.launcher3.util.Thunk;
Sunny Goyal527c7d32015-08-28 15:19:36 -0700118import com.android.launcher3.util.ViewOnDrawExecutor;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700119import com.android.launcher3.widget.PendingAddWidgetInfo;
Hyunyoung Songb99ff3e2015-04-23 15:17:50 -0700120import com.android.launcher3.widget.WidgetHostViewLoader;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700121import com.android.launcher3.widget.WidgetsContainerView;
Adam Cohen6c5891a2014-07-09 23:53:15 -0700122
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700123import java.io.FileDescriptor;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700124import java.io.PrintWriter;
Adam Cohen4caf2982013-08-20 18:54:31 -0700125import java.text.DateFormat;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700126import java.util.ArrayList;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700127import java.util.Collection;
Sunny Goyal29538332016-02-18 09:10:19 -0800128import java.util.Collections;
Adam Cohen4caf2982013-08-20 18:54:31 -0700129import java.util.Date;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700130import java.util.HashMap;
Sunny Goyal4390ace2014-10-13 11:33:11 -0700131import java.util.HashSet;
Michael Jurkad7c28052012-04-27 15:43:36 -0700132import java.util.List;
Hyunyoung Song8fd5e932016-03-08 16:55:47 -0800133import java.util.Locale;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700134
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800135/**
136 * Default launcher application.
137 */
Bjorn Bringertc459e522013-06-07 19:36:01 +0100138public class Launcher extends Activity
Michael Jurka0e260592010-06-30 17:07:39 -0700139 implements View.OnClickListener, OnLongClickListener, LauncherModel.Callbacks,
Winson Chung006ee262015-08-03 14:40:11 -0700140 View.OnTouchListener, PageSwitchListener, LauncherProviderChangeListener {
Vadim Tryshevfedca432015-08-19 17:55:02 -0700141 public static final String TAG = "Launcher";
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700142 static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800143
Daniel Sandlerf061f822013-06-27 13:59:36 -0400144 static final boolean PROFILE_STARTUP = false;
Sunny Goyalc84e6e12015-10-02 12:48:37 -0700145 static final boolean DEBUG_WIDGETS = false;
Winson Chunga2413752012-04-03 14:22:34 -0700146 static final boolean DEBUG_STRICT_MODE = false;
Daniel Sandlerf061f822013-06-27 13:59:36 -0400147 static final boolean DEBUG_RESUME_TIME = false;
Romain Guy6fefcf12009-06-11 13:07:43 -0700148
Dan Sandlerd5024042014-01-09 15:01:33 -0500149 static final boolean ENABLE_DEBUG_INTENTS = false; // allow DebugIntents to run
150
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800151 private static final int REQUEST_CREATE_SHORTCUT = 1;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700152 private static final int REQUEST_CREATE_APPWIDGET = 5;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700153 private static final int REQUEST_PICK_APPWIDGET = 9;
Mike Clerona0618e42009-10-22 13:55:21 -0700154 private static final int REQUEST_PICK_WALLPAPER = 10;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800155
Michael Jurka8b805b12012-04-18 14:23:14 -0700156 private static final int REQUEST_BIND_APPWIDGET = 11;
Sunny Goyalff572272014-07-23 13:58:07 -0700157 private static final int REQUEST_RECONFIGURE_APPWIDGET = 12;
Michael Jurka8b805b12012-04-18 14:23:14 -0700158
Sunny Goyal28c6b962015-10-12 11:42:05 -0700159 private static final int REQUEST_PERMISSION_CALL_PHONE = 13;
160
Sunny Goyal4a6c6f32015-05-19 12:36:46 -0700161 private static final int WORKSPACE_BACKGROUND_GRADIENT = 0;
162 private static final int WORKSPACE_BACKGROUND_TRANSPARENT = 1;
163 private static final int WORKSPACE_BACKGROUND_BLACK = 2;
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
174 // adb shell setprop log.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
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800181 // Type: int
182 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
Michael Jurka883f55b2010-10-21 15:47:14 -0700183 // Type: int
184 private static final String RUNTIME_STATE = "launcher.state";
Sunny Goyal756cd262015-08-20 12:33:21 -0700185 // Type: Content Values / parcelable
186 private static final String RUNTIME_STATE_PENDING_ADD_ITEM = "launcher.add_item";
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700187 // Type: parcelable
188 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_INFO = "launcher.add_widget_info";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000189 // Type: parcelable
Adam Cohen4637b5a2013-11-04 18:21:24 -0800190 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_ID = "launcher.add_widget_id";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800191
Adam Cohen432609a2014-03-13 17:03:22 -0700192 static final String INTRO_SCREEN_DISMISSED = "launcher.intro_screen_dismissed";
Adam Cohenb54a5982014-01-08 15:21:04 -0800193 static final String FIRST_RUN_ACTIVITY_DISPLAYED = "launcher.first_run_activity_displayed";
194
Adam Cohen3ed316a2014-07-23 18:21:20 -0700195 static final String FIRST_LOAD_COMPLETE = "launcher.first_load_complete";
196 static final String ACTION_FIRST_LOAD_COMPLETE =
197 "com.android.launcher3.action.FIRST_LOAD_COMPLETE";
198
Sunny Goyal594d76d2014-11-06 10:12:54 -0800199 private static final String QSB_WIDGET_ID = "qsb_widget_id";
200 private static final String QSB_WIDGET_PROVIDER = "qsb_widget_provider";
201
Winson Chunga6945242014-01-08 14:04:34 -0800202 public static final String USER_HAS_MIGRATED = "launcher.user_migrated_from_old_data";
203
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700204 /** The different states that Launcher can be in. */
Tony Wickham94e0d372015-09-11 12:17:48 -0700205 enum State { NONE, WORKSPACE, WORKSPACE_SPRING_LOADED, APPS, APPS_SPRING_LOADED,
206 WIDGETS, WIDGETS_SPRING_LOADED }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700207
Adam Cohen091440a2015-03-18 14:16:05 -0700208 @Thunk State mState = State.WORKSPACE;
Adam Cohen091440a2015-03-18 14:16:05 -0700209 @Thunk LauncherStateTransitionAnimation mStateTransitionAnimation;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700210
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700211 private boolean mIsSafeModeEnabled;
212
Joe Onorato9c1289c2009-08-17 11:03:03 -0400213 static final int APPWIDGET_HOST_ID = 1024;
Adam Cohen4f8071b2016-02-13 16:06:05 -0800214 public static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 500;
Adam Cohenad4e15c2013-10-17 16:21:35 -0700215 private static final int ON_ACTIVITY_RESULT_ANIMATION_DELAY = 500;
Adam Cohen646fdf72014-04-08 16:59:36 -0700216 private static final int ACTIVITY_START_DELAY = 1000;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800217
Winson Chunga2413752012-04-03 14:22:34 -0700218 // How long to wait before the new-shortcut animation automatically pans the workspace
Winson Chung94d67682013-09-25 16:29:40 -0700219 private static int NEW_APPS_PAGE_MOVE_DELAY = 500;
220 private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 5;
Adam Cohen091440a2015-03-18 14:16:05 -0700221 @Thunk static int NEW_APPS_ANIMATION_DELAY = 500;
Winson Chunga2413752012-04-03 14:22:34 -0700222
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800223 private final BroadcastReceiver mCloseSystemDialogsReceiver
224 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800225
Adam Cohen091440a2015-03-18 14:16:05 -0700226 @Thunk Workspace mWorkspace;
Craig Mautner360310b2012-10-26 15:13:08 -0700227 private View mLauncherView;
Winson Chunga6945242014-01-08 14:04:34 -0800228 private View mPageIndicators;
Adam Cohen091440a2015-03-18 14:16:05 -0700229 @Thunk DragLayer mDragLayer;
Michael Jurkab737ee62011-11-15 15:57:22 -0800230 private DragController mDragController;
Sunny Goyal322d5562015-06-25 19:35:49 -0700231
232 public View mWeightWatcher;
Romain Guycbb89e42009-06-08 15:52:54 -0700233
Sunny Goyalffe83f12014-08-14 17:39:34 -0700234 private AppWidgetManagerCompat mAppWidgetManager;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700235 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700236
Sunny Goyalaa8ef112015-06-12 20:04:41 -0700237 @Thunk final ItemInfo mPendingAddInfo = new ItemInfo();
Adam Cohen59400422014-03-05 18:07:04 -0800238 private LauncherAppWidgetProviderInfo mPendingAddWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800239 private int mPendingAddWidgetId = -1;
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700240
Michael Jurka0280c3b2010-09-17 15:00:07 -0700241 private int[] mTmpAddItemCellCoordinates = new int[2];
242
Sunny Goyal316490e2015-06-02 09:38:28 -0700243 @Thunk Hotseat mHotseat;
Jorim Jaggid017f882014-01-14 17:08:48 -0800244 private ViewGroup mOverviewPanel;
Adam Cohenf358a4b2013-07-23 16:47:31 -0700245
Michael Jurka838a4ca2011-02-07 13:33:06 -0800246 private View mAllAppsButton;
Hyunyoung Song98ff38a2015-07-10 17:50:13 -0700247 private View mWidgetsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700248
Winson Chungc51db6a2011-10-05 11:44:49 -0700249 private SearchDropTargetBar mSearchDropTargetBar;
Tony Wickham34d2c912015-09-11 09:27:58 -0700250 private AppInfoDropTargetBar mAppInfoDropTargetBar;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700251
252 // Main container view for the all apps screen.
Winson Chung5f4e0fd2015-05-22 11:12:27 -0700253 @Thunk AllAppsContainerView mAppsView;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700254
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700255 // Main container view and the model for the widget tray screen.
256 @Thunk WidgetsContainerView mWidgetsView;
257 @Thunk WidgetsModel mWidgetsModel;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700258
Sunny Goyal594d76d2014-11-06 10:12:54 -0800259 private AppWidgetHostView mQsb;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800260
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800261 private Bundle mSavedState;
Winson Chung4a2afa32012-07-19 14:53:05 -0700262 // We set the state in both onCreate and then onNewIntent in some cases, which causes both
263 // scroll issues (because the workspace may not have been measured yet) and extra work.
264 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
265 private State mOnResumeState = State.NONE;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800266
267 private SpannableStringBuilder mDefaultKeySsb = null;
268
Adam Cohen091440a2015-03-18 14:16:05 -0700269 @Thunk boolean mWorkspaceLoading = true;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400270
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800271 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800272 private boolean mRestoring;
273 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700274 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800275
Michael Jurka1e2f4652013-07-08 18:03:46 -0700276 private ArrayList<Runnable> mBindOnResumeCallbacks = new ArrayList<Runnable>();
Michael Jurka7607c2f2013-04-03 14:33:19 -0700277 private ArrayList<Runnable> mOnResumeCallbacks = new ArrayList<Runnable>();
Sunny Goyal527c7d32015-08-28 15:19:36 -0700278 private ViewOnDrawExecutor mPendingExecutor;
Michael Jurka7607c2f2013-04-03 14:33:19 -0700279
Joe Onorato9c1289c2009-08-17 11:03:03 -0400280 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800281 private IconCache mIconCache;
Adam Cohen091440a2015-03-18 14:16:05 -0700282 @Thunk boolean mUserPresent = true;
Adam Cohend113e0c2010-11-11 10:48:05 -0800283 private boolean mVisible = false;
Adam Cohened307df2013-10-02 09:37:31 -0700284 private boolean mHasFocus = false;
Adam Cohend113e0c2010-11-11 10:48:05 -0800285 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400286
Sunny Goyal639e9062015-08-19 19:17:06 -0700287 private LauncherClings mClings;
288
Sunny Goyale2df0622015-04-24 11:27:00 -0700289 private static LongArrayMap<FolderInfo> sFolders = new LongArrayMap<>();
Romain Guycbb89e42009-06-08 15:52:54 -0700290
Adam Cohen61f560d2013-09-30 15:58:20 -0700291 private View.OnTouchListener mHapticFeedbackTouchListener;
292
Adam Cohended9f8d2010-11-03 13:25:16 -0700293 // Related to the auto-advancing of widgets
294 private final int ADVANCE_MSG = 1;
Sunny Goyal756cd262015-08-20 12:33:21 -0700295 private static final int ADVANCE_INTERVAL = 20000;
296 private static final int ADVANCE_STAGGER = 250;
297
298 private boolean mAutoAdvanceRunning = false;
Adam Cohended9f8d2010-11-03 13:25:16 -0700299 private long mAutoAdvanceSentTime;
300 private long mAutoAdvanceTimeLeft = -1;
Sunny Goyal756cd262015-08-20 12:33:21 -0700301 @Thunk HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance = new HashMap<>();
Adam Cohended9f8d2010-11-03 13:25:16 -0700302
Winson Chung400438b2011-01-16 17:53:48 -0800303 // Determines how long to wait after a rotation before restoring the screen orientation to
304 // match the sensor state.
Sunny Goyal756cd262015-08-20 12:33:21 -0700305 private static final int RESTORE_SCREEN_ORIENTATION_DELAY = 500;
Winson Chung400438b2011-01-16 17:53:48 -0800306
Adam Cohen091440a2015-03-18 14:16:05 -0700307 @Thunk Drawable mWorkspaceBackgroundDrawable;
Craig Mautner360310b2012-10-26 15:13:08 -0700308
Adam Cohen1462de32012-07-24 22:34:36 -0700309 private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700310 private static final boolean DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE = false;
Adam Cohen1462de32012-07-24 22:34:36 -0700311
Sunny Goyala1365452015-10-01 15:46:24 -0700312 private static final ArrayList<String> sDumpLogs = new ArrayList<String>();
313 private static final Date sDateStamp = new Date();
314 private static final DateFormat sDateFormat =
Adam Cohen4caf2982013-08-20 18:54:31 -0700315 DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700316
Winson Chung46353de2012-02-16 14:05:10 -0800317 // We only want to get the SharedPreferences once since it does an FS stat each time we get
318 // it from the context.
319 private SharedPreferences mSharedPrefs;
320
Winson Chungf0c6ae02012-03-21 16:10:31 -0700321 // Holds the page that we need to animate to, and the icon views that we need to animate up
322 // when we scroll to that page on resume.
Adam Cohen091440a2015-03-18 14:16:05 -0700323 @Thunk ImageView mFolderIconImageView;
Adam Cohen268c4752012-06-06 17:47:33 -0700324 private Bitmap mFolderIconBitmap;
325 private Canvas mFolderIconCanvas;
326 private Rect mRectForFolderAnimation = new Rect();
Adam Cohen2801caf2011-05-13 20:57:39 -0700327
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700328 private DeviceProfile mDeviceProfile;
329
Adam Cohen4b66bf32015-09-18 12:15:19 -0700330 private boolean mMoveToDefaultScreenFromNewIntent;
331
Winson Chung13eb5272015-05-11 16:30:13 -0700332 // This is set to the view that launched the activity that navigated the user away from
333 // launcher. Since there is no callback for when the activity has finished launching, enable
334 // the press state and keep this reference to reset the press state when we return to launcher.
Michael Jurkaddd62e92011-02-16 17:49:14 -0800335 private BubbleTextView mWaitingForResume;
336
Adam Cohen59400422014-03-05 18:07:04 -0800337 protected static HashMap<String, CustomAppWidget> sCustomAppWidgets =
338 new HashMap<String, CustomAppWidget>();
339
Adam Cohen59400422014-03-05 18:07:04 -0800340 static {
Sunny Goyal322d5562015-06-25 19:35:49 -0700341 if (TestingUtils.ENABLE_CUSTOM_WIDGET_TEST) {
342 TestingUtils.addDummyWidget(sCustomAppWidgets);
Adam Cohen59400422014-03-05 18:07:04 -0800343 }
344 }
345
Adam Cohen091440a2015-03-18 14:16:05 -0700346 @Thunk Runnable mBuildLayersRunnable = new Runnable() {
Michael Jurkac1f5d262011-09-30 19:32:27 -0700347 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700348 if (mWorkspace != null) {
349 mWorkspace.buildPageHardwareLayers();
350 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700351 }
352 };
353
Adam Cohendb364c32014-05-20 14:23:40 -0700354 private static PendingAddArguments sPendingAddItem;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800355
Adam Cohen091440a2015-03-18 14:16:05 -0700356 @Thunk static class PendingAddArguments {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800357 int requestCode;
358 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700359 long container;
Adam Cohendcd297f2013-06-18 13:13:40 -0700360 long screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800361 int cellX;
362 int cellY;
Adam Cohendb364c32014-05-20 14:23:40 -0700363 int appWidgetId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800364 }
365
Daniel Sandlerff02d492013-08-05 02:12:05 -0400366 private Stats mStats;
Hyunyoung Song8fd5e932016-03-08 16:55:47 -0800367 private UserEventLogger mUserEventLogger;
Hyunyoung Songfbf19cc2016-02-19 12:14:47 -0800368
Adam Cohenf9c184a2016-01-15 16:47:43 -0800369 public FocusIndicatorView mFocusHandler;
Sunny Goyal7779d622015-06-11 16:18:39 -0700370 private boolean mRotationEnabled = false;
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400371
372 @Thunk void setOrientation() {
373 if (mRotationEnabled) {
374 unlockScreenOrientation(true);
375 } else {
376 setRequestedOrientation(
377 ActivityInfo.SCREEN_ORIENTATION_NOSENSOR);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700378 }
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400379 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700380
Sunny Goyal7779d622015-06-11 16:18:39 -0700381 private Runnable mUpdateOrientationRunnable = new Runnable() {
382 public void run() {
383 setOrientation();
384 }
385 };
386
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800387 @Override
388 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700389 if (DEBUG_STRICT_MODE) {
390 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
391 .detectDiskReads()
392 .detectDiskWrites()
393 .detectNetwork() // or .detectAll() for all detectable problems
394 .penaltyLog()
395 .build());
396 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
397 .detectLeakedSqlLiteObjects()
398 .detectLeakedClosableObjects()
399 .penaltyLog()
400 .penaltyDeath()
401 .build());
402 }
403
Adam Cohen9211d422014-10-07 18:14:53 -0700404 if (mLauncherCallbacks != null) {
405 mLauncherCallbacks.preOnCreate();
406 }
407
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800408 super.onCreate(savedInstanceState);
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400409
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400410 LauncherAppState app = LauncherAppState.getInstance();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700411
Adam Cohen2e6da152015-05-06 11:42:25 -0700412 // Load configuration-specific DeviceProfile
Sunny Goyalc6205602015-05-21 20:46:33 -0700413 mDeviceProfile = getResources().getConfiguration().orientation
414 == Configuration.ORIENTATION_LANDSCAPE ?
Tony Wickham3a3517f2015-10-06 11:27:04 -0700415 app.getInvariantDeviceProfile().landscapeProfile
416 : app.getInvariantDeviceProfile().portraitProfile;
Sunny Goyalc6205602015-05-21 20:46:33 -0700417
Sunny Goyalf7258242015-10-19 16:59:07 -0700418 mSharedPrefs = Utilities.getPrefs(this);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700419 mIsSafeModeEnabled = getPackageManager().isSafeMode();
Joe Onorato0589f0f2010-02-08 13:44:00 -0800420 mModel = app.setLauncher(this);
421 mIconCache = app.getIconCache();
Adam Cohen2e6da152015-05-06 11:42:25 -0700422
Joe Onorato41a12d22009-10-31 18:30:00 -0400423 mDragController = new DragController(this);
Winson Chung006ee262015-08-03 14:40:11 -0700424 mStateTransitionAnimation = new LauncherStateTransitionAnimation(this);
Romain Guycbb89e42009-06-08 15:52:54 -0700425
Daniel Sandlerff02d492013-08-05 02:12:05 -0400426 mStats = new Stats(this);
Hyunyoung Song8fd5e932016-03-08 16:55:47 -0800427 initLogger();
Daniel Sandlerff02d492013-08-05 02:12:05 -0400428
Sunny Goyalffe83f12014-08-14 17:39:34 -0700429 mAppWidgetManager = AppWidgetManagerCompat.getInstance(this);
Adam Cohen53805212013-10-01 10:39:23 -0700430
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700431 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
432 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700433
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700434 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
435 // this also ensures that any synchronous binding below doesn't re-trigger another
436 // LauncherModel load.
437 mPaused = false;
438
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800439 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200440 android.os.Debug.startMethodTracing(
441 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800442 }
443
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800444 setContentView(R.layout.launcher);
Michael Jurka7267fa52013-09-26 15:29:57 -0700445
Tony Wickhameef44322015-10-20 13:24:36 -0700446 app.getInvariantDeviceProfile().landscapeProfile.setSearchBarHeight(getSearchBarHeight());
447 app.getInvariantDeviceProfile().portraitProfile.setSearchBarHeight(getSearchBarHeight());
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800448 setupViews();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700449 mDeviceProfile.layout(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800450
Joe Onorato7c312c12009-08-13 21:36:53 -0700451 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700452
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800453 mSavedState = savedInstanceState;
454 restoreState(mSavedState);
455
456 if (PROFILE_STARTUP) {
457 android.os.Debug.stopMethodTracing();
458 }
459
460 if (!mRestoring) {
Adam Cohendb78dc82014-06-19 14:50:51 -0700461 if (DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700462 // If the user leaves launcher, then we should just load items asynchronously when
463 // they return.
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700464 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Winson Chung4a2afa32012-07-19 14:53:05 -0700465 } else {
466 // We only load the page synchronously if the user rotates (or triggers a
467 // configuration change) while launcher is in the foreground
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700468 mModel.startLoader(mWorkspace.getRestorePage());
Winson Chung4a2afa32012-07-19 14:53:05 -0700469 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800470 }
471
472 // For handling default keys
473 mDefaultKeySsb = new SpannableStringBuilder();
474 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800475
476 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
477 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800478
Sunny Goyal8f3819b2016-02-23 14:49:22 -0800479 mRotationEnabled = getResources().getBoolean(R.bool.allow_rotation);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700480 // In case we are on a device with locked rotation, we should look at preferences to check
481 // if the user has specifically allowed rotation.
482 if (!mRotationEnabled) {
Sunny Goyal21bf5312015-08-21 11:08:24 -0700483 mRotationEnabled = Utilities.isAllowRotationPrefEnabled(getApplicationContext());
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700484 }
485
486 // On large interfaces, or on devices that a user has specifically enabled screen rotation,
487 // we want the screen to auto-rotate based on the current orientation
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400488 setOrientation();
Winson Chungaf40f202013-09-18 18:26:31 -0700489
Adam Cohen9211d422014-10-07 18:14:53 -0700490 if (mLauncherCallbacks != null) {
491 mLauncherCallbacks.onCreate(savedInstanceState);
492 }
Adam Cohenc3e12c72014-10-31 16:15:36 -0700493
494 if (shouldShowIntroScreen()) {
495 showIntroScreen();
496 } else {
497 showFirstRunActivity();
498 showFirstRunClings();
499 }
Adam Cohen9211d422014-10-07 18:14:53 -0700500 }
501
Sunny Goyal7779d622015-06-11 16:18:39 -0700502 @Override
503 public void onSettingsChanged(String settings, boolean value) {
504 if (Utilities.ALLOW_ROTATION_PREFERENCE_KEY.equals(settings)) {
505 mRotationEnabled = value;
506 if (!waitUntilResume(mUpdateOrientationRunnable, true)) {
507 mUpdateOrientationRunnable.run();
508 }
509 }
510 }
511
Adam Cohen9211d422014-10-07 18:14:53 -0700512 private LauncherCallbacks mLauncherCallbacks;
513
514 public void onPostCreate(Bundle savedInstanceState) {
515 super.onPostCreate(savedInstanceState);
516 if (mLauncherCallbacks != null) {
517 mLauncherCallbacks.onPostCreate(savedInstanceState);
518 }
519 }
520
Sunny Goyal32554d12015-12-03 15:31:25 -0800521 /**
522 * Call this after onCreate to set or clear overlay.
523 */
524 public void setLauncherOverlay(LauncherOverlay overlay) {
525 if (overlay != null) {
526 overlay.setOverlayCallbacks(new LauncherOverlayCallbacksImpl());
527 }
528 mWorkspace.setLauncherOverlay(overlay);
529 }
530
Adam Cohen9211d422014-10-07 18:14:53 -0700531 public boolean setLauncherCallbacks(LauncherCallbacks callbacks) {
532 mLauncherCallbacks = callbacks;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700533 mLauncherCallbacks.setLauncherSearchCallback(new Launcher.LauncherSearchCallbacks() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700534 private boolean mWorkspaceImportanceStored = false;
535 private boolean mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700536 private int mWorkspaceImportanceForAccessibility =
Hyunyoung Song8fd5e932016-03-08 16:55:47 -0800537 View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700538 private int mHotseatImportanceForAccessibility = View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
539
540 @Override
541 public void onSearchOverlayOpened() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700542 if (mWorkspaceImportanceStored || mHotseatImportanceStored) {
Jun Mukai8af0cd82015-05-12 12:32:12 -0700543 return;
544 }
545 // The underlying workspace and hotseat are temporarily suppressed by the search
Sunny Goyal08442b82015-10-21 17:15:08 -0700546 // overlay. So they shouldn't be accessible.
Jun Mukaie9819e62015-06-17 10:58:59 -0700547 if (mWorkspace != null) {
548 mWorkspaceImportanceForAccessibility =
549 mWorkspace.getImportantForAccessibility();
550 mWorkspace.setImportantForAccessibility(
551 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
552 mWorkspaceImportanceStored = true;
553 }
554 if (mHotseat != null) {
555 mHotseatImportanceForAccessibility = mHotseat.getImportantForAccessibility();
556 mHotseat.setImportantForAccessibility(
557 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
558 mHotseatImportanceStored = true;
559 }
Jun Mukai8af0cd82015-05-12 12:32:12 -0700560 }
561
562 @Override
563 public void onSearchOverlayClosed() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700564 if (mWorkspaceImportanceStored && mWorkspace != null) {
565 mWorkspace.setImportantForAccessibility(mWorkspaceImportanceForAccessibility);
566 }
567 if (mHotseatImportanceStored && mHotseat != null) {
568 mHotseat.setImportantForAccessibility(mHotseatImportanceForAccessibility);
569 }
570 mWorkspaceImportanceStored = false;
571 mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700572 }
573 });
Adam Cohen9211d422014-10-07 18:14:53 -0700574 return true;
Adam Cohenf9426d52012-06-04 17:26:21 -0700575 }
576
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700577 @Override
Adam Cohen9211d422014-10-07 18:14:53 -0700578 public void onLauncherProviderChange() {
579 if (mLauncherCallbacks != null) {
580 mLauncherCallbacks.onLauncherProviderChange();
581 }
582 }
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700583
Adam Cohen9211d422014-10-07 18:14:53 -0700584 /** To be overridden by subclasses to hint to Launcher that we have custom content */
Winson Chung98ca0f72013-07-29 12:58:51 -0700585 protected boolean hasCustomContentToLeft() {
Adam Cohen9211d422014-10-07 18:14:53 -0700586 if (mLauncherCallbacks != null) {
587 return mLauncherCallbacks.hasCustomContentToLeft();
588 }
Winson Chung98ca0f72013-07-29 12:58:51 -0700589 return false;
590 }
591
Dave Hawkeya8881582013-09-17 15:55:33 -0600592 /**
Derek Prothrodadd9842014-01-17 13:43:50 -0500593 * To be overridden by subclasses to populate the custom content container and call
Dave Hawkeya8881582013-09-17 15:55:33 -0600594 * {@link #addToCustomContentPage}. This will only be invoked if
595 * {@link #hasCustomContentToLeft()} is {@code true}.
596 */
Derek Prothrodadd9842014-01-17 13:43:50 -0500597 protected void populateCustomContentContainer() {
Adam Cohen9211d422014-10-07 18:14:53 -0700598 if (mLauncherCallbacks != null) {
599 mLauncherCallbacks.populateCustomContentContainer();
600 }
Dave Hawkeya8881582013-09-17 15:55:33 -0600601 }
602
603 /**
604 * Invoked by subclasses to signal a change to the {@link #addCustomContentToLeft} value to
605 * ensure the custom content page is added or removed if necessary.
606 */
607 protected void invalidateHasCustomContentToLeft() {
Dave Hawkey3a733a72013-09-30 11:52:21 -0600608 if (mWorkspace == null || mWorkspace.getScreenOrder().isEmpty()) {
Dave Hawkeya8881582013-09-17 15:55:33 -0600609 // Not bound yet, wait for bindScreens to be called.
610 return;
611 }
612
613 if (!mWorkspace.hasCustomContent() && hasCustomContentToLeft()) {
614 // Create the custom content page and call the subclass to populate it.
Derek Prothrodadd9842014-01-17 13:43:50 -0500615 mWorkspace.createCustomContentContainer();
616 populateCustomContentContainer();
Dave Hawkeya8881582013-09-17 15:55:33 -0600617 } else if (mWorkspace.hasCustomContent() && !hasCustomContentToLeft()) {
618 mWorkspace.removeCustomContentPage();
619 }
620 }
621
Anton Hanssona2f665f2013-09-26 12:18:32 +0100622 public Stats getStats() {
623 return mStats;
624 }
Hyunyoung Song8fd5e932016-03-08 16:55:47 -0800625
626 /**
627 * Logger object is a singleton and does not have to be coupled with the foreground activity.
628 * Since most user event logging is done on the UI, the object is retrieved from the
629 * callback for convenience.
630 */
631 private void initLogger() {
632 if (mLauncherCallbacks != null) {
633 mUserEventLogger = mLauncherCallbacks.getLogger();
634 }
635 if (mUserEventLogger == null) {
636 mUserEventLogger = new UserEventLogger() {
637 @Override
638 public void processEvent(LauncherLogProto.LauncherEvent ev) {
639 if (ev.action.touch == LauncherLogProto.Action.TAP && ev.srcTarget.itemType == LauncherLogProto.APP_ICON) {
640 Log.d(TAG, String.format(Locale.US, "action:%s target:%s\n\telapsed container %d ms session %d ms",
641 LoggerUtils.getActionStr(ev.action),
642 LoggerUtils.getTargetStr(ev.srcTarget),
643 ev.elapsedContainerMillis,
644 ev.elapsedSessionMillis));
645 }
646 }
647 };
648 }
649 }
650
651 public UserEventLogger getLogger() {
652 return mUserEventLogger;
653 }
Anton Hanssona2f665f2013-09-26 12:18:32 +0100654
Hyunyoung Song3f471442015-04-08 19:01:34 -0700655 public boolean isDraggingEnabled() {
Winson Chung36a62fe2012-05-06 18:04:42 -0700656 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
657 // that is subsequently removed from the workspace in startBinding().
Sunny Goyal639e9062015-08-19 19:17:06 -0700658 return !isWorkspaceLoading();
Winson Chung36a62fe2012-05-06 18:04:42 -0700659 }
660
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000661 public int getViewIdForItem(ItemInfo info) {
Sunny Goyale2fd14b2015-08-27 17:45:46 -0700662 // aapt-generated IDs have the high byte nonzero; clamp to the range under that.
663 // This cast is safe as long as the id < 0x00FFFFFF
664 // Since we jail all the dynamically generated views, there should be no clashes
665 // with any other views.
666 return (int) info.id;
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000667 }
668
669 /**
Winson Chung557d6ed2011-07-08 15:34:52 -0700670 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
671 * a configuration step, this allows the proper animations to run after other transitions.
672 */
Adam Cohendb364c32014-05-20 14:23:40 -0700673 private long completeAdd(PendingAddArguments args) {
Adam Cohen83079e42014-09-19 17:43:08 -0700674 long screenId = args.screenId;
675 if (args.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
676 // When the screen id represents an actual screen (as opposed to a rank) we make sure
677 // that the drop page actually exists.
678 screenId = ensurePendingDropLayoutExists(args.screenId);
679 }
Adam Cohendb364c32014-05-20 14:23:40 -0700680
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800681 switch (args.requestCode) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800682 case REQUEST_CREATE_SHORTCUT:
Adam Cohendb364c32014-05-20 14:23:40 -0700683 completeAddShortcut(args.intent, args.container, screenId, args.cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -0700684 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700685 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800686 case REQUEST_CREATE_APPWIDGET:
Adam Cohendb364c32014-05-20 14:23:40 -0700687 completeAddAppWidget(args.appWidgetId, args.container, screenId, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700688 break;
Sunny Goyalff572272014-07-23 13:58:07 -0700689 case REQUEST_RECONFIGURE_APPWIDGET:
690 completeRestoreAppWidget(args.appWidgetId);
691 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800692 }
Michael Jurka27614d22012-04-02 06:40:22 -0700693 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
694 // if you turned the screen off and then back while in All Apps, Launcher would not
695 // return to the workspace. Clearing mAddInfo.container here fixes this issue
696 resetAddInfo();
Adam Cohendb364c32014-05-20 14:23:40 -0700697 return screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800698 }
699
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800700 private void handleActivityResult(
Michael Jurka8b805b12012-04-18 14:23:14 -0700701 final int requestCode, final int resultCode, final Intent data) {
Winson Chunge341d302013-08-16 14:31:00 -0700702 // Reset the startActivity waiting flag
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700703 setWaitingForResult(false);
Adam Cohendb364c32014-05-20 14:23:40 -0700704 final int pendingAddWidgetId = mPendingAddWidgetId;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800705 mPendingAddWidgetId = -1;
Winson Chunge341d302013-08-16 14:31:00 -0700706
Adam Cohenad4e15c2013-10-17 16:21:35 -0700707 Runnable exitSpringLoaded = new Runnable() {
708 @Override
709 public void run() {
710 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
711 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
712 }
713 };
714
Michael Jurka8b805b12012-04-18 14:23:14 -0700715 if (requestCode == REQUEST_BIND_APPWIDGET) {
Winsona1f79d32015-08-05 14:00:45 -0700716 // This is called only if the user did not previously have permissions to bind widgets
Adam Cohenad4e15c2013-10-17 16:21:35 -0700717 final int appWidgetId = data != null ?
Michael Jurka8b805b12012-04-18 14:23:14 -0700718 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
719 if (resultCode == RESULT_CANCELED) {
720 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
Adam Cohen689ff162014-05-08 17:27:56 -0700721 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700722 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
Michael Jurka8b805b12012-04-18 14:23:14 -0700723 } else if (resultCode == RESULT_OK) {
Sunny Goyale6b63a32015-01-16 16:14:29 -0800724 addAppWidgetImpl(appWidgetId, mPendingAddInfo, null,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700725 mPendingAddWidgetInfo, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
Winsona1f79d32015-08-05 14:00:45 -0700726
727 // When the user has granted permission to bind widgets, we should check to see if
728 // we can inflate the default search bar widget.
729 getOrCreateQsbBar();
Michael Jurka8b805b12012-04-18 14:23:14 -0700730 }
731 return;
Michael Jurka336fd4f2013-09-12 00:05:02 +0200732 } else if (requestCode == REQUEST_PICK_WALLPAPER) {
733 if (resultCode == RESULT_OK && mWorkspace.isInOverviewMode()) {
Tony Wickhame3054412015-09-09 09:05:25 -0700734 // User could have free-scrolled between pages before picking a wallpaper; make sure
735 // we move to the closest one now.
736 mWorkspace.setCurrentPage(mWorkspace.getPageNearestToCenterOfScreen());
Winson Chungdc61c4d2015-04-20 18:26:57 -0700737 showWorkspace(false);
Michael Jurka336fd4f2013-09-12 00:05:02 +0200738 }
739 return;
Michael Jurka8b805b12012-04-18 14:23:14 -0700740 }
Michael Jurka336fd4f2013-09-12 00:05:02 +0200741
Adam Cohened66b2b2012-01-23 17:28:51 -0800742 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
Sunny Goyal5c97f512015-05-19 16:03:28 -0700743 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700744
Adam Cohendb364c32014-05-20 14:23:40 -0700745 final boolean workspaceLocked = isWorkspaceLocked();
Adam Cohened66b2b2012-01-23 17:28:51 -0800746 // We have special handling for widgets
747 if (isWidgetDrop) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800748 final int appWidgetId;
749 int widgetId = data != null ? data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1)
750 : -1;
751 if (widgetId < 0) {
752 appWidgetId = pendingAddWidgetId;
753 } else {
754 appWidgetId = widgetId;
755 }
756
Adam Cohenad4e15c2013-10-17 16:21:35 -0700757 final int result;
Adam Cohenf0129b12013-11-04 17:57:36 -0800758 if (appWidgetId < 0 || resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700759 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not " +
760 "returned from the widget configuration activity.");
Adam Cohenad4e15c2013-10-17 16:21:35 -0700761 result = RESULT_CANCELED;
762 completeTwoStageWidgetDrop(result, appWidgetId);
Adam Cohendb364c32014-05-20 14:23:40 -0700763 final Runnable onComplete = new Runnable() {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700764 @Override
765 public void run() {
766 exitSpringLoadedDragModeDelayed(false, 0, null);
767 }
768 };
Adam Cohendb364c32014-05-20 14:23:40 -0700769 if (workspaceLocked) {
770 // No need to remove the empty screen if we're mid-binding, as the
771 // the bind will not add the empty screen.
772 mWorkspace.postDelayed(onComplete, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
773 } else {
774 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
775 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
776 }
Winson Chung5aaab772012-04-27 15:24:02 -0700777 } else {
Adam Cohendb364c32014-05-20 14:23:40 -0700778 if (!workspaceLocked) {
Adam Cohen83079e42014-09-19 17:43:08 -0700779 if (mPendingAddInfo.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
780 // When the screen id represents an actual screen (as opposed to a rank)
781 // we make sure that the drop page actually exists.
782 mPendingAddInfo.screenId =
783 ensurePendingDropLayoutExists(mPendingAddInfo.screenId);
784 }
Adam Cohendb364c32014-05-20 14:23:40 -0700785 final CellLayout dropLayout = mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
786
787 dropLayout.setDropPending(true);
788 final Runnable onComplete = new Runnable() {
789 @Override
790 public void run() {
791 completeTwoStageWidgetDrop(resultCode, appWidgetId);
792 dropLayout.setDropPending(false);
793 }
794 };
795 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
796 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
797 } else {
798 PendingAddArguments args = preparePendingAddArgs(requestCode, data, appWidgetId,
799 mPendingAddInfo);
800 sPendingAddItem = args;
801 }
Winson Chung5aaab772012-04-27 15:24:02 -0700802 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800803 return;
804 }
805
Sunny Goyalff572272014-07-23 13:58:07 -0700806 if (requestCode == REQUEST_RECONFIGURE_APPWIDGET) {
807 if (resultCode == RESULT_OK) {
808 // Update the widget view.
809 PendingAddArguments args = preparePendingAddArgs(requestCode, data,
810 pendingAddWidgetId, mPendingAddInfo);
811 if (workspaceLocked) {
812 sPendingAddItem = args;
813 } else {
814 completeAdd(args);
815 }
816 }
817 // Leave the widget in the pending state if the user canceled the configure.
818 return;
819 }
820
Sunny Goyalaad90582015-07-09 14:22:50 -0700821 if (requestCode == REQUEST_CREATE_SHORTCUT) {
822 // Handle custom shortcuts created using ACTION_CREATE_SHORTCUT.
823 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
824 final PendingAddArguments args = preparePendingAddArgs(requestCode, data, -1,
825 mPendingAddInfo);
826 if (isWorkspaceLocked()) {
827 sPendingAddItem = args;
828 } else {
829 completeAdd(args);
830 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
831 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
832 }
833 } else if (resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700834 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
835 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800836 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800837 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800838 mDragLayer.clearAnimatedView();
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800839
840 }
841
842 @Override
843 protected void onActivityResult(
844 final int requestCode, final int resultCode, final Intent data) {
845 handleActivityResult(requestCode, resultCode, data);
846 if (mLauncherCallbacks != null) {
847 mLauncherCallbacks.onActivityResult(requestCode, resultCode, data);
848 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800849 }
850
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600851 /** @Override for MNC */
Sunny Goyaldd2e6df2015-07-07 10:57:57 -0700852 public void onRequestPermissionsResult(int requestCode, String[] permissions,
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600853 int[] grantResults) {
Sunny Goyal28c6b962015-10-12 11:42:05 -0700854 if (requestCode == REQUEST_PERMISSION_CALL_PHONE && sPendingAddItem != null
855 && sPendingAddItem.requestCode == REQUEST_PERMISSION_CALL_PHONE) {
856 View v = null;
857 CellLayout layout = getCellLayout(sPendingAddItem.container, sPendingAddItem.screenId);
858 if (layout != null) {
859 v = layout.getChildAt(sPendingAddItem.cellX, sPendingAddItem.cellY);
860 }
861 Intent intent = sPendingAddItem.intent;
862 sPendingAddItem = null;
863 if (grantResults.length > 0
864 && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
865 startActivity(v, intent, null);
866 } else {
867 // TODO: Show a snack bar with link to settings
868 Toast.makeText(this, getString(R.string.msg_no_phone_permission,
869 getString(R.string.app_name)), Toast.LENGTH_SHORT).show();
870 }
871 }
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600872 if (mLauncherCallbacks != null) {
873 mLauncherCallbacks.onRequestPermissionsResult(requestCode, permissions,
874 grantResults);
875 }
876 }
877
Adam Cohendb364c32014-05-20 14:23:40 -0700878 private PendingAddArguments preparePendingAddArgs(int requestCode, Intent data, int
879 appWidgetId, ItemInfo info) {
880 PendingAddArguments args = new PendingAddArguments();
881 args.requestCode = requestCode;
882 args.intent = data;
883 args.container = info.container;
884 args.screenId = info.screenId;
885 args.cellX = info.cellX;
886 args.cellY = info.cellY;
887 args.appWidgetId = appWidgetId;
888 return args;
889 }
890
891 /**
892 * Check to see if a given screen id exists. If not, create it at the end, return the new id.
893 *
894 * @param screenId the screen id to check
895 * @return the new screen, or screenId if it exists
896 */
897 private long ensurePendingDropLayoutExists(long screenId) {
Sunny Goyal32554d12015-12-03 15:31:25 -0800898 CellLayout dropLayout = mWorkspace.getScreenWithId(screenId);
Adam Cohendb364c32014-05-20 14:23:40 -0700899 if (dropLayout == null) {
900 // it's possible that the add screen was removed because it was
901 // empty and a re-bind occurred
902 mWorkspace.addExtraEmptyScreen();
903 return mWorkspace.commitExtraEmptyScreen();
904 } else {
905 return screenId;
906 }
907 }
908
Adam Cohen091440a2015-03-18 14:16:05 -0700909 @Thunk void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
Tony Wickhama501d492015-11-03 18:05:01 -0800910 CellLayout cellLayout = mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800911 Runnable onCompleteRunnable = null;
912 int animationType = 0;
913
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700914 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800915 if (resultCode == RESULT_OK) {
916 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
917 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700918 mPendingAddWidgetInfo);
919 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800920 onCompleteRunnable = new Runnable() {
921 @Override
922 public void run() {
923 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700924 mPendingAddInfo.screenId, layout, null);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700925 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
926 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
Adam Cohened66b2b2012-01-23 17:28:51 -0800927 }
928 };
929 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800930 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800931 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
Adam Cohened66b2b2012-01-23 17:28:51 -0800932 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700933 if (mDragLayer.getAnimatedView() != null) {
934 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
935 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
936 animationType, boundWidget, true);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700937 } else if (onCompleteRunnable != null) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700938 // The animated view may be null in the case of a rotation during widget configuration
939 onCompleteRunnable.run();
940 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800941 }
942
943 @Override
Michael Jurkacd496d72013-04-11 11:32:45 -0700944 protected void onStop() {
945 super.onStop();
946 FirstFrameAnimatorHelper.setIsVisible(false);
Adam Cohen9211d422014-10-07 18:14:53 -0700947
948 if (mLauncherCallbacks != null) {
949 mLauncherCallbacks.onStop();
950 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700951 }
952
953 @Override
954 protected void onStart() {
955 super.onStart();
956 FirstFrameAnimatorHelper.setIsVisible(true);
Adam Cohen9211d422014-10-07 18:14:53 -0700957
958 if (mLauncherCallbacks != null) {
959 mLauncherCallbacks.onStart();
960 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700961 }
962
963 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800964 protected void onResume() {
Michael Jurka447bf842013-05-15 14:52:15 +0200965 long startTime = 0;
966 if (DEBUG_RESUME_TIME) {
967 startTime = System.currentTimeMillis();
Daniel Sandler924b9932013-06-12 00:38:25 -0400968 Log.v(TAG, "Launcher.onResume()");
Michael Jurka447bf842013-05-15 14:52:15 +0200969 }
Adam Cohen9211d422014-10-07 18:14:53 -0700970
971 if (mLauncherCallbacks != null) {
972 mLauncherCallbacks.preOnResume();
973 }
974
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800975 super.onResume();
Hyunyoung Songfbf19cc2016-02-19 12:14:47 -0800976 mUserEventLogger.resetElapsedSessionMillis();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700977
Winson Chung4a2afa32012-07-19 14:53:05 -0700978 // Restore the previous launcher state
Winson Chung75cc8252015-04-10 10:19:58 -0700979 if (mOnResumeState == State.WORKSPACE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700980 showWorkspace(false);
Winson Chungb745afb2015-03-02 11:51:23 -0800981 } else if (mOnResumeState == State.APPS) {
Winson Chung13eb5272015-05-11 16:30:13 -0700982 boolean launchedFromApp = (mWaitingForResume != null);
Winson Chung4ac30062015-05-08 17:34:17 -0700983 // Don't update the predicted apps if the user is returning to launcher in the apps
Winson Chung13eb5272015-05-11 16:30:13 -0700984 // view after launching an app, as they may be depending on the UI to be static to
985 // switch to another app, otherwise, if it was
Winson Chung4ac30062015-05-08 17:34:17 -0700986 showAppsView(false /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -0700987 !launchedFromApp /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -0800988 } else if (mOnResumeState == State.WIDGETS) {
989 showWidgetsView(false, false);
Winson Chung4a2afa32012-07-19 14:53:05 -0700990 }
991 mOnResumeState = State.NONE;
992
Sunny Goyal4a6c6f32015-05-19 12:36:46 -0700993 // Background was set to gradient in onPause(), restore to transparent if in all apps.
Sunny Goyald70ad0d2015-05-26 17:20:07 -0700994 setWorkspaceBackground(mState == State.WORKSPACE ? WORKSPACE_BACKGROUND_GRADIENT
995 : WORKSPACE_BACKGROUND_TRANSPARENT);
Craig Mautner360310b2012-10-26 15:13:08 -0700996
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800997 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700998 if (mRestoring || mOnResumeNeedsLoad) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700999 setWorkspaceLoading(true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001000 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001001 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001002 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001003 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001004 if (mBindOnResumeCallbacks.size() > 0) {
Michael Jurkac402cd92013-05-20 15:49:32 +02001005 // We might have postponed some bind calls until onResume (see waitUntilResume) --
1006 // execute them here
1007 long startTimeCallbacks = 0;
1008 if (DEBUG_RESUME_TIME) {
1009 startTimeCallbacks = System.currentTimeMillis();
1010 }
1011
Michael Jurka1e2f4652013-07-08 18:03:46 -07001012 for (int i = 0; i < mBindOnResumeCallbacks.size(); i++) {
1013 mBindOnResumeCallbacks.get(i).run();
Michael Jurkac402cd92013-05-20 15:49:32 +02001014 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001015 mBindOnResumeCallbacks.clear();
Michael Jurkac402cd92013-05-20 15:49:32 +02001016 if (DEBUG_RESUME_TIME) {
1017 Log.d(TAG, "Time spent processing callbacks in onResume: " +
1018 (System.currentTimeMillis() - startTimeCallbacks));
1019 }
Michael Jurka447bf842013-05-15 14:52:15 +02001020 }
Michael Jurka54554252013-08-01 12:52:23 +02001021 if (mOnResumeCallbacks.size() > 0) {
1022 for (int i = 0; i < mOnResumeCallbacks.size(); i++) {
1023 mOnResumeCallbacks.get(i).run();
1024 }
1025 mOnResumeCallbacks.clear();
1026 }
Winson Chunge4e50662012-01-23 14:45:13 -08001027
1028 // Reset the pressed state of icons that were locked in the press state while activities
1029 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -08001030 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -08001031 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -08001032 mWaitingForResume.setStayPressed(false);
1033 }
Winson Chung82963d52013-10-09 11:20:57 -07001034
Adam Cohen06dff352012-06-01 17:17:08 -07001035 // It is possible that widgets can receive updates while launcher is not in the foreground.
1036 // Consequently, the widgets will be inflated in the orientation of the foreground activity
1037 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
1038 // orientation.
Sunny Goyal6bec75f2015-10-01 18:50:48 -07001039 if (!isWorkspaceLoading()) {
1040 getWorkspace().reinflateWidgetsIfNecessary();
1041 }
Sunny Goyal22235bc2015-04-03 09:23:43 -07001042 reinflateQSBIfNecessary();
Adam Cohenf9426d52012-06-04 17:26:21 -07001043
Michael Jurka447bf842013-05-15 14:52:15 +02001044 if (DEBUG_RESUME_TIME) {
1045 Log.d(TAG, "Time spent in onResume: " + (System.currentTimeMillis() - startTime));
1046 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001047
Adam Cohen4b66bf32015-09-18 12:15:19 -07001048 // We want to suppress callbacks about CustomContent being shown if we have just received
1049 // onNewIntent while the user was present within launcher. In that case, we post a call
1050 // to move the user to the main screen (which will occur after onResume). We don't want to
1051 // have onHide (from onPause), then onShow, then onHide again, which we get if we don't
1052 // suppress here.
1053 if (mWorkspace.getCustomContentCallbacks() != null
1054 && !mMoveToDefaultScreenFromNewIntent) {
Adam Cohen6fecd412013-10-02 17:41:50 -07001055 // If we are resuming and the custom content is the current page, we call onShow().
Adam Cohen4b66bf32015-09-18 12:15:19 -07001056 // It is also possible that onShow will instead be called slightly after first layout
Adam Cohen6fecd412013-10-02 17:41:50 -07001057 // if PagedView#setRestorePage was set to the custom content page in onCreate().
1058 if (mWorkspace.isOnOrMovingToCustomContent()) {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001059 mWorkspace.getCustomContentCallbacks().onShow(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001060 }
1061 }
Adam Cohen4b66bf32015-09-18 12:15:19 -07001062 mMoveToDefaultScreenFromNewIntent = false;
Winson Chungcd99cd32015-04-29 11:03:24 -07001063 updateInteraction(Workspace.State.NORMAL, mWorkspace.getState());
Adam Cohen53805212013-10-01 10:39:23 -07001064 mWorkspace.onResume();
Sunny Goyale755d462014-07-22 13:48:29 -07001065
Sunny Goyal756adbc2015-04-16 15:20:51 -07001066 if (!isWorkspaceLoading()) {
1067 // Process any items that were added while Launcher was away.
1068 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
1069 }
Adam Cohen9211d422014-10-07 18:14:53 -07001070
1071 if (mLauncherCallbacks != null) {
1072 mLauncherCallbacks.onResume();
1073 }
Adam Cohen06dff352012-06-01 17:17:08 -07001074 }
1075
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001076 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001077 protected void onPause() {
Winson Chung997a9232013-07-24 15:33:46 -07001078 // Ensure that items added to Launcher are queued until Launcher returns
1079 InstallShortcutReceiver.enableInstallQueue();
1080
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001081 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001082 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -08001083 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -07001084 mDragController.resetLastGestureUpTime();
Adam Cohen6fecd412013-10-02 17:41:50 -07001085
1086 // We call onHide() aggressively. The custom content callbacks should be able to
1087 // debounce excess onHide calls.
1088 if (mWorkspace.getCustomContentCallbacks() != null) {
1089 mWorkspace.getCustomContentCallbacks().onHide();
1090 }
Romain Guycbb89e42009-06-08 15:52:54 -07001091
Adam Cohen9211d422014-10-07 18:14:53 -07001092 if (mLauncherCallbacks != null) {
1093 mLauncherCallbacks.onPause();
Adam Cohenbffe7452013-07-22 18:21:45 -07001094 }
Adam Cohenbffe7452013-07-22 18:21:45 -07001095 }
1096
1097 public interface CustomContentCallbacks {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001098 // Custom content is completely shown. {@code fromResume} indicates whether this was caused
1099 // by a onResume or by scrolling otherwise.
1100 public void onShow(boolean fromResume);
Adam Cohenbffe7452013-07-22 18:21:45 -07001101
1102 // Custom content is completely hidden
1103 public void onHide();
Adam Cohenc36fa5c2013-08-29 11:54:42 -07001104
1105 // Custom content scroll progress changed. From 0 (not showing) to 1 (fully showing).
1106 public void onScrollProgressChanged(float progress);
Jan-Willem Maarse2ff91c42014-07-10 15:58:12 -07001107
1108 // Indicates whether the user is allowed to scroll away from the custom content.
1109 boolean isScrollingAllowed();
Adam Cohenbffe7452013-07-22 18:21:45 -07001110 }
1111
Adam Cohenc2d6e892014-10-16 09:49:24 -07001112 public interface LauncherOverlay {
1113
1114 /**
1115 * Touch interaction leading to overscroll has begun
1116 */
1117 public void onScrollInteractionBegin();
1118
1119 /**
1120 * Touch interaction related to overscroll has ended
1121 */
1122 public void onScrollInteractionEnd();
1123
1124 /**
1125 * Scroll progress, between 0 and 100, when the user scrolls beyond the leftmost
1126 * screen (or in the case of RTL, the rightmost screen).
1127 */
Sunny Goyalc86df472016-02-25 09:19:38 -08001128 public void onScrollChange(float progress, boolean rtl);
Adam Cohenc2d6e892014-10-16 09:49:24 -07001129
1130 /**
Sunny Goyal32554d12015-12-03 15:31:25 -08001131 * Called when the launcher is ready to use the overlay
1132 * @param callbacks A set of callbacks provided by Launcher in relation to the overlay
Adam Cohenc2d6e892014-10-16 09:49:24 -07001133 */
Sunny Goyal32554d12015-12-03 15:31:25 -08001134 public void setOverlayCallbacks(LauncherOverlayCallbacks callbacks);
Adam Cohenc2d6e892014-10-16 09:49:24 -07001135 }
1136
Jun Mukai8af0cd82015-05-12 12:32:12 -07001137 public interface LauncherSearchCallbacks {
1138 /**
1139 * Called when the search overlay is shown.
1140 */
1141 public void onSearchOverlayOpened();
1142
1143 /**
1144 * Called when the search overlay is dismissed.
1145 */
1146 public void onSearchOverlayClosed();
1147 }
1148
Adam Cohenc2d6e892014-10-16 09:49:24 -07001149 public interface LauncherOverlayCallbacks {
Sunny Goyalc86df472016-02-25 09:19:38 -08001150 public void onScrollChanged(float progress);
Adam Cohenc2d6e892014-10-16 09:49:24 -07001151 }
1152
1153 class LauncherOverlayCallbacksImpl implements LauncherOverlayCallbacks {
1154
Sunny Goyalc86df472016-02-25 09:19:38 -08001155 public void onScrollChanged(float progress) {
1156 if (mWorkspace != null) {
1157 mWorkspace.onOverlayScrollChanged(progress);
1158 }
1159 }
Adam Cohenc2d6e892014-10-16 09:49:24 -07001160 }
1161
Jorim Jaggid017f882014-01-14 17:08:48 -08001162 protected boolean hasSettings() {
Adam Cohen9211d422014-10-07 18:14:53 -07001163 if (mLauncherCallbacks != null) {
1164 return mLauncherCallbacks.hasSettings();
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07001165 } else {
1166 // On devices with a locked orientation, we will at least have the allow rotation
1167 // setting.
Sunny Goyal8f3819b2016-02-23 14:49:22 -08001168 return !getResources().getBoolean(R.bool.allow_rotation);
Adam Cohen9211d422014-10-07 18:14:53 -07001169 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001170 }
1171
Adam Cohen9211d422014-10-07 18:14:53 -07001172 public void addToCustomContentPage(View customContent,
Adam Cohen53805212013-10-01 10:39:23 -07001173 CustomContentCallbacks callbacks, String description) {
1174 mWorkspace.addToCustomContentPage(customContent, callbacks, description);
Adam Cohen66a01fd2013-06-11 12:48:00 -07001175 }
1176
Adam Cohenedb40762013-07-18 16:45:45 -07001177 // The custom content needs to offset its content to account for the QSB
1178 public int getTopOffsetForCustomContent() {
1179 return mWorkspace.getPaddingTop();
1180 }
1181
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001182 @Override
1183 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001184 // Flag the loader to stop early before switching
Adam Cohen1a85c582014-09-30 09:48:49 -07001185 if (mModel.isCurrentCallbacks(this)) {
1186 mModel.stopLoader();
1187 }
Hyunyoung Song3f471442015-04-08 19:01:34 -07001188 //TODO(hyunyoungs): stop the widgets loader when there is a rotation.
1189
Romain Guy13c2e7b2010-03-10 19:45:00 -08001190 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001191 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001192
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001193 // We can't hide the IME if it was forced open. So don't bother
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001194 @Override
1195 public void onWindowFocusChanged(boolean hasFocus) {
1196 super.onWindowFocusChanged(hasFocus);
Adam Cohened307df2013-10-02 09:37:31 -07001197 mHasFocus = hasFocus;
Adam Cohen9211d422014-10-07 18:14:53 -07001198
1199 if (mLauncherCallbacks != null) {
1200 mLauncherCallbacks.onWindowFocusChanged(hasFocus);
1201 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001202 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001203
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001204 private boolean acceptFilter() {
1205 final InputMethodManager inputManager = (InputMethodManager)
1206 getSystemService(Context.INPUT_METHOD_SERVICE);
1207 return !inputManager.isFullscreenMode();
1208 }
1209
1210 @Override
1211 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -07001212 final int uniChar = event.getUnicodeChar();
1213 final boolean handled = super.onKeyDown(keyCode, event);
1214 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
1215 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001216 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
1217 keyCode, event);
1218 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001219 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -07001220 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -07001221 // showSearchDialog()
1222 // If there are multiple keystrokes before the search dialog takes focus,
1223 // onSearchRequested() will be called for every keystroke,
1224 // but it is idempotent, so it's fine.
1225 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001226 }
1227 }
1228
Joe Onorato8a9625e2010-01-28 15:55:35 -08001229 // Eat the long press event so the keyboard doesn't come up.
1230 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
1231 return true;
1232 }
1233
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001234 return handled;
1235 }
1236
Winson46163472015-09-22 17:31:56 -07001237 @Override
1238 public boolean onKeyUp(int keyCode, KeyEvent event) {
1239 if (keyCode == KeyEvent.KEYCODE_MENU) {
1240 // Ignore the menu key if we are currently dragging or are on the custom content screen
1241 if (!isOnCustomContent() && !mDragController.isDragging()) {
1242 // Close any open folders
1243 closeFolder();
1244
1245 // Stop resizing any widgets
1246 mWorkspace.exitWidgetResizeMode();
1247
1248 // Show the overview mode if we are on the workspace
1249 if (mState == State.WORKSPACE && !mWorkspace.isInOverviewMode() &&
1250 !mWorkspace.isSwitchingState()) {
1251 mOverviewPanel.requestFocus();
Winsone9f27272015-10-13 10:47:51 -07001252 showOverviewMode(true, true /* requestButtonFocus */);
Winson46163472015-09-22 17:31:56 -07001253 }
1254 }
1255 return true;
1256 }
1257 return super.onKeyUp(keyCode, event);
1258 }
1259
Karl Rosaen138a0412009-04-23 19:00:21 -07001260 private String getTypedText() {
1261 return mDefaultKeySsb.toString();
1262 }
1263
1264 private void clearTypedText() {
1265 mDefaultKeySsb.clear();
1266 mDefaultKeySsb.clearSpans();
1267 Selection.setSelection(mDefaultKeySsb, 0);
1268 }
1269
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001270 /**
Michael Jurka883f55b2010-10-21 15:47:14 -07001271 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
1272 * State
1273 */
1274 private static State intToState(int stateOrdinal) {
1275 State state = State.WORKSPACE;
1276 final State[] stateValues = State.values();
1277 for (int i = 0; i < stateValues.length; i++) {
1278 if (stateValues[i].ordinal() == stateOrdinal) {
1279 state = stateValues[i];
1280 break;
1281 }
1282 }
1283 return state;
1284 }
1285
1286 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001287 * Restores the previous state, if it exists.
1288 *
1289 * @param savedState The previous state.
1290 */
1291 private void restoreState(Bundle savedState) {
1292 if (savedState == null) {
1293 return;
1294 }
1295
Michael Jurka883f55b2010-10-21 15:47:14 -07001296 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungb745afb2015-03-02 11:51:23 -08001297 if (state == State.APPS || state == State.WIDGETS) {
1298 mOnResumeState = state;
Joe Onorato3a8820b2009-11-10 15:06:42 -08001299 }
1300
Adam Cohen21cd0022013-10-09 18:57:02 -07001301 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN,
1302 PagedView.INVALID_RESTORE_PAGE);
1303 if (currentScreen != PagedView.INVALID_RESTORE_PAGE) {
Winson Chung8c87cd82013-07-23 16:20:10 -07001304 mWorkspace.setRestorePage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001305 }
1306
Sunny Goyal756cd262015-08-20 12:33:21 -07001307 ContentValues itemValues = savedState.getParcelable(RUNTIME_STATE_PENDING_ADD_ITEM);
1308 if (itemValues != null) {
1309 mPendingAddInfo.readFromValues(itemValues);
Adam Cohenb823ae42015-03-27 18:07:52 -07001310 AppWidgetProviderInfo info = savedState.getParcelable(
1311 RUNTIME_STATE_PENDING_ADD_WIDGET_INFO);
Sunny Goyalf044bb12015-05-12 13:30:07 -07001312 mPendingAddWidgetInfo = info == null ?
1313 null : LauncherAppWidgetProviderInfo.fromProviderInfo(this, info);
1314
Adam Cohen4637b5a2013-11-04 18:21:24 -08001315 mPendingAddWidgetId = savedState.getInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID);
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001316 setWaitingForResult(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001317 mRestoring = true;
1318 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001319 }
1320
1321 /**
1322 * Finds all the views we need and configure them properly.
1323 */
1324 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -07001325 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -04001326
Craig Mautner360310b2012-10-26 15:13:08 -07001327 mLauncherView = findViewById(R.id.launcher);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001328 mFocusHandler = (FocusIndicatorView) findViewById(R.id.focus_indicator);
Winson Chung4c98d922011-05-31 16:50:48 -07001329 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
1330 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Anjali Koppalf5d29132014-02-28 13:33:27 -08001331 mWorkspace.setPageSwitchListener(this);
Winson Chunga6945242014-01-08 14:04:34 -08001332 mPageIndicators = mDragLayer.findViewById(R.id.page_indicator);
Craig Mautner360310b2012-10-26 15:13:08 -07001333
Sunny Goyal784f9c32016-03-23 16:56:54 -07001334 mLauncherView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
1335 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
1336 | View.SYSTEM_UI_FLAG_LAYOUT_STABLE);
Craig Mautner360310b2012-10-26 15:13:08 -07001337 mWorkspaceBackgroundDrawable = getResources().getDrawable(R.drawable.workspace_bg);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001338
Winson Chung4c98d922011-05-31 16:50:48 -07001339 // Setup the drag layer
1340 mDragLayer.setup(this, dragController);
1341
Winson Chung3d503fb2011-07-13 17:25:49 -07001342 // Setup the hotseat
1343 mHotseat = (Hotseat) findViewById(R.id.hotseat);
1344 if (mHotseat != null) {
Winson Chung11a1a532013-09-13 11:14:45 -07001345 mHotseat.setOnLongClickListener(this);
Winson Chung3d503fb2011-07-13 17:25:49 -07001346 }
1347
Winsone9f27272015-10-13 10:47:51 -07001348 // Setup the overview panel
1349 setupOverviewPanel();
Adam Cohenf358a4b2013-07-23 16:47:31 -07001350
Winson Chung4c98d922011-05-31 16:50:48 -07001351 // Setup the workspace
1352 mWorkspace.setHapticFeedbackEnabled(false);
1353 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -07001354 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -07001355 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001356
Tony Wickham34d2c912015-09-11 09:27:58 -07001357 // Get the search/delete/uninstall bar
Adam Cohen24ce0b32014-01-14 16:18:14 -08001358 mSearchDropTargetBar = (SearchDropTargetBar)
1359 mDragLayer.findViewById(R.id.search_drop_target_bar);
Tony Wickham34d2c912015-09-11 09:27:58 -07001360 // Get the app info bar
1361 mAppInfoDropTargetBar = (AppInfoDropTargetBar)
1362 mDragLayer.findViewById(R.id.app_info_drop_target_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001363
Winson Chungef7f8742015-06-04 17:18:17 -07001364 // Setup Apps and Widgets
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001365 mAppsView = (AllAppsContainerView) findViewById(R.id.apps_view);
Hyunyoung Song3f471442015-04-08 19:01:34 -07001366 mWidgetsView = (WidgetsContainerView) findViewById(R.id.widgets_view);
Sunny Goyalf51084c2016-02-18 00:40:49 +00001367 if (mLauncherCallbacks != null && mLauncherCallbacks.getAllAppsSearchBarController() != null) {
1368 mAppsView.setSearchBarController(mLauncherCallbacks.getAllAppsSearchBarController());
1369 } else {
1370 mAppsView.setSearchBarController(new DefaultAppSearchController());
1371 }
Craig Mautner360310b2012-10-26 15:13:08 -07001372
Winson Chung3d503fb2011-07-13 17:25:49 -07001373 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -07001374 dragController.setDragScoller(mWorkspace);
Tony Wickham0f97b782015-12-02 17:55:07 -08001375 dragController.setScrollView(mDragLayer);
Winson Chung4c98d922011-05-31 16:50:48 -07001376 dragController.setMoveTarget(mWorkspace);
1377 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -07001378 if (mSearchDropTargetBar != null) {
1379 mSearchDropTargetBar.setup(this, dragController);
Adam Cohenb0df1b02015-03-18 22:21:40 -07001380 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Michael Jurkae0f5a612011-02-07 16:45:41 -08001381 }
Tony Wickham34d2c912015-09-11 09:27:58 -07001382 if (mAppInfoDropTargetBar != null) {
1383 mAppInfoDropTargetBar.setup(this, dragController);
1384 }
Daniel Sandler924b9932013-06-12 00:38:25 -04001385
Sunny Goyal322d5562015-06-25 19:35:49 -07001386 if (TestingUtils.MEMORY_DUMP_ENABLED) {
1387 TestingUtils.addWeightWatcher(this);
Daniel Sandler924b9932013-06-12 00:38:25 -04001388 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001389 }
1390
Winsone9f27272015-10-13 10:47:51 -07001391 private void setupOverviewPanel() {
1392 mOverviewPanel = (ViewGroup) findViewById(R.id.overview_panel);
1393
1394 // Long-clicking buttons in the overview panel does the same thing as clicking them.
1395 OnLongClickListener performClickOnLongClick = new OnLongClickListener() {
1396 @Override
1397 public boolean onLongClick(View v) {
1398 return v.performClick();
1399 }
1400 };
1401
1402 // Bind wallpaper button actions
1403 View wallpaperButton = findViewById(R.id.wallpaper_button);
1404 wallpaperButton.setOnClickListener(new OnClickListener() {
1405 @Override
1406 public void onClick(View view) {
1407 if (!mWorkspace.isSwitchingState()) {
1408 onClickWallpaperPicker(view);
1409 }
1410 }
1411 });
1412 wallpaperButton.setOnLongClickListener(performClickOnLongClick);
1413 wallpaperButton.setOnTouchListener(getHapticFeedbackTouchListener());
1414
1415 // Bind widget button actions
1416 mWidgetsButton = findViewById(R.id.widget_button);
1417 mWidgetsButton.setOnClickListener(new OnClickListener() {
1418 @Override
1419 public void onClick(View view) {
1420 if (!mWorkspace.isSwitchingState()) {
1421 onClickAddWidgetButton(view);
1422 }
1423 }
1424 });
1425 mWidgetsButton.setOnLongClickListener(performClickOnLongClick);
1426 mWidgetsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1427
1428 // Bind settings actions
1429 View settingsButton = findViewById(R.id.settings_button);
1430 boolean hasSettings = hasSettings();
1431 if (hasSettings) {
1432 settingsButton.setOnClickListener(new OnClickListener() {
1433 @Override
1434 public void onClick(View view) {
1435 if (!mWorkspace.isSwitchingState()) {
1436 onClickSettingsButton(view);
1437 }
1438 }
1439 });
1440 settingsButton.setOnLongClickListener(performClickOnLongClick);
1441 settingsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1442 } else {
1443 settingsButton.setVisibility(View.GONE);
1444 }
1445
1446 mOverviewPanel.setAlpha(0f);
1447 }
1448
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001449 /**
Anjali Koppal5ad44842014-03-10 20:34:39 -07001450 * Sets the all apps button. This method is called from {@link Hotseat}.
1451 */
1452 public void setAllAppsButton(View allAppsButton) {
1453 mAllAppsButton = allAppsButton;
1454 }
1455
1456 public View getAllAppsButton() {
1457 return mAllAppsButton;
1458 }
1459
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001460 public View getWidgetsButton() {
1461 return mWidgetsButton;
1462 }
1463
Anjali Koppal5ad44842014-03-10 20:34:39 -07001464 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001465 * Creates a view representing a shortcut.
1466 *
1467 * @param info The data structure describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001468 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001469 View createShortcut(ShortcutInfo info) {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001470 return createShortcut((ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001471 }
1472
1473 /**
1474 * Creates a view representing a shortcut inflated from the specified resource.
1475 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001476 * @param parent The group the shortcut belongs to.
1477 * @param info The data structure describing the shortcut.
1478 *
1479 * @return A View inflated from layoutResId.
1480 */
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001481 public View createShortcut(ViewGroup parent, ShortcutInfo info) {
Sunny Goyal756cd262015-08-20 12:33:21 -07001482 BubbleTextView favorite = (BubbleTextView) getLayoutInflater().inflate(R.layout.app_icon,
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001483 parent, false);
1484 favorite.applyFromShortcutInfo(info, mIconCache);
1485 favorite.setCompoundDrawablePadding(mDeviceProfile.iconDrawablePaddingPx);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001486 favorite.setOnClickListener(this);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001487 favorite.setOnFocusChangeListener(mFocusHandler);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001488 return favorite;
1489 }
1490
1491 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001492 * Add a shortcut to the workspace.
1493 *
1494 * @param data The intent describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001495 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001496 private void completeAddShortcut(Intent data, long container, long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07001497 int cellY) {
1498 int[] cellXY = mTmpAddItemCellCoordinates;
Adam Cohendcd297f2013-06-18 13:13:40 -07001499 CellLayout layout = getCellLayout(container, screenId);
Romain Guycbb89e42009-06-08 15:52:54 -07001500
Sunny Goyal5c97f512015-05-19 16:03:28 -07001501 ShortcutInfo info = InstallShortcutReceiver.fromShortcutIntent(this, data);
Adam Cohend9198822011-11-22 16:42:47 -08001502 if (info == null) {
1503 return;
1504 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001505 final View view = createShortcut(info);
1506
Sunny Goyal5c97f512015-05-19 16:03:28 -07001507 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001508 // First we check if we already know the exact location where we want to add this item.
1509 if (cellX >= 0 && cellY >= 0) {
1510 cellXY[0] = cellX;
1511 cellXY[1] = cellY;
1512 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001513
1514 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001515 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001516 true, null,null)) {
1517 return;
1518 }
1519 DragObject dragObject = new DragObject();
1520 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001521 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1522 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001523 return;
1524 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08001525 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001526 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001527 }
1528
1529 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001530 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001531 return;
1532 }
1533
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001534 LauncherModel.addItemToDatabase(this, info, container, screenId, cellXY[0], cellXY[1]);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001535
1536 if (!mRestoring) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001537 mWorkspace.addInScreen(view, container, screenId, cellXY[0], cellXY[1], 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07001538 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001539 }
1540 }
1541
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001542 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001543 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001544 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001545 * @param appWidgetId The app widget id
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001546 */
Adam Cohen091440a2015-03-18 14:16:05 -07001547 @Thunk void completeAddAppWidget(int appWidgetId, long container, long screenId,
Adam Cohen59400422014-03-05 18:07:04 -08001548 AppWidgetHostView hostView, LauncherAppWidgetProviderInfo appWidgetInfo) {
1549
1550 ItemInfo info = mPendingAddInfo;
Adam Cohened66b2b2012-01-23 17:28:51 -08001551 if (appWidgetInfo == null) {
Sunny Goyal2e1efb42016-03-03 16:58:55 -08001552 appWidgetInfo = mAppWidgetManager.getLauncherAppWidgetInfo(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -08001553 }
Romain Guycbb89e42009-06-08 15:52:54 -07001554
Adam Cohen59400422014-03-05 18:07:04 -08001555 if (appWidgetInfo.isCustomWidget) {
1556 appWidgetId = LauncherAppWidgetInfo.CUSTOM_WIDGET_ID;
Michael Jurkaa63c4522010-08-19 13:52:27 -07001557 }
1558
Adam Cohen59400422014-03-05 18:07:04 -08001559 LauncherAppWidgetInfo launcherInfo;
1560 launcherInfo = new LauncherAppWidgetInfo(appWidgetId, appWidgetInfo.provider);
1561 launcherInfo.spanX = info.spanX;
1562 launcherInfo.spanY = info.spanY;
1563 launcherInfo.minSpanX = info.minSpanX;
1564 launcherInfo.minSpanY = info.minSpanY;
Sunny Goyalffe83f12014-08-14 17:39:34 -07001565 launcherInfo.user = mAppWidgetManager.getUser(appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001566
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001567 LauncherModel.addItemToDatabase(this, launcherInfo,
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001568 container, screenId, info.cellX, info.cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001569
1570 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001571 if (hostView == null) {
1572 // Perform actual inflation because we're live
Adam Cohen59400422014-03-05 18:07:04 -08001573 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId,
1574 appWidgetInfo);
Adam Cohened66b2b2012-01-23 17:28:51 -08001575 } else {
1576 // The AppWidgetHostView has already been inflated and instantiated
1577 launcherInfo.hostView = hostView;
1578 }
Adam Cohend41fbf52012-02-16 23:53:59 -08001579 launcherInfo.hostView.setVisibility(View.VISIBLE);
Sunny Goyal25c2e3e2015-10-28 23:28:21 -07001580 addAppWidgetToWorkspace(launcherInfo, appWidgetInfo, isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001581 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001582 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001583 }
Romain Guycbb89e42009-06-08 15:52:54 -07001584
Sunny Goyal25c2e3e2015-10-28 23:28:21 -07001585 private void addAppWidgetToWorkspace(LauncherAppWidgetInfo item,
1586 LauncherAppWidgetProviderInfo appWidgetInfo, boolean insert) {
1587 item.hostView.setTag(item);
1588 item.onBindAppWidget(this);
1589
1590 item.hostView.setFocusable(true);
1591 item.hostView.setOnFocusChangeListener(mFocusHandler);
1592
1593 mWorkspace.addInScreen(item.hostView, item.container, item.screenId,
1594 item.cellX, item.cellY, item.spanX, item.spanY, insert);
1595
1596 if (!item.isCustomWidget()) {
1597 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
1598 }
1599 }
1600
Adam Cohended9f8d2010-11-03 13:25:16 -07001601 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1602 @Override
1603 public void onReceive(Context context, Intent intent) {
1604 final String action = intent.getAction();
1605 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1606 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001607 mDragLayer.clearAllResizeFrames();
Winson Chungb745afb2015-03-02 11:51:23 -08001608 updateAutoAdvanceState();
Winson Chung337cd9d2011-03-30 10:39:30 -07001609
Winson Chungc100e8e2011-08-09 16:02:43 -07001610 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001611 // processing a multi-step drop
Hyunyoung Song3f471442015-04-08 19:01:34 -07001612 if (mAppsView != null && mWidgetsView != null &&
Winson Chungb745afb2015-03-02 11:51:23 -08001613 mPendingAddInfo.container == ItemInfo.NO_ID) {
Winson5c6bdbb2015-09-03 11:36:19 -07001614 if (!showWorkspace(false)) {
1615 // If we are already on the workspace, then manually reset all apps
1616 mAppsView.reset();
1617 }
Winson Chung785d2eb2011-04-14 16:08:02 -07001618 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001619 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1620 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08001621 updateAutoAdvanceState();
Dan Sandlerd5024042014-01-09 15:01:33 -05001622 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.DELETE_DATABASE.equals(action)) {
1623 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001624 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001625 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE);
1626 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.MIGRATE_DATABASE.equals(action)) {
1627 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001628 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001629 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE
1630 | LauncherModel.LOADER_FLAG_MIGRATE_SHORTCUTS);
Adam Cohended9f8d2010-11-03 13:25:16 -07001631 }
1632 }
1633 };
1634
1635 @Override
1636 public void onAttachedToWindow() {
1637 super.onAttachedToWindow();
1638
1639 // Listen for broadcasts related to user-presence
1640 final IntentFilter filter = new IntentFilter();
1641 filter.addAction(Intent.ACTION_SCREEN_OFF);
1642 filter.addAction(Intent.ACTION_USER_PRESENT);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001643 // For handling managed profiles
Dan Sandlerd5024042014-01-09 15:01:33 -05001644 if (ENABLE_DEBUG_INTENTS) {
1645 filter.addAction(DebugIntents.DELETE_DATABASE);
1646 filter.addAction(DebugIntents.MIGRATE_DATABASE);
1647 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001648 registerReceiver(mReceiver, filter);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001649 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Adam Cohend113e0c2010-11-11 10:48:05 -08001650 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001651 mVisible = true;
Sunny Goyalc86df472016-02-25 09:19:38 -08001652
1653 if (mLauncherCallbacks != null) {
1654 mLauncherCallbacks.onAttachedToWindow();
1655 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001656 }
1657
1658 @Override
1659 public void onDetachedFromWindow() {
1660 super.onDetachedFromWindow();
1661 mVisible = false;
1662
Adam Cohend113e0c2010-11-11 10:48:05 -08001663 if (mAttached) {
1664 unregisterReceiver(mReceiver);
1665 mAttached = false;
1666 }
Winson Chungb745afb2015-03-02 11:51:23 -08001667 updateAutoAdvanceState();
Sunny Goyalc86df472016-02-25 09:19:38 -08001668
1669 if (mLauncherCallbacks != null) {
1670 mLauncherCallbacks.onDetachedFromWindow();
1671 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001672 }
1673
1674 public void onWindowVisibilityChanged(int visibility) {
1675 mVisible = visibility == View.VISIBLE;
Winson Chungb745afb2015-03-02 11:51:23 -08001676 updateAutoAdvanceState();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001677 // The following code used to be in onResume, but it turns out onResume is called when
1678 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1679 // is a more appropriate event to handle
1680 if (mVisible) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001681 if (!mWorkspaceLoading) {
1682 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001683 // We want to let Launcher draw itself at least once before we force it to build
1684 // layers on all the workspace pages, so that transitioning to Launcher from other
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001685 // apps is nice and speedy.
1686 observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001687 private boolean mStarted = false;
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001688 public void onDraw() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001689 if (mStarted) return;
1690 mStarted = true;
Michael Jurka6ee21d22012-02-21 18:20:27 -08001691 // We delay the layer building a bit in order to give
1692 // other message processing a time to run. In particular
1693 // this avoids a delay in hiding the IME if it was
1694 // currently shown, because doing that may involve
1695 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001696 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurkadf96add2013-04-03 16:25:02 -07001697 final ViewTreeObserver.OnDrawListener listener = this;
1698 mWorkspace.post(new Runnable() {
Tony Wickhama0628cc2015-10-14 15:23:04 -07001699 public void run() {
1700 if (mWorkspace != null &&
1701 mWorkspace.getViewTreeObserver() != null) {
1702 mWorkspace.getViewTreeObserver().
1703 removeOnDrawListener(listener);
Michael Jurkadf96add2013-04-03 16:25:02 -07001704 }
Tony Wickhama0628cc2015-10-14 15:23:04 -07001705 }
1706 });
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001707 return;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001708 }
1709 });
1710 }
1711 clearTypedText();
1712 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001713 }
1714
Adam Cohen091440a2015-03-18 14:16:05 -07001715 @Thunk void sendAdvanceMessage(long delay) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001716 mHandler.removeMessages(ADVANCE_MSG);
1717 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1718 mHandler.sendMessageDelayed(msg, delay);
1719 mAutoAdvanceSentTime = System.currentTimeMillis();
1720 }
1721
Adam Cohen091440a2015-03-18 14:16:05 -07001722 @Thunk void updateAutoAdvanceState() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001723 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1724 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1725 mAutoAdvanceRunning = autoAdvanceRunning;
1726 if (autoAdvanceRunning) {
Sunny Goyal756cd262015-08-20 12:33:21 -07001727 long delay = mAutoAdvanceTimeLeft == -1 ? ADVANCE_INTERVAL : mAutoAdvanceTimeLeft;
Adam Cohended9f8d2010-11-03 13:25:16 -07001728 sendAdvanceMessage(delay);
1729 } else {
1730 if (!mWidgetsToAdvance.isEmpty()) {
Sunny Goyal756cd262015-08-20 12:33:21 -07001731 mAutoAdvanceTimeLeft = Math.max(0, ADVANCE_INTERVAL -
Adam Cohended9f8d2010-11-03 13:25:16 -07001732 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1733 }
1734 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001735 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001736 }
1737 }
1738 }
1739
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001740 @Thunk final Handler mHandler = new Handler(new Handler.Callback() {
1741
Adam Cohended9f8d2010-11-03 13:25:16 -07001742 @Override
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001743 public boolean handleMessage(Message msg) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001744 if (msg.what == ADVANCE_MSG) {
1745 int i = 0;
1746 for (View key: mWidgetsToAdvance.keySet()) {
1747 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
Sunny Goyal756cd262015-08-20 12:33:21 -07001748 final int delay = ADVANCE_STAGGER * i;
Adam Cohended9f8d2010-11-03 13:25:16 -07001749 if (v instanceof Advanceable) {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001750 mHandler.postDelayed(new Runnable() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001751 public void run() {
1752 ((Advanceable) v).advance();
1753 }
1754 }, delay);
1755 }
1756 i++;
1757 }
Sunny Goyal756cd262015-08-20 12:33:21 -07001758 sendAdvanceMessage(ADVANCE_INTERVAL);
Adam Cohended9f8d2010-11-03 13:25:16 -07001759 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001760 return true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001761 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001762 });
Adam Cohended9f8d2010-11-03 13:25:16 -07001763
Winsonc0b52fe2015-09-09 16:38:15 -07001764 private void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001765 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001766 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1767 if (v instanceof Advanceable) {
1768 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001769 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Winson Chungb745afb2015-03-02 11:51:23 -08001770 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001771 }
1772 }
1773
Winsonc0b52fe2015-09-09 16:38:15 -07001774 private void removeWidgetToAutoAdvance(View hostView) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001775 if (mWidgetsToAdvance.containsKey(hostView)) {
1776 mWidgetsToAdvance.remove(hostView);
Winson Chungb745afb2015-03-02 11:51:23 -08001777 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001778 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001779 }
1780
Hyunyoung Song3f471442015-04-08 19:01:34 -07001781 public void showOutOfSpaceMessage(boolean isHotseatLayout) {
Winson Chung93eef082012-03-23 15:59:27 -07001782 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1783 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001784 }
1785
Winson Chunga6945242014-01-08 14:04:34 -08001786 public DragLayer getDragLayer() {
1787 return mDragLayer;
1788 }
1789
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001790 public AllAppsContainerView getAppsView() {
Winson Chungb745afb2015-03-02 11:51:23 -08001791 return mAppsView;
1792 }
1793
Hyunyoung Song3f471442015-04-08 19:01:34 -07001794 public WidgetsContainerView getWidgetsView() {
1795 return mWidgetsView;
Winson Chungb745afb2015-03-02 11:51:23 -08001796 }
1797
Winson Chunga6945242014-01-08 14:04:34 -08001798 public Workspace getWorkspace() {
1799 return mWorkspace;
1800 }
1801
1802 public Hotseat getHotseat() {
1803 return mHotseat;
1804 }
1805
Jorim Jaggid017f882014-01-14 17:08:48 -08001806 public ViewGroup getOverviewPanel() {
Winson Chunga6945242014-01-08 14:04:34 -08001807 return mOverviewPanel;
1808 }
1809
Winson Chung006ee262015-08-03 14:40:11 -07001810 public SearchDropTargetBar getSearchDropTargetBar() {
Winson Chunga6945242014-01-08 14:04:34 -08001811 return mSearchDropTargetBar;
1812 }
1813
Tony Wickham34d2c912015-09-11 09:27:58 -07001814 public AppInfoDropTargetBar getAppInfoDropTargetBar() {
1815 return mAppInfoDropTargetBar;
1816 }
1817
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001818 public LauncherAppWidgetHost getAppWidgetHost() {
1819 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001820 }
Romain Guycbb89e42009-06-08 15:52:54 -07001821
Winson Chunga9abd0e2010-10-27 17:18:37 -07001822 public LauncherModel getModel() {
1823 return mModel;
1824 }
1825
Winson Chunga6945242014-01-08 14:04:34 -08001826 protected SharedPreferences getSharedPrefs() {
1827 return mSharedPrefs;
1828 }
1829
Adam Cohen2e6da152015-05-06 11:42:25 -07001830 public DeviceProfile getDeviceProfile() {
1831 return mDeviceProfile;
1832 }
1833
Bjorn Bringertc459e522013-06-07 19:36:01 +01001834 public void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001835 getWindow().closeAllPanels();
1836
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001837 // Whatever we were doing is hereby canceled.
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001838 setWaitingForResult(false);
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001839 }
1840
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001841 @Override
1842 protected void onNewIntent(Intent intent) {
Michael Jurka447bf842013-05-15 14:52:15 +02001843 long startTime = 0;
1844 if (DEBUG_RESUME_TIME) {
1845 startTime = System.currentTimeMillis();
1846 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001847 super.onNewIntent(intent);
1848
1849 // Close the menu
Winson15f8b172015-08-19 11:02:39 -07001850 Folder openFolder = mWorkspace.getOpenFolder();
1851 boolean alreadyOnHome = mHasFocus && ((intent.getFlags() &
1852 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1853 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
1854 boolean isActionMain = Intent.ACTION_MAIN.equals(intent.getAction());
1855 if (isActionMain) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001856 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001857 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001858
Adam Cohen6fecd412013-10-02 17:41:50 -07001859 if (mWorkspace == null) {
1860 // Can be cases where mWorkspace is null, this prevents a NPE
1861 return;
1862 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001863 // In all these cases, only animate if we're already on home
1864 mWorkspace.exitWidgetResizeMode();
Adam Cohen9211d422014-10-07 18:14:53 -07001865
Sunny Goyal935fca12015-10-13 10:19:01 -07001866 closeFolder(alreadyOnHome);
Adam Cohen6fecd412013-10-02 17:41:50 -07001867 exitSpringLoadedDragMode();
1868
1869 // If we are already on home, then just animate back to the workspace,
1870 // otherwise, just wait until onResume to set the state back to Workspace
1871 if (alreadyOnHome) {
Adam Cohened307df2013-10-02 09:37:31 -07001872 showWorkspace(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001873 } else {
1874 mOnResumeState = State.WORKSPACE;
1875 }
1876
1877 final View v = getWindow().peekDecorView();
1878 if (v != null && v.getWindowToken() != null) {
Tonyc17390962015-10-25 17:39:37 -07001879 InputMethodManager imm = (InputMethodManager) getSystemService(
Adam Cohen6fecd412013-10-02 17:41:50 -07001880 INPUT_METHOD_SERVICE);
1881 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1882 }
1883
Winson Chungb745afb2015-03-02 11:51:23 -08001884 // Reset the apps view
1885 if (!alreadyOnHome && mAppsView != null) {
1886 mAppsView.scrollToTop();
1887 }
1888
Hyunyoung Song3f471442015-04-08 19:01:34 -07001889 // Reset the widgets view
1890 if (!alreadyOnHome && mWidgetsView != null) {
1891 mWidgetsView.scrollToTop();
Adam Cohen6fecd412013-10-02 17:41:50 -07001892 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001893
Adam Cohen9211d422014-10-07 18:14:53 -07001894 if (mLauncherCallbacks != null) {
1895 mLauncherCallbacks.onHomeIntent();
1896 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001897 }
Adam Cohened307df2013-10-02 09:37:31 -07001898
Adam Cohen9211d422014-10-07 18:14:53 -07001899 if (mLauncherCallbacks != null) {
1900 mLauncherCallbacks.onNewIntent(intent);
1901 }
Winson15f8b172015-08-19 11:02:39 -07001902
1903 // Defer moving to the default screen until after we callback to the LauncherCallbacks
1904 // as slow logic in the callbacks eat into the time the scroller expects for the snapToPage
1905 // animation.
1906 if (isActionMain) {
Ivan Lee667d6882015-09-03 10:16:07 -06001907 boolean moveToDefaultScreen = mLauncherCallbacks != null ?
1908 mLauncherCallbacks.shouldMoveToDefaultScreenOnHomeIntent() : true;
Winson15f8b172015-08-19 11:02:39 -07001909 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
1910 openFolder == null && moveToDefaultScreen) {
Adam Cohen4b66bf32015-09-18 12:15:19 -07001911
1912 // We use this flag to suppress noisy callbacks above custom content state
1913 // from onResume.
1914 mMoveToDefaultScreenFromNewIntent = true;
Winson15f8b172015-08-19 11:02:39 -07001915 mWorkspace.post(new Runnable() {
1916 @Override
1917 public void run() {
Tonyc17390962015-10-25 17:39:37 -07001918 if (mWorkspace != null) {
1919 mWorkspace.moveToDefaultScreen(true);
1920 }
Winson15f8b172015-08-19 11:02:39 -07001921 }
1922 });
1923 }
1924 }
1925
1926 if (DEBUG_RESUME_TIME) {
1927 Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime));
1928 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001929 }
1930
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001931 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001932 public void onRestoreInstanceState(Bundle state) {
1933 super.onRestoreInstanceState(state);
1934 for (int page: mSynchronouslyBoundPages) {
1935 mWorkspace.restoreInstanceStateForChild(page);
1936 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001937 }
1938
1939 @Override
1940 protected void onSaveInstanceState(Bundle outState) {
Adam Cohen21cd0022013-10-09 18:57:02 -07001941 if (mWorkspace.getChildCount() > 0) {
Winson Chung9b9fb962013-11-15 15:39:34 -08001942 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN,
1943 mWorkspace.getCurrentPageOffsetFromCustomContent());
Adam Cohen21cd0022013-10-09 18:57:02 -07001944 }
Adam Cohen95bb8002011-07-03 23:40:28 -07001945 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001946
Michael Jurka883f55b2010-10-21 15:47:14 -07001947 outState.putInt(RUNTIME_STATE, mState.ordinal());
Sunny Goyal44d0b532016-03-14 14:08:12 -07001948 // We close any open folder since it will not be re-opened, and we need to make sure
1949 // this state is reflected.
1950 // TODO: Move folderInfo.isOpened out of the model and make it a UI state.
1951 closeFolder(false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001952
Adam Cohendcd297f2013-06-18 13:13:40 -07001953 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screenId > -1 &&
Winson Chung3d503fb2011-07-13 17:25:49 -07001954 mWaitingForResult) {
Sunny Goyal756cd262015-08-20 12:33:21 -07001955 ContentValues itemValues = new ContentValues();
1956 mPendingAddInfo.writeToValues(itemValues);
1957 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_ITEM, itemValues);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001958 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
Adam Cohen4637b5a2013-11-04 18:21:24 -08001959 outState.putInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID, mPendingAddWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001960 }
1961
Hyunyoung Song3f471442015-04-08 19:01:34 -07001962 // Save the current widgets tray?
1963 // TODO(hyunyoungs)
Adam Cohen9211d422014-10-07 18:14:53 -07001964
1965 if (mLauncherCallbacks != null) {
1966 mLauncherCallbacks.onSaveInstanceState(outState);
1967 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001968 }
1969
1970 @Override
1971 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001972 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001973
Winson Chunge7a03942011-08-05 15:05:12 -07001974 // Remove all pending runnables
1975 mHandler.removeMessages(ADVANCE_MSG);
1976 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07001977 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07001978
Winson Chungcd2b0142011-06-08 16:02:26 -07001979 // Stop callbacks from LauncherModel
Adam Cohen1a85c582014-09-30 09:48:49 -07001980 // It's possible to receive onDestroy after a new Launcher activity has
1981 // been created. In this case, don't interfere with the new Launcher.
1982 if (mModel.isCurrentCallbacks(this)) {
1983 mModel.stopLoader();
Sunny Goyald365ed62016-02-12 09:44:03 -08001984 LauncherAppState.getInstance().setLauncher(null);
Adam Cohen1a85c582014-09-30 09:48:49 -07001985 }
Winson Chungcd2b0142011-06-08 16:02:26 -07001986
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001987 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001988 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001989 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001990 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001991 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001992 mAppWidgetHost = null;
1993
1994 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001995
1996 TextKeyListener.getInstance().release();
1997
Joe Onorato34a0e1b2009-12-14 17:44:51 -08001998 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001999
Michael Jurka2ecf9952012-06-18 12:52:28 -07002000 LauncherAnimUtils.onDestroyActivity();
Adam Cohen9211d422014-10-07 18:14:53 -07002001
2002 if (mLauncherCallbacks != null) {
2003 mLauncherCallbacks.onDestroy();
2004 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002005 }
2006
Adam Cohena9cf38f2011-05-02 15:36:58 -07002007 public DragController getDragController() {
2008 return mDragController;
2009 }
2010
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002011 @Override
2012 public void startActivityForResult(Intent intent, int requestCode) {
Adam Cohen173f7112015-03-27 15:14:00 -07002013 onStartForResult(requestCode);
2014 super.startActivityForResult(intent, requestCode);
2015 }
2016
2017 @Override
2018 public void startIntentSenderForResult (IntentSender intent, int requestCode,
2019 Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) {
2020 onStartForResult(requestCode);
2021 try {
2022 super.startIntentSenderForResult(intent, requestCode,
2023 fillInIntent, flagsMask, flagsValues, extraFlags, options);
2024 } catch (IntentSender.SendIntentException e) {
2025 throw new ActivityNotFoundException();
2026 }
2027 }
2028
2029 private void onStartForResult(int requestCode) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002030 if (requestCode >= 0) {
2031 setWaitingForResult(true);
2032 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002033 }
2034
Winson Chung70d72102011-08-12 11:24:35 -07002035 /**
2036 * Indicates that we want global search for this activity by setting the globalSearch
2037 * argument for {@link #startSearch} to true.
2038 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002039 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07002040 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002041 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002042
Karl Rosaen138a0412009-04-23 19:00:21 -07002043 if (initialQuery == null) {
2044 // Use any text typed in the launcher as the initial query
2045 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07002046 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002047 if (appSearchData == null) {
2048 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01002049 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002050 }
Winson Chungadf0c182012-08-23 14:59:07 -07002051 Rect sourceBounds = new Rect();
2052 if (mSearchDropTargetBar != null) {
2053 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
2054 }
Romain Guycbb89e42009-06-08 15:52:54 -07002055
Ian Parkinson047036e2014-09-01 15:40:53 +01002056 boolean clearTextImmediately = startSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002057 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002058 if (clearTextImmediately) {
2059 clearTypedText();
2060 }
Winson Chungcd99cd32015-04-29 11:03:24 -07002061
2062 // We need to show the workspace after starting the search
2063 showWorkspace(true);
Bjorn Bringertc459e522013-06-07 19:36:01 +01002064 }
2065
Ian Parkinson047036e2014-09-01 15:40:53 +01002066 /**
2067 * Start a text search.
2068 *
2069 * @return {@code true} if the search will start immediately, so any further keypresses
2070 * will be handled directly by the search UI. {@code false} if {@link Launcher} should continue
2071 * to buffer keypresses.
2072 */
2073 public boolean startSearch(String initialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002074 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Adam Cohen9211d422014-10-07 18:14:53 -07002075 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
2076 return mLauncherCallbacks.startSearch(initialQuery, selectInitialQuery, appSearchData,
2077 sourceBounds);
2078 }
2079
Michael Jurkaa33411c2012-06-14 16:18:21 -07002080 startGlobalSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002081 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002082 return false;
Michael Jurkaa33411c2012-06-14 16:18:21 -07002083 }
2084
2085 /**
2086 * Starts the global search activity. This code is a copied from SearchManager
2087 */
Bjorn Bringertc459e522013-06-07 19:36:01 +01002088 private void startGlobalSearch(String initialQuery,
Michael Jurkaa33411c2012-06-14 16:18:21 -07002089 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002090 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07002091 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2092 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
2093 if (globalSearchActivity == null) {
2094 Log.w(TAG, "No global search activity found.");
2095 return;
2096 }
2097 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
2098 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2099 intent.setComponent(globalSearchActivity);
2100 // Make sure that we have a Bundle to put source in
2101 if (appSearchData == null) {
2102 appSearchData = new Bundle();
2103 } else {
2104 appSearchData = new Bundle(appSearchData);
2105 }
Adam Cohen9211d422014-10-07 18:14:53 -07002106 // Set source to package name of app that starts global search if not set already.
Michael Jurkaa33411c2012-06-14 16:18:21 -07002107 if (!appSearchData.containsKey("source")) {
2108 appSearchData.putString("source", getPackageName());
2109 }
2110 intent.putExtra(SearchManager.APP_DATA, appSearchData);
2111 if (!TextUtils.isEmpty(initialQuery)) {
2112 intent.putExtra(SearchManager.QUERY, initialQuery);
2113 }
2114 if (selectInitialQuery) {
2115 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
2116 }
2117 intent.setSourceBounds(sourceBounds);
2118 try {
2119 startActivity(intent);
2120 } catch (ActivityNotFoundException ex) {
2121 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
2122 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002123 }
2124
Yura4f93ec62014-02-04 14:15:21 +00002125 public boolean isOnCustomContent() {
2126 return mWorkspace.isOnOrMovingToCustomContent();
2127 }
2128
Winson Chung70d72102011-08-12 11:24:35 -07002129 @Override
Winson Chung70d72102011-08-12 11:24:35 -07002130 public boolean onPrepareOptionsMenu(Menu menu) {
2131 super.onPrepareOptionsMenu(menu);
Adam Cohen9211d422014-10-07 18:14:53 -07002132 if (mLauncherCallbacks != null) {
2133 return mLauncherCallbacks.onPrepareOptionsMenu(menu);
2134 }
Michael Jurkab94f3f82013-09-11 18:08:54 +02002135 return false;
Winson Chung70d72102011-08-12 11:24:35 -07002136 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002137
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002138 @Override
2139 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07002140 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07002141 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07002142 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002143 }
2144
Joe Onorato9c1289c2009-08-17 11:03:03 -04002145 public boolean isWorkspaceLocked() {
2146 return mWorkspaceLoading || mWaitingForResult;
2147 }
2148
Adam Cohen517a7f52014-03-01 12:12:59 -08002149 public boolean isWorkspaceLoading() {
2150 return mWorkspaceLoading;
2151 }
2152
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002153 private void setWorkspaceLoading(boolean value) {
2154 boolean isLocked = isWorkspaceLocked();
2155 mWorkspaceLoading = value;
2156 if (isLocked != isWorkspaceLocked()) {
2157 onWorkspaceLockedChanged();
2158 }
2159 }
2160
2161 private void setWaitingForResult(boolean value) {
2162 boolean isLocked = isWorkspaceLocked();
2163 mWaitingForResult = value;
2164 if (isLocked != isWorkspaceLocked()) {
2165 onWorkspaceLockedChanged();
2166 }
2167 }
2168
Adam Cohen9211d422014-10-07 18:14:53 -07002169 protected void onWorkspaceLockedChanged() {
2170 if (mLauncherCallbacks != null) {
2171 mLauncherCallbacks.onWorkspaceLockedChanged();
2172 }
2173 }
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002174
Michael Jurka0280c3b2010-09-17 15:00:07 -07002175 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07002176 mPendingAddInfo.container = ItemInfo.NO_ID;
Adam Cohendcd297f2013-06-18 13:13:40 -07002177 mPendingAddInfo.screenId = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002178 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
2179 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Sunny Goyal233ee962015-08-03 13:05:01 -07002180 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = 1;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002181 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07002182
Tony Wickhama0628cc2015-10-14 15:23:04 -07002183 void addAppWidgetFromDropImpl(final int appWidgetId, final ItemInfo info, final
Adam Cohen59400422014-03-05 18:07:04 -08002184 AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo) {
Tony Wickhama0628cc2015-10-14 15:23:04 -07002185 if (LOGD) {
2186 Log.d(TAG, "Adding widget from drop");
2187 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07002188 addAppWidgetImpl(appWidgetId, info, boundWidget, appWidgetInfo, 0);
2189 }
2190
Sunny Goyale6b63a32015-01-16 16:14:29 -08002191 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
Adam Cohen59400422014-03-05 18:07:04 -08002192 final AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo,
2193 int delay) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002194 if (appWidgetInfo.configure != null) {
2195 mPendingAddWidgetInfo = appWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -08002196 mPendingAddWidgetId = appWidgetId;
Michael Jurkaaf442092010-06-10 17:01:57 -07002197
Bjorn Bringert7984c942009-12-09 15:38:25 +00002198 // Launch over to configure widget, if needed
Sunny Goyalffe83f12014-08-14 17:39:34 -07002199 mAppWidgetManager.startConfigActivity(appWidgetInfo, appWidgetId, this,
2200 mAppWidgetHost, REQUEST_CREATE_APPWIDGET);
2201
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002202 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00002203 // Otherwise just add it
Adam Cohenad4e15c2013-10-17 16:21:35 -07002204 Runnable onComplete = new Runnable() {
2205 @Override
2206 public void run() {
2207 // Exit spring loaded mode if necessary after adding the widget
2208 exitSpringLoadedDragModeDelayed(true, EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT,
2209 null);
2210 }
2211 };
Adam Cohendcd297f2013-06-18 13:13:40 -07002212 completeAddAppWidget(appWidgetId, info.container, info.screenId, boundWidget,
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002213 appWidgetInfo);
Adam Cohen689ff162014-05-08 17:27:56 -07002214 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, delay, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002215 }
2216 }
Romain Guycbb89e42009-06-08 15:52:54 -07002217
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002218 protected void moveToCustomContentScreen(boolean animate) {
Sandeep Siddharthaf2b47f12013-09-26 19:49:27 -07002219 // Close any folders that may be open.
2220 closeFolder();
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002221 mWorkspace.moveToCustomContentScreen(animate);
2222 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002223
2224 public void addPendingItem(PendingAddItemInfo info, long container, long screenId,
2225 int[] cell, int spanX, int spanY) {
2226 switch (info.itemType) {
2227 case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET:
2228 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
2229 int span[] = new int[2];
2230 span[0] = spanX;
2231 span[1] = spanY;
2232 addAppWidgetFromDrop((PendingAddWidgetInfo) info,
2233 container, screenId, cell, span);
2234 break;
2235 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
2236 processShortcutFromDrop(info.componentName, container, screenId, cell);
2237 break;
2238 default:
2239 throw new IllegalStateException("Unknown item type: " + info.itemType);
2240 }
2241 }
2242
Adam Cohenfbba09b2011-07-18 21:43:05 -07002243 /**
2244 * Process a shortcut drop.
2245 *
2246 * @param componentName The name of the component
Adam Cohendcd297f2013-06-18 13:13:40 -07002247 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002248 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002249 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002250 private void processShortcutFromDrop(ComponentName componentName, long container, long screenId,
2251 int[] cell) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002252 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002253 mPendingAddInfo.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002254 mPendingAddInfo.screenId = screenId;
Adam Cohenfbba09b2011-07-18 21:43:05 -07002255
2256 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002257 mPendingAddInfo.cellX = cell[0];
2258 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002259 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002260
2261 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
2262 createShortcutIntent.setComponent(componentName);
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002263 Utilities.startActivityForResultSafely(this, createShortcutIntent, REQUEST_CREATE_SHORTCUT);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002264 }
2265
Adam Cohenfbba09b2011-07-18 21:43:05 -07002266 /**
2267 * Process a widget drop.
2268 *
2269 * @param info The PendingAppWidgetInfo of the widget being added.
Adam Cohendcd297f2013-06-18 13:13:40 -07002270 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002271 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002272 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002273 private void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, long screenId,
2274 int[] cell, int[] span) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07002275 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002276 mPendingAddInfo.container = info.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002277 mPendingAddInfo.screenId = info.screenId = screenId;
Adam Cohend41fbf52012-02-16 23:53:59 -08002278 mPendingAddInfo.minSpanX = info.minSpanX;
2279 mPendingAddInfo.minSpanY = info.minSpanY;
2280
Adam Cohenfbba09b2011-07-18 21:43:05 -07002281 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002282 mPendingAddInfo.cellX = cell[0];
2283 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002284 }
Adam Cohend41fbf52012-02-16 23:53:59 -08002285 if (span != null) {
2286 mPendingAddInfo.spanX = span[0];
2287 mPendingAddInfo.spanY = span[1];
2288 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002289
Adam Cohened66b2b2012-01-23 17:28:51 -08002290 AppWidgetHostView hostView = info.boundWidget;
2291 int appWidgetId;
2292 if (hostView != null) {
Tony Wickhama0628cc2015-10-14 15:23:04 -07002293 // In the case where we've prebound the widget, we remove it from the DragLayer
2294 if (LOGD) {
2295 Log.d(TAG, "Removing widget view from drag layer and setting boundWidget to null");
2296 }
2297 getDragLayer().removeView(hostView);
2298
Adam Cohened66b2b2012-01-23 17:28:51 -08002299 appWidgetId = hostView.getAppWidgetId();
Tony Wickhama0628cc2015-10-14 15:23:04 -07002300 addAppWidgetFromDropImpl(appWidgetId, info, hostView, info.info);
Sunny Goyal5b9ebca2015-06-01 18:37:32 -07002301
2302 // Clear the boundWidget so that it doesn't get destroyed.
2303 info.boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -08002304 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002305 // In this case, we either need to start an activity to get permission to bind
2306 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08002307 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07002308 Bundle options = info.bindOptions;
2309
Sunny Goyalffe83f12014-08-14 17:39:34 -07002310 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
2311 appWidgetId, info.info, options);
Adam Cohendd70d662012-10-04 16:53:44 -07002312 if (success) {
Tony Wickhama0628cc2015-10-14 15:23:04 -07002313 addAppWidgetFromDropImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07002314 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002315 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07002316 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
2317 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
2318 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Sunny Goyalffe83f12014-08-14 17:39:34 -07002319 mAppWidgetManager.getUser(mPendingAddWidgetInfo)
2320 .addToIntent(intent, AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE);
Adam Cohendd70d662012-10-04 16:53:44 -07002321 // TODO: we need to make sure that this accounts for the options bundle.
2322 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07002323 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
2324 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002325 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002326 }
2327
Adam Cohendcd297f2013-06-18 13:13:40 -07002328 FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07002329 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07002330 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002331 folderInfo.title = getText(R.string.folder_name);
2332
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002333 // Update the model
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07002334 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId,
2335 cellX, cellY);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002336 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002337
2338 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07002339 FolderIcon newFolder =
2340 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07002341 mWorkspace.addInScreen(newFolder, container, screenId, cellX, cellY, 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07002342 isWorkspaceLocked());
Winson Chung5f8afe62013-08-12 16:19:28 -07002343 // Force measure the new folder icon
2344 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
2345 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07002346 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002347 }
Romain Guycbb89e42009-06-08 15:52:54 -07002348
Winsonc0b52fe2015-09-09 16:38:15 -07002349 /**
Winsonfa56b3f2015-09-14 12:01:13 -07002350 * Unbinds the view for the specified item, and removes the item and all its children.
2351 *
2352 * @param v the view being removed.
Winsonfa56b3f2015-09-14 12:01:13 -07002353 * @param itemInfo the {@link ItemInfo} for this view.
2354 * @param deleteFromDb whether or not to delete this item from the db.
Winsonc0b52fe2015-09-09 16:38:15 -07002355 */
Winson2949fb52015-09-24 09:56:11 -07002356 public boolean removeItem(View v, ItemInfo itemInfo, boolean deleteFromDb) {
Winsonc0b52fe2015-09-09 16:38:15 -07002357 if (itemInfo instanceof ShortcutInfo) {
Winsonfa56b3f2015-09-14 12:01:13 -07002358 // Remove the shortcut from the folder before removing it from launcher
Winson2949fb52015-09-24 09:56:11 -07002359 FolderInfo folderInfo = sFolders.get(itemInfo.container);
2360 if (folderInfo != null) {
2361 folderInfo.remove((ShortcutInfo) itemInfo);
Winsonfa56b3f2015-09-14 12:01:13 -07002362 } else {
2363 mWorkspace.removeWorkspaceItem(v);
2364 }
Winsonc0b52fe2015-09-09 16:38:15 -07002365 if (deleteFromDb) {
2366 LauncherModel.deleteItemFromDatabase(this, itemInfo);
2367 }
2368 } else if (itemInfo instanceof FolderInfo) {
2369 final FolderInfo folderInfo = (FolderInfo) itemInfo;
2370 unbindFolder(folderInfo);
2371 mWorkspace.removeWorkspaceItem(v);
2372 if (deleteFromDb) {
2373 LauncherModel.deleteFolderAndContentsFromDatabase(this, folderInfo);
2374 }
2375 } else if (itemInfo instanceof LauncherAppWidgetInfo) {
2376 final LauncherAppWidgetInfo widgetInfo = (LauncherAppWidgetInfo) itemInfo;
Winson44818e02015-10-02 11:25:46 -07002377 mWorkspace.removeWorkspaceItem(v);
Sunny Goyal56c73602015-09-25 12:55:01 -07002378 removeWidgetToAutoAdvance(widgetInfo.hostView);
2379 widgetInfo.hostView = null;
Winsonc0b52fe2015-09-09 16:38:15 -07002380 if (deleteFromDb) {
Sunny Goyal56c73602015-09-25 12:55:01 -07002381 deleteWidgetInfo(widgetInfo);
Winsonc0b52fe2015-09-09 16:38:15 -07002382 }
Sunny Goyal56c73602015-09-25 12:55:01 -07002383
Winsonc0b52fe2015-09-09 16:38:15 -07002384 } else {
2385 return false;
2386 }
2387 return true;
2388 }
2389
2390 /**
2391 * Unbinds any launcher references to the folder.
2392 */
2393 private void unbindFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002394 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002395 }
2396
Winsonc0b52fe2015-09-09 16:38:15 -07002397 /**
Sunny Goyal56c73602015-09-25 12:55:01 -07002398 * Deletes the widget info and the widget id.
Winsonc0b52fe2015-09-09 16:38:15 -07002399 */
Sunny Goyal56c73602015-09-25 12:55:01 -07002400 private void deleteWidgetInfo(final LauncherAppWidgetInfo widgetInfo) {
Winsonc0b52fe2015-09-09 16:38:15 -07002401 final LauncherAppWidgetHost appWidgetHost = getAppWidgetHost();
Sunny Goyal56c73602015-09-25 12:55:01 -07002402 if (appWidgetHost != null && !widgetInfo.isCustomWidget() && widgetInfo.isWidgetIdValid()) {
Winsonc0b52fe2015-09-09 16:38:15 -07002403 // Deleting an app widget ID is a void call but writes to disk before returning
2404 // to the caller...
2405 new AsyncTask<Void, Void, Void>() {
2406 public Void doInBackground(Void ... args) {
2407 appWidgetHost.deleteAppWidgetId(widgetInfo.appWidgetId);
2408 return null;
2409 }
Sunny Goyalf27cb0e2015-09-23 16:12:02 -07002410 }.executeOnExecutor(Utilities.THREAD_POOL_EXECUTOR);
Winsonc0b52fe2015-09-09 16:38:15 -07002411 }
Sunny Goyal56c73602015-09-25 12:55:01 -07002412 LauncherModel.deleteItemFromDatabase(this, widgetInfo);
Winsonc0b52fe2015-09-09 16:38:15 -07002413 }
2414
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002415 @Override
2416 public boolean dispatchKeyEvent(KeyEvent event) {
2417 if (event.getAction() == KeyEvent.ACTION_DOWN) {
2418 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002419 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07002420 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08002421 case KeyEvent.KEYCODE_VOLUME_DOWN:
Sunny Goyal4bbf4192014-11-11 12:23:59 -08002422 if (Utilities.isPropertyEnabled(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08002423 dumpState();
2424 return true;
2425 }
2426 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07002427 }
2428 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2429 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07002430 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002431 return true;
2432 }
2433 }
2434
2435 return super.dispatchKeyEvent(event);
2436 }
2437
Joe Onorato88ec0992009-11-19 13:16:06 -08002438 @Override
2439 public void onBackPressed() {
Adam Cohen9211d422014-10-07 18:14:53 -07002440 if (mLauncherCallbacks != null && mLauncherCallbacks.handleBackPressed()) {
2441 return;
2442 }
2443
Sunny Goyal45478022015-06-08 16:52:41 -07002444 if (mDragController.isDragging()) {
2445 mDragController.cancelDrag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08002446 return;
2447 }
2448
Winson Chungb745afb2015-03-02 11:51:23 -08002449 if (isAppsViewVisible()) {
2450 showWorkspace(true);
2451 } else if (isWidgetsViewVisible()) {
2452 showOverviewMode(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002453 } else if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002454 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002455 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07002456 Folder openFolder = mWorkspace.getOpenFolder();
2457 if (openFolder.isEditingName()) {
2458 openFolder.dismissEditingName();
2459 } else {
2460 closeFolder();
2461 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002462 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08002463 mWorkspace.exitWidgetResizeMode();
2464
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002465 // Back button is a no-op here, but give at least some feedback for the button press
2466 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07002467 }
Joe Onorato88ec0992009-11-19 13:16:06 -08002468 }
2469
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002470 /**
Sunny Goyal383c5072015-06-12 21:18:53 -07002471 * Re-listen when widget host is reset.
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002472 */
Sunny Goyal383c5072015-06-12 21:18:53 -07002473 @Override
2474 public void onAppWidgetHostReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08002475 if (mAppWidgetHost != null) {
2476 mAppWidgetHost.startListening();
2477 }
Sunny Goyal655daae2015-12-08 09:28:23 -08002478
2479 // Recreate the QSB, as the widget has been reset.
2480 bindSearchProviderChanged();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002481 }
2482
2483 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002484 * Launches the intent referred by the clicked shortcut.
2485 *
2486 * @param v The view representing the clicked shortcut.
2487 */
2488 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002489 // Make sure that rogue clicks don't get through while allapps is launching, or after the
2490 // view has detached (it's possible for this to happen if the view is removed mid touch).
2491 if (v.getWindowToken() == null) {
2492 return;
2493 }
2494
Winson Chung9b0b2fe2012-02-24 13:03:34 -08002495 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002496 return;
2497 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07002498
Adam Cohen1697b792013-09-17 19:08:21 -07002499 if (v instanceof Workspace) {
2500 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002501 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002502 }
2503 return;
2504 }
2505
2506 if (v instanceof CellLayout) {
2507 if (mWorkspace.isInOverviewMode()) {
Sunny Goyalce5a7e52015-07-08 15:44:27 -07002508 mWorkspace.snapToPageFromOverView(mWorkspace.indexOfChild(v));
2509 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002510 }
Sunny Goyalce5a7e52015-07-08 15:44:27 -07002511 return;
Adam Cohenf358a4b2013-07-23 16:47:31 -07002512 }
2513
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002514 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002515 if (tag instanceof ShortcutInfo) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002516 onClickAppShortcut(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002517 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002518 if (v instanceof FolderIcon) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002519 onClickFolderIcon(v);
Adam Cohena9cf38f2011-05-02 15:36:58 -07002520 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002521 } else if (v == mAllAppsButton) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002522 onClickAllAppsButton(v);
Sunny Goyal508da152014-08-14 10:53:27 -07002523 } else if (tag instanceof AppInfo) {
2524 startAppShortcutOrInfoActivity(v);
Sunny Goyalff572272014-07-23 13:58:07 -07002525 } else if (tag instanceof LauncherAppWidgetInfo) {
2526 if (v instanceof PendingAppWidgetHostView) {
2527 onClickPendingWidget((PendingAppWidgetHostView) v);
2528 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002529 }
2530 }
2531
Sunny Goyal70660032015-05-14 00:07:08 -07002532 @SuppressLint("ClickableViewAccessibility")
Michael Jurka0e260592010-06-30 17:07:39 -07002533 public boolean onTouch(View v, MotionEvent event) {
Michael Jurka0e260592010-06-30 17:07:39 -07002534 return false;
2535 }
2536
Michael Jurkaaf442092010-06-10 17:01:57 -07002537 /**
Sunny Goyalff572272014-07-23 13:58:07 -07002538 * Event handler for the app widget view which has not fully restored.
2539 */
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002540 public void onClickPendingWidget(final PendingAppWidgetHostView v) {
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002541 if (mIsSafeModeEnabled) {
2542 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2543 return;
2544 }
2545
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002546 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) v.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07002547 if (v.isReadyForClickSetup()) {
Sunny Goyalff572272014-07-23 13:58:07 -07002548 int widgetId = info.appWidgetId;
Sunny Goyal2e1efb42016-03-03 16:58:55 -08002549 LauncherAppWidgetProviderInfo appWidgetInfo =
2550 mAppWidgetManager.getLauncherAppWidgetInfo(widgetId);
Sunny Goyalff572272014-07-23 13:58:07 -07002551 if (appWidgetInfo != null) {
Sunny Goyal2e1efb42016-03-03 16:58:55 -08002552 mPendingAddWidgetInfo = appWidgetInfo;
Sunny Goyalff572272014-07-23 13:58:07 -07002553 mPendingAddInfo.copyFrom(info);
2554 mPendingAddWidgetId = widgetId;
2555
Sunny Goyalffe83f12014-08-14 17:39:34 -07002556 AppWidgetManagerCompat.getInstance(this).startConfigActivity(appWidgetInfo,
2557 info.appWidgetId, this, mAppWidgetHost, REQUEST_RECONFIGURE_APPWIDGET);
Sunny Goyalff572272014-07-23 13:58:07 -07002558 }
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002559 } else if (info.installProgress < 0) {
2560 // The install has not been queued
2561 final String packageName = info.providerName.getPackageName();
2562 showBrokenAppInstallDialog(packageName,
2563 new DialogInterface.OnClickListener() {
2564 public void onClick(DialogInterface dialog, int id) {
2565 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
2566 }
2567 });
2568 } else {
2569 // Download has started.
2570 final String packageName = info.providerName.getPackageName();
2571 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
Sunny Goyalff572272014-07-23 13:58:07 -07002572 }
2573 }
2574
2575 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002576 * Event handler for the "grid" button that appears on the home screen, which
2577 * enters all apps mode.
2578 *
2579 * @param v The view that was clicked.
2580 */
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002581 protected void onClickAllAppsButton(View v) {
2582 if (LOGD) Log.d(TAG, "onClickAllAppsButton");
Winson Chung76648c52015-07-10 14:33:23 -07002583 if (!isAppsViewVisible()) {
Winson Chung4ac30062015-05-08 17:34:17 -07002584 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07002585 true /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungbedf9232015-07-10 12:38:30 -07002586
2587 if (mLauncherCallbacks != null) {
2588 mLauncherCallbacks.onClickAllAppsButton(v);
2589 }
Winson Chung76648c52015-07-10 14:33:23 -07002590 }
2591 }
2592
2593 protected void onLongClickAllAppsButton(View v) {
2594 if (LOGD) Log.d(TAG, "onLongClickAllAppsButton");
2595 if (!isAppsViewVisible()) {
2596 showAppsView(true /* animated */, false /* resetListToTop */,
2597 true /* updatePredictedApps */, true /* focusSearchBar */);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002598 }
2599 }
2600
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002601 private void showBrokenAppInstallDialog(final String packageName,
2602 DialogInterface.OnClickListener onSearchClickListener) {
Sunny Goyale03b8122014-10-08 09:55:24 -07002603 new AlertDialog.Builder(this)
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002604 .setTitle(R.string.abandoned_promises_title)
2605 .setMessage(R.string.abandoned_promise_explanation)
2606 .setPositiveButton(R.string.abandoned_search, onSearchClickListener)
2607 .setNeutralButton(R.string.abandoned_clean_this,
2608 new DialogInterface.OnClickListener() {
2609 public void onClick(DialogInterface dialog, int id) {
2610 final UserHandleCompat user = UserHandleCompat.myUserHandle();
2611 mWorkspace.removeAbandonedPromise(packageName, user);
2612 }
2613 })
2614 .create().show();
2615 return;
2616 }
2617
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002618 /**
2619 * Event handler for an app shortcut click.
2620 *
2621 * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.
2622 */
Chris Wren40c5ed32014-06-24 18:24:23 -04002623 protected void onClickAppShortcut(final View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002624 if (LOGD) Log.d(TAG, "onClickAppShortcut");
2625 Object tag = v.getTag();
2626 if (!(tag instanceof ShortcutInfo)) {
2627 throw new IllegalArgumentException("Input must be a Shortcut");
2628 }
2629
2630 // Open shortcut
2631 final ShortcutInfo shortcut = (ShortcutInfo) tag;
Sunny Goyal1a745e82014-10-02 15:58:31 -07002632
2633 if (shortcut.isDisabled != 0) {
Kenny Guyff05f432016-01-22 17:48:29 +00002634 if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_SUSPENDED) != 0
2635 || (shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_QUIET_USER) != 0) {
Kenny Guy44cba692016-01-21 19:50:02 +00002636 // Launch activity anyway, framework will tell the user why the app is suspended.
2637 } else {
2638 int error = R.string.activity_not_available;
2639 if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_SAFEMODE) != 0) {
2640 error = R.string.safemode_shortcut_error;
2641 }
2642 Toast.makeText(this, error, Toast.LENGTH_SHORT).show();
2643 return;
Sunny Goyal1a745e82014-10-02 15:58:31 -07002644 }
Sunny Goyal1a745e82014-10-02 15:58:31 -07002645 }
2646
Chris Wren40c5ed32014-06-24 18:24:23 -04002647 // Check for abandoned promise
Sunny Goyal34942622014-08-29 17:20:55 -07002648 if ((v instanceof BubbleTextView)
2649 && shortcut.isPromise()
2650 && !shortcut.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE)) {
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002651 showBrokenAppInstallDialog(
Sunny Goyal34942622014-08-29 17:20:55 -07002652 shortcut.getTargetComponent().getPackageName(),
Chris Wren40c5ed32014-06-24 18:24:23 -04002653 new DialogInterface.OnClickListener() {
2654 public void onClick(DialogInterface dialog, int id) {
Sunny Goyal508da152014-08-14 10:53:27 -07002655 startAppShortcutOrInfoActivity(v);
Chris Wren40c5ed32014-06-24 18:24:23 -04002656 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002657 });
Chris Wren40c5ed32014-06-24 18:24:23 -04002658 return;
2659 }
2660
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002661 // Start activities
Sunny Goyal508da152014-08-14 10:53:27 -07002662 startAppShortcutOrInfoActivity(v);
Adam Cohen9211d422014-10-07 18:14:53 -07002663
2664 if (mLauncherCallbacks != null) {
2665 mLauncherCallbacks.onClickAppShortcut(v);
2666 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002667 }
2668
Adam Cohen091440a2015-03-18 14:16:05 -07002669 @Thunk void startAppShortcutOrInfoActivity(View v) {
Chris Wren40c5ed32014-06-24 18:24:23 -04002670 Object tag = v.getTag();
Sunny Goyal508da152014-08-14 10:53:27 -07002671 final ShortcutInfo shortcut;
2672 final Intent intent;
2673 if (tag instanceof ShortcutInfo) {
2674 shortcut = (ShortcutInfo) tag;
2675 intent = shortcut.intent;
2676 int[] pos = new int[2];
2677 v.getLocationOnScreen(pos);
2678 intent.setSourceBounds(new Rect(pos[0], pos[1],
2679 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Chris Wren40c5ed32014-06-24 18:24:23 -04002680
Sunny Goyal508da152014-08-14 10:53:27 -07002681 } else if (tag instanceof AppInfo) {
2682 shortcut = null;
2683 intent = ((AppInfo) tag).intent;
2684 } else {
2685 throw new IllegalArgumentException("Input must be a Shortcut or AppInfo");
2686 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002687
2688 boolean success = startActivitySafely(v, intent, tag);
Winson Chung8f1eff72015-05-28 17:33:40 -07002689 mStats.recordLaunch(v, intent, shortcut);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002690
2691 if (success && v instanceof BubbleTextView) {
2692 mWaitingForResume = (BubbleTextView) v;
2693 mWaitingForResume.setStayPressed(true);
2694 }
2695 }
2696
2697 /**
2698 * Event handler for a folder icon click.
2699 *
2700 * @param v The view that was clicked. Must be an instance of {@link FolderIcon}.
2701 */
2702 protected void onClickFolderIcon(View v) {
2703 if (LOGD) Log.d(TAG, "onClickFolder");
2704 if (!(v instanceof FolderIcon)){
2705 throw new IllegalArgumentException("Input must be a FolderIcon");
2706 }
2707
2708 FolderIcon folderIcon = (FolderIcon) v;
Sunny Goyal08442b82015-10-21 17:15:08 -07002709 if (!folderIcon.getFolderInfo().opened && !folderIcon.getFolder().isDestroyed()) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002710 // Open the requested folder
Sunny Goyal08442b82015-10-21 17:15:08 -07002711 openFolder(folderIcon, true);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002712 }
Adam Cohen9211d422014-10-07 18:14:53 -07002713
2714 if (mLauncherCallbacks != null) {
2715 mLauncherCallbacks.onClickFolderIcon(v);
2716 }
Michael Jurka5130e402011-10-13 04:55:35 -07002717 }
2718
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002719 /**
2720 * Event handler for the (Add) Widgets button that appears after a long press
2721 * on the home screen.
2722 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002723 protected void onClickAddWidgetButton(View view) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002724 if (LOGD) Log.d(TAG, "onClickAddWidgetButton");
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002725 if (mIsSafeModeEnabled) {
2726 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2727 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08002728 showWidgetsView(true /* animated */, true /* resetPageToZero */);
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002729 if (mLauncherCallbacks != null) {
2730 mLauncherCallbacks.onClickAddWidgetButton(view);
2731 }
Adam Cohen9211d422014-10-07 18:14:53 -07002732 }
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002733 }
2734
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002735 /**
2736 * Event handler for the wallpaper picker button that appears after a long press
2737 * on the home screen.
2738 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002739 protected void onClickWallpaperPicker(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002740 if (LOGD) Log.d(TAG, "onClickWallpaperPicker");
Tony Wickham785f7a52015-08-31 17:28:32 -07002741 int pageScroll = mWorkspace.getScrollForPage(mWorkspace.getPageNearestToCenterOfScreen());
2742 float offset = mWorkspace.mWallpaperOffset.wallpaperOffsetForScroll(pageScroll);
2743 startActivityForResult(new Intent(Intent.ACTION_SET_WALLPAPER).setPackage(getPackageName())
Sunny Goyal6f866092016-03-17 17:04:15 -07002744 .putExtra(Utilities.EXTRA_WALLPAPER_OFFSET, offset),
Sunny Goyal6a1e95a2015-03-20 17:26:30 -07002745 REQUEST_PICK_WALLPAPER);
Adam Cohen9211d422014-10-07 18:14:53 -07002746
2747 if (mLauncherCallbacks != null) {
2748 mLauncherCallbacks.onClickWallpaperPicker(v);
2749 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002750 }
2751
2752 /**
2753 * Event handler for a click on the settings button that appears after a long press
2754 * on the home screen.
2755 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002756 protected void onClickSettingsButton(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002757 if (LOGD) Log.d(TAG, "onClickSettingsButton");
Adam Cohen9211d422014-10-07 18:14:53 -07002758 if (mLauncherCallbacks != null) {
2759 mLauncherCallbacks.onClickSettingsButton(v);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07002760 } else {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002761 startActivity(new Intent(this, SettingsActivity.class));
Adam Cohen9211d422014-10-07 18:14:53 -07002762 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002763 }
2764
Adam Cohen61f560d2013-09-30 15:58:20 -07002765 public View.OnTouchListener getHapticFeedbackTouchListener() {
2766 if (mHapticFeedbackTouchListener == null) {
2767 mHapticFeedbackTouchListener = new View.OnTouchListener() {
Sunny Goyal70660032015-05-14 00:07:08 -07002768 @SuppressLint("ClickableViewAccessibility")
Adam Cohen61f560d2013-09-30 15:58:20 -07002769 @Override
2770 public boolean onTouch(View v, MotionEvent event) {
2771 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
2772 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2773 }
2774 return false;
2775 }
2776 };
2777 }
2778 return mHapticFeedbackTouchListener;
2779 }
2780
Adam Cohen9211d422014-10-07 18:14:53 -07002781 public void onDragStarted(View view) {
2782 if (isOnCustomContent()) {
2783 // Custom content screen doesn't participate in drag and drop. If on custom
2784 // content screen, move to default.
2785 moveWorkspaceToDefaultScreen();
2786 }
2787
2788 if (mLauncherCallbacks != null) {
2789 mLauncherCallbacks.onDragStarted(view);
2790 }
2791 }
Anjali Koppal62d18ed2014-03-10 17:04:03 -07002792
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002793 /**
2794 * Called when the user stops interacting with the launcher.
2795 * This implies that the user is now on the homescreen and is not doing housekeeping.
2796 */
Adam Cohen9211d422014-10-07 18:14:53 -07002797 protected void onInteractionEnd() {
2798 if (mLauncherCallbacks != null) {
2799 mLauncherCallbacks.onInteractionEnd();
2800 }
2801 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002802
2803 /**
2804 * Called when the user starts interacting with the launcher.
2805 * The possible interactions are:
2806 * - open all apps
2807 * - reorder an app shortcut, or a widget
2808 * - open the overview mode.
2809 * This is a good time to stop doing things that only make sense
2810 * when the user is on the homescreen and not doing housekeeping.
2811 */
Adam Cohen9211d422014-10-07 18:14:53 -07002812 protected void onInteractionBegin() {
2813 if (mLauncherCallbacks != null) {
2814 mLauncherCallbacks.onInteractionBegin();
2815 }
2816 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002817
Winson Chungcd99cd32015-04-29 11:03:24 -07002818 /** Updates the interaction state. */
2819 public void updateInteraction(Workspace.State fromState, Workspace.State toState) {
Winson Chung83f59ab2015-05-05 17:21:58 -07002820 // Only update the interacting state if we are transitioning to/from a view with an
Winson Chungcd99cd32015-04-29 11:03:24 -07002821 // overlay
Winson Chungef7f8742015-06-04 17:18:17 -07002822 boolean fromStateWithOverlay = fromState != Workspace.State.NORMAL;
2823 boolean toStateWithOverlay = toState != Workspace.State.NORMAL;
Winson Chung83f59ab2015-05-05 17:21:58 -07002824 if (toStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002825 onInteractionBegin();
Winson Chung83f59ab2015-05-05 17:21:58 -07002826 } else if (fromStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002827 onInteractionEnd();
2828 }
2829 }
2830
Winson Chung8f1eff72015-05-28 17:33:40 -07002831 private boolean startActivity(View v, Intent intent, Object tag) {
Kenny Guyb6cc40b2014-05-13 15:58:58 +01002832 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002833 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002834 // Only launch using the new animation if the shortcut has not opted out (this is a
2835 // private contract between launcher and may be ignored in the future).
2836 boolean useLaunchAnimation = (v != null) &&
2837 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
Kenny Guyed131872014-04-30 03:02:21 +01002838 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
2839 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyed131872014-04-30 03:02:21 +01002840
Kenny Guy1317e2d2014-05-08 18:52:50 +01002841 UserHandleCompat user = null;
2842 if (intent.hasExtra(AppInfo.EXTRA_PROFILE)) {
2843 long serialNumber = intent.getLongExtra(AppInfo.EXTRA_PROFILE, -1);
2844 user = userManager.getUserForSerialNumber(serialNumber);
2845 }
2846
2847 Bundle optsBundle = null;
Winson Chung2672ff92012-05-04 16:22:30 -07002848 if (useLaunchAnimation) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002849 ActivityOptions opts = null;
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002850 if (Utilities.ATLEAST_MARSHMALLOW) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002851 int left = 0, top = 0;
2852 int width = v.getMeasuredWidth(), height = v.getMeasuredHeight();
2853 if (v instanceof TextView) {
2854 // Launch from center of icon, not entire view
Winson Chungb745afb2015-03-02 11:51:23 -08002855 Drawable icon = Workspace.getTextViewIcon((TextView) v);
2856 if (icon != null) {
2857 Rect bounds = icon.getBounds();
Chet Haasea8f996d2015-02-17 12:56:04 -08002858 left = (width - bounds.width()) / 2;
Winson Chungb745afb2015-03-02 11:51:23 -08002859 top = v.getPaddingTop();
Chet Haasea8f996d2015-02-17 12:56:04 -08002860 width = bounds.width();
2861 height = bounds.height();
2862 }
2863 }
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002864 opts = ActivityOptions.makeClipRevealAnimation(v, left, top, width, height);
2865 } else if (!Utilities.ATLEAST_LOLLIPOP) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002866 // Below L, we use a scale up animation
Adam Cohen2e52c902015-04-06 13:11:28 -07002867 opts = ActivityOptions.makeScaleUpAnimation(v, 0, 0,
Chet Haasea8f996d2015-02-17 12:56:04 -08002868 v.getMeasuredWidth(), v.getMeasuredHeight());
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002869 } else if (Utilities.ATLEAST_LOLLIPOP_MR1) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002870 // On L devices, we use the device default slide-up transition.
2871 // On L MR1 devices, we a custom version of the slide-up transition which
2872 // doesn't have the delay present in the device default.
2873 opts = ActivityOptions.makeCustomAnimation(this,
2874 R.anim.task_open_enter, R.anim.no_anim);
Chet Haasea8f996d2015-02-17 12:56:04 -08002875 }
Adam Cohen2e52c902015-04-06 13:11:28 -07002876 optsBundle = opts != null ? opts.toBundle() : null;
Adam Cohen6ea3b112014-06-11 11:38:49 -07002877 }
Kenny Guy1317e2d2014-05-08 18:52:50 +01002878
2879 if (user == null || user.equals(UserHandleCompat.myUserHandle())) {
2880 // Could be launching some bookkeeping activity
2881 startActivity(intent, optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002882 } else {
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002883 // TODO Component can be null when shortcuts are supported for secondary user
Kenny Guyc2bd8102014-06-30 12:30:31 +01002884 launcherApps.startActivityForProfile(intent.getComponent(), user,
2885 intent.getSourceBounds(), optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002886 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002887 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002888 } catch (SecurityException e) {
Sunny Goyal28c6b962015-10-12 11:42:05 -07002889 if (Utilities.ATLEAST_MARSHMALLOW && tag instanceof ItemInfo) {
2890 // Due to legacy reasons, direct call shortcuts require Launchers to have the
2891 // corresponding permission. Show the appropriate permission prompt if that
2892 // is the case.
2893 if (intent.getComponent() == null
2894 && Intent.ACTION_CALL.equals(intent.getAction())
2895 && checkSelfPermission(Manifest.permission.CALL_PHONE) !=
2896 PackageManager.PERMISSION_GRANTED) {
2897 // TODO: Rename sPendingAddItem to a generic name.
2898 sPendingAddItem = preparePendingAddArgs(REQUEST_PERMISSION_CALL_PHONE, intent,
2899 0, (ItemInfo) tag);
2900 requestPermissions(new String[]{Manifest.permission.CALL_PHONE},
2901 REQUEST_PERMISSION_CALL_PHONE);
2902 return false;
2903 }
2904 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002905 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002906 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002907 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07002908 "or use the exported attribute for this activity. "
2909 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002910 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002911 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002912 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002913
Winson Chungbedf9232015-07-10 12:38:30 -07002914 public boolean startActivitySafely(View v, Intent intent, Object tag) {
Michael Jurka86a720e2012-05-09 11:23:23 -07002915 boolean success = false;
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002916 if (mIsSafeModeEnabled && !Utilities.isSystemApp(this, intent)) {
2917 Toast.makeText(this, R.string.safemode_shortcut_error, Toast.LENGTH_SHORT).show();
2918 return false;
2919 }
Michael Jurka86a720e2012-05-09 11:23:23 -07002920 try {
2921 success = startActivity(v, intent, tag);
2922 } catch (ActivityNotFoundException e) {
2923 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2924 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
2925 }
2926 return success;
2927 }
2928
Adam Cohen268c4752012-06-06 17:47:33 -07002929 /**
2930 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
2931 * in the DragLayer in the exact absolute location of the original FolderIcon.
2932 */
2933 private void copyFolderIconToImage(FolderIcon fi) {
2934 final int width = fi.getMeasuredWidth();
2935 final int height = fi.getMeasuredHeight();
2936
2937 // Lazy load ImageView, Bitmap and Canvas
2938 if (mFolderIconImageView == null) {
2939 mFolderIconImageView = new ImageView(this);
2940 }
2941 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
2942 mFolderIconBitmap.getHeight() != height) {
2943 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
2944 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
2945 }
2946
2947 DragLayer.LayoutParams lp;
2948 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
2949 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
2950 } else {
2951 lp = new DragLayer.LayoutParams(width, height);
2952 }
2953
Adam Cohen307fe232012-08-16 17:55:58 -07002954 // The layout from which the folder is being opened may be scaled, adjust the starting
2955 // view size by this scale factor.
2956 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07002957 lp.customPosition = true;
2958 lp.x = mRectForFolderAnimation.left;
2959 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07002960 lp.width = (int) (scale * width);
2961 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07002962
2963 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
2964 fi.draw(mFolderIconCanvas);
2965 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07002966 if (fi.getFolder() != null) {
2967 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
2968 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07002969 }
Adam Cohen268c4752012-06-06 17:47:33 -07002970 // Just in case this image view is still in the drag layer from a previous animation,
2971 // we remove it and re-add it.
2972 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
2973 mDragLayer.removeView(mFolderIconImageView);
2974 }
2975 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07002976 if (fi.getFolder() != null) {
2977 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07002978 }
Adam Cohen268c4752012-06-06 17:47:33 -07002979 }
2980
Sunny Goyal08442b82015-10-21 17:15:08 -07002981 private void growAndFadeOutFolderIcon(FolderIcon fi, boolean animate) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002982 if (fi == null) return;
Adam Cohenc51934b2011-07-26 21:07:43 -07002983 FolderInfo info = (FolderInfo) fi.getTag();
2984 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
2985 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07002986 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
2987 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07002988 }
2989
Adam Cohen268c4752012-06-06 17:47:33 -07002990 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
2991 copyFolderIconToImage(fi);
2992 fi.setVisibility(View.INVISIBLE);
2993
Sunny Goyal5d2fc322015-07-06 22:52:49 -07002994 ObjectAnimator oa = LauncherAnimUtils.ofViewAlphaAndScale(
2995 mFolderIconImageView, 0, 1.5f, 1.5f);
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002996 if (Utilities.ATLEAST_LOLLIPOP) {
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07002997 oa.setInterpolator(new LogDecelerateInterpolator(100, 0));
2998 }
2999 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohen2801caf2011-05-13 20:57:39 -07003000 oa.start();
Sunny Goyal08442b82015-10-21 17:15:08 -07003001 if (!animate) {
Tony Wickham112ac952015-11-12 12:31:50 -08003002 oa.end();
3003 }
Adam Cohen2801caf2011-05-13 20:57:39 -07003004 }
3005
Sunny Goyal935fca12015-10-13 10:19:01 -07003006 private void shrinkAndFadeInFolderIcon(final FolderIcon fi, boolean animate) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003007 if (fi == null) return;
Adam Cohen268c4752012-06-06 17:47:33 -07003008 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07003009
Adam Cohen268c4752012-06-06 17:47:33 -07003010 // We remove and re-draw the FolderIcon in-case it has changed
3011 mDragLayer.removeView(mFolderIconImageView);
3012 copyFolderIconToImage(fi);
Adam Cohenefca0272016-02-24 19:19:06 -08003013
3014 if (cl != null) {
3015 cl.clearFolderLeaveBehind();
3016 }
3017
Sunny Goyal5d2fc322015-07-06 22:52:49 -07003018 ObjectAnimator oa = LauncherAnimUtils.ofViewAlphaAndScale(mFolderIconImageView, 1, 1, 1);
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003019 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07003020 oa.addListener(new AnimatorListenerAdapter() {
3021 @Override
3022 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07003023 if (cl != null) {
Adam Cohen268c4752012-06-06 17:47:33 -07003024 // Remove the ImageView copy of the FolderIcon and make the original visible.
3025 mDragLayer.removeView(mFolderIconImageView);
3026 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07003027 }
3028 }
3029 });
Adam Cohen2801caf2011-05-13 20:57:39 -07003030 oa.start();
Sunny Goyal935fca12015-10-13 10:19:01 -07003031 if (!animate) {
3032 oa.end();
3033 }
Adam Cohen2801caf2011-05-13 20:57:39 -07003034 }
3035
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003036 /**
Michael Jurka774bd372010-10-22 13:40:50 -07003037 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003038 * is animated relative to the specified View. If the View is null, no animation
3039 * is played.
3040 *
Sunny Goyal08442b82015-10-21 17:15:08 -07003041 * @param folderIcon The FolderIcon describing the folder to open.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003042 */
Sunny Goyal08442b82015-10-21 17:15:08 -07003043 public void openFolder(FolderIcon folderIcon, boolean animate) {
3044 animate &= !Utilities.isPowerSaverOn(this);
3045
Adam Cohenfb91f302012-06-11 15:45:18 -07003046 Folder folder = folderIcon.getFolder();
Sunny Goyalf4066152015-04-15 09:42:19 -07003047 Folder openFolder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
3048 if (openFolder != null && openFolder != folder) {
3049 // Close any open folder before opening a folder.
3050 closeFolder();
3051 }
3052
Adam Cohena9cf38f2011-05-02 15:36:58 -07003053 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003054
Adam Cohena9cf38f2011-05-02 15:36:58 -07003055 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003056
Sunny Goyalf4066152015-04-15 09:42:19 -07003057 // While the folder is open, the position of the icon cannot change.
3058 ((CellLayout.LayoutParams) folderIcon.getLayoutParams()).canReorder = false;
3059
Adam Cohen4554ee12011-08-03 16:13:21 -07003060 // Just verify that the folder hasn't already been added to the DragLayer.
3061 // There was a one-off crash where the folder had a parent already.
3062 if (folder.getParent() == null) {
3063 mDragLayer.addView(folder);
Sunny Goyal08442b82015-10-21 17:15:08 -07003064 mDragController.addDropTarget(folder);
Adam Cohen4554ee12011-08-03 16:13:21 -07003065 } else {
3066 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
3067 folder.getParent() + ").");
3068 }
Sunny Goyal08442b82015-10-21 17:15:08 -07003069 if (animate) {
3070 folder.animateOpen();
3071 } else {
3072 folder.open();
3073 }
3074 growAndFadeOutFolderIcon(folderIcon, animate);
Winson Chung83ca4802013-04-12 15:10:52 -07003075
3076 // Notify the accessibility manager that this folder "window" has appeared and occluded
3077 // the workspace items
3078 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
3079 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07003080 }
3081
3082 public void closeFolder() {
Sunny Goyal935fca12015-10-13 10:19:01 -07003083 closeFolder(true);
3084 }
3085
3086 public void closeFolder(boolean animate) {
Adam Cohen37c717f2013-11-26 11:50:15 -08003087 Folder folder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
Adam Cohen4554ee12011-08-03 16:13:21 -07003088 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07003089 if (folder.isEditingName()) {
3090 folder.dismissEditingName();
3091 }
Sunny Goyal935fca12015-10-13 10:19:01 -07003092 closeFolder(folder, animate);
Adam Cohen4554ee12011-08-03 16:13:21 -07003093 }
3094 }
3095
Sunny Goyal935fca12015-10-13 10:19:01 -07003096 public void closeFolder(Folder folder, boolean animate) {
Sunny Goyal08442b82015-10-21 17:15:08 -07003097 animate &= !Utilities.isPowerSaverOn(this);
3098
Adam Cohen4554ee12011-08-03 16:13:21 -07003099 folder.getInfo().opened = false;
3100
3101 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
3102 if (parent != null) {
3103 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
Sunny Goyal935fca12015-10-13 10:19:01 -07003104 shrinkAndFadeInFolderIcon(fi, animate);
Sunny Goyalf4066152015-04-15 09:42:19 -07003105 if (fi != null) {
3106 ((CellLayout.LayoutParams) fi.getLayoutParams()).canReorder = true;
3107 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003108 }
Sunny Goyal935fca12015-10-13 10:19:01 -07003109 if (animate) {
3110 folder.animateClosed();
3111 } else {
Tony Wickham30bdd6e2015-11-17 17:59:26 -08003112 folder.close(false);
Sunny Goyal935fca12015-10-13 10:19:01 -07003113 }
Winson Chung83ca4802013-04-12 15:10:52 -07003114
Sunny Goyal935fca12015-10-13 10:19:01 -07003115 // Notify the accessibility manager that this folder "window" has disappeared and no
3116 // longer occludes the workspace items
Winson Chung83ca4802013-04-12 15:10:52 -07003117 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003118 }
3119
Tony Wickhamdadb3042016-02-24 11:07:00 -08003120 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003121 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07003122 if (!isDraggingEnabled()) return false;
3123 if (isWorkspaceLocked()) return false;
3124 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003125
Winson Chung76648c52015-07-10 14:33:23 -07003126 if (v == mAllAppsButton) {
3127 onLongClickAllAppsButton(v);
3128 return true;
3129 }
3130
Adam Cohen1697b792013-09-17 19:08:21 -07003131 if (v instanceof Workspace) {
3132 if (!mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003133 if (!mWorkspace.isTouchActive()) {
3134 showOverviewMode(true);
Adam Cohen93c97562013-09-26 13:48:01 -07003135 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3136 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
3137 return true;
3138 } else {
3139 return false;
3140 }
Adam Cohenaa4c8c12014-06-06 11:52:52 -07003141 } else {
3142 return false;
Adam Cohen1697b792013-09-17 19:08:21 -07003143 }
Adam Cohen1697b792013-09-17 19:08:21 -07003144 }
3145
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003146 CellLayout.CellInfo longClickCellInfo = null;
3147 View itemUnderLongClick = null;
3148 if (v.getTag() instanceof ItemInfo) {
3149 ItemInfo info = (ItemInfo) v.getTag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08003150 longClickCellInfo = new CellLayout.CellInfo(v, info);
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003151 itemUnderLongClick = longClickCellInfo.cell;
3152 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003153 }
3154
Winson Chung3d503fb2011-07-13 17:25:49 -07003155 // The hotseat touch handling does not go through Workspace, and we always allow long press
3156 // on hotseat items.
Dan Sandlere26d0942014-01-13 14:30:14 -05003157 final boolean inHotseat = isHotseatLayout(v);
Sunny Goyal8e2133b2015-05-06 13:39:07 -07003158 if (!mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07003159 if (itemUnderLongClick == null) {
Adam Cohend3ecce92013-09-16 14:58:00 -07003160 // User long pressed on empty space
3161 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3162 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Adam Cohend3ecce92013-09-16 14:58:00 -07003163 if (mWorkspace.isInOverviewMode()) {
3164 mWorkspace.startReordering(v);
3165 } else {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003166 showOverviewMode(true);
Adam Cohendedbd962013-07-11 14:21:49 -07003167 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003168 } else {
Dan Sandlere26d0942014-01-13 14:30:14 -05003169 final boolean isAllAppsButton = inHotseat && isAllAppsButtonRank(
3170 mHotseat.getOrderInHotseat(
3171 longClickCellInfo.cellX,
3172 longClickCellInfo.cellY));
3173 if (!(itemUnderLongClick instanceof Folder || isAllAppsButton)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003174 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07003175 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003176 }
3177 }
3178 }
3179 return true;
3180 }
3181
Winson Chung3d503fb2011-07-13 17:25:49 -07003182 boolean isHotseatLayout(View layout) {
3183 return mHotseat != null && layout != null &&
3184 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
3185 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08003186
Winson Chung3d503fb2011-07-13 17:25:49 -07003187 /**
3188 * Returns the CellLayout of the specified container at the specified screen.
3189 */
Sunny Goyal92820592015-03-02 11:31:35 -08003190 public CellLayout getCellLayout(long container, long screenId) {
Winson Chung3d503fb2011-07-13 17:25:49 -07003191 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3192 if (mHotseat != null) {
3193 return mHotseat.getLayout();
3194 } else {
3195 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08003196 }
Winson Chung3d503fb2011-07-13 17:25:49 -07003197 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08003198 return mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08003199 }
3200 }
3201
Winson Chungb745afb2015-03-02 11:51:23 -08003202 /**
3203 * For overridden classes.
3204 */
Daniel Sandler843e8602010-06-07 14:59:01 -04003205 public boolean isAllAppsVisible() {
Winson Chungb745afb2015-03-02 11:51:23 -08003206 return isAppsViewVisible();
3207 }
3208
3209 public boolean isAppsViewVisible() {
3210 return (mState == State.APPS) || (mOnResumeState == State.APPS);
3211 }
3212
3213 public boolean isWidgetsViewVisible() {
3214 return (mState == State.WIDGETS) || (mOnResumeState == State.WIDGETS);
Joe Onoratofb0ca672009-09-14 17:55:46 -04003215 }
3216
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003217 private void setWorkspaceBackground(int background) {
3218 switch (background) {
3219 case WORKSPACE_BACKGROUND_TRANSPARENT:
3220 getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
3221 break;
3222 case WORKSPACE_BACKGROUND_BLACK:
3223 getWindow().setBackgroundDrawable(null);
3224 break;
3225 default:
3226 getWindow().setBackgroundDrawable(mWorkspaceBackgroundDrawable);
3227 }
Craig Mautner360310b2012-10-26 15:13:08 -07003228 }
3229
Selim Cinek3a8a8f72014-01-16 10:38:38 -08003230 protected void changeWallpaperVisiblity(boolean visible) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003231 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
3232 int curflags = getWindow().getAttributes().flags
3233 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
3234 if (wpflags != curflags) {
3235 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
3236 }
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003237 setWorkspaceBackground(visible ? WORKSPACE_BACKGROUND_GRADIENT : WORKSPACE_BACKGROUND_BLACK);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003238 }
3239
Michael Jurkae326f182011-11-21 14:05:46 -08003240 @Override
3241 public void onTrimMemory(int level) {
3242 super.onTrimMemory(level);
Adam Cohen3f9c9712014-10-31 11:48:25 -07003243 if (level >= ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
3244 // The widget preview db can result in holding onto over
3245 // 3MB of memory for caching which isn't necessary.
3246 SQLiteDatabase.releaseMemory();
3247
Adam Cohenc8f4e1b2014-11-19 16:03:20 -08003248 // This clears all widget bitmaps from the widget tray
Hyunyoung Song3f471442015-04-08 19:01:34 -07003249 // TODO(hyunyoungs)
Michael Jurkae326f182011-11-21 14:05:46 -08003250 }
Robert Kozikowski67c30862015-03-30 23:46:46 +01003251 if (mLauncherCallbacks != null) {
3252 mLauncherCallbacks.onTrimMemory(level);
3253 }
Michael Jurkae326f182011-11-21 14:05:46 -08003254 }
3255
Winson5c6bdbb2015-09-03 11:36:19 -07003256 public boolean showWorkspace(boolean animated) {
Winson10612a72015-09-09 17:06:09 -07003257 return showWorkspace(animated, null);
Adam Cohened307df2013-10-02 09:37:31 -07003258 }
3259
Winson5c6bdbb2015-09-03 11:36:19 -07003260 public boolean showWorkspace(boolean animated, Runnable onCompleteRunnable) {
Winson Chung0f785722015-04-08 10:27:49 -07003261 boolean changed = mState != State.WORKSPACE ||
3262 mWorkspace.getState() != Workspace.State.NORMAL;
3263 if (changed) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003264 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003265 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
Winson2a87fe82015-08-07 10:37:21 -07003266 Workspace.State.NORMAL, animated, onCompleteRunnable);
Winson Chungc7d2b602012-05-16 17:02:20 -07003267
Michael Jurkab3e22d92011-10-31 15:58:33 -07003268 // Set focus to the AppsCustomize button
3269 if (mAllAppsButton != null) {
3270 mAllAppsButton.requestFocus();
3271 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003272 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07003273
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003274 // Change the state *after* we've called all the transition code
3275 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08003276
Winson Chung5fb63472011-02-02 17:03:37 -08003277 // Resume the auto-advance of widgets
3278 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08003279 updateAutoAdvanceState();
Winson Chung5fb63472011-02-02 17:03:37 -08003280
Winson Chung0f785722015-04-08 10:27:49 -07003281 if (changed) {
3282 // Send an accessibility event to announce the context change
3283 getWindow().getDecorView()
3284 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Winson Chung0f785722015-04-08 10:27:49 -07003285 }
Winson5c6bdbb2015-09-03 11:36:19 -07003286 return changed;
Bjorn Bringertc459e522013-06-07 19:36:01 +01003287 }
3288
Winsone9f27272015-10-13 10:47:51 -07003289 /**
3290 * Shows the overview button.
3291 */
Adam Cohened307df2013-10-02 09:37:31 -07003292 void showOverviewMode(boolean animated) {
Winsone9f27272015-10-13 10:47:51 -07003293 showOverviewMode(animated, false);
3294 }
3295
3296 /**
3297 * Shows the overview button, and if {@param requestButtonFocus} is set, will force the focus
3298 * onto one of the overview panel buttons.
3299 */
3300 void showOverviewMode(boolean animated, boolean requestButtonFocus) {
3301 Runnable postAnimRunnable = null;
3302 if (requestButtonFocus) {
3303 postAnimRunnable = new Runnable() {
3304 @Override
3305 public void run() {
3306 // Hitting the menu button when in touch mode does not trigger touch mode to
3307 // be disabled, so if requested, force focus on one of the overview panel
3308 // buttons.
3309 mOverviewPanel.requestFocusFromTouch();
3310 }
3311 };
3312 }
Adam Cohened307df2013-10-02 09:37:31 -07003313 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003314 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
Winson6e6a9b42015-10-13 17:52:17 -07003315 Workspace.State.OVERVIEW, animated, postAnimRunnable);
Adam Cohened307df2013-10-02 09:37:31 -07003316 mState = State.WORKSPACE;
Joe Onorato00acb122009-08-04 16:04:30 -04003317 }
3318
Winson Chungb745afb2015-03-02 11:51:23 -08003319 /**
3320 * Shows the apps view.
3321 */
Winson Chung76648c52015-07-10 14:33:23 -07003322 void showAppsView(boolean animated, boolean resetListToTop, boolean updatePredictedApps,
3323 boolean focusSearchBar) {
Winson Chungb745afb2015-03-02 11:51:23 -08003324 if (resetListToTop) {
3325 mAppsView.scrollToTop();
3326 }
Winson Chung4ac30062015-05-08 17:34:17 -07003327 if (updatePredictedApps) {
3328 tryAndUpdatePredictedApps();
3329 }
Winson Chung76648c52015-07-10 14:33:23 -07003330 showAppsOrWidgets(State.APPS, animated, focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003331 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003332
Winson Chungb745afb2015-03-02 11:51:23 -08003333 /**
3334 * Shows the widgets view.
3335 */
3336 void showWidgetsView(boolean animated, boolean resetPageToZero) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003337 if (LOGD) Log.d(TAG, "showWidgetsView:" + animated + " resetPageToZero:" + resetPageToZero);
Winson Chung82963d52013-10-09 11:20:57 -07003338 if (resetPageToZero) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003339 mWidgetsView.scrollToTop();
Winson Chung82963d52013-10-09 11:20:57 -07003340 }
Winson Chung76648c52015-07-10 14:33:23 -07003341 showAppsOrWidgets(State.WIDGETS, animated, false);
Hyunyoung Song3f471442015-04-08 19:01:34 -07003342
3343 mWidgetsView.post(new Runnable() {
Adam Cohendcc5e712014-06-23 15:38:55 -04003344 @Override
3345 public void run() {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003346 mWidgetsView.requestFocus();
Adam Cohendcc5e712014-06-23 15:38:55 -04003347 }
3348 });
Winson Chungb745afb2015-03-02 11:51:23 -08003349 }
3350
3351 /**
3352 * Sets up the transition to show the apps/widgets view.
Hyunyoung Songb7900832015-05-15 16:29:45 -07003353 *
3354 * @return whether the current from and to state allowed this operation
Winson Chungb745afb2015-03-02 11:51:23 -08003355 */
Hyunyoung Songb7900832015-05-15 16:29:45 -07003356 // TODO: calling method should use the return value so that when {@code false} is returned
3357 // the workspace transition doesn't fall into invalid state.
Winson Chung76648c52015-07-10 14:33:23 -07003358 private boolean showAppsOrWidgets(State toState, boolean animated, boolean focusSearchBar) {
Hyunyoung Songb7900832015-05-15 16:29:45 -07003359 if (mState != State.WORKSPACE && mState != State.APPS_SPRING_LOADED &&
3360 mState != State.WIDGETS_SPRING_LOADED) {
3361 return false;
3362 }
3363 if (toState != State.APPS && toState != State.WIDGETS) {
3364 return false;
3365 }
Winson Chungb745afb2015-03-02 11:51:23 -08003366
3367 if (toState == State.APPS) {
Winson Chung006ee262015-08-03 14:40:11 -07003368 mStateTransitionAnimation.startAnimationToAllApps(mWorkspace.getState(), animated,
3369 focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003370 } else {
Winson Chung006ee262015-08-03 14:40:11 -07003371 mStateTransitionAnimation.startAnimationToWidgets(mWorkspace.getState(), animated);
Winson Chungb745afb2015-03-02 11:51:23 -08003372 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003373
Michael Jurkab3e22d92011-10-31 15:58:33 -07003374 // Change the state *after* we've called all the transition code
Winson Chungb745afb2015-03-02 11:51:23 -08003375 mState = toState;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003376
3377 // Pause the auto-advance of widgets until we are out of AllApps
3378 mUserPresent = false;
Winson Chungb745afb2015-03-02 11:51:23 -08003379 updateAutoAdvanceState();
Michael Jurkab3e22d92011-10-31 15:58:33 -07003380 closeFolder();
3381
3382 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07003383 getWindow().getDecorView()
3384 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Hyunyoung Songb7900832015-05-15 16:29:45 -07003385 return true;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003386 }
3387
Winson Chungcd99cd32015-04-29 11:03:24 -07003388 /**
3389 * Updates the workspace and interaction state on state change, and return the animation to this
3390 * new state.
3391 */
Sunny Goyalce5a7e52015-07-08 15:44:27 -07003392 public Animator startWorkspaceStateChangeAnimation(Workspace.State toState,
Winson Chung006ee262015-08-03 14:40:11 -07003393 boolean animated, HashMap<View, Integer> layerViews) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003394 Workspace.State fromState = mWorkspace.getState();
Winson2a87fe82015-08-07 10:37:21 -07003395 Animator anim = mWorkspace.setStateWithAnimation(toState, animated, layerViews);
Winson Chungcd99cd32015-04-29 11:03:24 -07003396 updateInteraction(fromState, toState);
3397 return anim;
3398 }
3399
Jun Mukaif0033da2015-08-04 18:34:30 -07003400 public void onLauncherClingShown() {
3401 // When a launcher cling appears, it should cover the underlying layers, so their focus
3402 // should be blocked.
3403 if (mDragLayer.getDescendantFocusability() != ViewGroup.FOCUS_BLOCK_DESCENDANTS) {
3404 mDragLayer.setDescendantFocusability(ViewGroup.FOCUS_BLOCK_DESCENDANTS);
3405 }
3406 }
3407
3408 public void onLauncherClingDismissed() {
3409 mDragLayer.setDescendantFocusability(ViewGroup.FOCUS_AFTER_DESCENDANTS);
3410 }
3411
Hyunyoung Song3f471442015-04-08 19:01:34 -07003412 public void enterSpringLoadedDragMode() {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003413 if (LOGD) Log.d(TAG, String.format("enterSpringLoadedDragMode [mState=%s", mState.name()));
Tony Wickham94e0d372015-09-11 12:17:48 -07003414 if (isStateSpringLoaded()) {
Winson Chungb745afb2015-03-02 11:51:23 -08003415 return;
Winson Chungb26f3d62011-06-02 10:49:29 -07003416 }
Winson Chungb745afb2015-03-02 11:51:23 -08003417
Winson Chung006ee262015-08-03 14:40:11 -07003418 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
Winson2a87fe82015-08-07 10:37:21 -07003419 Workspace.State.SPRING_LOADED, true /* animated */,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003420 null /* onCompleteRunnable */);
Tony Wickham94e0d372015-09-11 12:17:48 -07003421
3422 if (isAppsViewVisible()) {
3423 mState = State.APPS_SPRING_LOADED;
3424 } else if (isWidgetsViewVisible()) {
3425 mState = State.WIDGETS_SPRING_LOADED;
Tony Wickhame0c33232016-02-08 11:37:04 -08003426 } else if (!FeatureFlags.LAUNCHER3_LEGACY_WORKSPACE_DND) {
Tony Wickham94e0d372015-09-11 12:17:48 -07003427 mState = State.WORKSPACE_SPRING_LOADED;
Tony Wickham0f97b782015-12-02 17:55:07 -08003428 } else {
3429 mState = State.WORKSPACE;
Tony Wickham94e0d372015-09-11 12:17:48 -07003430 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08003431 }
Adam Cohen7777d962011-08-18 18:58:38 -07003432
Hyunyoung Song3f471442015-04-08 19:01:34 -07003433 public void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, int delay,
Adam Cohened66b2b2012-01-23 17:28:51 -08003434 final Runnable onCompleteRunnable) {
Tony Wickham94e0d372015-09-11 12:17:48 -07003435 if (!isStateSpringLoaded()) return;
Winson Chung09bfc452011-09-09 11:30:20 -07003436
Winson Chunge7a03942011-08-05 15:05:12 -07003437 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07003438 @Override
3439 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003440 if (successfulDrop) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003441 // TODO(hyunyoungs): verify if this hack is still needed, if not, delete.
3442 //
Michael Jurka7bdb25a2011-08-03 15:16:44 -07003443 // Before we show workspace, hide all apps again because
3444 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
3445 // clean up our state transition functions
Hyunyoung Song3f471442015-04-08 19:01:34 -07003446 mWidgetsView.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003447 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07003448 } else {
3449 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003450 }
Winson Chung557d6ed2011-07-08 15:34:52 -07003451 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07003452 }, delay);
Winson Chung557d6ed2011-07-08 15:34:52 -07003453 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003454
Tony Wickhame0c33232016-02-08 11:37:04 -08003455 boolean isStateSpringLoaded() {
Tony Wickham94e0d372015-09-11 12:17:48 -07003456 return mState == State.WORKSPACE_SPRING_LOADED || mState == State.APPS_SPRING_LOADED
3457 || mState == State.WIDGETS_SPRING_LOADED;
3458 }
3459
Michael Jurkad3ef3062010-11-23 16:23:58 -08003460 void exitSpringLoadedDragMode() {
Winson Chungb745afb2015-03-02 11:51:23 -08003461 if (mState == State.APPS_SPRING_LOADED) {
Winson Chung4ac30062015-05-08 17:34:17 -07003462 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07003463 false /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -08003464 } else if (mState == State.WIDGETS_SPRING_LOADED) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003465 showWidgetsView(true, false);
Tony Wickham94e0d372015-09-11 12:17:48 -07003466 } else if (mState == State.WORKSPACE_SPRING_LOADED) {
3467 showWorkspace(true);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003468 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003469 }
3470
Winson Chung4ac30062015-05-08 17:34:17 -07003471 /**
3472 * Updates the set of predicted apps if it hasn't been updated since the last time Launcher was
3473 * resumed.
3474 */
3475 private void tryAndUpdatePredictedApps() {
3476 if (mLauncherCallbacks != null) {
Winson Chung6b1c73f2015-06-18 11:38:42 -07003477 List<ComponentKey> apps = mLauncherCallbacks.getPredictedApps();
Winson Chung91c05952015-06-25 12:17:30 -07003478 if (apps != null) {
Winson Chung4ac30062015-05-08 17:34:17 -07003479 mAppsView.setPredictedApps(apps);
3480 }
3481 }
3482 }
3483
Michael Jurkab3e22d92011-10-31 15:58:33 -07003484 void lockAllApps() {
3485 // TODO
3486 }
3487
3488 void unlockAllApps() {
3489 // TODO
3490 }
3491
Winsonf768d932015-09-25 16:12:35 -07003492 public boolean launcherCallbacksProvidesSearch() {
3493 return (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch());
3494 }
3495
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003496 public View getOrCreateQsbBar() {
Winsonf768d932015-09-25 16:12:35 -07003497 if (launcherCallbacksProvidesSearch()) {
Adam Cohenc2d6e892014-10-16 09:49:24 -07003498 return mLauncherCallbacks.getQsbBar();
Adam Cohen9211d422014-10-07 18:14:53 -07003499 }
3500
Adam Cohen24ce0b32014-01-14 16:18:14 -08003501 if (mQsb == null) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003502 AppWidgetProviderInfo searchProvider = Utilities.getSearchWidgetProvider(this);
3503 if (searchProvider == null) {
3504 return null;
3505 }
3506
3507 Bundle opts = new Bundle();
3508 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_HOST_CATEGORY,
Adam Coheneb8e2822015-02-20 16:38:48 +00003509 AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003510
Tony Wickham3a3517f2015-10-06 11:27:04 -07003511 // Determine the min and max dimensions of the widget.
3512 LauncherAppState app = LauncherAppState.getInstance();
3513 DeviceProfile portraitProfile = app.getInvariantDeviceProfile().portraitProfile;
3514 DeviceProfile landscapeProfile = app.getInvariantDeviceProfile().landscapeProfile;
3515 float density = getResources().getDisplayMetrics().density;
Tony Wickhama3c74d12015-10-23 11:43:47 -07003516 Point searchDimens = portraitProfile.getSearchBarDimensForWidgetOpts(getResources());
3517 int maxHeight = (int) (searchDimens.y / density);
Tony Wickham3a3517f2015-10-06 11:27:04 -07003518 int minHeight = maxHeight;
Tony Wickhama3c74d12015-10-23 11:43:47 -07003519 int maxWidth = (int) (searchDimens.x / density);
Tony Wickham3a3517f2015-10-06 11:27:04 -07003520 int minWidth = maxWidth;
3521 if (!landscapeProfile.isVerticalBarLayout()) {
Tony Wickhama3c74d12015-10-23 11:43:47 -07003522 searchDimens = landscapeProfile.getSearchBarDimensForWidgetOpts(getResources());
3523 maxHeight = (int) Math.max(maxHeight, searchDimens.y / density);
3524 minHeight = (int) Math.min(minHeight, searchDimens.y / density);
3525 maxWidth = (int) Math.max(maxWidth, searchDimens.x / density);
3526 minWidth = (int) Math.min(minWidth, searchDimens.x / density);
Tony Wickham3a3517f2015-10-06 11:27:04 -07003527 }
3528 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_MAX_HEIGHT, maxHeight);
3529 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_MIN_HEIGHT, minHeight);
3530 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_MAX_WIDTH, maxWidth);
3531 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_MIN_WIDTH, minWidth);
Tony Wickhameef44322015-10-20 13:24:36 -07003532 if (LOGD) {
3533 Log.d(TAG, "QSB widget options: maxHeight=" + maxHeight + " minHeight=" + minHeight
3534 + " maxWidth=" + maxWidth + " minWidth=" + minWidth);
3535 }
Tony Wickham3a3517f2015-10-06 11:27:04 -07003536
Tony Wickham775455c2015-10-16 09:49:32 -07003537 if (mLauncherCallbacks != null) {
3538 opts.putAll(mLauncherCallbacks.getAdditionalSearchWidgetOptions());
3539 }
3540
Sunny Goyalf7258242015-10-19 16:59:07 -07003541 int widgetId = mSharedPrefs.getInt(QSB_WIDGET_ID, -1);
Sunny Goyal416541c2014-11-14 11:59:57 -08003542 AppWidgetProviderInfo widgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003543 if (!searchProvider.provider.flattenToString().equals(
Sunny Goyalf7258242015-10-19 16:59:07 -07003544 mSharedPrefs.getString(QSB_WIDGET_PROVIDER, null))
Sunny Goyal416541c2014-11-14 11:59:57 -08003545 || (widgetInfo == null)
3546 || !widgetInfo.provider.equals(searchProvider.provider)) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003547 // A valid widget is not already bound.
3548 if (widgetId > -1) {
3549 mAppWidgetHost.deleteAppWidgetId(widgetId);
3550 widgetId = -1;
3551 }
3552
3553 // Try to bind a new widget
3554 widgetId = mAppWidgetHost.allocateAppWidgetId();
3555
3556 if (!AppWidgetManagerCompat.getInstance(this)
3557 .bindAppWidgetIdIfAllowed(widgetId, searchProvider, opts)) {
3558 mAppWidgetHost.deleteAppWidgetId(widgetId);
3559 widgetId = -1;
3560 }
3561
Sunny Goyalf7258242015-10-19 16:59:07 -07003562 mSharedPrefs.edit()
Sunny Goyal594d76d2014-11-06 10:12:54 -08003563 .putInt(QSB_WIDGET_ID, widgetId)
3564 .putString(QSB_WIDGET_PROVIDER, searchProvider.provider.flattenToString())
Sunny Goyald8043982015-12-17 22:23:02 -08003565 .apply();
Sunny Goyal594d76d2014-11-06 10:12:54 -08003566 }
3567
Sunny Goyal8d595092015-07-06 12:22:14 -07003568 mAppWidgetHost.setQsbWidgetId(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003569 if (widgetId != -1) {
3570 mQsb = mAppWidgetHost.createView(this, widgetId, searchProvider);
Sunny Goyalebfae6e2015-08-27 15:30:25 -07003571 mQsb.setId(R.id.qsb_widget);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003572 mQsb.updateAppWidgetOptions(opts);
3573 mQsb.setPadding(0, 0, 0, 0);
3574 mSearchDropTargetBar.addView(mQsb);
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003575 mSearchDropTargetBar.setQsbSearchBar(mQsb);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003576 }
Cristina Stancu476493b2013-08-07 17:20:14 +01003577 }
Adam Cohen24ce0b32014-01-14 16:18:14 -08003578 return mQsb;
Cristina Stancu476493b2013-08-07 17:20:14 +01003579 }
3580
Sunny Goyal22235bc2015-04-03 09:23:43 -07003581 private void reinflateQSBIfNecessary() {
3582 if (mQsb instanceof LauncherAppWidgetHostView &&
3583 ((LauncherAppWidgetHostView) mQsb).isReinflateRequired()) {
3584 mSearchDropTargetBar.removeView(mQsb);
3585 mQsb = null;
3586 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
3587 }
3588 }
3589
Michael Jurkad7c28052012-04-27 15:43:36 -07003590 @Override
3591 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07003592 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07003593 final List<CharSequence> text = event.getText();
3594 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07003595 // Populate event with a fake title based on the current state.
Winson Chungb745afb2015-03-02 11:51:23 -08003596 if (mState == State.APPS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003597 text.add(getString(R.string.all_apps_button_label));
Winson Chungb745afb2015-03-02 11:51:23 -08003598 } else if (mState == State.WIDGETS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003599 text.add(getString(R.string.widget_button_text));
Hyunyoung Song166e6482015-06-25 21:06:07 -07003600 } else if (mWorkspace != null) {
3601 text.add(mWorkspace.getCurrentPageDescription());
alanv1d4fde62012-10-17 13:15:47 -07003602 } else {
3603 text.add(getString(R.string.all_apps_home_button_label));
3604 }
Michael Jurkad7c28052012-04-27 15:43:36 -07003605 return result;
3606 }
3607
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003608 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003609 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003610 */
Adam Cohen091440a2015-03-18 14:16:05 -07003611 @Thunk class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003612 @Override
3613 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003614 closeSystemDialogs();
3615 }
3616 }
3617
3618 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07003619 * If the activity is currently paused, signal that we need to run the passed Runnable
3620 * in onResume.
3621 *
3622 * This needs to be called from incoming places where resources might have been loaded
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003623 * while the activity is paused. That is because the Configuration (e.g., rotation) might be
3624 * wrong when we're not running, and if the activity comes back to what the configuration was
3625 * when we were paused, activity is not restarted.
Michael Jurka7607c2f2013-04-03 14:33:19 -07003626 *
3627 * Implementation of the method from LauncherModel.Callbacks.
3628 *
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003629 * @return {@code true} if we are currently paused. The caller might be able to skip some work
Michael Jurka7607c2f2013-04-03 14:33:19 -07003630 */
Rahul Chaturvedi799aa042015-06-01 21:26:41 -04003631 @Thunk boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003632 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003633 if (LOGD) Log.d(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02003634 if (deletePreviousRunnables) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07003635 while (mBindOnResumeCallbacks.remove(run)) {
Michael Jurkac402cd92013-05-20 15:49:32 +02003636 }
3637 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07003638 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07003639 return true;
3640 } else {
3641 return false;
3642 }
3643 }
3644
Michael Jurkac402cd92013-05-20 15:49:32 +02003645 private boolean waitUntilResume(Runnable run) {
3646 return waitUntilResume(run, false);
3647 }
3648
Michael Jurka1e2f4652013-07-08 18:03:46 -07003649 public void addOnResumeCallback(Runnable run) {
Michael Jurka54554252013-08-01 12:52:23 +02003650 mOnResumeCallbacks.add(run);
Michael Jurka1e2f4652013-07-08 18:03:46 -07003651 }
3652
Michael Jurka7607c2f2013-04-03 14:33:19 -07003653 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003654 * If the activity is currently paused, signal that we need to re-run the loader
3655 * in onResume.
3656 *
3657 * This needs to be called from incoming places where resources might have been loaded
3658 * while we are paused. That is becaues the Configuration might be wrong
3659 * when we're not running, and if it comes back to what it was when we
3660 * were paused, we are not restarted.
3661 *
3662 * Implementation of the method from LauncherModel.Callbacks.
3663 *
3664 * @return true if we are currently paused. The caller might be able to
3665 * skip some work in that case since we will come back again.
3666 */
3667 public boolean setLoadOnResume() {
3668 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003669 if (LOGD) Log.d(TAG, "setLoadOnResume");
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003670 mOnResumeNeedsLoad = true;
3671 return true;
3672 } else {
3673 return false;
3674 }
3675 }
3676
3677 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003678 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003679 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003680 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003681 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003682 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003683 } else {
Winson Chung882a52e2015-07-08 14:32:26 -07003684 return 0;
Joe Onoratod0afc872010-06-11 00:03:15 -07003685 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003686 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003687
Joe Onorato9c1289c2009-08-17 11:03:03 -04003688 /**
Sunny Goyal527c7d32015-08-28 15:19:36 -07003689 * Clear any pending bind callbacks. This is called when is loader is planning to
3690 * perform a full rebind from scratch.
3691 */
3692 @Override
3693 public void clearPendingBinds() {
3694 mBindOnResumeCallbacks.clear();
3695 if (mPendingExecutor != null) {
3696 mPendingExecutor.markCompleted();
3697 mPendingExecutor = null;
3698 }
3699 }
3700
3701 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003702 * Refreshes the shortcuts shown on the workspace.
3703 *
3704 * Implementation of the method from LauncherModel.Callbacks.
3705 */
3706 public void startBinding() {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07003707 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08003708
Winson Chungd64d1762013-08-20 14:37:16 -07003709 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07003710 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07003711 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07003712
Michael Jurka05bf644e2011-11-30 20:28:53 -08003713 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003714 if (mHotseat != null) {
3715 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003716 }
3717 }
3718
Adam Cohendcd297f2013-06-18 13:13:40 -07003719 @Override
3720 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Winson Chung64359a52013-07-08 17:17:08 -07003721 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07003722
Adam Cohen5084cba2013-09-03 12:01:16 -07003723 // If there are no screens, we need to have an empty screen
3724 if (orderedScreenIds.size() == 0) {
3725 mWorkspace.addExtraEmptyScreen();
3726 }
Winson Chung0e6a7132013-08-23 12:55:10 -07003727
3728 // Create the custom content page (this call updates mDefaultScreen which calls
Dave Hawkeya8881582013-09-17 15:55:33 -06003729 // setCurrentPage() so ensure that all pages are added before calling this).
Derek Prothrodadd9842014-01-17 13:43:50 -05003730 if (hasCustomContentToLeft()) {
3731 mWorkspace.createCustomContentContainer();
3732 populateCustomContentContainer();
Winson Chung0e6a7132013-08-23 12:55:10 -07003733 }
Winson Chung64359a52013-07-08 17:17:08 -07003734 }
3735
3736 @Override
3737 public void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Adam Cohendcd297f2013-06-18 13:13:40 -07003738 int count = orderedScreenIds.size();
3739 for (int i = 0; i < count; i++) {
Adam Cohen89bddfa2013-08-20 11:57:13 -07003740 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(orderedScreenIds.get(i));
Adam Cohendcd297f2013-06-18 13:13:40 -07003741 }
Adam Cohendcd297f2013-06-18 13:13:40 -07003742 }
3743
Winson Chungd64d1762013-08-20 14:37:16 -07003744 public void bindAppsAdded(final ArrayList<Long> newScreens,
3745 final ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -07003746 final ArrayList<ItemInfo> addAnimated,
3747 final ArrayList<AppInfo> addedApps) {
Winson Chungd64d1762013-08-20 14:37:16 -07003748 Runnable r = new Runnable() {
3749 public void run() {
Winson Chungc58497e2013-09-03 17:48:37 -07003750 bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps);
Winson Chungd64d1762013-08-20 14:37:16 -07003751 }
3752 };
3753 if (waitUntilResume(r)) {
3754 return;
3755 }
3756
Winson Chungd64d1762013-08-20 14:37:16 -07003757 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08003758 if (newScreens != null) {
3759 bindAddScreens(newScreens);
3760 }
Winson Chungd64d1762013-08-20 14:37:16 -07003761
3762 // We add the items without animation on non-visible pages, and with
3763 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08003764 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003765 bindItems(addNotAnimated, 0,
3766 addNotAnimated.size(), false);
3767 }
Adam Cohen76a47a12014-02-05 11:47:43 -08003768 if (addAnimated != null && !addAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003769 bindItems(addAnimated, 0,
3770 addAnimated.size(), true);
3771 }
Winson Chungc58497e2013-09-03 17:48:37 -07003772
Winson Chung87412982013-10-03 18:34:14 -07003773 // Remove the extra empty screen
Adam Cohen689ff162014-05-08 17:27:56 -07003774 mWorkspace.removeExtraEmptyScreen(false, false);
Winson Chung87412982013-10-03 18:34:14 -07003775
Winson Chungb745afb2015-03-02 11:51:23 -08003776 if (addedApps != null && mAppsView != null) {
3777 mAppsView.addApps(addedApps);
Winson Chungc58497e2013-09-03 17:48:37 -07003778 }
Winson Chungd64d1762013-08-20 14:37:16 -07003779 }
3780
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003781 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003782 * Bind the items start-end from the list.
3783 *
3784 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003785 */
Tony Wickham0bb211a2015-10-02 16:22:08 -07003786 @Override
Winson Chung64359a52013-07-08 17:17:08 -07003787 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end,
3788 final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07003789 Runnable r = new Runnable() {
3790 public void run() {
3791 bindItems(shortcuts, start, end, forceAnimateIcons);
3792 }
3793 };
3794 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003795 return;
3796 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003797
Winson Chungf0c6ae02012-03-21 16:10:31 -07003798 // Get the list of added shortcuts and intersect them with the set of shortcuts here
Winson Chung64359a52013-07-08 17:17:08 -07003799 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
3800 final Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chung997a9232013-07-24 15:33:46 -07003801 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07003802 Workspace workspace = mWorkspace;
Winson Chung997a9232013-07-24 15:33:46 -07003803 long newShortcutsScreenId = -1;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003804 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003805 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003806
3807 // Short circuit if we are loading dock items for a configuration which has no dock
3808 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3809 mHotseat == null) {
3810 continue;
3811 }
3812
Sunny Goyal639e9062015-08-19 19:17:06 -07003813 final View view;
Joe Onorato9c1289c2009-08-17 11:03:03 -04003814 switch (item.itemType) {
3815 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3816 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07003817 ShortcutInfo info = (ShortcutInfo) item;
Sunny Goyal639e9062015-08-19 19:17:06 -07003818 view = createShortcut(info);
Adam Cohendcd297f2013-06-18 13:13:40 -07003819
Winson Chung64359a52013-07-08 17:17:08 -07003820 /*
3821 * TODO: FIX collision case
3822 */
Winson Chungce376632013-07-11 16:12:41 -07003823 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
3824 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
3825 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07003826 View v = cl.getChildAt(item.cellX, item.cellY);
3827 Object tag = v.getTag();
3828 String desc = "Collision while binding workspace item: " + item
3829 + ". Collides with " + tag;
Sunny Goyal6c56c682015-07-16 14:09:05 -07003830 if (ProviderConfig.IS_DOGFOOD_BUILD) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07003831 throw (new RuntimeException(desc));
3832 } else {
3833 Log.d(TAG, desc);
3834 }
Winson Chungce376632013-07-11 16:12:41 -07003835 }
Winson Chung64359a52013-07-08 17:17:08 -07003836 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003837 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003838 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Sunny Goyal639e9062015-08-19 19:17:06 -07003839 view = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003840 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003841 (FolderInfo) item, mIconCache);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003842 break;
Winson Chungc763c4e2013-07-19 13:49:06 -07003843 default:
3844 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04003845 }
Sunny Goyal639e9062015-08-19 19:17:06 -07003846
3847 workspace.addInScreenFromBind(view, item.container, item.screenId, item.cellX,
3848 item.cellY, 1, 1);
3849 if (animateIcons) {
3850 // Animate all the applications up now
3851 view.setAlpha(0f);
3852 view.setScaleX(0f);
3853 view.setScaleY(0f);
3854 bounceAnims.add(createNewAppBounceAnimation(view, i));
3855 newShortcutsScreenId = item.screenId;
3856 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003857 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003858
Winson Chung997a9232013-07-24 15:33:46 -07003859 if (animateIcons) {
3860 // Animate to the correct page
3861 if (newShortcutsScreenId > -1) {
3862 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Winson Chung94d67682013-09-25 16:29:40 -07003863 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId);
Winson Chungb2323832013-10-03 15:22:09 -07003864 final Runnable startBounceAnimRunnable = new Runnable() {
3865 public void run() {
3866 anim.playTogether(bounceAnims);
3867 anim.start();
3868 }
3869 };
Winson Chung997a9232013-07-24 15:33:46 -07003870 if (newShortcutsScreenId != currentScreenId) {
Winson Chung94d67682013-09-25 16:29:40 -07003871 // We post the animation slightly delayed to prevent slowdowns
3872 // when we are loading right after we return to launcher.
3873 mWorkspace.postDelayed(new Runnable() {
3874 public void run() {
Ian Parkinson94449152014-01-21 13:09:59 +00003875 if (mWorkspace != null) {
3876 mWorkspace.snapToPage(newScreenIndex);
3877 mWorkspace.postDelayed(startBounceAnimRunnable,
3878 NEW_APPS_ANIMATION_DELAY);
3879 }
Winson Chung94d67682013-09-25 16:29:40 -07003880 }
3881 }, NEW_APPS_PAGE_MOVE_DELAY);
Winson Chungb2323832013-10-03 15:22:09 -07003882 } else {
3883 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07003884 }
3885 }
Winson Chung64359a52013-07-08 17:17:08 -07003886 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003887 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003888 }
3889
Joe Onorato9c1289c2009-08-17 11:03:03 -04003890 /**
3891 * Implementation of the method from LauncherModel.Callbacks.
3892 */
Sunny Goyale2df0622015-04-24 11:27:00 -07003893 public void bindFolders(final LongArrayMap<FolderInfo> folders) {
Winson Chungd64d1762013-08-20 14:37:16 -07003894 Runnable r = new Runnable() {
3895 public void run() {
3896 bindFolders(folders);
3897 }
3898 };
3899 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003900 return;
3901 }
Sunny Goyale2df0622015-04-24 11:27:00 -07003902 sFolders = folders.clone();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003903 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003904
Sunny Goyal2e1efb42016-03-03 16:58:55 -08003905 private void bindSafeModeWidget(LauncherAppWidgetInfo item) {
3906 PendingAppWidgetHostView view = new PendingAppWidgetHostView(this, item, true);
3907 view.updateIcon(mIconCache);
3908 item.hostView = view;
3909 item.hostView.updateAppWidget(null);
3910 item.hostView.setOnClickListener(this);
3911 addAppWidgetToWorkspace(item, null, false);
3912 mWorkspace.requestLayout();
3913 }
3914
Joe Onorato9c1289c2009-08-17 11:03:03 -04003915 /**
3916 * Add the views for a widget to the workspace.
3917 *
3918 * Implementation of the method from LauncherModel.Callbacks.
3919 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07003920 public void bindAppWidget(final LauncherAppWidgetInfo item) {
Winson Chungd64d1762013-08-20 14:37:16 -07003921 Runnable r = new Runnable() {
3922 public void run() {
3923 bindAppWidget(item);
3924 }
3925 };
3926 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003927 return;
3928 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003929
Sunny Goyal2e1efb42016-03-03 16:58:55 -08003930 if (mIsSafeModeEnabled) {
3931 bindSafeModeWidget(item);
3932 return;
3933 }
3934
Daniel Sandler843e8602010-06-07 14:59:01 -04003935 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
3936 if (DEBUG_WIDGETS) {
3937 Log.d(TAG, "bindAppWidget: " + item);
3938 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003939
Sunny Goyal2e1efb42016-03-03 16:58:55 -08003940 final LauncherAppWidgetProviderInfo appWidgetInfo;
Adam Cohen59400422014-03-05 18:07:04 -08003941
Sunny Goyal2e1efb42016-03-03 16:58:55 -08003942 if (item.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY)) {
3943 // If the provider is not ready, bind as a pending widget.
3944 appWidgetInfo = null;
3945 } else if (item.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_ID_NOT_VALID)) {
3946 // The widget id is not valid. Try to find the widget based on the provider info.
3947 appWidgetInfo = mAppWidgetManager.findProvider(item.providerName, item.user);
3948 } else {
3949 appWidgetInfo = mAppWidgetManager.getLauncherAppWidgetInfo(item.appWidgetId);
3950 }
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003951
Sunny Goyal2e1efb42016-03-03 16:58:55 -08003952 // If the provider is ready, but the width is not yet restored, try to restore it.
3953 if (!item.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY) &&
3954 (item.restoreStatus != LauncherAppWidgetInfo.RESTORE_COMPLETED)) {
Sunny Goyalff572272014-07-23 13:58:07 -07003955 if (appWidgetInfo == null) {
3956 if (DEBUG_WIDGETS) {
3957 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3958 + " belongs to component " + item.providerName
3959 + ", as the povider is null");
3960 }
3961 LauncherModel.deleteItemFromDatabase(this, item);
3962 return;
3963 }
Sunny Goyalff572272014-07-23 13:58:07 -07003964
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003965 // If we do not have a valid id, try to bind an id.
Sunny Goyal2e1efb42016-03-03 16:58:55 -08003966 if (item.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_ID_NOT_VALID)) {
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003967 // Note: This assumes that the id remap broadcast is received before this step.
3968 // If that is not the case, the id remap will be ignored and user may see the
3969 // click to setup view.
Sunny Goyal16466f12016-03-10 05:34:30 -08003970 PendingAddWidgetInfo pendingInfo = new PendingAddWidgetInfo(this, appWidgetInfo);
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003971 pendingInfo.spanX = item.spanX;
3972 pendingInfo.spanY = item.spanY;
3973 pendingInfo.minSpanX = item.minSpanX;
3974 pendingInfo.minSpanY = item.minSpanY;
Sunny Goyalb740f592015-12-17 23:22:42 -08003975 Bundle options = WidgetHostViewLoader.getDefaultOptionsForWidget(this, pendingInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07003976
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003977 int newWidgetId = mAppWidgetHost.allocateAppWidgetId();
3978 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
3979 newWidgetId, appWidgetInfo, options);
3980
3981 // TODO consider showing a permission dialog when the widget is clicked.
3982 if (!success) {
3983 mAppWidgetHost.deleteAppWidgetId(newWidgetId);
3984 if (DEBUG_WIDGETS) {
3985 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3986 + " belongs to component " + item.providerName
3987 + ", as the launcher is unable to bing a new widget id");
3988 }
3989 LauncherModel.deleteItemFromDatabase(this, item);
3990 return;
Sunny Goyalff572272014-07-23 13:58:07 -07003991 }
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003992
3993 item.appWidgetId = newWidgetId;
3994
3995 // If the widget has a configure activity, it is still needs to set it up, otherwise
3996 // the widget is ready to go.
3997 item.restoreStatus = (appWidgetInfo.configure == null)
3998 ? LauncherAppWidgetInfo.RESTORE_COMPLETED
3999 : LauncherAppWidgetInfo.FLAG_UI_NOT_READY;
4000
4001 LauncherModel.updateItemInDatabase(this, item);
Sunny Goyal2e1efb42016-03-03 16:58:55 -08004002 } else if (item.hasRestoreFlag(LauncherAppWidgetInfo.FLAG_UI_NOT_READY)
Sunny Goyal84b4adc2015-08-12 15:12:16 -07004003 && (appWidgetInfo.configure == null)) {
Sunny Goyal2e1efb42016-03-03 16:58:55 -08004004 // The widget was marked as UI not ready, but there is no configure activity to
4005 // update the UI.
Sunny Goyal84b4adc2015-08-12 15:12:16 -07004006 item.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
4007 LauncherModel.updateItemInDatabase(this, item);
Sunny Goyalff572272014-07-23 13:58:07 -07004008 }
Sunny Goyalff572272014-07-23 13:58:07 -07004009 }
4010
Sunny Goyal2e1efb42016-03-03 16:58:55 -08004011 if (item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
Sunny Goyal651077b2014-06-30 14:15:31 -07004012 if (DEBUG_WIDGETS) {
Adam Cohen59400422014-03-05 18:07:04 -08004013 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component "
4014 + appWidgetInfo.provider);
Sunny Goyal651077b2014-06-30 14:15:31 -07004015 }
Daniel Sandler843e8602010-06-07 14:59:01 -04004016
Sunny Goyal56c73602015-09-25 12:55:01 -07004017 // Verify that we own the widget
Sunny Goyal2e1efb42016-03-03 16:58:55 -08004018 if (appWidgetInfo == null) {
4019 Log.e(TAG, "Removing invalid widget: id=" + item.appWidgetId);
Sunny Goyal56c73602015-09-25 12:55:01 -07004020 deleteWidgetInfo(item);
4021 return;
4022 }
4023
Sunny Goyal2e1efb42016-03-03 16:58:55 -08004024 item.hostView = mAppWidgetHost.createView(this, item.appWidgetId, appWidgetInfo);
Sunny Goyal233ee962015-08-03 13:05:01 -07004025 item.minSpanX = appWidgetInfo.minSpanX;
4026 item.minSpanY = appWidgetInfo.minSpanY;
Sunny Goyal2e1efb42016-03-03 16:58:55 -08004027 addAppWidgetToWorkspace(item, appWidgetInfo, false);
Sunny Goyal651077b2014-06-30 14:15:31 -07004028 } else {
Sunny Goyal9b4b0812014-10-08 10:47:28 -07004029 PendingAppWidgetHostView view = new PendingAppWidgetHostView(this, item,
4030 mIsSafeModeEnabled);
Sunny Goyal0fc1be12014-08-11 17:05:23 -07004031 view.updateIcon(mIconCache);
4032 item.hostView = view;
Sunny Goyal651077b2014-06-30 14:15:31 -07004033 item.hostView.updateAppWidget(null);
Sunny Goyalff572272014-07-23 13:58:07 -07004034 item.hostView.setOnClickListener(this);
Sunny Goyal2e1efb42016-03-03 16:58:55 -08004035 addAppWidgetToWorkspace(item, null, false);
Sunny Goyal651077b2014-06-30 14:15:31 -07004036 }
Sunny Goyal2e1efb42016-03-03 16:58:55 -08004037 mWorkspace.requestLayout();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004038
Daniel Sandler843e8602010-06-07 14:59:01 -04004039 if (DEBUG_WIDGETS) {
4040 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
4041 + (SystemClock.uptimeMillis()-start) + "ms");
4042 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004043 }
4044
Sunny Goyalff572272014-07-23 13:58:07 -07004045 /**
4046 * Restores a pending widget.
4047 *
4048 * @param appWidgetId The app widget id
4049 * @param cellInfo The position on screen where to create the widget.
4050 */
4051 private void completeRestoreAppWidget(final int appWidgetId) {
4052 LauncherAppWidgetHostView view = mWorkspace.getWidgetForAppWidgetId(appWidgetId);
4053 if ((view == null) || !(view instanceof PendingAppWidgetHostView)) {
4054 Log.e(TAG, "Widget update called, when the widget no longer exists.");
4055 return;
4056 }
4057
Sunny Goyal0fc1be12014-08-11 17:05:23 -07004058 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) view.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07004059 info.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
4060
4061 mWorkspace.reinflateWidgetsIfNecessary();
4062 LauncherModel.updateItemInDatabase(this, info);
4063 }
4064
Adam Cohen1462de32012-07-24 22:34:36 -07004065 public void onPageBoundSynchronously(int page) {
4066 mSynchronouslyBoundPages.add(page);
4067 }
4068
Sunny Goyal527c7d32015-08-28 15:19:36 -07004069 @Override
4070 public void executeOnNextDraw(ViewOnDrawExecutor executor) {
4071 if (mPendingExecutor != null) {
4072 mPendingExecutor.markCompleted();
4073 }
4074 mPendingExecutor = executor;
4075 executor.attachTo(this);
4076 }
4077
4078 public void clearPendingExecutor(ViewOnDrawExecutor executor) {
4079 if (mPendingExecutor == executor) {
4080 mPendingExecutor = null;
4081 }
4082 }
4083
Joe Onorato9c1289c2009-08-17 11:03:03 -04004084 /**
4085 * Callback saying that there aren't any more items to bind.
4086 *
4087 * Implementation of the method from LauncherModel.Callbacks.
4088 */
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004089 public void finishBindingItems() {
Winson Chungd64d1762013-08-20 14:37:16 -07004090 Runnable r = new Runnable() {
4091 public void run() {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004092 finishBindingItems();
Winson Chungd64d1762013-08-20 14:37:16 -07004093 }
4094 };
4095 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004096 return;
4097 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004098 if (mSavedState != null) {
4099 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07004100 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004101 }
Sunny Goyal08442b82015-10-21 17:15:08 -07004102
Joe Onorato9c1289c2009-08-17 11:03:03 -04004103 mSavedState = null;
4104 }
4105
Adam Cohen1462de32012-07-24 22:34:36 -07004106 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004107
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004108 setWorkspaceLoading(false);
Adam Cohen3ed316a2014-07-23 18:21:20 -07004109 sendLoadingCompleteBroadcastIfNecessary();
Adam Cohendb364c32014-05-20 14:23:40 -07004110
4111 // If we received the result of any pending adds while the loader was running (e.g. the
4112 // widget configuration forced an orientation change), process them now.
4113 if (sPendingAddItem != null) {
4114 final long screenId = completeAdd(sPendingAddItem);
4115
4116 // TODO: this moves the user to the page where the pending item was added. Ideally,
4117 // the screen would be guaranteed to exist after bind, and the page would be set through
4118 // the workspace restore process.
4119 mWorkspace.post(new Runnable() {
4120 @Override
4121 public void run() {
4122 mWorkspace.snapToScreenId(screenId);
4123 }
4124 });
4125 sPendingAddItem = null;
4126 }
4127
Sunny Goyal756adbc2015-04-16 15:20:51 -07004128 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
Adam Cohen9211d422014-10-07 18:14:53 -07004129
4130 if (mLauncherCallbacks != null) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004131 mLauncherCallbacks.finishBindingItems(false);
Adam Cohen9211d422014-10-07 18:14:53 -07004132 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004133 }
4134
Adam Cohen3ed316a2014-07-23 18:21:20 -07004135 private void sendLoadingCompleteBroadcastIfNecessary() {
4136 if (!mSharedPrefs.getBoolean(FIRST_LOAD_COMPLETE, false)) {
4137 String permission =
4138 getResources().getString(R.string.receive_first_load_broadcast_permission);
4139 Intent intent = new Intent(ACTION_FIRST_LOAD_COMPLETE);
4140 sendBroadcast(intent, permission);
4141 SharedPreferences.Editor editor = mSharedPrefs.edit();
4142 editor.putBoolean(FIRST_LOAD_COMPLETE, true);
4143 editor.apply();
4144 }
4145 }
4146
Winson Chunga0b7e862013-09-05 16:03:15 -07004147 public boolean isAllAppsButtonRank(int rank) {
4148 if (mHotseat != null) {
4149 return mHotseat.isAllAppsButtonRank(rank);
4150 }
4151 return false;
4152 }
4153
Winson Chunga2413752012-04-03 14:22:34 -07004154 private boolean canRunNewAppsAnimation() {
4155 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
Sunny Goyal639e9062015-08-19 19:17:06 -07004156 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000)
4157 && (mClings == null || !mClings.isVisible());
Winson Chunga2413752012-04-03 14:22:34 -07004158 }
4159
Winson Chungc9168342013-06-26 14:54:55 -07004160 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
Sunny Goyal5d2fc322015-07-06 22:52:49 -07004161 ValueAnimator bounceAnim = LauncherAnimUtils.ofViewAlphaAndScale(v, 1, 1, 1);
Winson Chungc9168342013-06-26 14:54:55 -07004162 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
4163 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
Sunny Goyal5a1f53b2015-05-27 10:24:24 -07004164 bounceAnim.setInterpolator(new OvershootInterpolator(BOUNCE_ANIMATION_TENSION));
Winson Chungc9168342013-06-26 14:54:55 -07004165 return bounceAnim;
4166 }
4167
Adam Cohen27772732013-11-11 14:00:56 +00004168 public boolean useVerticalBarLayout() {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07004169 return mDeviceProfile.isVerticalBarLayout();
Adam Cohen27772732013-11-11 14:00:56 +00004170 }
4171
Tony Wickham3a3517f2015-10-06 11:27:04 -07004172 /** Returns the search bar bounds in pixels. */
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004173 protected Rect getSearchBarBounds() {
Sunny Goyalc6205602015-05-21 20:46:33 -07004174 return mDeviceProfile.getSearchBarBounds(Utilities.isRtl(getResources()));
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004175 }
4176
Tony Wickham55616cd2015-09-23 14:55:17 -07004177 public int getSearchBarHeight() {
4178 if (mLauncherCallbacks != null) {
4179 return mLauncherCallbacks.getSearchBarHeight();
4180 }
4181 return LauncherCallbacks.SEARCH_BAR_HEIGHT_NORMAL;
4182 }
4183
Winson Chung88fa7412015-08-03 14:25:28 -07004184 public void bindSearchProviderChanged() {
Sunny Goyal594d76d2014-11-06 10:12:54 -08004185 if (mSearchDropTargetBar == null) {
4186 return;
Winson Chungadf0c182012-08-23 14:59:07 -07004187 }
Sunny Goyal594d76d2014-11-06 10:12:54 -08004188 if (mQsb != null) {
4189 mSearchDropTargetBar.removeView(mQsb);
4190 mQsb = null;
4191 }
Adam Cohenb0df1b02015-03-18 22:21:40 -07004192 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004193 }
4194
Amith Yamasani6d7fe502010-11-16 09:05:07 -08004195 /**
Winson Chungbb785c62015-05-05 10:05:08 -07004196 * A runnable that we can dequeue and re-enqueue when all applications are bound (to prevent
4197 * multiple calls to bind the same list.)
4198 */
4199 @Thunk ArrayList<AppInfo> mTmpAppsList;
4200 private Runnable mBindAllApplicationsRunnable = new Runnable() {
4201 public void run() {
4202 bindAllApplications(mTmpAppsList);
4203 mTmpAppsList = null;
4204 }
4205 };
4206
4207 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004208 * Add the icons for all apps.
4209 *
4210 * Implementation of the method from LauncherModel.Callbacks.
4211 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004212 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Winson Chungbb785c62015-05-05 10:05:08 -07004213 if (waitUntilResume(mBindAllApplicationsRunnable, true)) {
4214 mTmpAppsList = apps;
4215 return;
4216 }
4217
Winson Chungb745afb2015-03-02 11:51:23 -08004218 if (mAppsView != null) {
4219 mAppsView.setApps(apps);
4220 }
Adam Cohen9211d422014-10-07 18:14:53 -07004221 if (mLauncherCallbacks != null) {
4222 mLauncherCallbacks.bindAllApplications(apps);
4223 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004224 }
4225
4226 /**
4227 * A package was updated.
4228 *
4229 * Implementation of the method from LauncherModel.Callbacks.
4230 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004231 public void bindAppsUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004232 Runnable r = new Runnable() {
4233 public void run() {
4234 bindAppsUpdated(apps);
4235 }
4236 };
4237 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004238 return;
4239 }
4240
Winson Chungb745afb2015-03-02 11:51:23 -08004241 if (mAppsView != null) {
4242 mAppsView.updateApps(apps);
Winson Chungc58497e2013-09-03 17:48:37 -07004243 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004244 }
4245
Sunny Goyal4390ace2014-10-13 11:33:11 -07004246 @Override
4247 public void bindWidgetsRestored(final ArrayList<LauncherAppWidgetInfo> widgets) {
4248 Runnable r = new Runnable() {
4249 public void run() {
4250 bindWidgetsRestored(widgets);
4251 }
4252 };
4253 if (waitUntilResume(r)) {
4254 return;
4255 }
4256 mWorkspace.widgetsRestored(widgets);
4257 }
4258
Joe Onorato9c1289c2009-08-17 11:03:03 -04004259 /**
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004260 * Some shortcuts were updated in the background.
4261 *
4262 * Implementation of the method from LauncherModel.Callbacks.
4263 */
Sunny Goyal4390ace2014-10-13 11:33:11 -07004264 @Override
4265 public void bindShortcutsChanged(final ArrayList<ShortcutInfo> updated,
4266 final ArrayList<ShortcutInfo> removed, final UserHandleCompat user) {
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004267 Runnable r = new Runnable() {
4268 public void run() {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004269 bindShortcutsChanged(updated, removed, user);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004270 }
4271 };
4272 if (waitUntilResume(r)) {
4273 return;
4274 }
4275
Sunny Goyal4390ace2014-10-13 11:33:11 -07004276 if (!updated.isEmpty()) {
4277 mWorkspace.updateShortcuts(updated);
4278 }
4279
4280 if (!removed.isEmpty()) {
4281 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4282 for (ShortcutInfo si : removed) {
4283 removedComponents.add(si.getTargetComponent());
4284 }
4285 mWorkspace.removeItemsByComponentName(removedComponents, user);
4286 // Notify the drag controller
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07004287 mDragController.onAppsRemoved(new HashSet<String>(), removedComponents);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004288 }
4289 }
4290
4291 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004292 * Update the state of a package, typically related to install state.
4293 *
4294 * Implementation of the method from LauncherModel.Callbacks.
4295 */
Sunny Goyale755d462014-07-22 13:48:29 -07004296 @Override
Sunny Goyal756adbc2015-04-16 15:20:51 -07004297 public void bindRestoreItemsChange(final HashSet<ItemInfo> updates) {
4298 Runnable r = new Runnable() {
4299 public void run() {
4300 bindRestoreItemsChange(updates);
4301 }
4302 };
4303 if (waitUntilResume(r)) {
4304 return;
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004305 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004306
Sunny Goyal756adbc2015-04-16 15:20:51 -07004307 mWorkspace.updateRestoreItems(updates);
Sunny Goyala22666f2014-09-18 13:25:15 -07004308 }
4309
4310 /**
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07004311 * A package was uninstalled/updated. We take both the super set of packageNames
Winson Chung83892cc2013-05-01 16:53:33 -07004312 * in addition to specific applications to remove, the reason being that
4313 * this can be called when a package is updated as well. In that scenario,
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07004314 * we only remove specific components from the workspace and hotseat, where as
Winson Chung83892cc2013-05-01 16:53:33 -07004315 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004316 */
Sunny Goyal1a745e82014-10-02 15:58:31 -07004317 @Override
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07004318 public void bindWorkspaceComponentsRemoved(
4319 final HashSet<String> packageNames, final HashSet<ComponentName> components,
4320 final UserHandleCompat user) {
Winson Chungd64d1762013-08-20 14:37:16 -07004321 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004322 public void run() {
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07004323 bindWorkspaceComponentsRemoved(packageNames, components, user);
Winson Chung83892cc2013-05-01 16:53:33 -07004324 }
Winson Chungd64d1762013-08-20 14:37:16 -07004325 };
4326 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07004327 return;
4328 }
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07004329 if (!packageNames.isEmpty()) {
4330 mWorkspace.removeItemsByPackageName(packageNames, user);
4331 }
4332 if (!components.isEmpty()) {
4333 mWorkspace.removeItemsByComponentName(components, user);
4334 }
4335 // Notify the drag controller
4336 mDragController.onAppsRemoved(packageNames, components);
Winson Chung83892cc2013-05-01 16:53:33 -07004337
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07004338 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004339
Sunny Goyal3bbbabc2016-03-15 09:16:30 -07004340 @Override
4341 public void bindAppInfosRemoved(final ArrayList<AppInfo> appInfos) {
4342 Runnable r = new Runnable() {
4343 public void run() {
4344 bindAppInfosRemoved(appInfos);
4345 }
4346 };
4347 if (waitUntilResume(r)) {
4348 return;
Joe Onorato36115782010-06-17 13:28:48 -04004349 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07004350
Winson Chungdf95eb12013-10-16 14:57:07 -07004351 // Update AllApps
Winson Chungb745afb2015-03-02 11:51:23 -08004352 if (mAppsView != null) {
4353 mAppsView.removeApps(appInfos);
Winson Chungc58497e2013-09-03 17:48:37 -07004354 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004355 }
Joe Onoratobe386092009-11-17 17:32:16 -08004356
Sunny Goyal2e1efb42016-03-03 16:58:55 -08004357 private Runnable mBindWidgetModelRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004358 public void run() {
Sunny Goyal2e1efb42016-03-03 16:58:55 -08004359 bindWidgetsModel(mWidgetsModel);
Winson Chung83892cc2013-05-01 16:53:33 -07004360 }
Michael Jurkac402cd92013-05-20 15:49:32 +02004361 };
Hyunyoung Song3f471442015-04-08 19:01:34 -07004362
Hyunyoung Song8821ca92015-05-04 16:28:20 -07004363 @Override
Sunny Goyal2e1efb42016-03-03 16:58:55 -08004364 public void bindWidgetsModel(WidgetsModel model) {
4365 if (waitUntilResume(mBindWidgetModelRunnable, true)) {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004366 mWidgetsModel = model;
Winson Chung83892cc2013-05-01 16:53:33 -07004367 return;
4368 }
4369
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004370 if (mWidgetsView != null && model != null) {
4371 mWidgetsView.addWidgets(model);
4372 mWidgetsModel = null;
Winson Chung785d2eb2011-04-14 16:08:02 -07004373 }
Winson Chung80baf5a2010-08-09 16:03:15 -07004374 }
4375
Sunny Goyal2e1efb42016-03-03 16:58:55 -08004376 @Override
4377 public void notifyWidgetProvidersChanged() {
4378 if (mWorkspace.getState().shouldUpdateWidget) {
4379 mModel.refreshAndBindWidgetsAndShortcuts(this, mWidgetsView.isEmpty());
4380 }
4381 }
4382
Winson Chung400438b2011-01-16 17:53:48 -08004383 private int mapConfigurationOriActivityInfoOri(int configOri) {
4384 final Display d = getWindowManager().getDefaultDisplay();
4385 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
4386 switch (d.getRotation()) {
4387 case Surface.ROTATION_0:
4388 case Surface.ROTATION_180:
4389 // We are currently in the same basic orientation as the natural orientation
4390 naturalOri = configOri;
4391 break;
4392 case Surface.ROTATION_90:
4393 case Surface.ROTATION_270:
4394 // We are currently in the other basic orientation to the natural orientation
4395 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
4396 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
4397 break;
4398 }
4399
4400 int[] oriMap = {
4401 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
4402 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
4403 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
4404 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
4405 };
4406 // Since the map starts at portrait, we need to offset if this device's natural orientation
4407 // is landscape.
4408 int indexOffset = 0;
4409 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
4410 indexOffset = 1;
4411 }
4412 return oriMap[(d.getRotation() + indexOffset) % 4];
4413 }
Adam Cohen446e9402011-09-15 18:21:21 -07004414
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004415 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR2)
Winson Chung4b919f82012-05-01 10:44:08 -07004416 public void lockScreenOrientation() {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004417 if (mRotationEnabled) {
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004418 if (Utilities.ATLEAST_JB_MR2) {
4419 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LOCKED);
4420 } else {
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004421 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
4422 .getConfiguration().orientation));
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004423 }
Winson Chung4b919f82012-05-01 10:44:08 -07004424 }
4425 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004426
Winson Chung4b919f82012-05-01 10:44:08 -07004427 public void unlockScreenOrientation(boolean immediate) {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004428 if (mRotationEnabled) {
Winson Chung4b919f82012-05-01 10:44:08 -07004429 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07004430 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07004431 } else {
4432 mHandler.postDelayed(new Runnable() {
4433 public void run() {
4434 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4435 }
Sunny Goyal756cd262015-08-20 12:33:21 -07004436 }, RESTORE_SCREEN_ORIENTATION_DELAY);
Winson Chung641d71d2012-04-26 15:58:01 -07004437 }
Winson Chung4b919f82012-05-01 10:44:08 -07004438 }
Winson Chung400438b2011-01-16 17:53:48 -08004439 }
4440
Winson Chunge43a1e72014-01-15 10:33:02 -08004441 protected boolean isLauncherPreinstalled() {
Adam Cohen9211d422014-10-07 18:14:53 -07004442 if (mLauncherCallbacks != null) {
4443 return mLauncherCallbacks.isLauncherPreinstalled();
4444 }
Winson Chunge43a1e72014-01-15 10:33:02 -08004445 PackageManager pm = getPackageManager();
4446 try {
4447 ApplicationInfo ai = pm.getApplicationInfo(getComponentName().getPackageName(), 0);
4448 if ((ai.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
4449 return true;
4450 } else {
4451 return false;
4452 }
4453 } catch (NameNotFoundException e) {
4454 e.printStackTrace();
4455 return false;
4456 }
4457 }
4458
Adam Cohenea90f832014-05-21 15:03:34 -07004459 /**
Adam Cohen432609a2014-03-13 17:03:22 -07004460 * To be overridden by subclasses to indicate that there is an activity to launch
4461 * before showing the standard launcher experience.
4462 */
4463 protected boolean hasFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004464 if (mLauncherCallbacks != null) {
4465 return mLauncherCallbacks.hasFirstRunActivity();
4466 }
Adam Cohen432609a2014-03-13 17:03:22 -07004467 return false;
4468 }
4469
4470 /**
4471 * To be overridden by subclasses to launch any first run activity
4472 */
4473 protected Intent getFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004474 if (mLauncherCallbacks != null) {
4475 return mLauncherCallbacks.getFirstRunActivity();
4476 }
Adam Cohen432609a2014-03-13 17:03:22 -07004477 return null;
4478 }
4479
Winson Chunga6945242014-01-08 14:04:34 -08004480 private boolean shouldRunFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004481 return !ActivityManager.isRunningInTestHarness() &&
4482 !mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
Winson Chunga6945242014-01-08 14:04:34 -08004483 }
4484
Adam Cohen4a9423d2014-03-28 14:22:31 -07004485 protected boolean hasRunFirstRunActivity() {
4486 return mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
4487 }
4488
Adam Cohen432609a2014-03-13 17:03:22 -07004489 public boolean showFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004490 if (shouldRunFirstRunActivity() &&
4491 hasFirstRunActivity()) {
Winson Chunga6945242014-01-08 14:04:34 -08004492 Intent firstRunIntent = getFirstRunActivity();
4493 if (firstRunIntent != null) {
4494 startActivity(firstRunIntent);
4495 markFirstRunActivityShown();
Adam Cohen432609a2014-03-13 17:03:22 -07004496 return true;
Winson Chunga6945242014-01-08 14:04:34 -08004497 }
4498 }
Adam Cohen432609a2014-03-13 17:03:22 -07004499 return false;
Winson Chunga6945242014-01-08 14:04:34 -08004500 }
4501
4502 private void markFirstRunActivityShown() {
4503 SharedPreferences.Editor editor = mSharedPrefs.edit();
4504 editor.putBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, true);
4505 editor.apply();
4506 }
4507
Adam Cohen432609a2014-03-13 17:03:22 -07004508 /**
4509 * To be overridden by subclasses to indicate that there is an in-activity full-screen intro
4510 * screen that must be displayed and dismissed.
4511 */
4512 protected boolean hasDismissableIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004513 if (mLauncherCallbacks != null) {
4514 return mLauncherCallbacks.hasDismissableIntroScreen();
4515 }
Adam Cohen432609a2014-03-13 17:03:22 -07004516 return false;
4517 }
4518
4519 /**
4520 * Full screen intro screen to be shown and dismissed before the launcher can be used.
4521 */
4522 protected View getIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004523 if (mLauncherCallbacks != null) {
4524 return mLauncherCallbacks.getIntroScreen();
4525 }
Adam Cohen432609a2014-03-13 17:03:22 -07004526 return null;
4527 }
4528
4529 /**
4530 * To be overriden by subclasses to indicate whether the in-activity intro screen has been
4531 * dismissed. This method is ignored if #hasDismissableIntroScreen returns false.
4532 */
4533 private boolean shouldShowIntroScreen() {
4534 return hasDismissableIntroScreen() &&
4535 !mSharedPrefs.getBoolean(INTRO_SCREEN_DISMISSED, false);
4536 }
4537
4538 protected void showIntroScreen() {
4539 View introScreen = getIntroScreen();
4540 changeWallpaperVisiblity(false);
4541 if (introScreen != null) {
4542 mDragLayer.showOverlayView(introScreen);
4543 }
4544 }
4545
4546 public void dismissIntroScreen() {
4547 markIntroScreenDismissed();
4548 if (showFirstRunActivity()) {
4549 // We delay hiding the intro view until the first run activity is showing. This
4550 // avoids a blip.
4551 mWorkspace.postDelayed(new Runnable() {
4552 @Override
4553 public void run() {
4554 mDragLayer.dismissOverlayView();
Sunny Goyal88d60f12014-09-08 03:47:29 -07004555 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004556 }
4557 }, ACTIVITY_START_DELAY);
4558 } else {
4559 mDragLayer.dismissOverlayView();
Sunny Goyal88d60f12014-09-08 03:47:29 -07004560 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004561 }
4562 changeWallpaperVisiblity(true);
4563 }
4564
4565 private void markIntroScreenDismissed() {
4566 SharedPreferences.Editor editor = mSharedPrefs.edit();
4567 editor.putBoolean(INTRO_SCREEN_DISMISSED, true);
4568 editor.apply();
4569 }
4570
Adam Cohen091440a2015-03-18 14:16:05 -07004571 @Thunk void showFirstRunClings() {
Sunny Goyal88d60f12014-09-08 03:47:29 -07004572 // The two first run cling paths are mutually exclusive, if the launcher is preinstalled
4573 // on the device, then we always show the first run cling experience (or if there is no
4574 // launcher2). Otherwise, we prompt the user upon started for migration
4575 LauncherClings launcherClings = new LauncherClings(this);
4576 if (launcherClings.shouldShowFirstRunOrMigrationClings()) {
Sunny Goyal639e9062015-08-19 19:17:06 -07004577 mClings = launcherClings;
Sunny Goyal88d60f12014-09-08 03:47:29 -07004578 if (mModel.canMigrateFromOldLauncherDb(this)) {
4579 launcherClings.showMigrationCling();
4580 } else {
Sunny Goyalaf0628f2014-09-19 10:14:48 -07004581 launcherClings.showLongPressCling(true);
Sunny Goyal88d60f12014-09-08 03:47:29 -07004582 }
4583 }
4584 }
4585
Winson Chunga6945242014-01-08 14:04:34 -08004586 void showWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004587 if (mWorkspace != null) mWorkspace.setAlpha(1f);
4588 if (mHotseat != null) mHotseat.setAlpha(1f);
4589 if (mPageIndicators != null) mPageIndicators.setAlpha(1f);
Winson Chung006ee262015-08-03 14:40:11 -07004590 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4591 SearchDropTargetBar.State.SEARCH_BAR, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004592 }
4593
4594 void hideWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004595 if (mWorkspace != null) mWorkspace.setAlpha(0f);
4596 if (mHotseat != null) mHotseat.setAlpha(0f);
4597 if (mPageIndicators != null) mPageIndicators.setAlpha(0f);
Winson Chung006ee262015-08-03 14:40:11 -07004598 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4599 SearchDropTargetBar.State.INVISIBLE, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004600 }
4601
Winson Chung5ffd51d2015-06-25 11:36:50 -07004602 // TODO: These method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004603 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Mathew Inwood72fbec12013-11-19 15:45:07 +00004604 public ItemInfo createAppDragInfo(Intent appLaunchIntent) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004605 // Called from search suggestion
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004606 UserHandleCompat user = null;
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004607 if (Utilities.ATLEAST_LOLLIPOP) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004608 UserHandle userHandle = appLaunchIntent.getParcelableExtra(Intent.EXTRA_USER);
4609 if (userHandle != null) {
4610 user = UserHandleCompat.fromUser(userHandle);
4611 }
4612 }
4613 return createAppDragInfo(appLaunchIntent, user);
Winson Chung5ffd51d2015-06-25 11:36:50 -07004614 }
4615
4616 // TODO: This method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004617 public ItemInfo createAppDragInfo(Intent intent, UserHandleCompat user) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004618 if (user == null) {
4619 user = UserHandleCompat.myUserHandle();
4620 }
4621
4622 // Called from search suggestion, add the profile extra to the intent to ensure that we
4623 // can launch it correctly
Kenny Guyed131872014-04-30 03:02:21 +01004624 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004625 LauncherActivityInfoCompat activityInfo = launcherApps.resolveActivity(intent, user);
Kenny Guyed131872014-04-30 03:02:21 +01004626 if (activityInfo == null) {
Mathew Inwood72fbec12013-11-19 15:45:07 +00004627 return null;
4628 }
Winson Chung5ffd51d2015-06-25 11:36:50 -07004629 return new AppInfo(this, activityInfo, user, mIconCache);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004630 }
4631
Winson Chung5ffd51d2015-06-25 11:36:50 -07004632 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004633 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4634 Bitmap icon) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004635 return new ShortcutInfo(shortcutIntent, caption, caption, icon,
Kenny Guyed131872014-04-30 03:02:21 +01004636 UserHandleCompat.myUserHandle());
4637 }
4638
Winson Chung5ffd51d2015-06-25 11:36:50 -07004639 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004640 public void startDrag(View dragView, ItemInfo dragInfo, DragSource source) {
4641 dragView.setTag(dragInfo);
Winson Chungbabb53e2014-04-14 17:12:49 -07004642 mWorkspace.onExternalDragStartedWithItem(dragView);
4643 mWorkspace.beginExternalDragShared(dragView, source);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004644 }
4645
Winson Chung5ffd51d2015-06-25 11:36:50 -07004646 protected void moveWorkspaceToDefaultScreen() {
4647 mWorkspace.moveToDefaultScreen(false);
4648 }
4649
Anjali Koppalf5d29132014-02-28 13:33:27 -08004650 @Override
4651 public void onPageSwitch(View newPage, int newPageIndex) {
Adam Cohen9211d422014-10-07 18:14:53 -07004652 if (mLauncherCallbacks != null) {
4653 mLauncherCallbacks.onPageSwitch(newPage, newPageIndex);
4654 }
Anjali Koppalf5d29132014-02-28 13:33:27 -08004655 }
4656
Winson Chung80baf5a2010-08-09 16:03:15 -07004657 /**
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004658 * Returns a FastBitmapDrawable with the icon, accurately sized.
4659 */
4660 public FastBitmapDrawable createIconDrawable(Bitmap icon) {
4661 FastBitmapDrawable d = new FastBitmapDrawable(icon);
4662 d.setFilterBitmap(true);
4663 resizeIconDrawable(d);
4664 return d;
4665 }
4666
4667 /**
4668 * Resizes an icon drawable to the correct icon size.
4669 */
Winson5fbe0742015-09-30 15:33:00 -07004670 public Drawable resizeIconDrawable(Drawable icon) {
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004671 icon.setBounds(0, 0, mDeviceProfile.iconSizePx, mDeviceProfile.iconSizePx);
Winson5fbe0742015-09-30 15:33:00 -07004672 return icon;
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004673 }
4674
4675 /**
Joe Onoratobe386092009-11-17 17:32:16 -08004676 * Prints out out state for debugging.
4677 */
4678 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04004679 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08004680 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08004681 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
4682 Log.d(TAG, "mRestoring=" + mRestoring);
4683 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004684 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08004685 mModel.dumpState();
Hyunyoung Song3f471442015-04-08 19:01:34 -07004686 // TODO(hyunyoungs): add mWidgetsView.dumpState(); or mWidgetsModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07004687
Daniel Sandler325dc232013-06-05 22:57:57 -04004688 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08004689 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004690
4691 @Override
4692 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
4693 super.dump(prefix, fd, writer, args);
Sunny Goyala1365452015-10-01 15:46:24 -07004694 // Dump workspace
4695 writer.println(prefix + "Workspace Items");
4696 for (int i = mWorkspace.numCustomPages(); i < mWorkspace.getPageCount(); i++) {
4697 writer.println(prefix + " Homescreen " + i);
4698
4699 ViewGroup layout = ((CellLayout) mWorkspace.getPageAt(i)).getShortcutsAndWidgets();
4700 for (int j = 0; j < layout.getChildCount(); j++) {
4701 Object tag = layout.getChildAt(j).getTag();
4702 if (tag != null) {
4703 writer.println(prefix + " " + tag.toString());
4704 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004705 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004706 }
Sunny Goyala1365452015-10-01 15:46:24 -07004707
4708 writer.println(prefix + " Hotseat");
4709 ViewGroup layout = mHotseat.getLayout().getShortcutsAndWidgets();
4710 for (int j = 0; j < layout.getChildCount(); j++) {
4711 Object tag = layout.getChildAt(j).getTag();
4712 if (tag != null) {
4713 writer.println(prefix + " " + tag.toString());
4714 }
4715 }
4716
4717 synchronized (sDumpLogs) {
4718 writer.println();
4719 writer.println(prefix + "Debug logs");
4720 for (String log : sDumpLogs) {
4721 writer.println(prefix + " " + log);
4722 }
4723 }
4724
Adam Cohen9211d422014-10-07 18:14:53 -07004725 if (mLauncherCallbacks != null) {
4726 mLauncherCallbacks.dump(prefix, fd, writer, args);
4727 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004728 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004729
Sunny Goyala1365452015-10-01 15:46:24 -07004730 public static void addDumpLog(String tag, String log) {
4731 Log.d(tag, log);
4732 synchronized(sDumpLogs) {
Winson Chungede41292013-09-19 16:27:36 -07004733 sDateStamp.setTime(System.currentTimeMillis());
Sunny Goyala1365452015-10-01 15:46:24 -07004734 sDumpLogs.add(sDateFormat.format(sDateStamp) + ": " + tag + ", " + log);
Winson Chungede41292013-09-19 16:27:36 -07004735 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004736 }
4737
Adam Cohen59400422014-03-05 18:07:04 -08004738 public static CustomAppWidget getCustomAppWidget(String name) {
4739 return sCustomAppWidgets.get(name);
4740 }
4741
4742 public static HashMap<String, CustomAppWidget> getCustomAppWidgets() {
4743 return sCustomAppWidgets;
4744 }
4745
Sunny Goyal29538332016-02-18 09:10:19 -08004746 public static List<View> getFolderContents(View icon) {
4747 if (icon instanceof FolderIcon) {
4748 return ((FolderIcon) icon).getFolder().getItemsInReadingOrder();
4749 } else {
4750 return Collections.EMPTY_LIST;
4751 }
4752 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004753}
Michael Jurka2763be32011-02-24 11:19:57 -08004754
Dan Sandlerd5024042014-01-09 15:01:33 -05004755interface DebugIntents {
4756 static final String DELETE_DATABASE = "com.android.launcher3.action.DELETE_DATABASE";
4757 static final String MIGRATE_DATABASE = "com.android.launcher3.action.MIGRATE_DATABASE";
Adam Cohen8b5b05b2014-01-10 21:42:39 +00004758}