blob: 0323e23a6c587b3b7688a92a4ba5be74e71a503d [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 }
Sunny Goyal655daae2015-12-08 09:28:23 -08002532
2533 // Recreate the QSB, as the widget has been reset.
2534 bindSearchProviderChanged();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002535 }
2536
2537 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002538 * Launches the intent referred by the clicked shortcut.
2539 *
2540 * @param v The view representing the clicked shortcut.
2541 */
2542 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002543 // Make sure that rogue clicks don't get through while allapps is launching, or after the
2544 // view has detached (it's possible for this to happen if the view is removed mid touch).
2545 if (v.getWindowToken() == null) {
2546 return;
2547 }
2548
Winson Chung9b0b2fe2012-02-24 13:03:34 -08002549 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002550 return;
2551 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07002552
Adam Cohen1697b792013-09-17 19:08:21 -07002553 if (v instanceof Workspace) {
2554 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002555 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002556 }
2557 return;
2558 }
2559
2560 if (v instanceof CellLayout) {
2561 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002562 showWorkspace(mWorkspace.indexOfChild(v), true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002563 }
2564 }
2565
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002566 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002567 if (tag instanceof ShortcutInfo) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002568 onClickAppShortcut(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002569 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002570 if (v instanceof FolderIcon) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002571 onClickFolderIcon(v);
Adam Cohena9cf38f2011-05-02 15:36:58 -07002572 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002573 } else if (v == mAllAppsButton) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002574 onClickAllAppsButton(v);
Sunny Goyal508da152014-08-14 10:53:27 -07002575 } else if (tag instanceof AppInfo) {
2576 startAppShortcutOrInfoActivity(v);
Sunny Goyalff572272014-07-23 13:58:07 -07002577 } else if (tag instanceof LauncherAppWidgetInfo) {
2578 if (v instanceof PendingAppWidgetHostView) {
2579 onClickPendingWidget((PendingAppWidgetHostView) v);
2580 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002581 }
2582 }
2583
Sunny Goyal70660032015-05-14 00:07:08 -07002584 @SuppressLint("ClickableViewAccessibility")
Michael Jurka0e260592010-06-30 17:07:39 -07002585 public boolean onTouch(View v, MotionEvent event) {
Michael Jurka0e260592010-06-30 17:07:39 -07002586 return false;
2587 }
2588
Michael Jurkaaf442092010-06-10 17:01:57 -07002589 /**
Sunny Goyalff572272014-07-23 13:58:07 -07002590 * Event handler for the app widget view which has not fully restored.
2591 */
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002592 public void onClickPendingWidget(final PendingAppWidgetHostView v) {
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002593 if (mIsSafeModeEnabled) {
2594 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2595 return;
2596 }
2597
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002598 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) v.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07002599 if (v.isReadyForClickSetup()) {
Sunny Goyalff572272014-07-23 13:58:07 -07002600 int widgetId = info.appWidgetId;
2601 AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
2602 if (appWidgetInfo != null) {
Adam Cohen59400422014-03-05 18:07:04 -08002603 mPendingAddWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(
2604 this, appWidgetInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07002605 mPendingAddInfo.copyFrom(info);
2606 mPendingAddWidgetId = widgetId;
2607
Sunny Goyalffe83f12014-08-14 17:39:34 -07002608 AppWidgetManagerCompat.getInstance(this).startConfigActivity(appWidgetInfo,
2609 info.appWidgetId, this, mAppWidgetHost, REQUEST_RECONFIGURE_APPWIDGET);
Sunny Goyalff572272014-07-23 13:58:07 -07002610 }
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002611 } else if (info.installProgress < 0) {
2612 // The install has not been queued
2613 final String packageName = info.providerName.getPackageName();
2614 showBrokenAppInstallDialog(packageName,
2615 new DialogInterface.OnClickListener() {
2616 public void onClick(DialogInterface dialog, int id) {
2617 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
2618 }
2619 });
2620 } else {
2621 // Download has started.
2622 final String packageName = info.providerName.getPackageName();
2623 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
Sunny Goyalff572272014-07-23 13:58:07 -07002624 }
2625 }
2626
2627 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002628 * Event handler for the "grid" button that appears on the home screen, which
2629 * enters all apps mode.
2630 *
2631 * @param v The view that was clicked.
2632 */
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002633 protected void onClickAllAppsButton(View v) {
2634 if (LOGD) Log.d(TAG, "onClickAllAppsButton");
Winson Chung76648c52015-07-10 14:33:23 -07002635 if (!isAppsViewVisible()) {
Winson Chung4ac30062015-05-08 17:34:17 -07002636 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07002637 true /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungbedf9232015-07-10 12:38:30 -07002638
2639 if (mLauncherCallbacks != null) {
2640 mLauncherCallbacks.onClickAllAppsButton(v);
2641 }
Winson Chung76648c52015-07-10 14:33:23 -07002642 }
2643 }
2644
2645 protected void onLongClickAllAppsButton(View v) {
2646 if (LOGD) Log.d(TAG, "onLongClickAllAppsButton");
2647 if (!isAppsViewVisible()) {
2648 showAppsView(true /* animated */, false /* resetListToTop */,
2649 true /* updatePredictedApps */, true /* focusSearchBar */);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002650 }
2651 }
2652
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002653 private void showBrokenAppInstallDialog(final String packageName,
2654 DialogInterface.OnClickListener onSearchClickListener) {
Sunny Goyale03b8122014-10-08 09:55:24 -07002655 new AlertDialog.Builder(this)
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002656 .setTitle(R.string.abandoned_promises_title)
2657 .setMessage(R.string.abandoned_promise_explanation)
2658 .setPositiveButton(R.string.abandoned_search, onSearchClickListener)
2659 .setNeutralButton(R.string.abandoned_clean_this,
2660 new DialogInterface.OnClickListener() {
2661 public void onClick(DialogInterface dialog, int id) {
2662 final UserHandleCompat user = UserHandleCompat.myUserHandle();
2663 mWorkspace.removeAbandonedPromise(packageName, user);
2664 }
2665 })
2666 .create().show();
2667 return;
2668 }
2669
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002670 /**
2671 * Event handler for an app shortcut click.
2672 *
2673 * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.
2674 */
Chris Wren40c5ed32014-06-24 18:24:23 -04002675 protected void onClickAppShortcut(final View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002676 if (LOGD) Log.d(TAG, "onClickAppShortcut");
2677 Object tag = v.getTag();
2678 if (!(tag instanceof ShortcutInfo)) {
2679 throw new IllegalArgumentException("Input must be a Shortcut");
2680 }
2681
2682 // Open shortcut
2683 final ShortcutInfo shortcut = (ShortcutInfo) tag;
Sunny Goyal1a745e82014-10-02 15:58:31 -07002684
2685 if (shortcut.isDisabled != 0) {
2686 int error = R.string.activity_not_available;
2687 if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_SAFEMODE) != 0) {
2688 error = R.string.safemode_shortcut_error;
2689 }
2690 Toast.makeText(this, error, Toast.LENGTH_SHORT).show();
2691 return;
2692 }
2693
Chris Wren40c5ed32014-06-24 18:24:23 -04002694 // Check for abandoned promise
Sunny Goyal34942622014-08-29 17:20:55 -07002695 if ((v instanceof BubbleTextView)
2696 && shortcut.isPromise()
2697 && !shortcut.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE)) {
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002698 showBrokenAppInstallDialog(
Sunny Goyal34942622014-08-29 17:20:55 -07002699 shortcut.getTargetComponent().getPackageName(),
Chris Wren40c5ed32014-06-24 18:24:23 -04002700 new DialogInterface.OnClickListener() {
2701 public void onClick(DialogInterface dialog, int id) {
Sunny Goyal508da152014-08-14 10:53:27 -07002702 startAppShortcutOrInfoActivity(v);
Chris Wren40c5ed32014-06-24 18:24:23 -04002703 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002704 });
Chris Wren40c5ed32014-06-24 18:24:23 -04002705 return;
2706 }
2707
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002708 // Start activities
Sunny Goyal508da152014-08-14 10:53:27 -07002709 startAppShortcutOrInfoActivity(v);
Adam Cohen9211d422014-10-07 18:14:53 -07002710
2711 if (mLauncherCallbacks != null) {
2712 mLauncherCallbacks.onClickAppShortcut(v);
2713 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002714 }
2715
Adam Cohen091440a2015-03-18 14:16:05 -07002716 @Thunk void startAppShortcutOrInfoActivity(View v) {
Chris Wren40c5ed32014-06-24 18:24:23 -04002717 Object tag = v.getTag();
Sunny Goyal508da152014-08-14 10:53:27 -07002718 final ShortcutInfo shortcut;
2719 final Intent intent;
2720 if (tag instanceof ShortcutInfo) {
2721 shortcut = (ShortcutInfo) tag;
2722 intent = shortcut.intent;
2723 int[] pos = new int[2];
2724 v.getLocationOnScreen(pos);
2725 intent.setSourceBounds(new Rect(pos[0], pos[1],
2726 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Chris Wren40c5ed32014-06-24 18:24:23 -04002727
Sunny Goyal508da152014-08-14 10:53:27 -07002728 } else if (tag instanceof AppInfo) {
2729 shortcut = null;
2730 intent = ((AppInfo) tag).intent;
2731 } else {
2732 throw new IllegalArgumentException("Input must be a Shortcut or AppInfo");
2733 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002734
2735 boolean success = startActivitySafely(v, intent, tag);
Winson Chung8f1eff72015-05-28 17:33:40 -07002736 mStats.recordLaunch(v, intent, shortcut);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002737
2738 if (success && v instanceof BubbleTextView) {
2739 mWaitingForResume = (BubbleTextView) v;
2740 mWaitingForResume.setStayPressed(true);
2741 }
2742 }
2743
2744 /**
2745 * Event handler for a folder icon click.
2746 *
2747 * @param v The view that was clicked. Must be an instance of {@link FolderIcon}.
2748 */
2749 protected void onClickFolderIcon(View v) {
2750 if (LOGD) Log.d(TAG, "onClickFolder");
2751 if (!(v instanceof FolderIcon)){
2752 throw new IllegalArgumentException("Input must be a FolderIcon");
2753 }
2754
Sunny Goyal317698b2015-07-29 11:45:41 -07002755 // TODO(sunnygoyal): Re-evaluate this code.
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002756 FolderIcon folderIcon = (FolderIcon) v;
2757 final FolderInfo info = folderIcon.getFolderInfo();
2758 Folder openFolder = mWorkspace.getFolderForTag(info);
2759
2760 // If the folder info reports that the associated folder is open, then verify that
2761 // it is actually opened. There have been a few instances where this gets out of sync.
2762 if (info.opened && openFolder == null) {
2763 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2764 + info.screenId + " (" + info.cellX + ", " + info.cellY + ")");
2765 info.opened = false;
2766 }
2767
2768 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
2769 // Close any open folder
2770 closeFolder();
2771 // Open the requested folder
2772 openFolder(folderIcon);
2773 } else {
2774 // Find the open folder...
2775 int folderScreen;
2776 if (openFolder != null) {
2777 folderScreen = mWorkspace.getPageForView(openFolder);
2778 // .. and close it
Sunny Goyal935fca12015-10-13 10:19:01 -07002779 closeFolder(openFolder, true);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002780 if (folderScreen != mWorkspace.getCurrentPage()) {
2781 // Close any folder open on the current screen
2782 closeFolder();
2783 // Pull the folder onto this screen
2784 openFolder(folderIcon);
2785 }
2786 }
2787 }
Adam Cohen9211d422014-10-07 18:14:53 -07002788
2789 if (mLauncherCallbacks != null) {
2790 mLauncherCallbacks.onClickFolderIcon(v);
2791 }
Michael Jurka5130e402011-10-13 04:55:35 -07002792 }
2793
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002794 /**
2795 * Event handler for the (Add) Widgets button that appears after a long press
2796 * on the home screen.
2797 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002798 protected void onClickAddWidgetButton(View view) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002799 if (LOGD) Log.d(TAG, "onClickAddWidgetButton");
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002800 if (mIsSafeModeEnabled) {
2801 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2802 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08002803 showWidgetsView(true /* animated */, true /* resetPageToZero */);
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002804 if (mLauncherCallbacks != null) {
2805 mLauncherCallbacks.onClickAddWidgetButton(view);
2806 }
Adam Cohen9211d422014-10-07 18:14:53 -07002807 }
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002808 }
2809
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002810 /**
2811 * Event handler for the wallpaper picker button that appears after a long press
2812 * on the home screen.
2813 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002814 protected void onClickWallpaperPicker(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002815 if (LOGD) Log.d(TAG, "onClickWallpaperPicker");
Tony Wickham3e776a82015-09-09 18:21:49 -07002816 int pageScroll = mWorkspace.getScrollForPage(mWorkspace.getPageNearestToCenterOfScreen());
2817 float offset = mWorkspace.mWallpaperOffset.wallpaperOffsetForScroll(pageScroll);
2818 startActivityForResult(new Intent(Intent.ACTION_SET_WALLPAPER).setPackage(getPackageName())
2819 .putExtra(WallpaperPickerActivity.EXTRA_WALLPAPER_OFFSET, offset),
Sunny Goyal6a1e95a2015-03-20 17:26:30 -07002820 REQUEST_PICK_WALLPAPER);
Adam Cohen9211d422014-10-07 18:14:53 -07002821
2822 if (mLauncherCallbacks != null) {
2823 mLauncherCallbacks.onClickWallpaperPicker(v);
2824 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002825 }
2826
2827 /**
2828 * Event handler for a click on the settings button that appears after a long press
2829 * on the home screen.
2830 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002831 protected void onClickSettingsButton(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002832 if (LOGD) Log.d(TAG, "onClickSettingsButton");
Adam Cohen9211d422014-10-07 18:14:53 -07002833 if (mLauncherCallbacks != null) {
2834 mLauncherCallbacks.onClickSettingsButton(v);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07002835 } else {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002836 startActivity(new Intent(this, SettingsActivity.class));
Adam Cohen9211d422014-10-07 18:14:53 -07002837 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002838 }
2839
Adam Cohen61f560d2013-09-30 15:58:20 -07002840 public View.OnTouchListener getHapticFeedbackTouchListener() {
2841 if (mHapticFeedbackTouchListener == null) {
2842 mHapticFeedbackTouchListener = new View.OnTouchListener() {
Sunny Goyal70660032015-05-14 00:07:08 -07002843 @SuppressLint("ClickableViewAccessibility")
Adam Cohen61f560d2013-09-30 15:58:20 -07002844 @Override
2845 public boolean onTouch(View v, MotionEvent event) {
2846 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
2847 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2848 }
2849 return false;
2850 }
2851 };
2852 }
2853 return mHapticFeedbackTouchListener;
2854 }
2855
Adam Cohen9211d422014-10-07 18:14:53 -07002856 public void onDragStarted(View view) {
2857 if (isOnCustomContent()) {
2858 // Custom content screen doesn't participate in drag and drop. If on custom
2859 // content screen, move to default.
2860 moveWorkspaceToDefaultScreen();
2861 }
2862
2863 if (mLauncherCallbacks != null) {
2864 mLauncherCallbacks.onDragStarted(view);
2865 }
2866 }
Anjali Koppal62d18ed2014-03-10 17:04:03 -07002867
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002868 /**
2869 * Called when the user stops interacting with the launcher.
2870 * This implies that the user is now on the homescreen and is not doing housekeeping.
2871 */
Adam Cohen9211d422014-10-07 18:14:53 -07002872 protected void onInteractionEnd() {
2873 if (mLauncherCallbacks != null) {
2874 mLauncherCallbacks.onInteractionEnd();
2875 }
2876 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002877
2878 /**
2879 * Called when the user starts interacting with the launcher.
2880 * The possible interactions are:
2881 * - open all apps
2882 * - reorder an app shortcut, or a widget
2883 * - open the overview mode.
2884 * This is a good time to stop doing things that only make sense
2885 * when the user is on the homescreen and not doing housekeeping.
2886 */
Adam Cohen9211d422014-10-07 18:14:53 -07002887 protected void onInteractionBegin() {
2888 if (mLauncherCallbacks != null) {
2889 mLauncherCallbacks.onInteractionBegin();
2890 }
2891 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002892
Winson Chungcd99cd32015-04-29 11:03:24 -07002893 /** Updates the interaction state. */
2894 public void updateInteraction(Workspace.State fromState, Workspace.State toState) {
Winson Chung83f59ab2015-05-05 17:21:58 -07002895 // Only update the interacting state if we are transitioning to/from a view with an
Winson Chungcd99cd32015-04-29 11:03:24 -07002896 // overlay
Winson Chungef7f8742015-06-04 17:18:17 -07002897 boolean fromStateWithOverlay = fromState != Workspace.State.NORMAL;
2898 boolean toStateWithOverlay = toState != Workspace.State.NORMAL;
Winson Chung83f59ab2015-05-05 17:21:58 -07002899 if (toStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002900 onInteractionBegin();
Winson Chung83f59ab2015-05-05 17:21:58 -07002901 } else if (fromStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002902 onInteractionEnd();
2903 }
2904 }
2905
Kenny Guyf07af7b2014-07-31 11:39:16 +01002906 void startApplicationDetailsActivity(ComponentName componentName, UserHandleCompat user) {
Kenny Guyf07af7b2014-07-31 11:39:16 +01002907 try {
2908 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Kenny Guyf07af7b2014-07-31 11:39:16 +01002909 launcherApps.showAppDetailsForProfile(componentName, user);
2910 } catch (SecurityException e) {
2911 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2912 Log.e(TAG, "Launcher does not have permission to launch settings");
2913 } catch (ActivityNotFoundException e) {
2914 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2915 Log.e(TAG, "Unable to launch settings");
2916 }
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002917 }
2918
Michael Jurka1e2f4652013-07-08 18:03:46 -07002919 // returns true if the activity was started
Kenny Guyd31df542014-06-30 15:12:11 +01002920 boolean startApplicationUninstallActivity(ComponentName componentName, int flags,
2921 UserHandleCompat user) {
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002922 if ((flags & AppInfo.DOWNLOADED_FLAG) == 0) {
Patrick Dubroy5539af72010-09-07 15:22:01 -07002923 // System applications cannot be installed. For now, show a toast explaining that.
2924 // We may give them the option of disabling apps this way.
2925 int messageId = R.string.uninstall_system_app_text;
2926 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
Michael Jurka1e2f4652013-07-08 18:03:46 -07002927 return false;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002928 } else {
Michael Jurka1e2f4652013-07-08 18:03:46 -07002929 String packageName = componentName.getPackageName();
2930 String className = componentName.getClassName();
Patrick Dubroy5539af72010-09-07 15:22:01 -07002931 Intent intent = new Intent(
2932 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002933 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2934 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Kenny Guyd31df542014-06-30 15:12:11 +01002935 if (user != null) {
2936 user.addToIntent(intent, Intent.EXTRA_USER);
2937 }
Patrick Dubroy5539af72010-09-07 15:22:01 -07002938 startActivity(intent);
Michael Jurka1e2f4652013-07-08 18:03:46 -07002939 return true;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002940 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002941 }
2942
Winson Chung8f1eff72015-05-28 17:33:40 -07002943 private boolean startActivity(View v, Intent intent, Object tag) {
Kenny Guyb6cc40b2014-05-13 15:58:58 +01002944 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002945 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002946 // Only launch using the new animation if the shortcut has not opted out (this is a
2947 // private contract between launcher and may be ignored in the future).
2948 boolean useLaunchAnimation = (v != null) &&
2949 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
Kenny Guyed131872014-04-30 03:02:21 +01002950 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
2951 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyed131872014-04-30 03:02:21 +01002952
Kenny Guy1317e2d2014-05-08 18:52:50 +01002953 UserHandleCompat user = null;
2954 if (intent.hasExtra(AppInfo.EXTRA_PROFILE)) {
2955 long serialNumber = intent.getLongExtra(AppInfo.EXTRA_PROFILE, -1);
2956 user = userManager.getUserForSerialNumber(serialNumber);
2957 }
2958
2959 Bundle optsBundle = null;
Winson Chung2672ff92012-05-04 16:22:30 -07002960 if (useLaunchAnimation) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002961 ActivityOptions opts = null;
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002962 if (Utilities.ATLEAST_MARSHMALLOW) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002963 int left = 0, top = 0;
2964 int width = v.getMeasuredWidth(), height = v.getMeasuredHeight();
2965 if (v instanceof TextView) {
2966 // Launch from center of icon, not entire view
Winson Chungb745afb2015-03-02 11:51:23 -08002967 Drawable icon = Workspace.getTextViewIcon((TextView) v);
2968 if (icon != null) {
2969 Rect bounds = icon.getBounds();
Chet Haasea8f996d2015-02-17 12:56:04 -08002970 left = (width - bounds.width()) / 2;
Winson Chungb745afb2015-03-02 11:51:23 -08002971 top = v.getPaddingTop();
Chet Haasea8f996d2015-02-17 12:56:04 -08002972 width = bounds.width();
2973 height = bounds.height();
2974 }
2975 }
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002976 opts = ActivityOptions.makeClipRevealAnimation(v, left, top, width, height);
2977 } else if (!Utilities.ATLEAST_LOLLIPOP) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002978 // Below L, we use a scale up animation
Adam Cohen2e52c902015-04-06 13:11:28 -07002979 opts = ActivityOptions.makeScaleUpAnimation(v, 0, 0,
Chet Haasea8f996d2015-02-17 12:56:04 -08002980 v.getMeasuredWidth(), v.getMeasuredHeight());
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002981 } else if (Utilities.ATLEAST_LOLLIPOP_MR1) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002982 // On L devices, we use the device default slide-up transition.
2983 // On L MR1 devices, we a custom version of the slide-up transition which
2984 // doesn't have the delay present in the device default.
2985 opts = ActivityOptions.makeCustomAnimation(this,
2986 R.anim.task_open_enter, R.anim.no_anim);
Chet Haasea8f996d2015-02-17 12:56:04 -08002987 }
Adam Cohen2e52c902015-04-06 13:11:28 -07002988 optsBundle = opts != null ? opts.toBundle() : null;
Adam Cohen6ea3b112014-06-11 11:38:49 -07002989 }
Kenny Guy1317e2d2014-05-08 18:52:50 +01002990
2991 if (user == null || user.equals(UserHandleCompat.myUserHandle())) {
2992 // Could be launching some bookkeeping activity
2993 startActivity(intent, optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002994 } else {
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002995 // TODO Component can be null when shortcuts are supported for secondary user
Kenny Guyc2bd8102014-06-30 12:30:31 +01002996 launcherApps.startActivityForProfile(intent.getComponent(), user,
2997 intent.getSourceBounds(), optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002998 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002999 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003000 } catch (SecurityException e) {
Sunny Goyal28c6b962015-10-12 11:42:05 -07003001 if (Utilities.ATLEAST_MARSHMALLOW && tag instanceof ItemInfo) {
3002 // Due to legacy reasons, direct call shortcuts require Launchers to have the
3003 // corresponding permission. Show the appropriate permission prompt if that
3004 // is the case.
3005 if (intent.getComponent() == null
3006 && Intent.ACTION_CALL.equals(intent.getAction())
3007 && checkSelfPermission(Manifest.permission.CALL_PHONE) !=
3008 PackageManager.PERMISSION_GRANTED) {
3009 // TODO: Rename sPendingAddItem to a generic name.
3010 sPendingAddItem = preparePendingAddArgs(REQUEST_PERMISSION_CALL_PHONE, intent,
3011 0, (ItemInfo) tag);
3012 requestPermissions(new String[]{Manifest.permission.CALL_PHONE},
3013 REQUEST_PERMISSION_CALL_PHONE);
3014 return false;
3015 }
3016 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003017 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08003018 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003019 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07003020 "or use the exported attribute for this activity. "
3021 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003022 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08003023 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003024 }
Winson Chungaafa03c2010-06-11 17:34:16 -07003025
Winson Chungbedf9232015-07-10 12:38:30 -07003026 public boolean startActivitySafely(View v, Intent intent, Object tag) {
Michael Jurka86a720e2012-05-09 11:23:23 -07003027 boolean success = false;
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07003028 if (mIsSafeModeEnabled && !Utilities.isSystemApp(this, intent)) {
3029 Toast.makeText(this, R.string.safemode_shortcut_error, Toast.LENGTH_SHORT).show();
3030 return false;
3031 }
Michael Jurka86a720e2012-05-09 11:23:23 -07003032 try {
3033 success = startActivity(v, intent, tag);
3034 } catch (ActivityNotFoundException e) {
3035 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
3036 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
3037 }
3038 return success;
3039 }
3040
Adam Cohen268c4752012-06-06 17:47:33 -07003041 /**
3042 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
3043 * in the DragLayer in the exact absolute location of the original FolderIcon.
3044 */
3045 private void copyFolderIconToImage(FolderIcon fi) {
3046 final int width = fi.getMeasuredWidth();
3047 final int height = fi.getMeasuredHeight();
3048
3049 // Lazy load ImageView, Bitmap and Canvas
3050 if (mFolderIconImageView == null) {
3051 mFolderIconImageView = new ImageView(this);
3052 }
3053 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
3054 mFolderIconBitmap.getHeight() != height) {
3055 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
3056 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
3057 }
3058
3059 DragLayer.LayoutParams lp;
3060 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
3061 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
3062 } else {
3063 lp = new DragLayer.LayoutParams(width, height);
3064 }
3065
Adam Cohen307fe232012-08-16 17:55:58 -07003066 // The layout from which the folder is being opened may be scaled, adjust the starting
3067 // view size by this scale factor.
3068 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07003069 lp.customPosition = true;
3070 lp.x = mRectForFolderAnimation.left;
3071 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07003072 lp.width = (int) (scale * width);
3073 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07003074
3075 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
3076 fi.draw(mFolderIconCanvas);
3077 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07003078 if (fi.getFolder() != null) {
3079 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
3080 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07003081 }
Adam Cohen268c4752012-06-06 17:47:33 -07003082 // Just in case this image view is still in the drag layer from a previous animation,
3083 // we remove it and re-add it.
3084 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
3085 mDragLayer.removeView(mFolderIconImageView);
3086 }
3087 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07003088 if (fi.getFolder() != null) {
3089 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07003090 }
Adam Cohen268c4752012-06-06 17:47:33 -07003091 }
3092
Adam Cohen2801caf2011-05-13 20:57:39 -07003093 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003094 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003095 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
3096 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
3097 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
3098
Adam Cohenc51934b2011-07-26 21:07:43 -07003099 FolderInfo info = (FolderInfo) fi.getTag();
3100 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3101 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07003102 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
3103 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07003104 }
3105
Adam Cohen268c4752012-06-06 17:47:33 -07003106 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
3107 copyFolderIconToImage(fi);
3108 fi.setVisibility(View.INVISIBLE);
3109
Michael Jurka2ecf9952012-06-18 12:52:28 -07003110 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003111 scaleX, scaleY);
Sunny Goyal9fc953b2015-08-17 12:24:25 -07003112 if (Utilities.ATLEAST_LOLLIPOP) {
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003113 oa.setInterpolator(new LogDecelerateInterpolator(100, 0));
3114 }
3115 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohen2801caf2011-05-13 20:57:39 -07003116 oa.start();
Tony Wickham112ac952015-11-12 12:31:50 -08003117 if (Utilities.isPowerSaverOn(this)) {
3118 // Animations are disabled in battery saver mode, so just skip to the end state.
3119 oa.end();
3120 }
Adam Cohen2801caf2011-05-13 20:57:39 -07003121 }
3122
Sunny Goyal935fca12015-10-13 10:19:01 -07003123 private void shrinkAndFadeInFolderIcon(final FolderIcon fi, boolean animate) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003124 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003125 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
3126 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
3127 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
3128
Adam Cohen268c4752012-06-06 17:47:33 -07003129 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07003130
Adam Cohen268c4752012-06-06 17:47:33 -07003131 // We remove and re-draw the FolderIcon in-case it has changed
3132 mDragLayer.removeView(mFolderIconImageView);
3133 copyFolderIconToImage(fi);
Michael Jurka2ecf9952012-06-18 12:52:28 -07003134 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003135 scaleX, scaleY);
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003136 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07003137 oa.addListener(new AnimatorListenerAdapter() {
3138 @Override
3139 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07003140 if (cl != null) {
3141 cl.clearFolderLeaveBehind();
3142 // Remove the ImageView copy of the FolderIcon and make the original visible.
3143 mDragLayer.removeView(mFolderIconImageView);
3144 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07003145 }
3146 }
3147 });
Adam Cohen2801caf2011-05-13 20:57:39 -07003148 oa.start();
Sunny Goyal935fca12015-10-13 10:19:01 -07003149 if (!animate) {
3150 oa.end();
3151 }
Adam Cohen2801caf2011-05-13 20:57:39 -07003152 }
3153
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003154 /**
Michael Jurka774bd372010-10-22 13:40:50 -07003155 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003156 * is animated relative to the specified View. If the View is null, no animation
3157 * is played.
3158 *
3159 * @param folderInfo The FolderInfo describing the folder to open.
3160 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07003161 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07003162 Folder folder = folderIcon.getFolder();
Sunny Goyalf4066152015-04-15 09:42:19 -07003163 Folder openFolder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
3164 if (openFolder != null && openFolder != folder) {
3165 // Close any open folder before opening a folder.
3166 closeFolder();
3167 }
3168
Adam Cohena9cf38f2011-05-02 15:36:58 -07003169 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003170
Adam Cohena9cf38f2011-05-02 15:36:58 -07003171 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003172
Sunny Goyalf4066152015-04-15 09:42:19 -07003173 // While the folder is open, the position of the icon cannot change.
3174 ((CellLayout.LayoutParams) folderIcon.getLayoutParams()).canReorder = false;
3175
Adam Cohen4554ee12011-08-03 16:13:21 -07003176 // Just verify that the folder hasn't already been added to the DragLayer.
3177 // There was a one-off crash where the folder had a parent already.
3178 if (folder.getParent() == null) {
3179 mDragLayer.addView(folder);
3180 mDragController.addDropTarget((DropTarget) folder);
3181 } else {
3182 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
3183 folder.getParent() + ").");
3184 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07003185 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07003186 growAndFadeOutFolderIcon(folderIcon);
Winson Chung83ca4802013-04-12 15:10:52 -07003187
3188 // Notify the accessibility manager that this folder "window" has appeared and occluded
3189 // the workspace items
3190 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
3191 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07003192 }
3193
3194 public void closeFolder() {
Sunny Goyal935fca12015-10-13 10:19:01 -07003195 closeFolder(true);
3196 }
3197
3198 public void closeFolder(boolean animate) {
Adam Cohen37c717f2013-11-26 11:50:15 -08003199 Folder folder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
Adam Cohen4554ee12011-08-03 16:13:21 -07003200 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07003201 if (folder.isEditingName()) {
3202 folder.dismissEditingName();
3203 }
Sunny Goyal935fca12015-10-13 10:19:01 -07003204 closeFolder(folder, animate);
Adam Cohen4554ee12011-08-03 16:13:21 -07003205 }
3206 }
3207
Sunny Goyal935fca12015-10-13 10:19:01 -07003208 public void closeFolder(Folder folder, boolean animate) {
Adam Cohen4554ee12011-08-03 16:13:21 -07003209 folder.getInfo().opened = false;
3210
3211 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
3212 if (parent != null) {
3213 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
Sunny Goyal935fca12015-10-13 10:19:01 -07003214 shrinkAndFadeInFolderIcon(fi, animate);
Sunny Goyalf4066152015-04-15 09:42:19 -07003215 if (fi != null) {
3216 ((CellLayout.LayoutParams) fi.getLayoutParams()).canReorder = true;
3217 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003218 }
Sunny Goyal935fca12015-10-13 10:19:01 -07003219 if (animate) {
3220 folder.animateClosed();
3221 } else {
Tony Wickham30bdd6e2015-11-17 17:59:26 -08003222 folder.close(false);
Sunny Goyal935fca12015-10-13 10:19:01 -07003223 }
Winson Chung83ca4802013-04-12 15:10:52 -07003224
Sunny Goyal935fca12015-10-13 10:19:01 -07003225 // Notify the accessibility manager that this folder "window" has disappeared and no
3226 // longer occludes the workspace items
Winson Chung83ca4802013-04-12 15:10:52 -07003227 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003228 }
3229
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003230 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07003231 if (!isDraggingEnabled()) return false;
3232 if (isWorkspaceLocked()) return false;
3233 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003234
Winson Chung76648c52015-07-10 14:33:23 -07003235 if (v == mAllAppsButton) {
3236 onLongClickAllAppsButton(v);
3237 return true;
3238 }
3239
Adam Cohen1697b792013-09-17 19:08:21 -07003240 if (v instanceof Workspace) {
3241 if (!mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003242 if (!mWorkspace.isTouchActive()) {
3243 showOverviewMode(true);
Adam Cohen93c97562013-09-26 13:48:01 -07003244 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3245 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
3246 return true;
3247 } else {
3248 return false;
3249 }
Adam Cohenaa4c8c12014-06-06 11:52:52 -07003250 } else {
3251 return false;
Adam Cohen1697b792013-09-17 19:08:21 -07003252 }
Adam Cohen1697b792013-09-17 19:08:21 -07003253 }
3254
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003255 CellLayout.CellInfo longClickCellInfo = null;
3256 View itemUnderLongClick = null;
3257 if (v.getTag() instanceof ItemInfo) {
3258 ItemInfo info = (ItemInfo) v.getTag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08003259 longClickCellInfo = new CellLayout.CellInfo(v, info);
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003260 itemUnderLongClick = longClickCellInfo.cell;
3261 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003262 }
3263
Winson Chung3d503fb2011-07-13 17:25:49 -07003264 // The hotseat touch handling does not go through Workspace, and we always allow long press
3265 // on hotseat items.
Dan Sandlere26d0942014-01-13 14:30:14 -05003266 final boolean inHotseat = isHotseatLayout(v);
Sunny Goyal8e2133b2015-05-06 13:39:07 -07003267 if (!mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07003268 if (itemUnderLongClick == null) {
Adam Cohend3ecce92013-09-16 14:58:00 -07003269 // User long pressed on empty space
3270 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3271 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Adam Cohend3ecce92013-09-16 14:58:00 -07003272 if (mWorkspace.isInOverviewMode()) {
3273 mWorkspace.startReordering(v);
3274 } else {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003275 showOverviewMode(true);
Adam Cohendedbd962013-07-11 14:21:49 -07003276 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003277 } else {
Dan Sandlere26d0942014-01-13 14:30:14 -05003278 final boolean isAllAppsButton = inHotseat && isAllAppsButtonRank(
3279 mHotseat.getOrderInHotseat(
3280 longClickCellInfo.cellX,
3281 longClickCellInfo.cellY));
3282 if (!(itemUnderLongClick instanceof Folder || isAllAppsButton)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003283 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07003284 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003285 }
3286 }
3287 }
3288 return true;
3289 }
3290
Winson Chung3d503fb2011-07-13 17:25:49 -07003291 boolean isHotseatLayout(View layout) {
3292 return mHotseat != null && layout != null &&
3293 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
3294 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08003295
Winson Chung3d503fb2011-07-13 17:25:49 -07003296 /**
3297 * Returns the CellLayout of the specified container at the specified screen.
3298 */
Sunny Goyal92820592015-03-02 11:31:35 -08003299 public CellLayout getCellLayout(long container, long screenId) {
Winson Chung3d503fb2011-07-13 17:25:49 -07003300 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3301 if (mHotseat != null) {
3302 return mHotseat.getLayout();
3303 } else {
3304 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08003305 }
Winson Chung3d503fb2011-07-13 17:25:49 -07003306 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08003307 return mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08003308 }
3309 }
3310
Winson Chungb745afb2015-03-02 11:51:23 -08003311 /**
3312 * For overridden classes.
3313 */
Daniel Sandler843e8602010-06-07 14:59:01 -04003314 public boolean isAllAppsVisible() {
Winson Chungb745afb2015-03-02 11:51:23 -08003315 return isAppsViewVisible();
3316 }
3317
3318 public boolean isAppsViewVisible() {
3319 return (mState == State.APPS) || (mOnResumeState == State.APPS);
3320 }
3321
3322 public boolean isWidgetsViewVisible() {
3323 return (mState == State.WIDGETS) || (mOnResumeState == State.WIDGETS);
Joe Onoratofb0ca672009-09-14 17:55:46 -04003324 }
3325
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003326 private void setWorkspaceBackground(int background) {
3327 switch (background) {
3328 case WORKSPACE_BACKGROUND_TRANSPARENT:
3329 getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
3330 break;
3331 case WORKSPACE_BACKGROUND_BLACK:
3332 getWindow().setBackgroundDrawable(null);
3333 break;
3334 default:
3335 getWindow().setBackgroundDrawable(mWorkspaceBackgroundDrawable);
3336 }
Craig Mautner360310b2012-10-26 15:13:08 -07003337 }
3338
Selim Cinek3a8a8f72014-01-16 10:38:38 -08003339 protected void changeWallpaperVisiblity(boolean visible) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003340 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
3341 int curflags = getWindow().getAttributes().flags
3342 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
3343 if (wpflags != curflags) {
3344 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
3345 }
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003346 setWorkspaceBackground(visible ? WORKSPACE_BACKGROUND_GRADIENT : WORKSPACE_BACKGROUND_BLACK);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003347 }
3348
Michael Jurkae326f182011-11-21 14:05:46 -08003349 @Override
3350 public void onTrimMemory(int level) {
3351 super.onTrimMemory(level);
Adam Cohen3f9c9712014-10-31 11:48:25 -07003352 if (level >= ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
3353 // The widget preview db can result in holding onto over
3354 // 3MB of memory for caching which isn't necessary.
3355 SQLiteDatabase.releaseMemory();
3356
Adam Cohenc8f4e1b2014-11-19 16:03:20 -08003357 // This clears all widget bitmaps from the widget tray
Hyunyoung Song3f471442015-04-08 19:01:34 -07003358 // TODO(hyunyoungs)
Michael Jurkae326f182011-11-21 14:05:46 -08003359 }
Robert Kozikowski67c30862015-03-30 23:46:46 +01003360 if (mLauncherCallbacks != null) {
3361 mLauncherCallbacks.onTrimMemory(level);
3362 }
Michael Jurkae326f182011-11-21 14:05:46 -08003363 }
3364
Winson5c6bdbb2015-09-03 11:36:19 -07003365 /**
3366 * @return whether or not the Launcher state changed.
3367 */
3368 public boolean showWorkspace(boolean animated) {
3369 return showWorkspace(WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated, null);
Adam Cohened307df2013-10-02 09:37:31 -07003370 }
3371
Winson5c6bdbb2015-09-03 11:36:19 -07003372 /**
3373 * @return whether or not the Launcher state changed.
3374 */
3375 public boolean showWorkspace(boolean animated, Runnable onCompleteRunnable) {
3376 return showWorkspace(WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated,
Winson Chungef7f8742015-06-04 17:18:17 -07003377 onCompleteRunnable);
Winson Chungdc61c4d2015-04-20 18:26:57 -07003378 }
3379
Winson5c6bdbb2015-09-03 11:36:19 -07003380 /**
3381 * @return whether or not the Launcher state changed.
3382 */
3383 protected boolean showWorkspace(int snapToPage, boolean animated) {
3384 return showWorkspace(snapToPage, animated, null);
Winson Chungdc61c4d2015-04-20 18:26:57 -07003385 }
3386
Winson5c6bdbb2015-09-03 11:36:19 -07003387 /**
3388 * @return whether or not the Launcher state changed.
3389 */
3390 boolean showWorkspace(int snapToPage, boolean animated, Runnable onCompleteRunnable) {
Winson Chung0f785722015-04-08 10:27:49 -07003391 boolean changed = mState != State.WORKSPACE ||
3392 mWorkspace.getState() != Workspace.State.NORMAL;
3393 if (changed) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003394 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003395 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3396 Workspace.State.NORMAL, snapToPage, animated, onCompleteRunnable);
Winson Chungc7d2b602012-05-16 17:02:20 -07003397
Michael Jurkab3e22d92011-10-31 15:58:33 -07003398 // Set focus to the AppsCustomize button
3399 if (mAllAppsButton != null) {
3400 mAllAppsButton.requestFocus();
3401 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003402 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07003403
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003404 // Change the state *after* we've called all the transition code
3405 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08003406
Winson Chung5fb63472011-02-02 17:03:37 -08003407 // Resume the auto-advance of widgets
3408 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08003409 updateAutoAdvanceState();
Winson Chung5fb63472011-02-02 17:03:37 -08003410
Winson Chung0f785722015-04-08 10:27:49 -07003411 if (changed) {
3412 // Send an accessibility event to announce the context change
3413 getWindow().getDecorView()
3414 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Winson Chung0f785722015-04-08 10:27:49 -07003415 }
Winson5c6bdbb2015-09-03 11:36:19 -07003416 return changed;
Bjorn Bringertc459e522013-06-07 19:36:01 +01003417 }
3418
Winsone9f27272015-10-13 10:47:51 -07003419 /**
3420 * Shows the overview button.
3421 */
Adam Cohened307df2013-10-02 09:37:31 -07003422 void showOverviewMode(boolean animated) {
Winsone9f27272015-10-13 10:47:51 -07003423 showOverviewMode(animated, false);
3424 }
3425
3426 /**
3427 * Shows the overview button, and if {@param requestButtonFocus} is set, will force the focus
3428 * onto one of the overview panel buttons.
3429 */
3430 void showOverviewMode(boolean animated, boolean requestButtonFocus) {
3431 Runnable postAnimRunnable = null;
3432 if (requestButtonFocus) {
3433 postAnimRunnable = new Runnable() {
3434 @Override
3435 public void run() {
3436 // Hitting the menu button when in touch mode does not trigger touch mode to
3437 // be disabled, so if requested, force focus on one of the overview panel
3438 // buttons.
3439 mOverviewPanel.requestFocusFromTouch();
3440 }
3441 };
3442 }
Adam Cohened307df2013-10-02 09:37:31 -07003443 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003444 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3445 Workspace.State.OVERVIEW,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003446 WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated,
Winsone9f27272015-10-13 10:47:51 -07003447 postAnimRunnable);
Adam Cohened307df2013-10-02 09:37:31 -07003448 mState = State.WORKSPACE;
Joe Onorato00acb122009-08-04 16:04:30 -04003449 }
3450
Winson Chungb745afb2015-03-02 11:51:23 -08003451 /**
3452 * Shows the apps view.
3453 */
Winson Chung76648c52015-07-10 14:33:23 -07003454 void showAppsView(boolean animated, boolean resetListToTop, boolean updatePredictedApps,
3455 boolean focusSearchBar) {
Winson Chungb745afb2015-03-02 11:51:23 -08003456 if (resetListToTop) {
3457 mAppsView.scrollToTop();
3458 }
Winson Chung4ac30062015-05-08 17:34:17 -07003459 if (updatePredictedApps) {
3460 tryAndUpdatePredictedApps();
3461 }
Winson Chung76648c52015-07-10 14:33:23 -07003462 showAppsOrWidgets(State.APPS, animated, focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003463 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003464
Winson Chungb745afb2015-03-02 11:51:23 -08003465 /**
3466 * Shows the widgets view.
3467 */
3468 void showWidgetsView(boolean animated, boolean resetPageToZero) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003469 if (LOGD) Log.d(TAG, "showWidgetsView:" + animated + " resetPageToZero:" + resetPageToZero);
Winson Chung82963d52013-10-09 11:20:57 -07003470 if (resetPageToZero) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003471 mWidgetsView.scrollToTop();
Winson Chung82963d52013-10-09 11:20:57 -07003472 }
Winson Chung76648c52015-07-10 14:33:23 -07003473 showAppsOrWidgets(State.WIDGETS, animated, false);
Hyunyoung Song3f471442015-04-08 19:01:34 -07003474
3475 mWidgetsView.post(new Runnable() {
Adam Cohendcc5e712014-06-23 15:38:55 -04003476 @Override
3477 public void run() {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003478 mWidgetsView.requestFocus();
Adam Cohendcc5e712014-06-23 15:38:55 -04003479 }
3480 });
Winson Chungb745afb2015-03-02 11:51:23 -08003481 }
3482
3483 /**
3484 * Sets up the transition to show the apps/widgets view.
Hyunyoung Songb7900832015-05-15 16:29:45 -07003485 *
3486 * @return whether the current from and to state allowed this operation
Winson Chungb745afb2015-03-02 11:51:23 -08003487 */
Hyunyoung Songb7900832015-05-15 16:29:45 -07003488 // TODO: calling method should use the return value so that when {@code false} is returned
3489 // the workspace transition doesn't fall into invalid state.
Winson Chung76648c52015-07-10 14:33:23 -07003490 private boolean showAppsOrWidgets(State toState, boolean animated, boolean focusSearchBar) {
Hyunyoung Songb7900832015-05-15 16:29:45 -07003491 if (mState != State.WORKSPACE && mState != State.APPS_SPRING_LOADED &&
3492 mState != State.WIDGETS_SPRING_LOADED) {
3493 return false;
3494 }
3495 if (toState != State.APPS && toState != State.WIDGETS) {
3496 return false;
3497 }
Winson Chungb745afb2015-03-02 11:51:23 -08003498
3499 if (toState == State.APPS) {
Winson Chung006ee262015-08-03 14:40:11 -07003500 mStateTransitionAnimation.startAnimationToAllApps(mWorkspace.getState(), animated,
3501 focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003502 } else {
Winson Chung006ee262015-08-03 14:40:11 -07003503 mStateTransitionAnimation.startAnimationToWidgets(mWorkspace.getState(), animated);
Winson Chungb745afb2015-03-02 11:51:23 -08003504 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003505
Michael Jurkab3e22d92011-10-31 15:58:33 -07003506 // Change the state *after* we've called all the transition code
Winson Chungb745afb2015-03-02 11:51:23 -08003507 mState = toState;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003508
3509 // Pause the auto-advance of widgets until we are out of AllApps
3510 mUserPresent = false;
Winson Chungb745afb2015-03-02 11:51:23 -08003511 updateAutoAdvanceState();
Michael Jurkab3e22d92011-10-31 15:58:33 -07003512 closeFolder();
3513
3514 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07003515 getWindow().getDecorView()
3516 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Hyunyoung Songb7900832015-05-15 16:29:45 -07003517 return true;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003518 }
3519
Winson Chungcd99cd32015-04-29 11:03:24 -07003520 /**
3521 * Updates the workspace and interaction state on state change, and return the animation to this
3522 * new state.
3523 */
3524 public Animator startWorkspaceStateChangeAnimation(Workspace.State toState, int toPage,
Winson Chung006ee262015-08-03 14:40:11 -07003525 boolean animated, HashMap<View, Integer> layerViews) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003526 Workspace.State fromState = mWorkspace.getState();
Winson Chung006ee262015-08-03 14:40:11 -07003527 Animator anim = mWorkspace.setStateWithAnimation(toState, toPage, animated, layerViews);
Winson Chungcd99cd32015-04-29 11:03:24 -07003528 updateInteraction(fromState, toState);
3529 return anim;
3530 }
3531
Hyunyoung Song3f471442015-04-08 19:01:34 -07003532 public void enterSpringLoadedDragMode() {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003533 if (LOGD) Log.d(TAG, String.format("enterSpringLoadedDragMode [mState=%s", mState.name()));
Winson Chungb745afb2015-03-02 11:51:23 -08003534 if (mState == State.WORKSPACE || mState == State.APPS_SPRING_LOADED ||
3535 mState == State.WIDGETS_SPRING_LOADED) {
3536 return;
Winson Chungb26f3d62011-06-02 10:49:29 -07003537 }
Winson Chungb745afb2015-03-02 11:51:23 -08003538
Winson Chung006ee262015-08-03 14:40:11 -07003539 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3540 Workspace.State.SPRING_LOADED,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003541 WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, true /* animated */,
3542 null /* onCompleteRunnable */);
Winson Chungb745afb2015-03-02 11:51:23 -08003543 mState = isAppsViewVisible() ? State.APPS_SPRING_LOADED : State.WIDGETS_SPRING_LOADED;
Michael Jurkad3ef3062010-11-23 16:23:58 -08003544 }
Adam Cohen7777d962011-08-18 18:58:38 -07003545
Hyunyoung Song3f471442015-04-08 19:01:34 -07003546 public void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, int delay,
Adam Cohened66b2b2012-01-23 17:28:51 -08003547 final Runnable onCompleteRunnable) {
Winson Chungb745afb2015-03-02 11:51:23 -08003548 if (mState != State.APPS_SPRING_LOADED && mState != State.WIDGETS_SPRING_LOADED) return;
Winson Chung09bfc452011-09-09 11:30:20 -07003549
Winson Chunge7a03942011-08-05 15:05:12 -07003550 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07003551 @Override
3552 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003553 if (successfulDrop) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003554 // TODO(hyunyoungs): verify if this hack is still needed, if not, delete.
3555 //
Michael Jurka7bdb25a2011-08-03 15:16:44 -07003556 // Before we show workspace, hide all apps again because
3557 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
3558 // clean up our state transition functions
Hyunyoung Song3f471442015-04-08 19:01:34 -07003559 mWidgetsView.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003560 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07003561 } else {
3562 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003563 }
Winson Chung557d6ed2011-07-08 15:34:52 -07003564 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07003565 }, delay);
Winson Chung557d6ed2011-07-08 15:34:52 -07003566 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003567
Michael Jurkad3ef3062010-11-23 16:23:58 -08003568 void exitSpringLoadedDragMode() {
Winson Chungb745afb2015-03-02 11:51:23 -08003569 if (mState == State.APPS_SPRING_LOADED) {
Winson Chung4ac30062015-05-08 17:34:17 -07003570 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07003571 false /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -08003572 } else if (mState == State.WIDGETS_SPRING_LOADED) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003573 showWidgetsView(true, false);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003574 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003575 }
3576
Winson Chung4ac30062015-05-08 17:34:17 -07003577 /**
3578 * Updates the set of predicted apps if it hasn't been updated since the last time Launcher was
3579 * resumed.
3580 */
3581 private void tryAndUpdatePredictedApps() {
3582 if (mLauncherCallbacks != null) {
Winson Chung6b1c73f2015-06-18 11:38:42 -07003583 List<ComponentKey> apps = mLauncherCallbacks.getPredictedApps();
Winson Chung91c05952015-06-25 12:17:30 -07003584 if (apps != null) {
Winson Chung4ac30062015-05-08 17:34:17 -07003585 mAppsView.setPredictedApps(apps);
3586 }
3587 }
3588 }
3589
Michael Jurkab3e22d92011-10-31 15:58:33 -07003590 void lockAllApps() {
3591 // TODO
3592 }
3593
3594 void unlockAllApps() {
3595 // TODO
3596 }
3597
Sunny Goyal594d76d2014-11-06 10:12:54 -08003598 protected void disableVoiceButtonProxy(boolean disable) {
3599 // NO-OP
Winson Chungbb185bd2011-11-21 12:31:42 -08003600 }
3601
Winsonf768d932015-09-25 16:12:35 -07003602 public boolean launcherCallbacksProvidesSearch() {
3603 return (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch());
3604 }
3605
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003606 public View getOrCreateQsbBar() {
Winsonf768d932015-09-25 16:12:35 -07003607 if (launcherCallbacksProvidesSearch()) {
Adam Cohenc2d6e892014-10-16 09:49:24 -07003608 return mLauncherCallbacks.getQsbBar();
Adam Cohen9211d422014-10-07 18:14:53 -07003609 }
3610
Adam Cohen24ce0b32014-01-14 16:18:14 -08003611 if (mQsb == null) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003612 AppWidgetProviderInfo searchProvider = Utilities.getSearchWidgetProvider(this);
3613 if (searchProvider == null) {
3614 return null;
3615 }
3616
3617 Bundle opts = new Bundle();
3618 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_HOST_CATEGORY,
Adam Coheneb8e2822015-02-20 16:38:48 +00003619 AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003620
Tony Wickham3a3517f2015-10-06 11:27:04 -07003621 // Determine the min and max dimensions of the widget.
3622 LauncherAppState app = LauncherAppState.getInstance();
3623 DeviceProfile portraitProfile = app.getInvariantDeviceProfile().portraitProfile;
3624 DeviceProfile landscapeProfile = app.getInvariantDeviceProfile().landscapeProfile;
3625 float density = getResources().getDisplayMetrics().density;
Tony Wickhama3c74d12015-10-23 11:43:47 -07003626 Point searchDimens = portraitProfile.getSearchBarDimensForWidgetOpts(getResources());
3627 int maxHeight = (int) (searchDimens.y / density);
Tony Wickham3a3517f2015-10-06 11:27:04 -07003628 int minHeight = maxHeight;
Tony Wickhama3c74d12015-10-23 11:43:47 -07003629 int maxWidth = (int) (searchDimens.x / density);
Tony Wickham3a3517f2015-10-06 11:27:04 -07003630 int minWidth = maxWidth;
3631 if (!landscapeProfile.isVerticalBarLayout()) {
Tony Wickhama3c74d12015-10-23 11:43:47 -07003632 searchDimens = landscapeProfile.getSearchBarDimensForWidgetOpts(getResources());
3633 maxHeight = (int) Math.max(maxHeight, searchDimens.y / density);
3634 minHeight = (int) Math.min(minHeight, searchDimens.y / density);
3635 maxWidth = (int) Math.max(maxWidth, searchDimens.x / density);
3636 minWidth = (int) Math.min(minWidth, searchDimens.x / density);
Tony Wickham3a3517f2015-10-06 11:27:04 -07003637 }
3638 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_MAX_HEIGHT, maxHeight);
3639 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_MIN_HEIGHT, minHeight);
3640 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_MAX_WIDTH, maxWidth);
3641 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_MIN_WIDTH, minWidth);
Tony Wickhameef44322015-10-20 13:24:36 -07003642 if (LOGD) {
3643 Log.d(TAG, "QSB widget options: maxHeight=" + maxHeight + " minHeight=" + minHeight
3644 + " maxWidth=" + maxWidth + " minWidth=" + minWidth);
3645 }
Tony Wickham3a3517f2015-10-06 11:27:04 -07003646
Tony Wickham775455c2015-10-16 09:49:32 -07003647 if (mLauncherCallbacks != null) {
3648 opts.putAll(mLauncherCallbacks.getAdditionalSearchWidgetOptions());
3649 }
3650
Sunny Goyalf7258242015-10-19 16:59:07 -07003651 int widgetId = mSharedPrefs.getInt(QSB_WIDGET_ID, -1);
Sunny Goyal416541c2014-11-14 11:59:57 -08003652 AppWidgetProviderInfo widgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003653 if (!searchProvider.provider.flattenToString().equals(
Sunny Goyalf7258242015-10-19 16:59:07 -07003654 mSharedPrefs.getString(QSB_WIDGET_PROVIDER, null))
Sunny Goyal416541c2014-11-14 11:59:57 -08003655 || (widgetInfo == null)
3656 || !widgetInfo.provider.equals(searchProvider.provider)) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003657 // A valid widget is not already bound.
3658 if (widgetId > -1) {
3659 mAppWidgetHost.deleteAppWidgetId(widgetId);
3660 widgetId = -1;
3661 }
3662
3663 // Try to bind a new widget
3664 widgetId = mAppWidgetHost.allocateAppWidgetId();
3665
3666 if (!AppWidgetManagerCompat.getInstance(this)
3667 .bindAppWidgetIdIfAllowed(widgetId, searchProvider, opts)) {
3668 mAppWidgetHost.deleteAppWidgetId(widgetId);
3669 widgetId = -1;
3670 }
3671
Sunny Goyalf7258242015-10-19 16:59:07 -07003672 mSharedPrefs.edit()
Sunny Goyal594d76d2014-11-06 10:12:54 -08003673 .putInt(QSB_WIDGET_ID, widgetId)
3674 .putString(QSB_WIDGET_PROVIDER, searchProvider.provider.flattenToString())
3675 .commit();
3676 }
3677
Sunny Goyal8d595092015-07-06 12:22:14 -07003678 mAppWidgetHost.setQsbWidgetId(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003679 if (widgetId != -1) {
3680 mQsb = mAppWidgetHost.createView(this, widgetId, searchProvider);
Sunny Goyalebfae6e2015-08-27 15:30:25 -07003681 mQsb.setId(R.id.qsb_widget);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003682 mQsb.updateAppWidgetOptions(opts);
3683 mQsb.setPadding(0, 0, 0, 0);
3684 mSearchDropTargetBar.addView(mQsb);
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003685 mSearchDropTargetBar.setQsbSearchBar(mQsb);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003686 }
Cristina Stancu476493b2013-08-07 17:20:14 +01003687 }
Adam Cohen24ce0b32014-01-14 16:18:14 -08003688 return mQsb;
Cristina Stancu476493b2013-08-07 17:20:14 +01003689 }
3690
Sunny Goyal22235bc2015-04-03 09:23:43 -07003691 private void reinflateQSBIfNecessary() {
3692 if (mQsb instanceof LauncherAppWidgetHostView &&
3693 ((LauncherAppWidgetHostView) mQsb).isReinflateRequired()) {
3694 mSearchDropTargetBar.removeView(mQsb);
3695 mQsb = null;
3696 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
3697 }
3698 }
3699
Michael Jurkad7c28052012-04-27 15:43:36 -07003700 @Override
3701 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07003702 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07003703 final List<CharSequence> text = event.getText();
3704 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07003705 // Populate event with a fake title based on the current state.
Winson Chungb745afb2015-03-02 11:51:23 -08003706 if (mState == State.APPS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003707 text.add(getString(R.string.all_apps_button_label));
Winson Chungb745afb2015-03-02 11:51:23 -08003708 } else if (mState == State.WIDGETS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003709 text.add(getString(R.string.widget_button_text));
Hyunyoung Song166e6482015-06-25 21:06:07 -07003710 } else if (mWorkspace != null) {
3711 text.add(mWorkspace.getCurrentPageDescription());
alanv1d4fde62012-10-17 13:15:47 -07003712 } else {
3713 text.add(getString(R.string.all_apps_home_button_label));
3714 }
Michael Jurkad7c28052012-04-27 15:43:36 -07003715 return result;
3716 }
3717
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003718 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003719 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003720 */
Adam Cohen091440a2015-03-18 14:16:05 -07003721 @Thunk class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003722 @Override
3723 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003724 closeSystemDialogs();
3725 }
3726 }
3727
3728 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07003729 * If the activity is currently paused, signal that we need to run the passed Runnable
3730 * in onResume.
3731 *
3732 * This needs to be called from incoming places where resources might have been loaded
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003733 * while the activity is paused. That is because the Configuration (e.g., rotation) might be
3734 * wrong when we're not running, and if the activity comes back to what the configuration was
3735 * when we were paused, activity is not restarted.
Michael Jurka7607c2f2013-04-03 14:33:19 -07003736 *
3737 * Implementation of the method from LauncherModel.Callbacks.
3738 *
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003739 * @return {@code true} if we are currently paused. The caller might be able to skip some work
Michael Jurka7607c2f2013-04-03 14:33:19 -07003740 */
Rahul Chaturvedi799aa042015-06-01 21:26:41 -04003741 @Thunk boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003742 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003743 if (LOGD) Log.d(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02003744 if (deletePreviousRunnables) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07003745 while (mBindOnResumeCallbacks.remove(run)) {
Michael Jurkac402cd92013-05-20 15:49:32 +02003746 }
3747 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07003748 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07003749 return true;
3750 } else {
3751 return false;
3752 }
3753 }
3754
Michael Jurkac402cd92013-05-20 15:49:32 +02003755 private boolean waitUntilResume(Runnable run) {
3756 return waitUntilResume(run, false);
3757 }
3758
Michael Jurka1e2f4652013-07-08 18:03:46 -07003759 public void addOnResumeCallback(Runnable run) {
Michael Jurka54554252013-08-01 12:52:23 +02003760 mOnResumeCallbacks.add(run);
Michael Jurka1e2f4652013-07-08 18:03:46 -07003761 }
3762
Michael Jurka7607c2f2013-04-03 14:33:19 -07003763 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003764 * If the activity is currently paused, signal that we need to re-run the loader
3765 * in onResume.
3766 *
3767 * This needs to be called from incoming places where resources might have been loaded
3768 * while we are paused. That is becaues the Configuration might be wrong
3769 * when we're not running, and if it comes back to what it was when we
3770 * were paused, we are not restarted.
3771 *
3772 * Implementation of the method from LauncherModel.Callbacks.
3773 *
3774 * @return true if we are currently paused. The caller might be able to
3775 * skip some work in that case since we will come back again.
3776 */
3777 public boolean setLoadOnResume() {
3778 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003779 if (LOGD) Log.d(TAG, "setLoadOnResume");
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003780 mOnResumeNeedsLoad = true;
3781 return true;
3782 } else {
3783 return false;
3784 }
3785 }
3786
3787 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003788 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003789 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003790 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003791 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003792 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003793 } else {
3794 return SCREEN_COUNT / 2;
3795 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003796 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003797
Joe Onorato9c1289c2009-08-17 11:03:03 -04003798 /**
3799 * Refreshes the shortcuts shown on the workspace.
3800 *
3801 * Implementation of the method from LauncherModel.Callbacks.
3802 */
3803 public void startBinding() {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07003804 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08003805
Michael Jurka7607c2f2013-04-03 14:33:19 -07003806 // If we're starting binding all over again, clear any bind calls we'd postponed in
3807 // the past (see waitUntilResume) -- we don't need them since we're starting binding
3808 // from scratch again
Michael Jurka1e2f4652013-07-08 18:03:46 -07003809 mBindOnResumeCallbacks.clear();
Adam Cohendf035382011-04-11 17:22:04 -07003810
Winson Chungd64d1762013-08-20 14:37:16 -07003811 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07003812 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07003813 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07003814
Michael Jurka05bf644e2011-11-30 20:28:53 -08003815 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003816 if (mHotseat != null) {
3817 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003818 }
3819 }
3820
Adam Cohendcd297f2013-06-18 13:13:40 -07003821 @Override
3822 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Winson Chung64359a52013-07-08 17:17:08 -07003823 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07003824
Adam Cohen5084cba2013-09-03 12:01:16 -07003825 // If there are no screens, we need to have an empty screen
3826 if (orderedScreenIds.size() == 0) {
3827 mWorkspace.addExtraEmptyScreen();
3828 }
Winson Chung0e6a7132013-08-23 12:55:10 -07003829
3830 // Create the custom content page (this call updates mDefaultScreen which calls
Dave Hawkeya8881582013-09-17 15:55:33 -06003831 // setCurrentPage() so ensure that all pages are added before calling this).
Derek Prothrodadd9842014-01-17 13:43:50 -05003832 if (hasCustomContentToLeft()) {
3833 mWorkspace.createCustomContentContainer();
3834 populateCustomContentContainer();
Winson Chung0e6a7132013-08-23 12:55:10 -07003835 }
Winson Chung64359a52013-07-08 17:17:08 -07003836 }
3837
3838 @Override
3839 public void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Adam Cohendcd297f2013-06-18 13:13:40 -07003840 int count = orderedScreenIds.size();
3841 for (int i = 0; i < count; i++) {
Adam Cohen89bddfa2013-08-20 11:57:13 -07003842 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(orderedScreenIds.get(i));
Adam Cohendcd297f2013-06-18 13:13:40 -07003843 }
Adam Cohendcd297f2013-06-18 13:13:40 -07003844 }
3845
Winson Chungd64d1762013-08-20 14:37:16 -07003846 public void bindAppsAdded(final ArrayList<Long> newScreens,
3847 final ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -07003848 final ArrayList<ItemInfo> addAnimated,
3849 final ArrayList<AppInfo> addedApps) {
Winson Chungd64d1762013-08-20 14:37:16 -07003850 Runnable r = new Runnable() {
3851 public void run() {
Winson Chungc58497e2013-09-03 17:48:37 -07003852 bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps);
Winson Chungd64d1762013-08-20 14:37:16 -07003853 }
3854 };
3855 if (waitUntilResume(r)) {
3856 return;
3857 }
3858
Winson Chungd64d1762013-08-20 14:37:16 -07003859 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08003860 if (newScreens != null) {
3861 bindAddScreens(newScreens);
3862 }
Winson Chungd64d1762013-08-20 14:37:16 -07003863
3864 // We add the items without animation on non-visible pages, and with
3865 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08003866 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003867 bindItems(addNotAnimated, 0,
3868 addNotAnimated.size(), false);
3869 }
Adam Cohen76a47a12014-02-05 11:47:43 -08003870 if (addAnimated != null && !addAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003871 bindItems(addAnimated, 0,
3872 addAnimated.size(), true);
3873 }
Winson Chungc58497e2013-09-03 17:48:37 -07003874
Winson Chung87412982013-10-03 18:34:14 -07003875 // Remove the extra empty screen
Adam Cohen689ff162014-05-08 17:27:56 -07003876 mWorkspace.removeExtraEmptyScreen(false, false);
Winson Chung87412982013-10-03 18:34:14 -07003877
Winson Chungb745afb2015-03-02 11:51:23 -08003878 if (addedApps != null && mAppsView != null) {
3879 mAppsView.addApps(addedApps);
Winson Chungc58497e2013-09-03 17:48:37 -07003880 }
Winson Chungd64d1762013-08-20 14:37:16 -07003881 }
3882
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003883 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003884 * Bind the items start-end from the list.
3885 *
3886 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003887 */
Tony Wickham0bb211a2015-10-02 16:22:08 -07003888 @Override
Winson Chung64359a52013-07-08 17:17:08 -07003889 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end,
3890 final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07003891 Runnable r = new Runnable() {
3892 public void run() {
3893 bindItems(shortcuts, start, end, forceAnimateIcons);
3894 }
3895 };
3896 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003897 return;
3898 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003899
Winson Chungf0c6ae02012-03-21 16:10:31 -07003900 // Get the list of added shortcuts and intersect them with the set of shortcuts here
Winson Chung64359a52013-07-08 17:17:08 -07003901 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
3902 final Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chung997a9232013-07-24 15:33:46 -07003903 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07003904 Workspace workspace = mWorkspace;
Winson Chung997a9232013-07-24 15:33:46 -07003905 long newShortcutsScreenId = -1;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003906 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003907 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003908
3909 // Short circuit if we are loading dock items for a configuration which has no dock
3910 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3911 mHotseat == null) {
3912 continue;
3913 }
3914
Sunny Goyal639e9062015-08-19 19:17:06 -07003915 final View view;
Joe Onorato9c1289c2009-08-17 11:03:03 -04003916 switch (item.itemType) {
3917 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3918 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07003919 ShortcutInfo info = (ShortcutInfo) item;
Sunny Goyal639e9062015-08-19 19:17:06 -07003920 view = createShortcut(info);
Adam Cohendcd297f2013-06-18 13:13:40 -07003921
Winson Chung64359a52013-07-08 17:17:08 -07003922 /*
3923 * TODO: FIX collision case
3924 */
Winson Chungce376632013-07-11 16:12:41 -07003925 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
3926 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
3927 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07003928 View v = cl.getChildAt(item.cellX, item.cellY);
3929 Object tag = v.getTag();
3930 String desc = "Collision while binding workspace item: " + item
3931 + ". Collides with " + tag;
3932 if (LauncherAppState.isDogfoodBuild()) {
3933 throw (new RuntimeException(desc));
3934 } else {
3935 Log.d(TAG, desc);
3936 }
Winson Chungce376632013-07-11 16:12:41 -07003937 }
Winson Chung64359a52013-07-08 17:17:08 -07003938 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003939 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003940 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Sunny Goyal639e9062015-08-19 19:17:06 -07003941 view = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003942 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003943 (FolderInfo) item, mIconCache);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003944 break;
Winson Chungc763c4e2013-07-19 13:49:06 -07003945 default:
3946 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04003947 }
Sunny Goyal639e9062015-08-19 19:17:06 -07003948
3949 workspace.addInScreenFromBind(view, item.container, item.screenId, item.cellX,
3950 item.cellY, 1, 1);
3951 if (animateIcons) {
3952 // Animate all the applications up now
3953 view.setAlpha(0f);
3954 view.setScaleX(0f);
3955 view.setScaleY(0f);
3956 bounceAnims.add(createNewAppBounceAnimation(view, i));
3957 newShortcutsScreenId = item.screenId;
3958 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003959 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003960
Winson Chung997a9232013-07-24 15:33:46 -07003961 if (animateIcons) {
3962 // Animate to the correct page
3963 if (newShortcutsScreenId > -1) {
3964 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Winson Chung94d67682013-09-25 16:29:40 -07003965 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId);
Winson Chungb2323832013-10-03 15:22:09 -07003966 final Runnable startBounceAnimRunnable = new Runnable() {
3967 public void run() {
3968 anim.playTogether(bounceAnims);
3969 anim.start();
3970 }
3971 };
Winson Chung997a9232013-07-24 15:33:46 -07003972 if (newShortcutsScreenId != currentScreenId) {
Winson Chung94d67682013-09-25 16:29:40 -07003973 // We post the animation slightly delayed to prevent slowdowns
3974 // when we are loading right after we return to launcher.
3975 mWorkspace.postDelayed(new Runnable() {
3976 public void run() {
Ian Parkinson94449152014-01-21 13:09:59 +00003977 if (mWorkspace != null) {
3978 mWorkspace.snapToPage(newScreenIndex);
3979 mWorkspace.postDelayed(startBounceAnimRunnable,
3980 NEW_APPS_ANIMATION_DELAY);
3981 }
Winson Chung94d67682013-09-25 16:29:40 -07003982 }
3983 }, NEW_APPS_PAGE_MOVE_DELAY);
Winson Chungb2323832013-10-03 15:22:09 -07003984 } else {
3985 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07003986 }
3987 }
Winson Chung64359a52013-07-08 17:17:08 -07003988 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003989 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003990 }
3991
Joe Onorato9c1289c2009-08-17 11:03:03 -04003992 /**
3993 * Implementation of the method from LauncherModel.Callbacks.
3994 */
Sunny Goyale2df0622015-04-24 11:27:00 -07003995 public void bindFolders(final LongArrayMap<FolderInfo> folders) {
Winson Chungd64d1762013-08-20 14:37:16 -07003996 Runnable r = new Runnable() {
3997 public void run() {
3998 bindFolders(folders);
3999 }
4000 };
4001 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004002 return;
4003 }
Sunny Goyale2df0622015-04-24 11:27:00 -07004004 sFolders = folders.clone();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004005 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004006
4007 /**
4008 * Add the views for a widget to the workspace.
4009 *
4010 * Implementation of the method from LauncherModel.Callbacks.
4011 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07004012 public void bindAppWidget(final LauncherAppWidgetInfo item) {
Winson Chungd64d1762013-08-20 14:37:16 -07004013 Runnable r = new Runnable() {
4014 public void run() {
4015 bindAppWidget(item);
4016 }
4017 };
4018 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004019 return;
4020 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07004021
Daniel Sandler843e8602010-06-07 14:59:01 -04004022 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
4023 if (DEBUG_WIDGETS) {
4024 Log.d(TAG, "bindAppWidget: " + item);
4025 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004026 final Workspace workspace = mWorkspace;
4027
Adam Cohen59400422014-03-05 18:07:04 -08004028 LauncherAppWidgetProviderInfo appWidgetInfo =
Robin Lee26ace122015-03-16 19:41:43 +00004029 LauncherModel.getProviderInfo(this, item.providerName, item.user);
Adam Cohen59400422014-03-05 18:07:04 -08004030
Sunny Goyal9b4b0812014-10-08 10:47:28 -07004031 if (!mIsSafeModeEnabled
4032 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY) == 0)
Sunny Goyal84b4adc2015-08-12 15:12:16 -07004033 && (item.restoreStatus != LauncherAppWidgetInfo.RESTORE_COMPLETED)) {
4034
Sunny Goyalff572272014-07-23 13:58:07 -07004035 if (appWidgetInfo == null) {
4036 if (DEBUG_WIDGETS) {
4037 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
4038 + " belongs to component " + item.providerName
4039 + ", as the povider is null");
4040 }
4041 LauncherModel.deleteItemFromDatabase(this, item);
4042 return;
4043 }
Sunny Goyalff572272014-07-23 13:58:07 -07004044
Sunny Goyal84b4adc2015-08-12 15:12:16 -07004045 // If we do not have a valid id, try to bind an id.
4046 if ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_ID_NOT_VALID) != 0) {
4047 // Note: This assumes that the id remap broadcast is received before this step.
4048 // If that is not the case, the id remap will be ignored and user may see the
4049 // click to setup view.
4050 PendingAddWidgetInfo pendingInfo = new PendingAddWidgetInfo(this, appWidgetInfo, null);
4051 pendingInfo.spanX = item.spanX;
4052 pendingInfo.spanY = item.spanY;
4053 pendingInfo.minSpanX = item.minSpanX;
4054 pendingInfo.minSpanY = item.minSpanY;
4055 Bundle options = null;
4056 WidgetHostViewLoader.getDefaultOptionsForWidget(this, pendingInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07004057
Sunny Goyal84b4adc2015-08-12 15:12:16 -07004058 int newWidgetId = mAppWidgetHost.allocateAppWidgetId();
4059 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
4060 newWidgetId, appWidgetInfo, options);
4061
4062 // TODO consider showing a permission dialog when the widget is clicked.
4063 if (!success) {
4064 mAppWidgetHost.deleteAppWidgetId(newWidgetId);
4065 if (DEBUG_WIDGETS) {
4066 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
4067 + " belongs to component " + item.providerName
4068 + ", as the launcher is unable to bing a new widget id");
4069 }
4070 LauncherModel.deleteItemFromDatabase(this, item);
4071 return;
Sunny Goyalff572272014-07-23 13:58:07 -07004072 }
Sunny Goyal84b4adc2015-08-12 15:12:16 -07004073
4074 item.appWidgetId = newWidgetId;
4075
4076 // If the widget has a configure activity, it is still needs to set it up, otherwise
4077 // the widget is ready to go.
4078 item.restoreStatus = (appWidgetInfo.configure == null)
4079 ? LauncherAppWidgetInfo.RESTORE_COMPLETED
4080 : LauncherAppWidgetInfo.FLAG_UI_NOT_READY;
4081
4082 LauncherModel.updateItemInDatabase(this, item);
4083 } else if (((item.restoreStatus & LauncherAppWidgetInfo.FLAG_UI_NOT_READY) != 0)
4084 && (appWidgetInfo.configure == null)) {
4085 // If the ID is already valid, verify if we need to configure or not.
4086 item.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
4087 LauncherModel.updateItemInDatabase(this, item);
Sunny Goyalff572272014-07-23 13:58:07 -07004088 }
Sunny Goyalff572272014-07-23 13:58:07 -07004089 }
4090
Sunny Goyal9b4b0812014-10-08 10:47:28 -07004091 if (!mIsSafeModeEnabled && item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
Sunny Goyal651077b2014-06-30 14:15:31 -07004092 final int appWidgetId = item.appWidgetId;
Sunny Goyal651077b2014-06-30 14:15:31 -07004093 if (DEBUG_WIDGETS) {
Adam Cohen59400422014-03-05 18:07:04 -08004094 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component "
4095 + appWidgetInfo.provider);
Sunny Goyal651077b2014-06-30 14:15:31 -07004096 }
Daniel Sandler843e8602010-06-07 14:59:01 -04004097
Sunny Goyal56c73602015-09-25 12:55:01 -07004098 // Verify that we own the widget
4099 AppWidgetProviderInfo info = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
4100 if (info == null || appWidgetInfo == null ||
4101 !info.provider.equals(appWidgetInfo.provider)) {
4102 Log.e(TAG, "Removing invalid widget: id=" + item.appWidgetId);
4103 deleteWidgetInfo(item);
4104 return;
4105 }
4106
Sunny Goyal651077b2014-06-30 14:15:31 -07004107 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
Sunny Goyal233ee962015-08-03 13:05:01 -07004108 item.minSpanX = appWidgetInfo.minSpanX;
4109 item.minSpanY = appWidgetInfo.minSpanY;
Sunny Goyal651077b2014-06-30 14:15:31 -07004110 } else {
4111 appWidgetInfo = null;
Sunny Goyal9b4b0812014-10-08 10:47:28 -07004112 PendingAppWidgetHostView view = new PendingAppWidgetHostView(this, item,
4113 mIsSafeModeEnabled);
Sunny Goyal0fc1be12014-08-11 17:05:23 -07004114 view.updateIcon(mIconCache);
4115 item.hostView = view;
Sunny Goyal651077b2014-06-30 14:15:31 -07004116 item.hostView.updateAppWidget(null);
Sunny Goyalff572272014-07-23 13:58:07 -07004117 item.hostView.setOnClickListener(this);
Sunny Goyal651077b2014-06-30 14:15:31 -07004118 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004119
Sunny Goyal25c2e3e2015-10-28 23:28:21 -07004120 addAppWidgetToWorkspace(item, appWidgetInfo, false);
Joe Onorato9c1289c2009-08-17 11:03:03 -04004121 workspace.requestLayout();
4122
Daniel Sandler843e8602010-06-07 14:59:01 -04004123 if (DEBUG_WIDGETS) {
4124 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
4125 + (SystemClock.uptimeMillis()-start) + "ms");
4126 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004127 }
4128
Sunny Goyalff572272014-07-23 13:58:07 -07004129 /**
4130 * Restores a pending widget.
4131 *
4132 * @param appWidgetId The app widget id
4133 * @param cellInfo The position on screen where to create the widget.
4134 */
4135 private void completeRestoreAppWidget(final int appWidgetId) {
4136 LauncherAppWidgetHostView view = mWorkspace.getWidgetForAppWidgetId(appWidgetId);
4137 if ((view == null) || !(view instanceof PendingAppWidgetHostView)) {
4138 Log.e(TAG, "Widget update called, when the widget no longer exists.");
4139 return;
4140 }
4141
Sunny Goyal0fc1be12014-08-11 17:05:23 -07004142 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) view.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07004143 info.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
4144
4145 mWorkspace.reinflateWidgetsIfNecessary();
4146 LauncherModel.updateItemInDatabase(this, info);
4147 }
4148
Adam Cohen1462de32012-07-24 22:34:36 -07004149 public void onPageBoundSynchronously(int page) {
4150 mSynchronouslyBoundPages.add(page);
4151 }
4152
Joe Onorato9c1289c2009-08-17 11:03:03 -04004153 /**
4154 * Callback saying that there aren't any more items to bind.
4155 *
4156 * Implementation of the method from LauncherModel.Callbacks.
4157 */
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004158 public void finishBindingItems() {
Winson Chungd64d1762013-08-20 14:37:16 -07004159 Runnable r = new Runnable() {
4160 public void run() {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004161 finishBindingItems();
Winson Chungd64d1762013-08-20 14:37:16 -07004162 }
4163 };
4164 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004165 return;
4166 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004167 if (mSavedState != null) {
4168 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07004169 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004170 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004171 mSavedState = null;
4172 }
4173
Adam Cohen1462de32012-07-24 22:34:36 -07004174 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004175
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004176 setWorkspaceLoading(false);
Adam Cohen3ed316a2014-07-23 18:21:20 -07004177 sendLoadingCompleteBroadcastIfNecessary();
Adam Cohendb364c32014-05-20 14:23:40 -07004178
4179 // If we received the result of any pending adds while the loader was running (e.g. the
4180 // widget configuration forced an orientation change), process them now.
4181 if (sPendingAddItem != null) {
4182 final long screenId = completeAdd(sPendingAddItem);
4183
4184 // TODO: this moves the user to the page where the pending item was added. Ideally,
4185 // the screen would be guaranteed to exist after bind, and the page would be set through
4186 // the workspace restore process.
4187 mWorkspace.post(new Runnable() {
4188 @Override
4189 public void run() {
4190 mWorkspace.snapToScreenId(screenId);
4191 }
4192 });
4193 sPendingAddItem = null;
4194 }
4195
Sunny Goyal756adbc2015-04-16 15:20:51 -07004196 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
Adam Cohen9211d422014-10-07 18:14:53 -07004197
4198 if (mLauncherCallbacks != null) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004199 mLauncherCallbacks.finishBindingItems(false);
Adam Cohen9211d422014-10-07 18:14:53 -07004200 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004201 }
4202
Adam Cohen3ed316a2014-07-23 18:21:20 -07004203 private void sendLoadingCompleteBroadcastIfNecessary() {
4204 if (!mSharedPrefs.getBoolean(FIRST_LOAD_COMPLETE, false)) {
4205 String permission =
4206 getResources().getString(R.string.receive_first_load_broadcast_permission);
4207 Intent intent = new Intent(ACTION_FIRST_LOAD_COMPLETE);
4208 sendBroadcast(intent, permission);
4209 SharedPreferences.Editor editor = mSharedPrefs.edit();
4210 editor.putBoolean(FIRST_LOAD_COMPLETE, true);
4211 editor.apply();
4212 }
4213 }
4214
Winson Chunga0b7e862013-09-05 16:03:15 -07004215 public boolean isAllAppsButtonRank(int rank) {
4216 if (mHotseat != null) {
4217 return mHotseat.isAllAppsButtonRank(rank);
4218 }
4219 return false;
4220 }
4221
Winson Chunga2413752012-04-03 14:22:34 -07004222 private boolean canRunNewAppsAnimation() {
4223 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
Sunny Goyal639e9062015-08-19 19:17:06 -07004224 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000)
4225 && (mClings == null || !mClings.isVisible());
Winson Chunga2413752012-04-03 14:22:34 -07004226 }
4227
Winson Chungc9168342013-06-26 14:54:55 -07004228 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
4229 ValueAnimator bounceAnim = LauncherAnimUtils.ofPropertyValuesHolder(v,
4230 PropertyValuesHolder.ofFloat("alpha", 1f),
4231 PropertyValuesHolder.ofFloat("scaleX", 1f),
4232 PropertyValuesHolder.ofFloat("scaleY", 1f));
4233 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
4234 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
Sunny Goyal5a1f53b2015-05-27 10:24:24 -07004235 bounceAnim.setInterpolator(new OvershootInterpolator(BOUNCE_ANIMATION_TENSION));
Winson Chungc9168342013-06-26 14:54:55 -07004236 return bounceAnim;
4237 }
4238
Adam Cohen27772732013-11-11 14:00:56 +00004239 public boolean useVerticalBarLayout() {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07004240 return mDeviceProfile.isVerticalBarLayout();
Adam Cohen27772732013-11-11 14:00:56 +00004241 }
4242
Tony Wickham3a3517f2015-10-06 11:27:04 -07004243 /** Returns the search bar bounds in pixels. */
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004244 protected Rect getSearchBarBounds() {
Sunny Goyalc6205602015-05-21 20:46:33 -07004245 return mDeviceProfile.getSearchBarBounds(Utilities.isRtl(getResources()));
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004246 }
4247
Tony Wickham55616cd2015-09-23 14:55:17 -07004248 public int getSearchBarHeight() {
4249 if (mLauncherCallbacks != null) {
4250 return mLauncherCallbacks.getSearchBarHeight();
4251 }
4252 return LauncherCallbacks.SEARCH_BAR_HEIGHT_NORMAL;
4253 }
4254
Winson Chung88fa7412015-08-03 14:25:28 -07004255 public void bindSearchProviderChanged() {
Sunny Goyal594d76d2014-11-06 10:12:54 -08004256 if (mSearchDropTargetBar == null) {
4257 return;
Winson Chungadf0c182012-08-23 14:59:07 -07004258 }
Sunny Goyal594d76d2014-11-06 10:12:54 -08004259 if (mQsb != null) {
4260 mSearchDropTargetBar.removeView(mQsb);
4261 mQsb = null;
4262 }
Adam Cohenb0df1b02015-03-18 22:21:40 -07004263 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004264 }
4265
Amith Yamasani6d7fe502010-11-16 09:05:07 -08004266 /**
Winson Chungbb785c62015-05-05 10:05:08 -07004267 * A runnable that we can dequeue and re-enqueue when all applications are bound (to prevent
4268 * multiple calls to bind the same list.)
4269 */
4270 @Thunk ArrayList<AppInfo> mTmpAppsList;
4271 private Runnable mBindAllApplicationsRunnable = new Runnable() {
4272 public void run() {
4273 bindAllApplications(mTmpAppsList);
4274 mTmpAppsList = null;
4275 }
4276 };
4277
4278 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004279 * Add the icons for all apps.
4280 *
4281 * Implementation of the method from LauncherModel.Callbacks.
4282 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004283 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Winson Chungbb785c62015-05-05 10:05:08 -07004284 if (waitUntilResume(mBindAllApplicationsRunnable, true)) {
4285 mTmpAppsList = apps;
4286 return;
4287 }
4288
Winson Chungb745afb2015-03-02 11:51:23 -08004289 if (mAppsView != null) {
4290 mAppsView.setApps(apps);
4291 }
Adam Cohen9211d422014-10-07 18:14:53 -07004292 if (mLauncherCallbacks != null) {
4293 mLauncherCallbacks.bindAllApplications(apps);
4294 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004295 }
4296
4297 /**
4298 * A package was updated.
4299 *
4300 * Implementation of the method from LauncherModel.Callbacks.
4301 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004302 public void bindAppsUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004303 Runnable r = new Runnable() {
4304 public void run() {
4305 bindAppsUpdated(apps);
4306 }
4307 };
4308 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004309 return;
4310 }
4311
Winson Chungb745afb2015-03-02 11:51:23 -08004312 if (mAppsView != null) {
4313 mAppsView.updateApps(apps);
Winson Chungc58497e2013-09-03 17:48:37 -07004314 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004315 }
4316
Sunny Goyal4390ace2014-10-13 11:33:11 -07004317 @Override
4318 public void bindWidgetsRestored(final ArrayList<LauncherAppWidgetInfo> widgets) {
4319 Runnable r = new Runnable() {
4320 public void run() {
4321 bindWidgetsRestored(widgets);
4322 }
4323 };
4324 if (waitUntilResume(r)) {
4325 return;
4326 }
4327 mWorkspace.widgetsRestored(widgets);
4328 }
4329
Joe Onorato9c1289c2009-08-17 11:03:03 -04004330 /**
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004331 * Some shortcuts were updated in the background.
4332 *
4333 * Implementation of the method from LauncherModel.Callbacks.
4334 */
Sunny Goyal4390ace2014-10-13 11:33:11 -07004335 @Override
4336 public void bindShortcutsChanged(final ArrayList<ShortcutInfo> updated,
4337 final ArrayList<ShortcutInfo> removed, final UserHandleCompat user) {
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004338 Runnable r = new Runnable() {
4339 public void run() {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004340 bindShortcutsChanged(updated, removed, user);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004341 }
4342 };
4343 if (waitUntilResume(r)) {
4344 return;
4345 }
4346
Sunny Goyal4390ace2014-10-13 11:33:11 -07004347 if (!updated.isEmpty()) {
4348 mWorkspace.updateShortcuts(updated);
4349 }
4350
4351 if (!removed.isEmpty()) {
4352 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4353 for (ShortcutInfo si : removed) {
4354 removedComponents.add(si.getTargetComponent());
4355 }
4356 mWorkspace.removeItemsByComponentName(removedComponents, user);
4357 // Notify the drag controller
4358 mDragController.onAppsRemoved(new ArrayList<String>(), removedComponents);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004359 }
4360 }
4361
4362 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004363 * Update the state of a package, typically related to install state.
4364 *
4365 * Implementation of the method from LauncherModel.Callbacks.
4366 */
Sunny Goyale755d462014-07-22 13:48:29 -07004367 @Override
Sunny Goyal756adbc2015-04-16 15:20:51 -07004368 public void bindRestoreItemsChange(final HashSet<ItemInfo> updates) {
4369 Runnable r = new Runnable() {
4370 public void run() {
4371 bindRestoreItemsChange(updates);
4372 }
4373 };
4374 if (waitUntilResume(r)) {
4375 return;
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004376 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004377
Sunny Goyal756adbc2015-04-16 15:20:51 -07004378 mWorkspace.updateRestoreItems(updates);
Sunny Goyala22666f2014-09-18 13:25:15 -07004379 }
4380
4381 /**
Winson Chung83892cc2013-05-01 16:53:33 -07004382 * A package was uninstalled. We take both the super set of packageNames
4383 * in addition to specific applications to remove, the reason being that
4384 * this can be called when a package is updated as well. In that scenario,
4385 * we only remove specific components from the workspace, where as
4386 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004387 *
Sunny Goyal1a745e82014-10-02 15:58:31 -07004388 * @param reason if non-zero, the icons are not permanently removed, rather marked as disabled.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004389 * Implementation of the method from LauncherModel.Callbacks.
4390 */
Sunny Goyal1a745e82014-10-02 15:58:31 -07004391 @Override
Winson Chung83892cc2013-05-01 16:53:33 -07004392 public void bindComponentsRemoved(final ArrayList<String> packageNames,
Sunny Goyal1a745e82014-10-02 15:58:31 -07004393 final ArrayList<AppInfo> appInfos, final UserHandleCompat user, final int reason) {
Winson Chungd64d1762013-08-20 14:37:16 -07004394 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004395 public void run() {
Sunny Goyal1a745e82014-10-02 15:58:31 -07004396 bindComponentsRemoved(packageNames, appInfos, user, reason);
Winson Chung83892cc2013-05-01 16:53:33 -07004397 }
Winson Chungd64d1762013-08-20 14:37:16 -07004398 };
4399 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07004400 return;
4401 }
4402
Sunny Goyal1a745e82014-10-02 15:58:31 -07004403 if (reason == 0) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004404 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4405 for (AppInfo info : appInfos) {
4406 removedComponents.add(info.componentName);
4407 }
Sunny Goyal1a745e82014-10-02 15:58:31 -07004408 if (!packageNames.isEmpty()) {
4409 mWorkspace.removeItemsByPackageName(packageNames, user);
4410 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004411 if (!removedComponents.isEmpty()) {
4412 mWorkspace.removeItemsByComponentName(removedComponents, user);
Sunny Goyal1a745e82014-10-02 15:58:31 -07004413 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004414 // Notify the drag controller
4415 mDragController.onAppsRemoved(packageNames, removedComponents);
4416
Sunny Goyal1a745e82014-10-02 15:58:31 -07004417 } else {
4418 mWorkspace.disableShortcutsByPackageName(packageNames, user, reason);
Joe Onorato36115782010-06-17 13:28:48 -04004419 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07004420
Winson Chungdf95eb12013-10-16 14:57:07 -07004421 // Update AllApps
Winson Chungb745afb2015-03-02 11:51:23 -08004422 if (mAppsView != null) {
4423 mAppsView.removeApps(appInfos);
Winson Chungc58497e2013-09-03 17:48:37 -07004424 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004425 }
Joe Onoratobe386092009-11-17 17:32:16 -08004426
Michael Jurkac402cd92013-05-20 15:49:32 +02004427 private Runnable mBindPackagesUpdatedRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004428 public void run() {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004429 bindAllPackages(mWidgetsModel);
Winson Chung83892cc2013-05-01 16:53:33 -07004430 }
Michael Jurkac402cd92013-05-20 15:49:32 +02004431 };
Hyunyoung Song3f471442015-04-08 19:01:34 -07004432
Hyunyoung Song8821ca92015-05-04 16:28:20 -07004433 @Override
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004434 public void bindAllPackages(final WidgetsModel model) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004435 if (waitUntilResume(mBindPackagesUpdatedRunnable, true)) {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004436 mWidgetsModel = model;
Winson Chung83892cc2013-05-01 16:53:33 -07004437 return;
4438 }
4439
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004440 if (mWidgetsView != null && model != null) {
4441 mWidgetsView.addWidgets(model);
4442 mWidgetsModel = null;
Winson Chung785d2eb2011-04-14 16:08:02 -07004443 }
Winson Chung80baf5a2010-08-09 16:03:15 -07004444 }
4445
Winson Chung400438b2011-01-16 17:53:48 -08004446 private int mapConfigurationOriActivityInfoOri(int configOri) {
4447 final Display d = getWindowManager().getDefaultDisplay();
4448 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
4449 switch (d.getRotation()) {
4450 case Surface.ROTATION_0:
4451 case Surface.ROTATION_180:
4452 // We are currently in the same basic orientation as the natural orientation
4453 naturalOri = configOri;
4454 break;
4455 case Surface.ROTATION_90:
4456 case Surface.ROTATION_270:
4457 // We are currently in the other basic orientation to the natural orientation
4458 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
4459 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
4460 break;
4461 }
4462
4463 int[] oriMap = {
4464 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
4465 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
4466 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
4467 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
4468 };
4469 // Since the map starts at portrait, we need to offset if this device's natural orientation
4470 // is landscape.
4471 int indexOffset = 0;
4472 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
4473 indexOffset = 1;
4474 }
4475 return oriMap[(d.getRotation() + indexOffset) % 4];
4476 }
Adam Cohen446e9402011-09-15 18:21:21 -07004477
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004478 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR2)
Winson Chung4b919f82012-05-01 10:44:08 -07004479 public void lockScreenOrientation() {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004480 if (mRotationEnabled) {
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004481 if (Utilities.ATLEAST_JB_MR2) {
4482 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LOCKED);
4483 } else {
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004484 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
4485 .getConfiguration().orientation));
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004486 }
Winson Chung4b919f82012-05-01 10:44:08 -07004487 }
4488 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004489
Winson Chung4b919f82012-05-01 10:44:08 -07004490 public void unlockScreenOrientation(boolean immediate) {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004491 if (mRotationEnabled) {
Winson Chung4b919f82012-05-01 10:44:08 -07004492 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07004493 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07004494 } else {
4495 mHandler.postDelayed(new Runnable() {
4496 public void run() {
4497 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4498 }
4499 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07004500 }
Winson Chung4b919f82012-05-01 10:44:08 -07004501 }
Winson Chung400438b2011-01-16 17:53:48 -08004502 }
4503
Winson Chunge43a1e72014-01-15 10:33:02 -08004504 protected boolean isLauncherPreinstalled() {
Adam Cohen9211d422014-10-07 18:14:53 -07004505 if (mLauncherCallbacks != null) {
4506 return mLauncherCallbacks.isLauncherPreinstalled();
4507 }
Winson Chunge43a1e72014-01-15 10:33:02 -08004508 PackageManager pm = getPackageManager();
4509 try {
4510 ApplicationInfo ai = pm.getApplicationInfo(getComponentName().getPackageName(), 0);
4511 if ((ai.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
4512 return true;
4513 } else {
4514 return false;
4515 }
4516 } catch (NameNotFoundException e) {
4517 e.printStackTrace();
4518 return false;
4519 }
4520 }
4521
Adam Cohenea90f832014-05-21 15:03:34 -07004522 /**
4523 * This method indicates whether or not we should suggest default wallpaper dimensions
4524 * when our wallpaper cropper was not yet used to set a wallpaper.
4525 */
4526 protected boolean overrideWallpaperDimensions() {
Adam Cohen9211d422014-10-07 18:14:53 -07004527 if (mLauncherCallbacks != null) {
4528 return mLauncherCallbacks.overrideWallpaperDimensions();
4529 }
Adam Cohenea90f832014-05-21 15:03:34 -07004530 return true;
4531 }
4532
Adam Cohen432609a2014-03-13 17:03:22 -07004533 /**
4534 * To be overridden by subclasses to indicate that there is an activity to launch
4535 * before showing the standard launcher experience.
4536 */
4537 protected boolean hasFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004538 if (mLauncherCallbacks != null) {
4539 return mLauncherCallbacks.hasFirstRunActivity();
4540 }
Adam Cohen432609a2014-03-13 17:03:22 -07004541 return false;
4542 }
4543
4544 /**
4545 * To be overridden by subclasses to launch any first run activity
4546 */
4547 protected Intent getFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004548 if (mLauncherCallbacks != null) {
4549 return mLauncherCallbacks.getFirstRunActivity();
4550 }
Adam Cohen432609a2014-03-13 17:03:22 -07004551 return null;
4552 }
4553
Winson Chunga6945242014-01-08 14:04:34 -08004554 private boolean shouldRunFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004555 return !ActivityManager.isRunningInTestHarness() &&
4556 !mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
Winson Chunga6945242014-01-08 14:04:34 -08004557 }
4558
Adam Cohen4a9423d2014-03-28 14:22:31 -07004559 protected boolean hasRunFirstRunActivity() {
4560 return mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
4561 }
4562
Adam Cohen432609a2014-03-13 17:03:22 -07004563 public boolean showFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004564 if (shouldRunFirstRunActivity() &&
4565 hasFirstRunActivity()) {
Winson Chunga6945242014-01-08 14:04:34 -08004566 Intent firstRunIntent = getFirstRunActivity();
4567 if (firstRunIntent != null) {
4568 startActivity(firstRunIntent);
4569 markFirstRunActivityShown();
Adam Cohen432609a2014-03-13 17:03:22 -07004570 return true;
Winson Chunga6945242014-01-08 14:04:34 -08004571 }
4572 }
Adam Cohen432609a2014-03-13 17:03:22 -07004573 return false;
Winson Chunga6945242014-01-08 14:04:34 -08004574 }
4575
4576 private void markFirstRunActivityShown() {
4577 SharedPreferences.Editor editor = mSharedPrefs.edit();
4578 editor.putBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, true);
4579 editor.apply();
4580 }
4581
Adam Cohen432609a2014-03-13 17:03:22 -07004582 /**
4583 * To be overridden by subclasses to indicate that there is an in-activity full-screen intro
4584 * screen that must be displayed and dismissed.
4585 */
4586 protected boolean hasDismissableIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004587 if (mLauncherCallbacks != null) {
4588 return mLauncherCallbacks.hasDismissableIntroScreen();
4589 }
Adam Cohen432609a2014-03-13 17:03:22 -07004590 return false;
4591 }
4592
4593 /**
4594 * Full screen intro screen to be shown and dismissed before the launcher can be used.
4595 */
4596 protected View getIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004597 if (mLauncherCallbacks != null) {
4598 return mLauncherCallbacks.getIntroScreen();
4599 }
Adam Cohen432609a2014-03-13 17:03:22 -07004600 return null;
4601 }
4602
4603 /**
4604 * To be overriden by subclasses to indicate whether the in-activity intro screen has been
4605 * dismissed. This method is ignored if #hasDismissableIntroScreen returns false.
4606 */
4607 private boolean shouldShowIntroScreen() {
4608 return hasDismissableIntroScreen() &&
4609 !mSharedPrefs.getBoolean(INTRO_SCREEN_DISMISSED, false);
4610 }
4611
4612 protected void showIntroScreen() {
4613 View introScreen = getIntroScreen();
4614 changeWallpaperVisiblity(false);
4615 if (introScreen != null) {
4616 mDragLayer.showOverlayView(introScreen);
4617 }
Adam Cohenc3e12c72014-10-31 16:15:36 -07004618 if (mLauncherOverlayContainer != null) {
4619 mLauncherOverlayContainer.setVisibility(View.INVISIBLE);
4620 }
Adam Cohen432609a2014-03-13 17:03:22 -07004621 }
4622
4623 public void dismissIntroScreen() {
4624 markIntroScreenDismissed();
4625 if (showFirstRunActivity()) {
4626 // We delay hiding the intro view until the first run activity is showing. This
4627 // avoids a blip.
4628 mWorkspace.postDelayed(new Runnable() {
4629 @Override
4630 public void run() {
4631 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004632 if (mLauncherOverlayContainer != null) {
4633 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4634 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004635 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004636 }
4637 }, ACTIVITY_START_DELAY);
4638 } else {
4639 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004640 if (mLauncherOverlayContainer != null) {
4641 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4642 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004643 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004644 }
4645 changeWallpaperVisiblity(true);
4646 }
4647
4648 private void markIntroScreenDismissed() {
4649 SharedPreferences.Editor editor = mSharedPrefs.edit();
4650 editor.putBoolean(INTRO_SCREEN_DISMISSED, true);
4651 editor.apply();
4652 }
4653
Adam Cohen091440a2015-03-18 14:16:05 -07004654 @Thunk void showFirstRunClings() {
Sunny Goyal88d60f12014-09-08 03:47:29 -07004655 // The two first run cling paths are mutually exclusive, if the launcher is preinstalled
4656 // on the device, then we always show the first run cling experience (or if there is no
4657 // launcher2). Otherwise, we prompt the user upon started for migration
4658 LauncherClings launcherClings = new LauncherClings(this);
4659 if (launcherClings.shouldShowFirstRunOrMigrationClings()) {
Sunny Goyal639e9062015-08-19 19:17:06 -07004660 mClings = launcherClings;
Sunny Goyal88d60f12014-09-08 03:47:29 -07004661 if (mModel.canMigrateFromOldLauncherDb(this)) {
4662 launcherClings.showMigrationCling();
4663 } else {
Sunny Goyalaf0628f2014-09-19 10:14:48 -07004664 launcherClings.showLongPressCling(true);
Sunny Goyal88d60f12014-09-08 03:47:29 -07004665 }
4666 }
4667 }
4668
Winson Chunga6945242014-01-08 14:04:34 -08004669 void showWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004670 if (mWorkspace != null) mWorkspace.setAlpha(1f);
4671 if (mHotseat != null) mHotseat.setAlpha(1f);
4672 if (mPageIndicators != null) mPageIndicators.setAlpha(1f);
Winson Chung006ee262015-08-03 14:40:11 -07004673 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4674 SearchDropTargetBar.State.SEARCH_BAR, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004675 }
4676
4677 void hideWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004678 if (mWorkspace != null) mWorkspace.setAlpha(0f);
4679 if (mHotseat != null) mHotseat.setAlpha(0f);
4680 if (mPageIndicators != null) mPageIndicators.setAlpha(0f);
Winson Chung006ee262015-08-03 14:40:11 -07004681 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4682 SearchDropTargetBar.State.INVISIBLE, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004683 }
4684
Winson Chung5ffd51d2015-06-25 11:36:50 -07004685 // TODO: These method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004686 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Mathew Inwood72fbec12013-11-19 15:45:07 +00004687 public ItemInfo createAppDragInfo(Intent appLaunchIntent) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004688 // Called from search suggestion
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004689 UserHandleCompat user = null;
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004690 if (Utilities.ATLEAST_LOLLIPOP) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004691 UserHandle userHandle = appLaunchIntent.getParcelableExtra(Intent.EXTRA_USER);
4692 if (userHandle != null) {
4693 user = UserHandleCompat.fromUser(userHandle);
4694 }
4695 }
4696 return createAppDragInfo(appLaunchIntent, user);
Winson Chung5ffd51d2015-06-25 11:36:50 -07004697 }
4698
4699 // TODO: This method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004700 public ItemInfo createAppDragInfo(Intent intent, UserHandleCompat user) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004701 if (user == null) {
4702 user = UserHandleCompat.myUserHandle();
4703 }
4704
4705 // Called from search suggestion, add the profile extra to the intent to ensure that we
4706 // can launch it correctly
Kenny Guyed131872014-04-30 03:02:21 +01004707 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004708 LauncherActivityInfoCompat activityInfo = launcherApps.resolveActivity(intent, user);
Kenny Guyed131872014-04-30 03:02:21 +01004709 if (activityInfo == null) {
Mathew Inwood72fbec12013-11-19 15:45:07 +00004710 return null;
4711 }
Winson Chung5ffd51d2015-06-25 11:36:50 -07004712 return new AppInfo(this, activityInfo, user, mIconCache);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004713 }
4714
Winson Chung5ffd51d2015-06-25 11:36:50 -07004715 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004716 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4717 Bitmap icon) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004718 return new ShortcutInfo(shortcutIntent, caption, caption, icon,
Kenny Guyed131872014-04-30 03:02:21 +01004719 UserHandleCompat.myUserHandle());
4720 }
4721
Winson Chung5ffd51d2015-06-25 11:36:50 -07004722 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004723 public void startDrag(View dragView, ItemInfo dragInfo, DragSource source) {
4724 dragView.setTag(dragInfo);
Winson Chungbabb53e2014-04-14 17:12:49 -07004725 mWorkspace.onExternalDragStartedWithItem(dragView);
4726 mWorkspace.beginExternalDragShared(dragView, source);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004727 }
4728
Winson Chung5ffd51d2015-06-25 11:36:50 -07004729 protected void moveWorkspaceToDefaultScreen() {
4730 mWorkspace.moveToDefaultScreen(false);
4731 }
4732
Anjali Koppalf5d29132014-02-28 13:33:27 -08004733 @Override
4734 public void onPageSwitch(View newPage, int newPageIndex) {
Adam Cohen9211d422014-10-07 18:14:53 -07004735 if (mLauncherCallbacks != null) {
4736 mLauncherCallbacks.onPageSwitch(newPage, newPageIndex);
4737 }
Anjali Koppalf5d29132014-02-28 13:33:27 -08004738 }
4739
Winson Chung80baf5a2010-08-09 16:03:15 -07004740 /**
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004741 * Returns a FastBitmapDrawable with the icon, accurately sized.
4742 */
4743 public FastBitmapDrawable createIconDrawable(Bitmap icon) {
4744 FastBitmapDrawable d = new FastBitmapDrawable(icon);
4745 d.setFilterBitmap(true);
4746 resizeIconDrawable(d);
4747 return d;
4748 }
4749
4750 /**
4751 * Resizes an icon drawable to the correct icon size.
4752 */
Winson5fbe0742015-09-30 15:33:00 -07004753 public Drawable resizeIconDrawable(Drawable icon) {
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004754 icon.setBounds(0, 0, mDeviceProfile.iconSizePx, mDeviceProfile.iconSizePx);
Winson5fbe0742015-09-30 15:33:00 -07004755 return icon;
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004756 }
4757
4758 /**
Joe Onoratobe386092009-11-17 17:32:16 -08004759 * Prints out out state for debugging.
4760 */
4761 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04004762 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08004763 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08004764 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
4765 Log.d(TAG, "mRestoring=" + mRestoring);
4766 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
4767 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004768 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08004769 mModel.dumpState();
Hyunyoung Song3f471442015-04-08 19:01:34 -07004770 // TODO(hyunyoungs): add mWidgetsView.dumpState(); or mWidgetsModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07004771
Daniel Sandler325dc232013-06-05 22:57:57 -04004772 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08004773 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004774
4775 @Override
4776 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
4777 super.dump(prefix, fd, writer, args);
Adam Cohen4caf2982013-08-20 18:54:31 -07004778 synchronized (sDumpLogs) {
4779 writer.println(" ");
4780 writer.println("Debug logs: ");
4781 for (int i = 0; i < sDumpLogs.size(); i++) {
4782 writer.println(" " + sDumpLogs.get(i));
4783 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004784 }
Adam Cohen9211d422014-10-07 18:14:53 -07004785 if (mLauncherCallbacks != null) {
4786 mLauncherCallbacks.dump(prefix, fd, writer, args);
4787 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004788 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004789
4790 public static void dumpDebugLogsToConsole() {
Winson Chungede41292013-09-19 16:27:36 -07004791 if (DEBUG_DUMP_LOG) {
4792 synchronized (sDumpLogs) {
4793 Log.d(TAG, "");
4794 Log.d(TAG, "*********************");
4795 Log.d(TAG, "Launcher debug logs: ");
4796 for (int i = 0; i < sDumpLogs.size(); i++) {
4797 Log.d(TAG, " " + sDumpLogs.get(i));
4798 }
4799 Log.d(TAG, "*********************");
4800 Log.d(TAG, "");
Adam Cohen4caf2982013-08-20 18:54:31 -07004801 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004802 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004803 }
4804
4805 public static void addDumpLog(String tag, String log, boolean debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004806 addDumpLog(tag, log, null, debugLog);
4807 }
4808
4809 public static void addDumpLog(String tag, String log, Exception e, boolean debugLog) {
Adam Cohen4caf2982013-08-20 18:54:31 -07004810 if (debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004811 if (e != null) {
4812 Log.d(tag, log, e);
4813 } else {
4814 Log.d(tag, log);
4815 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004816 }
Winson Chungede41292013-09-19 16:27:36 -07004817 if (DEBUG_DUMP_LOG) {
4818 sDateStamp.setTime(System.currentTimeMillis());
4819 synchronized (sDumpLogs) {
Dan Sandler295ae182013-12-10 16:05:47 -05004820 sDumpLogs.add(sDateFormat.format(sDateStamp) + ": " + tag + ", " + log
4821 + (e == null ? "" : (", Exception: " + e)));
Adam Cohen4caf2982013-08-20 18:54:31 -07004822 }
Winson Chungede41292013-09-19 16:27:36 -07004823 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004824 }
4825
Adam Cohen59400422014-03-05 18:07:04 -08004826 public static CustomAppWidget getCustomAppWidget(String name) {
4827 return sCustomAppWidgets.get(name);
4828 }
4829
4830 public static HashMap<String, CustomAppWidget> getCustomAppWidgets() {
4831 return sCustomAppWidgets;
4832 }
4833
Winson Chungede41292013-09-19 16:27:36 -07004834 public void dumpLogsToLocalData() {
4835 if (DEBUG_DUMP_LOG) {
Michael Jurka43467462013-11-14 12:03:58 +01004836 new AsyncTask<Void, Void, Void>() {
4837 public Void doInBackground(Void ... args) {
Winson Chungede41292013-09-19 16:27:36 -07004838 boolean success = false;
4839 sDateStamp.setTime(sRunStart);
4840 String FILENAME = sDateStamp.getMonth() + "-"
4841 + sDateStamp.getDay() + "_"
4842 + sDateStamp.getHours() + "-"
4843 + sDateStamp.getMinutes() + "_"
4844 + sDateStamp.getSeconds() + ".txt";
4845
4846 FileOutputStream fos = null;
4847 File outFile = null;
4848 try {
4849 outFile = new File(getFilesDir(), FILENAME);
4850 outFile.createNewFile();
4851 fos = new FileOutputStream(outFile);
4852 } catch (Exception e) {
4853 e.printStackTrace();
4854 }
4855 if (fos != null) {
4856 PrintWriter writer = new PrintWriter(fos);
4857
4858 writer.println(" ");
4859 writer.println("Debug logs: ");
4860 synchronized (sDumpLogs) {
4861 for (int i = 0; i < sDumpLogs.size(); i++) {
4862 writer.println(" " + sDumpLogs.get(i));
4863 }
4864 }
4865 writer.close();
4866 }
4867 try {
4868 if (fos != null) {
4869 fos.close();
4870 success = true;
4871 }
4872 } catch (IOException e) {
4873 e.printStackTrace();
4874 }
Michael Jurka43467462013-11-14 12:03:58 +01004875 return null;
Winson Chungede41292013-09-19 16:27:36 -07004876 }
Sunny Goyal8ac727b2015-09-23 15:38:09 -07004877 }.executeOnExecutor(Utilities.THREAD_POOL_EXECUTOR);
Adam Cohen4caf2982013-08-20 18:54:31 -07004878 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004879 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004880}
Michael Jurka2763be32011-02-24 11:19:57 -08004881
Dan Sandlerd5024042014-01-09 15:01:33 -05004882interface DebugIntents {
4883 static final String DELETE_DATABASE = "com.android.launcher3.action.DELETE_DATABASE";
4884 static final String MIGRATE_DATABASE = "com.android.launcher3.action.MIGRATE_DATABASE";
Adam Cohen8b5b05b2014-01-10 21:42:39 +00004885}