blob: 9532c394172626e659e34ae794b89ba192ff927b [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;
24import android.animation.PropertyValuesHolder;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070025import android.animation.ValueAnimator;
Sunny Goyal70660032015-05-14 00:07:08 -070026import android.annotation.SuppressLint;
Adam Cohen0b395352014-06-09 22:54:36 +000027import android.annotation.TargetApi;
Michael Jurka946ad472010-07-09 18:05:18 -070028import android.app.Activity;
Brett Chabot2a9e2282011-08-23 15:03:13 -070029import android.app.ActivityManager;
Winson Chungc7450e32012-04-17 17:34:08 -070030import android.app.ActivityOptions;
Chris Wren40c5ed32014-06-24 18:24:23 -040031import android.app.AlertDialog;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080032import android.app.SearchManager;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080033import android.appwidget.AppWidgetHostView;
Michael Jurkaaf442092010-06-10 17:01:57 -070034import android.appwidget.AppWidgetManager;
35import android.appwidget.AppWidgetProviderInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080036import android.content.ActivityNotFoundException;
Joe Onorato2ca0ae72009-11-10 13:14:13 -080037import android.content.BroadcastReceiver;
Michael Jurkae326f182011-11-21 14:05:46 -080038import android.content.ComponentCallbacks2;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040039import android.content.ComponentName;
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;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040060import android.net.Uri;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -070061import android.os.AsyncTask;
Adam Cohen0f668f32014-09-08 19:54:17 +020062import android.os.Build;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080063import android.os.Bundle;
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +020064import android.os.Environment;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080065import android.os.Handler;
Adam Cohended9f8d2010-11-03 13:25:16 -070066import android.os.Message;
Winson Chunga2413752012-04-03 14:22:34 -070067import android.os.StrictMode;
Daniel Sandler843e8602010-06-07 14:59:01 -040068import android.os.SystemClock;
Sunny Goyala1d1bf32015-06-26 13:24:53 -070069import android.os.UserHandle;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080070import android.text.Selection;
71import android.text.SpannableStringBuilder;
Michael Jurkaa33411c2012-06-14 16:18:21 -070072import android.text.TextUtils;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080073import android.text.method.TextKeyListener;
Joe Onorato7c312c12009-08-13 21:36:53 -070074import android.util.Log;
Adam Cohen96d30a12013-07-16 18:13:21 -070075import android.view.Display;
Adam Cohen96d30a12013-07-16 18:13:21 -070076import android.view.HapticFeedbackConstants;
77import android.view.KeyEvent;
78import android.view.LayoutInflater;
79import android.view.Menu;
Adam Cohen96d30a12013-07-16 18:13:21 -070080import android.view.MotionEvent;
81import android.view.Surface;
82import android.view.View;
Adam Cohenf358a4b2013-07-23 16:47:31 -070083import android.view.View.OnClickListener;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080084import android.view.View.OnLongClickListener;
Adam Cohen96d30a12013-07-16 18:13:21 -070085import android.view.ViewGroup;
Adam Cohenc2d6e892014-10-16 09:49:24 -070086import android.view.ViewStub;
Adam Cohen96d30a12013-07-16 18:13:21 -070087import android.view.ViewTreeObserver;
Adam Cohen96d30a12013-07-16 18:13:21 -070088import android.view.WindowManager;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -080089import android.view.accessibility.AccessibilityEvent;
Sunny Goyal5a1f53b2015-05-27 10:24:24 -070090import android.view.animation.OvershootInterpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080091import android.view.inputmethod.InputMethodManager;
Adam Cohen96d30a12013-07-16 18:13:21 -070092import android.widget.Advanceable;
Adam Cohen96d30a12013-07-16 18:13:21 -070093import android.widget.ImageView;
Chet Haasea8f996d2015-02-17 12:56:04 -080094import android.widget.TextView;
Adam Cohen96d30a12013-07-16 18:13:21 -070095import android.widget.Toast;
Sunny Goyala1d1bf32015-06-26 13:24:53 -070096
Sunny Goyal651077b2014-06-30 14:15:31 -070097import com.android.launcher3.DropTarget.DragObject;
98import com.android.launcher3.PagedView.PageSwitchListener;
Winson Chung5f4e0fd2015-05-22 11:12:27 -070099import com.android.launcher3.allapps.AllAppsContainerView;
Sunny Goyalffe83f12014-08-14 17:39:34 -0700100import com.android.launcher3.compat.AppWidgetManagerCompat;
Kenny Guyed131872014-04-30 03:02:21 +0100101import com.android.launcher3.compat.LauncherActivityInfoCompat;
102import com.android.launcher3.compat.LauncherAppsCompat;
103import com.android.launcher3.compat.UserHandleCompat;
104import com.android.launcher3.compat.UserManagerCompat;
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700105import com.android.launcher3.model.WidgetsModel;
Winson Chung6b1c73f2015-06-18 11:38:42 -0700106import com.android.launcher3.util.ComponentKey;
Sunny Goyale2df0622015-04-24 11:27:00 -0700107import com.android.launcher3.util.LongArrayMap;
Sunny Goyald3060552015-06-25 19:35:49 -0700108import com.android.launcher3.util.TestingUtils;
Adam Cohen091440a2015-03-18 14:16:05 -0700109import com.android.launcher3.util.Thunk;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700110import com.android.launcher3.widget.PendingAddWidgetInfo;
Hyunyoung Songb99ff3e2015-04-23 15:17:50 -0700111import com.android.launcher3.widget.WidgetHostViewLoader;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700112import com.android.launcher3.widget.WidgetsContainerView;
Adam Cohen6c5891a2014-07-09 23:53:15 -0700113
Adam Cohen4caf2982013-08-20 18:54:31 -0700114import java.io.File;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700115import java.io.FileDescriptor;
Adam Cohen4caf2982013-08-20 18:54:31 -0700116import java.io.FileOutputStream;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700117import java.io.IOException;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700118import java.io.PrintWriter;
Adam Cohen4caf2982013-08-20 18:54:31 -0700119import java.text.DateFormat;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700120import java.util.ArrayList;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700121import java.util.Collection;
Adam Cohen4caf2982013-08-20 18:54:31 -0700122import java.util.Date;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700123import java.util.HashMap;
Sunny Goyal4390ace2014-10-13 11:33:11 -0700124import java.util.HashSet;
Michael Jurkad7c28052012-04-27 15:43:36 -0700125import java.util.List;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700126
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800127/**
128 * Default launcher application.
129 */
Bjorn Bringertc459e522013-06-07 19:36:01 +0100130public class Launcher extends Activity
Michael Jurka0e260592010-06-30 17:07:39 -0700131 implements View.OnClickListener, OnLongClickListener, LauncherModel.Callbacks,
Winson Chung006ee262015-08-03 14:40:11 -0700132 View.OnTouchListener, PageSwitchListener, LauncherProviderChangeListener {
Hyunyoung Song4e8fb912015-04-11 15:44:32 -0700133 static final String TAG = "Launcher";
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700134 static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800135
Daniel Sandlerf061f822013-06-27 13:59:36 -0400136 static final boolean PROFILE_STARTUP = false;
Sunny Goyalc84e6e12015-10-02 12:48:37 -0700137 static final boolean DEBUG_WIDGETS = false;
Winson Chunga2413752012-04-03 14:22:34 -0700138 static final boolean DEBUG_STRICT_MODE = false;
Daniel Sandlerf061f822013-06-27 13:59:36 -0400139 static final boolean DEBUG_RESUME_TIME = false;
Winson Chungede41292013-09-19 16:27:36 -0700140 static final boolean DEBUG_DUMP_LOG = false;
Romain Guy6fefcf12009-06-11 13:07:43 -0700141
Dan Sandlerd5024042014-01-09 15:01:33 -0500142 static final boolean ENABLE_DEBUG_INTENTS = false; // allow DebugIntents to run
143
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800144 private static final int REQUEST_CREATE_SHORTCUT = 1;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700145 private static final int REQUEST_CREATE_APPWIDGET = 5;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700146 private static final int REQUEST_PICK_APPWIDGET = 9;
Mike Clerona0618e42009-10-22 13:55:21 -0700147 private static final int REQUEST_PICK_WALLPAPER = 10;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800148
Michael Jurka8b805b12012-04-18 14:23:14 -0700149 private static final int REQUEST_BIND_APPWIDGET = 11;
Sunny Goyalff572272014-07-23 13:58:07 -0700150 private static final int REQUEST_RECONFIGURE_APPWIDGET = 12;
Michael Jurka8b805b12012-04-18 14:23:14 -0700151
Sunny Goyal28c6b962015-10-12 11:42:05 -0700152 private static final int REQUEST_PERMISSION_CALL_PHONE = 13;
153
Sunny Goyal4a6c6f32015-05-19 12:36:46 -0700154 private static final int WORKSPACE_BACKGROUND_GRADIENT = 0;
155 private static final int WORKSPACE_BACKGROUND_TRANSPARENT = 1;
156 private static final int WORKSPACE_BACKGROUND_BLACK = 2;
157
Sunny Goyal5a1f53b2015-05-27 10:24:24 -0700158 private static final float BOUNCE_ANIMATION_TENSION = 1.3f;
159
Mathew Inwood876a8462013-06-14 14:12:41 +0100160 /**
161 * IntentStarter uses request codes starting with this. This must be greater than all activity
162 * request codes used internally.
163 */
164 protected static final int REQUEST_LAST = 100;
165
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800166 static final int SCREEN_COUNT = 5;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800167
Michael Jurka0a457bf2012-11-19 14:05:05 -0800168 // To turn on these properties, type
169 // adb shell setprop log.tag.PROPERTY_NAME [VERBOSE | SUPPRESS]
Michael Jurka0a457bf2012-11-19 14:05:05 -0800170 static final String DUMP_STATE_PROPERTY = "launcher_dump_state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800171
Winson Chung2672ff92012-05-04 16:22:30 -0700172 // The Intent extra that defines whether to ignore the launch animation
173 static final String INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION =
Daniel Sandler325dc232013-06-05 22:57:57 -0400174 "com.android.launcher3.intent.extra.shortcut.INGORE_LAUNCH_ANIMATION";
Winson Chung2672ff92012-05-04 16:22:30 -0700175
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800176 // Type: int
177 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
Michael Jurka883f55b2010-10-21 15:47:14 -0700178 // Type: int
179 private static final String RUNTIME_STATE = "launcher.state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800180 // Type: int
Winson Chung3d503fb2011-07-13 17:25:49 -0700181 private static final String RUNTIME_STATE_PENDING_ADD_CONTAINER = "launcher.add_container";
182 // Type: int
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800183 private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
184 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700185 private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cell_x";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800186 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700187 private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cell_y";
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700188 // Type: int
189 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_X = "launcher.add_span_x";
190 // Type: int
191 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_Y = "launcher.add_span_y";
192 // Type: parcelable
193 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_INFO = "launcher.add_widget_info";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000194 // Type: parcelable
Adam Cohen4637b5a2013-11-04 18:21:24 -0800195 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_ID = "launcher.add_widget_id";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800196
Adam Cohen432609a2014-03-13 17:03:22 -0700197 static final String INTRO_SCREEN_DISMISSED = "launcher.intro_screen_dismissed";
Adam Cohenb54a5982014-01-08 15:21:04 -0800198 static final String FIRST_RUN_ACTIVITY_DISPLAYED = "launcher.first_run_activity_displayed";
199
Adam Cohen3ed316a2014-07-23 18:21:20 -0700200 static final String FIRST_LOAD_COMPLETE = "launcher.first_load_complete";
201 static final String ACTION_FIRST_LOAD_COMPLETE =
202 "com.android.launcher3.action.FIRST_LOAD_COMPLETE";
203
Sunny Goyal594d76d2014-11-06 10:12:54 -0800204 private static final String QSB_WIDGET_ID = "qsb_widget_id";
205 private static final String QSB_WIDGET_PROVIDER = "qsb_widget_provider";
206
Winson Chunga6945242014-01-08 14:04:34 -0800207 public static final String USER_HAS_MIGRATED = "launcher.user_migrated_from_old_data";
208
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700209 /** The different states that Launcher can be in. */
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700210 enum State { NONE, WORKSPACE, APPS, APPS_SPRING_LOADED, WIDGETS, WIDGETS_SPRING_LOADED }
211
Adam Cohen091440a2015-03-18 14:16:05 -0700212 @Thunk State mState = State.WORKSPACE;
Adam Cohen091440a2015-03-18 14:16:05 -0700213 @Thunk LauncherStateTransitionAnimation mStateTransitionAnimation;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700214
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700215 private boolean mIsSafeModeEnabled;
216
Adam Cohenc2d6e892014-10-16 09:49:24 -0700217 LauncherOverlayCallbacks mLauncherOverlayCallbacks = new LauncherOverlayCallbacksImpl();
218 LauncherOverlay mLauncherOverlay;
Adam Cohena6d04922014-10-23 17:28:30 -0700219 InsettableFrameLayout mLauncherOverlayContainer;
Adam Cohenc2d6e892014-10-16 09:49:24 -0700220
Joe Onorato9c1289c2009-08-17 11:03:03 -0400221 static final int APPWIDGET_HOST_ID = 1024;
Adam Cohenad4e15c2013-10-17 16:21:35 -0700222 public static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
223 private static final int ON_ACTIVITY_RESULT_ANIMATION_DELAY = 500;
Adam Cohen646fdf72014-04-08 16:59:36 -0700224 private static final int ACTIVITY_START_DELAY = 1000;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800225
Winson Chunga2413752012-04-03 14:22:34 -0700226 // How long to wait before the new-shortcut animation automatically pans the workspace
Winson Chung94d67682013-09-25 16:29:40 -0700227 private static int NEW_APPS_PAGE_MOVE_DELAY = 500;
228 private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 5;
Adam Cohen091440a2015-03-18 14:16:05 -0700229 @Thunk static int NEW_APPS_ANIMATION_DELAY = 500;
Winson Chunga2413752012-04-03 14:22:34 -0700230
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800231 private final BroadcastReceiver mCloseSystemDialogsReceiver
232 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800233
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800234 private LayoutInflater mInflater;
235
Adam Cohen091440a2015-03-18 14:16:05 -0700236 @Thunk Workspace mWorkspace;
Craig Mautner360310b2012-10-26 15:13:08 -0700237 private View mLauncherView;
Winson Chunga6945242014-01-08 14:04:34 -0800238 private View mPageIndicators;
Adam Cohen091440a2015-03-18 14:16:05 -0700239 @Thunk DragLayer mDragLayer;
Michael Jurkab737ee62011-11-15 15:57:22 -0800240 private DragController mDragController;
Sunny Goyald3060552015-06-25 19:35:49 -0700241
242 public View mWeightWatcher;
Romain Guycbb89e42009-06-08 15:52:54 -0700243
Sunny Goyalffe83f12014-08-14 17:39:34 -0700244 private AppWidgetManagerCompat mAppWidgetManager;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700245 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700246
Adam Cohen091440a2015-03-18 14:16:05 -0700247 @Thunk ItemInfo mPendingAddInfo = new ItemInfo();
Adam Cohen59400422014-03-05 18:07:04 -0800248 private LauncherAppWidgetProviderInfo mPendingAddWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800249 private int mPendingAddWidgetId = -1;
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700250
Michael Jurka0280c3b2010-09-17 15:00:07 -0700251 private int[] mTmpAddItemCellCoordinates = new int[2];
252
Sunny Goyal316490e2015-06-02 09:38:28 -0700253 @Thunk Hotseat mHotseat;
Jorim Jaggid017f882014-01-14 17:08:48 -0800254 private ViewGroup mOverviewPanel;
Adam Cohenf358a4b2013-07-23 16:47:31 -0700255
Michael Jurka838a4ca2011-02-07 13:33:06 -0800256 private View mAllAppsButton;
Hyunyoung Song98ff38a2015-07-10 17:50:13 -0700257 private View mWidgetsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700258
Winson Chungc51db6a2011-10-05 11:44:49 -0700259 private SearchDropTargetBar mSearchDropTargetBar;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700260
261 // Main container view for the all apps screen.
Winson Chung5f4e0fd2015-05-22 11:12:27 -0700262 @Thunk AllAppsContainerView mAppsView;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700263
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700264 // Main container view and the model for the widget tray screen.
265 @Thunk WidgetsContainerView mWidgetsView;
266 @Thunk WidgetsModel mWidgetsModel;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700267
Winson Chungf0ea4d32011-06-06 14:27:16 -0700268 private boolean mAutoAdvanceRunning = false;
Sunny Goyal594d76d2014-11-06 10:12:54 -0800269 private AppWidgetHostView mQsb;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800270
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800271 private Bundle mSavedState;
Winson Chung4a2afa32012-07-19 14:53:05 -0700272 // We set the state in both onCreate and then onNewIntent in some cases, which causes both
273 // scroll issues (because the workspace may not have been measured yet) and extra work.
274 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
275 private State mOnResumeState = State.NONE;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800276
277 private SpannableStringBuilder mDefaultKeySsb = null;
278
Adam Cohen091440a2015-03-18 14:16:05 -0700279 @Thunk boolean mWorkspaceLoading = true;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400280
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800281 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800282 private boolean mRestoring;
283 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700284 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800285
Michael Jurka1e2f4652013-07-08 18:03:46 -0700286 private ArrayList<Runnable> mBindOnResumeCallbacks = new ArrayList<Runnable>();
Michael Jurka7607c2f2013-04-03 14:33:19 -0700287 private ArrayList<Runnable> mOnResumeCallbacks = new ArrayList<Runnable>();
288
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800289 private Bundle mSavedInstanceState;
290
Joe Onorato9c1289c2009-08-17 11:03:03 -0400291 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800292 private IconCache mIconCache;
Adam Cohen091440a2015-03-18 14:16:05 -0700293 @Thunk boolean mUserPresent = true;
Adam Cohend113e0c2010-11-11 10:48:05 -0800294 private boolean mVisible = false;
Adam Cohened307df2013-10-02 09:37:31 -0700295 private boolean mHasFocus = false;
Adam Cohend113e0c2010-11-11 10:48:05 -0800296 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400297
Sunny Goyal639e9062015-08-19 19:17:06 -0700298 private LauncherClings mClings;
299
Sunny Goyale2df0622015-04-24 11:27:00 -0700300 private static LongArrayMap<FolderInfo> sFolders = new LongArrayMap<>();
Romain Guycbb89e42009-06-08 15:52:54 -0700301
Adam Cohen61f560d2013-09-30 15:58:20 -0700302 private View.OnTouchListener mHapticFeedbackTouchListener;
303
Adam Cohended9f8d2010-11-03 13:25:16 -0700304 // Related to the auto-advancing of widgets
305 private final int ADVANCE_MSG = 1;
306 private final int mAdvanceInterval = 20000;
307 private final int mAdvanceStagger = 250;
308 private long mAutoAdvanceSentTime;
309 private long mAutoAdvanceTimeLeft = -1;
Adam Cohen091440a2015-03-18 14:16:05 -0700310 @Thunk HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
Adam Cohended9f8d2010-11-03 13:25:16 -0700311 new HashMap<View, AppWidgetProviderInfo>();
312
Winson Chung400438b2011-01-16 17:53:48 -0800313 // Determines how long to wait after a rotation before restoring the screen orientation to
314 // match the sensor state.
315 private final int mRestoreScreenOrientationDelay = 500;
316
Adam Cohen091440a2015-03-18 14:16:05 -0700317 @Thunk Drawable mWorkspaceBackgroundDrawable;
Craig Mautner360310b2012-10-26 15:13:08 -0700318
Adam Cohen1462de32012-07-24 22:34:36 -0700319 private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700320 private static final boolean DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE = false;
Adam Cohen1462de32012-07-24 22:34:36 -0700321
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700322 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
Adam Cohen4caf2982013-08-20 18:54:31 -0700323 static Date sDateStamp = new Date();
324 static DateFormat sDateFormat =
325 DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
326 static long sRunStart = System.currentTimeMillis();
327 static final String CORRUPTION_EMAIL_SENT_KEY = "corruptionEmailSent";
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700328
Winson Chung46353de2012-02-16 14:05:10 -0800329 // We only want to get the SharedPreferences once since it does an FS stat each time we get
330 // it from the context.
331 private SharedPreferences mSharedPrefs;
332
Winson Chungf0c6ae02012-03-21 16:10:31 -0700333 // Holds the page that we need to animate to, and the icon views that we need to animate up
334 // when we scroll to that page on resume.
Adam Cohen091440a2015-03-18 14:16:05 -0700335 @Thunk ImageView mFolderIconImageView;
Adam Cohen268c4752012-06-06 17:47:33 -0700336 private Bitmap mFolderIconBitmap;
337 private Canvas mFolderIconCanvas;
338 private Rect mRectForFolderAnimation = new Rect();
Adam Cohen2801caf2011-05-13 20:57:39 -0700339
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700340 private DeviceProfile mDeviceProfile;
341
Adam Cohen4b66bf32015-09-18 12:15:19 -0700342 private boolean mMoveToDefaultScreenFromNewIntent;
343
Winson Chung13eb5272015-05-11 16:30:13 -0700344 // This is set to the view that launched the activity that navigated the user away from
345 // launcher. Since there is no callback for when the activity has finished launching, enable
346 // the press state and keep this reference to reset the press state when we return to launcher.
Michael Jurkaddd62e92011-02-16 17:49:14 -0800347 private BubbleTextView mWaitingForResume;
348
Adam Cohen59400422014-03-05 18:07:04 -0800349 protected static HashMap<String, CustomAppWidget> sCustomAppWidgets =
350 new HashMap<String, CustomAppWidget>();
351
Adam Cohen59400422014-03-05 18:07:04 -0800352 static {
Sunny Goyald3060552015-06-25 19:35:49 -0700353 if (TestingUtils.ENABLE_CUSTOM_WIDGET_TEST) {
354 TestingUtils.addDummyWidget(sCustomAppWidgets);
Adam Cohen59400422014-03-05 18:07:04 -0800355 }
356 }
357
Adam Cohen091440a2015-03-18 14:16:05 -0700358 @Thunk Runnable mBuildLayersRunnable = new Runnable() {
Michael Jurkac1f5d262011-09-30 19:32:27 -0700359 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700360 if (mWorkspace != null) {
361 mWorkspace.buildPageHardwareLayers();
362 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700363 }
364 };
365
Adam Cohendb364c32014-05-20 14:23:40 -0700366 private static PendingAddArguments sPendingAddItem;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800367
Adam Cohen091440a2015-03-18 14:16:05 -0700368 @Thunk static class PendingAddArguments {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800369 int requestCode;
370 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700371 long container;
Adam Cohendcd297f2013-06-18 13:13:40 -0700372 long screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800373 int cellX;
374 int cellY;
Adam Cohendb364c32014-05-20 14:23:40 -0700375 int appWidgetId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800376 }
377
Daniel Sandlerff02d492013-08-05 02:12:05 -0400378 private Stats mStats;
Sunny Goyaldcbcc862014-08-12 15:58:36 -0700379 FocusIndicatorView mFocusHandler;
Sunny Goyal7779d622015-06-11 16:18:39 -0700380 private boolean mRotationEnabled = false;
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400381
382 @Thunk void setOrientation() {
383 if (mRotationEnabled) {
384 unlockScreenOrientation(true);
385 } else {
386 setRequestedOrientation(
387 ActivityInfo.SCREEN_ORIENTATION_NOSENSOR);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700388 }
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400389 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700390
Sunny Goyal7779d622015-06-11 16:18:39 -0700391 private Runnable mUpdateOrientationRunnable = new Runnable() {
392 public void run() {
393 setOrientation();
394 }
395 };
396
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800397 @Override
398 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700399 if (DEBUG_STRICT_MODE) {
400 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
401 .detectDiskReads()
402 .detectDiskWrites()
403 .detectNetwork() // or .detectAll() for all detectable problems
404 .penaltyLog()
405 .build());
406 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
407 .detectLeakedSqlLiteObjects()
408 .detectLeakedClosableObjects()
409 .penaltyLog()
410 .penaltyDeath()
411 .build());
412 }
413
Adam Cohen9211d422014-10-07 18:14:53 -0700414 if (mLauncherCallbacks != null) {
415 mLauncherCallbacks.preOnCreate();
416 }
417
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800418 super.onCreate(savedInstanceState);
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400419
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400420 LauncherAppState app = LauncherAppState.getInstance();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700421
Adam Cohen2e6da152015-05-06 11:42:25 -0700422 // Load configuration-specific DeviceProfile
Sunny Goyalc6205602015-05-21 20:46:33 -0700423 mDeviceProfile = getResources().getConfiguration().orientation
424 == Configuration.ORIENTATION_LANDSCAPE ?
Tony Wickham3a3517f2015-10-06 11:27:04 -0700425 app.getInvariantDeviceProfile().landscapeProfile
426 : app.getInvariantDeviceProfile().portraitProfile;
Sunny Goyalc6205602015-05-21 20:46:33 -0700427
Sunny Goyalf7258242015-10-19 16:59:07 -0700428 mSharedPrefs = Utilities.getPrefs(this);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700429 mIsSafeModeEnabled = getPackageManager().isSafeMode();
Joe Onorato0589f0f2010-02-08 13:44:00 -0800430 mModel = app.setLauncher(this);
431 mIconCache = app.getIconCache();
Adam Cohen2e6da152015-05-06 11:42:25 -0700432
Joe Onorato41a12d22009-10-31 18:30:00 -0400433 mDragController = new DragController(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800434 mInflater = getLayoutInflater();
Winson Chung006ee262015-08-03 14:40:11 -0700435 mStateTransitionAnimation = new LauncherStateTransitionAnimation(this);
Romain Guycbb89e42009-06-08 15:52:54 -0700436
Daniel Sandlerff02d492013-08-05 02:12:05 -0400437 mStats = new Stats(this);
438
Sunny Goyalffe83f12014-08-14 17:39:34 -0700439 mAppWidgetManager = AppWidgetManagerCompat.getInstance(this);
Adam Cohen53805212013-10-01 10:39:23 -0700440
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700441 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
442 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700443
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700444 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
445 // this also ensures that any synchronous binding below doesn't re-trigger another
446 // LauncherModel load.
447 mPaused = false;
448
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800449 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200450 android.os.Debug.startMethodTracing(
451 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800452 }
453
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800454 setContentView(R.layout.launcher);
Michael Jurka7267fa52013-09-26 15:29:57 -0700455
Tony Wickhameef44322015-10-20 13:24:36 -0700456 app.getInvariantDeviceProfile().landscapeProfile.setSearchBarHeight(getSearchBarHeight());
457 app.getInvariantDeviceProfile().portraitProfile.setSearchBarHeight(getSearchBarHeight());
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800458 setupViews();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700459 mDeviceProfile.layout(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800460
Joe Onorato7c312c12009-08-13 21:36:53 -0700461 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700462
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800463 mSavedState = savedInstanceState;
464 restoreState(mSavedState);
465
466 if (PROFILE_STARTUP) {
467 android.os.Debug.stopMethodTracing();
468 }
469
470 if (!mRestoring) {
Adam Cohendb78dc82014-06-19 14:50:51 -0700471 if (DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700472 // If the user leaves launcher, then we should just load items asynchronously when
473 // they return.
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700474 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Winson Chung4a2afa32012-07-19 14:53:05 -0700475 } else {
476 // We only load the page synchronously if the user rotates (or triggers a
477 // configuration change) while launcher is in the foreground
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700478 mModel.startLoader(mWorkspace.getRestorePage());
Winson Chung4a2afa32012-07-19 14:53:05 -0700479 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800480 }
481
482 // For handling default keys
483 mDefaultKeySsb = new SpannableStringBuilder();
484 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800485
486 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
487 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800488
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700489 mRotationEnabled = Utilities.isRotationAllowedForDevice(getApplicationContext());
490 // In case we are on a device with locked rotation, we should look at preferences to check
491 // if the user has specifically allowed rotation.
492 if (!mRotationEnabled) {
Rahul Chaturvedie863fed2015-06-15 14:09:42 -0400493 mRotationEnabled = Utilities.isAllowRotationPrefEnabled(getApplicationContext(), false);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700494 }
495
496 // On large interfaces, or on devices that a user has specifically enabled screen rotation,
497 // we want the screen to auto-rotate based on the current orientation
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400498 setOrientation();
Winson Chungaf40f202013-09-18 18:26:31 -0700499
Adam Cohen9211d422014-10-07 18:14:53 -0700500 if (mLauncherCallbacks != null) {
501 mLauncherCallbacks.onCreate(savedInstanceState);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700502 if (mLauncherCallbacks.hasLauncherOverlay()) {
503 ViewStub stub = (ViewStub) findViewById(R.id.launcher_overlay_stub);
Adam Cohena6d04922014-10-23 17:28:30 -0700504 mLauncherOverlayContainer = (InsettableFrameLayout) stub.inflate();
505 mLauncherOverlay = mLauncherCallbacks.setLauncherOverlayView(
506 mLauncherOverlayContainer, mLauncherOverlayCallbacks);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700507 mWorkspace.setLauncherOverlay(mLauncherOverlay);
508 }
Adam Cohen9211d422014-10-07 18:14:53 -0700509 }
Adam Cohenc3e12c72014-10-31 16:15:36 -0700510
511 if (shouldShowIntroScreen()) {
512 showIntroScreen();
513 } else {
514 showFirstRunActivity();
515 showFirstRunClings();
516 }
Adam Cohen9211d422014-10-07 18:14:53 -0700517 }
518
Sunny Goyal7779d622015-06-11 16:18:39 -0700519 @Override
520 public void onSettingsChanged(String settings, boolean value) {
521 if (Utilities.ALLOW_ROTATION_PREFERENCE_KEY.equals(settings)) {
522 mRotationEnabled = value;
523 if (!waitUntilResume(mUpdateOrientationRunnable, true)) {
524 mUpdateOrientationRunnable.run();
525 }
526 }
527 }
528
Adam Cohen9211d422014-10-07 18:14:53 -0700529 private LauncherCallbacks mLauncherCallbacks;
530
531 public void onPostCreate(Bundle savedInstanceState) {
532 super.onPostCreate(savedInstanceState);
533 if (mLauncherCallbacks != null) {
534 mLauncherCallbacks.onPostCreate(savedInstanceState);
535 }
536 }
537
538 public boolean setLauncherCallbacks(LauncherCallbacks callbacks) {
539 mLauncherCallbacks = callbacks;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700540 mLauncherCallbacks.setLauncherSearchCallback(new Launcher.LauncherSearchCallbacks() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700541 private boolean mWorkspaceImportanceStored = false;
542 private boolean mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700543 private int mWorkspaceImportanceForAccessibility =
544 View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
545 private int mHotseatImportanceForAccessibility = View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
546
547 @Override
548 public void onSearchOverlayOpened() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700549 if (mWorkspaceImportanceStored || mHotseatImportanceStored) {
Jun Mukai8af0cd82015-05-12 12:32:12 -0700550 return;
551 }
552 // The underlying workspace and hotseat are temporarily suppressed by the search
553 // overlay. So they sholudn't be accessible.
Jun Mukaie9819e62015-06-17 10:58:59 -0700554 if (mWorkspace != null) {
555 mWorkspaceImportanceForAccessibility =
556 mWorkspace.getImportantForAccessibility();
557 mWorkspace.setImportantForAccessibility(
558 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
559 mWorkspaceImportanceStored = true;
560 }
561 if (mHotseat != null) {
562 mHotseatImportanceForAccessibility = mHotseat.getImportantForAccessibility();
563 mHotseat.setImportantForAccessibility(
564 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
565 mHotseatImportanceStored = true;
566 }
Jun Mukai8af0cd82015-05-12 12:32:12 -0700567 }
568
569 @Override
570 public void onSearchOverlayClosed() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700571 if (mWorkspaceImportanceStored && mWorkspace != null) {
572 mWorkspace.setImportantForAccessibility(mWorkspaceImportanceForAccessibility);
573 }
574 if (mHotseatImportanceStored && mHotseat != null) {
575 mHotseat.setImportantForAccessibility(mHotseatImportanceForAccessibility);
576 }
577 mWorkspaceImportanceStored = false;
578 mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700579 }
580 });
Adam Cohen9211d422014-10-07 18:14:53 -0700581 return true;
Adam Cohenf9426d52012-06-04 17:26:21 -0700582 }
583
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700584 @Override
Adam Cohen9211d422014-10-07 18:14:53 -0700585 public void onLauncherProviderChange() {
586 if (mLauncherCallbacks != null) {
587 mLauncherCallbacks.onLauncherProviderChange();
588 }
589 }
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700590
Winson Chungef7f8742015-06-04 17:18:17 -0700591 /**
592 * Updates the bounds of all the overlays to match the new fixed bounds.
593 */
594 public void updateOverlayBounds(Rect newBounds) {
595 mAppsView.setSearchBarBounds(newBounds);
596 mWidgetsView.setSearchBarBounds(newBounds);
597 }
598
Adam Cohen9211d422014-10-07 18:14:53 -0700599 /** To be overridden by subclasses to hint to Launcher that we have custom content */
Winson Chung98ca0f72013-07-29 12:58:51 -0700600 protected boolean hasCustomContentToLeft() {
Adam Cohen9211d422014-10-07 18:14:53 -0700601 if (mLauncherCallbacks != null) {
602 return mLauncherCallbacks.hasCustomContentToLeft();
603 }
Winson Chung98ca0f72013-07-29 12:58:51 -0700604 return false;
605 }
606
Dave Hawkeya8881582013-09-17 15:55:33 -0600607 /**
Derek Prothrodadd9842014-01-17 13:43:50 -0500608 * To be overridden by subclasses to populate the custom content container and call
Dave Hawkeya8881582013-09-17 15:55:33 -0600609 * {@link #addToCustomContentPage}. This will only be invoked if
610 * {@link #hasCustomContentToLeft()} is {@code true}.
611 */
Derek Prothrodadd9842014-01-17 13:43:50 -0500612 protected void populateCustomContentContainer() {
Adam Cohen9211d422014-10-07 18:14:53 -0700613 if (mLauncherCallbacks != null) {
614 mLauncherCallbacks.populateCustomContentContainer();
615 }
Dave Hawkeya8881582013-09-17 15:55:33 -0600616 }
617
618 /**
619 * Invoked by subclasses to signal a change to the {@link #addCustomContentToLeft} value to
620 * ensure the custom content page is added or removed if necessary.
621 */
622 protected void invalidateHasCustomContentToLeft() {
Dave Hawkey3a733a72013-09-30 11:52:21 -0600623 if (mWorkspace == null || mWorkspace.getScreenOrder().isEmpty()) {
Dave Hawkeya8881582013-09-17 15:55:33 -0600624 // Not bound yet, wait for bindScreens to be called.
625 return;
626 }
627
628 if (!mWorkspace.hasCustomContent() && hasCustomContentToLeft()) {
629 // Create the custom content page and call the subclass to populate it.
Derek Prothrodadd9842014-01-17 13:43:50 -0500630 mWorkspace.createCustomContentContainer();
631 populateCustomContentContainer();
Dave Hawkeya8881582013-09-17 15:55:33 -0600632 } else if (mWorkspace.hasCustomContent() && !hasCustomContentToLeft()) {
633 mWorkspace.removeCustomContentPage();
634 }
635 }
636
Anton Hanssona2f665f2013-09-26 12:18:32 +0100637 public Stats getStats() {
638 return mStats;
639 }
640
Bjorn Bringertc459e522013-06-07 19:36:01 +0100641 public LayoutInflater getInflater() {
642 return mInflater;
643 }
644
Hyunyoung Song3f471442015-04-08 19:01:34 -0700645 public boolean isDraggingEnabled() {
Winson Chung36a62fe2012-05-06 18:04:42 -0700646 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
647 // that is subsequently removed from the workspace in startBinding().
Sunny Goyal639e9062015-08-19 19:17:06 -0700648 return !isWorkspaceLoading();
Winson Chung36a62fe2012-05-06 18:04:42 -0700649 }
650
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000651 public int getViewIdForItem(ItemInfo info) {
Sunny Goyald1a0e8b2015-08-27 17:45:46 -0700652 // aapt-generated IDs have the high byte nonzero; clamp to the range under that.
653 // This cast is safe as long as the id < 0x00FFFFFF
654 // Since we jail all the dynamically generated views, there should be no clashes
655 // with any other views.
656 return (int) info.id;
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000657 }
658
659 /**
Winson Chung557d6ed2011-07-08 15:34:52 -0700660 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
661 * a configuration step, this allows the proper animations to run after other transitions.
662 */
Adam Cohendb364c32014-05-20 14:23:40 -0700663 private long completeAdd(PendingAddArguments args) {
Adam Cohen83079e42014-09-19 17:43:08 -0700664 long screenId = args.screenId;
665 if (args.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
666 // When the screen id represents an actual screen (as opposed to a rank) we make sure
667 // that the drop page actually exists.
668 screenId = ensurePendingDropLayoutExists(args.screenId);
669 }
Adam Cohendb364c32014-05-20 14:23:40 -0700670
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800671 switch (args.requestCode) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800672 case REQUEST_CREATE_SHORTCUT:
Adam Cohendb364c32014-05-20 14:23:40 -0700673 completeAddShortcut(args.intent, args.container, screenId, args.cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -0700674 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700675 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800676 case REQUEST_CREATE_APPWIDGET:
Adam Cohendb364c32014-05-20 14:23:40 -0700677 completeAddAppWidget(args.appWidgetId, args.container, screenId, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700678 break;
Sunny Goyalff572272014-07-23 13:58:07 -0700679 case REQUEST_RECONFIGURE_APPWIDGET:
680 completeRestoreAppWidget(args.appWidgetId);
681 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800682 }
Michael Jurka27614d22012-04-02 06:40:22 -0700683 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
684 // if you turned the screen off and then back while in All Apps, Launcher would not
685 // return to the workspace. Clearing mAddInfo.container here fixes this issue
686 resetAddInfo();
Adam Cohendb364c32014-05-20 14:23:40 -0700687 return screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800688 }
689
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800690 private void handleActivityResult(
Michael Jurka8b805b12012-04-18 14:23:14 -0700691 final int requestCode, final int resultCode, final Intent data) {
Winson Chunge341d302013-08-16 14:31:00 -0700692 // Reset the startActivity waiting flag
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700693 setWaitingForResult(false);
Adam Cohendb364c32014-05-20 14:23:40 -0700694 final int pendingAddWidgetId = mPendingAddWidgetId;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800695 mPendingAddWidgetId = -1;
Winson Chunge341d302013-08-16 14:31:00 -0700696
Adam Cohenad4e15c2013-10-17 16:21:35 -0700697 Runnable exitSpringLoaded = new Runnable() {
698 @Override
699 public void run() {
700 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
701 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
702 }
703 };
704
Michael Jurka8b805b12012-04-18 14:23:14 -0700705 if (requestCode == REQUEST_BIND_APPWIDGET) {
Winsona1f79d32015-08-05 14:00:45 -0700706 // This is called only if the user did not previously have permissions to bind widgets
Adam Cohenad4e15c2013-10-17 16:21:35 -0700707 final int appWidgetId = data != null ?
Michael Jurka8b805b12012-04-18 14:23:14 -0700708 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
709 if (resultCode == RESULT_CANCELED) {
710 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
Adam Cohen689ff162014-05-08 17:27:56 -0700711 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700712 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
Michael Jurka8b805b12012-04-18 14:23:14 -0700713 } else if (resultCode == RESULT_OK) {
Sunny Goyale6b63a32015-01-16 16:14:29 -0800714 addAppWidgetImpl(appWidgetId, mPendingAddInfo, null,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700715 mPendingAddWidgetInfo, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
Winsona1f79d32015-08-05 14:00:45 -0700716
717 // When the user has granted permission to bind widgets, we should check to see if
718 // we can inflate the default search bar widget.
719 getOrCreateQsbBar();
Michael Jurka8b805b12012-04-18 14:23:14 -0700720 }
721 return;
Michael Jurka336fd4f2013-09-12 00:05:02 +0200722 } else if (requestCode == REQUEST_PICK_WALLPAPER) {
723 if (resultCode == RESULT_OK && mWorkspace.isInOverviewMode()) {
Tony Wickham6ed058c2015-09-09 18:21:49 -0700724 // User could have free-scrolled between pages before picking a wallpaper; make sure
725 // we move to the closest one now to avoid visual jump.
726 mWorkspace.setCurrentPage(mWorkspace.getPageNearestToCenterOfScreen());
Winson Chungdc61c4d2015-04-20 18:26:57 -0700727 showWorkspace(false);
Michael Jurka336fd4f2013-09-12 00:05:02 +0200728 }
729 return;
Michael Jurka8b805b12012-04-18 14:23:14 -0700730 }
Michael Jurka336fd4f2013-09-12 00:05:02 +0200731
Adam Cohened66b2b2012-01-23 17:28:51 -0800732 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
Sunny Goyal5c97f512015-05-19 16:03:28 -0700733 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700734
Adam Cohendb364c32014-05-20 14:23:40 -0700735 final boolean workspaceLocked = isWorkspaceLocked();
Adam Cohened66b2b2012-01-23 17:28:51 -0800736 // We have special handling for widgets
737 if (isWidgetDrop) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800738 final int appWidgetId;
739 int widgetId = data != null ? data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1)
740 : -1;
741 if (widgetId < 0) {
742 appWidgetId = pendingAddWidgetId;
743 } else {
744 appWidgetId = widgetId;
745 }
746
Adam Cohenad4e15c2013-10-17 16:21:35 -0700747 final int result;
Adam Cohenf0129b12013-11-04 17:57:36 -0800748 if (appWidgetId < 0 || resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700749 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not " +
750 "returned from the widget configuration activity.");
Adam Cohenad4e15c2013-10-17 16:21:35 -0700751 result = RESULT_CANCELED;
752 completeTwoStageWidgetDrop(result, appWidgetId);
Adam Cohendb364c32014-05-20 14:23:40 -0700753 final Runnable onComplete = new Runnable() {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700754 @Override
755 public void run() {
756 exitSpringLoadedDragModeDelayed(false, 0, null);
757 }
758 };
Adam Cohendb364c32014-05-20 14:23:40 -0700759 if (workspaceLocked) {
760 // No need to remove the empty screen if we're mid-binding, as the
761 // the bind will not add the empty screen.
762 mWorkspace.postDelayed(onComplete, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
763 } else {
764 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
765 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
766 }
Winson Chung5aaab772012-04-27 15:24:02 -0700767 } else {
Adam Cohendb364c32014-05-20 14:23:40 -0700768 if (!workspaceLocked) {
Adam Cohen83079e42014-09-19 17:43:08 -0700769 if (mPendingAddInfo.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
770 // When the screen id represents an actual screen (as opposed to a rank)
771 // we make sure that the drop page actually exists.
772 mPendingAddInfo.screenId =
773 ensurePendingDropLayoutExists(mPendingAddInfo.screenId);
774 }
Adam Cohendb364c32014-05-20 14:23:40 -0700775 final CellLayout dropLayout = mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
776
777 dropLayout.setDropPending(true);
778 final Runnable onComplete = new Runnable() {
779 @Override
780 public void run() {
781 completeTwoStageWidgetDrop(resultCode, appWidgetId);
782 dropLayout.setDropPending(false);
783 }
784 };
785 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
786 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
787 } else {
788 PendingAddArguments args = preparePendingAddArgs(requestCode, data, appWidgetId,
789 mPendingAddInfo);
790 sPendingAddItem = args;
791 }
Winson Chung5aaab772012-04-27 15:24:02 -0700792 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800793 return;
794 }
795
Sunny Goyalff572272014-07-23 13:58:07 -0700796 if (requestCode == REQUEST_RECONFIGURE_APPWIDGET) {
797 if (resultCode == RESULT_OK) {
798 // Update the widget view.
799 PendingAddArguments args = preparePendingAddArgs(requestCode, data,
800 pendingAddWidgetId, mPendingAddInfo);
801 if (workspaceLocked) {
802 sPendingAddItem = args;
803 } else {
804 completeAdd(args);
805 }
806 }
807 // Leave the widget in the pending state if the user canceled the configure.
808 return;
809 }
810
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800811 // The pattern used here is that a user PICKs a specific application,
812 // which, depending on the target, might need to CREATE the actual target.
Romain Guycbb89e42009-06-08 15:52:54 -0700813
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800814 // For example, the user would PICK_SHORTCUT for "Music playlist", and we
815 // launch over to the Music app to actually CREATE_SHORTCUT.
Winson Chungc7da5552011-08-10 15:28:45 -0700816 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
Adam Cohendb364c32014-05-20 14:23:40 -0700817 final PendingAddArguments args = preparePendingAddArgs(requestCode, data, -1,
818 mPendingAddInfo);
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800819 if (isWorkspaceLocked()) {
Adam Cohendb364c32014-05-20 14:23:40 -0700820 sPendingAddItem = args;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800821 } else {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700822 completeAdd(args);
Adam Cohendb364c32014-05-20 14:23:40 -0700823 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
824 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800825 }
Adam Cohen00074722013-10-11 17:46:09 -0700826 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen689ff162014-05-08 17:27:56 -0700827 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700828 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800829 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800830 mDragLayer.clearAnimatedView();
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800831
832 }
833
834 @Override
835 protected void onActivityResult(
836 final int requestCode, final int resultCode, final Intent data) {
837 handleActivityResult(requestCode, resultCode, data);
838 if (mLauncherCallbacks != null) {
839 mLauncherCallbacks.onActivityResult(requestCode, resultCode, data);
840 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800841 }
842
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600843 /** @Override for MNC */
Sunny Goyaldd2e6df2015-07-07 10:57:57 -0700844 public void onRequestPermissionsResult(int requestCode, String[] permissions,
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600845 int[] grantResults) {
Sunny Goyal28c6b962015-10-12 11:42:05 -0700846 if (requestCode == REQUEST_PERMISSION_CALL_PHONE && sPendingAddItem != null
847 && sPendingAddItem.requestCode == REQUEST_PERMISSION_CALL_PHONE) {
848 View v = null;
849 CellLayout layout = getCellLayout(sPendingAddItem.container, sPendingAddItem.screenId);
850 if (layout != null) {
851 v = layout.getChildAt(sPendingAddItem.cellX, sPendingAddItem.cellY);
852 }
853 Intent intent = sPendingAddItem.intent;
854 sPendingAddItem = null;
855 if (grantResults.length > 0
856 && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
857 startActivity(v, intent, null);
858 } else {
859 // TODO: Show a snack bar with link to settings
860 Toast.makeText(this, getString(R.string.msg_no_phone_permission,
861 getString(R.string.app_name)), Toast.LENGTH_SHORT).show();
862 }
863 }
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600864 if (mLauncherCallbacks != null) {
865 mLauncherCallbacks.onRequestPermissionsResult(requestCode, permissions,
866 grantResults);
867 }
868 }
869
Adam Cohendb364c32014-05-20 14:23:40 -0700870 private PendingAddArguments preparePendingAddArgs(int requestCode, Intent data, int
871 appWidgetId, ItemInfo info) {
872 PendingAddArguments args = new PendingAddArguments();
873 args.requestCode = requestCode;
874 args.intent = data;
875 args.container = info.container;
876 args.screenId = info.screenId;
877 args.cellX = info.cellX;
878 args.cellY = info.cellY;
879 args.appWidgetId = appWidgetId;
880 return args;
881 }
882
883 /**
884 * Check to see if a given screen id exists. If not, create it at the end, return the new id.
885 *
886 * @param screenId the screen id to check
887 * @return the new screen, or screenId if it exists
888 */
889 private long ensurePendingDropLayoutExists(long screenId) {
890 CellLayout dropLayout =
891 (CellLayout) mWorkspace.getScreenWithId(screenId);
892 if (dropLayout == null) {
893 // it's possible that the add screen was removed because it was
894 // empty and a re-bind occurred
895 mWorkspace.addExtraEmptyScreen();
896 return mWorkspace.commitExtraEmptyScreen();
897 } else {
898 return screenId;
899 }
900 }
901
Adam Cohen091440a2015-03-18 14:16:05 -0700902 @Thunk void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
Tony Wickhama501d492015-11-03 18:05:01 -0800903 CellLayout cellLayout = mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800904 Runnable onCompleteRunnable = null;
905 int animationType = 0;
906
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700907 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800908 if (resultCode == RESULT_OK) {
909 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
910 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700911 mPendingAddWidgetInfo);
912 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800913 onCompleteRunnable = new Runnable() {
914 @Override
915 public void run() {
916 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700917 mPendingAddInfo.screenId, layout, null);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700918 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
919 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
Adam Cohened66b2b2012-01-23 17:28:51 -0800920 }
921 };
922 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800923 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800924 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
Adam Cohened66b2b2012-01-23 17:28:51 -0800925 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700926 if (mDragLayer.getAnimatedView() != null) {
927 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
928 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
929 animationType, boundWidget, true);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700930 } else if (onCompleteRunnable != null) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700931 // The animated view may be null in the case of a rotation during widget configuration
932 onCompleteRunnable.run();
933 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800934 }
935
936 @Override
Michael Jurkacd496d72013-04-11 11:32:45 -0700937 protected void onStop() {
938 super.onStop();
939 FirstFrameAnimatorHelper.setIsVisible(false);
Adam Cohen9211d422014-10-07 18:14:53 -0700940
941 if (mLauncherCallbacks != null) {
942 mLauncherCallbacks.onStop();
943 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700944 }
945
946 @Override
947 protected void onStart() {
948 super.onStart();
949 FirstFrameAnimatorHelper.setIsVisible(true);
Adam Cohen9211d422014-10-07 18:14:53 -0700950
951 if (mLauncherCallbacks != null) {
952 mLauncherCallbacks.onStart();
953 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700954 }
955
956 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800957 protected void onResume() {
Michael Jurka447bf842013-05-15 14:52:15 +0200958 long startTime = 0;
959 if (DEBUG_RESUME_TIME) {
960 startTime = System.currentTimeMillis();
Daniel Sandler924b9932013-06-12 00:38:25 -0400961 Log.v(TAG, "Launcher.onResume()");
Michael Jurka447bf842013-05-15 14:52:15 +0200962 }
Adam Cohen9211d422014-10-07 18:14:53 -0700963
964 if (mLauncherCallbacks != null) {
965 mLauncherCallbacks.preOnResume();
966 }
967
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800968 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700969
Winson Chung4a2afa32012-07-19 14:53:05 -0700970 // Restore the previous launcher state
Winson Chung75cc8252015-04-10 10:19:58 -0700971 if (mOnResumeState == State.WORKSPACE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700972 showWorkspace(false);
Winson Chungb745afb2015-03-02 11:51:23 -0800973 } else if (mOnResumeState == State.APPS) {
Winson Chung13eb5272015-05-11 16:30:13 -0700974 boolean launchedFromApp = (mWaitingForResume != null);
Winson Chung4ac30062015-05-08 17:34:17 -0700975 // Don't update the predicted apps if the user is returning to launcher in the apps
Winson Chung13eb5272015-05-11 16:30:13 -0700976 // view after launching an app, as they may be depending on the UI to be static to
977 // switch to another app, otherwise, if it was
Winson Chung4ac30062015-05-08 17:34:17 -0700978 showAppsView(false /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -0700979 !launchedFromApp /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -0800980 } else if (mOnResumeState == State.WIDGETS) {
981 showWidgetsView(false, false);
Winson Chung4a2afa32012-07-19 14:53:05 -0700982 }
983 mOnResumeState = State.NONE;
984
Sunny Goyal4a6c6f32015-05-19 12:36:46 -0700985 // Background was set to gradient in onPause(), restore to transparent if in all apps.
Sunny Goyald70ad0d2015-05-26 17:20:07 -0700986 setWorkspaceBackground(mState == State.WORKSPACE ? WORKSPACE_BACKGROUND_GRADIENT
987 : WORKSPACE_BACKGROUND_TRANSPARENT);
Craig Mautner360310b2012-10-26 15:13:08 -0700988
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800989 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700990 if (mRestoring || mOnResumeNeedsLoad) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700991 setWorkspaceLoading(true);
Sunny Goyal22aa3812015-08-19 16:24:27 -0700992
993 // If we're starting binding all over again, clear any bind calls we'd postponed in
994 // the past (see waitUntilResume) -- we don't need them since we're starting binding
995 // from scratch again
996 mBindOnResumeCallbacks.clear();
997
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700998 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400999 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001000 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001001 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001002 if (mBindOnResumeCallbacks.size() > 0) {
Michael Jurkac402cd92013-05-20 15:49:32 +02001003 // We might have postponed some bind calls until onResume (see waitUntilResume) --
1004 // execute them here
1005 long startTimeCallbacks = 0;
1006 if (DEBUG_RESUME_TIME) {
1007 startTimeCallbacks = System.currentTimeMillis();
1008 }
1009
Michael Jurka1e2f4652013-07-08 18:03:46 -07001010 for (int i = 0; i < mBindOnResumeCallbacks.size(); i++) {
1011 mBindOnResumeCallbacks.get(i).run();
Michael Jurkac402cd92013-05-20 15:49:32 +02001012 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001013 mBindOnResumeCallbacks.clear();
Michael Jurkac402cd92013-05-20 15:49:32 +02001014 if (DEBUG_RESUME_TIME) {
1015 Log.d(TAG, "Time spent processing callbacks in onResume: " +
1016 (System.currentTimeMillis() - startTimeCallbacks));
1017 }
Michael Jurka447bf842013-05-15 14:52:15 +02001018 }
Michael Jurka54554252013-08-01 12:52:23 +02001019 if (mOnResumeCallbacks.size() > 0) {
1020 for (int i = 0; i < mOnResumeCallbacks.size(); i++) {
1021 mOnResumeCallbacks.get(i).run();
1022 }
1023 mOnResumeCallbacks.clear();
1024 }
Winson Chunge4e50662012-01-23 14:45:13 -08001025
1026 // Reset the pressed state of icons that were locked in the press state while activities
1027 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -08001028 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -08001029 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -08001030 mWaitingForResume.setStayPressed(false);
1031 }
Winson Chung82963d52013-10-09 11:20:57 -07001032
Adam Cohen06dff352012-06-01 17:17:08 -07001033 // It is possible that widgets can receive updates while launcher is not in the foreground.
1034 // Consequently, the widgets will be inflated in the orientation of the foreground activity
1035 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
1036 // orientation.
Sunny Goyal6bec75f2015-10-01 18:50:48 -07001037 if (!isWorkspaceLoading()) {
1038 getWorkspace().reinflateWidgetsIfNecessary();
1039 }
Sunny Goyal22235bc2015-04-03 09:23:43 -07001040 reinflateQSBIfNecessary();
Adam Cohenf9426d52012-06-04 17:26:21 -07001041
Michael Jurka447bf842013-05-15 14:52:15 +02001042 if (DEBUG_RESUME_TIME) {
1043 Log.d(TAG, "Time spent in onResume: " + (System.currentTimeMillis() - startTime));
1044 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001045
Adam Cohen4b66bf32015-09-18 12:15:19 -07001046 // We want to suppress callbacks about CustomContent being shown if we have just received
1047 // onNewIntent while the user was present within launcher. In that case, we post a call
1048 // to move the user to the main screen (which will occur after onResume). We don't want to
1049 // have onHide (from onPause), then onShow, then onHide again, which we get if we don't
1050 // suppress here.
1051 if (mWorkspace.getCustomContentCallbacks() != null
1052 && !mMoveToDefaultScreenFromNewIntent) {
Adam Cohen6fecd412013-10-02 17:41:50 -07001053 // If we are resuming and the custom content is the current page, we call onShow().
Adam Cohen4b66bf32015-09-18 12:15:19 -07001054 // It is also possible that onShow will instead be called slightly after first layout
Adam Cohen6fecd412013-10-02 17:41:50 -07001055 // if PagedView#setRestorePage was set to the custom content page in onCreate().
1056 if (mWorkspace.isOnOrMovingToCustomContent()) {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001057 mWorkspace.getCustomContentCallbacks().onShow(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001058 }
1059 }
Adam Cohen4b66bf32015-09-18 12:15:19 -07001060 mMoveToDefaultScreenFromNewIntent = false;
Winson Chungcd99cd32015-04-29 11:03:24 -07001061 updateInteraction(Workspace.State.NORMAL, mWorkspace.getState());
Adam Cohen53805212013-10-01 10:39:23 -07001062 mWorkspace.onResume();
Sunny Goyale755d462014-07-22 13:48:29 -07001063
Sunny Goyal756adbc2015-04-16 15:20:51 -07001064 if (!isWorkspaceLoading()) {
1065 // Process any items that were added while Launcher was away.
1066 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
1067 }
Adam Cohen9211d422014-10-07 18:14:53 -07001068
1069 if (mLauncherCallbacks != null) {
1070 mLauncherCallbacks.onResume();
1071 }
Adam Cohen06dff352012-06-01 17:17:08 -07001072 }
1073
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001074 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001075 protected void onPause() {
Winson Chung997a9232013-07-24 15:33:46 -07001076 // Ensure that items added to Launcher are queued until Launcher returns
1077 InstallShortcutReceiver.enableInstallQueue();
1078
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001079 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001080 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -08001081 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -07001082 mDragController.resetLastGestureUpTime();
Adam Cohen6fecd412013-10-02 17:41:50 -07001083
1084 // We call onHide() aggressively. The custom content callbacks should be able to
1085 // debounce excess onHide calls.
1086 if (mWorkspace.getCustomContentCallbacks() != null) {
1087 mWorkspace.getCustomContentCallbacks().onHide();
1088 }
Romain Guycbb89e42009-06-08 15:52:54 -07001089
Adam Cohen9211d422014-10-07 18:14:53 -07001090 if (mLauncherCallbacks != null) {
1091 mLauncherCallbacks.onPause();
Adam Cohenbffe7452013-07-22 18:21:45 -07001092 }
Adam Cohenbffe7452013-07-22 18:21:45 -07001093 }
1094
1095 public interface CustomContentCallbacks {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001096 // Custom content is completely shown. {@code fromResume} indicates whether this was caused
1097 // by a onResume or by scrolling otherwise.
1098 public void onShow(boolean fromResume);
Adam Cohenbffe7452013-07-22 18:21:45 -07001099
1100 // Custom content is completely hidden
1101 public void onHide();
Adam Cohenc36fa5c2013-08-29 11:54:42 -07001102
1103 // Custom content scroll progress changed. From 0 (not showing) to 1 (fully showing).
1104 public void onScrollProgressChanged(float progress);
Jan-Willem Maarse2ff91c42014-07-10 15:58:12 -07001105
1106 // Indicates whether the user is allowed to scroll away from the custom content.
1107 boolean isScrollingAllowed();
Adam Cohenbffe7452013-07-22 18:21:45 -07001108 }
1109
Adam Cohenc2d6e892014-10-16 09:49:24 -07001110 public interface LauncherOverlay {
1111
1112 /**
1113 * Touch interaction leading to overscroll has begun
1114 */
1115 public void onScrollInteractionBegin();
1116
1117 /**
1118 * Touch interaction related to overscroll has ended
1119 */
1120 public void onScrollInteractionEnd();
1121
1122 /**
1123 * Scroll progress, between 0 and 100, when the user scrolls beyond the leftmost
1124 * screen (or in the case of RTL, the rightmost screen).
1125 */
1126 public void onScrollChange(int progress, boolean rtl);
1127
1128 /**
1129 * Screen has stopped scrolling
1130 */
1131 public void onScrollSettled();
1132
1133 /**
1134 * This method can be called by the Launcher in order to force the LauncherOverlay
1135 * to exit fully immersive mode.
1136 */
1137 public void forceExitFullImmersion();
1138 }
1139
Jun Mukai8af0cd82015-05-12 12:32:12 -07001140 public interface LauncherSearchCallbacks {
1141 /**
1142 * Called when the search overlay is shown.
1143 */
1144 public void onSearchOverlayOpened();
1145
1146 /**
1147 * Called when the search overlay is dismissed.
1148 */
1149 public void onSearchOverlayClosed();
1150 }
1151
Adam Cohenc2d6e892014-10-16 09:49:24 -07001152 public interface LauncherOverlayCallbacks {
1153 /**
1154 * This method indicates whether a call to {@link #enterFullImmersion()} will succeed,
1155 * however it doesn't modify any state within the launcher.
1156 */
1157 public boolean canEnterFullImmersion();
1158
1159 /**
1160 * Should be called to tell Launcher that the LauncherOverlay will take over interaction,
1161 * eg. by occupying the full screen and handling all touch events.
1162 *
1163 * @return true if Launcher allows the LauncherOverlay to become fully immersive. In this
1164 * case, Launcher will modify any necessary state and assumes the overlay is
1165 * handling all interaction. If false, the LauncherOverlay should cancel any
1166 *
1167 */
1168 public boolean enterFullImmersion();
1169
1170 /**
1171 * Must be called when exiting fully immersive mode. Indicates to Launcher that it has
1172 * full control over UI and state.
1173 */
1174 public void exitFullImmersion();
1175 }
1176
1177 class LauncherOverlayCallbacksImpl implements LauncherOverlayCallbacks {
1178
1179 @Override
1180 public boolean canEnterFullImmersion() {
1181 return mState == State.WORKSPACE;
1182 }
1183
1184 @Override
1185 public boolean enterFullImmersion() {
1186 if (mState == State.WORKSPACE) {
1187 // When fully immersed, disregard any touches which fall through.
1188 mDragLayer.setBlockTouch(true);
1189 return true;
1190 }
1191 return false;
1192 }
1193
1194 @Override
1195 public void exitFullImmersion() {
1196 mDragLayer.setBlockTouch(false);
1197 }
1198 }
1199
Jorim Jaggid017f882014-01-14 17:08:48 -08001200 protected boolean hasSettings() {
Adam Cohen9211d422014-10-07 18:14:53 -07001201 if (mLauncherCallbacks != null) {
1202 return mLauncherCallbacks.hasSettings();
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07001203 } else {
1204 // On devices with a locked orientation, we will at least have the allow rotation
1205 // setting.
1206 return !Utilities.isRotationAllowedForDevice(this);
Adam Cohen9211d422014-10-07 18:14:53 -07001207 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001208 }
1209
Adam Cohen9211d422014-10-07 18:14:53 -07001210 public void addToCustomContentPage(View customContent,
Adam Cohen53805212013-10-01 10:39:23 -07001211 CustomContentCallbacks callbacks, String description) {
1212 mWorkspace.addToCustomContentPage(customContent, callbacks, description);
Adam Cohen66a01fd2013-06-11 12:48:00 -07001213 }
1214
Adam Cohenedb40762013-07-18 16:45:45 -07001215 // The custom content needs to offset its content to account for the QSB
1216 public int getTopOffsetForCustomContent() {
1217 return mWorkspace.getPaddingTop();
1218 }
1219
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001220 @Override
1221 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001222 // Flag the loader to stop early before switching
Adam Cohen1a85c582014-09-30 09:48:49 -07001223 if (mModel.isCurrentCallbacks(this)) {
1224 mModel.stopLoader();
1225 }
Hyunyoung Song3f471442015-04-08 19:01:34 -07001226 //TODO(hyunyoungs): stop the widgets loader when there is a rotation.
1227
Romain Guy13c2e7b2010-03-10 19:45:00 -08001228 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001229 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001230
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001231 // We can't hide the IME if it was forced open. So don't bother
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001232 @Override
1233 public void onWindowFocusChanged(boolean hasFocus) {
1234 super.onWindowFocusChanged(hasFocus);
Adam Cohened307df2013-10-02 09:37:31 -07001235 mHasFocus = hasFocus;
Adam Cohen9211d422014-10-07 18:14:53 -07001236
1237 if (mLauncherCallbacks != null) {
1238 mLauncherCallbacks.onWindowFocusChanged(hasFocus);
1239 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001240 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001241
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001242 private boolean acceptFilter() {
1243 final InputMethodManager inputManager = (InputMethodManager)
1244 getSystemService(Context.INPUT_METHOD_SERVICE);
1245 return !inputManager.isFullscreenMode();
1246 }
1247
1248 @Override
1249 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -07001250 final int uniChar = event.getUnicodeChar();
1251 final boolean handled = super.onKeyDown(keyCode, event);
1252 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
1253 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001254 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
1255 keyCode, event);
1256 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001257 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -07001258 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -07001259 // showSearchDialog()
1260 // If there are multiple keystrokes before the search dialog takes focus,
1261 // onSearchRequested() will be called for every keystroke,
1262 // but it is idempotent, so it's fine.
1263 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001264 }
1265 }
1266
Joe Onorato8a9625e2010-01-28 15:55:35 -08001267 // Eat the long press event so the keyboard doesn't come up.
1268 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
1269 return true;
1270 }
1271
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001272 return handled;
1273 }
1274
Winson46163472015-09-22 17:31:56 -07001275 @Override
1276 public boolean onKeyUp(int keyCode, KeyEvent event) {
1277 if (keyCode == KeyEvent.KEYCODE_MENU) {
1278 // Ignore the menu key if we are currently dragging or are on the custom content screen
1279 if (!isOnCustomContent() && !mDragController.isDragging()) {
1280 // Close any open folders
1281 closeFolder();
1282
1283 // Stop resizing any widgets
1284 mWorkspace.exitWidgetResizeMode();
1285
1286 // Show the overview mode if we are on the workspace
1287 if (mState == State.WORKSPACE && !mWorkspace.isInOverviewMode() &&
1288 !mWorkspace.isSwitchingState()) {
1289 mOverviewPanel.requestFocus();
Winsone9f27272015-10-13 10:47:51 -07001290 showOverviewMode(true, true /* requestButtonFocus */);
Winson46163472015-09-22 17:31:56 -07001291 }
1292 }
1293 return true;
1294 }
1295 return super.onKeyUp(keyCode, event);
1296 }
1297
Karl Rosaen138a0412009-04-23 19:00:21 -07001298 private String getTypedText() {
1299 return mDefaultKeySsb.toString();
1300 }
1301
1302 private void clearTypedText() {
1303 mDefaultKeySsb.clear();
1304 mDefaultKeySsb.clearSpans();
1305 Selection.setSelection(mDefaultKeySsb, 0);
1306 }
1307
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001308 /**
Michael Jurka883f55b2010-10-21 15:47:14 -07001309 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
1310 * State
1311 */
1312 private static State intToState(int stateOrdinal) {
1313 State state = State.WORKSPACE;
1314 final State[] stateValues = State.values();
1315 for (int i = 0; i < stateValues.length; i++) {
1316 if (stateValues[i].ordinal() == stateOrdinal) {
1317 state = stateValues[i];
1318 break;
1319 }
1320 }
1321 return state;
1322 }
1323
1324 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001325 * Restores the previous state, if it exists.
1326 *
1327 * @param savedState The previous state.
1328 */
1329 private void restoreState(Bundle savedState) {
1330 if (savedState == null) {
1331 return;
1332 }
1333
Michael Jurka883f55b2010-10-21 15:47:14 -07001334 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungb745afb2015-03-02 11:51:23 -08001335 if (state == State.APPS || state == State.WIDGETS) {
1336 mOnResumeState = state;
Joe Onorato3a8820b2009-11-10 15:06:42 -08001337 }
1338
Adam Cohen21cd0022013-10-09 18:57:02 -07001339 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN,
1340 PagedView.INVALID_RESTORE_PAGE);
1341 if (currentScreen != PagedView.INVALID_RESTORE_PAGE) {
Winson Chung8c87cd82013-07-23 16:20:10 -07001342 mWorkspace.setRestorePage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001343 }
1344
Winson Chung3d503fb2011-07-13 17:25:49 -07001345 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
Adam Cohendcd297f2013-06-18 13:13:40 -07001346 final long pendingAddScreen = savedState.getLong(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001347
Winson Chung3d503fb2011-07-13 17:25:49 -07001348 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
1349 mPendingAddInfo.container = pendingAddContainer;
Adam Cohendcd297f2013-06-18 13:13:40 -07001350 mPendingAddInfo.screenId = pendingAddScreen;
Winson Chung3d503fb2011-07-13 17:25:49 -07001351 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
1352 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001353 mPendingAddInfo.spanX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_X);
1354 mPendingAddInfo.spanY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y);
Adam Cohenb823ae42015-03-27 18:07:52 -07001355 AppWidgetProviderInfo info = savedState.getParcelable(
1356 RUNTIME_STATE_PENDING_ADD_WIDGET_INFO);
Sunny Goyalf044bb12015-05-12 13:30:07 -07001357 mPendingAddWidgetInfo = info == null ?
1358 null : LauncherAppWidgetProviderInfo.fromProviderInfo(this, info);
1359
Adam Cohen4637b5a2013-11-04 18:21:24 -08001360 mPendingAddWidgetId = savedState.getInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID);
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001361 setWaitingForResult(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001362 mRestoring = true;
1363 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001364 }
1365
1366 /**
1367 * Finds all the views we need and configure them properly.
1368 */
1369 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -07001370 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -04001371
Craig Mautner360310b2012-10-26 15:13:08 -07001372 mLauncherView = findViewById(R.id.launcher);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001373 mFocusHandler = (FocusIndicatorView) findViewById(R.id.focus_indicator);
Winson Chung4c98d922011-05-31 16:50:48 -07001374 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
1375 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Anjali Koppalf5d29132014-02-28 13:33:27 -08001376 mWorkspace.setPageSwitchListener(this);
Winson Chunga6945242014-01-08 14:04:34 -08001377 mPageIndicators = mDragLayer.findViewById(R.id.page_indicator);
Craig Mautner360310b2012-10-26 15:13:08 -07001378
John Spurlock77e1f472013-09-11 10:09:51 -04001379 mLauncherView.setSystemUiVisibility(
1380 View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
Craig Mautner360310b2012-10-26 15:13:08 -07001381 mWorkspaceBackgroundDrawable = getResources().getDrawable(R.drawable.workspace_bg);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001382
Winson Chung4c98d922011-05-31 16:50:48 -07001383 // Setup the drag layer
1384 mDragLayer.setup(this, dragController);
1385
Winson Chung3d503fb2011-07-13 17:25:49 -07001386 // Setup the hotseat
1387 mHotseat = (Hotseat) findViewById(R.id.hotseat);
1388 if (mHotseat != null) {
Winson Chung11a1a532013-09-13 11:14:45 -07001389 mHotseat.setOnLongClickListener(this);
Winson Chung3d503fb2011-07-13 17:25:49 -07001390 }
1391
Winsone9f27272015-10-13 10:47:51 -07001392 // Setup the overview panel
1393 setupOverviewPanel();
Adam Cohenf358a4b2013-07-23 16:47:31 -07001394
Winson Chung4c98d922011-05-31 16:50:48 -07001395 // Setup the workspace
1396 mWorkspace.setHapticFeedbackEnabled(false);
1397 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -07001398 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -07001399 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001400
Winson Chungf0ea4d32011-06-06 14:27:16 -07001401 // Get the search/delete bar
Adam Cohen24ce0b32014-01-14 16:18:14 -08001402 mSearchDropTargetBar = (SearchDropTargetBar)
1403 mDragLayer.findViewById(R.id.search_drop_target_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001404
Winson Chungef7f8742015-06-04 17:18:17 -07001405 // Setup Apps and Widgets
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001406 mAppsView = (AllAppsContainerView) findViewById(R.id.apps_view);
Hyunyoung Song3f471442015-04-08 19:01:34 -07001407 mWidgetsView = (WidgetsContainerView) findViewById(R.id.widgets_view);
Winson Chungef7f8742015-06-04 17:18:17 -07001408 if (mLauncherCallbacks != null && mLauncherCallbacks.getAllAppsSearchBarController() != null) {
1409 mAppsView.setSearchBarController(mLauncherCallbacks.getAllAppsSearchBarController());
1410 } else {
1411 mAppsView.setSearchBarController(mAppsView.newDefaultAppSearchController());
1412 }
Craig Mautner360310b2012-10-26 15:13:08 -07001413
Winson Chung3d503fb2011-07-13 17:25:49 -07001414 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -07001415 dragController.setDragScoller(mWorkspace);
1416 dragController.setScrollView(mDragLayer);
1417 dragController.setMoveTarget(mWorkspace);
1418 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -07001419 if (mSearchDropTargetBar != null) {
1420 mSearchDropTargetBar.setup(this, dragController);
Adam Cohenb0df1b02015-03-18 22:21:40 -07001421 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Michael Jurkae0f5a612011-02-07 16:45:41 -08001422 }
Daniel Sandler924b9932013-06-12 00:38:25 -04001423
Sunny Goyald3060552015-06-25 19:35:49 -07001424 if (TestingUtils.MEMORY_DUMP_ENABLED) {
1425 TestingUtils.addWeightWatcher(this);
Daniel Sandler924b9932013-06-12 00:38:25 -04001426 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001427 }
1428
Winsone9f27272015-10-13 10:47:51 -07001429 private void setupOverviewPanel() {
1430 mOverviewPanel = (ViewGroup) findViewById(R.id.overview_panel);
1431
1432 // Long-clicking buttons in the overview panel does the same thing as clicking them.
1433 OnLongClickListener performClickOnLongClick = new OnLongClickListener() {
1434 @Override
1435 public boolean onLongClick(View v) {
1436 return v.performClick();
1437 }
1438 };
1439
1440 // Bind wallpaper button actions
1441 View wallpaperButton = findViewById(R.id.wallpaper_button);
1442 wallpaperButton.setOnClickListener(new OnClickListener() {
1443 @Override
1444 public void onClick(View view) {
1445 if (!mWorkspace.isSwitchingState()) {
1446 onClickWallpaperPicker(view);
1447 }
1448 }
1449 });
1450 wallpaperButton.setOnLongClickListener(performClickOnLongClick);
1451 wallpaperButton.setOnTouchListener(getHapticFeedbackTouchListener());
1452
1453 // Bind widget button actions
1454 mWidgetsButton = findViewById(R.id.widget_button);
1455 mWidgetsButton.setOnClickListener(new OnClickListener() {
1456 @Override
1457 public void onClick(View view) {
1458 if (!mWorkspace.isSwitchingState()) {
1459 onClickAddWidgetButton(view);
1460 }
1461 }
1462 });
1463 mWidgetsButton.setOnLongClickListener(performClickOnLongClick);
1464 mWidgetsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1465
1466 // Bind settings actions
1467 View settingsButton = findViewById(R.id.settings_button);
1468 boolean hasSettings = hasSettings();
1469 if (hasSettings) {
1470 settingsButton.setOnClickListener(new OnClickListener() {
1471 @Override
1472 public void onClick(View view) {
1473 if (!mWorkspace.isSwitchingState()) {
1474 onClickSettingsButton(view);
1475 }
1476 }
1477 });
1478 settingsButton.setOnLongClickListener(performClickOnLongClick);
1479 settingsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1480 } else {
1481 settingsButton.setVisibility(View.GONE);
1482 }
1483
1484 mOverviewPanel.setAlpha(0f);
1485 }
1486
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001487 /**
Anjali Koppal5ad44842014-03-10 20:34:39 -07001488 * Sets the all apps button. This method is called from {@link Hotseat}.
1489 */
1490 public void setAllAppsButton(View allAppsButton) {
1491 mAllAppsButton = allAppsButton;
1492 }
1493
1494 public View getAllAppsButton() {
1495 return mAllAppsButton;
1496 }
1497
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001498 public View getWidgetsButton() {
1499 return mWidgetsButton;
1500 }
1501
Anjali Koppal5ad44842014-03-10 20:34:39 -07001502 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001503 * Creates a view representing a shortcut.
1504 *
1505 * @param info The data structure describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001506 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001507 View createShortcut(ShortcutInfo info) {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001508 return createShortcut((ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001509 }
1510
1511 /**
1512 * Creates a view representing a shortcut inflated from the specified resource.
1513 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001514 * @param parent The group the shortcut belongs to.
1515 * @param info The data structure describing the shortcut.
1516 *
1517 * @return A View inflated from layoutResId.
1518 */
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001519 public View createShortcut(ViewGroup parent, ShortcutInfo info) {
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001520 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(R.layout.app_icon,
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001521 parent, false);
1522 favorite.applyFromShortcutInfo(info, mIconCache);
1523 favorite.setCompoundDrawablePadding(mDeviceProfile.iconDrawablePaddingPx);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001524 favorite.setOnClickListener(this);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001525 favorite.setOnFocusChangeListener(mFocusHandler);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001526 return favorite;
1527 }
1528
1529 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001530 * Add a shortcut to the workspace.
1531 *
1532 * @param data The intent describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001533 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001534 private void completeAddShortcut(Intent data, long container, long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07001535 int cellY) {
1536 int[] cellXY = mTmpAddItemCellCoordinates;
1537 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohendcd297f2013-06-18 13:13:40 -07001538 CellLayout layout = getCellLayout(container, screenId);
Romain Guycbb89e42009-06-08 15:52:54 -07001539
Sunny Goyal5c97f512015-05-19 16:03:28 -07001540 ShortcutInfo info = InstallShortcutReceiver.fromShortcutIntent(this, data);
Adam Cohend9198822011-11-22 16:42:47 -08001541 if (info == null) {
1542 return;
1543 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001544 final View view = createShortcut(info);
1545
Sunny Goyal5c97f512015-05-19 16:03:28 -07001546 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001547 // First we check if we already know the exact location where we want to add this item.
1548 if (cellX >= 0 && cellY >= 0) {
1549 cellXY[0] = cellX;
1550 cellXY[1] = cellY;
1551 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001552
1553 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001554 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001555 true, null,null)) {
1556 return;
1557 }
1558 DragObject dragObject = new DragObject();
1559 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001560 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1561 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001562 return;
1563 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001564 } else if (touchXY != null) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08001565 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001566 int[] result = layout.findNearestVacantArea(touchXY[0], touchXY[1], 1, 1, cellXY);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001567 foundCellSpan = (result != null);
1568 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001569 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001570 }
1571
1572 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001573 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001574 return;
1575 }
1576
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001577 LauncherModel.addItemToDatabase(this, info, container, screenId, cellXY[0], cellXY[1]);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001578
1579 if (!mRestoring) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001580 mWorkspace.addInScreen(view, container, screenId, cellXY[0], cellXY[1], 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07001581 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001582 }
1583 }
1584
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001585 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001586 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001587 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001588 * @param appWidgetId The app widget id
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001589 */
Adam Cohen091440a2015-03-18 14:16:05 -07001590 @Thunk void completeAddAppWidget(int appWidgetId, long container, long screenId,
Adam Cohen59400422014-03-05 18:07:04 -08001591 AppWidgetHostView hostView, LauncherAppWidgetProviderInfo appWidgetInfo) {
1592
1593 ItemInfo info = mPendingAddInfo;
Adam Cohened66b2b2012-01-23 17:28:51 -08001594 if (appWidgetInfo == null) {
Adam Cohen59400422014-03-05 18:07:04 -08001595 appWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(this,
1596 mAppWidgetManager.getAppWidgetInfo(appWidgetId));
Adam Cohened66b2b2012-01-23 17:28:51 -08001597 }
Romain Guycbb89e42009-06-08 15:52:54 -07001598
Adam Cohen59400422014-03-05 18:07:04 -08001599 if (appWidgetInfo.isCustomWidget) {
1600 appWidgetId = LauncherAppWidgetInfo.CUSTOM_WIDGET_ID;
Michael Jurkaa63c4522010-08-19 13:52:27 -07001601 }
1602
Adam Cohen59400422014-03-05 18:07:04 -08001603 LauncherAppWidgetInfo launcherInfo;
1604 launcherInfo = new LauncherAppWidgetInfo(appWidgetId, appWidgetInfo.provider);
1605 launcherInfo.spanX = info.spanX;
1606 launcherInfo.spanY = info.spanY;
1607 launcherInfo.minSpanX = info.minSpanX;
1608 launcherInfo.minSpanY = info.minSpanY;
Sunny Goyalffe83f12014-08-14 17:39:34 -07001609 launcherInfo.user = mAppWidgetManager.getUser(appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001610
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001611 LauncherModel.addItemToDatabase(this, launcherInfo,
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001612 container, screenId, info.cellX, info.cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001613
1614 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001615 if (hostView == null) {
1616 // Perform actual inflation because we're live
Adam Cohen59400422014-03-05 18:07:04 -08001617 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId,
1618 appWidgetInfo);
Adam Cohened66b2b2012-01-23 17:28:51 -08001619 } else {
1620 // The AppWidgetHostView has already been inflated and instantiated
1621 launcherInfo.hostView = hostView;
1622 }
Adam Cohend41fbf52012-02-16 23:53:59 -08001623 launcherInfo.hostView.setVisibility(View.VISIBLE);
Sunny Goyal25c2e3e2015-10-28 23:28:21 -07001624 addAppWidgetToWorkspace(launcherInfo, appWidgetInfo, isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001625 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001626 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001627 }
Romain Guycbb89e42009-06-08 15:52:54 -07001628
Sunny Goyal25c2e3e2015-10-28 23:28:21 -07001629 private void addAppWidgetToWorkspace(LauncherAppWidgetInfo item,
1630 LauncherAppWidgetProviderInfo appWidgetInfo, boolean insert) {
1631 item.hostView.setTag(item);
1632 item.onBindAppWidget(this);
1633
1634 item.hostView.setFocusable(true);
1635 item.hostView.setOnFocusChangeListener(mFocusHandler);
1636
1637 mWorkspace.addInScreen(item.hostView, item.container, item.screenId,
1638 item.cellX, item.cellY, item.spanX, item.spanY, insert);
1639
1640 if (!item.isCustomWidget()) {
1641 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
1642 }
1643 }
1644
Adam Cohended9f8d2010-11-03 13:25:16 -07001645 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1646 @Override
1647 public void onReceive(Context context, Intent intent) {
1648 final String action = intent.getAction();
1649 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1650 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001651 mDragLayer.clearAllResizeFrames();
Winson Chungb745afb2015-03-02 11:51:23 -08001652 updateAutoAdvanceState();
Winson Chung337cd9d2011-03-30 10:39:30 -07001653
Winson Chungc100e8e2011-08-09 16:02:43 -07001654 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001655 // processing a multi-step drop
Hyunyoung Song3f471442015-04-08 19:01:34 -07001656 if (mAppsView != null && mWidgetsView != null &&
Winson Chungb745afb2015-03-02 11:51:23 -08001657 mPendingAddInfo.container == ItemInfo.NO_ID) {
Winson5c6bdbb2015-09-03 11:36:19 -07001658 if (!showWorkspace(false)) {
1659 // If we are already on the workspace, then manually reset all apps
1660 mAppsView.reset();
1661 }
Winson Chung785d2eb2011-04-14 16:08:02 -07001662 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001663 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1664 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08001665 updateAutoAdvanceState();
Dan Sandlerd5024042014-01-09 15:01:33 -05001666 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.DELETE_DATABASE.equals(action)) {
1667 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001668 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001669 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE);
1670 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.MIGRATE_DATABASE.equals(action)) {
1671 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001672 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001673 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE
1674 | LauncherModel.LOADER_FLAG_MIGRATE_SHORTCUTS);
Adam Cohended9f8d2010-11-03 13:25:16 -07001675 }
1676 }
1677 };
1678
1679 @Override
1680 public void onAttachedToWindow() {
1681 super.onAttachedToWindow();
1682
1683 // Listen for broadcasts related to user-presence
1684 final IntentFilter filter = new IntentFilter();
1685 filter.addAction(Intent.ACTION_SCREEN_OFF);
1686 filter.addAction(Intent.ACTION_USER_PRESENT);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001687 // For handling managed profiles
Dan Sandlerd5024042014-01-09 15:01:33 -05001688 if (ENABLE_DEBUG_INTENTS) {
1689 filter.addAction(DebugIntents.DELETE_DATABASE);
1690 filter.addAction(DebugIntents.MIGRATE_DATABASE);
1691 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001692 registerReceiver(mReceiver, filter);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001693 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Adam Cohend113e0c2010-11-11 10:48:05 -08001694 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001695 mVisible = true;
1696 }
1697
1698 @Override
1699 public void onDetachedFromWindow() {
1700 super.onDetachedFromWindow();
1701 mVisible = false;
1702
Adam Cohend113e0c2010-11-11 10:48:05 -08001703 if (mAttached) {
1704 unregisterReceiver(mReceiver);
1705 mAttached = false;
1706 }
Winson Chungb745afb2015-03-02 11:51:23 -08001707 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001708 }
1709
1710 public void onWindowVisibilityChanged(int visibility) {
1711 mVisible = visibility == View.VISIBLE;
Winson Chungb745afb2015-03-02 11:51:23 -08001712 updateAutoAdvanceState();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001713 // The following code used to be in onResume, but it turns out onResume is called when
1714 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1715 // is a more appropriate event to handle
1716 if (mVisible) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001717 if (!mWorkspaceLoading) {
1718 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001719 // We want to let Launcher draw itself at least once before we force it to build
1720 // layers on all the workspace pages, so that transitioning to Launcher from other
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001721 // apps is nice and speedy.
1722 observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001723 private boolean mStarted = false;
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001724 public void onDraw() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001725 if (mStarted) return;
1726 mStarted = true;
Michael Jurka6ee21d22012-02-21 18:20:27 -08001727 // We delay the layer building a bit in order to give
1728 // other message processing a time to run. In particular
1729 // this avoids a delay in hiding the IME if it was
1730 // currently shown, because doing that may involve
1731 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001732 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurkadf96add2013-04-03 16:25:02 -07001733 final ViewTreeObserver.OnDrawListener listener = this;
1734 mWorkspace.post(new Runnable() {
Tony Wickhama0628cc2015-10-14 15:23:04 -07001735 public void run() {
1736 if (mWorkspace != null &&
1737 mWorkspace.getViewTreeObserver() != null) {
1738 mWorkspace.getViewTreeObserver().
1739 removeOnDrawListener(listener);
Michael Jurkadf96add2013-04-03 16:25:02 -07001740 }
Tony Wickhama0628cc2015-10-14 15:23:04 -07001741 }
1742 });
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001743 return;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001744 }
1745 });
1746 }
1747 clearTypedText();
1748 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001749 }
1750
Adam Cohen091440a2015-03-18 14:16:05 -07001751 @Thunk void sendAdvanceMessage(long delay) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001752 mHandler.removeMessages(ADVANCE_MSG);
1753 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1754 mHandler.sendMessageDelayed(msg, delay);
1755 mAutoAdvanceSentTime = System.currentTimeMillis();
1756 }
1757
Adam Cohen091440a2015-03-18 14:16:05 -07001758 @Thunk void updateAutoAdvanceState() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001759 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1760 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1761 mAutoAdvanceRunning = autoAdvanceRunning;
1762 if (autoAdvanceRunning) {
1763 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1764 sendAdvanceMessage(delay);
1765 } else {
1766 if (!mWidgetsToAdvance.isEmpty()) {
1767 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1768 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1769 }
1770 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001771 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001772 }
1773 }
1774 }
1775
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001776 @Thunk final Handler mHandler = new Handler(new Handler.Callback() {
1777
Adam Cohended9f8d2010-11-03 13:25:16 -07001778 @Override
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001779 public boolean handleMessage(Message msg) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001780 if (msg.what == ADVANCE_MSG) {
1781 int i = 0;
1782 for (View key: mWidgetsToAdvance.keySet()) {
1783 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1784 final int delay = mAdvanceStagger * i;
1785 if (v instanceof Advanceable) {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001786 mHandler.postDelayed(new Runnable() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001787 public void run() {
1788 ((Advanceable) v).advance();
1789 }
1790 }, delay);
1791 }
1792 i++;
1793 }
1794 sendAdvanceMessage(mAdvanceInterval);
1795 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001796 return true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001797 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001798 });
Adam Cohended9f8d2010-11-03 13:25:16 -07001799
Winsonc0b52fe2015-09-09 16:38:15 -07001800 private void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001801 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001802 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1803 if (v instanceof Advanceable) {
1804 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001805 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Winson Chungb745afb2015-03-02 11:51:23 -08001806 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001807 }
1808 }
1809
Winsonc0b52fe2015-09-09 16:38:15 -07001810 private void removeWidgetToAutoAdvance(View hostView) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001811 if (mWidgetsToAdvance.containsKey(hostView)) {
1812 mWidgetsToAdvance.remove(hostView);
Winson Chungb745afb2015-03-02 11:51:23 -08001813 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001814 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001815 }
1816
Hyunyoung Song3f471442015-04-08 19:01:34 -07001817 public void showOutOfSpaceMessage(boolean isHotseatLayout) {
Winson Chung93eef082012-03-23 15:59:27 -07001818 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1819 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001820 }
1821
Winson Chunga6945242014-01-08 14:04:34 -08001822 public DragLayer getDragLayer() {
1823 return mDragLayer;
1824 }
1825
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001826 public AllAppsContainerView getAppsView() {
Winson Chungb745afb2015-03-02 11:51:23 -08001827 return mAppsView;
1828 }
1829
Hyunyoung Song3f471442015-04-08 19:01:34 -07001830 public WidgetsContainerView getWidgetsView() {
1831 return mWidgetsView;
Winson Chungb745afb2015-03-02 11:51:23 -08001832 }
1833
Winson Chunga6945242014-01-08 14:04:34 -08001834 public Workspace getWorkspace() {
1835 return mWorkspace;
1836 }
1837
1838 public Hotseat getHotseat() {
1839 return mHotseat;
1840 }
1841
Jorim Jaggid017f882014-01-14 17:08:48 -08001842 public ViewGroup getOverviewPanel() {
Winson Chunga6945242014-01-08 14:04:34 -08001843 return mOverviewPanel;
1844 }
1845
Winson Chung006ee262015-08-03 14:40:11 -07001846 public SearchDropTargetBar getSearchDropTargetBar() {
Winson Chunga6945242014-01-08 14:04:34 -08001847 return mSearchDropTargetBar;
1848 }
1849
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001850 public LauncherAppWidgetHost getAppWidgetHost() {
1851 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001852 }
Romain Guycbb89e42009-06-08 15:52:54 -07001853
Winson Chunga9abd0e2010-10-27 17:18:37 -07001854 public LauncherModel getModel() {
1855 return mModel;
1856 }
1857
Winson Chunga6945242014-01-08 14:04:34 -08001858 protected SharedPreferences getSharedPrefs() {
1859 return mSharedPrefs;
1860 }
1861
Adam Cohen2e6da152015-05-06 11:42:25 -07001862 public DeviceProfile getDeviceProfile() {
1863 return mDeviceProfile;
1864 }
1865
Bjorn Bringertc459e522013-06-07 19:36:01 +01001866 public void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001867 getWindow().closeAllPanels();
1868
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001869 // Whatever we were doing is hereby canceled.
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001870 setWaitingForResult(false);
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001871 }
1872
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001873 @Override
1874 protected void onNewIntent(Intent intent) {
Michael Jurka447bf842013-05-15 14:52:15 +02001875 long startTime = 0;
1876 if (DEBUG_RESUME_TIME) {
1877 startTime = System.currentTimeMillis();
1878 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001879 super.onNewIntent(intent);
1880
1881 // Close the menu
Winson15f8b172015-08-19 11:02:39 -07001882 Folder openFolder = mWorkspace.getOpenFolder();
1883 boolean alreadyOnHome = mHasFocus && ((intent.getFlags() &
1884 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1885 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
1886 boolean isActionMain = Intent.ACTION_MAIN.equals(intent.getAction());
1887 if (isActionMain) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001888 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001889 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001890
Adam Cohen6fecd412013-10-02 17:41:50 -07001891 if (mWorkspace == null) {
1892 // Can be cases where mWorkspace is null, this prevents a NPE
1893 return;
1894 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001895 // In all these cases, only animate if we're already on home
1896 mWorkspace.exitWidgetResizeMode();
Adam Cohen9211d422014-10-07 18:14:53 -07001897
Sunny Goyal935fca12015-10-13 10:19:01 -07001898 closeFolder(alreadyOnHome);
Adam Cohen6fecd412013-10-02 17:41:50 -07001899 exitSpringLoadedDragMode();
1900
1901 // If we are already on home, then just animate back to the workspace,
1902 // otherwise, just wait until onResume to set the state back to Workspace
1903 if (alreadyOnHome) {
Adam Cohened307df2013-10-02 09:37:31 -07001904 showWorkspace(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001905 } else {
1906 mOnResumeState = State.WORKSPACE;
1907 }
1908
1909 final View v = getWindow().peekDecorView();
1910 if (v != null && v.getWindowToken() != null) {
Tonyc17390962015-10-25 17:39:37 -07001911 InputMethodManager imm = (InputMethodManager) getSystemService(
Adam Cohen6fecd412013-10-02 17:41:50 -07001912 INPUT_METHOD_SERVICE);
1913 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1914 }
1915
Winson Chungb745afb2015-03-02 11:51:23 -08001916 // Reset the apps view
1917 if (!alreadyOnHome && mAppsView != null) {
1918 mAppsView.scrollToTop();
1919 }
1920
Hyunyoung Song3f471442015-04-08 19:01:34 -07001921 // Reset the widgets view
1922 if (!alreadyOnHome && mWidgetsView != null) {
1923 mWidgetsView.scrollToTop();
Adam Cohen6fecd412013-10-02 17:41:50 -07001924 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001925
Adam Cohen9211d422014-10-07 18:14:53 -07001926 if (mLauncherCallbacks != null) {
1927 mLauncherCallbacks.onHomeIntent();
1928 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001929 }
Adam Cohened307df2013-10-02 09:37:31 -07001930
Adam Cohen9211d422014-10-07 18:14:53 -07001931 if (mLauncherCallbacks != null) {
1932 mLauncherCallbacks.onNewIntent(intent);
1933 }
Winson15f8b172015-08-19 11:02:39 -07001934
1935 // Defer moving to the default screen until after we callback to the LauncherCallbacks
1936 // as slow logic in the callbacks eat into the time the scroller expects for the snapToPage
1937 // animation.
1938 if (isActionMain) {
Ivan Lee667d6882015-09-03 10:16:07 -06001939 boolean moveToDefaultScreen = mLauncherCallbacks != null ?
1940 mLauncherCallbacks.shouldMoveToDefaultScreenOnHomeIntent() : true;
Winson15f8b172015-08-19 11:02:39 -07001941 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
1942 openFolder == null && moveToDefaultScreen) {
Adam Cohen4b66bf32015-09-18 12:15:19 -07001943
1944 // We use this flag to suppress noisy callbacks above custom content state
1945 // from onResume.
1946 mMoveToDefaultScreenFromNewIntent = true;
Winson15f8b172015-08-19 11:02:39 -07001947 mWorkspace.post(new Runnable() {
1948 @Override
1949 public void run() {
Tonyc17390962015-10-25 17:39:37 -07001950 if (mWorkspace != null) {
1951 mWorkspace.moveToDefaultScreen(true);
1952 }
Winson15f8b172015-08-19 11:02:39 -07001953 }
1954 });
1955 }
1956 }
1957
1958 if (DEBUG_RESUME_TIME) {
1959 Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime));
1960 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001961 }
1962
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001963 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001964 public void onRestoreInstanceState(Bundle state) {
1965 super.onRestoreInstanceState(state);
1966 for (int page: mSynchronouslyBoundPages) {
1967 mWorkspace.restoreInstanceStateForChild(page);
1968 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001969 }
1970
1971 @Override
1972 protected void onSaveInstanceState(Bundle outState) {
Adam Cohen21cd0022013-10-09 18:57:02 -07001973 if (mWorkspace.getChildCount() > 0) {
Winson Chung9b9fb962013-11-15 15:39:34 -08001974 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN,
1975 mWorkspace.getCurrentPageOffsetFromCustomContent());
Adam Cohen21cd0022013-10-09 18:57:02 -07001976 }
Adam Cohen95bb8002011-07-03 23:40:28 -07001977 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001978
Michael Jurka883f55b2010-10-21 15:47:14 -07001979 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001980 // We close any open folder since it will not be re-opened, and we need to make sure
1981 // this state is reflected.
Sunny Goyal935fca12015-10-13 10:19:01 -07001982 closeFolder(false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001983
Adam Cohendcd297f2013-06-18 13:13:40 -07001984 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screenId > -1 &&
Winson Chung3d503fb2011-07-13 17:25:49 -07001985 mWaitingForResult) {
1986 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
Adam Cohendcd297f2013-06-18 13:13:40 -07001987 outState.putLong(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screenId);
Winson Chung3d503fb2011-07-13 17:25:49 -07001988 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1989 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001990 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_X, mPendingAddInfo.spanX);
1991 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y, mPendingAddInfo.spanY);
1992 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
Adam Cohen4637b5a2013-11-04 18:21:24 -08001993 outState.putInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID, mPendingAddWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001994 }
1995
Hyunyoung Song3f471442015-04-08 19:01:34 -07001996 // Save the current widgets tray?
1997 // TODO(hyunyoungs)
Adam Cohen9211d422014-10-07 18:14:53 -07001998
1999 if (mLauncherCallbacks != null) {
2000 mLauncherCallbacks.onSaveInstanceState(outState);
2001 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002002 }
2003
2004 @Override
2005 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002006 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07002007
Winson Chunge7a03942011-08-05 15:05:12 -07002008 // Remove all pending runnables
2009 mHandler.removeMessages(ADVANCE_MSG);
2010 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07002011 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07002012
Winson Chungcd2b0142011-06-08 16:02:26 -07002013 // Stop callbacks from LauncherModel
Daniel Sandlercc8befa2013-06-11 14:45:48 -04002014 LauncherAppState app = (LauncherAppState.getInstance());
Adam Cohen1a85c582014-09-30 09:48:49 -07002015
2016 // It's possible to receive onDestroy after a new Launcher activity has
2017 // been created. In this case, don't interfere with the new Launcher.
2018 if (mModel.isCurrentCallbacks(this)) {
2019 mModel.stopLoader();
2020 app.setLauncher(null);
2021 }
Winson Chungcd2b0142011-06-08 16:02:26 -07002022
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002023 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07002024 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002025 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002026 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002027 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002028 mAppWidgetHost = null;
2029
2030 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002031
2032 TextKeyListener.getInstance().release();
2033
Joe Onorato34a0e1b2009-12-14 17:44:51 -08002034 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002035
Adam Cohenaccf3bf2012-04-30 16:07:43 -07002036 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002037 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
Adam Cohend552dd92013-11-26 12:13:11 -08002038 mWorkspace.removeAllWorkspaceScreens();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002039 mWorkspace = null;
2040 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08002041
Michael Jurka2ecf9952012-06-18 12:52:28 -07002042 LauncherAnimUtils.onDestroyActivity();
Adam Cohen9211d422014-10-07 18:14:53 -07002043
2044 if (mLauncherCallbacks != null) {
2045 mLauncherCallbacks.onDestroy();
2046 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002047 }
2048
Adam Cohena9cf38f2011-05-02 15:36:58 -07002049 public DragController getDragController() {
2050 return mDragController;
2051 }
2052
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002053 @Override
2054 public void startActivityForResult(Intent intent, int requestCode) {
Adam Cohen173f7112015-03-27 15:14:00 -07002055 onStartForResult(requestCode);
2056 super.startActivityForResult(intent, requestCode);
2057 }
2058
2059 @Override
2060 public void startIntentSenderForResult (IntentSender intent, int requestCode,
2061 Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) {
2062 onStartForResult(requestCode);
2063 try {
2064 super.startIntentSenderForResult(intent, requestCode,
2065 fillInIntent, flagsMask, flagsValues, extraFlags, options);
2066 } catch (IntentSender.SendIntentException e) {
2067 throw new ActivityNotFoundException();
2068 }
2069 }
2070
2071 private void onStartForResult(int requestCode) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002072 if (requestCode >= 0) {
2073 setWaitingForResult(true);
2074 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002075 }
2076
Winson Chung70d72102011-08-12 11:24:35 -07002077 /**
2078 * Indicates that we want global search for this activity by setting the globalSearch
2079 * argument for {@link #startSearch} to true.
2080 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002081 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07002082 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002083 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002084
Karl Rosaen138a0412009-04-23 19:00:21 -07002085 if (initialQuery == null) {
2086 // Use any text typed in the launcher as the initial query
2087 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07002088 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002089 if (appSearchData == null) {
2090 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01002091 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002092 }
Winson Chungadf0c182012-08-23 14:59:07 -07002093 Rect sourceBounds = new Rect();
2094 if (mSearchDropTargetBar != null) {
2095 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
2096 }
Romain Guycbb89e42009-06-08 15:52:54 -07002097
Ian Parkinson047036e2014-09-01 15:40:53 +01002098 boolean clearTextImmediately = startSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002099 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002100 if (clearTextImmediately) {
2101 clearTypedText();
2102 }
Winson Chungcd99cd32015-04-29 11:03:24 -07002103
2104 // We need to show the workspace after starting the search
2105 showWorkspace(true);
Bjorn Bringertc459e522013-06-07 19:36:01 +01002106 }
2107
Ian Parkinson047036e2014-09-01 15:40:53 +01002108 /**
2109 * Start a text search.
2110 *
2111 * @return {@code true} if the search will start immediately, so any further keypresses
2112 * will be handled directly by the search UI. {@code false} if {@link Launcher} should continue
2113 * to buffer keypresses.
2114 */
2115 public boolean startSearch(String initialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002116 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Adam Cohen9211d422014-10-07 18:14:53 -07002117 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
2118 return mLauncherCallbacks.startSearch(initialQuery, selectInitialQuery, appSearchData,
2119 sourceBounds);
2120 }
2121
Michael Jurkaa33411c2012-06-14 16:18:21 -07002122 startGlobalSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002123 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002124 return false;
Michael Jurkaa33411c2012-06-14 16:18:21 -07002125 }
2126
2127 /**
2128 * Starts the global search activity. This code is a copied from SearchManager
2129 */
Bjorn Bringertc459e522013-06-07 19:36:01 +01002130 private void startGlobalSearch(String initialQuery,
Michael Jurkaa33411c2012-06-14 16:18:21 -07002131 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002132 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07002133 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2134 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
2135 if (globalSearchActivity == null) {
2136 Log.w(TAG, "No global search activity found.");
2137 return;
2138 }
2139 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
2140 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2141 intent.setComponent(globalSearchActivity);
2142 // Make sure that we have a Bundle to put source in
2143 if (appSearchData == null) {
2144 appSearchData = new Bundle();
2145 } else {
2146 appSearchData = new Bundle(appSearchData);
2147 }
Adam Cohen9211d422014-10-07 18:14:53 -07002148 // Set source to package name of app that starts global search if not set already.
Michael Jurkaa33411c2012-06-14 16:18:21 -07002149 if (!appSearchData.containsKey("source")) {
2150 appSearchData.putString("source", getPackageName());
2151 }
2152 intent.putExtra(SearchManager.APP_DATA, appSearchData);
2153 if (!TextUtils.isEmpty(initialQuery)) {
2154 intent.putExtra(SearchManager.QUERY, initialQuery);
2155 }
2156 if (selectInitialQuery) {
2157 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
2158 }
2159 intent.setSourceBounds(sourceBounds);
2160 try {
2161 startActivity(intent);
2162 } catch (ActivityNotFoundException ex) {
2163 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
2164 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002165 }
2166
Winson Chungbedf9232015-07-10 12:38:30 -07002167 public void startSearchFromAllApps(View v, Intent searchIntent, String searchQuery) {
2168 if (mLauncherCallbacks != null && mLauncherCallbacks.startSearchFromAllApps(searchQuery)) {
2169 return;
2170 }
2171
2172 // If not handled, then just start the provided search intent
2173 startActivitySafely(v, searchIntent, null);
2174 }
2175
Yura4f93ec62014-02-04 14:15:21 +00002176 public boolean isOnCustomContent() {
2177 return mWorkspace.isOnOrMovingToCustomContent();
2178 }
2179
Winson Chung70d72102011-08-12 11:24:35 -07002180 @Override
Winson Chung70d72102011-08-12 11:24:35 -07002181 public boolean onPrepareOptionsMenu(Menu menu) {
2182 super.onPrepareOptionsMenu(menu);
Adam Cohen9211d422014-10-07 18:14:53 -07002183 if (mLauncherCallbacks != null) {
2184 return mLauncherCallbacks.onPrepareOptionsMenu(menu);
2185 }
Michael Jurkab94f3f82013-09-11 18:08:54 +02002186 return false;
Winson Chung70d72102011-08-12 11:24:35 -07002187 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002188
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002189 @Override
2190 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07002191 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07002192 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07002193 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002194 }
2195
Joe Onorato9c1289c2009-08-17 11:03:03 -04002196 public boolean isWorkspaceLocked() {
2197 return mWorkspaceLoading || mWaitingForResult;
2198 }
2199
Adam Cohen517a7f52014-03-01 12:12:59 -08002200 public boolean isWorkspaceLoading() {
2201 return mWorkspaceLoading;
2202 }
2203
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002204 private void setWorkspaceLoading(boolean value) {
2205 boolean isLocked = isWorkspaceLocked();
2206 mWorkspaceLoading = value;
2207 if (isLocked != isWorkspaceLocked()) {
2208 onWorkspaceLockedChanged();
2209 }
2210 }
2211
2212 private void setWaitingForResult(boolean value) {
2213 boolean isLocked = isWorkspaceLocked();
2214 mWaitingForResult = value;
2215 if (isLocked != isWorkspaceLocked()) {
2216 onWorkspaceLockedChanged();
2217 }
2218 }
2219
Adam Cohen9211d422014-10-07 18:14:53 -07002220 protected void onWorkspaceLockedChanged() {
2221 if (mLauncherCallbacks != null) {
2222 mLauncherCallbacks.onWorkspaceLockedChanged();
2223 }
2224 }
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002225
Michael Jurka0280c3b2010-09-17 15:00:07 -07002226 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07002227 mPendingAddInfo.container = ItemInfo.NO_ID;
Adam Cohendcd297f2013-06-18 13:13:40 -07002228 mPendingAddInfo.screenId = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002229 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
2230 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Sunny Goyal233ee962015-08-03 13:05:01 -07002231 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = 1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002232 mPendingAddInfo.dropPos = null;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002233 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07002234
Tony Wickhama0628cc2015-10-14 15:23:04 -07002235 void addAppWidgetFromDropImpl(final int appWidgetId, final ItemInfo info, final
Adam Cohen59400422014-03-05 18:07:04 -08002236 AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo) {
Tony Wickhama0628cc2015-10-14 15:23:04 -07002237 if (LOGD) {
2238 Log.d(TAG, "Adding widget from drop");
2239 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07002240 addAppWidgetImpl(appWidgetId, info, boundWidget, appWidgetInfo, 0);
2241 }
2242
Sunny Goyale6b63a32015-01-16 16:14:29 -08002243 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
Adam Cohen59400422014-03-05 18:07:04 -08002244 final AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo,
2245 int delay) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002246 if (appWidgetInfo.configure != null) {
2247 mPendingAddWidgetInfo = appWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -08002248 mPendingAddWidgetId = appWidgetId;
Michael Jurkaaf442092010-06-10 17:01:57 -07002249
Bjorn Bringert7984c942009-12-09 15:38:25 +00002250 // Launch over to configure widget, if needed
Sunny Goyalffe83f12014-08-14 17:39:34 -07002251 mAppWidgetManager.startConfigActivity(appWidgetInfo, appWidgetId, this,
2252 mAppWidgetHost, REQUEST_CREATE_APPWIDGET);
2253
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002254 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00002255 // Otherwise just add it
Adam Cohenad4e15c2013-10-17 16:21:35 -07002256 Runnable onComplete = new Runnable() {
2257 @Override
2258 public void run() {
2259 // Exit spring loaded mode if necessary after adding the widget
2260 exitSpringLoadedDragModeDelayed(true, EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT,
2261 null);
2262 }
2263 };
Adam Cohendcd297f2013-06-18 13:13:40 -07002264 completeAddAppWidget(appWidgetId, info.container, info.screenId, boundWidget,
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002265 appWidgetInfo);
Adam Cohen689ff162014-05-08 17:27:56 -07002266 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, delay, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002267 }
2268 }
Romain Guycbb89e42009-06-08 15:52:54 -07002269
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002270 protected void moveToCustomContentScreen(boolean animate) {
Sandeep Siddharthaf2b47f12013-09-26 19:49:27 -07002271 // Close any folders that may be open.
2272 closeFolder();
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002273 mWorkspace.moveToCustomContentScreen(animate);
2274 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002275
2276 public void addPendingItem(PendingAddItemInfo info, long container, long screenId,
2277 int[] cell, int spanX, int spanY) {
2278 switch (info.itemType) {
2279 case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET:
2280 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
2281 int span[] = new int[2];
2282 span[0] = spanX;
2283 span[1] = spanY;
2284 addAppWidgetFromDrop((PendingAddWidgetInfo) info,
2285 container, screenId, cell, span);
2286 break;
2287 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
2288 processShortcutFromDrop(info.componentName, container, screenId, cell);
2289 break;
2290 default:
2291 throw new IllegalStateException("Unknown item type: " + info.itemType);
2292 }
2293 }
2294
Adam Cohenfbba09b2011-07-18 21:43:05 -07002295 /**
2296 * Process a shortcut drop.
2297 *
2298 * @param componentName The name of the component
Adam Cohendcd297f2013-06-18 13:13:40 -07002299 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002300 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002301 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002302 private void processShortcutFromDrop(ComponentName componentName, long container, long screenId,
2303 int[] cell) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002304 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002305 mPendingAddInfo.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002306 mPendingAddInfo.screenId = screenId;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002307 mPendingAddInfo.dropPos = null;
Adam Cohenfbba09b2011-07-18 21:43:05 -07002308
2309 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002310 mPendingAddInfo.cellX = cell[0];
2311 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002312 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002313
2314 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
2315 createShortcutIntent.setComponent(componentName);
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002316 Utilities.startActivityForResultSafely(this, createShortcutIntent, REQUEST_CREATE_SHORTCUT);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002317 }
2318
Adam Cohenfbba09b2011-07-18 21:43:05 -07002319 /**
2320 * Process a widget drop.
2321 *
2322 * @param info The PendingAppWidgetInfo of the widget being added.
Adam Cohendcd297f2013-06-18 13:13:40 -07002323 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002324 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002325 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002326 private void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, long screenId,
2327 int[] cell, int[] span) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07002328 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002329 mPendingAddInfo.container = info.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002330 mPendingAddInfo.screenId = info.screenId = screenId;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002331 mPendingAddInfo.dropPos = null;
Adam Cohend41fbf52012-02-16 23:53:59 -08002332 mPendingAddInfo.minSpanX = info.minSpanX;
2333 mPendingAddInfo.minSpanY = info.minSpanY;
2334
Adam Cohenfbba09b2011-07-18 21:43:05 -07002335 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002336 mPendingAddInfo.cellX = cell[0];
2337 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002338 }
Adam Cohend41fbf52012-02-16 23:53:59 -08002339 if (span != null) {
2340 mPendingAddInfo.spanX = span[0];
2341 mPendingAddInfo.spanY = span[1];
2342 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002343
Adam Cohened66b2b2012-01-23 17:28:51 -08002344 AppWidgetHostView hostView = info.boundWidget;
2345 int appWidgetId;
2346 if (hostView != null) {
Tony Wickhama0628cc2015-10-14 15:23:04 -07002347 // In the case where we've prebound the widget, we remove it from the DragLayer
2348 if (LOGD) {
2349 Log.d(TAG, "Removing widget view from drag layer and setting boundWidget to null");
2350 }
2351 getDragLayer().removeView(hostView);
2352
Adam Cohened66b2b2012-01-23 17:28:51 -08002353 appWidgetId = hostView.getAppWidgetId();
Tony Wickhama0628cc2015-10-14 15:23:04 -07002354 addAppWidgetFromDropImpl(appWidgetId, info, hostView, info.info);
Sunny Goyal5b9ebca2015-06-01 18:37:32 -07002355
2356 // Clear the boundWidget so that it doesn't get destroyed.
2357 info.boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -08002358 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002359 // In this case, we either need to start an activity to get permission to bind
2360 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08002361 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07002362 Bundle options = info.bindOptions;
2363
Sunny Goyalffe83f12014-08-14 17:39:34 -07002364 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
2365 appWidgetId, info.info, options);
Adam Cohendd70d662012-10-04 16:53:44 -07002366 if (success) {
Tony Wickhama0628cc2015-10-14 15:23:04 -07002367 addAppWidgetFromDropImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07002368 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002369 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07002370 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
2371 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
2372 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Sunny Goyalffe83f12014-08-14 17:39:34 -07002373 mAppWidgetManager.getUser(mPendingAddWidgetInfo)
2374 .addToIntent(intent, AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE);
Adam Cohendd70d662012-10-04 16:53:44 -07002375 // TODO: we need to make sure that this accounts for the options bundle.
2376 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07002377 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
2378 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002379 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002380 }
2381
Adam Cohendcd297f2013-06-18 13:13:40 -07002382 FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07002383 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07002384 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002385 folderInfo.title = getText(R.string.folder_name);
2386
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002387 // Update the model
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07002388 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId,
2389 cellX, cellY);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002390 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002391
2392 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07002393 FolderIcon newFolder =
2394 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07002395 mWorkspace.addInScreen(newFolder, container, screenId, cellX, cellY, 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07002396 isWorkspaceLocked());
Winson Chung5f8afe62013-08-12 16:19:28 -07002397 // Force measure the new folder icon
2398 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
2399 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07002400 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002401 }
Romain Guycbb89e42009-06-08 15:52:54 -07002402
Winsonc0b52fe2015-09-09 16:38:15 -07002403 /**
Winsonfa56b3f2015-09-14 12:01:13 -07002404 * Unbinds the view for the specified item, and removes the item and all its children.
2405 *
2406 * @param v the view being removed.
Winsonfa56b3f2015-09-14 12:01:13 -07002407 * @param itemInfo the {@link ItemInfo} for this view.
2408 * @param deleteFromDb whether or not to delete this item from the db.
Winsonc0b52fe2015-09-09 16:38:15 -07002409 */
Winson2949fb52015-09-24 09:56:11 -07002410 public boolean removeItem(View v, ItemInfo itemInfo, boolean deleteFromDb) {
Winsonc0b52fe2015-09-09 16:38:15 -07002411 if (itemInfo instanceof ShortcutInfo) {
Winsonfa56b3f2015-09-14 12:01:13 -07002412 // Remove the shortcut from the folder before removing it from launcher
Winson2949fb52015-09-24 09:56:11 -07002413 FolderInfo folderInfo = sFolders.get(itemInfo.container);
2414 if (folderInfo != null) {
2415 folderInfo.remove((ShortcutInfo) itemInfo);
Winsonfa56b3f2015-09-14 12:01:13 -07002416 } else {
2417 mWorkspace.removeWorkspaceItem(v);
2418 }
Winsonc0b52fe2015-09-09 16:38:15 -07002419 if (deleteFromDb) {
2420 LauncherModel.deleteItemFromDatabase(this, itemInfo);
2421 }
2422 } else if (itemInfo instanceof FolderInfo) {
2423 final FolderInfo folderInfo = (FolderInfo) itemInfo;
2424 unbindFolder(folderInfo);
2425 mWorkspace.removeWorkspaceItem(v);
2426 if (deleteFromDb) {
2427 LauncherModel.deleteFolderAndContentsFromDatabase(this, folderInfo);
2428 }
2429 } else if (itemInfo instanceof LauncherAppWidgetInfo) {
2430 final LauncherAppWidgetInfo widgetInfo = (LauncherAppWidgetInfo) itemInfo;
Winson44818e02015-10-02 11:25:46 -07002431 mWorkspace.removeWorkspaceItem(v);
Sunny Goyal56c73602015-09-25 12:55:01 -07002432 removeWidgetToAutoAdvance(widgetInfo.hostView);
2433 widgetInfo.hostView = null;
Winsonc0b52fe2015-09-09 16:38:15 -07002434 if (deleteFromDb) {
Sunny Goyal56c73602015-09-25 12:55:01 -07002435 deleteWidgetInfo(widgetInfo);
Winsonc0b52fe2015-09-09 16:38:15 -07002436 }
Sunny Goyal56c73602015-09-25 12:55:01 -07002437
Winsonc0b52fe2015-09-09 16:38:15 -07002438 } else {
2439 return false;
2440 }
2441 return true;
2442 }
2443
2444 /**
2445 * Unbinds any launcher references to the folder.
2446 */
2447 private void unbindFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002448 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002449 }
2450
Winsonc0b52fe2015-09-09 16:38:15 -07002451 /**
Sunny Goyal56c73602015-09-25 12:55:01 -07002452 * Deletes the widget info and the widget id.
Winsonc0b52fe2015-09-09 16:38:15 -07002453 */
Sunny Goyal56c73602015-09-25 12:55:01 -07002454 private void deleteWidgetInfo(final LauncherAppWidgetInfo widgetInfo) {
Winsonc0b52fe2015-09-09 16:38:15 -07002455 final LauncherAppWidgetHost appWidgetHost = getAppWidgetHost();
Sunny Goyal56c73602015-09-25 12:55:01 -07002456 if (appWidgetHost != null && !widgetInfo.isCustomWidget() && widgetInfo.isWidgetIdValid()) {
Winsonc0b52fe2015-09-09 16:38:15 -07002457 // Deleting an app widget ID is a void call but writes to disk before returning
2458 // to the caller...
2459 new AsyncTask<Void, Void, Void>() {
2460 public Void doInBackground(Void ... args) {
2461 appWidgetHost.deleteAppWidgetId(widgetInfo.appWidgetId);
2462 return null;
2463 }
Sunny Goyalf27cb0e2015-09-23 16:12:02 -07002464 }.executeOnExecutor(Utilities.THREAD_POOL_EXECUTOR);
Winsonc0b52fe2015-09-09 16:38:15 -07002465 }
Sunny Goyal56c73602015-09-25 12:55:01 -07002466 LauncherModel.deleteItemFromDatabase(this, widgetInfo);
Winsonc0b52fe2015-09-09 16:38:15 -07002467 }
2468
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002469 @Override
2470 public boolean dispatchKeyEvent(KeyEvent event) {
2471 if (event.getAction() == KeyEvent.ACTION_DOWN) {
2472 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002473 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07002474 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08002475 case KeyEvent.KEYCODE_VOLUME_DOWN:
Sunny Goyal4bbf4192014-11-11 12:23:59 -08002476 if (Utilities.isPropertyEnabled(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08002477 dumpState();
2478 return true;
2479 }
2480 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07002481 }
2482 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2483 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07002484 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002485 return true;
2486 }
2487 }
2488
2489 return super.dispatchKeyEvent(event);
2490 }
2491
Joe Onorato88ec0992009-11-19 13:16:06 -08002492 @Override
2493 public void onBackPressed() {
Adam Cohen9211d422014-10-07 18:14:53 -07002494 if (mLauncherCallbacks != null && mLauncherCallbacks.handleBackPressed()) {
2495 return;
2496 }
2497
Sunny Goyal45478022015-06-08 16:52:41 -07002498 if (mDragController.isDragging()) {
2499 mDragController.cancelDrag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08002500 return;
2501 }
2502
Winson Chungb745afb2015-03-02 11:51:23 -08002503 if (isAppsViewVisible()) {
2504 showWorkspace(true);
2505 } else if (isWidgetsViewVisible()) {
2506 showOverviewMode(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002507 } else if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002508 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002509 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07002510 Folder openFolder = mWorkspace.getOpenFolder();
2511 if (openFolder.isEditingName()) {
2512 openFolder.dismissEditingName();
2513 } else {
2514 closeFolder();
2515 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002516 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08002517 mWorkspace.exitWidgetResizeMode();
2518
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002519 // Back button is a no-op here, but give at least some feedback for the button press
2520 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07002521 }
Joe Onorato88ec0992009-11-19 13:16:06 -08002522 }
2523
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002524 /**
Sunny Goyal383c5072015-06-12 21:18:53 -07002525 * Re-listen when widget host is reset.
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002526 */
Sunny Goyal383c5072015-06-12 21:18:53 -07002527 @Override
2528 public void onAppWidgetHostReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08002529 if (mAppWidgetHost != null) {
2530 mAppWidgetHost.startListening();
2531 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002532 }
2533
2534 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002535 * Launches the intent referred by the clicked shortcut.
2536 *
2537 * @param v The view representing the clicked shortcut.
2538 */
2539 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002540 // Make sure that rogue clicks don't get through while allapps is launching, or after the
2541 // view has detached (it's possible for this to happen if the view is removed mid touch).
2542 if (v.getWindowToken() == null) {
2543 return;
2544 }
2545
Winson Chung9b0b2fe2012-02-24 13:03:34 -08002546 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002547 return;
2548 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07002549
Adam Cohen1697b792013-09-17 19:08:21 -07002550 if (v instanceof Workspace) {
2551 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002552 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002553 }
2554 return;
2555 }
2556
2557 if (v instanceof CellLayout) {
2558 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002559 showWorkspace(mWorkspace.indexOfChild(v), true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002560 }
2561 }
2562
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002563 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002564 if (tag instanceof ShortcutInfo) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002565 onClickAppShortcut(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002566 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002567 if (v instanceof FolderIcon) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002568 onClickFolderIcon(v);
Adam Cohena9cf38f2011-05-02 15:36:58 -07002569 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002570 } else if (v == mAllAppsButton) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002571 onClickAllAppsButton(v);
Sunny Goyal508da152014-08-14 10:53:27 -07002572 } else if (tag instanceof AppInfo) {
2573 startAppShortcutOrInfoActivity(v);
Sunny Goyalff572272014-07-23 13:58:07 -07002574 } else if (tag instanceof LauncherAppWidgetInfo) {
2575 if (v instanceof PendingAppWidgetHostView) {
2576 onClickPendingWidget((PendingAppWidgetHostView) v);
2577 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002578 }
2579 }
2580
Sunny Goyal70660032015-05-14 00:07:08 -07002581 @SuppressLint("ClickableViewAccessibility")
Michael Jurka0e260592010-06-30 17:07:39 -07002582 public boolean onTouch(View v, MotionEvent event) {
Michael Jurka0e260592010-06-30 17:07:39 -07002583 return false;
2584 }
2585
Michael Jurkaaf442092010-06-10 17:01:57 -07002586 /**
Sunny Goyalff572272014-07-23 13:58:07 -07002587 * Event handler for the app widget view which has not fully restored.
2588 */
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002589 public void onClickPendingWidget(final PendingAppWidgetHostView v) {
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002590 if (mIsSafeModeEnabled) {
2591 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2592 return;
2593 }
2594
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002595 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) v.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07002596 if (v.isReadyForClickSetup()) {
Sunny Goyalff572272014-07-23 13:58:07 -07002597 int widgetId = info.appWidgetId;
2598 AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
2599 if (appWidgetInfo != null) {
Adam Cohen59400422014-03-05 18:07:04 -08002600 mPendingAddWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(
2601 this, appWidgetInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07002602 mPendingAddInfo.copyFrom(info);
2603 mPendingAddWidgetId = widgetId;
2604
Sunny Goyalffe83f12014-08-14 17:39:34 -07002605 AppWidgetManagerCompat.getInstance(this).startConfigActivity(appWidgetInfo,
2606 info.appWidgetId, this, mAppWidgetHost, REQUEST_RECONFIGURE_APPWIDGET);
Sunny Goyalff572272014-07-23 13:58:07 -07002607 }
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002608 } else if (info.installProgress < 0) {
2609 // The install has not been queued
2610 final String packageName = info.providerName.getPackageName();
2611 showBrokenAppInstallDialog(packageName,
2612 new DialogInterface.OnClickListener() {
2613 public void onClick(DialogInterface dialog, int id) {
2614 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
2615 }
2616 });
2617 } else {
2618 // Download has started.
2619 final String packageName = info.providerName.getPackageName();
2620 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
Sunny Goyalff572272014-07-23 13:58:07 -07002621 }
2622 }
2623
2624 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002625 * Event handler for the "grid" button that appears on the home screen, which
2626 * enters all apps mode.
2627 *
2628 * @param v The view that was clicked.
2629 */
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002630 protected void onClickAllAppsButton(View v) {
2631 if (LOGD) Log.d(TAG, "onClickAllAppsButton");
Winson Chung76648c52015-07-10 14:33:23 -07002632 if (!isAppsViewVisible()) {
Winson Chung4ac30062015-05-08 17:34:17 -07002633 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07002634 true /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungbedf9232015-07-10 12:38:30 -07002635
2636 if (mLauncherCallbacks != null) {
2637 mLauncherCallbacks.onClickAllAppsButton(v);
2638 }
Winson Chung76648c52015-07-10 14:33:23 -07002639 }
2640 }
2641
2642 protected void onLongClickAllAppsButton(View v) {
2643 if (LOGD) Log.d(TAG, "onLongClickAllAppsButton");
2644 if (!isAppsViewVisible()) {
2645 showAppsView(true /* animated */, false /* resetListToTop */,
2646 true /* updatePredictedApps */, true /* focusSearchBar */);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002647 }
2648 }
2649
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002650 private void showBrokenAppInstallDialog(final String packageName,
2651 DialogInterface.OnClickListener onSearchClickListener) {
Sunny Goyale03b8122014-10-08 09:55:24 -07002652 new AlertDialog.Builder(this)
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002653 .setTitle(R.string.abandoned_promises_title)
2654 .setMessage(R.string.abandoned_promise_explanation)
2655 .setPositiveButton(R.string.abandoned_search, onSearchClickListener)
2656 .setNeutralButton(R.string.abandoned_clean_this,
2657 new DialogInterface.OnClickListener() {
2658 public void onClick(DialogInterface dialog, int id) {
2659 final UserHandleCompat user = UserHandleCompat.myUserHandle();
2660 mWorkspace.removeAbandonedPromise(packageName, user);
2661 }
2662 })
2663 .create().show();
2664 return;
2665 }
2666
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002667 /**
2668 * Event handler for an app shortcut click.
2669 *
2670 * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.
2671 */
Chris Wren40c5ed32014-06-24 18:24:23 -04002672 protected void onClickAppShortcut(final View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002673 if (LOGD) Log.d(TAG, "onClickAppShortcut");
2674 Object tag = v.getTag();
2675 if (!(tag instanceof ShortcutInfo)) {
2676 throw new IllegalArgumentException("Input must be a Shortcut");
2677 }
2678
2679 // Open shortcut
2680 final ShortcutInfo shortcut = (ShortcutInfo) tag;
Sunny Goyal1a745e82014-10-02 15:58:31 -07002681
2682 if (shortcut.isDisabled != 0) {
2683 int error = R.string.activity_not_available;
2684 if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_SAFEMODE) != 0) {
2685 error = R.string.safemode_shortcut_error;
2686 }
2687 Toast.makeText(this, error, Toast.LENGTH_SHORT).show();
2688 return;
2689 }
2690
Chris Wren40c5ed32014-06-24 18:24:23 -04002691 // Check for abandoned promise
Sunny Goyal34942622014-08-29 17:20:55 -07002692 if ((v instanceof BubbleTextView)
2693 && shortcut.isPromise()
2694 && !shortcut.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE)) {
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002695 showBrokenAppInstallDialog(
Sunny Goyal34942622014-08-29 17:20:55 -07002696 shortcut.getTargetComponent().getPackageName(),
Chris Wren40c5ed32014-06-24 18:24:23 -04002697 new DialogInterface.OnClickListener() {
2698 public void onClick(DialogInterface dialog, int id) {
Sunny Goyal508da152014-08-14 10:53:27 -07002699 startAppShortcutOrInfoActivity(v);
Chris Wren40c5ed32014-06-24 18:24:23 -04002700 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002701 });
Chris Wren40c5ed32014-06-24 18:24:23 -04002702 return;
2703 }
2704
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002705 // Start activities
Sunny Goyal508da152014-08-14 10:53:27 -07002706 startAppShortcutOrInfoActivity(v);
Adam Cohen9211d422014-10-07 18:14:53 -07002707
2708 if (mLauncherCallbacks != null) {
2709 mLauncherCallbacks.onClickAppShortcut(v);
2710 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002711 }
2712
Adam Cohen091440a2015-03-18 14:16:05 -07002713 @Thunk void startAppShortcutOrInfoActivity(View v) {
Chris Wren40c5ed32014-06-24 18:24:23 -04002714 Object tag = v.getTag();
Sunny Goyal508da152014-08-14 10:53:27 -07002715 final ShortcutInfo shortcut;
2716 final Intent intent;
2717 if (tag instanceof ShortcutInfo) {
2718 shortcut = (ShortcutInfo) tag;
2719 intent = shortcut.intent;
2720 int[] pos = new int[2];
2721 v.getLocationOnScreen(pos);
2722 intent.setSourceBounds(new Rect(pos[0], pos[1],
2723 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Chris Wren40c5ed32014-06-24 18:24:23 -04002724
Sunny Goyal508da152014-08-14 10:53:27 -07002725 } else if (tag instanceof AppInfo) {
2726 shortcut = null;
2727 intent = ((AppInfo) tag).intent;
2728 } else {
2729 throw new IllegalArgumentException("Input must be a Shortcut or AppInfo");
2730 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002731
2732 boolean success = startActivitySafely(v, intent, tag);
Winson Chung8f1eff72015-05-28 17:33:40 -07002733 mStats.recordLaunch(v, intent, shortcut);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002734
2735 if (success && v instanceof BubbleTextView) {
2736 mWaitingForResume = (BubbleTextView) v;
2737 mWaitingForResume.setStayPressed(true);
2738 }
2739 }
2740
2741 /**
2742 * Event handler for a folder icon click.
2743 *
2744 * @param v The view that was clicked. Must be an instance of {@link FolderIcon}.
2745 */
2746 protected void onClickFolderIcon(View v) {
2747 if (LOGD) Log.d(TAG, "onClickFolder");
2748 if (!(v instanceof FolderIcon)){
2749 throw new IllegalArgumentException("Input must be a FolderIcon");
2750 }
2751
Sunny Goyal317698b2015-07-29 11:45:41 -07002752 // TODO(sunnygoyal): Re-evaluate this code.
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002753 FolderIcon folderIcon = (FolderIcon) v;
2754 final FolderInfo info = folderIcon.getFolderInfo();
2755 Folder openFolder = mWorkspace.getFolderForTag(info);
2756
2757 // If the folder info reports that the associated folder is open, then verify that
2758 // it is actually opened. There have been a few instances where this gets out of sync.
2759 if (info.opened && openFolder == null) {
2760 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2761 + info.screenId + " (" + info.cellX + ", " + info.cellY + ")");
2762 info.opened = false;
2763 }
2764
2765 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
2766 // Close any open folder
2767 closeFolder();
2768 // Open the requested folder
2769 openFolder(folderIcon);
2770 } else {
2771 // Find the open folder...
2772 int folderScreen;
2773 if (openFolder != null) {
2774 folderScreen = mWorkspace.getPageForView(openFolder);
2775 // .. and close it
Sunny Goyal935fca12015-10-13 10:19:01 -07002776 closeFolder(openFolder, true);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002777 if (folderScreen != mWorkspace.getCurrentPage()) {
2778 // Close any folder open on the current screen
2779 closeFolder();
2780 // Pull the folder onto this screen
2781 openFolder(folderIcon);
2782 }
2783 }
2784 }
Adam Cohen9211d422014-10-07 18:14:53 -07002785
2786 if (mLauncherCallbacks != null) {
2787 mLauncherCallbacks.onClickFolderIcon(v);
2788 }
Michael Jurka5130e402011-10-13 04:55:35 -07002789 }
2790
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002791 /**
2792 * Event handler for the (Add) Widgets button that appears after a long press
2793 * on the home screen.
2794 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002795 protected void onClickAddWidgetButton(View view) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002796 if (LOGD) Log.d(TAG, "onClickAddWidgetButton");
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002797 if (mIsSafeModeEnabled) {
2798 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2799 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08002800 showWidgetsView(true /* animated */, true /* resetPageToZero */);
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002801 if (mLauncherCallbacks != null) {
2802 mLauncherCallbacks.onClickAddWidgetButton(view);
2803 }
Adam Cohen9211d422014-10-07 18:14:53 -07002804 }
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002805 }
2806
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002807 /**
2808 * Event handler for the wallpaper picker button that appears after a long press
2809 * on the home screen.
2810 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002811 protected void onClickWallpaperPicker(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002812 if (LOGD) Log.d(TAG, "onClickWallpaperPicker");
Tony Wickham3e776a82015-09-09 18:21:49 -07002813 int pageScroll = mWorkspace.getScrollForPage(mWorkspace.getPageNearestToCenterOfScreen());
2814 float offset = mWorkspace.mWallpaperOffset.wallpaperOffsetForScroll(pageScroll);
2815 startActivityForResult(new Intent(Intent.ACTION_SET_WALLPAPER).setPackage(getPackageName())
2816 .putExtra(WallpaperPickerActivity.EXTRA_WALLPAPER_OFFSET, offset),
Sunny Goyal6a1e95a2015-03-20 17:26:30 -07002817 REQUEST_PICK_WALLPAPER);
Adam Cohen9211d422014-10-07 18:14:53 -07002818
2819 if (mLauncherCallbacks != null) {
2820 mLauncherCallbacks.onClickWallpaperPicker(v);
2821 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002822 }
2823
2824 /**
2825 * Event handler for a click on the settings button that appears after a long press
2826 * on the home screen.
2827 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002828 protected void onClickSettingsButton(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002829 if (LOGD) Log.d(TAG, "onClickSettingsButton");
Adam Cohen9211d422014-10-07 18:14:53 -07002830 if (mLauncherCallbacks != null) {
2831 mLauncherCallbacks.onClickSettingsButton(v);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07002832 } else {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002833 startActivity(new Intent(this, SettingsActivity.class));
Adam Cohen9211d422014-10-07 18:14:53 -07002834 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002835 }
2836
Adam Cohen61f560d2013-09-30 15:58:20 -07002837 public View.OnTouchListener getHapticFeedbackTouchListener() {
2838 if (mHapticFeedbackTouchListener == null) {
2839 mHapticFeedbackTouchListener = new View.OnTouchListener() {
Sunny Goyal70660032015-05-14 00:07:08 -07002840 @SuppressLint("ClickableViewAccessibility")
Adam Cohen61f560d2013-09-30 15:58:20 -07002841 @Override
2842 public boolean onTouch(View v, MotionEvent event) {
2843 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
2844 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2845 }
2846 return false;
2847 }
2848 };
2849 }
2850 return mHapticFeedbackTouchListener;
2851 }
2852
Adam Cohen9211d422014-10-07 18:14:53 -07002853 public void onDragStarted(View view) {
2854 if (isOnCustomContent()) {
2855 // Custom content screen doesn't participate in drag and drop. If on custom
2856 // content screen, move to default.
2857 moveWorkspaceToDefaultScreen();
2858 }
2859
2860 if (mLauncherCallbacks != null) {
2861 mLauncherCallbacks.onDragStarted(view);
2862 }
2863 }
Anjali Koppal62d18ed2014-03-10 17:04:03 -07002864
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002865 /**
2866 * Called when the user stops interacting with the launcher.
2867 * This implies that the user is now on the homescreen and is not doing housekeeping.
2868 */
Adam Cohen9211d422014-10-07 18:14:53 -07002869 protected void onInteractionEnd() {
2870 if (mLauncherCallbacks != null) {
2871 mLauncherCallbacks.onInteractionEnd();
2872 }
2873 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002874
2875 /**
2876 * Called when the user starts interacting with the launcher.
2877 * The possible interactions are:
2878 * - open all apps
2879 * - reorder an app shortcut, or a widget
2880 * - open the overview mode.
2881 * This is a good time to stop doing things that only make sense
2882 * when the user is on the homescreen and not doing housekeeping.
2883 */
Adam Cohen9211d422014-10-07 18:14:53 -07002884 protected void onInteractionBegin() {
2885 if (mLauncherCallbacks != null) {
2886 mLauncherCallbacks.onInteractionBegin();
2887 }
2888 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002889
Winson Chungcd99cd32015-04-29 11:03:24 -07002890 /** Updates the interaction state. */
2891 public void updateInteraction(Workspace.State fromState, Workspace.State toState) {
Winson Chung83f59ab2015-05-05 17:21:58 -07002892 // Only update the interacting state if we are transitioning to/from a view with an
Winson Chungcd99cd32015-04-29 11:03:24 -07002893 // overlay
Winson Chungef7f8742015-06-04 17:18:17 -07002894 boolean fromStateWithOverlay = fromState != Workspace.State.NORMAL;
2895 boolean toStateWithOverlay = toState != Workspace.State.NORMAL;
Winson Chung83f59ab2015-05-05 17:21:58 -07002896 if (toStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002897 onInteractionBegin();
Winson Chung83f59ab2015-05-05 17:21:58 -07002898 } else if (fromStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002899 onInteractionEnd();
2900 }
2901 }
2902
Kenny Guyf07af7b2014-07-31 11:39:16 +01002903 void startApplicationDetailsActivity(ComponentName componentName, UserHandleCompat user) {
Kenny Guyf07af7b2014-07-31 11:39:16 +01002904 try {
2905 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Kenny Guyf07af7b2014-07-31 11:39:16 +01002906 launcherApps.showAppDetailsForProfile(componentName, user);
2907 } catch (SecurityException e) {
2908 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2909 Log.e(TAG, "Launcher does not have permission to launch settings");
2910 } catch (ActivityNotFoundException e) {
2911 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2912 Log.e(TAG, "Unable to launch settings");
2913 }
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002914 }
2915
Michael Jurka1e2f4652013-07-08 18:03:46 -07002916 // returns true if the activity was started
Kenny Guyd31df542014-06-30 15:12:11 +01002917 boolean startApplicationUninstallActivity(ComponentName componentName, int flags,
2918 UserHandleCompat user) {
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002919 if ((flags & AppInfo.DOWNLOADED_FLAG) == 0) {
Patrick Dubroy5539af72010-09-07 15:22:01 -07002920 // System applications cannot be installed. For now, show a toast explaining that.
2921 // We may give them the option of disabling apps this way.
2922 int messageId = R.string.uninstall_system_app_text;
2923 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
Michael Jurka1e2f4652013-07-08 18:03:46 -07002924 return false;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002925 } else {
Michael Jurka1e2f4652013-07-08 18:03:46 -07002926 String packageName = componentName.getPackageName();
2927 String className = componentName.getClassName();
Patrick Dubroy5539af72010-09-07 15:22:01 -07002928 Intent intent = new Intent(
2929 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002930 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2931 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Kenny Guyd31df542014-06-30 15:12:11 +01002932 if (user != null) {
2933 user.addToIntent(intent, Intent.EXTRA_USER);
2934 }
Patrick Dubroy5539af72010-09-07 15:22:01 -07002935 startActivity(intent);
Michael Jurka1e2f4652013-07-08 18:03:46 -07002936 return true;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002937 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002938 }
2939
Winson Chung8f1eff72015-05-28 17:33:40 -07002940 private boolean startActivity(View v, Intent intent, Object tag) {
Kenny Guyb6cc40b2014-05-13 15:58:58 +01002941 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002942 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002943 // Only launch using the new animation if the shortcut has not opted out (this is a
2944 // private contract between launcher and may be ignored in the future).
2945 boolean useLaunchAnimation = (v != null) &&
2946 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
Kenny Guyed131872014-04-30 03:02:21 +01002947 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
2948 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyed131872014-04-30 03:02:21 +01002949
Kenny Guy1317e2d2014-05-08 18:52:50 +01002950 UserHandleCompat user = null;
2951 if (intent.hasExtra(AppInfo.EXTRA_PROFILE)) {
2952 long serialNumber = intent.getLongExtra(AppInfo.EXTRA_PROFILE, -1);
2953 user = userManager.getUserForSerialNumber(serialNumber);
2954 }
2955
2956 Bundle optsBundle = null;
Winson Chung2672ff92012-05-04 16:22:30 -07002957 if (useLaunchAnimation) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002958 ActivityOptions opts = null;
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002959 if (Utilities.ATLEAST_MARSHMALLOW) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002960 int left = 0, top = 0;
2961 int width = v.getMeasuredWidth(), height = v.getMeasuredHeight();
2962 if (v instanceof TextView) {
2963 // Launch from center of icon, not entire view
Winson Chungb745afb2015-03-02 11:51:23 -08002964 Drawable icon = Workspace.getTextViewIcon((TextView) v);
2965 if (icon != null) {
2966 Rect bounds = icon.getBounds();
Chet Haasea8f996d2015-02-17 12:56:04 -08002967 left = (width - bounds.width()) / 2;
Winson Chungb745afb2015-03-02 11:51:23 -08002968 top = v.getPaddingTop();
Chet Haasea8f996d2015-02-17 12:56:04 -08002969 width = bounds.width();
2970 height = bounds.height();
2971 }
2972 }
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002973 opts = ActivityOptions.makeClipRevealAnimation(v, left, top, width, height);
2974 } else if (!Utilities.ATLEAST_LOLLIPOP) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002975 // Below L, we use a scale up animation
Adam Cohen2e52c902015-04-06 13:11:28 -07002976 opts = ActivityOptions.makeScaleUpAnimation(v, 0, 0,
Chet Haasea8f996d2015-02-17 12:56:04 -08002977 v.getMeasuredWidth(), v.getMeasuredHeight());
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002978 } else if (Utilities.ATLEAST_LOLLIPOP_MR1) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002979 // On L devices, we use the device default slide-up transition.
2980 // On L MR1 devices, we a custom version of the slide-up transition which
2981 // doesn't have the delay present in the device default.
2982 opts = ActivityOptions.makeCustomAnimation(this,
2983 R.anim.task_open_enter, R.anim.no_anim);
Chet Haasea8f996d2015-02-17 12:56:04 -08002984 }
Adam Cohen2e52c902015-04-06 13:11:28 -07002985 optsBundle = opts != null ? opts.toBundle() : null;
Adam Cohen6ea3b112014-06-11 11:38:49 -07002986 }
Kenny Guy1317e2d2014-05-08 18:52:50 +01002987
2988 if (user == null || user.equals(UserHandleCompat.myUserHandle())) {
2989 // Could be launching some bookkeeping activity
2990 startActivity(intent, optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002991 } else {
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002992 // TODO Component can be null when shortcuts are supported for secondary user
Kenny Guyc2bd8102014-06-30 12:30:31 +01002993 launcherApps.startActivityForProfile(intent.getComponent(), user,
2994 intent.getSourceBounds(), optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002995 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002996 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002997 } catch (SecurityException e) {
Sunny Goyal28c6b962015-10-12 11:42:05 -07002998 if (Utilities.ATLEAST_MARSHMALLOW && tag instanceof ItemInfo) {
2999 // Due to legacy reasons, direct call shortcuts require Launchers to have the
3000 // corresponding permission. Show the appropriate permission prompt if that
3001 // is the case.
3002 if (intent.getComponent() == null
3003 && Intent.ACTION_CALL.equals(intent.getAction())
3004 && checkSelfPermission(Manifest.permission.CALL_PHONE) !=
3005 PackageManager.PERMISSION_GRANTED) {
3006 // TODO: Rename sPendingAddItem to a generic name.
3007 sPendingAddItem = preparePendingAddArgs(REQUEST_PERMISSION_CALL_PHONE, intent,
3008 0, (ItemInfo) tag);
3009 requestPermissions(new String[]{Manifest.permission.CALL_PHONE},
3010 REQUEST_PERMISSION_CALL_PHONE);
3011 return false;
3012 }
3013 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003014 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08003015 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003016 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07003017 "or use the exported attribute for this activity. "
3018 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003019 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08003020 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003021 }
Winson Chungaafa03c2010-06-11 17:34:16 -07003022
Winson Chungbedf9232015-07-10 12:38:30 -07003023 public boolean startActivitySafely(View v, Intent intent, Object tag) {
Michael Jurka86a720e2012-05-09 11:23:23 -07003024 boolean success = false;
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07003025 if (mIsSafeModeEnabled && !Utilities.isSystemApp(this, intent)) {
3026 Toast.makeText(this, R.string.safemode_shortcut_error, Toast.LENGTH_SHORT).show();
3027 return false;
3028 }
Michael Jurka86a720e2012-05-09 11:23:23 -07003029 try {
3030 success = startActivity(v, intent, tag);
3031 } catch (ActivityNotFoundException e) {
3032 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
3033 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
3034 }
3035 return success;
3036 }
3037
Adam Cohen268c4752012-06-06 17:47:33 -07003038 /**
3039 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
3040 * in the DragLayer in the exact absolute location of the original FolderIcon.
3041 */
3042 private void copyFolderIconToImage(FolderIcon fi) {
3043 final int width = fi.getMeasuredWidth();
3044 final int height = fi.getMeasuredHeight();
3045
3046 // Lazy load ImageView, Bitmap and Canvas
3047 if (mFolderIconImageView == null) {
3048 mFolderIconImageView = new ImageView(this);
3049 }
3050 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
3051 mFolderIconBitmap.getHeight() != height) {
3052 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
3053 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
3054 }
3055
3056 DragLayer.LayoutParams lp;
3057 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
3058 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
3059 } else {
3060 lp = new DragLayer.LayoutParams(width, height);
3061 }
3062
Adam Cohen307fe232012-08-16 17:55:58 -07003063 // The layout from which the folder is being opened may be scaled, adjust the starting
3064 // view size by this scale factor.
3065 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07003066 lp.customPosition = true;
3067 lp.x = mRectForFolderAnimation.left;
3068 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07003069 lp.width = (int) (scale * width);
3070 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07003071
3072 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
3073 fi.draw(mFolderIconCanvas);
3074 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07003075 if (fi.getFolder() != null) {
3076 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
3077 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07003078 }
Adam Cohen268c4752012-06-06 17:47:33 -07003079 // Just in case this image view is still in the drag layer from a previous animation,
3080 // we remove it and re-add it.
3081 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
3082 mDragLayer.removeView(mFolderIconImageView);
3083 }
3084 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07003085 if (fi.getFolder() != null) {
3086 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07003087 }
Adam Cohen268c4752012-06-06 17:47:33 -07003088 }
3089
Adam Cohen2801caf2011-05-13 20:57:39 -07003090 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003091 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003092 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
3093 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
3094 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
3095
Adam Cohenc51934b2011-07-26 21:07:43 -07003096 FolderInfo info = (FolderInfo) fi.getTag();
3097 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3098 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07003099 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
3100 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07003101 }
3102
Adam Cohen268c4752012-06-06 17:47:33 -07003103 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
3104 copyFolderIconToImage(fi);
3105 fi.setVisibility(View.INVISIBLE);
3106
Michael Jurka2ecf9952012-06-18 12:52:28 -07003107 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003108 scaleX, scaleY);
Sunny Goyal9fc953b2015-08-17 12:24:25 -07003109 if (Utilities.ATLEAST_LOLLIPOP) {
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003110 oa.setInterpolator(new LogDecelerateInterpolator(100, 0));
3111 }
3112 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohen2801caf2011-05-13 20:57:39 -07003113 oa.start();
Tony Wickham112ac952015-11-12 12:31:50 -08003114 if (Utilities.isPowerSaverOn(this)) {
3115 // Animations are disabled in battery saver mode, so just skip to the end state.
3116 oa.end();
3117 }
Adam Cohen2801caf2011-05-13 20:57:39 -07003118 }
3119
Sunny Goyal935fca12015-10-13 10:19:01 -07003120 private void shrinkAndFadeInFolderIcon(final FolderIcon fi, boolean animate) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003121 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003122 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
3123 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
3124 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
3125
Adam Cohen268c4752012-06-06 17:47:33 -07003126 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07003127
Adam Cohen268c4752012-06-06 17:47:33 -07003128 // We remove and re-draw the FolderIcon in-case it has changed
3129 mDragLayer.removeView(mFolderIconImageView);
3130 copyFolderIconToImage(fi);
Michael Jurka2ecf9952012-06-18 12:52:28 -07003131 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003132 scaleX, scaleY);
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003133 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07003134 oa.addListener(new AnimatorListenerAdapter() {
3135 @Override
3136 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07003137 if (cl != null) {
3138 cl.clearFolderLeaveBehind();
3139 // Remove the ImageView copy of the FolderIcon and make the original visible.
3140 mDragLayer.removeView(mFolderIconImageView);
3141 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07003142 }
3143 }
3144 });
Adam Cohen2801caf2011-05-13 20:57:39 -07003145 oa.start();
Sunny Goyal935fca12015-10-13 10:19:01 -07003146 if (!animate) {
3147 oa.end();
3148 }
Adam Cohen2801caf2011-05-13 20:57:39 -07003149 }
3150
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003151 /**
Michael Jurka774bd372010-10-22 13:40:50 -07003152 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003153 * is animated relative to the specified View. If the View is null, no animation
3154 * is played.
3155 *
3156 * @param folderInfo The FolderInfo describing the folder to open.
3157 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07003158 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07003159 Folder folder = folderIcon.getFolder();
Sunny Goyalf4066152015-04-15 09:42:19 -07003160 Folder openFolder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
3161 if (openFolder != null && openFolder != folder) {
3162 // Close any open folder before opening a folder.
3163 closeFolder();
3164 }
3165
Adam Cohena9cf38f2011-05-02 15:36:58 -07003166 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003167
Adam Cohena9cf38f2011-05-02 15:36:58 -07003168 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003169
Sunny Goyalf4066152015-04-15 09:42:19 -07003170 // While the folder is open, the position of the icon cannot change.
3171 ((CellLayout.LayoutParams) folderIcon.getLayoutParams()).canReorder = false;
3172
Adam Cohen4554ee12011-08-03 16:13:21 -07003173 // Just verify that the folder hasn't already been added to the DragLayer.
3174 // There was a one-off crash where the folder had a parent already.
3175 if (folder.getParent() == null) {
3176 mDragLayer.addView(folder);
3177 mDragController.addDropTarget((DropTarget) folder);
3178 } else {
3179 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
3180 folder.getParent() + ").");
3181 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07003182 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07003183 growAndFadeOutFolderIcon(folderIcon);
Winson Chung83ca4802013-04-12 15:10:52 -07003184
3185 // Notify the accessibility manager that this folder "window" has appeared and occluded
3186 // the workspace items
3187 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
3188 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07003189 }
3190
3191 public void closeFolder() {
Sunny Goyal935fca12015-10-13 10:19:01 -07003192 closeFolder(true);
3193 }
3194
3195 public void closeFolder(boolean animate) {
Adam Cohen37c717f2013-11-26 11:50:15 -08003196 Folder folder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
Adam Cohen4554ee12011-08-03 16:13:21 -07003197 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07003198 if (folder.isEditingName()) {
3199 folder.dismissEditingName();
3200 }
Sunny Goyal935fca12015-10-13 10:19:01 -07003201 closeFolder(folder, animate);
Adam Cohen4554ee12011-08-03 16:13:21 -07003202 }
3203 }
3204
Sunny Goyal935fca12015-10-13 10:19:01 -07003205 public void closeFolder(Folder folder, boolean animate) {
Adam Cohen4554ee12011-08-03 16:13:21 -07003206 folder.getInfo().opened = false;
3207
3208 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
3209 if (parent != null) {
3210 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
Sunny Goyal935fca12015-10-13 10:19:01 -07003211 shrinkAndFadeInFolderIcon(fi, animate);
Sunny Goyalf4066152015-04-15 09:42:19 -07003212 if (fi != null) {
3213 ((CellLayout.LayoutParams) fi.getLayoutParams()).canReorder = true;
3214 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003215 }
Sunny Goyal935fca12015-10-13 10:19:01 -07003216 if (animate) {
3217 folder.animateClosed();
3218 } else {
Tony Wickham30bdd6e2015-11-17 17:59:26 -08003219 folder.close(false);
Sunny Goyal935fca12015-10-13 10:19:01 -07003220 }
Winson Chung83ca4802013-04-12 15:10:52 -07003221
Sunny Goyal935fca12015-10-13 10:19:01 -07003222 // Notify the accessibility manager that this folder "window" has disappeared and no
3223 // longer occludes the workspace items
Winson Chung83ca4802013-04-12 15:10:52 -07003224 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003225 }
3226
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003227 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07003228 if (!isDraggingEnabled()) return false;
3229 if (isWorkspaceLocked()) return false;
3230 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003231
Winson Chung76648c52015-07-10 14:33:23 -07003232 if (v == mAllAppsButton) {
3233 onLongClickAllAppsButton(v);
3234 return true;
3235 }
3236
Adam Cohen1697b792013-09-17 19:08:21 -07003237 if (v instanceof Workspace) {
3238 if (!mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003239 if (!mWorkspace.isTouchActive()) {
3240 showOverviewMode(true);
Adam Cohen93c97562013-09-26 13:48:01 -07003241 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3242 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
3243 return true;
3244 } else {
3245 return false;
3246 }
Adam Cohenaa4c8c12014-06-06 11:52:52 -07003247 } else {
3248 return false;
Adam Cohen1697b792013-09-17 19:08:21 -07003249 }
Adam Cohen1697b792013-09-17 19:08:21 -07003250 }
3251
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003252 CellLayout.CellInfo longClickCellInfo = null;
3253 View itemUnderLongClick = null;
3254 if (v.getTag() instanceof ItemInfo) {
3255 ItemInfo info = (ItemInfo) v.getTag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08003256 longClickCellInfo = new CellLayout.CellInfo(v, info);
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003257 itemUnderLongClick = longClickCellInfo.cell;
3258 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003259 }
3260
Winson Chung3d503fb2011-07-13 17:25:49 -07003261 // The hotseat touch handling does not go through Workspace, and we always allow long press
3262 // on hotseat items.
Dan Sandlere26d0942014-01-13 14:30:14 -05003263 final boolean inHotseat = isHotseatLayout(v);
Sunny Goyal8e2133b2015-05-06 13:39:07 -07003264 if (!mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07003265 if (itemUnderLongClick == null) {
Adam Cohend3ecce92013-09-16 14:58:00 -07003266 // User long pressed on empty space
3267 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3268 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Adam Cohend3ecce92013-09-16 14:58:00 -07003269 if (mWorkspace.isInOverviewMode()) {
3270 mWorkspace.startReordering(v);
3271 } else {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003272 showOverviewMode(true);
Adam Cohendedbd962013-07-11 14:21:49 -07003273 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003274 } else {
Dan Sandlere26d0942014-01-13 14:30:14 -05003275 final boolean isAllAppsButton = inHotseat && isAllAppsButtonRank(
3276 mHotseat.getOrderInHotseat(
3277 longClickCellInfo.cellX,
3278 longClickCellInfo.cellY));
3279 if (!(itemUnderLongClick instanceof Folder || isAllAppsButton)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003280 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07003281 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003282 }
3283 }
3284 }
3285 return true;
3286 }
3287
Winson Chung3d503fb2011-07-13 17:25:49 -07003288 boolean isHotseatLayout(View layout) {
3289 return mHotseat != null && layout != null &&
3290 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
3291 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08003292
Winson Chung3d503fb2011-07-13 17:25:49 -07003293 /**
3294 * Returns the CellLayout of the specified container at the specified screen.
3295 */
Sunny Goyal92820592015-03-02 11:31:35 -08003296 public CellLayout getCellLayout(long container, long screenId) {
Winson Chung3d503fb2011-07-13 17:25:49 -07003297 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3298 if (mHotseat != null) {
3299 return mHotseat.getLayout();
3300 } else {
3301 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08003302 }
Winson Chung3d503fb2011-07-13 17:25:49 -07003303 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08003304 return mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08003305 }
3306 }
3307
Winson Chungb745afb2015-03-02 11:51:23 -08003308 /**
3309 * For overridden classes.
3310 */
Daniel Sandler843e8602010-06-07 14:59:01 -04003311 public boolean isAllAppsVisible() {
Winson Chungb745afb2015-03-02 11:51:23 -08003312 return isAppsViewVisible();
3313 }
3314
3315 public boolean isAppsViewVisible() {
3316 return (mState == State.APPS) || (mOnResumeState == State.APPS);
3317 }
3318
3319 public boolean isWidgetsViewVisible() {
3320 return (mState == State.WIDGETS) || (mOnResumeState == State.WIDGETS);
Joe Onoratofb0ca672009-09-14 17:55:46 -04003321 }
3322
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003323 private void setWorkspaceBackground(int background) {
3324 switch (background) {
3325 case WORKSPACE_BACKGROUND_TRANSPARENT:
3326 getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
3327 break;
3328 case WORKSPACE_BACKGROUND_BLACK:
3329 getWindow().setBackgroundDrawable(null);
3330 break;
3331 default:
3332 getWindow().setBackgroundDrawable(mWorkspaceBackgroundDrawable);
3333 }
Craig Mautner360310b2012-10-26 15:13:08 -07003334 }
3335
Selim Cinek3a8a8f72014-01-16 10:38:38 -08003336 protected void changeWallpaperVisiblity(boolean visible) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003337 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
3338 int curflags = getWindow().getAttributes().flags
3339 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
3340 if (wpflags != curflags) {
3341 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
3342 }
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003343 setWorkspaceBackground(visible ? WORKSPACE_BACKGROUND_GRADIENT : WORKSPACE_BACKGROUND_BLACK);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003344 }
3345
Michael Jurkae326f182011-11-21 14:05:46 -08003346 @Override
3347 public void onTrimMemory(int level) {
3348 super.onTrimMemory(level);
Adam Cohen3f9c9712014-10-31 11:48:25 -07003349 if (level >= ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
3350 // The widget preview db can result in holding onto over
3351 // 3MB of memory for caching which isn't necessary.
3352 SQLiteDatabase.releaseMemory();
3353
Adam Cohenc8f4e1b2014-11-19 16:03:20 -08003354 // This clears all widget bitmaps from the widget tray
Hyunyoung Song3f471442015-04-08 19:01:34 -07003355 // TODO(hyunyoungs)
Michael Jurkae326f182011-11-21 14:05:46 -08003356 }
Robert Kozikowski67c30862015-03-30 23:46:46 +01003357 if (mLauncherCallbacks != null) {
3358 mLauncherCallbacks.onTrimMemory(level);
3359 }
Michael Jurkae326f182011-11-21 14:05:46 -08003360 }
3361
Winson5c6bdbb2015-09-03 11:36:19 -07003362 /**
3363 * @return whether or not the Launcher state changed.
3364 */
3365 public boolean showWorkspace(boolean animated) {
3366 return showWorkspace(WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated, null);
Adam Cohened307df2013-10-02 09:37:31 -07003367 }
3368
Winson5c6bdbb2015-09-03 11:36:19 -07003369 /**
3370 * @return whether or not the Launcher state changed.
3371 */
3372 public boolean showWorkspace(boolean animated, Runnable onCompleteRunnable) {
3373 return showWorkspace(WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated,
Winson Chungef7f8742015-06-04 17:18:17 -07003374 onCompleteRunnable);
Winson Chungdc61c4d2015-04-20 18:26:57 -07003375 }
3376
Winson5c6bdbb2015-09-03 11:36:19 -07003377 /**
3378 * @return whether or not the Launcher state changed.
3379 */
3380 protected boolean showWorkspace(int snapToPage, boolean animated) {
3381 return showWorkspace(snapToPage, animated, null);
Winson Chungdc61c4d2015-04-20 18:26:57 -07003382 }
3383
Winson5c6bdbb2015-09-03 11:36:19 -07003384 /**
3385 * @return whether or not the Launcher state changed.
3386 */
3387 boolean showWorkspace(int snapToPage, boolean animated, Runnable onCompleteRunnable) {
Winson Chung0f785722015-04-08 10:27:49 -07003388 boolean changed = mState != State.WORKSPACE ||
3389 mWorkspace.getState() != Workspace.State.NORMAL;
3390 if (changed) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003391 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003392 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3393 Workspace.State.NORMAL, snapToPage, animated, onCompleteRunnable);
Winson Chungc7d2b602012-05-16 17:02:20 -07003394
Michael Jurkab3e22d92011-10-31 15:58:33 -07003395 // Set focus to the AppsCustomize button
3396 if (mAllAppsButton != null) {
3397 mAllAppsButton.requestFocus();
3398 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003399 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07003400
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003401 // Change the state *after* we've called all the transition code
3402 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08003403
Winson Chung5fb63472011-02-02 17:03:37 -08003404 // Resume the auto-advance of widgets
3405 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08003406 updateAutoAdvanceState();
Winson Chung5fb63472011-02-02 17:03:37 -08003407
Winson Chung0f785722015-04-08 10:27:49 -07003408 if (changed) {
3409 // Send an accessibility event to announce the context change
3410 getWindow().getDecorView()
3411 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Winson Chung0f785722015-04-08 10:27:49 -07003412 }
Winson5c6bdbb2015-09-03 11:36:19 -07003413 return changed;
Bjorn Bringertc459e522013-06-07 19:36:01 +01003414 }
3415
Winsone9f27272015-10-13 10:47:51 -07003416 /**
3417 * Shows the overview button.
3418 */
Adam Cohened307df2013-10-02 09:37:31 -07003419 void showOverviewMode(boolean animated) {
Winsone9f27272015-10-13 10:47:51 -07003420 showOverviewMode(animated, false);
3421 }
3422
3423 /**
3424 * Shows the overview button, and if {@param requestButtonFocus} is set, will force the focus
3425 * onto one of the overview panel buttons.
3426 */
3427 void showOverviewMode(boolean animated, boolean requestButtonFocus) {
3428 Runnable postAnimRunnable = null;
3429 if (requestButtonFocus) {
3430 postAnimRunnable = new Runnable() {
3431 @Override
3432 public void run() {
3433 // Hitting the menu button when in touch mode does not trigger touch mode to
3434 // be disabled, so if requested, force focus on one of the overview panel
3435 // buttons.
3436 mOverviewPanel.requestFocusFromTouch();
3437 }
3438 };
3439 }
Adam Cohened307df2013-10-02 09:37:31 -07003440 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003441 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3442 Workspace.State.OVERVIEW,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003443 WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated,
Winsone9f27272015-10-13 10:47:51 -07003444 postAnimRunnable);
Adam Cohened307df2013-10-02 09:37:31 -07003445 mState = State.WORKSPACE;
Joe Onorato00acb122009-08-04 16:04:30 -04003446 }
3447
Winson Chungb745afb2015-03-02 11:51:23 -08003448 /**
3449 * Shows the apps view.
3450 */
Winson Chung76648c52015-07-10 14:33:23 -07003451 void showAppsView(boolean animated, boolean resetListToTop, boolean updatePredictedApps,
3452 boolean focusSearchBar) {
Winson Chungb745afb2015-03-02 11:51:23 -08003453 if (resetListToTop) {
3454 mAppsView.scrollToTop();
3455 }
Winson Chung4ac30062015-05-08 17:34:17 -07003456 if (updatePredictedApps) {
3457 tryAndUpdatePredictedApps();
3458 }
Winson Chung76648c52015-07-10 14:33:23 -07003459 showAppsOrWidgets(State.APPS, animated, focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003460 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003461
Winson Chungb745afb2015-03-02 11:51:23 -08003462 /**
3463 * Shows the widgets view.
3464 */
3465 void showWidgetsView(boolean animated, boolean resetPageToZero) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003466 if (LOGD) Log.d(TAG, "showWidgetsView:" + animated + " resetPageToZero:" + resetPageToZero);
Winson Chung82963d52013-10-09 11:20:57 -07003467 if (resetPageToZero) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003468 mWidgetsView.scrollToTop();
Winson Chung82963d52013-10-09 11:20:57 -07003469 }
Winson Chung76648c52015-07-10 14:33:23 -07003470 showAppsOrWidgets(State.WIDGETS, animated, false);
Hyunyoung Song3f471442015-04-08 19:01:34 -07003471
3472 mWidgetsView.post(new Runnable() {
Adam Cohendcc5e712014-06-23 15:38:55 -04003473 @Override
3474 public void run() {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003475 mWidgetsView.requestFocus();
Adam Cohendcc5e712014-06-23 15:38:55 -04003476 }
3477 });
Winson Chungb745afb2015-03-02 11:51:23 -08003478 }
3479
3480 /**
3481 * Sets up the transition to show the apps/widgets view.
Hyunyoung Songb7900832015-05-15 16:29:45 -07003482 *
3483 * @return whether the current from and to state allowed this operation
Winson Chungb745afb2015-03-02 11:51:23 -08003484 */
Hyunyoung Songb7900832015-05-15 16:29:45 -07003485 // TODO: calling method should use the return value so that when {@code false} is returned
3486 // the workspace transition doesn't fall into invalid state.
Winson Chung76648c52015-07-10 14:33:23 -07003487 private boolean showAppsOrWidgets(State toState, boolean animated, boolean focusSearchBar) {
Hyunyoung Songb7900832015-05-15 16:29:45 -07003488 if (mState != State.WORKSPACE && mState != State.APPS_SPRING_LOADED &&
3489 mState != State.WIDGETS_SPRING_LOADED) {
3490 return false;
3491 }
3492 if (toState != State.APPS && toState != State.WIDGETS) {
3493 return false;
3494 }
Winson Chungb745afb2015-03-02 11:51:23 -08003495
3496 if (toState == State.APPS) {
Winson Chung006ee262015-08-03 14:40:11 -07003497 mStateTransitionAnimation.startAnimationToAllApps(mWorkspace.getState(), animated,
3498 focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003499 } else {
Winson Chung006ee262015-08-03 14:40:11 -07003500 mStateTransitionAnimation.startAnimationToWidgets(mWorkspace.getState(), animated);
Winson Chungb745afb2015-03-02 11:51:23 -08003501 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003502
Michael Jurkab3e22d92011-10-31 15:58:33 -07003503 // Change the state *after* we've called all the transition code
Winson Chungb745afb2015-03-02 11:51:23 -08003504 mState = toState;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003505
3506 // Pause the auto-advance of widgets until we are out of AllApps
3507 mUserPresent = false;
Winson Chungb745afb2015-03-02 11:51:23 -08003508 updateAutoAdvanceState();
Michael Jurkab3e22d92011-10-31 15:58:33 -07003509 closeFolder();
3510
3511 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07003512 getWindow().getDecorView()
3513 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Hyunyoung Songb7900832015-05-15 16:29:45 -07003514 return true;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003515 }
3516
Winson Chungcd99cd32015-04-29 11:03:24 -07003517 /**
3518 * Updates the workspace and interaction state on state change, and return the animation to this
3519 * new state.
3520 */
3521 public Animator startWorkspaceStateChangeAnimation(Workspace.State toState, int toPage,
Winson Chung006ee262015-08-03 14:40:11 -07003522 boolean animated, HashMap<View, Integer> layerViews) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003523 Workspace.State fromState = mWorkspace.getState();
Winson Chung006ee262015-08-03 14:40:11 -07003524 Animator anim = mWorkspace.setStateWithAnimation(toState, toPage, animated, layerViews);
Winson Chungcd99cd32015-04-29 11:03:24 -07003525 updateInteraction(fromState, toState);
3526 return anim;
3527 }
3528
Hyunyoung Song3f471442015-04-08 19:01:34 -07003529 public void enterSpringLoadedDragMode() {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003530 if (LOGD) Log.d(TAG, String.format("enterSpringLoadedDragMode [mState=%s", mState.name()));
Winson Chungb745afb2015-03-02 11:51:23 -08003531 if (mState == State.WORKSPACE || mState == State.APPS_SPRING_LOADED ||
3532 mState == State.WIDGETS_SPRING_LOADED) {
3533 return;
Winson Chungb26f3d62011-06-02 10:49:29 -07003534 }
Winson Chungb745afb2015-03-02 11:51:23 -08003535
Winson Chung006ee262015-08-03 14:40:11 -07003536 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3537 Workspace.State.SPRING_LOADED,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003538 WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, true /* animated */,
3539 null /* onCompleteRunnable */);
Winson Chungb745afb2015-03-02 11:51:23 -08003540 mState = isAppsViewVisible() ? State.APPS_SPRING_LOADED : State.WIDGETS_SPRING_LOADED;
Michael Jurkad3ef3062010-11-23 16:23:58 -08003541 }
Adam Cohen7777d962011-08-18 18:58:38 -07003542
Hyunyoung Song3f471442015-04-08 19:01:34 -07003543 public void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, int delay,
Adam Cohened66b2b2012-01-23 17:28:51 -08003544 final Runnable onCompleteRunnable) {
Winson Chungb745afb2015-03-02 11:51:23 -08003545 if (mState != State.APPS_SPRING_LOADED && mState != State.WIDGETS_SPRING_LOADED) return;
Winson Chung09bfc452011-09-09 11:30:20 -07003546
Winson Chunge7a03942011-08-05 15:05:12 -07003547 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07003548 @Override
3549 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003550 if (successfulDrop) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003551 // TODO(hyunyoungs): verify if this hack is still needed, if not, delete.
3552 //
Michael Jurka7bdb25a2011-08-03 15:16:44 -07003553 // Before we show workspace, hide all apps again because
3554 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
3555 // clean up our state transition functions
Hyunyoung Song3f471442015-04-08 19:01:34 -07003556 mWidgetsView.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003557 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07003558 } else {
3559 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003560 }
Winson Chung557d6ed2011-07-08 15:34:52 -07003561 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07003562 }, delay);
Winson Chung557d6ed2011-07-08 15:34:52 -07003563 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003564
Michael Jurkad3ef3062010-11-23 16:23:58 -08003565 void exitSpringLoadedDragMode() {
Winson Chungb745afb2015-03-02 11:51:23 -08003566 if (mState == State.APPS_SPRING_LOADED) {
Winson Chung4ac30062015-05-08 17:34:17 -07003567 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07003568 false /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -08003569 } else if (mState == State.WIDGETS_SPRING_LOADED) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003570 showWidgetsView(true, false);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003571 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003572 }
3573
Winson Chung4ac30062015-05-08 17:34:17 -07003574 /**
3575 * Updates the set of predicted apps if it hasn't been updated since the last time Launcher was
3576 * resumed.
3577 */
3578 private void tryAndUpdatePredictedApps() {
3579 if (mLauncherCallbacks != null) {
Winson Chung6b1c73f2015-06-18 11:38:42 -07003580 List<ComponentKey> apps = mLauncherCallbacks.getPredictedApps();
Winson Chung91c05952015-06-25 12:17:30 -07003581 if (apps != null) {
Winson Chung4ac30062015-05-08 17:34:17 -07003582 mAppsView.setPredictedApps(apps);
3583 }
3584 }
3585 }
3586
Michael Jurkab3e22d92011-10-31 15:58:33 -07003587 void lockAllApps() {
3588 // TODO
3589 }
3590
3591 void unlockAllApps() {
3592 // TODO
3593 }
3594
Sunny Goyal594d76d2014-11-06 10:12:54 -08003595 protected void disableVoiceButtonProxy(boolean disable) {
3596 // NO-OP
Winson Chungbb185bd2011-11-21 12:31:42 -08003597 }
3598
Winsonf768d932015-09-25 16:12:35 -07003599 public boolean launcherCallbacksProvidesSearch() {
3600 return (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch());
3601 }
3602
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003603 public View getOrCreateQsbBar() {
Winsonf768d932015-09-25 16:12:35 -07003604 if (launcherCallbacksProvidesSearch()) {
Adam Cohenc2d6e892014-10-16 09:49:24 -07003605 return mLauncherCallbacks.getQsbBar();
Adam Cohen9211d422014-10-07 18:14:53 -07003606 }
3607
Adam Cohen24ce0b32014-01-14 16:18:14 -08003608 if (mQsb == null) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003609 AppWidgetProviderInfo searchProvider = Utilities.getSearchWidgetProvider(this);
3610 if (searchProvider == null) {
3611 return null;
3612 }
3613
3614 Bundle opts = new Bundle();
3615 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_HOST_CATEGORY,
Adam Coheneb8e2822015-02-20 16:38:48 +00003616 AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003617
Tony Wickham3a3517f2015-10-06 11:27:04 -07003618 // Determine the min and max dimensions of the widget.
3619 LauncherAppState app = LauncherAppState.getInstance();
3620 DeviceProfile portraitProfile = app.getInvariantDeviceProfile().portraitProfile;
3621 DeviceProfile landscapeProfile = app.getInvariantDeviceProfile().landscapeProfile;
3622 float density = getResources().getDisplayMetrics().density;
Tony Wickhama3c74d12015-10-23 11:43:47 -07003623 Point searchDimens = portraitProfile.getSearchBarDimensForWidgetOpts(getResources());
3624 int maxHeight = (int) (searchDimens.y / density);
Tony Wickham3a3517f2015-10-06 11:27:04 -07003625 int minHeight = maxHeight;
Tony Wickhama3c74d12015-10-23 11:43:47 -07003626 int maxWidth = (int) (searchDimens.x / density);
Tony Wickham3a3517f2015-10-06 11:27:04 -07003627 int minWidth = maxWidth;
3628 if (!landscapeProfile.isVerticalBarLayout()) {
Tony Wickhama3c74d12015-10-23 11:43:47 -07003629 searchDimens = landscapeProfile.getSearchBarDimensForWidgetOpts(getResources());
3630 maxHeight = (int) Math.max(maxHeight, searchDimens.y / density);
3631 minHeight = (int) Math.min(minHeight, searchDimens.y / density);
3632 maxWidth = (int) Math.max(maxWidth, searchDimens.x / density);
3633 minWidth = (int) Math.min(minWidth, searchDimens.x / density);
Tony Wickham3a3517f2015-10-06 11:27:04 -07003634 }
3635 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_MAX_HEIGHT, maxHeight);
3636 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_MIN_HEIGHT, minHeight);
3637 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_MAX_WIDTH, maxWidth);
3638 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_MIN_WIDTH, minWidth);
Tony Wickhameef44322015-10-20 13:24:36 -07003639 if (LOGD) {
3640 Log.d(TAG, "QSB widget options: maxHeight=" + maxHeight + " minHeight=" + minHeight
3641 + " maxWidth=" + maxWidth + " minWidth=" + minWidth);
3642 }
Tony Wickham3a3517f2015-10-06 11:27:04 -07003643
Tony Wickham775455c2015-10-16 09:49:32 -07003644 if (mLauncherCallbacks != null) {
3645 opts.putAll(mLauncherCallbacks.getAdditionalSearchWidgetOptions());
3646 }
3647
Sunny Goyalf7258242015-10-19 16:59:07 -07003648 int widgetId = mSharedPrefs.getInt(QSB_WIDGET_ID, -1);
Sunny Goyal416541c2014-11-14 11:59:57 -08003649 AppWidgetProviderInfo widgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003650 if (!searchProvider.provider.flattenToString().equals(
Sunny Goyalf7258242015-10-19 16:59:07 -07003651 mSharedPrefs.getString(QSB_WIDGET_PROVIDER, null))
Sunny Goyal416541c2014-11-14 11:59:57 -08003652 || (widgetInfo == null)
3653 || !widgetInfo.provider.equals(searchProvider.provider)) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003654 // A valid widget is not already bound.
3655 if (widgetId > -1) {
3656 mAppWidgetHost.deleteAppWidgetId(widgetId);
3657 widgetId = -1;
3658 }
3659
3660 // Try to bind a new widget
3661 widgetId = mAppWidgetHost.allocateAppWidgetId();
3662
3663 if (!AppWidgetManagerCompat.getInstance(this)
3664 .bindAppWidgetIdIfAllowed(widgetId, searchProvider, opts)) {
3665 mAppWidgetHost.deleteAppWidgetId(widgetId);
3666 widgetId = -1;
3667 }
3668
Sunny Goyalf7258242015-10-19 16:59:07 -07003669 mSharedPrefs.edit()
Sunny Goyal594d76d2014-11-06 10:12:54 -08003670 .putInt(QSB_WIDGET_ID, widgetId)
3671 .putString(QSB_WIDGET_PROVIDER, searchProvider.provider.flattenToString())
3672 .commit();
3673 }
3674
Sunny Goyal8d595092015-07-06 12:22:14 -07003675 mAppWidgetHost.setQsbWidgetId(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003676 if (widgetId != -1) {
3677 mQsb = mAppWidgetHost.createView(this, widgetId, searchProvider);
Sunny Goyalebfae6e2015-08-27 15:30:25 -07003678 mQsb.setId(R.id.qsb_widget);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003679 mQsb.updateAppWidgetOptions(opts);
3680 mQsb.setPadding(0, 0, 0, 0);
3681 mSearchDropTargetBar.addView(mQsb);
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003682 mSearchDropTargetBar.setQsbSearchBar(mQsb);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003683 }
Cristina Stancu476493b2013-08-07 17:20:14 +01003684 }
Adam Cohen24ce0b32014-01-14 16:18:14 -08003685 return mQsb;
Cristina Stancu476493b2013-08-07 17:20:14 +01003686 }
3687
Sunny Goyal22235bc2015-04-03 09:23:43 -07003688 private void reinflateQSBIfNecessary() {
3689 if (mQsb instanceof LauncherAppWidgetHostView &&
3690 ((LauncherAppWidgetHostView) mQsb).isReinflateRequired()) {
3691 mSearchDropTargetBar.removeView(mQsb);
3692 mQsb = null;
3693 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
3694 }
3695 }
3696
Michael Jurkad7c28052012-04-27 15:43:36 -07003697 @Override
3698 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07003699 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07003700 final List<CharSequence> text = event.getText();
3701 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07003702 // Populate event with a fake title based on the current state.
Winson Chungb745afb2015-03-02 11:51:23 -08003703 if (mState == State.APPS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003704 text.add(getString(R.string.all_apps_button_label));
Winson Chungb745afb2015-03-02 11:51:23 -08003705 } else if (mState == State.WIDGETS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003706 text.add(getString(R.string.widget_button_text));
Hyunyoung Song166e6482015-06-25 21:06:07 -07003707 } else if (mWorkspace != null) {
3708 text.add(mWorkspace.getCurrentPageDescription());
alanv1d4fde62012-10-17 13:15:47 -07003709 } else {
3710 text.add(getString(R.string.all_apps_home_button_label));
3711 }
Michael Jurkad7c28052012-04-27 15:43:36 -07003712 return result;
3713 }
3714
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003715 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003716 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003717 */
Adam Cohen091440a2015-03-18 14:16:05 -07003718 @Thunk class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003719 @Override
3720 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003721 closeSystemDialogs();
3722 }
3723 }
3724
3725 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07003726 * If the activity is currently paused, signal that we need to run the passed Runnable
3727 * in onResume.
3728 *
3729 * This needs to be called from incoming places where resources might have been loaded
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003730 * while the activity is paused. That is because the Configuration (e.g., rotation) might be
3731 * wrong when we're not running, and if the activity comes back to what the configuration was
3732 * when we were paused, activity is not restarted.
Michael Jurka7607c2f2013-04-03 14:33:19 -07003733 *
3734 * Implementation of the method from LauncherModel.Callbacks.
3735 *
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003736 * @return {@code true} if we are currently paused. The caller might be able to skip some work
Michael Jurka7607c2f2013-04-03 14:33:19 -07003737 */
Rahul Chaturvedi799aa042015-06-01 21:26:41 -04003738 @Thunk boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003739 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003740 if (LOGD) Log.d(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02003741 if (deletePreviousRunnables) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07003742 while (mBindOnResumeCallbacks.remove(run)) {
Michael Jurkac402cd92013-05-20 15:49:32 +02003743 }
3744 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07003745 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07003746 return true;
3747 } else {
3748 return false;
3749 }
3750 }
3751
Michael Jurkac402cd92013-05-20 15:49:32 +02003752 private boolean waitUntilResume(Runnable run) {
3753 return waitUntilResume(run, false);
3754 }
3755
Michael Jurka1e2f4652013-07-08 18:03:46 -07003756 public void addOnResumeCallback(Runnable run) {
Michael Jurka54554252013-08-01 12:52:23 +02003757 mOnResumeCallbacks.add(run);
Michael Jurka1e2f4652013-07-08 18:03:46 -07003758 }
3759
Michael Jurka7607c2f2013-04-03 14:33:19 -07003760 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003761 * If the activity is currently paused, signal that we need to re-run the loader
3762 * in onResume.
3763 *
3764 * This needs to be called from incoming places where resources might have been loaded
3765 * while we are paused. That is becaues the Configuration might be wrong
3766 * when we're not running, and if it comes back to what it was when we
3767 * were paused, we are not restarted.
3768 *
3769 * Implementation of the method from LauncherModel.Callbacks.
3770 *
3771 * @return true if we are currently paused. The caller might be able to
3772 * skip some work in that case since we will come back again.
3773 */
3774 public boolean setLoadOnResume() {
3775 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003776 if (LOGD) Log.d(TAG, "setLoadOnResume");
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003777 mOnResumeNeedsLoad = true;
3778 return true;
3779 } else {
3780 return false;
3781 }
3782 }
3783
3784 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003785 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003786 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003787 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003788 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003789 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003790 } else {
3791 return SCREEN_COUNT / 2;
3792 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003793 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003794
Joe Onorato9c1289c2009-08-17 11:03:03 -04003795 /**
3796 * Refreshes the shortcuts shown on the workspace.
3797 *
3798 * Implementation of the method from LauncherModel.Callbacks.
3799 */
3800 public void startBinding() {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07003801 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08003802
Michael Jurka7607c2f2013-04-03 14:33:19 -07003803 // If we're starting binding all over again, clear any bind calls we'd postponed in
3804 // the past (see waitUntilResume) -- we don't need them since we're starting binding
3805 // from scratch again
Michael Jurka1e2f4652013-07-08 18:03:46 -07003806 mBindOnResumeCallbacks.clear();
Adam Cohendf035382011-04-11 17:22:04 -07003807
Winson Chungd64d1762013-08-20 14:37:16 -07003808 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07003809 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07003810 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07003811
Michael Jurka05bf644e2011-11-30 20:28:53 -08003812 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003813 if (mHotseat != null) {
3814 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003815 }
3816 }
3817
Adam Cohendcd297f2013-06-18 13:13:40 -07003818 @Override
3819 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Winson Chung64359a52013-07-08 17:17:08 -07003820 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07003821
Adam Cohen5084cba2013-09-03 12:01:16 -07003822 // If there are no screens, we need to have an empty screen
3823 if (orderedScreenIds.size() == 0) {
3824 mWorkspace.addExtraEmptyScreen();
3825 }
Winson Chung0e6a7132013-08-23 12:55:10 -07003826
3827 // Create the custom content page (this call updates mDefaultScreen which calls
Dave Hawkeya8881582013-09-17 15:55:33 -06003828 // setCurrentPage() so ensure that all pages are added before calling this).
Derek Prothrodadd9842014-01-17 13:43:50 -05003829 if (hasCustomContentToLeft()) {
3830 mWorkspace.createCustomContentContainer();
3831 populateCustomContentContainer();
Winson Chung0e6a7132013-08-23 12:55:10 -07003832 }
Winson Chung64359a52013-07-08 17:17:08 -07003833 }
3834
3835 @Override
3836 public void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Adam Cohendcd297f2013-06-18 13:13:40 -07003837 int count = orderedScreenIds.size();
3838 for (int i = 0; i < count; i++) {
Adam Cohen89bddfa2013-08-20 11:57:13 -07003839 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(orderedScreenIds.get(i));
Adam Cohendcd297f2013-06-18 13:13:40 -07003840 }
Adam Cohendcd297f2013-06-18 13:13:40 -07003841 }
3842
Winson Chungd64d1762013-08-20 14:37:16 -07003843 public void bindAppsAdded(final ArrayList<Long> newScreens,
3844 final ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -07003845 final ArrayList<ItemInfo> addAnimated,
3846 final ArrayList<AppInfo> addedApps) {
Winson Chungd64d1762013-08-20 14:37:16 -07003847 Runnable r = new Runnable() {
3848 public void run() {
Winson Chungc58497e2013-09-03 17:48:37 -07003849 bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps);
Winson Chungd64d1762013-08-20 14:37:16 -07003850 }
3851 };
3852 if (waitUntilResume(r)) {
3853 return;
3854 }
3855
Winson Chungd64d1762013-08-20 14:37:16 -07003856 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08003857 if (newScreens != null) {
3858 bindAddScreens(newScreens);
3859 }
Winson Chungd64d1762013-08-20 14:37:16 -07003860
3861 // We add the items without animation on non-visible pages, and with
3862 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08003863 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003864 bindItems(addNotAnimated, 0,
3865 addNotAnimated.size(), false);
3866 }
Adam Cohen76a47a12014-02-05 11:47:43 -08003867 if (addAnimated != null && !addAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003868 bindItems(addAnimated, 0,
3869 addAnimated.size(), true);
3870 }
Winson Chungc58497e2013-09-03 17:48:37 -07003871
Winson Chung87412982013-10-03 18:34:14 -07003872 // Remove the extra empty screen
Adam Cohen689ff162014-05-08 17:27:56 -07003873 mWorkspace.removeExtraEmptyScreen(false, false);
Winson Chung87412982013-10-03 18:34:14 -07003874
Winson Chungb745afb2015-03-02 11:51:23 -08003875 if (addedApps != null && mAppsView != null) {
3876 mAppsView.addApps(addedApps);
Winson Chungc58497e2013-09-03 17:48:37 -07003877 }
Winson Chungd64d1762013-08-20 14:37:16 -07003878 }
3879
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003880 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003881 * Bind the items start-end from the list.
3882 *
3883 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003884 */
Tony Wickham0bb211a2015-10-02 16:22:08 -07003885 @Override
Winson Chung64359a52013-07-08 17:17:08 -07003886 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end,
3887 final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07003888 Runnable r = new Runnable() {
3889 public void run() {
3890 bindItems(shortcuts, start, end, forceAnimateIcons);
3891 }
3892 };
3893 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003894 return;
3895 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003896
Winson Chungf0c6ae02012-03-21 16:10:31 -07003897 // Get the list of added shortcuts and intersect them with the set of shortcuts here
Winson Chung64359a52013-07-08 17:17:08 -07003898 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
3899 final Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chung997a9232013-07-24 15:33:46 -07003900 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07003901 Workspace workspace = mWorkspace;
Winson Chung997a9232013-07-24 15:33:46 -07003902 long newShortcutsScreenId = -1;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003903 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003904 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003905
3906 // Short circuit if we are loading dock items for a configuration which has no dock
3907 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3908 mHotseat == null) {
3909 continue;
3910 }
3911
Sunny Goyal639e9062015-08-19 19:17:06 -07003912 final View view;
Joe Onorato9c1289c2009-08-17 11:03:03 -04003913 switch (item.itemType) {
3914 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3915 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07003916 ShortcutInfo info = (ShortcutInfo) item;
Sunny Goyal639e9062015-08-19 19:17:06 -07003917 view = createShortcut(info);
Adam Cohendcd297f2013-06-18 13:13:40 -07003918
Winson Chung64359a52013-07-08 17:17:08 -07003919 /*
3920 * TODO: FIX collision case
3921 */
Winson Chungce376632013-07-11 16:12:41 -07003922 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
3923 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
3924 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07003925 View v = cl.getChildAt(item.cellX, item.cellY);
3926 Object tag = v.getTag();
3927 String desc = "Collision while binding workspace item: " + item
3928 + ". Collides with " + tag;
3929 if (LauncherAppState.isDogfoodBuild()) {
3930 throw (new RuntimeException(desc));
3931 } else {
3932 Log.d(TAG, desc);
3933 }
Winson Chungce376632013-07-11 16:12:41 -07003934 }
Winson Chung64359a52013-07-08 17:17:08 -07003935 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003936 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003937 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Sunny Goyal639e9062015-08-19 19:17:06 -07003938 view = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003939 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003940 (FolderInfo) item, mIconCache);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003941 break;
Winson Chungc763c4e2013-07-19 13:49:06 -07003942 default:
3943 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04003944 }
Sunny Goyal639e9062015-08-19 19:17:06 -07003945
3946 workspace.addInScreenFromBind(view, item.container, item.screenId, item.cellX,
3947 item.cellY, 1, 1);
3948 if (animateIcons) {
3949 // Animate all the applications up now
3950 view.setAlpha(0f);
3951 view.setScaleX(0f);
3952 view.setScaleY(0f);
3953 bounceAnims.add(createNewAppBounceAnimation(view, i));
3954 newShortcutsScreenId = item.screenId;
3955 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003956 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003957
Winson Chung997a9232013-07-24 15:33:46 -07003958 if (animateIcons) {
3959 // Animate to the correct page
3960 if (newShortcutsScreenId > -1) {
3961 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Winson Chung94d67682013-09-25 16:29:40 -07003962 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId);
Winson Chungb2323832013-10-03 15:22:09 -07003963 final Runnable startBounceAnimRunnable = new Runnable() {
3964 public void run() {
3965 anim.playTogether(bounceAnims);
3966 anim.start();
3967 }
3968 };
Winson Chung997a9232013-07-24 15:33:46 -07003969 if (newShortcutsScreenId != currentScreenId) {
Winson Chung94d67682013-09-25 16:29:40 -07003970 // We post the animation slightly delayed to prevent slowdowns
3971 // when we are loading right after we return to launcher.
3972 mWorkspace.postDelayed(new Runnable() {
3973 public void run() {
Ian Parkinson94449152014-01-21 13:09:59 +00003974 if (mWorkspace != null) {
3975 mWorkspace.snapToPage(newScreenIndex);
3976 mWorkspace.postDelayed(startBounceAnimRunnable,
3977 NEW_APPS_ANIMATION_DELAY);
3978 }
Winson Chung94d67682013-09-25 16:29:40 -07003979 }
3980 }, NEW_APPS_PAGE_MOVE_DELAY);
Winson Chungb2323832013-10-03 15:22:09 -07003981 } else {
3982 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07003983 }
3984 }
Winson Chung64359a52013-07-08 17:17:08 -07003985 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003986 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003987 }
3988
Joe Onorato9c1289c2009-08-17 11:03:03 -04003989 /**
3990 * Implementation of the method from LauncherModel.Callbacks.
3991 */
Sunny Goyale2df0622015-04-24 11:27:00 -07003992 public void bindFolders(final LongArrayMap<FolderInfo> folders) {
Winson Chungd64d1762013-08-20 14:37:16 -07003993 Runnable r = new Runnable() {
3994 public void run() {
3995 bindFolders(folders);
3996 }
3997 };
3998 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003999 return;
4000 }
Sunny Goyale2df0622015-04-24 11:27:00 -07004001 sFolders = folders.clone();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004002 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004003
4004 /**
4005 * Add the views for a widget to the workspace.
4006 *
4007 * Implementation of the method from LauncherModel.Callbacks.
4008 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07004009 public void bindAppWidget(final LauncherAppWidgetInfo item) {
Winson Chungd64d1762013-08-20 14:37:16 -07004010 Runnable r = new Runnable() {
4011 public void run() {
4012 bindAppWidget(item);
4013 }
4014 };
4015 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004016 return;
4017 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07004018
Daniel Sandler843e8602010-06-07 14:59:01 -04004019 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
4020 if (DEBUG_WIDGETS) {
4021 Log.d(TAG, "bindAppWidget: " + item);
4022 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004023 final Workspace workspace = mWorkspace;
4024
Adam Cohen59400422014-03-05 18:07:04 -08004025 LauncherAppWidgetProviderInfo appWidgetInfo =
Robin Lee26ace122015-03-16 19:41:43 +00004026 LauncherModel.getProviderInfo(this, item.providerName, item.user);
Adam Cohen59400422014-03-05 18:07:04 -08004027
Sunny Goyal9b4b0812014-10-08 10:47:28 -07004028 if (!mIsSafeModeEnabled
4029 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY) == 0)
Sunny Goyal84b4adc2015-08-12 15:12:16 -07004030 && (item.restoreStatus != LauncherAppWidgetInfo.RESTORE_COMPLETED)) {
4031
Sunny Goyalff572272014-07-23 13:58:07 -07004032 if (appWidgetInfo == null) {
4033 if (DEBUG_WIDGETS) {
4034 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
4035 + " belongs to component " + item.providerName
4036 + ", as the povider is null");
4037 }
4038 LauncherModel.deleteItemFromDatabase(this, item);
4039 return;
4040 }
Sunny Goyalff572272014-07-23 13:58:07 -07004041
Sunny Goyal84b4adc2015-08-12 15:12:16 -07004042 // If we do not have a valid id, try to bind an id.
4043 if ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_ID_NOT_VALID) != 0) {
4044 // Note: This assumes that the id remap broadcast is received before this step.
4045 // If that is not the case, the id remap will be ignored and user may see the
4046 // click to setup view.
4047 PendingAddWidgetInfo pendingInfo = new PendingAddWidgetInfo(this, appWidgetInfo, null);
4048 pendingInfo.spanX = item.spanX;
4049 pendingInfo.spanY = item.spanY;
4050 pendingInfo.minSpanX = item.minSpanX;
4051 pendingInfo.minSpanY = item.minSpanY;
4052 Bundle options = null;
4053 WidgetHostViewLoader.getDefaultOptionsForWidget(this, pendingInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07004054
Sunny Goyal84b4adc2015-08-12 15:12:16 -07004055 int newWidgetId = mAppWidgetHost.allocateAppWidgetId();
4056 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
4057 newWidgetId, appWidgetInfo, options);
4058
4059 // TODO consider showing a permission dialog when the widget is clicked.
4060 if (!success) {
4061 mAppWidgetHost.deleteAppWidgetId(newWidgetId);
4062 if (DEBUG_WIDGETS) {
4063 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
4064 + " belongs to component " + item.providerName
4065 + ", as the launcher is unable to bing a new widget id");
4066 }
4067 LauncherModel.deleteItemFromDatabase(this, item);
4068 return;
Sunny Goyalff572272014-07-23 13:58:07 -07004069 }
Sunny Goyal84b4adc2015-08-12 15:12:16 -07004070
4071 item.appWidgetId = newWidgetId;
4072
4073 // If the widget has a configure activity, it is still needs to set it up, otherwise
4074 // the widget is ready to go.
4075 item.restoreStatus = (appWidgetInfo.configure == null)
4076 ? LauncherAppWidgetInfo.RESTORE_COMPLETED
4077 : LauncherAppWidgetInfo.FLAG_UI_NOT_READY;
4078
4079 LauncherModel.updateItemInDatabase(this, item);
4080 } else if (((item.restoreStatus & LauncherAppWidgetInfo.FLAG_UI_NOT_READY) != 0)
4081 && (appWidgetInfo.configure == null)) {
4082 // If the ID is already valid, verify if we need to configure or not.
4083 item.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
4084 LauncherModel.updateItemInDatabase(this, item);
Sunny Goyalff572272014-07-23 13:58:07 -07004085 }
Sunny Goyalff572272014-07-23 13:58:07 -07004086 }
4087
Sunny Goyal9b4b0812014-10-08 10:47:28 -07004088 if (!mIsSafeModeEnabled && item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
Sunny Goyal651077b2014-06-30 14:15:31 -07004089 final int appWidgetId = item.appWidgetId;
Sunny Goyal651077b2014-06-30 14:15:31 -07004090 if (DEBUG_WIDGETS) {
Adam Cohen59400422014-03-05 18:07:04 -08004091 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component "
4092 + appWidgetInfo.provider);
Sunny Goyal651077b2014-06-30 14:15:31 -07004093 }
Daniel Sandler843e8602010-06-07 14:59:01 -04004094
Sunny Goyal56c73602015-09-25 12:55:01 -07004095 // Verify that we own the widget
4096 AppWidgetProviderInfo info = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
4097 if (info == null || appWidgetInfo == null ||
4098 !info.provider.equals(appWidgetInfo.provider)) {
4099 Log.e(TAG, "Removing invalid widget: id=" + item.appWidgetId);
4100 deleteWidgetInfo(item);
4101 return;
4102 }
4103
Sunny Goyal651077b2014-06-30 14:15:31 -07004104 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
Sunny Goyal233ee962015-08-03 13:05:01 -07004105 item.minSpanX = appWidgetInfo.minSpanX;
4106 item.minSpanY = appWidgetInfo.minSpanY;
Sunny Goyal651077b2014-06-30 14:15:31 -07004107 } else {
4108 appWidgetInfo = null;
Sunny Goyal9b4b0812014-10-08 10:47:28 -07004109 PendingAppWidgetHostView view = new PendingAppWidgetHostView(this, item,
4110 mIsSafeModeEnabled);
Sunny Goyal0fc1be12014-08-11 17:05:23 -07004111 view.updateIcon(mIconCache);
4112 item.hostView = view;
Sunny Goyal651077b2014-06-30 14:15:31 -07004113 item.hostView.updateAppWidget(null);
Sunny Goyalff572272014-07-23 13:58:07 -07004114 item.hostView.setOnClickListener(this);
Sunny Goyal651077b2014-06-30 14:15:31 -07004115 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004116
Sunny Goyal25c2e3e2015-10-28 23:28:21 -07004117 addAppWidgetToWorkspace(item, appWidgetInfo, false);
Joe Onorato9c1289c2009-08-17 11:03:03 -04004118 workspace.requestLayout();
4119
Daniel Sandler843e8602010-06-07 14:59:01 -04004120 if (DEBUG_WIDGETS) {
4121 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
4122 + (SystemClock.uptimeMillis()-start) + "ms");
4123 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004124 }
4125
Sunny Goyalff572272014-07-23 13:58:07 -07004126 /**
4127 * Restores a pending widget.
4128 *
4129 * @param appWidgetId The app widget id
4130 * @param cellInfo The position on screen where to create the widget.
4131 */
4132 private void completeRestoreAppWidget(final int appWidgetId) {
4133 LauncherAppWidgetHostView view = mWorkspace.getWidgetForAppWidgetId(appWidgetId);
4134 if ((view == null) || !(view instanceof PendingAppWidgetHostView)) {
4135 Log.e(TAG, "Widget update called, when the widget no longer exists.");
4136 return;
4137 }
4138
Sunny Goyal0fc1be12014-08-11 17:05:23 -07004139 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) view.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07004140 info.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
4141
4142 mWorkspace.reinflateWidgetsIfNecessary();
4143 LauncherModel.updateItemInDatabase(this, info);
4144 }
4145
Adam Cohen1462de32012-07-24 22:34:36 -07004146 public void onPageBoundSynchronously(int page) {
4147 mSynchronouslyBoundPages.add(page);
4148 }
4149
Joe Onorato9c1289c2009-08-17 11:03:03 -04004150 /**
4151 * Callback saying that there aren't any more items to bind.
4152 *
4153 * Implementation of the method from LauncherModel.Callbacks.
4154 */
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004155 public void finishBindingItems() {
Winson Chungd64d1762013-08-20 14:37:16 -07004156 Runnable r = new Runnable() {
4157 public void run() {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004158 finishBindingItems();
Winson Chungd64d1762013-08-20 14:37:16 -07004159 }
4160 };
4161 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004162 return;
4163 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004164 if (mSavedState != null) {
4165 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07004166 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004167 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004168 mSavedState = null;
4169 }
4170
Adam Cohen1462de32012-07-24 22:34:36 -07004171 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004172
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004173 setWorkspaceLoading(false);
Adam Cohen3ed316a2014-07-23 18:21:20 -07004174 sendLoadingCompleteBroadcastIfNecessary();
Adam Cohendb364c32014-05-20 14:23:40 -07004175
4176 // If we received the result of any pending adds while the loader was running (e.g. the
4177 // widget configuration forced an orientation change), process them now.
4178 if (sPendingAddItem != null) {
4179 final long screenId = completeAdd(sPendingAddItem);
4180
4181 // TODO: this moves the user to the page where the pending item was added. Ideally,
4182 // the screen would be guaranteed to exist after bind, and the page would be set through
4183 // the workspace restore process.
4184 mWorkspace.post(new Runnable() {
4185 @Override
4186 public void run() {
4187 mWorkspace.snapToScreenId(screenId);
4188 }
4189 });
4190 sPendingAddItem = null;
4191 }
4192
Sunny Goyal756adbc2015-04-16 15:20:51 -07004193 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
Adam Cohen9211d422014-10-07 18:14:53 -07004194
4195 if (mLauncherCallbacks != null) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004196 mLauncherCallbacks.finishBindingItems(false);
Adam Cohen9211d422014-10-07 18:14:53 -07004197 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004198 }
4199
Adam Cohen3ed316a2014-07-23 18:21:20 -07004200 private void sendLoadingCompleteBroadcastIfNecessary() {
4201 if (!mSharedPrefs.getBoolean(FIRST_LOAD_COMPLETE, false)) {
4202 String permission =
4203 getResources().getString(R.string.receive_first_load_broadcast_permission);
4204 Intent intent = new Intent(ACTION_FIRST_LOAD_COMPLETE);
4205 sendBroadcast(intent, permission);
4206 SharedPreferences.Editor editor = mSharedPrefs.edit();
4207 editor.putBoolean(FIRST_LOAD_COMPLETE, true);
4208 editor.apply();
4209 }
4210 }
4211
Winson Chunga0b7e862013-09-05 16:03:15 -07004212 public boolean isAllAppsButtonRank(int rank) {
4213 if (mHotseat != null) {
4214 return mHotseat.isAllAppsButtonRank(rank);
4215 }
4216 return false;
4217 }
4218
Winson Chunga2413752012-04-03 14:22:34 -07004219 private boolean canRunNewAppsAnimation() {
4220 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
Sunny Goyal639e9062015-08-19 19:17:06 -07004221 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000)
4222 && (mClings == null || !mClings.isVisible());
Winson Chunga2413752012-04-03 14:22:34 -07004223 }
4224
Winson Chungc9168342013-06-26 14:54:55 -07004225 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
4226 ValueAnimator bounceAnim = LauncherAnimUtils.ofPropertyValuesHolder(v,
4227 PropertyValuesHolder.ofFloat("alpha", 1f),
4228 PropertyValuesHolder.ofFloat("scaleX", 1f),
4229 PropertyValuesHolder.ofFloat("scaleY", 1f));
4230 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
4231 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
Sunny Goyal5a1f53b2015-05-27 10:24:24 -07004232 bounceAnim.setInterpolator(new OvershootInterpolator(BOUNCE_ANIMATION_TENSION));
Winson Chungc9168342013-06-26 14:54:55 -07004233 return bounceAnim;
4234 }
4235
Adam Cohen27772732013-11-11 14:00:56 +00004236 public boolean useVerticalBarLayout() {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07004237 return mDeviceProfile.isVerticalBarLayout();
Adam Cohen27772732013-11-11 14:00:56 +00004238 }
4239
Tony Wickham3a3517f2015-10-06 11:27:04 -07004240 /** Returns the search bar bounds in pixels. */
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004241 protected Rect getSearchBarBounds() {
Sunny Goyalc6205602015-05-21 20:46:33 -07004242 return mDeviceProfile.getSearchBarBounds(Utilities.isRtl(getResources()));
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004243 }
4244
Tony Wickham55616cd2015-09-23 14:55:17 -07004245 public int getSearchBarHeight() {
4246 if (mLauncherCallbacks != null) {
4247 return mLauncherCallbacks.getSearchBarHeight();
4248 }
4249 return LauncherCallbacks.SEARCH_BAR_HEIGHT_NORMAL;
4250 }
4251
Winson Chung88fa7412015-08-03 14:25:28 -07004252 public void bindSearchProviderChanged() {
Sunny Goyal594d76d2014-11-06 10:12:54 -08004253 if (mSearchDropTargetBar == null) {
4254 return;
Winson Chungadf0c182012-08-23 14:59:07 -07004255 }
Sunny Goyal594d76d2014-11-06 10:12:54 -08004256 if (mQsb != null) {
4257 mSearchDropTargetBar.removeView(mQsb);
4258 mQsb = null;
4259 }
Adam Cohenb0df1b02015-03-18 22:21:40 -07004260 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004261 }
4262
Amith Yamasani6d7fe502010-11-16 09:05:07 -08004263 /**
Winson Chungbb785c62015-05-05 10:05:08 -07004264 * A runnable that we can dequeue and re-enqueue when all applications are bound (to prevent
4265 * multiple calls to bind the same list.)
4266 */
4267 @Thunk ArrayList<AppInfo> mTmpAppsList;
4268 private Runnable mBindAllApplicationsRunnable = new Runnable() {
4269 public void run() {
4270 bindAllApplications(mTmpAppsList);
4271 mTmpAppsList = null;
4272 }
4273 };
4274
4275 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004276 * Add the icons for all apps.
4277 *
4278 * Implementation of the method from LauncherModel.Callbacks.
4279 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004280 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Winson Chungbb785c62015-05-05 10:05:08 -07004281 if (waitUntilResume(mBindAllApplicationsRunnable, true)) {
4282 mTmpAppsList = apps;
4283 return;
4284 }
4285
Winson Chungb745afb2015-03-02 11:51:23 -08004286 if (mAppsView != null) {
4287 mAppsView.setApps(apps);
4288 }
Adam Cohen9211d422014-10-07 18:14:53 -07004289 if (mLauncherCallbacks != null) {
4290 mLauncherCallbacks.bindAllApplications(apps);
4291 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004292 }
4293
4294 /**
4295 * A package was updated.
4296 *
4297 * Implementation of the method from LauncherModel.Callbacks.
4298 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004299 public void bindAppsUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004300 Runnable r = new Runnable() {
4301 public void run() {
4302 bindAppsUpdated(apps);
4303 }
4304 };
4305 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004306 return;
4307 }
4308
Winson Chungb745afb2015-03-02 11:51:23 -08004309 if (mAppsView != null) {
4310 mAppsView.updateApps(apps);
Winson Chungc58497e2013-09-03 17:48:37 -07004311 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004312 }
4313
Sunny Goyal4390ace2014-10-13 11:33:11 -07004314 @Override
4315 public void bindWidgetsRestored(final ArrayList<LauncherAppWidgetInfo> widgets) {
4316 Runnable r = new Runnable() {
4317 public void run() {
4318 bindWidgetsRestored(widgets);
4319 }
4320 };
4321 if (waitUntilResume(r)) {
4322 return;
4323 }
4324 mWorkspace.widgetsRestored(widgets);
4325 }
4326
Joe Onorato9c1289c2009-08-17 11:03:03 -04004327 /**
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004328 * Some shortcuts were updated in the background.
4329 *
4330 * Implementation of the method from LauncherModel.Callbacks.
4331 */
Sunny Goyal4390ace2014-10-13 11:33:11 -07004332 @Override
4333 public void bindShortcutsChanged(final ArrayList<ShortcutInfo> updated,
4334 final ArrayList<ShortcutInfo> removed, final UserHandleCompat user) {
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004335 Runnable r = new Runnable() {
4336 public void run() {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004337 bindShortcutsChanged(updated, removed, user);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004338 }
4339 };
4340 if (waitUntilResume(r)) {
4341 return;
4342 }
4343
Sunny Goyal4390ace2014-10-13 11:33:11 -07004344 if (!updated.isEmpty()) {
4345 mWorkspace.updateShortcuts(updated);
4346 }
4347
4348 if (!removed.isEmpty()) {
4349 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4350 for (ShortcutInfo si : removed) {
4351 removedComponents.add(si.getTargetComponent());
4352 }
4353 mWorkspace.removeItemsByComponentName(removedComponents, user);
4354 // Notify the drag controller
4355 mDragController.onAppsRemoved(new ArrayList<String>(), removedComponents);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004356 }
4357 }
4358
4359 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004360 * Update the state of a package, typically related to install state.
4361 *
4362 * Implementation of the method from LauncherModel.Callbacks.
4363 */
Sunny Goyale755d462014-07-22 13:48:29 -07004364 @Override
Sunny Goyal756adbc2015-04-16 15:20:51 -07004365 public void bindRestoreItemsChange(final HashSet<ItemInfo> updates) {
4366 Runnable r = new Runnable() {
4367 public void run() {
4368 bindRestoreItemsChange(updates);
4369 }
4370 };
4371 if (waitUntilResume(r)) {
4372 return;
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004373 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004374
Sunny Goyal756adbc2015-04-16 15:20:51 -07004375 mWorkspace.updateRestoreItems(updates);
Sunny Goyala22666f2014-09-18 13:25:15 -07004376 }
4377
4378 /**
Winson Chung83892cc2013-05-01 16:53:33 -07004379 * A package was uninstalled. We take both the super set of packageNames
4380 * in addition to specific applications to remove, the reason being that
4381 * this can be called when a package is updated as well. In that scenario,
4382 * we only remove specific components from the workspace, where as
4383 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004384 *
Sunny Goyal1a745e82014-10-02 15:58:31 -07004385 * @param reason if non-zero, the icons are not permanently removed, rather marked as disabled.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004386 * Implementation of the method from LauncherModel.Callbacks.
4387 */
Sunny Goyal1a745e82014-10-02 15:58:31 -07004388 @Override
Winson Chung83892cc2013-05-01 16:53:33 -07004389 public void bindComponentsRemoved(final ArrayList<String> packageNames,
Sunny Goyal1a745e82014-10-02 15:58:31 -07004390 final ArrayList<AppInfo> appInfos, final UserHandleCompat user, final int reason) {
Winson Chungd64d1762013-08-20 14:37:16 -07004391 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004392 public void run() {
Sunny Goyal1a745e82014-10-02 15:58:31 -07004393 bindComponentsRemoved(packageNames, appInfos, user, reason);
Winson Chung83892cc2013-05-01 16:53:33 -07004394 }
Winson Chungd64d1762013-08-20 14:37:16 -07004395 };
4396 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07004397 return;
4398 }
4399
Sunny Goyal1a745e82014-10-02 15:58:31 -07004400 if (reason == 0) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004401 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4402 for (AppInfo info : appInfos) {
4403 removedComponents.add(info.componentName);
4404 }
Sunny Goyal1a745e82014-10-02 15:58:31 -07004405 if (!packageNames.isEmpty()) {
4406 mWorkspace.removeItemsByPackageName(packageNames, user);
4407 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004408 if (!removedComponents.isEmpty()) {
4409 mWorkspace.removeItemsByComponentName(removedComponents, user);
Sunny Goyal1a745e82014-10-02 15:58:31 -07004410 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004411 // Notify the drag controller
4412 mDragController.onAppsRemoved(packageNames, removedComponents);
4413
Sunny Goyal1a745e82014-10-02 15:58:31 -07004414 } else {
4415 mWorkspace.disableShortcutsByPackageName(packageNames, user, reason);
Joe Onorato36115782010-06-17 13:28:48 -04004416 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07004417
Winson Chungdf95eb12013-10-16 14:57:07 -07004418 // Update AllApps
Winson Chungb745afb2015-03-02 11:51:23 -08004419 if (mAppsView != null) {
4420 mAppsView.removeApps(appInfos);
Winson Chungc58497e2013-09-03 17:48:37 -07004421 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004422 }
Joe Onoratobe386092009-11-17 17:32:16 -08004423
Michael Jurkac402cd92013-05-20 15:49:32 +02004424 private Runnable mBindPackagesUpdatedRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004425 public void run() {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004426 bindAllPackages(mWidgetsModel);
Winson Chung83892cc2013-05-01 16:53:33 -07004427 }
Michael Jurkac402cd92013-05-20 15:49:32 +02004428 };
Hyunyoung Song3f471442015-04-08 19:01:34 -07004429
Hyunyoung Song8821ca92015-05-04 16:28:20 -07004430 @Override
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004431 public void bindAllPackages(final WidgetsModel model) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004432 if (waitUntilResume(mBindPackagesUpdatedRunnable, true)) {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004433 mWidgetsModel = model;
Winson Chung83892cc2013-05-01 16:53:33 -07004434 return;
4435 }
4436
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004437 if (mWidgetsView != null && model != null) {
4438 mWidgetsView.addWidgets(model);
4439 mWidgetsModel = null;
Winson Chung785d2eb2011-04-14 16:08:02 -07004440 }
Winson Chung80baf5a2010-08-09 16:03:15 -07004441 }
4442
Winson Chung400438b2011-01-16 17:53:48 -08004443 private int mapConfigurationOriActivityInfoOri(int configOri) {
4444 final Display d = getWindowManager().getDefaultDisplay();
4445 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
4446 switch (d.getRotation()) {
4447 case Surface.ROTATION_0:
4448 case Surface.ROTATION_180:
4449 // We are currently in the same basic orientation as the natural orientation
4450 naturalOri = configOri;
4451 break;
4452 case Surface.ROTATION_90:
4453 case Surface.ROTATION_270:
4454 // We are currently in the other basic orientation to the natural orientation
4455 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
4456 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
4457 break;
4458 }
4459
4460 int[] oriMap = {
4461 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
4462 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
4463 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
4464 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
4465 };
4466 // Since the map starts at portrait, we need to offset if this device's natural orientation
4467 // is landscape.
4468 int indexOffset = 0;
4469 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
4470 indexOffset = 1;
4471 }
4472 return oriMap[(d.getRotation() + indexOffset) % 4];
4473 }
Adam Cohen446e9402011-09-15 18:21:21 -07004474
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004475 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR2)
Winson Chung4b919f82012-05-01 10:44:08 -07004476 public void lockScreenOrientation() {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004477 if (mRotationEnabled) {
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004478 if (Utilities.ATLEAST_JB_MR2) {
4479 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LOCKED);
4480 } else {
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004481 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
4482 .getConfiguration().orientation));
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004483 }
Winson Chung4b919f82012-05-01 10:44:08 -07004484 }
4485 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004486
Winson Chung4b919f82012-05-01 10:44:08 -07004487 public void unlockScreenOrientation(boolean immediate) {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004488 if (mRotationEnabled) {
Winson Chung4b919f82012-05-01 10:44:08 -07004489 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07004490 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07004491 } else {
4492 mHandler.postDelayed(new Runnable() {
4493 public void run() {
4494 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4495 }
4496 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07004497 }
Winson Chung4b919f82012-05-01 10:44:08 -07004498 }
Winson Chung400438b2011-01-16 17:53:48 -08004499 }
4500
Winson Chunge43a1e72014-01-15 10:33:02 -08004501 protected boolean isLauncherPreinstalled() {
Adam Cohen9211d422014-10-07 18:14:53 -07004502 if (mLauncherCallbacks != null) {
4503 return mLauncherCallbacks.isLauncherPreinstalled();
4504 }
Winson Chunge43a1e72014-01-15 10:33:02 -08004505 PackageManager pm = getPackageManager();
4506 try {
4507 ApplicationInfo ai = pm.getApplicationInfo(getComponentName().getPackageName(), 0);
4508 if ((ai.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
4509 return true;
4510 } else {
4511 return false;
4512 }
4513 } catch (NameNotFoundException e) {
4514 e.printStackTrace();
4515 return false;
4516 }
4517 }
4518
Adam Cohenea90f832014-05-21 15:03:34 -07004519 /**
4520 * This method indicates whether or not we should suggest default wallpaper dimensions
4521 * when our wallpaper cropper was not yet used to set a wallpaper.
4522 */
4523 protected boolean overrideWallpaperDimensions() {
Adam Cohen9211d422014-10-07 18:14:53 -07004524 if (mLauncherCallbacks != null) {
4525 return mLauncherCallbacks.overrideWallpaperDimensions();
4526 }
Adam Cohenea90f832014-05-21 15:03:34 -07004527 return true;
4528 }
4529
Adam Cohen432609a2014-03-13 17:03:22 -07004530 /**
4531 * To be overridden by subclasses to indicate that there is an activity to launch
4532 * before showing the standard launcher experience.
4533 */
4534 protected boolean hasFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004535 if (mLauncherCallbacks != null) {
4536 return mLauncherCallbacks.hasFirstRunActivity();
4537 }
Adam Cohen432609a2014-03-13 17:03:22 -07004538 return false;
4539 }
4540
4541 /**
4542 * To be overridden by subclasses to launch any first run activity
4543 */
4544 protected Intent getFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004545 if (mLauncherCallbacks != null) {
4546 return mLauncherCallbacks.getFirstRunActivity();
4547 }
Adam Cohen432609a2014-03-13 17:03:22 -07004548 return null;
4549 }
4550
Winson Chunga6945242014-01-08 14:04:34 -08004551 private boolean shouldRunFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004552 return !ActivityManager.isRunningInTestHarness() &&
4553 !mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
Winson Chunga6945242014-01-08 14:04:34 -08004554 }
4555
Adam Cohen4a9423d2014-03-28 14:22:31 -07004556 protected boolean hasRunFirstRunActivity() {
4557 return mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
4558 }
4559
Adam Cohen432609a2014-03-13 17:03:22 -07004560 public boolean showFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004561 if (shouldRunFirstRunActivity() &&
4562 hasFirstRunActivity()) {
Winson Chunga6945242014-01-08 14:04:34 -08004563 Intent firstRunIntent = getFirstRunActivity();
4564 if (firstRunIntent != null) {
4565 startActivity(firstRunIntent);
4566 markFirstRunActivityShown();
Adam Cohen432609a2014-03-13 17:03:22 -07004567 return true;
Winson Chunga6945242014-01-08 14:04:34 -08004568 }
4569 }
Adam Cohen432609a2014-03-13 17:03:22 -07004570 return false;
Winson Chunga6945242014-01-08 14:04:34 -08004571 }
4572
4573 private void markFirstRunActivityShown() {
4574 SharedPreferences.Editor editor = mSharedPrefs.edit();
4575 editor.putBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, true);
4576 editor.apply();
4577 }
4578
Adam Cohen432609a2014-03-13 17:03:22 -07004579 /**
4580 * To be overridden by subclasses to indicate that there is an in-activity full-screen intro
4581 * screen that must be displayed and dismissed.
4582 */
4583 protected boolean hasDismissableIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004584 if (mLauncherCallbacks != null) {
4585 return mLauncherCallbacks.hasDismissableIntroScreen();
4586 }
Adam Cohen432609a2014-03-13 17:03:22 -07004587 return false;
4588 }
4589
4590 /**
4591 * Full screen intro screen to be shown and dismissed before the launcher can be used.
4592 */
4593 protected View getIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004594 if (mLauncherCallbacks != null) {
4595 return mLauncherCallbacks.getIntroScreen();
4596 }
Adam Cohen432609a2014-03-13 17:03:22 -07004597 return null;
4598 }
4599
4600 /**
4601 * To be overriden by subclasses to indicate whether the in-activity intro screen has been
4602 * dismissed. This method is ignored if #hasDismissableIntroScreen returns false.
4603 */
4604 private boolean shouldShowIntroScreen() {
4605 return hasDismissableIntroScreen() &&
4606 !mSharedPrefs.getBoolean(INTRO_SCREEN_DISMISSED, false);
4607 }
4608
4609 protected void showIntroScreen() {
4610 View introScreen = getIntroScreen();
4611 changeWallpaperVisiblity(false);
4612 if (introScreen != null) {
4613 mDragLayer.showOverlayView(introScreen);
4614 }
Adam Cohenc3e12c72014-10-31 16:15:36 -07004615 if (mLauncherOverlayContainer != null) {
4616 mLauncherOverlayContainer.setVisibility(View.INVISIBLE);
4617 }
Adam Cohen432609a2014-03-13 17:03:22 -07004618 }
4619
4620 public void dismissIntroScreen() {
4621 markIntroScreenDismissed();
4622 if (showFirstRunActivity()) {
4623 // We delay hiding the intro view until the first run activity is showing. This
4624 // avoids a blip.
4625 mWorkspace.postDelayed(new Runnable() {
4626 @Override
4627 public void run() {
4628 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004629 if (mLauncherOverlayContainer != null) {
4630 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4631 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004632 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004633 }
4634 }, ACTIVITY_START_DELAY);
4635 } else {
4636 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004637 if (mLauncherOverlayContainer != null) {
4638 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4639 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004640 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004641 }
4642 changeWallpaperVisiblity(true);
4643 }
4644
4645 private void markIntroScreenDismissed() {
4646 SharedPreferences.Editor editor = mSharedPrefs.edit();
4647 editor.putBoolean(INTRO_SCREEN_DISMISSED, true);
4648 editor.apply();
4649 }
4650
Adam Cohen091440a2015-03-18 14:16:05 -07004651 @Thunk void showFirstRunClings() {
Sunny Goyal88d60f12014-09-08 03:47:29 -07004652 // The two first run cling paths are mutually exclusive, if the launcher is preinstalled
4653 // on the device, then we always show the first run cling experience (or if there is no
4654 // launcher2). Otherwise, we prompt the user upon started for migration
4655 LauncherClings launcherClings = new LauncherClings(this);
4656 if (launcherClings.shouldShowFirstRunOrMigrationClings()) {
Sunny Goyal639e9062015-08-19 19:17:06 -07004657 mClings = launcherClings;
Sunny Goyal88d60f12014-09-08 03:47:29 -07004658 if (mModel.canMigrateFromOldLauncherDb(this)) {
4659 launcherClings.showMigrationCling();
4660 } else {
Sunny Goyalaf0628f2014-09-19 10:14:48 -07004661 launcherClings.showLongPressCling(true);
Sunny Goyal88d60f12014-09-08 03:47:29 -07004662 }
4663 }
4664 }
4665
Winson Chunga6945242014-01-08 14:04:34 -08004666 void showWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004667 if (mWorkspace != null) mWorkspace.setAlpha(1f);
4668 if (mHotseat != null) mHotseat.setAlpha(1f);
4669 if (mPageIndicators != null) mPageIndicators.setAlpha(1f);
Winson Chung006ee262015-08-03 14:40:11 -07004670 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4671 SearchDropTargetBar.State.SEARCH_BAR, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004672 }
4673
4674 void hideWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004675 if (mWorkspace != null) mWorkspace.setAlpha(0f);
4676 if (mHotseat != null) mHotseat.setAlpha(0f);
4677 if (mPageIndicators != null) mPageIndicators.setAlpha(0f);
Winson Chung006ee262015-08-03 14:40:11 -07004678 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4679 SearchDropTargetBar.State.INVISIBLE, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004680 }
4681
Winson Chung5ffd51d2015-06-25 11:36:50 -07004682 // TODO: These method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004683 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Mathew Inwood72fbec12013-11-19 15:45:07 +00004684 public ItemInfo createAppDragInfo(Intent appLaunchIntent) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004685 // Called from search suggestion
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004686 UserHandleCompat user = null;
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004687 if (Utilities.ATLEAST_LOLLIPOP) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004688 UserHandle userHandle = appLaunchIntent.getParcelableExtra(Intent.EXTRA_USER);
4689 if (userHandle != null) {
4690 user = UserHandleCompat.fromUser(userHandle);
4691 }
4692 }
4693 return createAppDragInfo(appLaunchIntent, user);
Winson Chung5ffd51d2015-06-25 11:36:50 -07004694 }
4695
4696 // TODO: This method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004697 public ItemInfo createAppDragInfo(Intent intent, UserHandleCompat user) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004698 if (user == null) {
4699 user = UserHandleCompat.myUserHandle();
4700 }
4701
4702 // Called from search suggestion, add the profile extra to the intent to ensure that we
4703 // can launch it correctly
Kenny Guyed131872014-04-30 03:02:21 +01004704 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004705 LauncherActivityInfoCompat activityInfo = launcherApps.resolveActivity(intent, user);
Kenny Guyed131872014-04-30 03:02:21 +01004706 if (activityInfo == null) {
Mathew Inwood72fbec12013-11-19 15:45:07 +00004707 return null;
4708 }
Winson Chung5ffd51d2015-06-25 11:36:50 -07004709 return new AppInfo(this, activityInfo, user, mIconCache);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004710 }
4711
Winson Chung5ffd51d2015-06-25 11:36:50 -07004712 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004713 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4714 Bitmap icon) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004715 return new ShortcutInfo(shortcutIntent, caption, caption, icon,
Kenny Guyed131872014-04-30 03:02:21 +01004716 UserHandleCompat.myUserHandle());
4717 }
4718
Winson Chung5ffd51d2015-06-25 11:36:50 -07004719 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004720 public void startDrag(View dragView, ItemInfo dragInfo, DragSource source) {
4721 dragView.setTag(dragInfo);
Winson Chungbabb53e2014-04-14 17:12:49 -07004722 mWorkspace.onExternalDragStartedWithItem(dragView);
4723 mWorkspace.beginExternalDragShared(dragView, source);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004724 }
4725
Winson Chung5ffd51d2015-06-25 11:36:50 -07004726 protected void moveWorkspaceToDefaultScreen() {
4727 mWorkspace.moveToDefaultScreen(false);
4728 }
4729
Anjali Koppalf5d29132014-02-28 13:33:27 -08004730 @Override
4731 public void onPageSwitch(View newPage, int newPageIndex) {
Adam Cohen9211d422014-10-07 18:14:53 -07004732 if (mLauncherCallbacks != null) {
4733 mLauncherCallbacks.onPageSwitch(newPage, newPageIndex);
4734 }
Anjali Koppalf5d29132014-02-28 13:33:27 -08004735 }
4736
Winson Chung80baf5a2010-08-09 16:03:15 -07004737 /**
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004738 * Returns a FastBitmapDrawable with the icon, accurately sized.
4739 */
4740 public FastBitmapDrawable createIconDrawable(Bitmap icon) {
4741 FastBitmapDrawable d = new FastBitmapDrawable(icon);
4742 d.setFilterBitmap(true);
4743 resizeIconDrawable(d);
4744 return d;
4745 }
4746
4747 /**
4748 * Resizes an icon drawable to the correct icon size.
4749 */
Winson5fbe0742015-09-30 15:33:00 -07004750 public Drawable resizeIconDrawable(Drawable icon) {
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004751 icon.setBounds(0, 0, mDeviceProfile.iconSizePx, mDeviceProfile.iconSizePx);
Winson5fbe0742015-09-30 15:33:00 -07004752 return icon;
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004753 }
4754
4755 /**
Joe Onoratobe386092009-11-17 17:32:16 -08004756 * Prints out out state for debugging.
4757 */
4758 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04004759 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08004760 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08004761 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
4762 Log.d(TAG, "mRestoring=" + mRestoring);
4763 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
4764 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004765 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08004766 mModel.dumpState();
Hyunyoung Song3f471442015-04-08 19:01:34 -07004767 // TODO(hyunyoungs): add mWidgetsView.dumpState(); or mWidgetsModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07004768
Daniel Sandler325dc232013-06-05 22:57:57 -04004769 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08004770 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004771
4772 @Override
4773 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
4774 super.dump(prefix, fd, writer, args);
Adam Cohen4caf2982013-08-20 18:54:31 -07004775 synchronized (sDumpLogs) {
4776 writer.println(" ");
4777 writer.println("Debug logs: ");
4778 for (int i = 0; i < sDumpLogs.size(); i++) {
4779 writer.println(" " + sDumpLogs.get(i));
4780 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004781 }
Adam Cohen9211d422014-10-07 18:14:53 -07004782 if (mLauncherCallbacks != null) {
4783 mLauncherCallbacks.dump(prefix, fd, writer, args);
4784 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004785 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004786
4787 public static void dumpDebugLogsToConsole() {
Winson Chungede41292013-09-19 16:27:36 -07004788 if (DEBUG_DUMP_LOG) {
4789 synchronized (sDumpLogs) {
4790 Log.d(TAG, "");
4791 Log.d(TAG, "*********************");
4792 Log.d(TAG, "Launcher debug logs: ");
4793 for (int i = 0; i < sDumpLogs.size(); i++) {
4794 Log.d(TAG, " " + sDumpLogs.get(i));
4795 }
4796 Log.d(TAG, "*********************");
4797 Log.d(TAG, "");
Adam Cohen4caf2982013-08-20 18:54:31 -07004798 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004799 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004800 }
4801
4802 public static void addDumpLog(String tag, String log, boolean debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004803 addDumpLog(tag, log, null, debugLog);
4804 }
4805
4806 public static void addDumpLog(String tag, String log, Exception e, boolean debugLog) {
Adam Cohen4caf2982013-08-20 18:54:31 -07004807 if (debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004808 if (e != null) {
4809 Log.d(tag, log, e);
4810 } else {
4811 Log.d(tag, log);
4812 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004813 }
Winson Chungede41292013-09-19 16:27:36 -07004814 if (DEBUG_DUMP_LOG) {
4815 sDateStamp.setTime(System.currentTimeMillis());
4816 synchronized (sDumpLogs) {
Dan Sandler295ae182013-12-10 16:05:47 -05004817 sDumpLogs.add(sDateFormat.format(sDateStamp) + ": " + tag + ", " + log
4818 + (e == null ? "" : (", Exception: " + e)));
Adam Cohen4caf2982013-08-20 18:54:31 -07004819 }
Winson Chungede41292013-09-19 16:27:36 -07004820 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004821 }
4822
Adam Cohen59400422014-03-05 18:07:04 -08004823 public static CustomAppWidget getCustomAppWidget(String name) {
4824 return sCustomAppWidgets.get(name);
4825 }
4826
4827 public static HashMap<String, CustomAppWidget> getCustomAppWidgets() {
4828 return sCustomAppWidgets;
4829 }
4830
Winson Chungede41292013-09-19 16:27:36 -07004831 public void dumpLogsToLocalData() {
4832 if (DEBUG_DUMP_LOG) {
Michael Jurka43467462013-11-14 12:03:58 +01004833 new AsyncTask<Void, Void, Void>() {
4834 public Void doInBackground(Void ... args) {
Winson Chungede41292013-09-19 16:27:36 -07004835 boolean success = false;
4836 sDateStamp.setTime(sRunStart);
4837 String FILENAME = sDateStamp.getMonth() + "-"
4838 + sDateStamp.getDay() + "_"
4839 + sDateStamp.getHours() + "-"
4840 + sDateStamp.getMinutes() + "_"
4841 + sDateStamp.getSeconds() + ".txt";
4842
4843 FileOutputStream fos = null;
4844 File outFile = null;
4845 try {
4846 outFile = new File(getFilesDir(), FILENAME);
4847 outFile.createNewFile();
4848 fos = new FileOutputStream(outFile);
4849 } catch (Exception e) {
4850 e.printStackTrace();
4851 }
4852 if (fos != null) {
4853 PrintWriter writer = new PrintWriter(fos);
4854
4855 writer.println(" ");
4856 writer.println("Debug logs: ");
4857 synchronized (sDumpLogs) {
4858 for (int i = 0; i < sDumpLogs.size(); i++) {
4859 writer.println(" " + sDumpLogs.get(i));
4860 }
4861 }
4862 writer.close();
4863 }
4864 try {
4865 if (fos != null) {
4866 fos.close();
4867 success = true;
4868 }
4869 } catch (IOException e) {
4870 e.printStackTrace();
4871 }
Michael Jurka43467462013-11-14 12:03:58 +01004872 return null;
Winson Chungede41292013-09-19 16:27:36 -07004873 }
Sunny Goyal8ac727b2015-09-23 15:38:09 -07004874 }.executeOnExecutor(Utilities.THREAD_POOL_EXECUTOR);
Adam Cohen4caf2982013-08-20 18:54:31 -07004875 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004876 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004877}
Michael Jurka2763be32011-02-24 11:19:57 -08004878
Dan Sandlerd5024042014-01-09 15:01:33 -05004879interface DebugIntents {
4880 static final String DELETE_DATABASE = "com.android.launcher3.action.DELETE_DATABASE";
4881 static final String MIGRATE_DATABASE = "com.android.launcher3.action.MIGRATE_DATABASE";
Adam Cohen8b5b05b2014-01-10 21:42:39 +00004882}