blob: a379accd3b932ce10540347d9dfd33102b070661 [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) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700903 CellLayout cellLayout =
Adam Cohendcd297f2013-06-18 13:13:40 -0700904 (CellLayout) mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800905 Runnable onCompleteRunnable = null;
906 int animationType = 0;
907
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700908 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800909 if (resultCode == RESULT_OK) {
910 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
911 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700912 mPendingAddWidgetInfo);
913 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800914 onCompleteRunnable = new Runnable() {
915 @Override
916 public void run() {
917 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700918 mPendingAddInfo.screenId, layout, null);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700919 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
920 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
Adam Cohened66b2b2012-01-23 17:28:51 -0800921 }
922 };
923 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800924 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800925 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
Adam Cohened66b2b2012-01-23 17:28:51 -0800926 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700927 if (mDragLayer.getAnimatedView() != null) {
928 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
929 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
930 animationType, boundWidget, true);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700931 } else if (onCompleteRunnable != null) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700932 // The animated view may be null in the case of a rotation during widget configuration
933 onCompleteRunnable.run();
934 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800935 }
936
937 @Override
Michael Jurkacd496d72013-04-11 11:32:45 -0700938 protected void onStop() {
939 super.onStop();
940 FirstFrameAnimatorHelper.setIsVisible(false);
Adam Cohen9211d422014-10-07 18:14:53 -0700941
942 if (mLauncherCallbacks != null) {
943 mLauncherCallbacks.onStop();
944 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700945 }
946
947 @Override
948 protected void onStart() {
949 super.onStart();
950 FirstFrameAnimatorHelper.setIsVisible(true);
Adam Cohen9211d422014-10-07 18:14:53 -0700951
952 if (mLauncherCallbacks != null) {
953 mLauncherCallbacks.onStart();
954 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700955 }
956
957 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800958 protected void onResume() {
Michael Jurka447bf842013-05-15 14:52:15 +0200959 long startTime = 0;
960 if (DEBUG_RESUME_TIME) {
961 startTime = System.currentTimeMillis();
Daniel Sandler924b9932013-06-12 00:38:25 -0400962 Log.v(TAG, "Launcher.onResume()");
Michael Jurka447bf842013-05-15 14:52:15 +0200963 }
Adam Cohen9211d422014-10-07 18:14:53 -0700964
965 if (mLauncherCallbacks != null) {
966 mLauncherCallbacks.preOnResume();
967 }
968
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800969 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700970
Winson Chung4a2afa32012-07-19 14:53:05 -0700971 // Restore the previous launcher state
Winson Chung75cc8252015-04-10 10:19:58 -0700972 if (mOnResumeState == State.WORKSPACE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700973 showWorkspace(false);
Winson Chungb745afb2015-03-02 11:51:23 -0800974 } else if (mOnResumeState == State.APPS) {
Winson Chung13eb5272015-05-11 16:30:13 -0700975 boolean launchedFromApp = (mWaitingForResume != null);
Winson Chung4ac30062015-05-08 17:34:17 -0700976 // Don't update the predicted apps if the user is returning to launcher in the apps
Winson Chung13eb5272015-05-11 16:30:13 -0700977 // view after launching an app, as they may be depending on the UI to be static to
978 // switch to another app, otherwise, if it was
Winson Chung4ac30062015-05-08 17:34:17 -0700979 showAppsView(false /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -0700980 !launchedFromApp /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -0800981 } else if (mOnResumeState == State.WIDGETS) {
982 showWidgetsView(false, false);
Winson Chung4a2afa32012-07-19 14:53:05 -0700983 }
984 mOnResumeState = State.NONE;
985
Sunny Goyal4a6c6f32015-05-19 12:36:46 -0700986 // Background was set to gradient in onPause(), restore to transparent if in all apps.
Sunny Goyald70ad0d2015-05-26 17:20:07 -0700987 setWorkspaceBackground(mState == State.WORKSPACE ? WORKSPACE_BACKGROUND_GRADIENT
988 : WORKSPACE_BACKGROUND_TRANSPARENT);
Craig Mautner360310b2012-10-26 15:13:08 -0700989
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800990 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700991 if (mRestoring || mOnResumeNeedsLoad) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700992 setWorkspaceLoading(true);
Sunny Goyal22aa3812015-08-19 16:24:27 -0700993
994 // If we're starting binding all over again, clear any bind calls we'd postponed in
995 // the past (see waitUntilResume) -- we don't need them since we're starting binding
996 // from scratch again
997 mBindOnResumeCallbacks.clear();
998
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700999 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001000 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001001 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001002 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001003 if (mBindOnResumeCallbacks.size() > 0) {
Michael Jurkac402cd92013-05-20 15:49:32 +02001004 // We might have postponed some bind calls until onResume (see waitUntilResume) --
1005 // execute them here
1006 long startTimeCallbacks = 0;
1007 if (DEBUG_RESUME_TIME) {
1008 startTimeCallbacks = System.currentTimeMillis();
1009 }
1010
Michael Jurka1e2f4652013-07-08 18:03:46 -07001011 for (int i = 0; i < mBindOnResumeCallbacks.size(); i++) {
1012 mBindOnResumeCallbacks.get(i).run();
Michael Jurkac402cd92013-05-20 15:49:32 +02001013 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001014 mBindOnResumeCallbacks.clear();
Michael Jurkac402cd92013-05-20 15:49:32 +02001015 if (DEBUG_RESUME_TIME) {
1016 Log.d(TAG, "Time spent processing callbacks in onResume: " +
1017 (System.currentTimeMillis() - startTimeCallbacks));
1018 }
Michael Jurka447bf842013-05-15 14:52:15 +02001019 }
Michael Jurka54554252013-08-01 12:52:23 +02001020 if (mOnResumeCallbacks.size() > 0) {
1021 for (int i = 0; i < mOnResumeCallbacks.size(); i++) {
1022 mOnResumeCallbacks.get(i).run();
1023 }
1024 mOnResumeCallbacks.clear();
1025 }
Winson Chunge4e50662012-01-23 14:45:13 -08001026
1027 // Reset the pressed state of icons that were locked in the press state while activities
1028 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -08001029 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -08001030 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -08001031 mWaitingForResume.setStayPressed(false);
1032 }
Winson Chung82963d52013-10-09 11:20:57 -07001033
Adam Cohen06dff352012-06-01 17:17:08 -07001034 // It is possible that widgets can receive updates while launcher is not in the foreground.
1035 // Consequently, the widgets will be inflated in the orientation of the foreground activity
1036 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
1037 // orientation.
Sunny Goyal6bec75f2015-10-01 18:50:48 -07001038 if (!isWorkspaceLoading()) {
1039 getWorkspace().reinflateWidgetsIfNecessary();
1040 }
Sunny Goyal22235bc2015-04-03 09:23:43 -07001041 reinflateQSBIfNecessary();
Adam Cohenf9426d52012-06-04 17:26:21 -07001042
Michael Jurka447bf842013-05-15 14:52:15 +02001043 if (DEBUG_RESUME_TIME) {
1044 Log.d(TAG, "Time spent in onResume: " + (System.currentTimeMillis() - startTime));
1045 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001046
Adam Cohen4b66bf32015-09-18 12:15:19 -07001047 // We want to suppress callbacks about CustomContent being shown if we have just received
1048 // onNewIntent while the user was present within launcher. In that case, we post a call
1049 // to move the user to the main screen (which will occur after onResume). We don't want to
1050 // have onHide (from onPause), then onShow, then onHide again, which we get if we don't
1051 // suppress here.
1052 if (mWorkspace.getCustomContentCallbacks() != null
1053 && !mMoveToDefaultScreenFromNewIntent) {
Adam Cohen6fecd412013-10-02 17:41:50 -07001054 // If we are resuming and the custom content is the current page, we call onShow().
Adam Cohen4b66bf32015-09-18 12:15:19 -07001055 // It is also possible that onShow will instead be called slightly after first layout
Adam Cohen6fecd412013-10-02 17:41:50 -07001056 // if PagedView#setRestorePage was set to the custom content page in onCreate().
1057 if (mWorkspace.isOnOrMovingToCustomContent()) {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001058 mWorkspace.getCustomContentCallbacks().onShow(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001059 }
1060 }
Adam Cohen4b66bf32015-09-18 12:15:19 -07001061 mMoveToDefaultScreenFromNewIntent = false;
Winson Chungcd99cd32015-04-29 11:03:24 -07001062 updateInteraction(Workspace.State.NORMAL, mWorkspace.getState());
Adam Cohen53805212013-10-01 10:39:23 -07001063 mWorkspace.onResume();
Sunny Goyale755d462014-07-22 13:48:29 -07001064
Sunny Goyal756adbc2015-04-16 15:20:51 -07001065 if (!isWorkspaceLoading()) {
1066 // Process any items that were added while Launcher was away.
1067 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
1068 }
Adam Cohen9211d422014-10-07 18:14:53 -07001069
1070 if (mLauncherCallbacks != null) {
1071 mLauncherCallbacks.onResume();
1072 }
Adam Cohen06dff352012-06-01 17:17:08 -07001073 }
1074
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001075 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001076 protected void onPause() {
Winson Chung997a9232013-07-24 15:33:46 -07001077 // Ensure that items added to Launcher are queued until Launcher returns
1078 InstallShortcutReceiver.enableInstallQueue();
1079
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001080 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001081 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -08001082 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -07001083 mDragController.resetLastGestureUpTime();
Adam Cohen6fecd412013-10-02 17:41:50 -07001084
1085 // We call onHide() aggressively. The custom content callbacks should be able to
1086 // debounce excess onHide calls.
1087 if (mWorkspace.getCustomContentCallbacks() != null) {
1088 mWorkspace.getCustomContentCallbacks().onHide();
1089 }
Romain Guycbb89e42009-06-08 15:52:54 -07001090
Adam Cohen9211d422014-10-07 18:14:53 -07001091 if (mLauncherCallbacks != null) {
1092 mLauncherCallbacks.onPause();
Adam Cohenbffe7452013-07-22 18:21:45 -07001093 }
Adam Cohenbffe7452013-07-22 18:21:45 -07001094 }
1095
1096 public interface CustomContentCallbacks {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001097 // Custom content is completely shown. {@code fromResume} indicates whether this was caused
1098 // by a onResume or by scrolling otherwise.
1099 public void onShow(boolean fromResume);
Adam Cohenbffe7452013-07-22 18:21:45 -07001100
1101 // Custom content is completely hidden
1102 public void onHide();
Adam Cohenc36fa5c2013-08-29 11:54:42 -07001103
1104 // Custom content scroll progress changed. From 0 (not showing) to 1 (fully showing).
1105 public void onScrollProgressChanged(float progress);
Jan-Willem Maarse2ff91c42014-07-10 15:58:12 -07001106
1107 // Indicates whether the user is allowed to scroll away from the custom content.
1108 boolean isScrollingAllowed();
Adam Cohenbffe7452013-07-22 18:21:45 -07001109 }
1110
Adam Cohenc2d6e892014-10-16 09:49:24 -07001111 public interface LauncherOverlay {
1112
1113 /**
1114 * Touch interaction leading to overscroll has begun
1115 */
1116 public void onScrollInteractionBegin();
1117
1118 /**
1119 * Touch interaction related to overscroll has ended
1120 */
1121 public void onScrollInteractionEnd();
1122
1123 /**
1124 * Scroll progress, between 0 and 100, when the user scrolls beyond the leftmost
1125 * screen (or in the case of RTL, the rightmost screen).
1126 */
1127 public void onScrollChange(int progress, boolean rtl);
1128
1129 /**
1130 * Screen has stopped scrolling
1131 */
1132 public void onScrollSettled();
1133
1134 /**
1135 * This method can be called by the Launcher in order to force the LauncherOverlay
1136 * to exit fully immersive mode.
1137 */
1138 public void forceExitFullImmersion();
1139 }
1140
Jun Mukai8af0cd82015-05-12 12:32:12 -07001141 public interface LauncherSearchCallbacks {
1142 /**
1143 * Called when the search overlay is shown.
1144 */
1145 public void onSearchOverlayOpened();
1146
1147 /**
1148 * Called when the search overlay is dismissed.
1149 */
1150 public void onSearchOverlayClosed();
1151 }
1152
Adam Cohenc2d6e892014-10-16 09:49:24 -07001153 public interface LauncherOverlayCallbacks {
1154 /**
1155 * This method indicates whether a call to {@link #enterFullImmersion()} will succeed,
1156 * however it doesn't modify any state within the launcher.
1157 */
1158 public boolean canEnterFullImmersion();
1159
1160 /**
1161 * Should be called to tell Launcher that the LauncherOverlay will take over interaction,
1162 * eg. by occupying the full screen and handling all touch events.
1163 *
1164 * @return true if Launcher allows the LauncherOverlay to become fully immersive. In this
1165 * case, Launcher will modify any necessary state and assumes the overlay is
1166 * handling all interaction. If false, the LauncherOverlay should cancel any
1167 *
1168 */
1169 public boolean enterFullImmersion();
1170
1171 /**
1172 * Must be called when exiting fully immersive mode. Indicates to Launcher that it has
1173 * full control over UI and state.
1174 */
1175 public void exitFullImmersion();
1176 }
1177
1178 class LauncherOverlayCallbacksImpl implements LauncherOverlayCallbacks {
1179
1180 @Override
1181 public boolean canEnterFullImmersion() {
1182 return mState == State.WORKSPACE;
1183 }
1184
1185 @Override
1186 public boolean enterFullImmersion() {
1187 if (mState == State.WORKSPACE) {
1188 // When fully immersed, disregard any touches which fall through.
1189 mDragLayer.setBlockTouch(true);
1190 return true;
1191 }
1192 return false;
1193 }
1194
1195 @Override
1196 public void exitFullImmersion() {
1197 mDragLayer.setBlockTouch(false);
1198 }
1199 }
1200
Jorim Jaggid017f882014-01-14 17:08:48 -08001201 protected boolean hasSettings() {
Adam Cohen9211d422014-10-07 18:14:53 -07001202 if (mLauncherCallbacks != null) {
1203 return mLauncherCallbacks.hasSettings();
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07001204 } else {
1205 // On devices with a locked orientation, we will at least have the allow rotation
1206 // setting.
1207 return !Utilities.isRotationAllowedForDevice(this);
Adam Cohen9211d422014-10-07 18:14:53 -07001208 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001209 }
1210
Adam Cohen9211d422014-10-07 18:14:53 -07001211 public void addToCustomContentPage(View customContent,
Adam Cohen53805212013-10-01 10:39:23 -07001212 CustomContentCallbacks callbacks, String description) {
1213 mWorkspace.addToCustomContentPage(customContent, callbacks, description);
Adam Cohen66a01fd2013-06-11 12:48:00 -07001214 }
1215
Adam Cohenedb40762013-07-18 16:45:45 -07001216 // The custom content needs to offset its content to account for the QSB
1217 public int getTopOffsetForCustomContent() {
1218 return mWorkspace.getPaddingTop();
1219 }
1220
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001221 @Override
1222 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001223 // Flag the loader to stop early before switching
Adam Cohen1a85c582014-09-30 09:48:49 -07001224 if (mModel.isCurrentCallbacks(this)) {
1225 mModel.stopLoader();
1226 }
Hyunyoung Song3f471442015-04-08 19:01:34 -07001227 //TODO(hyunyoungs): stop the widgets loader when there is a rotation.
1228
Romain Guy13c2e7b2010-03-10 19:45:00 -08001229 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001230 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001231
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001232 // We can't hide the IME if it was forced open. So don't bother
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001233 @Override
1234 public void onWindowFocusChanged(boolean hasFocus) {
1235 super.onWindowFocusChanged(hasFocus);
Adam Cohened307df2013-10-02 09:37:31 -07001236 mHasFocus = hasFocus;
Adam Cohen9211d422014-10-07 18:14:53 -07001237
1238 if (mLauncherCallbacks != null) {
1239 mLauncherCallbacks.onWindowFocusChanged(hasFocus);
1240 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001241 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001242
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001243 private boolean acceptFilter() {
1244 final InputMethodManager inputManager = (InputMethodManager)
1245 getSystemService(Context.INPUT_METHOD_SERVICE);
1246 return !inputManager.isFullscreenMode();
1247 }
1248
1249 @Override
1250 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -07001251 final int uniChar = event.getUnicodeChar();
1252 final boolean handled = super.onKeyDown(keyCode, event);
1253 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
1254 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001255 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
1256 keyCode, event);
1257 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001258 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -07001259 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -07001260 // showSearchDialog()
1261 // If there are multiple keystrokes before the search dialog takes focus,
1262 // onSearchRequested() will be called for every keystroke,
1263 // but it is idempotent, so it's fine.
1264 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001265 }
1266 }
1267
Joe Onorato8a9625e2010-01-28 15:55:35 -08001268 // Eat the long press event so the keyboard doesn't come up.
1269 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
1270 return true;
1271 }
1272
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001273 return handled;
1274 }
1275
Winson46163472015-09-22 17:31:56 -07001276 @Override
1277 public boolean onKeyUp(int keyCode, KeyEvent event) {
1278 if (keyCode == KeyEvent.KEYCODE_MENU) {
1279 // Ignore the menu key if we are currently dragging or are on the custom content screen
1280 if (!isOnCustomContent() && !mDragController.isDragging()) {
1281 // Close any open folders
1282 closeFolder();
1283
1284 // Stop resizing any widgets
1285 mWorkspace.exitWidgetResizeMode();
1286
1287 // Show the overview mode if we are on the workspace
1288 if (mState == State.WORKSPACE && !mWorkspace.isInOverviewMode() &&
1289 !mWorkspace.isSwitchingState()) {
1290 mOverviewPanel.requestFocus();
Winsone9f27272015-10-13 10:47:51 -07001291 showOverviewMode(true, true /* requestButtonFocus */);
Winson46163472015-09-22 17:31:56 -07001292 }
1293 }
1294 return true;
1295 }
1296 return super.onKeyUp(keyCode, event);
1297 }
1298
Karl Rosaen138a0412009-04-23 19:00:21 -07001299 private String getTypedText() {
1300 return mDefaultKeySsb.toString();
1301 }
1302
1303 private void clearTypedText() {
1304 mDefaultKeySsb.clear();
1305 mDefaultKeySsb.clearSpans();
1306 Selection.setSelection(mDefaultKeySsb, 0);
1307 }
1308
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001309 /**
Michael Jurka883f55b2010-10-21 15:47:14 -07001310 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
1311 * State
1312 */
1313 private static State intToState(int stateOrdinal) {
1314 State state = State.WORKSPACE;
1315 final State[] stateValues = State.values();
1316 for (int i = 0; i < stateValues.length; i++) {
1317 if (stateValues[i].ordinal() == stateOrdinal) {
1318 state = stateValues[i];
1319 break;
1320 }
1321 }
1322 return state;
1323 }
1324
1325 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001326 * Restores the previous state, if it exists.
1327 *
1328 * @param savedState The previous state.
1329 */
1330 private void restoreState(Bundle savedState) {
1331 if (savedState == null) {
1332 return;
1333 }
1334
Michael Jurka883f55b2010-10-21 15:47:14 -07001335 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungb745afb2015-03-02 11:51:23 -08001336 if (state == State.APPS || state == State.WIDGETS) {
1337 mOnResumeState = state;
Joe Onorato3a8820b2009-11-10 15:06:42 -08001338 }
1339
Adam Cohen21cd0022013-10-09 18:57:02 -07001340 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN,
1341 PagedView.INVALID_RESTORE_PAGE);
1342 if (currentScreen != PagedView.INVALID_RESTORE_PAGE) {
Winson Chung8c87cd82013-07-23 16:20:10 -07001343 mWorkspace.setRestorePage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001344 }
1345
Winson Chung3d503fb2011-07-13 17:25:49 -07001346 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
Adam Cohendcd297f2013-06-18 13:13:40 -07001347 final long pendingAddScreen = savedState.getLong(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001348
Winson Chung3d503fb2011-07-13 17:25:49 -07001349 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
1350 mPendingAddInfo.container = pendingAddContainer;
Adam Cohendcd297f2013-06-18 13:13:40 -07001351 mPendingAddInfo.screenId = pendingAddScreen;
Winson Chung3d503fb2011-07-13 17:25:49 -07001352 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
1353 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001354 mPendingAddInfo.spanX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_X);
1355 mPendingAddInfo.spanY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y);
Adam Cohenb823ae42015-03-27 18:07:52 -07001356 AppWidgetProviderInfo info = savedState.getParcelable(
1357 RUNTIME_STATE_PENDING_ADD_WIDGET_INFO);
Sunny Goyalf044bb12015-05-12 13:30:07 -07001358 mPendingAddWidgetInfo = info == null ?
1359 null : LauncherAppWidgetProviderInfo.fromProviderInfo(this, info);
1360
Adam Cohen4637b5a2013-11-04 18:21:24 -08001361 mPendingAddWidgetId = savedState.getInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID);
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001362 setWaitingForResult(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001363 mRestoring = true;
1364 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001365 }
1366
1367 /**
1368 * Finds all the views we need and configure them properly.
1369 */
1370 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -07001371 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -04001372
Craig Mautner360310b2012-10-26 15:13:08 -07001373 mLauncherView = findViewById(R.id.launcher);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001374 mFocusHandler = (FocusIndicatorView) findViewById(R.id.focus_indicator);
Winson Chung4c98d922011-05-31 16:50:48 -07001375 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
1376 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Anjali Koppalf5d29132014-02-28 13:33:27 -08001377 mWorkspace.setPageSwitchListener(this);
Winson Chunga6945242014-01-08 14:04:34 -08001378 mPageIndicators = mDragLayer.findViewById(R.id.page_indicator);
Craig Mautner360310b2012-10-26 15:13:08 -07001379
John Spurlock77e1f472013-09-11 10:09:51 -04001380 mLauncherView.setSystemUiVisibility(
1381 View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
Craig Mautner360310b2012-10-26 15:13:08 -07001382 mWorkspaceBackgroundDrawable = getResources().getDrawable(R.drawable.workspace_bg);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001383
Winson Chung4c98d922011-05-31 16:50:48 -07001384 // Setup the drag layer
1385 mDragLayer.setup(this, dragController);
1386
Winson Chung3d503fb2011-07-13 17:25:49 -07001387 // Setup the hotseat
1388 mHotseat = (Hotseat) findViewById(R.id.hotseat);
1389 if (mHotseat != null) {
Winson Chung11a1a532013-09-13 11:14:45 -07001390 mHotseat.setOnLongClickListener(this);
Winson Chung3d503fb2011-07-13 17:25:49 -07001391 }
1392
Winsone9f27272015-10-13 10:47:51 -07001393 // Setup the overview panel
1394 setupOverviewPanel();
Adam Cohenf358a4b2013-07-23 16:47:31 -07001395
Winson Chung4c98d922011-05-31 16:50:48 -07001396 // Setup the workspace
1397 mWorkspace.setHapticFeedbackEnabled(false);
1398 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -07001399 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -07001400 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001401
Winson Chungf0ea4d32011-06-06 14:27:16 -07001402 // Get the search/delete bar
Adam Cohen24ce0b32014-01-14 16:18:14 -08001403 mSearchDropTargetBar = (SearchDropTargetBar)
1404 mDragLayer.findViewById(R.id.search_drop_target_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001405
Winson Chungef7f8742015-06-04 17:18:17 -07001406 // Setup Apps and Widgets
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001407 mAppsView = (AllAppsContainerView) findViewById(R.id.apps_view);
Hyunyoung Song3f471442015-04-08 19:01:34 -07001408 mWidgetsView = (WidgetsContainerView) findViewById(R.id.widgets_view);
Winson Chungef7f8742015-06-04 17:18:17 -07001409 if (mLauncherCallbacks != null && mLauncherCallbacks.getAllAppsSearchBarController() != null) {
1410 mAppsView.setSearchBarController(mLauncherCallbacks.getAllAppsSearchBarController());
1411 } else {
1412 mAppsView.setSearchBarController(mAppsView.newDefaultAppSearchController());
1413 }
Craig Mautner360310b2012-10-26 15:13:08 -07001414
Winson Chung3d503fb2011-07-13 17:25:49 -07001415 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -07001416 dragController.setDragScoller(mWorkspace);
1417 dragController.setScrollView(mDragLayer);
1418 dragController.setMoveTarget(mWorkspace);
1419 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -07001420 if (mSearchDropTargetBar != null) {
1421 mSearchDropTargetBar.setup(this, dragController);
Adam Cohenb0df1b02015-03-18 22:21:40 -07001422 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Michael Jurkae0f5a612011-02-07 16:45:41 -08001423 }
Daniel Sandler924b9932013-06-12 00:38:25 -04001424
Sunny Goyald3060552015-06-25 19:35:49 -07001425 if (TestingUtils.MEMORY_DUMP_ENABLED) {
1426 TestingUtils.addWeightWatcher(this);
Daniel Sandler924b9932013-06-12 00:38:25 -04001427 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001428 }
1429
Winsone9f27272015-10-13 10:47:51 -07001430 private void setupOverviewPanel() {
1431 mOverviewPanel = (ViewGroup) findViewById(R.id.overview_panel);
1432
1433 // Long-clicking buttons in the overview panel does the same thing as clicking them.
1434 OnLongClickListener performClickOnLongClick = new OnLongClickListener() {
1435 @Override
1436 public boolean onLongClick(View v) {
1437 return v.performClick();
1438 }
1439 };
1440
1441 // Bind wallpaper button actions
1442 View wallpaperButton = findViewById(R.id.wallpaper_button);
1443 wallpaperButton.setOnClickListener(new OnClickListener() {
1444 @Override
1445 public void onClick(View view) {
1446 if (!mWorkspace.isSwitchingState()) {
1447 onClickWallpaperPicker(view);
1448 }
1449 }
1450 });
1451 wallpaperButton.setOnLongClickListener(performClickOnLongClick);
1452 wallpaperButton.setOnTouchListener(getHapticFeedbackTouchListener());
1453
1454 // Bind widget button actions
1455 mWidgetsButton = findViewById(R.id.widget_button);
1456 mWidgetsButton.setOnClickListener(new OnClickListener() {
1457 @Override
1458 public void onClick(View view) {
1459 if (!mWorkspace.isSwitchingState()) {
1460 onClickAddWidgetButton(view);
1461 }
1462 }
1463 });
1464 mWidgetsButton.setOnLongClickListener(performClickOnLongClick);
1465 mWidgetsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1466
1467 // Bind settings actions
1468 View settingsButton = findViewById(R.id.settings_button);
1469 boolean hasSettings = hasSettings();
1470 if (hasSettings) {
1471 settingsButton.setOnClickListener(new OnClickListener() {
1472 @Override
1473 public void onClick(View view) {
1474 if (!mWorkspace.isSwitchingState()) {
1475 onClickSettingsButton(view);
1476 }
1477 }
1478 });
1479 settingsButton.setOnLongClickListener(performClickOnLongClick);
1480 settingsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1481 } else {
1482 settingsButton.setVisibility(View.GONE);
1483 }
1484
1485 mOverviewPanel.setAlpha(0f);
1486 }
1487
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001488 /**
Anjali Koppal5ad44842014-03-10 20:34:39 -07001489 * Sets the all apps button. This method is called from {@link Hotseat}.
1490 */
1491 public void setAllAppsButton(View allAppsButton) {
1492 mAllAppsButton = allAppsButton;
1493 }
1494
1495 public View getAllAppsButton() {
1496 return mAllAppsButton;
1497 }
1498
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001499 public View getWidgetsButton() {
1500 return mWidgetsButton;
1501 }
1502
Anjali Koppal5ad44842014-03-10 20:34:39 -07001503 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001504 * Creates a view representing a shortcut.
1505 *
1506 * @param info The data structure describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001507 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001508 View createShortcut(ShortcutInfo info) {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001509 return createShortcut((ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001510 }
1511
1512 /**
1513 * Creates a view representing a shortcut inflated from the specified resource.
1514 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001515 * @param parent The group the shortcut belongs to.
1516 * @param info The data structure describing the shortcut.
1517 *
1518 * @return A View inflated from layoutResId.
1519 */
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001520 public View createShortcut(ViewGroup parent, ShortcutInfo info) {
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001521 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(R.layout.app_icon,
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001522 parent, false);
1523 favorite.applyFromShortcutInfo(info, mIconCache);
1524 favorite.setCompoundDrawablePadding(mDeviceProfile.iconDrawablePaddingPx);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001525 favorite.setOnClickListener(this);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001526 favorite.setOnFocusChangeListener(mFocusHandler);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001527 return favorite;
1528 }
1529
1530 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001531 * Add a shortcut to the workspace.
1532 *
1533 * @param data The intent describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001534 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001535 private void completeAddShortcut(Intent data, long container, long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07001536 int cellY) {
1537 int[] cellXY = mTmpAddItemCellCoordinates;
1538 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohendcd297f2013-06-18 13:13:40 -07001539 CellLayout layout = getCellLayout(container, screenId);
Romain Guycbb89e42009-06-08 15:52:54 -07001540
Sunny Goyal5c97f512015-05-19 16:03:28 -07001541 ShortcutInfo info = InstallShortcutReceiver.fromShortcutIntent(this, data);
Adam Cohend9198822011-11-22 16:42:47 -08001542 if (info == null) {
1543 return;
1544 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001545 final View view = createShortcut(info);
1546
Sunny Goyal5c97f512015-05-19 16:03:28 -07001547 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001548 // First we check if we already know the exact location where we want to add this item.
1549 if (cellX >= 0 && cellY >= 0) {
1550 cellXY[0] = cellX;
1551 cellXY[1] = cellY;
1552 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001553
1554 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001555 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001556 true, null,null)) {
1557 return;
1558 }
1559 DragObject dragObject = new DragObject();
1560 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001561 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1562 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001563 return;
1564 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001565 } else if (touchXY != null) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08001566 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001567 int[] result = layout.findNearestVacantArea(touchXY[0], touchXY[1], 1, 1, cellXY);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001568 foundCellSpan = (result != null);
1569 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001570 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001571 }
1572
1573 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001574 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001575 return;
1576 }
1577
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001578 LauncherModel.addItemToDatabase(this, info, container, screenId, cellXY[0], cellXY[1]);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001579
1580 if (!mRestoring) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001581 mWorkspace.addInScreen(view, container, screenId, cellXY[0], cellXY[1], 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07001582 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001583 }
1584 }
1585
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001586 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001587 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001588 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001589 * @param appWidgetId The app widget id
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001590 */
Adam Cohen091440a2015-03-18 14:16:05 -07001591 @Thunk void completeAddAppWidget(int appWidgetId, long container, long screenId,
Adam Cohen59400422014-03-05 18:07:04 -08001592 AppWidgetHostView hostView, LauncherAppWidgetProviderInfo appWidgetInfo) {
1593
1594 ItemInfo info = mPendingAddInfo;
Adam Cohened66b2b2012-01-23 17:28:51 -08001595 if (appWidgetInfo == null) {
Adam Cohen59400422014-03-05 18:07:04 -08001596 appWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(this,
1597 mAppWidgetManager.getAppWidgetInfo(appWidgetId));
Adam Cohened66b2b2012-01-23 17:28:51 -08001598 }
Romain Guycbb89e42009-06-08 15:52:54 -07001599
Adam Cohen59400422014-03-05 18:07:04 -08001600 if (appWidgetInfo.isCustomWidget) {
1601 appWidgetId = LauncherAppWidgetInfo.CUSTOM_WIDGET_ID;
Michael Jurkaa63c4522010-08-19 13:52:27 -07001602 }
1603
Adam Cohen59400422014-03-05 18:07:04 -08001604 LauncherAppWidgetInfo launcherInfo;
1605 launcherInfo = new LauncherAppWidgetInfo(appWidgetId, appWidgetInfo.provider);
1606 launcherInfo.spanX = info.spanX;
1607 launcherInfo.spanY = info.spanY;
1608 launcherInfo.minSpanX = info.minSpanX;
1609 launcherInfo.minSpanY = info.minSpanY;
Sunny Goyalffe83f12014-08-14 17:39:34 -07001610 launcherInfo.user = mAppWidgetManager.getUser(appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001611
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001612 LauncherModel.addItemToDatabase(this, launcherInfo,
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001613 container, screenId, info.cellX, info.cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001614
1615 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001616 if (hostView == null) {
1617 // Perform actual inflation because we're live
Adam Cohen59400422014-03-05 18:07:04 -08001618 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId,
1619 appWidgetInfo);
Adam Cohened66b2b2012-01-23 17:28:51 -08001620 } else {
1621 // The AppWidgetHostView has already been inflated and instantiated
1622 launcherInfo.hostView = hostView;
1623 }
Adam Cohend41fbf52012-02-16 23:53:59 -08001624 launcherInfo.hostView.setVisibility(View.VISIBLE);
Sunny Goyal25c2e3e2015-10-28 23:28:21 -07001625 addAppWidgetToWorkspace(launcherInfo, appWidgetInfo, isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001626 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001627 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001628 }
Romain Guycbb89e42009-06-08 15:52:54 -07001629
Sunny Goyal25c2e3e2015-10-28 23:28:21 -07001630 private void addAppWidgetToWorkspace(LauncherAppWidgetInfo item,
1631 LauncherAppWidgetProviderInfo appWidgetInfo, boolean insert) {
1632 item.hostView.setTag(item);
1633 item.onBindAppWidget(this);
1634
1635 item.hostView.setFocusable(true);
1636 item.hostView.setOnFocusChangeListener(mFocusHandler);
1637
1638 mWorkspace.addInScreen(item.hostView, item.container, item.screenId,
1639 item.cellX, item.cellY, item.spanX, item.spanY, insert);
1640
1641 if (!item.isCustomWidget()) {
1642 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
1643 }
1644 }
1645
Adam Cohended9f8d2010-11-03 13:25:16 -07001646 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1647 @Override
1648 public void onReceive(Context context, Intent intent) {
1649 final String action = intent.getAction();
1650 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1651 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001652 mDragLayer.clearAllResizeFrames();
Winson Chungb745afb2015-03-02 11:51:23 -08001653 updateAutoAdvanceState();
Winson Chung337cd9d2011-03-30 10:39:30 -07001654
Winson Chungc100e8e2011-08-09 16:02:43 -07001655 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001656 // processing a multi-step drop
Hyunyoung Song3f471442015-04-08 19:01:34 -07001657 if (mAppsView != null && mWidgetsView != null &&
Winson Chungb745afb2015-03-02 11:51:23 -08001658 mPendingAddInfo.container == ItemInfo.NO_ID) {
Winson5c6bdbb2015-09-03 11:36:19 -07001659 if (!showWorkspace(false)) {
1660 // If we are already on the workspace, then manually reset all apps
1661 mAppsView.reset();
1662 }
Winson Chung785d2eb2011-04-14 16:08:02 -07001663 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001664 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1665 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08001666 updateAutoAdvanceState();
Dan Sandlerd5024042014-01-09 15:01:33 -05001667 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.DELETE_DATABASE.equals(action)) {
1668 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001669 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001670 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE);
1671 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.MIGRATE_DATABASE.equals(action)) {
1672 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001673 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001674 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE
1675 | LauncherModel.LOADER_FLAG_MIGRATE_SHORTCUTS);
Adam Cohended9f8d2010-11-03 13:25:16 -07001676 }
1677 }
1678 };
1679
1680 @Override
1681 public void onAttachedToWindow() {
1682 super.onAttachedToWindow();
1683
1684 // Listen for broadcasts related to user-presence
1685 final IntentFilter filter = new IntentFilter();
1686 filter.addAction(Intent.ACTION_SCREEN_OFF);
1687 filter.addAction(Intent.ACTION_USER_PRESENT);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001688 // For handling managed profiles
Dan Sandlerd5024042014-01-09 15:01:33 -05001689 if (ENABLE_DEBUG_INTENTS) {
1690 filter.addAction(DebugIntents.DELETE_DATABASE);
1691 filter.addAction(DebugIntents.MIGRATE_DATABASE);
1692 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001693 registerReceiver(mReceiver, filter);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001694 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Adam Cohend113e0c2010-11-11 10:48:05 -08001695 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001696 mVisible = true;
1697 }
1698
1699 @Override
1700 public void onDetachedFromWindow() {
1701 super.onDetachedFromWindow();
1702 mVisible = false;
1703
Adam Cohend113e0c2010-11-11 10:48:05 -08001704 if (mAttached) {
1705 unregisterReceiver(mReceiver);
1706 mAttached = false;
1707 }
Winson Chungb745afb2015-03-02 11:51:23 -08001708 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001709 }
1710
1711 public void onWindowVisibilityChanged(int visibility) {
1712 mVisible = visibility == View.VISIBLE;
Winson Chungb745afb2015-03-02 11:51:23 -08001713 updateAutoAdvanceState();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001714 // The following code used to be in onResume, but it turns out onResume is called when
1715 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1716 // is a more appropriate event to handle
1717 if (mVisible) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001718 if (!mWorkspaceLoading) {
1719 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001720 // We want to let Launcher draw itself at least once before we force it to build
1721 // layers on all the workspace pages, so that transitioning to Launcher from other
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001722 // apps is nice and speedy.
1723 observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001724 private boolean mStarted = false;
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001725 public void onDraw() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001726 if (mStarted) return;
1727 mStarted = true;
Michael Jurka6ee21d22012-02-21 18:20:27 -08001728 // We delay the layer building a bit in order to give
1729 // other message processing a time to run. In particular
1730 // this avoids a delay in hiding the IME if it was
1731 // currently shown, because doing that may involve
1732 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001733 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurkadf96add2013-04-03 16:25:02 -07001734 final ViewTreeObserver.OnDrawListener listener = this;
1735 mWorkspace.post(new Runnable() {
Tony Wickhama0628cc2015-10-14 15:23:04 -07001736 public void run() {
1737 if (mWorkspace != null &&
1738 mWorkspace.getViewTreeObserver() != null) {
1739 mWorkspace.getViewTreeObserver().
1740 removeOnDrawListener(listener);
Michael Jurkadf96add2013-04-03 16:25:02 -07001741 }
Tony Wickhama0628cc2015-10-14 15:23:04 -07001742 }
1743 });
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001744 return;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001745 }
1746 });
1747 }
1748 clearTypedText();
1749 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001750 }
1751
Adam Cohen091440a2015-03-18 14:16:05 -07001752 @Thunk void sendAdvanceMessage(long delay) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001753 mHandler.removeMessages(ADVANCE_MSG);
1754 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1755 mHandler.sendMessageDelayed(msg, delay);
1756 mAutoAdvanceSentTime = System.currentTimeMillis();
1757 }
1758
Adam Cohen091440a2015-03-18 14:16:05 -07001759 @Thunk void updateAutoAdvanceState() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001760 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1761 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1762 mAutoAdvanceRunning = autoAdvanceRunning;
1763 if (autoAdvanceRunning) {
1764 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1765 sendAdvanceMessage(delay);
1766 } else {
1767 if (!mWidgetsToAdvance.isEmpty()) {
1768 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1769 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1770 }
1771 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001772 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001773 }
1774 }
1775 }
1776
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001777 @Thunk final Handler mHandler = new Handler(new Handler.Callback() {
1778
Adam Cohended9f8d2010-11-03 13:25:16 -07001779 @Override
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001780 public boolean handleMessage(Message msg) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001781 if (msg.what == ADVANCE_MSG) {
1782 int i = 0;
1783 for (View key: mWidgetsToAdvance.keySet()) {
1784 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1785 final int delay = mAdvanceStagger * i;
1786 if (v instanceof Advanceable) {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001787 mHandler.postDelayed(new Runnable() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001788 public void run() {
1789 ((Advanceable) v).advance();
1790 }
1791 }, delay);
1792 }
1793 i++;
1794 }
1795 sendAdvanceMessage(mAdvanceInterval);
1796 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001797 return true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001798 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001799 });
Adam Cohended9f8d2010-11-03 13:25:16 -07001800
Winsonc0b52fe2015-09-09 16:38:15 -07001801 private void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001802 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001803 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1804 if (v instanceof Advanceable) {
1805 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001806 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Winson Chungb745afb2015-03-02 11:51:23 -08001807 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001808 }
1809 }
1810
Winsonc0b52fe2015-09-09 16:38:15 -07001811 private void removeWidgetToAutoAdvance(View hostView) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001812 if (mWidgetsToAdvance.containsKey(hostView)) {
1813 mWidgetsToAdvance.remove(hostView);
Winson Chungb745afb2015-03-02 11:51:23 -08001814 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001815 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001816 }
1817
Hyunyoung Song3f471442015-04-08 19:01:34 -07001818 public void showOutOfSpaceMessage(boolean isHotseatLayout) {
Winson Chung93eef082012-03-23 15:59:27 -07001819 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1820 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001821 }
1822
Winson Chunga6945242014-01-08 14:04:34 -08001823 public DragLayer getDragLayer() {
1824 return mDragLayer;
1825 }
1826
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001827 public AllAppsContainerView getAppsView() {
Winson Chungb745afb2015-03-02 11:51:23 -08001828 return mAppsView;
1829 }
1830
Hyunyoung Song3f471442015-04-08 19:01:34 -07001831 public WidgetsContainerView getWidgetsView() {
1832 return mWidgetsView;
Winson Chungb745afb2015-03-02 11:51:23 -08001833 }
1834
Winson Chunga6945242014-01-08 14:04:34 -08001835 public Workspace getWorkspace() {
1836 return mWorkspace;
1837 }
1838
1839 public Hotseat getHotseat() {
1840 return mHotseat;
1841 }
1842
Jorim Jaggid017f882014-01-14 17:08:48 -08001843 public ViewGroup getOverviewPanel() {
Winson Chunga6945242014-01-08 14:04:34 -08001844 return mOverviewPanel;
1845 }
1846
Winson Chung006ee262015-08-03 14:40:11 -07001847 public SearchDropTargetBar getSearchDropTargetBar() {
Winson Chunga6945242014-01-08 14:04:34 -08001848 return mSearchDropTargetBar;
1849 }
1850
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001851 public LauncherAppWidgetHost getAppWidgetHost() {
1852 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001853 }
Romain Guycbb89e42009-06-08 15:52:54 -07001854
Winson Chunga9abd0e2010-10-27 17:18:37 -07001855 public LauncherModel getModel() {
1856 return mModel;
1857 }
1858
Winson Chunga6945242014-01-08 14:04:34 -08001859 protected SharedPreferences getSharedPrefs() {
1860 return mSharedPrefs;
1861 }
1862
Adam Cohen2e6da152015-05-06 11:42:25 -07001863 public DeviceProfile getDeviceProfile() {
1864 return mDeviceProfile;
1865 }
1866
Bjorn Bringertc459e522013-06-07 19:36:01 +01001867 public void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001868 getWindow().closeAllPanels();
1869
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001870 // Whatever we were doing is hereby canceled.
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001871 setWaitingForResult(false);
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001872 }
1873
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001874 @Override
1875 protected void onNewIntent(Intent intent) {
Michael Jurka447bf842013-05-15 14:52:15 +02001876 long startTime = 0;
1877 if (DEBUG_RESUME_TIME) {
1878 startTime = System.currentTimeMillis();
1879 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001880 super.onNewIntent(intent);
1881
1882 // Close the menu
Winson15f8b172015-08-19 11:02:39 -07001883 Folder openFolder = mWorkspace.getOpenFolder();
1884 boolean alreadyOnHome = mHasFocus && ((intent.getFlags() &
1885 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1886 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
1887 boolean isActionMain = Intent.ACTION_MAIN.equals(intent.getAction());
1888 if (isActionMain) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001889 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001890 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001891
Adam Cohen6fecd412013-10-02 17:41:50 -07001892 if (mWorkspace == null) {
1893 // Can be cases where mWorkspace is null, this prevents a NPE
1894 return;
1895 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001896 // In all these cases, only animate if we're already on home
1897 mWorkspace.exitWidgetResizeMode();
Adam Cohen9211d422014-10-07 18:14:53 -07001898
Sunny Goyal935fca12015-10-13 10:19:01 -07001899 closeFolder(alreadyOnHome);
Adam Cohen6fecd412013-10-02 17:41:50 -07001900 exitSpringLoadedDragMode();
1901
1902 // If we are already on home, then just animate back to the workspace,
1903 // otherwise, just wait until onResume to set the state back to Workspace
1904 if (alreadyOnHome) {
Adam Cohened307df2013-10-02 09:37:31 -07001905 showWorkspace(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001906 } else {
1907 mOnResumeState = State.WORKSPACE;
1908 }
1909
1910 final View v = getWindow().peekDecorView();
1911 if (v != null && v.getWindowToken() != null) {
Tonyc17390962015-10-25 17:39:37 -07001912 InputMethodManager imm = (InputMethodManager) getSystemService(
Adam Cohen6fecd412013-10-02 17:41:50 -07001913 INPUT_METHOD_SERVICE);
1914 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1915 }
1916
Winson Chungb745afb2015-03-02 11:51:23 -08001917 // Reset the apps view
1918 if (!alreadyOnHome && mAppsView != null) {
1919 mAppsView.scrollToTop();
1920 }
1921
Hyunyoung Song3f471442015-04-08 19:01:34 -07001922 // Reset the widgets view
1923 if (!alreadyOnHome && mWidgetsView != null) {
1924 mWidgetsView.scrollToTop();
Adam Cohen6fecd412013-10-02 17:41:50 -07001925 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001926
Adam Cohen9211d422014-10-07 18:14:53 -07001927 if (mLauncherCallbacks != null) {
1928 mLauncherCallbacks.onHomeIntent();
1929 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001930 }
Adam Cohened307df2013-10-02 09:37:31 -07001931
Adam Cohen9211d422014-10-07 18:14:53 -07001932 if (mLauncherCallbacks != null) {
1933 mLauncherCallbacks.onNewIntent(intent);
1934 }
Winson15f8b172015-08-19 11:02:39 -07001935
1936 // Defer moving to the default screen until after we callback to the LauncherCallbacks
1937 // as slow logic in the callbacks eat into the time the scroller expects for the snapToPage
1938 // animation.
1939 if (isActionMain) {
Ivan Lee667d6882015-09-03 10:16:07 -06001940 boolean moveToDefaultScreen = mLauncherCallbacks != null ?
1941 mLauncherCallbacks.shouldMoveToDefaultScreenOnHomeIntent() : true;
Winson15f8b172015-08-19 11:02:39 -07001942 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
1943 openFolder == null && moveToDefaultScreen) {
Adam Cohen4b66bf32015-09-18 12:15:19 -07001944
1945 // We use this flag to suppress noisy callbacks above custom content state
1946 // from onResume.
1947 mMoveToDefaultScreenFromNewIntent = true;
Winson15f8b172015-08-19 11:02:39 -07001948 mWorkspace.post(new Runnable() {
1949 @Override
1950 public void run() {
Tonyc17390962015-10-25 17:39:37 -07001951 if (mWorkspace != null) {
1952 mWorkspace.moveToDefaultScreen(true);
1953 }
Winson15f8b172015-08-19 11:02:39 -07001954 }
1955 });
1956 }
1957 }
1958
1959 if (DEBUG_RESUME_TIME) {
1960 Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime));
1961 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001962 }
1963
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001964 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001965 public void onRestoreInstanceState(Bundle state) {
1966 super.onRestoreInstanceState(state);
1967 for (int page: mSynchronouslyBoundPages) {
1968 mWorkspace.restoreInstanceStateForChild(page);
1969 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001970 }
1971
1972 @Override
1973 protected void onSaveInstanceState(Bundle outState) {
Adam Cohen21cd0022013-10-09 18:57:02 -07001974 if (mWorkspace.getChildCount() > 0) {
Winson Chung9b9fb962013-11-15 15:39:34 -08001975 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN,
1976 mWorkspace.getCurrentPageOffsetFromCustomContent());
Adam Cohen21cd0022013-10-09 18:57:02 -07001977 }
Adam Cohen95bb8002011-07-03 23:40:28 -07001978 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001979
Michael Jurka883f55b2010-10-21 15:47:14 -07001980 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001981 // We close any open folder since it will not be re-opened, and we need to make sure
1982 // this state is reflected.
Sunny Goyal935fca12015-10-13 10:19:01 -07001983 closeFolder(false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001984
Adam Cohendcd297f2013-06-18 13:13:40 -07001985 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screenId > -1 &&
Winson Chung3d503fb2011-07-13 17:25:49 -07001986 mWaitingForResult) {
1987 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
Adam Cohendcd297f2013-06-18 13:13:40 -07001988 outState.putLong(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screenId);
Winson Chung3d503fb2011-07-13 17:25:49 -07001989 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1990 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001991 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_X, mPendingAddInfo.spanX);
1992 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y, mPendingAddInfo.spanY);
1993 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
Adam Cohen4637b5a2013-11-04 18:21:24 -08001994 outState.putInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID, mPendingAddWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001995 }
1996
Hyunyoung Song3f471442015-04-08 19:01:34 -07001997 // Save the current widgets tray?
1998 // TODO(hyunyoungs)
Adam Cohen9211d422014-10-07 18:14:53 -07001999
2000 if (mLauncherCallbacks != null) {
2001 mLauncherCallbacks.onSaveInstanceState(outState);
2002 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002003 }
2004
2005 @Override
2006 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002007 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07002008
Winson Chunge7a03942011-08-05 15:05:12 -07002009 // Remove all pending runnables
2010 mHandler.removeMessages(ADVANCE_MSG);
2011 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07002012 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07002013
Winson Chungcd2b0142011-06-08 16:02:26 -07002014 // Stop callbacks from LauncherModel
Daniel Sandlercc8befa2013-06-11 14:45:48 -04002015 LauncherAppState app = (LauncherAppState.getInstance());
Adam Cohen1a85c582014-09-30 09:48:49 -07002016
2017 // It's possible to receive onDestroy after a new Launcher activity has
2018 // been created. In this case, don't interfere with the new Launcher.
2019 if (mModel.isCurrentCallbacks(this)) {
2020 mModel.stopLoader();
2021 app.setLauncher(null);
2022 }
Winson Chungcd2b0142011-06-08 16:02:26 -07002023
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002024 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07002025 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002026 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002027 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002028 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002029 mAppWidgetHost = null;
2030
2031 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002032
2033 TextKeyListener.getInstance().release();
2034
Joe Onorato34a0e1b2009-12-14 17:44:51 -08002035 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002036
Adam Cohenaccf3bf2012-04-30 16:07:43 -07002037 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002038 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
Adam Cohend552dd92013-11-26 12:13:11 -08002039 mWorkspace.removeAllWorkspaceScreens();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002040 mWorkspace = null;
2041 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08002042
Michael Jurka2ecf9952012-06-18 12:52:28 -07002043 LauncherAnimUtils.onDestroyActivity();
Adam Cohen9211d422014-10-07 18:14:53 -07002044
2045 if (mLauncherCallbacks != null) {
2046 mLauncherCallbacks.onDestroy();
2047 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002048 }
2049
Adam Cohena9cf38f2011-05-02 15:36:58 -07002050 public DragController getDragController() {
2051 return mDragController;
2052 }
2053
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002054 @Override
2055 public void startActivityForResult(Intent intent, int requestCode) {
Adam Cohen173f7112015-03-27 15:14:00 -07002056 onStartForResult(requestCode);
2057 super.startActivityForResult(intent, requestCode);
2058 }
2059
2060 @Override
2061 public void startIntentSenderForResult (IntentSender intent, int requestCode,
2062 Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) {
2063 onStartForResult(requestCode);
2064 try {
2065 super.startIntentSenderForResult(intent, requestCode,
2066 fillInIntent, flagsMask, flagsValues, extraFlags, options);
2067 } catch (IntentSender.SendIntentException e) {
2068 throw new ActivityNotFoundException();
2069 }
2070 }
2071
2072 private void onStartForResult(int requestCode) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002073 if (requestCode >= 0) {
2074 setWaitingForResult(true);
2075 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002076 }
2077
Winson Chung70d72102011-08-12 11:24:35 -07002078 /**
2079 * Indicates that we want global search for this activity by setting the globalSearch
2080 * argument for {@link #startSearch} to true.
2081 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002082 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07002083 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002084 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002085
Karl Rosaen138a0412009-04-23 19:00:21 -07002086 if (initialQuery == null) {
2087 // Use any text typed in the launcher as the initial query
2088 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07002089 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002090 if (appSearchData == null) {
2091 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01002092 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002093 }
Winson Chungadf0c182012-08-23 14:59:07 -07002094 Rect sourceBounds = new Rect();
2095 if (mSearchDropTargetBar != null) {
2096 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
2097 }
Romain Guycbb89e42009-06-08 15:52:54 -07002098
Ian Parkinson047036e2014-09-01 15:40:53 +01002099 boolean clearTextImmediately = startSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002100 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002101 if (clearTextImmediately) {
2102 clearTypedText();
2103 }
Winson Chungcd99cd32015-04-29 11:03:24 -07002104
2105 // We need to show the workspace after starting the search
2106 showWorkspace(true);
Bjorn Bringertc459e522013-06-07 19:36:01 +01002107 }
2108
Ian Parkinson047036e2014-09-01 15:40:53 +01002109 /**
2110 * Start a text search.
2111 *
2112 * @return {@code true} if the search will start immediately, so any further keypresses
2113 * will be handled directly by the search UI. {@code false} if {@link Launcher} should continue
2114 * to buffer keypresses.
2115 */
2116 public boolean startSearch(String initialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002117 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Adam Cohen9211d422014-10-07 18:14:53 -07002118 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
2119 return mLauncherCallbacks.startSearch(initialQuery, selectInitialQuery, appSearchData,
2120 sourceBounds);
2121 }
2122
Michael Jurkaa33411c2012-06-14 16:18:21 -07002123 startGlobalSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002124 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002125 return false;
Michael Jurkaa33411c2012-06-14 16:18:21 -07002126 }
2127
2128 /**
2129 * Starts the global search activity. This code is a copied from SearchManager
2130 */
Bjorn Bringertc459e522013-06-07 19:36:01 +01002131 private void startGlobalSearch(String initialQuery,
Michael Jurkaa33411c2012-06-14 16:18:21 -07002132 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002133 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07002134 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2135 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
2136 if (globalSearchActivity == null) {
2137 Log.w(TAG, "No global search activity found.");
2138 return;
2139 }
2140 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
2141 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2142 intent.setComponent(globalSearchActivity);
2143 // Make sure that we have a Bundle to put source in
2144 if (appSearchData == null) {
2145 appSearchData = new Bundle();
2146 } else {
2147 appSearchData = new Bundle(appSearchData);
2148 }
Adam Cohen9211d422014-10-07 18:14:53 -07002149 // Set source to package name of app that starts global search if not set already.
Michael Jurkaa33411c2012-06-14 16:18:21 -07002150 if (!appSearchData.containsKey("source")) {
2151 appSearchData.putString("source", getPackageName());
2152 }
2153 intent.putExtra(SearchManager.APP_DATA, appSearchData);
2154 if (!TextUtils.isEmpty(initialQuery)) {
2155 intent.putExtra(SearchManager.QUERY, initialQuery);
2156 }
2157 if (selectInitialQuery) {
2158 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
2159 }
2160 intent.setSourceBounds(sourceBounds);
2161 try {
2162 startActivity(intent);
2163 } catch (ActivityNotFoundException ex) {
2164 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
2165 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002166 }
2167
Winson Chungbedf9232015-07-10 12:38:30 -07002168 public void startSearchFromAllApps(View v, Intent searchIntent, String searchQuery) {
2169 if (mLauncherCallbacks != null && mLauncherCallbacks.startSearchFromAllApps(searchQuery)) {
2170 return;
2171 }
2172
2173 // If not handled, then just start the provided search intent
2174 startActivitySafely(v, searchIntent, null);
2175 }
2176
Yura4f93ec62014-02-04 14:15:21 +00002177 public boolean isOnCustomContent() {
2178 return mWorkspace.isOnOrMovingToCustomContent();
2179 }
2180
Winson Chung70d72102011-08-12 11:24:35 -07002181 @Override
Winson Chung70d72102011-08-12 11:24:35 -07002182 public boolean onPrepareOptionsMenu(Menu menu) {
2183 super.onPrepareOptionsMenu(menu);
Adam Cohen9211d422014-10-07 18:14:53 -07002184 if (mLauncherCallbacks != null) {
2185 return mLauncherCallbacks.onPrepareOptionsMenu(menu);
2186 }
Michael Jurkab94f3f82013-09-11 18:08:54 +02002187 return false;
Winson Chung70d72102011-08-12 11:24:35 -07002188 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002189
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002190 @Override
2191 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07002192 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07002193 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07002194 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002195 }
2196
Joe Onorato9c1289c2009-08-17 11:03:03 -04002197 public boolean isWorkspaceLocked() {
2198 return mWorkspaceLoading || mWaitingForResult;
2199 }
2200
Adam Cohen517a7f52014-03-01 12:12:59 -08002201 public boolean isWorkspaceLoading() {
2202 return mWorkspaceLoading;
2203 }
2204
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002205 private void setWorkspaceLoading(boolean value) {
2206 boolean isLocked = isWorkspaceLocked();
2207 mWorkspaceLoading = value;
2208 if (isLocked != isWorkspaceLocked()) {
2209 onWorkspaceLockedChanged();
2210 }
2211 }
2212
2213 private void setWaitingForResult(boolean value) {
2214 boolean isLocked = isWorkspaceLocked();
2215 mWaitingForResult = value;
2216 if (isLocked != isWorkspaceLocked()) {
2217 onWorkspaceLockedChanged();
2218 }
2219 }
2220
Adam Cohen9211d422014-10-07 18:14:53 -07002221 protected void onWorkspaceLockedChanged() {
2222 if (mLauncherCallbacks != null) {
2223 mLauncherCallbacks.onWorkspaceLockedChanged();
2224 }
2225 }
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002226
Michael Jurka0280c3b2010-09-17 15:00:07 -07002227 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07002228 mPendingAddInfo.container = ItemInfo.NO_ID;
Adam Cohendcd297f2013-06-18 13:13:40 -07002229 mPendingAddInfo.screenId = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002230 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
2231 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Sunny Goyal233ee962015-08-03 13:05:01 -07002232 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = 1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002233 mPendingAddInfo.dropPos = null;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002234 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07002235
Tony Wickhama0628cc2015-10-14 15:23:04 -07002236 void addAppWidgetFromDropImpl(final int appWidgetId, final ItemInfo info, final
Adam Cohen59400422014-03-05 18:07:04 -08002237 AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo) {
Tony Wickhama0628cc2015-10-14 15:23:04 -07002238 if (LOGD) {
2239 Log.d(TAG, "Adding widget from drop");
2240 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07002241 addAppWidgetImpl(appWidgetId, info, boundWidget, appWidgetInfo, 0);
2242 }
2243
Sunny Goyale6b63a32015-01-16 16:14:29 -08002244 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
Adam Cohen59400422014-03-05 18:07:04 -08002245 final AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo,
2246 int delay) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002247 if (appWidgetInfo.configure != null) {
2248 mPendingAddWidgetInfo = appWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -08002249 mPendingAddWidgetId = appWidgetId;
Michael Jurkaaf442092010-06-10 17:01:57 -07002250
Bjorn Bringert7984c942009-12-09 15:38:25 +00002251 // Launch over to configure widget, if needed
Sunny Goyalffe83f12014-08-14 17:39:34 -07002252 mAppWidgetManager.startConfigActivity(appWidgetInfo, appWidgetId, this,
2253 mAppWidgetHost, REQUEST_CREATE_APPWIDGET);
2254
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002255 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00002256 // Otherwise just add it
Adam Cohenad4e15c2013-10-17 16:21:35 -07002257 Runnable onComplete = new Runnable() {
2258 @Override
2259 public void run() {
2260 // Exit spring loaded mode if necessary after adding the widget
2261 exitSpringLoadedDragModeDelayed(true, EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT,
2262 null);
2263 }
2264 };
Adam Cohendcd297f2013-06-18 13:13:40 -07002265 completeAddAppWidget(appWidgetId, info.container, info.screenId, boundWidget,
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002266 appWidgetInfo);
Adam Cohen689ff162014-05-08 17:27:56 -07002267 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, delay, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002268 }
2269 }
Romain Guycbb89e42009-06-08 15:52:54 -07002270
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002271 protected void moveToCustomContentScreen(boolean animate) {
Sandeep Siddharthaf2b47f12013-09-26 19:49:27 -07002272 // Close any folders that may be open.
2273 closeFolder();
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002274 mWorkspace.moveToCustomContentScreen(animate);
2275 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002276
2277 public void addPendingItem(PendingAddItemInfo info, long container, long screenId,
2278 int[] cell, int spanX, int spanY) {
2279 switch (info.itemType) {
2280 case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET:
2281 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
2282 int span[] = new int[2];
2283 span[0] = spanX;
2284 span[1] = spanY;
2285 addAppWidgetFromDrop((PendingAddWidgetInfo) info,
2286 container, screenId, cell, span);
2287 break;
2288 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
2289 processShortcutFromDrop(info.componentName, container, screenId, cell);
2290 break;
2291 default:
2292 throw new IllegalStateException("Unknown item type: " + info.itemType);
2293 }
2294 }
2295
Adam Cohenfbba09b2011-07-18 21:43:05 -07002296 /**
2297 * Process a shortcut drop.
2298 *
2299 * @param componentName The name of the component
Adam Cohendcd297f2013-06-18 13:13:40 -07002300 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002301 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002302 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002303 private void processShortcutFromDrop(ComponentName componentName, long container, long screenId,
2304 int[] cell) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002305 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002306 mPendingAddInfo.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002307 mPendingAddInfo.screenId = screenId;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002308 mPendingAddInfo.dropPos = null;
Adam Cohenfbba09b2011-07-18 21:43:05 -07002309
2310 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002311 mPendingAddInfo.cellX = cell[0];
2312 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002313 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002314
2315 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
2316 createShortcutIntent.setComponent(componentName);
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002317 Utilities.startActivityForResultSafely(this, createShortcutIntent, REQUEST_CREATE_SHORTCUT);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002318 }
2319
Adam Cohenfbba09b2011-07-18 21:43:05 -07002320 /**
2321 * Process a widget drop.
2322 *
2323 * @param info The PendingAppWidgetInfo of the widget being added.
Adam Cohendcd297f2013-06-18 13:13:40 -07002324 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002325 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002326 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002327 private void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, long screenId,
2328 int[] cell, int[] span) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07002329 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002330 mPendingAddInfo.container = info.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002331 mPendingAddInfo.screenId = info.screenId = screenId;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002332 mPendingAddInfo.dropPos = null;
Adam Cohend41fbf52012-02-16 23:53:59 -08002333 mPendingAddInfo.minSpanX = info.minSpanX;
2334 mPendingAddInfo.minSpanY = info.minSpanY;
2335
Adam Cohenfbba09b2011-07-18 21:43:05 -07002336 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002337 mPendingAddInfo.cellX = cell[0];
2338 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002339 }
Adam Cohend41fbf52012-02-16 23:53:59 -08002340 if (span != null) {
2341 mPendingAddInfo.spanX = span[0];
2342 mPendingAddInfo.spanY = span[1];
2343 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002344
Adam Cohened66b2b2012-01-23 17:28:51 -08002345 AppWidgetHostView hostView = info.boundWidget;
2346 int appWidgetId;
2347 if (hostView != null) {
Tony Wickhama0628cc2015-10-14 15:23:04 -07002348 // In the case where we've prebound the widget, we remove it from the DragLayer
2349 if (LOGD) {
2350 Log.d(TAG, "Removing widget view from drag layer and setting boundWidget to null");
2351 }
2352 getDragLayer().removeView(hostView);
2353
Adam Cohened66b2b2012-01-23 17:28:51 -08002354 appWidgetId = hostView.getAppWidgetId();
Tony Wickhama0628cc2015-10-14 15:23:04 -07002355 addAppWidgetFromDropImpl(appWidgetId, info, hostView, info.info);
Sunny Goyal5b9ebca2015-06-01 18:37:32 -07002356
2357 // Clear the boundWidget so that it doesn't get destroyed.
2358 info.boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -08002359 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002360 // In this case, we either need to start an activity to get permission to bind
2361 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08002362 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07002363 Bundle options = info.bindOptions;
2364
Sunny Goyalffe83f12014-08-14 17:39:34 -07002365 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
2366 appWidgetId, info.info, options);
Adam Cohendd70d662012-10-04 16:53:44 -07002367 if (success) {
Tony Wickhama0628cc2015-10-14 15:23:04 -07002368 addAppWidgetFromDropImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07002369 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002370 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07002371 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
2372 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
2373 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Sunny Goyalffe83f12014-08-14 17:39:34 -07002374 mAppWidgetManager.getUser(mPendingAddWidgetInfo)
2375 .addToIntent(intent, AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE);
Adam Cohendd70d662012-10-04 16:53:44 -07002376 // TODO: we need to make sure that this accounts for the options bundle.
2377 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07002378 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
2379 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002380 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002381 }
2382
Adam Cohendcd297f2013-06-18 13:13:40 -07002383 FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07002384 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07002385 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002386 folderInfo.title = getText(R.string.folder_name);
2387
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002388 // Update the model
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07002389 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId,
2390 cellX, cellY);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002391 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002392
2393 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07002394 FolderIcon newFolder =
2395 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07002396 mWorkspace.addInScreen(newFolder, container, screenId, cellX, cellY, 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07002397 isWorkspaceLocked());
Winson Chung5f8afe62013-08-12 16:19:28 -07002398 // Force measure the new folder icon
2399 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
2400 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07002401 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002402 }
Romain Guycbb89e42009-06-08 15:52:54 -07002403
Winsonc0b52fe2015-09-09 16:38:15 -07002404 /**
Winsonfa56b3f2015-09-14 12:01:13 -07002405 * Unbinds the view for the specified item, and removes the item and all its children.
2406 *
2407 * @param v the view being removed.
Winsonfa56b3f2015-09-14 12:01:13 -07002408 * @param itemInfo the {@link ItemInfo} for this view.
2409 * @param deleteFromDb whether or not to delete this item from the db.
Winsonc0b52fe2015-09-09 16:38:15 -07002410 */
Winson2949fb52015-09-24 09:56:11 -07002411 public boolean removeItem(View v, ItemInfo itemInfo, boolean deleteFromDb) {
Winsonc0b52fe2015-09-09 16:38:15 -07002412 if (itemInfo instanceof ShortcutInfo) {
Winsonfa56b3f2015-09-14 12:01:13 -07002413 // Remove the shortcut from the folder before removing it from launcher
Winson2949fb52015-09-24 09:56:11 -07002414 FolderInfo folderInfo = sFolders.get(itemInfo.container);
2415 if (folderInfo != null) {
2416 folderInfo.remove((ShortcutInfo) itemInfo);
Winsonfa56b3f2015-09-14 12:01:13 -07002417 } else {
2418 mWorkspace.removeWorkspaceItem(v);
2419 }
Winsonc0b52fe2015-09-09 16:38:15 -07002420 if (deleteFromDb) {
2421 LauncherModel.deleteItemFromDatabase(this, itemInfo);
2422 }
2423 } else if (itemInfo instanceof FolderInfo) {
2424 final FolderInfo folderInfo = (FolderInfo) itemInfo;
2425 unbindFolder(folderInfo);
2426 mWorkspace.removeWorkspaceItem(v);
2427 if (deleteFromDb) {
2428 LauncherModel.deleteFolderAndContentsFromDatabase(this, folderInfo);
2429 }
2430 } else if (itemInfo instanceof LauncherAppWidgetInfo) {
2431 final LauncherAppWidgetInfo widgetInfo = (LauncherAppWidgetInfo) itemInfo;
Winson44818e02015-10-02 11:25:46 -07002432 mWorkspace.removeWorkspaceItem(v);
Sunny Goyal56c73602015-09-25 12:55:01 -07002433 removeWidgetToAutoAdvance(widgetInfo.hostView);
2434 widgetInfo.hostView = null;
Winsonc0b52fe2015-09-09 16:38:15 -07002435 if (deleteFromDb) {
Sunny Goyal56c73602015-09-25 12:55:01 -07002436 deleteWidgetInfo(widgetInfo);
Winsonc0b52fe2015-09-09 16:38:15 -07002437 }
Sunny Goyal56c73602015-09-25 12:55:01 -07002438
Winsonc0b52fe2015-09-09 16:38:15 -07002439 } else {
2440 return false;
2441 }
2442 return true;
2443 }
2444
2445 /**
2446 * Unbinds any launcher references to the folder.
2447 */
2448 private void unbindFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002449 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002450 }
2451
Winsonc0b52fe2015-09-09 16:38:15 -07002452 /**
Sunny Goyal56c73602015-09-25 12:55:01 -07002453 * Deletes the widget info and the widget id.
Winsonc0b52fe2015-09-09 16:38:15 -07002454 */
Sunny Goyal56c73602015-09-25 12:55:01 -07002455 private void deleteWidgetInfo(final LauncherAppWidgetInfo widgetInfo) {
Winsonc0b52fe2015-09-09 16:38:15 -07002456 final LauncherAppWidgetHost appWidgetHost = getAppWidgetHost();
Sunny Goyal56c73602015-09-25 12:55:01 -07002457 if (appWidgetHost != null && !widgetInfo.isCustomWidget() && widgetInfo.isWidgetIdValid()) {
Winsonc0b52fe2015-09-09 16:38:15 -07002458 // Deleting an app widget ID is a void call but writes to disk before returning
2459 // to the caller...
2460 new AsyncTask<Void, Void, Void>() {
2461 public Void doInBackground(Void ... args) {
2462 appWidgetHost.deleteAppWidgetId(widgetInfo.appWidgetId);
2463 return null;
2464 }
Sunny Goyalf27cb0e2015-09-23 16:12:02 -07002465 }.executeOnExecutor(Utilities.THREAD_POOL_EXECUTOR);
Winsonc0b52fe2015-09-09 16:38:15 -07002466 }
Sunny Goyal56c73602015-09-25 12:55:01 -07002467 LauncherModel.deleteItemFromDatabase(this, widgetInfo);
Winsonc0b52fe2015-09-09 16:38:15 -07002468 }
2469
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002470 @Override
2471 public boolean dispatchKeyEvent(KeyEvent event) {
2472 if (event.getAction() == KeyEvent.ACTION_DOWN) {
2473 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002474 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07002475 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08002476 case KeyEvent.KEYCODE_VOLUME_DOWN:
Sunny Goyal4bbf4192014-11-11 12:23:59 -08002477 if (Utilities.isPropertyEnabled(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08002478 dumpState();
2479 return true;
2480 }
2481 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07002482 }
2483 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2484 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07002485 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002486 return true;
2487 }
2488 }
2489
2490 return super.dispatchKeyEvent(event);
2491 }
2492
Joe Onorato88ec0992009-11-19 13:16:06 -08002493 @Override
2494 public void onBackPressed() {
Adam Cohen9211d422014-10-07 18:14:53 -07002495 if (mLauncherCallbacks != null && mLauncherCallbacks.handleBackPressed()) {
2496 return;
2497 }
2498
Sunny Goyal45478022015-06-08 16:52:41 -07002499 if (mDragController.isDragging()) {
2500 mDragController.cancelDrag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08002501 return;
2502 }
2503
Winson Chungb745afb2015-03-02 11:51:23 -08002504 if (isAppsViewVisible()) {
2505 showWorkspace(true);
2506 } else if (isWidgetsViewVisible()) {
2507 showOverviewMode(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002508 } else if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002509 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002510 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07002511 Folder openFolder = mWorkspace.getOpenFolder();
2512 if (openFolder.isEditingName()) {
2513 openFolder.dismissEditingName();
2514 } else {
2515 closeFolder();
2516 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002517 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08002518 mWorkspace.exitWidgetResizeMode();
2519
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002520 // Back button is a no-op here, but give at least some feedback for the button press
2521 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07002522 }
Joe Onorato88ec0992009-11-19 13:16:06 -08002523 }
2524
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002525 /**
Sunny Goyal383c5072015-06-12 21:18:53 -07002526 * Re-listen when widget host is reset.
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002527 */
Sunny Goyal383c5072015-06-12 21:18:53 -07002528 @Override
2529 public void onAppWidgetHostReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08002530 if (mAppWidgetHost != null) {
2531 mAppWidgetHost.startListening();
2532 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002533 }
2534
2535 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002536 * Launches the intent referred by the clicked shortcut.
2537 *
2538 * @param v The view representing the clicked shortcut.
2539 */
2540 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002541 // Make sure that rogue clicks don't get through while allapps is launching, or after the
2542 // view has detached (it's possible for this to happen if the view is removed mid touch).
2543 if (v.getWindowToken() == null) {
2544 return;
2545 }
2546
Winson Chung9b0b2fe2012-02-24 13:03:34 -08002547 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002548 return;
2549 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07002550
Adam Cohen1697b792013-09-17 19:08:21 -07002551 if (v instanceof Workspace) {
2552 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002553 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002554 }
2555 return;
2556 }
2557
2558 if (v instanceof CellLayout) {
2559 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002560 showWorkspace(mWorkspace.indexOfChild(v), true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002561 }
2562 }
2563
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002564 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002565 if (tag instanceof ShortcutInfo) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002566 onClickAppShortcut(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002567 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002568 if (v instanceof FolderIcon) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002569 onClickFolderIcon(v);
Adam Cohena9cf38f2011-05-02 15:36:58 -07002570 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002571 } else if (v == mAllAppsButton) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002572 onClickAllAppsButton(v);
Sunny Goyal508da152014-08-14 10:53:27 -07002573 } else if (tag instanceof AppInfo) {
2574 startAppShortcutOrInfoActivity(v);
Sunny Goyalff572272014-07-23 13:58:07 -07002575 } else if (tag instanceof LauncherAppWidgetInfo) {
2576 if (v instanceof PendingAppWidgetHostView) {
2577 onClickPendingWidget((PendingAppWidgetHostView) v);
2578 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002579 }
2580 }
2581
Sunny Goyal70660032015-05-14 00:07:08 -07002582 @SuppressLint("ClickableViewAccessibility")
Michael Jurka0e260592010-06-30 17:07:39 -07002583 public boolean onTouch(View v, MotionEvent event) {
Michael Jurka0e260592010-06-30 17:07:39 -07002584 return false;
2585 }
2586
Michael Jurkaaf442092010-06-10 17:01:57 -07002587 /**
Sunny Goyalff572272014-07-23 13:58:07 -07002588 * Event handler for the app widget view which has not fully restored.
2589 */
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002590 public void onClickPendingWidget(final PendingAppWidgetHostView v) {
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002591 if (mIsSafeModeEnabled) {
2592 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2593 return;
2594 }
2595
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002596 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) v.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07002597 if (v.isReadyForClickSetup()) {
Sunny Goyalff572272014-07-23 13:58:07 -07002598 int widgetId = info.appWidgetId;
2599 AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
2600 if (appWidgetInfo != null) {
Adam Cohen59400422014-03-05 18:07:04 -08002601 mPendingAddWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(
2602 this, appWidgetInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07002603 mPendingAddInfo.copyFrom(info);
2604 mPendingAddWidgetId = widgetId;
2605
Sunny Goyalffe83f12014-08-14 17:39:34 -07002606 AppWidgetManagerCompat.getInstance(this).startConfigActivity(appWidgetInfo,
2607 info.appWidgetId, this, mAppWidgetHost, REQUEST_RECONFIGURE_APPWIDGET);
Sunny Goyalff572272014-07-23 13:58:07 -07002608 }
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002609 } else if (info.installProgress < 0) {
2610 // The install has not been queued
2611 final String packageName = info.providerName.getPackageName();
2612 showBrokenAppInstallDialog(packageName,
2613 new DialogInterface.OnClickListener() {
2614 public void onClick(DialogInterface dialog, int id) {
2615 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
2616 }
2617 });
2618 } else {
2619 // Download has started.
2620 final String packageName = info.providerName.getPackageName();
2621 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
Sunny Goyalff572272014-07-23 13:58:07 -07002622 }
2623 }
2624
2625 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002626 * Event handler for the "grid" button that appears on the home screen, which
2627 * enters all apps mode.
2628 *
2629 * @param v The view that was clicked.
2630 */
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002631 protected void onClickAllAppsButton(View v) {
2632 if (LOGD) Log.d(TAG, "onClickAllAppsButton");
Winson Chung76648c52015-07-10 14:33:23 -07002633 if (!isAppsViewVisible()) {
Winson Chung4ac30062015-05-08 17:34:17 -07002634 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07002635 true /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungbedf9232015-07-10 12:38:30 -07002636
2637 if (mLauncherCallbacks != null) {
2638 mLauncherCallbacks.onClickAllAppsButton(v);
2639 }
Winson Chung76648c52015-07-10 14:33:23 -07002640 }
2641 }
2642
2643 protected void onLongClickAllAppsButton(View v) {
2644 if (LOGD) Log.d(TAG, "onLongClickAllAppsButton");
2645 if (!isAppsViewVisible()) {
2646 showAppsView(true /* animated */, false /* resetListToTop */,
2647 true /* updatePredictedApps */, true /* focusSearchBar */);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002648 }
2649 }
2650
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002651 private void showBrokenAppInstallDialog(final String packageName,
2652 DialogInterface.OnClickListener onSearchClickListener) {
Sunny Goyale03b8122014-10-08 09:55:24 -07002653 new AlertDialog.Builder(this)
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002654 .setTitle(R.string.abandoned_promises_title)
2655 .setMessage(R.string.abandoned_promise_explanation)
2656 .setPositiveButton(R.string.abandoned_search, onSearchClickListener)
2657 .setNeutralButton(R.string.abandoned_clean_this,
2658 new DialogInterface.OnClickListener() {
2659 public void onClick(DialogInterface dialog, int id) {
2660 final UserHandleCompat user = UserHandleCompat.myUserHandle();
2661 mWorkspace.removeAbandonedPromise(packageName, user);
2662 }
2663 })
2664 .create().show();
2665 return;
2666 }
2667
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002668 /**
2669 * Event handler for an app shortcut click.
2670 *
2671 * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.
2672 */
Chris Wren40c5ed32014-06-24 18:24:23 -04002673 protected void onClickAppShortcut(final View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002674 if (LOGD) Log.d(TAG, "onClickAppShortcut");
2675 Object tag = v.getTag();
2676 if (!(tag instanceof ShortcutInfo)) {
2677 throw new IllegalArgumentException("Input must be a Shortcut");
2678 }
2679
2680 // Open shortcut
2681 final ShortcutInfo shortcut = (ShortcutInfo) tag;
Sunny Goyal1a745e82014-10-02 15:58:31 -07002682
2683 if (shortcut.isDisabled != 0) {
2684 int error = R.string.activity_not_available;
2685 if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_SAFEMODE) != 0) {
2686 error = R.string.safemode_shortcut_error;
2687 }
2688 Toast.makeText(this, error, Toast.LENGTH_SHORT).show();
2689 return;
2690 }
2691
Chris Wren40c5ed32014-06-24 18:24:23 -04002692 // Check for abandoned promise
Sunny Goyal34942622014-08-29 17:20:55 -07002693 if ((v instanceof BubbleTextView)
2694 && shortcut.isPromise()
2695 && !shortcut.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE)) {
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002696 showBrokenAppInstallDialog(
Sunny Goyal34942622014-08-29 17:20:55 -07002697 shortcut.getTargetComponent().getPackageName(),
Chris Wren40c5ed32014-06-24 18:24:23 -04002698 new DialogInterface.OnClickListener() {
2699 public void onClick(DialogInterface dialog, int id) {
Sunny Goyal508da152014-08-14 10:53:27 -07002700 startAppShortcutOrInfoActivity(v);
Chris Wren40c5ed32014-06-24 18:24:23 -04002701 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002702 });
Chris Wren40c5ed32014-06-24 18:24:23 -04002703 return;
2704 }
2705
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002706 // Start activities
Sunny Goyal508da152014-08-14 10:53:27 -07002707 startAppShortcutOrInfoActivity(v);
Adam Cohen9211d422014-10-07 18:14:53 -07002708
2709 if (mLauncherCallbacks != null) {
2710 mLauncherCallbacks.onClickAppShortcut(v);
2711 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002712 }
2713
Adam Cohen091440a2015-03-18 14:16:05 -07002714 @Thunk void startAppShortcutOrInfoActivity(View v) {
Chris Wren40c5ed32014-06-24 18:24:23 -04002715 Object tag = v.getTag();
Sunny Goyal508da152014-08-14 10:53:27 -07002716 final ShortcutInfo shortcut;
2717 final Intent intent;
2718 if (tag instanceof ShortcutInfo) {
2719 shortcut = (ShortcutInfo) tag;
2720 intent = shortcut.intent;
2721 int[] pos = new int[2];
2722 v.getLocationOnScreen(pos);
2723 intent.setSourceBounds(new Rect(pos[0], pos[1],
2724 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Chris Wren40c5ed32014-06-24 18:24:23 -04002725
Sunny Goyal508da152014-08-14 10:53:27 -07002726 } else if (tag instanceof AppInfo) {
2727 shortcut = null;
2728 intent = ((AppInfo) tag).intent;
2729 } else {
2730 throw new IllegalArgumentException("Input must be a Shortcut or AppInfo");
2731 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002732
2733 boolean success = startActivitySafely(v, intent, tag);
Winson Chung8f1eff72015-05-28 17:33:40 -07002734 mStats.recordLaunch(v, intent, shortcut);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002735
2736 if (success && v instanceof BubbleTextView) {
2737 mWaitingForResume = (BubbleTextView) v;
2738 mWaitingForResume.setStayPressed(true);
2739 }
2740 }
2741
2742 /**
2743 * Event handler for a folder icon click.
2744 *
2745 * @param v The view that was clicked. Must be an instance of {@link FolderIcon}.
2746 */
2747 protected void onClickFolderIcon(View v) {
2748 if (LOGD) Log.d(TAG, "onClickFolder");
2749 if (!(v instanceof FolderIcon)){
2750 throw new IllegalArgumentException("Input must be a FolderIcon");
2751 }
2752
Sunny Goyal317698b2015-07-29 11:45:41 -07002753 // TODO(sunnygoyal): Re-evaluate this code.
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002754 FolderIcon folderIcon = (FolderIcon) v;
2755 final FolderInfo info = folderIcon.getFolderInfo();
2756 Folder openFolder = mWorkspace.getFolderForTag(info);
2757
2758 // If the folder info reports that the associated folder is open, then verify that
2759 // it is actually opened. There have been a few instances where this gets out of sync.
2760 if (info.opened && openFolder == null) {
2761 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2762 + info.screenId + " (" + info.cellX + ", " + info.cellY + ")");
2763 info.opened = false;
2764 }
2765
2766 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
2767 // Close any open folder
2768 closeFolder();
2769 // Open the requested folder
2770 openFolder(folderIcon);
2771 } else {
2772 // Find the open folder...
2773 int folderScreen;
2774 if (openFolder != null) {
2775 folderScreen = mWorkspace.getPageForView(openFolder);
2776 // .. and close it
Sunny Goyal935fca12015-10-13 10:19:01 -07002777 closeFolder(openFolder, true);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002778 if (folderScreen != mWorkspace.getCurrentPage()) {
2779 // Close any folder open on the current screen
2780 closeFolder();
2781 // Pull the folder onto this screen
2782 openFolder(folderIcon);
2783 }
2784 }
2785 }
Adam Cohen9211d422014-10-07 18:14:53 -07002786
2787 if (mLauncherCallbacks != null) {
2788 mLauncherCallbacks.onClickFolderIcon(v);
2789 }
Michael Jurka5130e402011-10-13 04:55:35 -07002790 }
2791
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002792 /**
2793 * Event handler for the (Add) Widgets button that appears after a long press
2794 * on the home screen.
2795 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002796 protected void onClickAddWidgetButton(View view) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002797 if (LOGD) Log.d(TAG, "onClickAddWidgetButton");
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002798 if (mIsSafeModeEnabled) {
2799 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2800 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08002801 showWidgetsView(true /* animated */, true /* resetPageToZero */);
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002802 if (mLauncherCallbacks != null) {
2803 mLauncherCallbacks.onClickAddWidgetButton(view);
2804 }
Adam Cohen9211d422014-10-07 18:14:53 -07002805 }
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002806 }
2807
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002808 /**
2809 * Event handler for the wallpaper picker button that appears after a long press
2810 * on the home screen.
2811 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002812 protected void onClickWallpaperPicker(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002813 if (LOGD) Log.d(TAG, "onClickWallpaperPicker");
Tony Wickham3e776a82015-09-09 18:21:49 -07002814 int pageScroll = mWorkspace.getScrollForPage(mWorkspace.getPageNearestToCenterOfScreen());
2815 float offset = mWorkspace.mWallpaperOffset.wallpaperOffsetForScroll(pageScroll);
2816 startActivityForResult(new Intent(Intent.ACTION_SET_WALLPAPER).setPackage(getPackageName())
2817 .putExtra(WallpaperPickerActivity.EXTRA_WALLPAPER_OFFSET, offset),
Sunny Goyal6a1e95a2015-03-20 17:26:30 -07002818 REQUEST_PICK_WALLPAPER);
Adam Cohen9211d422014-10-07 18:14:53 -07002819
2820 if (mLauncherCallbacks != null) {
2821 mLauncherCallbacks.onClickWallpaperPicker(v);
2822 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002823 }
2824
2825 /**
2826 * Event handler for a click on the settings button that appears after a long press
2827 * on the home screen.
2828 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002829 protected void onClickSettingsButton(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002830 if (LOGD) Log.d(TAG, "onClickSettingsButton");
Adam Cohen9211d422014-10-07 18:14:53 -07002831 if (mLauncherCallbacks != null) {
2832 mLauncherCallbacks.onClickSettingsButton(v);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07002833 } else {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002834 startActivity(new Intent(this, SettingsActivity.class));
Adam Cohen9211d422014-10-07 18:14:53 -07002835 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002836 }
2837
Adam Cohen61f560d2013-09-30 15:58:20 -07002838 public View.OnTouchListener getHapticFeedbackTouchListener() {
2839 if (mHapticFeedbackTouchListener == null) {
2840 mHapticFeedbackTouchListener = new View.OnTouchListener() {
Sunny Goyal70660032015-05-14 00:07:08 -07002841 @SuppressLint("ClickableViewAccessibility")
Adam Cohen61f560d2013-09-30 15:58:20 -07002842 @Override
2843 public boolean onTouch(View v, MotionEvent event) {
2844 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
2845 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2846 }
2847 return false;
2848 }
2849 };
2850 }
2851 return mHapticFeedbackTouchListener;
2852 }
2853
Adam Cohen9211d422014-10-07 18:14:53 -07002854 public void onDragStarted(View view) {
2855 if (isOnCustomContent()) {
2856 // Custom content screen doesn't participate in drag and drop. If on custom
2857 // content screen, move to default.
2858 moveWorkspaceToDefaultScreen();
2859 }
2860
2861 if (mLauncherCallbacks != null) {
2862 mLauncherCallbacks.onDragStarted(view);
2863 }
2864 }
Anjali Koppal62d18ed2014-03-10 17:04:03 -07002865
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002866 /**
2867 * Called when the user stops interacting with the launcher.
2868 * This implies that the user is now on the homescreen and is not doing housekeeping.
2869 */
Adam Cohen9211d422014-10-07 18:14:53 -07002870 protected void onInteractionEnd() {
2871 if (mLauncherCallbacks != null) {
2872 mLauncherCallbacks.onInteractionEnd();
2873 }
2874 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002875
2876 /**
2877 * Called when the user starts interacting with the launcher.
2878 * The possible interactions are:
2879 * - open all apps
2880 * - reorder an app shortcut, or a widget
2881 * - open the overview mode.
2882 * This is a good time to stop doing things that only make sense
2883 * when the user is on the homescreen and not doing housekeeping.
2884 */
Adam Cohen9211d422014-10-07 18:14:53 -07002885 protected void onInteractionBegin() {
2886 if (mLauncherCallbacks != null) {
2887 mLauncherCallbacks.onInteractionBegin();
2888 }
2889 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002890
Winson Chungcd99cd32015-04-29 11:03:24 -07002891 /** Updates the interaction state. */
2892 public void updateInteraction(Workspace.State fromState, Workspace.State toState) {
Winson Chung83f59ab2015-05-05 17:21:58 -07002893 // Only update the interacting state if we are transitioning to/from a view with an
Winson Chungcd99cd32015-04-29 11:03:24 -07002894 // overlay
Winson Chungef7f8742015-06-04 17:18:17 -07002895 boolean fromStateWithOverlay = fromState != Workspace.State.NORMAL;
2896 boolean toStateWithOverlay = toState != Workspace.State.NORMAL;
Winson Chung83f59ab2015-05-05 17:21:58 -07002897 if (toStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002898 onInteractionBegin();
Winson Chung83f59ab2015-05-05 17:21:58 -07002899 } else if (fromStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002900 onInteractionEnd();
2901 }
2902 }
2903
Kenny Guyf07af7b2014-07-31 11:39:16 +01002904 void startApplicationDetailsActivity(ComponentName componentName, UserHandleCompat user) {
Kenny Guyf07af7b2014-07-31 11:39:16 +01002905 try {
2906 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Kenny Guyf07af7b2014-07-31 11:39:16 +01002907 launcherApps.showAppDetailsForProfile(componentName, user);
2908 } catch (SecurityException e) {
2909 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2910 Log.e(TAG, "Launcher does not have permission to launch settings");
2911 } catch (ActivityNotFoundException e) {
2912 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2913 Log.e(TAG, "Unable to launch settings");
2914 }
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002915 }
2916
Michael Jurka1e2f4652013-07-08 18:03:46 -07002917 // returns true if the activity was started
Kenny Guyd31df542014-06-30 15:12:11 +01002918 boolean startApplicationUninstallActivity(ComponentName componentName, int flags,
2919 UserHandleCompat user) {
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002920 if ((flags & AppInfo.DOWNLOADED_FLAG) == 0) {
Patrick Dubroy5539af72010-09-07 15:22:01 -07002921 // System applications cannot be installed. For now, show a toast explaining that.
2922 // We may give them the option of disabling apps this way.
2923 int messageId = R.string.uninstall_system_app_text;
2924 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
Michael Jurka1e2f4652013-07-08 18:03:46 -07002925 return false;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002926 } else {
Michael Jurka1e2f4652013-07-08 18:03:46 -07002927 String packageName = componentName.getPackageName();
2928 String className = componentName.getClassName();
Patrick Dubroy5539af72010-09-07 15:22:01 -07002929 Intent intent = new Intent(
2930 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002931 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2932 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Kenny Guyd31df542014-06-30 15:12:11 +01002933 if (user != null) {
2934 user.addToIntent(intent, Intent.EXTRA_USER);
2935 }
Patrick Dubroy5539af72010-09-07 15:22:01 -07002936 startActivity(intent);
Michael Jurka1e2f4652013-07-08 18:03:46 -07002937 return true;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002938 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002939 }
2940
Winson Chung8f1eff72015-05-28 17:33:40 -07002941 private boolean startActivity(View v, Intent intent, Object tag) {
Kenny Guyb6cc40b2014-05-13 15:58:58 +01002942 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002943 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002944 // Only launch using the new animation if the shortcut has not opted out (this is a
2945 // private contract between launcher and may be ignored in the future).
2946 boolean useLaunchAnimation = (v != null) &&
2947 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
Kenny Guyed131872014-04-30 03:02:21 +01002948 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
2949 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyed131872014-04-30 03:02:21 +01002950
Kenny Guy1317e2d2014-05-08 18:52:50 +01002951 UserHandleCompat user = null;
2952 if (intent.hasExtra(AppInfo.EXTRA_PROFILE)) {
2953 long serialNumber = intent.getLongExtra(AppInfo.EXTRA_PROFILE, -1);
2954 user = userManager.getUserForSerialNumber(serialNumber);
2955 }
2956
2957 Bundle optsBundle = null;
Winson Chung2672ff92012-05-04 16:22:30 -07002958 if (useLaunchAnimation) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002959 ActivityOptions opts = null;
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002960 if (Utilities.ATLEAST_MARSHMALLOW) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002961 int left = 0, top = 0;
2962 int width = v.getMeasuredWidth(), height = v.getMeasuredHeight();
2963 if (v instanceof TextView) {
2964 // Launch from center of icon, not entire view
Winson Chungb745afb2015-03-02 11:51:23 -08002965 Drawable icon = Workspace.getTextViewIcon((TextView) v);
2966 if (icon != null) {
2967 Rect bounds = icon.getBounds();
Chet Haasea8f996d2015-02-17 12:56:04 -08002968 left = (width - bounds.width()) / 2;
Winson Chungb745afb2015-03-02 11:51:23 -08002969 top = v.getPaddingTop();
Chet Haasea8f996d2015-02-17 12:56:04 -08002970 width = bounds.width();
2971 height = bounds.height();
2972 }
2973 }
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002974 opts = ActivityOptions.makeClipRevealAnimation(v, left, top, width, height);
2975 } else if (!Utilities.ATLEAST_LOLLIPOP) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002976 // Below L, we use a scale up animation
Adam Cohen2e52c902015-04-06 13:11:28 -07002977 opts = ActivityOptions.makeScaleUpAnimation(v, 0, 0,
Chet Haasea8f996d2015-02-17 12:56:04 -08002978 v.getMeasuredWidth(), v.getMeasuredHeight());
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002979 } else if (Utilities.ATLEAST_LOLLIPOP_MR1) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002980 // On L devices, we use the device default slide-up transition.
2981 // On L MR1 devices, we a custom version of the slide-up transition which
2982 // doesn't have the delay present in the device default.
2983 opts = ActivityOptions.makeCustomAnimation(this,
2984 R.anim.task_open_enter, R.anim.no_anim);
Chet Haasea8f996d2015-02-17 12:56:04 -08002985 }
Adam Cohen2e52c902015-04-06 13:11:28 -07002986 optsBundle = opts != null ? opts.toBundle() : null;
Adam Cohen6ea3b112014-06-11 11:38:49 -07002987 }
Kenny Guy1317e2d2014-05-08 18:52:50 +01002988
2989 if (user == null || user.equals(UserHandleCompat.myUserHandle())) {
2990 // Could be launching some bookkeeping activity
2991 startActivity(intent, optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002992 } else {
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002993 // TODO Component can be null when shortcuts are supported for secondary user
Kenny Guyc2bd8102014-06-30 12:30:31 +01002994 launcherApps.startActivityForProfile(intent.getComponent(), user,
2995 intent.getSourceBounds(), optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002996 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002997 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002998 } catch (SecurityException e) {
Sunny Goyal28c6b962015-10-12 11:42:05 -07002999 if (Utilities.ATLEAST_MARSHMALLOW && tag instanceof ItemInfo) {
3000 // Due to legacy reasons, direct call shortcuts require Launchers to have the
3001 // corresponding permission. Show the appropriate permission prompt if that
3002 // is the case.
3003 if (intent.getComponent() == null
3004 && Intent.ACTION_CALL.equals(intent.getAction())
3005 && checkSelfPermission(Manifest.permission.CALL_PHONE) !=
3006 PackageManager.PERMISSION_GRANTED) {
3007 // TODO: Rename sPendingAddItem to a generic name.
3008 sPendingAddItem = preparePendingAddArgs(REQUEST_PERMISSION_CALL_PHONE, intent,
3009 0, (ItemInfo) tag);
3010 requestPermissions(new String[]{Manifest.permission.CALL_PHONE},
3011 REQUEST_PERMISSION_CALL_PHONE);
3012 return false;
3013 }
3014 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003015 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08003016 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003017 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07003018 "or use the exported attribute for this activity. "
3019 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003020 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08003021 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003022 }
Winson Chungaafa03c2010-06-11 17:34:16 -07003023
Winson Chungbedf9232015-07-10 12:38:30 -07003024 public boolean startActivitySafely(View v, Intent intent, Object tag) {
Michael Jurka86a720e2012-05-09 11:23:23 -07003025 boolean success = false;
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07003026 if (mIsSafeModeEnabled && !Utilities.isSystemApp(this, intent)) {
3027 Toast.makeText(this, R.string.safemode_shortcut_error, Toast.LENGTH_SHORT).show();
3028 return false;
3029 }
Michael Jurka86a720e2012-05-09 11:23:23 -07003030 try {
3031 success = startActivity(v, intent, tag);
3032 } catch (ActivityNotFoundException e) {
3033 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
3034 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
3035 }
3036 return success;
3037 }
3038
Adam Cohen268c4752012-06-06 17:47:33 -07003039 /**
3040 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
3041 * in the DragLayer in the exact absolute location of the original FolderIcon.
3042 */
3043 private void copyFolderIconToImage(FolderIcon fi) {
3044 final int width = fi.getMeasuredWidth();
3045 final int height = fi.getMeasuredHeight();
3046
3047 // Lazy load ImageView, Bitmap and Canvas
3048 if (mFolderIconImageView == null) {
3049 mFolderIconImageView = new ImageView(this);
3050 }
3051 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
3052 mFolderIconBitmap.getHeight() != height) {
3053 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
3054 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
3055 }
3056
3057 DragLayer.LayoutParams lp;
3058 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
3059 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
3060 } else {
3061 lp = new DragLayer.LayoutParams(width, height);
3062 }
3063
Adam Cohen307fe232012-08-16 17:55:58 -07003064 // The layout from which the folder is being opened may be scaled, adjust the starting
3065 // view size by this scale factor.
3066 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07003067 lp.customPosition = true;
3068 lp.x = mRectForFolderAnimation.left;
3069 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07003070 lp.width = (int) (scale * width);
3071 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07003072
3073 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
3074 fi.draw(mFolderIconCanvas);
3075 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07003076 if (fi.getFolder() != null) {
3077 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
3078 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07003079 }
Adam Cohen268c4752012-06-06 17:47:33 -07003080 // Just in case this image view is still in the drag layer from a previous animation,
3081 // we remove it and re-add it.
3082 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
3083 mDragLayer.removeView(mFolderIconImageView);
3084 }
3085 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07003086 if (fi.getFolder() != null) {
3087 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07003088 }
Adam Cohen268c4752012-06-06 17:47:33 -07003089 }
3090
Adam Cohen2801caf2011-05-13 20:57:39 -07003091 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003092 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003093 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
3094 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
3095 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
3096
Adam Cohenc51934b2011-07-26 21:07:43 -07003097 FolderInfo info = (FolderInfo) fi.getTag();
3098 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3099 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07003100 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
3101 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07003102 }
3103
Adam Cohen268c4752012-06-06 17:47:33 -07003104 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
3105 copyFolderIconToImage(fi);
3106 fi.setVisibility(View.INVISIBLE);
3107
Michael Jurka2ecf9952012-06-18 12:52:28 -07003108 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003109 scaleX, scaleY);
Sunny Goyal9fc953b2015-08-17 12:24:25 -07003110 if (Utilities.ATLEAST_LOLLIPOP) {
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003111 oa.setInterpolator(new LogDecelerateInterpolator(100, 0));
3112 }
3113 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohen2801caf2011-05-13 20:57:39 -07003114 oa.start();
Tony Wickham112ac952015-11-12 12:31:50 -08003115 if (Utilities.isPowerSaverOn(this)) {
3116 // Animations are disabled in battery saver mode, so just skip to the end state.
3117 oa.end();
3118 }
Adam Cohen2801caf2011-05-13 20:57:39 -07003119 }
3120
Sunny Goyal935fca12015-10-13 10:19:01 -07003121 private void shrinkAndFadeInFolderIcon(final FolderIcon fi, boolean animate) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003122 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003123 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
3124 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
3125 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
3126
Adam Cohen268c4752012-06-06 17:47:33 -07003127 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07003128
Adam Cohen268c4752012-06-06 17:47:33 -07003129 // We remove and re-draw the FolderIcon in-case it has changed
3130 mDragLayer.removeView(mFolderIconImageView);
3131 copyFolderIconToImage(fi);
Michael Jurka2ecf9952012-06-18 12:52:28 -07003132 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003133 scaleX, scaleY);
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003134 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07003135 oa.addListener(new AnimatorListenerAdapter() {
3136 @Override
3137 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07003138 if (cl != null) {
3139 cl.clearFolderLeaveBehind();
3140 // Remove the ImageView copy of the FolderIcon and make the original visible.
3141 mDragLayer.removeView(mFolderIconImageView);
3142 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07003143 }
3144 }
3145 });
Adam Cohen2801caf2011-05-13 20:57:39 -07003146 oa.start();
Sunny Goyal935fca12015-10-13 10:19:01 -07003147 if (!animate) {
3148 oa.end();
3149 }
Adam Cohen2801caf2011-05-13 20:57:39 -07003150 }
3151
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003152 /**
Michael Jurka774bd372010-10-22 13:40:50 -07003153 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003154 * is animated relative to the specified View. If the View is null, no animation
3155 * is played.
3156 *
3157 * @param folderInfo The FolderInfo describing the folder to open.
3158 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07003159 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07003160 Folder folder = folderIcon.getFolder();
Sunny Goyalf4066152015-04-15 09:42:19 -07003161 Folder openFolder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
3162 if (openFolder != null && openFolder != folder) {
3163 // Close any open folder before opening a folder.
3164 closeFolder();
3165 }
3166
Adam Cohena9cf38f2011-05-02 15:36:58 -07003167 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003168
Adam Cohena9cf38f2011-05-02 15:36:58 -07003169 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003170
Sunny Goyalf4066152015-04-15 09:42:19 -07003171 // While the folder is open, the position of the icon cannot change.
3172 ((CellLayout.LayoutParams) folderIcon.getLayoutParams()).canReorder = false;
3173
Adam Cohen4554ee12011-08-03 16:13:21 -07003174 // Just verify that the folder hasn't already been added to the DragLayer.
3175 // There was a one-off crash where the folder had a parent already.
3176 if (folder.getParent() == null) {
3177 mDragLayer.addView(folder);
3178 mDragController.addDropTarget((DropTarget) folder);
3179 } else {
3180 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
3181 folder.getParent() + ").");
3182 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07003183 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07003184 growAndFadeOutFolderIcon(folderIcon);
Winson Chung83ca4802013-04-12 15:10:52 -07003185
3186 // Notify the accessibility manager that this folder "window" has appeared and occluded
3187 // the workspace items
3188 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
3189 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07003190 }
3191
3192 public void closeFolder() {
Sunny Goyal935fca12015-10-13 10:19:01 -07003193 closeFolder(true);
3194 }
3195
3196 public void closeFolder(boolean animate) {
Adam Cohen37c717f2013-11-26 11:50:15 -08003197 Folder folder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
Adam Cohen4554ee12011-08-03 16:13:21 -07003198 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07003199 if (folder.isEditingName()) {
3200 folder.dismissEditingName();
3201 }
Sunny Goyal935fca12015-10-13 10:19:01 -07003202 closeFolder(folder, animate);
Adam Cohen4554ee12011-08-03 16:13:21 -07003203 }
3204 }
3205
Sunny Goyal935fca12015-10-13 10:19:01 -07003206 public void closeFolder(Folder folder, boolean animate) {
Adam Cohen4554ee12011-08-03 16:13:21 -07003207 folder.getInfo().opened = false;
3208
3209 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
3210 if (parent != null) {
3211 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
Sunny Goyal935fca12015-10-13 10:19:01 -07003212 shrinkAndFadeInFolderIcon(fi, animate);
Sunny Goyalf4066152015-04-15 09:42:19 -07003213 if (fi != null) {
3214 ((CellLayout.LayoutParams) fi.getLayoutParams()).canReorder = true;
3215 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003216 }
Sunny Goyal935fca12015-10-13 10:19:01 -07003217 if (animate) {
3218 folder.animateClosed();
3219 } else {
Tony Wickham30bdd6e2015-11-17 17:59:26 -08003220 folder.close(false);
Sunny Goyal935fca12015-10-13 10:19:01 -07003221 }
Winson Chung83ca4802013-04-12 15:10:52 -07003222
Sunny Goyal935fca12015-10-13 10:19:01 -07003223 // Notify the accessibility manager that this folder "window" has disappeared and no
3224 // longer occludes the workspace items
Winson Chung83ca4802013-04-12 15:10:52 -07003225 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003226 }
3227
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003228 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07003229 if (!isDraggingEnabled()) return false;
3230 if (isWorkspaceLocked()) return false;
3231 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003232
Winson Chung76648c52015-07-10 14:33:23 -07003233 if (v == mAllAppsButton) {
3234 onLongClickAllAppsButton(v);
3235 return true;
3236 }
3237
Adam Cohen1697b792013-09-17 19:08:21 -07003238 if (v instanceof Workspace) {
3239 if (!mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003240 if (!mWorkspace.isTouchActive()) {
3241 showOverviewMode(true);
Adam Cohen93c97562013-09-26 13:48:01 -07003242 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3243 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
3244 return true;
3245 } else {
3246 return false;
3247 }
Adam Cohenaa4c8c12014-06-06 11:52:52 -07003248 } else {
3249 return false;
Adam Cohen1697b792013-09-17 19:08:21 -07003250 }
Adam Cohen1697b792013-09-17 19:08:21 -07003251 }
3252
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003253 CellLayout.CellInfo longClickCellInfo = null;
3254 View itemUnderLongClick = null;
3255 if (v.getTag() instanceof ItemInfo) {
3256 ItemInfo info = (ItemInfo) v.getTag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08003257 longClickCellInfo = new CellLayout.CellInfo(v, info);
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003258 itemUnderLongClick = longClickCellInfo.cell;
3259 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003260 }
3261
Winson Chung3d503fb2011-07-13 17:25:49 -07003262 // The hotseat touch handling does not go through Workspace, and we always allow long press
3263 // on hotseat items.
Dan Sandlere26d0942014-01-13 14:30:14 -05003264 final boolean inHotseat = isHotseatLayout(v);
Sunny Goyal8e2133b2015-05-06 13:39:07 -07003265 if (!mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07003266 if (itemUnderLongClick == null) {
Adam Cohend3ecce92013-09-16 14:58:00 -07003267 // User long pressed on empty space
3268 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3269 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Adam Cohend3ecce92013-09-16 14:58:00 -07003270 if (mWorkspace.isInOverviewMode()) {
3271 mWorkspace.startReordering(v);
3272 } else {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003273 showOverviewMode(true);
Adam Cohendedbd962013-07-11 14:21:49 -07003274 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003275 } else {
Dan Sandlere26d0942014-01-13 14:30:14 -05003276 final boolean isAllAppsButton = inHotseat && isAllAppsButtonRank(
3277 mHotseat.getOrderInHotseat(
3278 longClickCellInfo.cellX,
3279 longClickCellInfo.cellY));
3280 if (!(itemUnderLongClick instanceof Folder || isAllAppsButton)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003281 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07003282 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003283 }
3284 }
3285 }
3286 return true;
3287 }
3288
Winson Chung3d503fb2011-07-13 17:25:49 -07003289 boolean isHotseatLayout(View layout) {
3290 return mHotseat != null && layout != null &&
3291 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
3292 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08003293
Winson Chung3d503fb2011-07-13 17:25:49 -07003294 /**
3295 * Returns the CellLayout of the specified container at the specified screen.
3296 */
Sunny Goyal92820592015-03-02 11:31:35 -08003297 public CellLayout getCellLayout(long container, long screenId) {
Winson Chung3d503fb2011-07-13 17:25:49 -07003298 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3299 if (mHotseat != null) {
3300 return mHotseat.getLayout();
3301 } else {
3302 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08003303 }
Winson Chung3d503fb2011-07-13 17:25:49 -07003304 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08003305 return mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08003306 }
3307 }
3308
Winson Chungb745afb2015-03-02 11:51:23 -08003309 /**
3310 * For overridden classes.
3311 */
Daniel Sandler843e8602010-06-07 14:59:01 -04003312 public boolean isAllAppsVisible() {
Winson Chungb745afb2015-03-02 11:51:23 -08003313 return isAppsViewVisible();
3314 }
3315
3316 public boolean isAppsViewVisible() {
3317 return (mState == State.APPS) || (mOnResumeState == State.APPS);
3318 }
3319
3320 public boolean isWidgetsViewVisible() {
3321 return (mState == State.WIDGETS) || (mOnResumeState == State.WIDGETS);
Joe Onoratofb0ca672009-09-14 17:55:46 -04003322 }
3323
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003324 private void setWorkspaceBackground(int background) {
3325 switch (background) {
3326 case WORKSPACE_BACKGROUND_TRANSPARENT:
3327 getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
3328 break;
3329 case WORKSPACE_BACKGROUND_BLACK:
3330 getWindow().setBackgroundDrawable(null);
3331 break;
3332 default:
3333 getWindow().setBackgroundDrawable(mWorkspaceBackgroundDrawable);
3334 }
Craig Mautner360310b2012-10-26 15:13:08 -07003335 }
3336
Selim Cinek3a8a8f72014-01-16 10:38:38 -08003337 protected void changeWallpaperVisiblity(boolean visible) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003338 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
3339 int curflags = getWindow().getAttributes().flags
3340 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
3341 if (wpflags != curflags) {
3342 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
3343 }
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003344 setWorkspaceBackground(visible ? WORKSPACE_BACKGROUND_GRADIENT : WORKSPACE_BACKGROUND_BLACK);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003345 }
3346
Michael Jurkae326f182011-11-21 14:05:46 -08003347 @Override
3348 public void onTrimMemory(int level) {
3349 super.onTrimMemory(level);
Adam Cohen3f9c9712014-10-31 11:48:25 -07003350 if (level >= ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
3351 // The widget preview db can result in holding onto over
3352 // 3MB of memory for caching which isn't necessary.
3353 SQLiteDatabase.releaseMemory();
3354
Adam Cohenc8f4e1b2014-11-19 16:03:20 -08003355 // This clears all widget bitmaps from the widget tray
Hyunyoung Song3f471442015-04-08 19:01:34 -07003356 // TODO(hyunyoungs)
Michael Jurkae326f182011-11-21 14:05:46 -08003357 }
Robert Kozikowski67c30862015-03-30 23:46:46 +01003358 if (mLauncherCallbacks != null) {
3359 mLauncherCallbacks.onTrimMemory(level);
3360 }
Michael Jurkae326f182011-11-21 14:05:46 -08003361 }
3362
Winson5c6bdbb2015-09-03 11:36:19 -07003363 /**
3364 * @return whether or not the Launcher state changed.
3365 */
3366 public boolean showWorkspace(boolean animated) {
3367 return showWorkspace(WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated, null);
Adam Cohened307df2013-10-02 09:37:31 -07003368 }
3369
Winson5c6bdbb2015-09-03 11:36:19 -07003370 /**
3371 * @return whether or not the Launcher state changed.
3372 */
3373 public boolean showWorkspace(boolean animated, Runnable onCompleteRunnable) {
3374 return showWorkspace(WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated,
Winson Chungef7f8742015-06-04 17:18:17 -07003375 onCompleteRunnable);
Winson Chungdc61c4d2015-04-20 18:26:57 -07003376 }
3377
Winson5c6bdbb2015-09-03 11:36:19 -07003378 /**
3379 * @return whether or not the Launcher state changed.
3380 */
3381 protected boolean showWorkspace(int snapToPage, boolean animated) {
3382 return showWorkspace(snapToPage, animated, null);
Winson Chungdc61c4d2015-04-20 18:26:57 -07003383 }
3384
Winson5c6bdbb2015-09-03 11:36:19 -07003385 /**
3386 * @return whether or not the Launcher state changed.
3387 */
3388 boolean showWorkspace(int snapToPage, boolean animated, Runnable onCompleteRunnable) {
Winson Chung0f785722015-04-08 10:27:49 -07003389 boolean changed = mState != State.WORKSPACE ||
3390 mWorkspace.getState() != Workspace.State.NORMAL;
3391 if (changed) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003392 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003393 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3394 Workspace.State.NORMAL, snapToPage, animated, onCompleteRunnable);
Winson Chungc7d2b602012-05-16 17:02:20 -07003395
Michael Jurkab3e22d92011-10-31 15:58:33 -07003396 // Set focus to the AppsCustomize button
3397 if (mAllAppsButton != null) {
3398 mAllAppsButton.requestFocus();
3399 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003400 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07003401
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003402 // Change the state *after* we've called all the transition code
3403 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08003404
Winson Chung5fb63472011-02-02 17:03:37 -08003405 // Resume the auto-advance of widgets
3406 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08003407 updateAutoAdvanceState();
Winson Chung5fb63472011-02-02 17:03:37 -08003408
Winson Chung0f785722015-04-08 10:27:49 -07003409 if (changed) {
3410 // Send an accessibility event to announce the context change
3411 getWindow().getDecorView()
3412 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Winson Chung0f785722015-04-08 10:27:49 -07003413 }
Winson5c6bdbb2015-09-03 11:36:19 -07003414 return changed;
Bjorn Bringertc459e522013-06-07 19:36:01 +01003415 }
3416
Winsone9f27272015-10-13 10:47:51 -07003417 /**
3418 * Shows the overview button.
3419 */
Adam Cohened307df2013-10-02 09:37:31 -07003420 void showOverviewMode(boolean animated) {
Winsone9f27272015-10-13 10:47:51 -07003421 showOverviewMode(animated, false);
3422 }
3423
3424 /**
3425 * Shows the overview button, and if {@param requestButtonFocus} is set, will force the focus
3426 * onto one of the overview panel buttons.
3427 */
3428 void showOverviewMode(boolean animated, boolean requestButtonFocus) {
3429 Runnable postAnimRunnable = null;
3430 if (requestButtonFocus) {
3431 postAnimRunnable = new Runnable() {
3432 @Override
3433 public void run() {
3434 // Hitting the menu button when in touch mode does not trigger touch mode to
3435 // be disabled, so if requested, force focus on one of the overview panel
3436 // buttons.
3437 mOverviewPanel.requestFocusFromTouch();
3438 }
3439 };
3440 }
Adam Cohened307df2013-10-02 09:37:31 -07003441 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003442 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3443 Workspace.State.OVERVIEW,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003444 WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated,
Winsone9f27272015-10-13 10:47:51 -07003445 postAnimRunnable);
Adam Cohened307df2013-10-02 09:37:31 -07003446 mState = State.WORKSPACE;
Joe Onorato00acb122009-08-04 16:04:30 -04003447 }
3448
Winson Chungb745afb2015-03-02 11:51:23 -08003449 /**
3450 * Shows the apps view.
3451 */
Winson Chung76648c52015-07-10 14:33:23 -07003452 void showAppsView(boolean animated, boolean resetListToTop, boolean updatePredictedApps,
3453 boolean focusSearchBar) {
Winson Chungb745afb2015-03-02 11:51:23 -08003454 if (resetListToTop) {
3455 mAppsView.scrollToTop();
3456 }
Winson Chung4ac30062015-05-08 17:34:17 -07003457 if (updatePredictedApps) {
3458 tryAndUpdatePredictedApps();
3459 }
Winson Chung76648c52015-07-10 14:33:23 -07003460 showAppsOrWidgets(State.APPS, animated, focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003461 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003462
Winson Chungb745afb2015-03-02 11:51:23 -08003463 /**
3464 * Shows the widgets view.
3465 */
3466 void showWidgetsView(boolean animated, boolean resetPageToZero) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003467 if (LOGD) Log.d(TAG, "showWidgetsView:" + animated + " resetPageToZero:" + resetPageToZero);
Winson Chung82963d52013-10-09 11:20:57 -07003468 if (resetPageToZero) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003469 mWidgetsView.scrollToTop();
Winson Chung82963d52013-10-09 11:20:57 -07003470 }
Winson Chung76648c52015-07-10 14:33:23 -07003471 showAppsOrWidgets(State.WIDGETS, animated, false);
Hyunyoung Song3f471442015-04-08 19:01:34 -07003472
3473 mWidgetsView.post(new Runnable() {
Adam Cohendcc5e712014-06-23 15:38:55 -04003474 @Override
3475 public void run() {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003476 mWidgetsView.requestFocus();
Adam Cohendcc5e712014-06-23 15:38:55 -04003477 }
3478 });
Winson Chungb745afb2015-03-02 11:51:23 -08003479 }
3480
3481 /**
3482 * Sets up the transition to show the apps/widgets view.
Hyunyoung Songb7900832015-05-15 16:29:45 -07003483 *
3484 * @return whether the current from and to state allowed this operation
Winson Chungb745afb2015-03-02 11:51:23 -08003485 */
Hyunyoung Songb7900832015-05-15 16:29:45 -07003486 // TODO: calling method should use the return value so that when {@code false} is returned
3487 // the workspace transition doesn't fall into invalid state.
Winson Chung76648c52015-07-10 14:33:23 -07003488 private boolean showAppsOrWidgets(State toState, boolean animated, boolean focusSearchBar) {
Hyunyoung Songb7900832015-05-15 16:29:45 -07003489 if (mState != State.WORKSPACE && mState != State.APPS_SPRING_LOADED &&
3490 mState != State.WIDGETS_SPRING_LOADED) {
3491 return false;
3492 }
3493 if (toState != State.APPS && toState != State.WIDGETS) {
3494 return false;
3495 }
Winson Chungb745afb2015-03-02 11:51:23 -08003496
3497 if (toState == State.APPS) {
Winson Chung006ee262015-08-03 14:40:11 -07003498 mStateTransitionAnimation.startAnimationToAllApps(mWorkspace.getState(), animated,
3499 focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003500 } else {
Winson Chung006ee262015-08-03 14:40:11 -07003501 mStateTransitionAnimation.startAnimationToWidgets(mWorkspace.getState(), animated);
Winson Chungb745afb2015-03-02 11:51:23 -08003502 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003503
Michael Jurkab3e22d92011-10-31 15:58:33 -07003504 // Change the state *after* we've called all the transition code
Winson Chungb745afb2015-03-02 11:51:23 -08003505 mState = toState;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003506
3507 // Pause the auto-advance of widgets until we are out of AllApps
3508 mUserPresent = false;
Winson Chungb745afb2015-03-02 11:51:23 -08003509 updateAutoAdvanceState();
Michael Jurkab3e22d92011-10-31 15:58:33 -07003510 closeFolder();
3511
3512 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07003513 getWindow().getDecorView()
3514 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Hyunyoung Songb7900832015-05-15 16:29:45 -07003515 return true;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003516 }
3517
Winson Chungcd99cd32015-04-29 11:03:24 -07003518 /**
3519 * Updates the workspace and interaction state on state change, and return the animation to this
3520 * new state.
3521 */
3522 public Animator startWorkspaceStateChangeAnimation(Workspace.State toState, int toPage,
Winson Chung006ee262015-08-03 14:40:11 -07003523 boolean animated, HashMap<View, Integer> layerViews) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003524 Workspace.State fromState = mWorkspace.getState();
Winson Chung006ee262015-08-03 14:40:11 -07003525 Animator anim = mWorkspace.setStateWithAnimation(toState, toPage, animated, layerViews);
Winson Chungcd99cd32015-04-29 11:03:24 -07003526 updateInteraction(fromState, toState);
3527 return anim;
3528 }
3529
Hyunyoung Song3f471442015-04-08 19:01:34 -07003530 public void enterSpringLoadedDragMode() {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003531 if (LOGD) Log.d(TAG, String.format("enterSpringLoadedDragMode [mState=%s", mState.name()));
Winson Chungb745afb2015-03-02 11:51:23 -08003532 if (mState == State.WORKSPACE || mState == State.APPS_SPRING_LOADED ||
3533 mState == State.WIDGETS_SPRING_LOADED) {
3534 return;
Winson Chungb26f3d62011-06-02 10:49:29 -07003535 }
Winson Chungb745afb2015-03-02 11:51:23 -08003536
Winson Chung006ee262015-08-03 14:40:11 -07003537 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3538 Workspace.State.SPRING_LOADED,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003539 WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, true /* animated */,
3540 null /* onCompleteRunnable */);
Winson Chungb745afb2015-03-02 11:51:23 -08003541 mState = isAppsViewVisible() ? State.APPS_SPRING_LOADED : State.WIDGETS_SPRING_LOADED;
Michael Jurkad3ef3062010-11-23 16:23:58 -08003542 }
Adam Cohen7777d962011-08-18 18:58:38 -07003543
Hyunyoung Song3f471442015-04-08 19:01:34 -07003544 public void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, int delay,
Adam Cohened66b2b2012-01-23 17:28:51 -08003545 final Runnable onCompleteRunnable) {
Winson Chungb745afb2015-03-02 11:51:23 -08003546 if (mState != State.APPS_SPRING_LOADED && mState != State.WIDGETS_SPRING_LOADED) return;
Winson Chung09bfc452011-09-09 11:30:20 -07003547
Winson Chunge7a03942011-08-05 15:05:12 -07003548 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07003549 @Override
3550 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003551 if (successfulDrop) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003552 // TODO(hyunyoungs): verify if this hack is still needed, if not, delete.
3553 //
Michael Jurka7bdb25a2011-08-03 15:16:44 -07003554 // Before we show workspace, hide all apps again because
3555 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
3556 // clean up our state transition functions
Hyunyoung Song3f471442015-04-08 19:01:34 -07003557 mWidgetsView.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003558 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07003559 } else {
3560 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003561 }
Winson Chung557d6ed2011-07-08 15:34:52 -07003562 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07003563 }, delay);
Winson Chung557d6ed2011-07-08 15:34:52 -07003564 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003565
Michael Jurkad3ef3062010-11-23 16:23:58 -08003566 void exitSpringLoadedDragMode() {
Winson Chungb745afb2015-03-02 11:51:23 -08003567 if (mState == State.APPS_SPRING_LOADED) {
Winson Chung4ac30062015-05-08 17:34:17 -07003568 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07003569 false /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -08003570 } else if (mState == State.WIDGETS_SPRING_LOADED) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003571 showWidgetsView(true, false);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003572 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003573 }
3574
Winson Chung4ac30062015-05-08 17:34:17 -07003575 /**
3576 * Updates the set of predicted apps if it hasn't been updated since the last time Launcher was
3577 * resumed.
3578 */
3579 private void tryAndUpdatePredictedApps() {
3580 if (mLauncherCallbacks != null) {
Winson Chung6b1c73f2015-06-18 11:38:42 -07003581 List<ComponentKey> apps = mLauncherCallbacks.getPredictedApps();
Winson Chung91c05952015-06-25 12:17:30 -07003582 if (apps != null) {
Winson Chung4ac30062015-05-08 17:34:17 -07003583 mAppsView.setPredictedApps(apps);
3584 }
3585 }
3586 }
3587
Michael Jurkab3e22d92011-10-31 15:58:33 -07003588 void lockAllApps() {
3589 // TODO
3590 }
3591
3592 void unlockAllApps() {
3593 // TODO
3594 }
3595
Sunny Goyal594d76d2014-11-06 10:12:54 -08003596 protected void disableVoiceButtonProxy(boolean disable) {
3597 // NO-OP
Winson Chungbb185bd2011-11-21 12:31:42 -08003598 }
3599
Winsonf768d932015-09-25 16:12:35 -07003600 public boolean launcherCallbacksProvidesSearch() {
3601 return (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch());
3602 }
3603
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003604 public View getOrCreateQsbBar() {
Winsonf768d932015-09-25 16:12:35 -07003605 if (launcherCallbacksProvidesSearch()) {
Adam Cohenc2d6e892014-10-16 09:49:24 -07003606 return mLauncherCallbacks.getQsbBar();
Adam Cohen9211d422014-10-07 18:14:53 -07003607 }
3608
Adam Cohen24ce0b32014-01-14 16:18:14 -08003609 if (mQsb == null) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003610 AppWidgetProviderInfo searchProvider = Utilities.getSearchWidgetProvider(this);
3611 if (searchProvider == null) {
3612 return null;
3613 }
3614
3615 Bundle opts = new Bundle();
3616 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_HOST_CATEGORY,
Adam Coheneb8e2822015-02-20 16:38:48 +00003617 AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003618
Tony Wickham3a3517f2015-10-06 11:27:04 -07003619 // Determine the min and max dimensions of the widget.
3620 LauncherAppState app = LauncherAppState.getInstance();
3621 DeviceProfile portraitProfile = app.getInvariantDeviceProfile().portraitProfile;
3622 DeviceProfile landscapeProfile = app.getInvariantDeviceProfile().landscapeProfile;
3623 float density = getResources().getDisplayMetrics().density;
Tony Wickhama3c74d12015-10-23 11:43:47 -07003624 Point searchDimens = portraitProfile.getSearchBarDimensForWidgetOpts(getResources());
3625 int maxHeight = (int) (searchDimens.y / density);
Tony Wickham3a3517f2015-10-06 11:27:04 -07003626 int minHeight = maxHeight;
Tony Wickhama3c74d12015-10-23 11:43:47 -07003627 int maxWidth = (int) (searchDimens.x / density);
Tony Wickham3a3517f2015-10-06 11:27:04 -07003628 int minWidth = maxWidth;
3629 if (!landscapeProfile.isVerticalBarLayout()) {
Tony Wickhama3c74d12015-10-23 11:43:47 -07003630 searchDimens = landscapeProfile.getSearchBarDimensForWidgetOpts(getResources());
3631 maxHeight = (int) Math.max(maxHeight, searchDimens.y / density);
3632 minHeight = (int) Math.min(minHeight, searchDimens.y / density);
3633 maxWidth = (int) Math.max(maxWidth, searchDimens.x / density);
3634 minWidth = (int) Math.min(minWidth, searchDimens.x / density);
Tony Wickham3a3517f2015-10-06 11:27:04 -07003635 }
3636 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_MAX_HEIGHT, maxHeight);
3637 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_MIN_HEIGHT, minHeight);
3638 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_MAX_WIDTH, maxWidth);
3639 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_MIN_WIDTH, minWidth);
Tony Wickhameef44322015-10-20 13:24:36 -07003640 if (LOGD) {
3641 Log.d(TAG, "QSB widget options: maxHeight=" + maxHeight + " minHeight=" + minHeight
3642 + " maxWidth=" + maxWidth + " minWidth=" + minWidth);
3643 }
Tony Wickham3a3517f2015-10-06 11:27:04 -07003644
Tony Wickham775455c2015-10-16 09:49:32 -07003645 if (mLauncherCallbacks != null) {
3646 opts.putAll(mLauncherCallbacks.getAdditionalSearchWidgetOptions());
3647 }
3648
Sunny Goyalf7258242015-10-19 16:59:07 -07003649 int widgetId = mSharedPrefs.getInt(QSB_WIDGET_ID, -1);
Sunny Goyal416541c2014-11-14 11:59:57 -08003650 AppWidgetProviderInfo widgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003651 if (!searchProvider.provider.flattenToString().equals(
Sunny Goyalf7258242015-10-19 16:59:07 -07003652 mSharedPrefs.getString(QSB_WIDGET_PROVIDER, null))
Sunny Goyal416541c2014-11-14 11:59:57 -08003653 || (widgetInfo == null)
3654 || !widgetInfo.provider.equals(searchProvider.provider)) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003655 // A valid widget is not already bound.
3656 if (widgetId > -1) {
3657 mAppWidgetHost.deleteAppWidgetId(widgetId);
3658 widgetId = -1;
3659 }
3660
3661 // Try to bind a new widget
3662 widgetId = mAppWidgetHost.allocateAppWidgetId();
3663
3664 if (!AppWidgetManagerCompat.getInstance(this)
3665 .bindAppWidgetIdIfAllowed(widgetId, searchProvider, opts)) {
3666 mAppWidgetHost.deleteAppWidgetId(widgetId);
3667 widgetId = -1;
3668 }
3669
Sunny Goyalf7258242015-10-19 16:59:07 -07003670 mSharedPrefs.edit()
Sunny Goyal594d76d2014-11-06 10:12:54 -08003671 .putInt(QSB_WIDGET_ID, widgetId)
3672 .putString(QSB_WIDGET_PROVIDER, searchProvider.provider.flattenToString())
3673 .commit();
3674 }
3675
Sunny Goyal8d595092015-07-06 12:22:14 -07003676 mAppWidgetHost.setQsbWidgetId(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003677 if (widgetId != -1) {
3678 mQsb = mAppWidgetHost.createView(this, widgetId, searchProvider);
Sunny Goyalebfae6e2015-08-27 15:30:25 -07003679 mQsb.setId(R.id.qsb_widget);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003680 mQsb.updateAppWidgetOptions(opts);
3681 mQsb.setPadding(0, 0, 0, 0);
3682 mSearchDropTargetBar.addView(mQsb);
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003683 mSearchDropTargetBar.setQsbSearchBar(mQsb);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003684 }
Cristina Stancu476493b2013-08-07 17:20:14 +01003685 }
Adam Cohen24ce0b32014-01-14 16:18:14 -08003686 return mQsb;
Cristina Stancu476493b2013-08-07 17:20:14 +01003687 }
3688
Sunny Goyal22235bc2015-04-03 09:23:43 -07003689 private void reinflateQSBIfNecessary() {
3690 if (mQsb instanceof LauncherAppWidgetHostView &&
3691 ((LauncherAppWidgetHostView) mQsb).isReinflateRequired()) {
3692 mSearchDropTargetBar.removeView(mQsb);
3693 mQsb = null;
3694 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
3695 }
3696 }
3697
Michael Jurkad7c28052012-04-27 15:43:36 -07003698 @Override
3699 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07003700 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07003701 final List<CharSequence> text = event.getText();
3702 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07003703 // Populate event with a fake title based on the current state.
Winson Chungb745afb2015-03-02 11:51:23 -08003704 if (mState == State.APPS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003705 text.add(getString(R.string.all_apps_button_label));
Winson Chungb745afb2015-03-02 11:51:23 -08003706 } else if (mState == State.WIDGETS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003707 text.add(getString(R.string.widget_button_text));
Hyunyoung Song166e6482015-06-25 21:06:07 -07003708 } else if (mWorkspace != null) {
3709 text.add(mWorkspace.getCurrentPageDescription());
alanv1d4fde62012-10-17 13:15:47 -07003710 } else {
3711 text.add(getString(R.string.all_apps_home_button_label));
3712 }
Michael Jurkad7c28052012-04-27 15:43:36 -07003713 return result;
3714 }
3715
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003716 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003717 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003718 */
Adam Cohen091440a2015-03-18 14:16:05 -07003719 @Thunk class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003720 @Override
3721 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003722 closeSystemDialogs();
3723 }
3724 }
3725
3726 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07003727 * If the activity is currently paused, signal that we need to run the passed Runnable
3728 * in onResume.
3729 *
3730 * This needs to be called from incoming places where resources might have been loaded
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003731 * while the activity is paused. That is because the Configuration (e.g., rotation) might be
3732 * wrong when we're not running, and if the activity comes back to what the configuration was
3733 * when we were paused, activity is not restarted.
Michael Jurka7607c2f2013-04-03 14:33:19 -07003734 *
3735 * Implementation of the method from LauncherModel.Callbacks.
3736 *
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003737 * @return {@code true} if we are currently paused. The caller might be able to skip some work
Michael Jurka7607c2f2013-04-03 14:33:19 -07003738 */
Rahul Chaturvedi799aa042015-06-01 21:26:41 -04003739 @Thunk boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003740 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003741 if (LOGD) Log.d(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02003742 if (deletePreviousRunnables) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07003743 while (mBindOnResumeCallbacks.remove(run)) {
Michael Jurkac402cd92013-05-20 15:49:32 +02003744 }
3745 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07003746 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07003747 return true;
3748 } else {
3749 return false;
3750 }
3751 }
3752
Michael Jurkac402cd92013-05-20 15:49:32 +02003753 private boolean waitUntilResume(Runnable run) {
3754 return waitUntilResume(run, false);
3755 }
3756
Michael Jurka1e2f4652013-07-08 18:03:46 -07003757 public void addOnResumeCallback(Runnable run) {
Michael Jurka54554252013-08-01 12:52:23 +02003758 mOnResumeCallbacks.add(run);
Michael Jurka1e2f4652013-07-08 18:03:46 -07003759 }
3760
Michael Jurka7607c2f2013-04-03 14:33:19 -07003761 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003762 * If the activity is currently paused, signal that we need to re-run the loader
3763 * in onResume.
3764 *
3765 * This needs to be called from incoming places where resources might have been loaded
3766 * while we are paused. That is becaues the Configuration might be wrong
3767 * when we're not running, and if it comes back to what it was when we
3768 * were paused, we are not restarted.
3769 *
3770 * Implementation of the method from LauncherModel.Callbacks.
3771 *
3772 * @return true if we are currently paused. The caller might be able to
3773 * skip some work in that case since we will come back again.
3774 */
3775 public boolean setLoadOnResume() {
3776 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003777 if (LOGD) Log.d(TAG, "setLoadOnResume");
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003778 mOnResumeNeedsLoad = true;
3779 return true;
3780 } else {
3781 return false;
3782 }
3783 }
3784
3785 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003786 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003787 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003788 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003789 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003790 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003791 } else {
3792 return SCREEN_COUNT / 2;
3793 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003794 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003795
Joe Onorato9c1289c2009-08-17 11:03:03 -04003796 /**
3797 * Refreshes the shortcuts shown on the workspace.
3798 *
3799 * Implementation of the method from LauncherModel.Callbacks.
3800 */
3801 public void startBinding() {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07003802 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08003803
Michael Jurka7607c2f2013-04-03 14:33:19 -07003804 // If we're starting binding all over again, clear any bind calls we'd postponed in
3805 // the past (see waitUntilResume) -- we don't need them since we're starting binding
3806 // from scratch again
Michael Jurka1e2f4652013-07-08 18:03:46 -07003807 mBindOnResumeCallbacks.clear();
Adam Cohendf035382011-04-11 17:22:04 -07003808
Winson Chungd64d1762013-08-20 14:37:16 -07003809 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07003810 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07003811 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07003812
Michael Jurka05bf644e2011-11-30 20:28:53 -08003813 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003814 if (mHotseat != null) {
3815 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003816 }
3817 }
3818
Adam Cohendcd297f2013-06-18 13:13:40 -07003819 @Override
3820 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Winson Chung64359a52013-07-08 17:17:08 -07003821 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07003822
Adam Cohen5084cba2013-09-03 12:01:16 -07003823 // If there are no screens, we need to have an empty screen
3824 if (orderedScreenIds.size() == 0) {
3825 mWorkspace.addExtraEmptyScreen();
3826 }
Winson Chung0e6a7132013-08-23 12:55:10 -07003827
3828 // Create the custom content page (this call updates mDefaultScreen which calls
Dave Hawkeya8881582013-09-17 15:55:33 -06003829 // setCurrentPage() so ensure that all pages are added before calling this).
Derek Prothrodadd9842014-01-17 13:43:50 -05003830 if (hasCustomContentToLeft()) {
3831 mWorkspace.createCustomContentContainer();
3832 populateCustomContentContainer();
Winson Chung0e6a7132013-08-23 12:55:10 -07003833 }
Winson Chung64359a52013-07-08 17:17:08 -07003834 }
3835
3836 @Override
3837 public void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Adam Cohendcd297f2013-06-18 13:13:40 -07003838 int count = orderedScreenIds.size();
3839 for (int i = 0; i < count; i++) {
Adam Cohen89bddfa2013-08-20 11:57:13 -07003840 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(orderedScreenIds.get(i));
Adam Cohendcd297f2013-06-18 13:13:40 -07003841 }
Adam Cohendcd297f2013-06-18 13:13:40 -07003842 }
3843
Winson Chungd64d1762013-08-20 14:37:16 -07003844 public void bindAppsAdded(final ArrayList<Long> newScreens,
3845 final ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -07003846 final ArrayList<ItemInfo> addAnimated,
3847 final ArrayList<AppInfo> addedApps) {
Winson Chungd64d1762013-08-20 14:37:16 -07003848 Runnable r = new Runnable() {
3849 public void run() {
Winson Chungc58497e2013-09-03 17:48:37 -07003850 bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps);
Winson Chungd64d1762013-08-20 14:37:16 -07003851 }
3852 };
3853 if (waitUntilResume(r)) {
3854 return;
3855 }
3856
Winson Chungd64d1762013-08-20 14:37:16 -07003857 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08003858 if (newScreens != null) {
3859 bindAddScreens(newScreens);
3860 }
Winson Chungd64d1762013-08-20 14:37:16 -07003861
3862 // We add the items without animation on non-visible pages, and with
3863 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08003864 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003865 bindItems(addNotAnimated, 0,
3866 addNotAnimated.size(), false);
3867 }
Adam Cohen76a47a12014-02-05 11:47:43 -08003868 if (addAnimated != null && !addAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003869 bindItems(addAnimated, 0,
3870 addAnimated.size(), true);
3871 }
Winson Chungc58497e2013-09-03 17:48:37 -07003872
Winson Chung87412982013-10-03 18:34:14 -07003873 // Remove the extra empty screen
Adam Cohen689ff162014-05-08 17:27:56 -07003874 mWorkspace.removeExtraEmptyScreen(false, false);
Winson Chung87412982013-10-03 18:34:14 -07003875
Winson Chungb745afb2015-03-02 11:51:23 -08003876 if (addedApps != null && mAppsView != null) {
3877 mAppsView.addApps(addedApps);
Winson Chungc58497e2013-09-03 17:48:37 -07003878 }
Winson Chungd64d1762013-08-20 14:37:16 -07003879 }
3880
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003881 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003882 * Bind the items start-end from the list.
3883 *
3884 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003885 */
Tony Wickham0bb211a2015-10-02 16:22:08 -07003886 @Override
Winson Chung64359a52013-07-08 17:17:08 -07003887 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end,
3888 final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07003889 Runnable r = new Runnable() {
3890 public void run() {
3891 bindItems(shortcuts, start, end, forceAnimateIcons);
3892 }
3893 };
3894 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003895 return;
3896 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003897
Winson Chungf0c6ae02012-03-21 16:10:31 -07003898 // Get the list of added shortcuts and intersect them with the set of shortcuts here
Winson Chung64359a52013-07-08 17:17:08 -07003899 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
3900 final Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chung997a9232013-07-24 15:33:46 -07003901 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07003902 Workspace workspace = mWorkspace;
Winson Chung997a9232013-07-24 15:33:46 -07003903 long newShortcutsScreenId = -1;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003904 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003905 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003906
3907 // Short circuit if we are loading dock items for a configuration which has no dock
3908 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3909 mHotseat == null) {
3910 continue;
3911 }
3912
Sunny Goyal639e9062015-08-19 19:17:06 -07003913 final View view;
Joe Onorato9c1289c2009-08-17 11:03:03 -04003914 switch (item.itemType) {
3915 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3916 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07003917 ShortcutInfo info = (ShortcutInfo) item;
Sunny Goyal639e9062015-08-19 19:17:06 -07003918 view = createShortcut(info);
Adam Cohendcd297f2013-06-18 13:13:40 -07003919
Winson Chung64359a52013-07-08 17:17:08 -07003920 /*
3921 * TODO: FIX collision case
3922 */
Winson Chungce376632013-07-11 16:12:41 -07003923 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
3924 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
3925 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07003926 View v = cl.getChildAt(item.cellX, item.cellY);
3927 Object tag = v.getTag();
3928 String desc = "Collision while binding workspace item: " + item
3929 + ". Collides with " + tag;
3930 if (LauncherAppState.isDogfoodBuild()) {
3931 throw (new RuntimeException(desc));
3932 } else {
3933 Log.d(TAG, desc);
3934 }
Winson Chungce376632013-07-11 16:12:41 -07003935 }
Winson Chung64359a52013-07-08 17:17:08 -07003936 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003937 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003938 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Sunny Goyal639e9062015-08-19 19:17:06 -07003939 view = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003940 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003941 (FolderInfo) item, mIconCache);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003942 break;
Winson Chungc763c4e2013-07-19 13:49:06 -07003943 default:
3944 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04003945 }
Sunny Goyal639e9062015-08-19 19:17:06 -07003946
3947 workspace.addInScreenFromBind(view, item.container, item.screenId, item.cellX,
3948 item.cellY, 1, 1);
3949 if (animateIcons) {
3950 // Animate all the applications up now
3951 view.setAlpha(0f);
3952 view.setScaleX(0f);
3953 view.setScaleY(0f);
3954 bounceAnims.add(createNewAppBounceAnimation(view, i));
3955 newShortcutsScreenId = item.screenId;
3956 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003957 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003958
Winson Chung997a9232013-07-24 15:33:46 -07003959 if (animateIcons) {
3960 // Animate to the correct page
3961 if (newShortcutsScreenId > -1) {
3962 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Winson Chung94d67682013-09-25 16:29:40 -07003963 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId);
Winson Chungb2323832013-10-03 15:22:09 -07003964 final Runnable startBounceAnimRunnable = new Runnable() {
3965 public void run() {
3966 anim.playTogether(bounceAnims);
3967 anim.start();
3968 }
3969 };
Winson Chung997a9232013-07-24 15:33:46 -07003970 if (newShortcutsScreenId != currentScreenId) {
Winson Chung94d67682013-09-25 16:29:40 -07003971 // We post the animation slightly delayed to prevent slowdowns
3972 // when we are loading right after we return to launcher.
3973 mWorkspace.postDelayed(new Runnable() {
3974 public void run() {
Ian Parkinson94449152014-01-21 13:09:59 +00003975 if (mWorkspace != null) {
3976 mWorkspace.snapToPage(newScreenIndex);
3977 mWorkspace.postDelayed(startBounceAnimRunnable,
3978 NEW_APPS_ANIMATION_DELAY);
3979 }
Winson Chung94d67682013-09-25 16:29:40 -07003980 }
3981 }, NEW_APPS_PAGE_MOVE_DELAY);
Winson Chungb2323832013-10-03 15:22:09 -07003982 } else {
3983 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07003984 }
3985 }
Winson Chung64359a52013-07-08 17:17:08 -07003986 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003987 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003988 }
3989
Joe Onorato9c1289c2009-08-17 11:03:03 -04003990 /**
3991 * Implementation of the method from LauncherModel.Callbacks.
3992 */
Sunny Goyale2df0622015-04-24 11:27:00 -07003993 public void bindFolders(final LongArrayMap<FolderInfo> folders) {
Winson Chungd64d1762013-08-20 14:37:16 -07003994 Runnable r = new Runnable() {
3995 public void run() {
3996 bindFolders(folders);
3997 }
3998 };
3999 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004000 return;
4001 }
Sunny Goyale2df0622015-04-24 11:27:00 -07004002 sFolders = folders.clone();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004003 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004004
4005 /**
4006 * Add the views for a widget to the workspace.
4007 *
4008 * Implementation of the method from LauncherModel.Callbacks.
4009 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07004010 public void bindAppWidget(final LauncherAppWidgetInfo item) {
Winson Chungd64d1762013-08-20 14:37:16 -07004011 Runnable r = new Runnable() {
4012 public void run() {
4013 bindAppWidget(item);
4014 }
4015 };
4016 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004017 return;
4018 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07004019
Daniel Sandler843e8602010-06-07 14:59:01 -04004020 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
4021 if (DEBUG_WIDGETS) {
4022 Log.d(TAG, "bindAppWidget: " + item);
4023 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004024 final Workspace workspace = mWorkspace;
4025
Adam Cohen59400422014-03-05 18:07:04 -08004026 LauncherAppWidgetProviderInfo appWidgetInfo =
Robin Lee26ace122015-03-16 19:41:43 +00004027 LauncherModel.getProviderInfo(this, item.providerName, item.user);
Adam Cohen59400422014-03-05 18:07:04 -08004028
Sunny Goyal9b4b0812014-10-08 10:47:28 -07004029 if (!mIsSafeModeEnabled
4030 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY) == 0)
Sunny Goyal84b4adc2015-08-12 15:12:16 -07004031 && (item.restoreStatus != LauncherAppWidgetInfo.RESTORE_COMPLETED)) {
4032
Sunny Goyalff572272014-07-23 13:58:07 -07004033 if (appWidgetInfo == null) {
4034 if (DEBUG_WIDGETS) {
4035 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
4036 + " belongs to component " + item.providerName
4037 + ", as the povider is null");
4038 }
4039 LauncherModel.deleteItemFromDatabase(this, item);
4040 return;
4041 }
Sunny Goyalff572272014-07-23 13:58:07 -07004042
Sunny Goyal84b4adc2015-08-12 15:12:16 -07004043 // If we do not have a valid id, try to bind an id.
4044 if ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_ID_NOT_VALID) != 0) {
4045 // Note: This assumes that the id remap broadcast is received before this step.
4046 // If that is not the case, the id remap will be ignored and user may see the
4047 // click to setup view.
4048 PendingAddWidgetInfo pendingInfo = new PendingAddWidgetInfo(this, appWidgetInfo, null);
4049 pendingInfo.spanX = item.spanX;
4050 pendingInfo.spanY = item.spanY;
4051 pendingInfo.minSpanX = item.minSpanX;
4052 pendingInfo.minSpanY = item.minSpanY;
4053 Bundle options = null;
4054 WidgetHostViewLoader.getDefaultOptionsForWidget(this, pendingInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07004055
Sunny Goyal84b4adc2015-08-12 15:12:16 -07004056 int newWidgetId = mAppWidgetHost.allocateAppWidgetId();
4057 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
4058 newWidgetId, appWidgetInfo, options);
4059
4060 // TODO consider showing a permission dialog when the widget is clicked.
4061 if (!success) {
4062 mAppWidgetHost.deleteAppWidgetId(newWidgetId);
4063 if (DEBUG_WIDGETS) {
4064 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
4065 + " belongs to component " + item.providerName
4066 + ", as the launcher is unable to bing a new widget id");
4067 }
4068 LauncherModel.deleteItemFromDatabase(this, item);
4069 return;
Sunny Goyalff572272014-07-23 13:58:07 -07004070 }
Sunny Goyal84b4adc2015-08-12 15:12:16 -07004071
4072 item.appWidgetId = newWidgetId;
4073
4074 // If the widget has a configure activity, it is still needs to set it up, otherwise
4075 // the widget is ready to go.
4076 item.restoreStatus = (appWidgetInfo.configure == null)
4077 ? LauncherAppWidgetInfo.RESTORE_COMPLETED
4078 : LauncherAppWidgetInfo.FLAG_UI_NOT_READY;
4079
4080 LauncherModel.updateItemInDatabase(this, item);
4081 } else if (((item.restoreStatus & LauncherAppWidgetInfo.FLAG_UI_NOT_READY) != 0)
4082 && (appWidgetInfo.configure == null)) {
4083 // If the ID is already valid, verify if we need to configure or not.
4084 item.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
4085 LauncherModel.updateItemInDatabase(this, item);
Sunny Goyalff572272014-07-23 13:58:07 -07004086 }
Sunny Goyalff572272014-07-23 13:58:07 -07004087 }
4088
Sunny Goyal9b4b0812014-10-08 10:47:28 -07004089 if (!mIsSafeModeEnabled && item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
Sunny Goyal651077b2014-06-30 14:15:31 -07004090 final int appWidgetId = item.appWidgetId;
Sunny Goyal651077b2014-06-30 14:15:31 -07004091 if (DEBUG_WIDGETS) {
Adam Cohen59400422014-03-05 18:07:04 -08004092 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component "
4093 + appWidgetInfo.provider);
Sunny Goyal651077b2014-06-30 14:15:31 -07004094 }
Daniel Sandler843e8602010-06-07 14:59:01 -04004095
Sunny Goyal56c73602015-09-25 12:55:01 -07004096 // Verify that we own the widget
4097 AppWidgetProviderInfo info = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
4098 if (info == null || appWidgetInfo == null ||
4099 !info.provider.equals(appWidgetInfo.provider)) {
4100 Log.e(TAG, "Removing invalid widget: id=" + item.appWidgetId);
4101 deleteWidgetInfo(item);
4102 return;
4103 }
4104
Sunny Goyal651077b2014-06-30 14:15:31 -07004105 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
Sunny Goyal233ee962015-08-03 13:05:01 -07004106 item.minSpanX = appWidgetInfo.minSpanX;
4107 item.minSpanY = appWidgetInfo.minSpanY;
Sunny Goyal651077b2014-06-30 14:15:31 -07004108 } else {
4109 appWidgetInfo = null;
Sunny Goyal9b4b0812014-10-08 10:47:28 -07004110 PendingAppWidgetHostView view = new PendingAppWidgetHostView(this, item,
4111 mIsSafeModeEnabled);
Sunny Goyal0fc1be12014-08-11 17:05:23 -07004112 view.updateIcon(mIconCache);
4113 item.hostView = view;
Sunny Goyal651077b2014-06-30 14:15:31 -07004114 item.hostView.updateAppWidget(null);
Sunny Goyalff572272014-07-23 13:58:07 -07004115 item.hostView.setOnClickListener(this);
Sunny Goyal651077b2014-06-30 14:15:31 -07004116 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004117
Sunny Goyal25c2e3e2015-10-28 23:28:21 -07004118 addAppWidgetToWorkspace(item, appWidgetInfo, false);
Joe Onorato9c1289c2009-08-17 11:03:03 -04004119 workspace.requestLayout();
4120
Daniel Sandler843e8602010-06-07 14:59:01 -04004121 if (DEBUG_WIDGETS) {
4122 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
4123 + (SystemClock.uptimeMillis()-start) + "ms");
4124 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004125 }
4126
Sunny Goyalff572272014-07-23 13:58:07 -07004127 /**
4128 * Restores a pending widget.
4129 *
4130 * @param appWidgetId The app widget id
4131 * @param cellInfo The position on screen where to create the widget.
4132 */
4133 private void completeRestoreAppWidget(final int appWidgetId) {
4134 LauncherAppWidgetHostView view = mWorkspace.getWidgetForAppWidgetId(appWidgetId);
4135 if ((view == null) || !(view instanceof PendingAppWidgetHostView)) {
4136 Log.e(TAG, "Widget update called, when the widget no longer exists.");
4137 return;
4138 }
4139
Sunny Goyal0fc1be12014-08-11 17:05:23 -07004140 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) view.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07004141 info.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
4142
4143 mWorkspace.reinflateWidgetsIfNecessary();
4144 LauncherModel.updateItemInDatabase(this, info);
4145 }
4146
Adam Cohen1462de32012-07-24 22:34:36 -07004147 public void onPageBoundSynchronously(int page) {
4148 mSynchronouslyBoundPages.add(page);
4149 }
4150
Joe Onorato9c1289c2009-08-17 11:03:03 -04004151 /**
4152 * Callback saying that there aren't any more items to bind.
4153 *
4154 * Implementation of the method from LauncherModel.Callbacks.
4155 */
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004156 public void finishBindingItems() {
Winson Chungd64d1762013-08-20 14:37:16 -07004157 Runnable r = new Runnable() {
4158 public void run() {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004159 finishBindingItems();
Winson Chungd64d1762013-08-20 14:37:16 -07004160 }
4161 };
4162 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004163 return;
4164 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004165 if (mSavedState != null) {
4166 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07004167 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004168 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004169 mSavedState = null;
4170 }
4171
Adam Cohen1462de32012-07-24 22:34:36 -07004172 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004173
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004174 setWorkspaceLoading(false);
Adam Cohen3ed316a2014-07-23 18:21:20 -07004175 sendLoadingCompleteBroadcastIfNecessary();
Adam Cohendb364c32014-05-20 14:23:40 -07004176
4177 // If we received the result of any pending adds while the loader was running (e.g. the
4178 // widget configuration forced an orientation change), process them now.
4179 if (sPendingAddItem != null) {
4180 final long screenId = completeAdd(sPendingAddItem);
4181
4182 // TODO: this moves the user to the page where the pending item was added. Ideally,
4183 // the screen would be guaranteed to exist after bind, and the page would be set through
4184 // the workspace restore process.
4185 mWorkspace.post(new Runnable() {
4186 @Override
4187 public void run() {
4188 mWorkspace.snapToScreenId(screenId);
4189 }
4190 });
4191 sPendingAddItem = null;
4192 }
4193
Sunny Goyal756adbc2015-04-16 15:20:51 -07004194 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
Adam Cohen9211d422014-10-07 18:14:53 -07004195
4196 if (mLauncherCallbacks != null) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004197 mLauncherCallbacks.finishBindingItems(false);
Adam Cohen9211d422014-10-07 18:14:53 -07004198 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004199 }
4200
Adam Cohen3ed316a2014-07-23 18:21:20 -07004201 private void sendLoadingCompleteBroadcastIfNecessary() {
4202 if (!mSharedPrefs.getBoolean(FIRST_LOAD_COMPLETE, false)) {
4203 String permission =
4204 getResources().getString(R.string.receive_first_load_broadcast_permission);
4205 Intent intent = new Intent(ACTION_FIRST_LOAD_COMPLETE);
4206 sendBroadcast(intent, permission);
4207 SharedPreferences.Editor editor = mSharedPrefs.edit();
4208 editor.putBoolean(FIRST_LOAD_COMPLETE, true);
4209 editor.apply();
4210 }
4211 }
4212
Winson Chunga0b7e862013-09-05 16:03:15 -07004213 public boolean isAllAppsButtonRank(int rank) {
4214 if (mHotseat != null) {
4215 return mHotseat.isAllAppsButtonRank(rank);
4216 }
4217 return false;
4218 }
4219
Winson Chunga2413752012-04-03 14:22:34 -07004220 private boolean canRunNewAppsAnimation() {
4221 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
Sunny Goyal639e9062015-08-19 19:17:06 -07004222 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000)
4223 && (mClings == null || !mClings.isVisible());
Winson Chunga2413752012-04-03 14:22:34 -07004224 }
4225
Winson Chungc9168342013-06-26 14:54:55 -07004226 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
4227 ValueAnimator bounceAnim = LauncherAnimUtils.ofPropertyValuesHolder(v,
4228 PropertyValuesHolder.ofFloat("alpha", 1f),
4229 PropertyValuesHolder.ofFloat("scaleX", 1f),
4230 PropertyValuesHolder.ofFloat("scaleY", 1f));
4231 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
4232 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
Sunny Goyal5a1f53b2015-05-27 10:24:24 -07004233 bounceAnim.setInterpolator(new OvershootInterpolator(BOUNCE_ANIMATION_TENSION));
Winson Chungc9168342013-06-26 14:54:55 -07004234 return bounceAnim;
4235 }
4236
Adam Cohen27772732013-11-11 14:00:56 +00004237 public boolean useVerticalBarLayout() {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07004238 return mDeviceProfile.isVerticalBarLayout();
Adam Cohen27772732013-11-11 14:00:56 +00004239 }
4240
Tony Wickham3a3517f2015-10-06 11:27:04 -07004241 /** Returns the search bar bounds in pixels. */
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004242 protected Rect getSearchBarBounds() {
Sunny Goyalc6205602015-05-21 20:46:33 -07004243 return mDeviceProfile.getSearchBarBounds(Utilities.isRtl(getResources()));
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004244 }
4245
Tony Wickham55616cd2015-09-23 14:55:17 -07004246 public int getSearchBarHeight() {
4247 if (mLauncherCallbacks != null) {
4248 return mLauncherCallbacks.getSearchBarHeight();
4249 }
4250 return LauncherCallbacks.SEARCH_BAR_HEIGHT_NORMAL;
4251 }
4252
Winson Chung88fa7412015-08-03 14:25:28 -07004253 public void bindSearchProviderChanged() {
Sunny Goyal594d76d2014-11-06 10:12:54 -08004254 if (mSearchDropTargetBar == null) {
4255 return;
Winson Chungadf0c182012-08-23 14:59:07 -07004256 }
Sunny Goyal594d76d2014-11-06 10:12:54 -08004257 if (mQsb != null) {
4258 mSearchDropTargetBar.removeView(mQsb);
4259 mQsb = null;
4260 }
Adam Cohenb0df1b02015-03-18 22:21:40 -07004261 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004262 }
4263
Amith Yamasani6d7fe502010-11-16 09:05:07 -08004264 /**
Winson Chungbb785c62015-05-05 10:05:08 -07004265 * A runnable that we can dequeue and re-enqueue when all applications are bound (to prevent
4266 * multiple calls to bind the same list.)
4267 */
4268 @Thunk ArrayList<AppInfo> mTmpAppsList;
4269 private Runnable mBindAllApplicationsRunnable = new Runnable() {
4270 public void run() {
4271 bindAllApplications(mTmpAppsList);
4272 mTmpAppsList = null;
4273 }
4274 };
4275
4276 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004277 * Add the icons for all apps.
4278 *
4279 * Implementation of the method from LauncherModel.Callbacks.
4280 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004281 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Winson Chungbb785c62015-05-05 10:05:08 -07004282 if (waitUntilResume(mBindAllApplicationsRunnable, true)) {
4283 mTmpAppsList = apps;
4284 return;
4285 }
4286
Winson Chungb745afb2015-03-02 11:51:23 -08004287 if (mAppsView != null) {
4288 mAppsView.setApps(apps);
4289 }
Adam Cohen9211d422014-10-07 18:14:53 -07004290 if (mLauncherCallbacks != null) {
4291 mLauncherCallbacks.bindAllApplications(apps);
4292 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004293 }
4294
4295 /**
4296 * A package was updated.
4297 *
4298 * Implementation of the method from LauncherModel.Callbacks.
4299 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004300 public void bindAppsUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004301 Runnable r = new Runnable() {
4302 public void run() {
4303 bindAppsUpdated(apps);
4304 }
4305 };
4306 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004307 return;
4308 }
4309
Winson Chungb745afb2015-03-02 11:51:23 -08004310 if (mAppsView != null) {
4311 mAppsView.updateApps(apps);
Winson Chungc58497e2013-09-03 17:48:37 -07004312 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004313 }
4314
Sunny Goyal4390ace2014-10-13 11:33:11 -07004315 @Override
4316 public void bindWidgetsRestored(final ArrayList<LauncherAppWidgetInfo> widgets) {
4317 Runnable r = new Runnable() {
4318 public void run() {
4319 bindWidgetsRestored(widgets);
4320 }
4321 };
4322 if (waitUntilResume(r)) {
4323 return;
4324 }
4325 mWorkspace.widgetsRestored(widgets);
4326 }
4327
Joe Onorato9c1289c2009-08-17 11:03:03 -04004328 /**
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004329 * Some shortcuts were updated in the background.
4330 *
4331 * Implementation of the method from LauncherModel.Callbacks.
4332 */
Sunny Goyal4390ace2014-10-13 11:33:11 -07004333 @Override
4334 public void bindShortcutsChanged(final ArrayList<ShortcutInfo> updated,
4335 final ArrayList<ShortcutInfo> removed, final UserHandleCompat user) {
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004336 Runnable r = new Runnable() {
4337 public void run() {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004338 bindShortcutsChanged(updated, removed, user);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004339 }
4340 };
4341 if (waitUntilResume(r)) {
4342 return;
4343 }
4344
Sunny Goyal4390ace2014-10-13 11:33:11 -07004345 if (!updated.isEmpty()) {
4346 mWorkspace.updateShortcuts(updated);
4347 }
4348
4349 if (!removed.isEmpty()) {
4350 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4351 for (ShortcutInfo si : removed) {
4352 removedComponents.add(si.getTargetComponent());
4353 }
4354 mWorkspace.removeItemsByComponentName(removedComponents, user);
4355 // Notify the drag controller
4356 mDragController.onAppsRemoved(new ArrayList<String>(), removedComponents);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004357 }
4358 }
4359
4360 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004361 * Update the state of a package, typically related to install state.
4362 *
4363 * Implementation of the method from LauncherModel.Callbacks.
4364 */
Sunny Goyale755d462014-07-22 13:48:29 -07004365 @Override
Sunny Goyal756adbc2015-04-16 15:20:51 -07004366 public void bindRestoreItemsChange(final HashSet<ItemInfo> updates) {
4367 Runnable r = new Runnable() {
4368 public void run() {
4369 bindRestoreItemsChange(updates);
4370 }
4371 };
4372 if (waitUntilResume(r)) {
4373 return;
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004374 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004375
Sunny Goyal756adbc2015-04-16 15:20:51 -07004376 mWorkspace.updateRestoreItems(updates);
Sunny Goyala22666f2014-09-18 13:25:15 -07004377 }
4378
4379 /**
Winson Chung83892cc2013-05-01 16:53:33 -07004380 * A package was uninstalled. We take both the super set of packageNames
4381 * in addition to specific applications to remove, the reason being that
4382 * this can be called when a package is updated as well. In that scenario,
4383 * we only remove specific components from the workspace, where as
4384 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004385 *
Sunny Goyal1a745e82014-10-02 15:58:31 -07004386 * @param reason if non-zero, the icons are not permanently removed, rather marked as disabled.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004387 * Implementation of the method from LauncherModel.Callbacks.
4388 */
Sunny Goyal1a745e82014-10-02 15:58:31 -07004389 @Override
Winson Chung83892cc2013-05-01 16:53:33 -07004390 public void bindComponentsRemoved(final ArrayList<String> packageNames,
Sunny Goyal1a745e82014-10-02 15:58:31 -07004391 final ArrayList<AppInfo> appInfos, final UserHandleCompat user, final int reason) {
Winson Chungd64d1762013-08-20 14:37:16 -07004392 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004393 public void run() {
Sunny Goyal1a745e82014-10-02 15:58:31 -07004394 bindComponentsRemoved(packageNames, appInfos, user, reason);
Winson Chung83892cc2013-05-01 16:53:33 -07004395 }
Winson Chungd64d1762013-08-20 14:37:16 -07004396 };
4397 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07004398 return;
4399 }
4400
Sunny Goyal1a745e82014-10-02 15:58:31 -07004401 if (reason == 0) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004402 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4403 for (AppInfo info : appInfos) {
4404 removedComponents.add(info.componentName);
4405 }
Sunny Goyal1a745e82014-10-02 15:58:31 -07004406 if (!packageNames.isEmpty()) {
4407 mWorkspace.removeItemsByPackageName(packageNames, user);
4408 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004409 if (!removedComponents.isEmpty()) {
4410 mWorkspace.removeItemsByComponentName(removedComponents, user);
Sunny Goyal1a745e82014-10-02 15:58:31 -07004411 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004412 // Notify the drag controller
4413 mDragController.onAppsRemoved(packageNames, removedComponents);
4414
Sunny Goyal1a745e82014-10-02 15:58:31 -07004415 } else {
4416 mWorkspace.disableShortcutsByPackageName(packageNames, user, reason);
Joe Onorato36115782010-06-17 13:28:48 -04004417 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07004418
Winson Chungdf95eb12013-10-16 14:57:07 -07004419 // Update AllApps
Winson Chungb745afb2015-03-02 11:51:23 -08004420 if (mAppsView != null) {
4421 mAppsView.removeApps(appInfos);
Winson Chungc58497e2013-09-03 17:48:37 -07004422 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004423 }
Joe Onoratobe386092009-11-17 17:32:16 -08004424
Michael Jurkac402cd92013-05-20 15:49:32 +02004425 private Runnable mBindPackagesUpdatedRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004426 public void run() {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004427 bindAllPackages(mWidgetsModel);
Winson Chung83892cc2013-05-01 16:53:33 -07004428 }
Michael Jurkac402cd92013-05-20 15:49:32 +02004429 };
Hyunyoung Song3f471442015-04-08 19:01:34 -07004430
Hyunyoung Song8821ca92015-05-04 16:28:20 -07004431 @Override
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004432 public void bindAllPackages(final WidgetsModel model) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004433 if (waitUntilResume(mBindPackagesUpdatedRunnable, true)) {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004434 mWidgetsModel = model;
Winson Chung83892cc2013-05-01 16:53:33 -07004435 return;
4436 }
4437
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004438 if (mWidgetsView != null && model != null) {
4439 mWidgetsView.addWidgets(model);
4440 mWidgetsModel = null;
Winson Chung785d2eb2011-04-14 16:08:02 -07004441 }
Winson Chung80baf5a2010-08-09 16:03:15 -07004442 }
4443
Winson Chung400438b2011-01-16 17:53:48 -08004444 private int mapConfigurationOriActivityInfoOri(int configOri) {
4445 final Display d = getWindowManager().getDefaultDisplay();
4446 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
4447 switch (d.getRotation()) {
4448 case Surface.ROTATION_0:
4449 case Surface.ROTATION_180:
4450 // We are currently in the same basic orientation as the natural orientation
4451 naturalOri = configOri;
4452 break;
4453 case Surface.ROTATION_90:
4454 case Surface.ROTATION_270:
4455 // We are currently in the other basic orientation to the natural orientation
4456 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
4457 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
4458 break;
4459 }
4460
4461 int[] oriMap = {
4462 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
4463 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
4464 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
4465 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
4466 };
4467 // Since the map starts at portrait, we need to offset if this device's natural orientation
4468 // is landscape.
4469 int indexOffset = 0;
4470 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
4471 indexOffset = 1;
4472 }
4473 return oriMap[(d.getRotation() + indexOffset) % 4];
4474 }
Adam Cohen446e9402011-09-15 18:21:21 -07004475
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004476 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR2)
Winson Chung4b919f82012-05-01 10:44:08 -07004477 public void lockScreenOrientation() {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004478 if (mRotationEnabled) {
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004479 if (Utilities.ATLEAST_JB_MR2) {
4480 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LOCKED);
4481 } else {
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004482 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
4483 .getConfiguration().orientation));
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004484 }
Winson Chung4b919f82012-05-01 10:44:08 -07004485 }
4486 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004487
Winson Chung4b919f82012-05-01 10:44:08 -07004488 public void unlockScreenOrientation(boolean immediate) {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004489 if (mRotationEnabled) {
Winson Chung4b919f82012-05-01 10:44:08 -07004490 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07004491 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07004492 } else {
4493 mHandler.postDelayed(new Runnable() {
4494 public void run() {
4495 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4496 }
4497 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07004498 }
Winson Chung4b919f82012-05-01 10:44:08 -07004499 }
Winson Chung400438b2011-01-16 17:53:48 -08004500 }
4501
Winson Chunge43a1e72014-01-15 10:33:02 -08004502 protected boolean isLauncherPreinstalled() {
Adam Cohen9211d422014-10-07 18:14:53 -07004503 if (mLauncherCallbacks != null) {
4504 return mLauncherCallbacks.isLauncherPreinstalled();
4505 }
Winson Chunge43a1e72014-01-15 10:33:02 -08004506 PackageManager pm = getPackageManager();
4507 try {
4508 ApplicationInfo ai = pm.getApplicationInfo(getComponentName().getPackageName(), 0);
4509 if ((ai.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
4510 return true;
4511 } else {
4512 return false;
4513 }
4514 } catch (NameNotFoundException e) {
4515 e.printStackTrace();
4516 return false;
4517 }
4518 }
4519
Adam Cohenea90f832014-05-21 15:03:34 -07004520 /**
4521 * This method indicates whether or not we should suggest default wallpaper dimensions
4522 * when our wallpaper cropper was not yet used to set a wallpaper.
4523 */
4524 protected boolean overrideWallpaperDimensions() {
Adam Cohen9211d422014-10-07 18:14:53 -07004525 if (mLauncherCallbacks != null) {
4526 return mLauncherCallbacks.overrideWallpaperDimensions();
4527 }
Adam Cohenea90f832014-05-21 15:03:34 -07004528 return true;
4529 }
4530
Adam Cohen432609a2014-03-13 17:03:22 -07004531 /**
4532 * To be overridden by subclasses to indicate that there is an activity to launch
4533 * before showing the standard launcher experience.
4534 */
4535 protected boolean hasFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004536 if (mLauncherCallbacks != null) {
4537 return mLauncherCallbacks.hasFirstRunActivity();
4538 }
Adam Cohen432609a2014-03-13 17:03:22 -07004539 return false;
4540 }
4541
4542 /**
4543 * To be overridden by subclasses to launch any first run activity
4544 */
4545 protected Intent getFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004546 if (mLauncherCallbacks != null) {
4547 return mLauncherCallbacks.getFirstRunActivity();
4548 }
Adam Cohen432609a2014-03-13 17:03:22 -07004549 return null;
4550 }
4551
Winson Chunga6945242014-01-08 14:04:34 -08004552 private boolean shouldRunFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004553 return !ActivityManager.isRunningInTestHarness() &&
4554 !mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
Winson Chunga6945242014-01-08 14:04:34 -08004555 }
4556
Adam Cohen4a9423d2014-03-28 14:22:31 -07004557 protected boolean hasRunFirstRunActivity() {
4558 return mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
4559 }
4560
Adam Cohen432609a2014-03-13 17:03:22 -07004561 public boolean showFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004562 if (shouldRunFirstRunActivity() &&
4563 hasFirstRunActivity()) {
Winson Chunga6945242014-01-08 14:04:34 -08004564 Intent firstRunIntent = getFirstRunActivity();
4565 if (firstRunIntent != null) {
4566 startActivity(firstRunIntent);
4567 markFirstRunActivityShown();
Adam Cohen432609a2014-03-13 17:03:22 -07004568 return true;
Winson Chunga6945242014-01-08 14:04:34 -08004569 }
4570 }
Adam Cohen432609a2014-03-13 17:03:22 -07004571 return false;
Winson Chunga6945242014-01-08 14:04:34 -08004572 }
4573
4574 private void markFirstRunActivityShown() {
4575 SharedPreferences.Editor editor = mSharedPrefs.edit();
4576 editor.putBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, true);
4577 editor.apply();
4578 }
4579
Adam Cohen432609a2014-03-13 17:03:22 -07004580 /**
4581 * To be overridden by subclasses to indicate that there is an in-activity full-screen intro
4582 * screen that must be displayed and dismissed.
4583 */
4584 protected boolean hasDismissableIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004585 if (mLauncherCallbacks != null) {
4586 return mLauncherCallbacks.hasDismissableIntroScreen();
4587 }
Adam Cohen432609a2014-03-13 17:03:22 -07004588 return false;
4589 }
4590
4591 /**
4592 * Full screen intro screen to be shown and dismissed before the launcher can be used.
4593 */
4594 protected View getIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004595 if (mLauncherCallbacks != null) {
4596 return mLauncherCallbacks.getIntroScreen();
4597 }
Adam Cohen432609a2014-03-13 17:03:22 -07004598 return null;
4599 }
4600
4601 /**
4602 * To be overriden by subclasses to indicate whether the in-activity intro screen has been
4603 * dismissed. This method is ignored if #hasDismissableIntroScreen returns false.
4604 */
4605 private boolean shouldShowIntroScreen() {
4606 return hasDismissableIntroScreen() &&
4607 !mSharedPrefs.getBoolean(INTRO_SCREEN_DISMISSED, false);
4608 }
4609
4610 protected void showIntroScreen() {
4611 View introScreen = getIntroScreen();
4612 changeWallpaperVisiblity(false);
4613 if (introScreen != null) {
4614 mDragLayer.showOverlayView(introScreen);
4615 }
Adam Cohenc3e12c72014-10-31 16:15:36 -07004616 if (mLauncherOverlayContainer != null) {
4617 mLauncherOverlayContainer.setVisibility(View.INVISIBLE);
4618 }
Adam Cohen432609a2014-03-13 17:03:22 -07004619 }
4620
4621 public void dismissIntroScreen() {
4622 markIntroScreenDismissed();
4623 if (showFirstRunActivity()) {
4624 // We delay hiding the intro view until the first run activity is showing. This
4625 // avoids a blip.
4626 mWorkspace.postDelayed(new Runnable() {
4627 @Override
4628 public void run() {
4629 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004630 if (mLauncherOverlayContainer != null) {
4631 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4632 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004633 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004634 }
4635 }, ACTIVITY_START_DELAY);
4636 } else {
4637 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004638 if (mLauncherOverlayContainer != null) {
4639 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4640 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004641 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004642 }
4643 changeWallpaperVisiblity(true);
4644 }
4645
4646 private void markIntroScreenDismissed() {
4647 SharedPreferences.Editor editor = mSharedPrefs.edit();
4648 editor.putBoolean(INTRO_SCREEN_DISMISSED, true);
4649 editor.apply();
4650 }
4651
Adam Cohen091440a2015-03-18 14:16:05 -07004652 @Thunk void showFirstRunClings() {
Sunny Goyal88d60f12014-09-08 03:47:29 -07004653 // The two first run cling paths are mutually exclusive, if the launcher is preinstalled
4654 // on the device, then we always show the first run cling experience (or if there is no
4655 // launcher2). Otherwise, we prompt the user upon started for migration
4656 LauncherClings launcherClings = new LauncherClings(this);
4657 if (launcherClings.shouldShowFirstRunOrMigrationClings()) {
Sunny Goyal639e9062015-08-19 19:17:06 -07004658 mClings = launcherClings;
Sunny Goyal88d60f12014-09-08 03:47:29 -07004659 if (mModel.canMigrateFromOldLauncherDb(this)) {
4660 launcherClings.showMigrationCling();
4661 } else {
Sunny Goyalaf0628f2014-09-19 10:14:48 -07004662 launcherClings.showLongPressCling(true);
Sunny Goyal88d60f12014-09-08 03:47:29 -07004663 }
4664 }
4665 }
4666
Winson Chunga6945242014-01-08 14:04:34 -08004667 void showWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004668 if (mWorkspace != null) mWorkspace.setAlpha(1f);
4669 if (mHotseat != null) mHotseat.setAlpha(1f);
4670 if (mPageIndicators != null) mPageIndicators.setAlpha(1f);
Winson Chung006ee262015-08-03 14:40:11 -07004671 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4672 SearchDropTargetBar.State.SEARCH_BAR, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004673 }
4674
4675 void hideWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004676 if (mWorkspace != null) mWorkspace.setAlpha(0f);
4677 if (mHotseat != null) mHotseat.setAlpha(0f);
4678 if (mPageIndicators != null) mPageIndicators.setAlpha(0f);
Winson Chung006ee262015-08-03 14:40:11 -07004679 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4680 SearchDropTargetBar.State.INVISIBLE, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004681 }
4682
Winson Chung5ffd51d2015-06-25 11:36:50 -07004683 // TODO: These method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004684 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Mathew Inwood72fbec12013-11-19 15:45:07 +00004685 public ItemInfo createAppDragInfo(Intent appLaunchIntent) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004686 // Called from search suggestion
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004687 UserHandleCompat user = null;
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004688 if (Utilities.ATLEAST_LOLLIPOP) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004689 UserHandle userHandle = appLaunchIntent.getParcelableExtra(Intent.EXTRA_USER);
4690 if (userHandle != null) {
4691 user = UserHandleCompat.fromUser(userHandle);
4692 }
4693 }
4694 return createAppDragInfo(appLaunchIntent, user);
Winson Chung5ffd51d2015-06-25 11:36:50 -07004695 }
4696
4697 // TODO: This method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004698 public ItemInfo createAppDragInfo(Intent intent, UserHandleCompat user) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004699 if (user == null) {
4700 user = UserHandleCompat.myUserHandle();
4701 }
4702
4703 // Called from search suggestion, add the profile extra to the intent to ensure that we
4704 // can launch it correctly
Kenny Guyed131872014-04-30 03:02:21 +01004705 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004706 LauncherActivityInfoCompat activityInfo = launcherApps.resolveActivity(intent, user);
Kenny Guyed131872014-04-30 03:02:21 +01004707 if (activityInfo == null) {
Mathew Inwood72fbec12013-11-19 15:45:07 +00004708 return null;
4709 }
Winson Chung5ffd51d2015-06-25 11:36:50 -07004710 return new AppInfo(this, activityInfo, user, mIconCache);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004711 }
4712
Winson Chung5ffd51d2015-06-25 11:36:50 -07004713 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004714 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4715 Bitmap icon) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004716 return new ShortcutInfo(shortcutIntent, caption, caption, icon,
Kenny Guyed131872014-04-30 03:02:21 +01004717 UserHandleCompat.myUserHandle());
4718 }
4719
Winson Chung5ffd51d2015-06-25 11:36:50 -07004720 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004721 public void startDrag(View dragView, ItemInfo dragInfo, DragSource source) {
4722 dragView.setTag(dragInfo);
Winson Chungbabb53e2014-04-14 17:12:49 -07004723 mWorkspace.onExternalDragStartedWithItem(dragView);
4724 mWorkspace.beginExternalDragShared(dragView, source);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004725 }
4726
Winson Chung5ffd51d2015-06-25 11:36:50 -07004727 protected void moveWorkspaceToDefaultScreen() {
4728 mWorkspace.moveToDefaultScreen(false);
4729 }
4730
Anjali Koppalf5d29132014-02-28 13:33:27 -08004731 @Override
4732 public void onPageSwitch(View newPage, int newPageIndex) {
Adam Cohen9211d422014-10-07 18:14:53 -07004733 if (mLauncherCallbacks != null) {
4734 mLauncherCallbacks.onPageSwitch(newPage, newPageIndex);
4735 }
Anjali Koppalf5d29132014-02-28 13:33:27 -08004736 }
4737
Winson Chung80baf5a2010-08-09 16:03:15 -07004738 /**
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004739 * Returns a FastBitmapDrawable with the icon, accurately sized.
4740 */
4741 public FastBitmapDrawable createIconDrawable(Bitmap icon) {
4742 FastBitmapDrawable d = new FastBitmapDrawable(icon);
4743 d.setFilterBitmap(true);
4744 resizeIconDrawable(d);
4745 return d;
4746 }
4747
4748 /**
4749 * Resizes an icon drawable to the correct icon size.
4750 */
Winson5fbe0742015-09-30 15:33:00 -07004751 public Drawable resizeIconDrawable(Drawable icon) {
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004752 icon.setBounds(0, 0, mDeviceProfile.iconSizePx, mDeviceProfile.iconSizePx);
Winson5fbe0742015-09-30 15:33:00 -07004753 return icon;
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004754 }
4755
4756 /**
Joe Onoratobe386092009-11-17 17:32:16 -08004757 * Prints out out state for debugging.
4758 */
4759 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04004760 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08004761 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08004762 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
4763 Log.d(TAG, "mRestoring=" + mRestoring);
4764 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
4765 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004766 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08004767 mModel.dumpState();
Hyunyoung Song3f471442015-04-08 19:01:34 -07004768 // TODO(hyunyoungs): add mWidgetsView.dumpState(); or mWidgetsModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07004769
Daniel Sandler325dc232013-06-05 22:57:57 -04004770 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08004771 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004772
4773 @Override
4774 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
4775 super.dump(prefix, fd, writer, args);
Adam Cohen4caf2982013-08-20 18:54:31 -07004776 synchronized (sDumpLogs) {
4777 writer.println(" ");
4778 writer.println("Debug logs: ");
4779 for (int i = 0; i < sDumpLogs.size(); i++) {
4780 writer.println(" " + sDumpLogs.get(i));
4781 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004782 }
Adam Cohen9211d422014-10-07 18:14:53 -07004783 if (mLauncherCallbacks != null) {
4784 mLauncherCallbacks.dump(prefix, fd, writer, args);
4785 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004786 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004787
4788 public static void dumpDebugLogsToConsole() {
Winson Chungede41292013-09-19 16:27:36 -07004789 if (DEBUG_DUMP_LOG) {
4790 synchronized (sDumpLogs) {
4791 Log.d(TAG, "");
4792 Log.d(TAG, "*********************");
4793 Log.d(TAG, "Launcher debug logs: ");
4794 for (int i = 0; i < sDumpLogs.size(); i++) {
4795 Log.d(TAG, " " + sDumpLogs.get(i));
4796 }
4797 Log.d(TAG, "*********************");
4798 Log.d(TAG, "");
Adam Cohen4caf2982013-08-20 18:54:31 -07004799 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004800 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004801 }
4802
4803 public static void addDumpLog(String tag, String log, boolean debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004804 addDumpLog(tag, log, null, debugLog);
4805 }
4806
4807 public static void addDumpLog(String tag, String log, Exception e, boolean debugLog) {
Adam Cohen4caf2982013-08-20 18:54:31 -07004808 if (debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004809 if (e != null) {
4810 Log.d(tag, log, e);
4811 } else {
4812 Log.d(tag, log);
4813 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004814 }
Winson Chungede41292013-09-19 16:27:36 -07004815 if (DEBUG_DUMP_LOG) {
4816 sDateStamp.setTime(System.currentTimeMillis());
4817 synchronized (sDumpLogs) {
Dan Sandler295ae182013-12-10 16:05:47 -05004818 sDumpLogs.add(sDateFormat.format(sDateStamp) + ": " + tag + ", " + log
4819 + (e == null ? "" : (", Exception: " + e)));
Adam Cohen4caf2982013-08-20 18:54:31 -07004820 }
Winson Chungede41292013-09-19 16:27:36 -07004821 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004822 }
4823
Adam Cohen59400422014-03-05 18:07:04 -08004824 public static CustomAppWidget getCustomAppWidget(String name) {
4825 return sCustomAppWidgets.get(name);
4826 }
4827
4828 public static HashMap<String, CustomAppWidget> getCustomAppWidgets() {
4829 return sCustomAppWidgets;
4830 }
4831
Winson Chungede41292013-09-19 16:27:36 -07004832 public void dumpLogsToLocalData() {
4833 if (DEBUG_DUMP_LOG) {
Michael Jurka43467462013-11-14 12:03:58 +01004834 new AsyncTask<Void, Void, Void>() {
4835 public Void doInBackground(Void ... args) {
Winson Chungede41292013-09-19 16:27:36 -07004836 boolean success = false;
4837 sDateStamp.setTime(sRunStart);
4838 String FILENAME = sDateStamp.getMonth() + "-"
4839 + sDateStamp.getDay() + "_"
4840 + sDateStamp.getHours() + "-"
4841 + sDateStamp.getMinutes() + "_"
4842 + sDateStamp.getSeconds() + ".txt";
4843
4844 FileOutputStream fos = null;
4845 File outFile = null;
4846 try {
4847 outFile = new File(getFilesDir(), FILENAME);
4848 outFile.createNewFile();
4849 fos = new FileOutputStream(outFile);
4850 } catch (Exception e) {
4851 e.printStackTrace();
4852 }
4853 if (fos != null) {
4854 PrintWriter writer = new PrintWriter(fos);
4855
4856 writer.println(" ");
4857 writer.println("Debug logs: ");
4858 synchronized (sDumpLogs) {
4859 for (int i = 0; i < sDumpLogs.size(); i++) {
4860 writer.println(" " + sDumpLogs.get(i));
4861 }
4862 }
4863 writer.close();
4864 }
4865 try {
4866 if (fos != null) {
4867 fos.close();
4868 success = true;
4869 }
4870 } catch (IOException e) {
4871 e.printStackTrace();
4872 }
Michael Jurka43467462013-11-14 12:03:58 +01004873 return null;
Winson Chungede41292013-09-19 16:27:36 -07004874 }
Sunny Goyal8ac727b2015-09-23 15:38:09 -07004875 }.executeOnExecutor(Utilities.THREAD_POOL_EXECUTOR);
Adam Cohen4caf2982013-08-20 18:54:31 -07004876 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004877 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004878}
Michael Jurka2763be32011-02-24 11:19:57 -08004879
Dan Sandlerd5024042014-01-09 15:01:33 -05004880interface DebugIntents {
4881 static final String DELETE_DATABASE = "com.android.launcher3.action.DELETE_DATABASE";
4882 static final String MIGRATE_DATABASE = "com.android.launcher3.action.MIGRATE_DATABASE";
Adam Cohen8b5b05b2014-01-10 21:42:39 +00004883}