blob: c7229f0ae6bebd63ba8b9738c7541371b68df3ad [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;
Adam Cohen268c4752012-06-06 17:47:33 -070055import android.graphics.PorterDuff;
Michael Jurkaaf442092010-06-10 17:01:57 -070056import android.graphics.Rect;
Sunny Goyal4a6c6f32015-05-19 12:36:46 -070057import android.graphics.drawable.ColorDrawable;
Michael Jurkaaf442092010-06-10 17:01:57 -070058import android.graphics.drawable.Drawable;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040059import android.net.Uri;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -070060import android.os.AsyncTask;
Adam Cohen0f668f32014-09-08 19:54:17 +020061import android.os.Build;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080062import android.os.Bundle;
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +020063import android.os.Environment;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080064import android.os.Handler;
Adam Cohended9f8d2010-11-03 13:25:16 -070065import android.os.Message;
Winson Chunga2413752012-04-03 14:22:34 -070066import android.os.StrictMode;
Daniel Sandler843e8602010-06-07 14:59:01 -040067import android.os.SystemClock;
Sunny Goyala1d1bf32015-06-26 13:24:53 -070068import android.os.UserHandle;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080069import android.text.Selection;
70import android.text.SpannableStringBuilder;
Michael Jurkaa33411c2012-06-14 16:18:21 -070071import android.text.TextUtils;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080072import android.text.method.TextKeyListener;
Joe Onorato7c312c12009-08-13 21:36:53 -070073import android.util.Log;
Adam Cohen96d30a12013-07-16 18:13:21 -070074import android.view.Display;
Adam Cohen96d30a12013-07-16 18:13:21 -070075import android.view.HapticFeedbackConstants;
76import android.view.KeyEvent;
77import android.view.LayoutInflater;
78import android.view.Menu;
Adam Cohen96d30a12013-07-16 18:13:21 -070079import android.view.MotionEvent;
80import android.view.Surface;
81import android.view.View;
Adam Cohenf358a4b2013-07-23 16:47:31 -070082import android.view.View.OnClickListener;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080083import android.view.View.OnLongClickListener;
Adam Cohen96d30a12013-07-16 18:13:21 -070084import android.view.ViewGroup;
Adam Cohenc2d6e892014-10-16 09:49:24 -070085import android.view.ViewStub;
Adam Cohen96d30a12013-07-16 18:13:21 -070086import android.view.ViewTreeObserver;
Sunny Goyal651077b2014-06-30 14:15:31 -070087import android.view.Window;
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 Sandlere060b0b2013-06-27 21:47:55 -0400420 LauncherAppState.setApplicationContext(getApplicationContext());
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400421 LauncherAppState app = LauncherAppState.getInstance();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700422
Adam Cohen2e6da152015-05-06 11:42:25 -0700423 // Load configuration-specific DeviceProfile
Sunny Goyalc6205602015-05-21 20:46:33 -0700424 mDeviceProfile = getResources().getConfiguration().orientation
425 == Configuration.ORIENTATION_LANDSCAPE ?
Tony Wickham3a3517f2015-10-06 11:27:04 -0700426 app.getInvariantDeviceProfile().landscapeProfile
427 : app.getInvariantDeviceProfile().portraitProfile;
Sunny Goyalc6205602015-05-21 20:46:33 -0700428
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400429 mSharedPrefs = getSharedPreferences(LauncherAppState.getSharedPreferencesKey(),
Winson Chungf0c6ae02012-03-21 16:10:31 -0700430 Context.MODE_PRIVATE);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700431 mIsSafeModeEnabled = getPackageManager().isSafeMode();
Joe Onorato0589f0f2010-02-08 13:44:00 -0800432 mModel = app.setLauncher(this);
433 mIconCache = app.getIconCache();
Adam Cohen2e6da152015-05-06 11:42:25 -0700434
Joe Onorato41a12d22009-10-31 18:30:00 -0400435 mDragController = new DragController(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800436 mInflater = getLayoutInflater();
Winson Chung006ee262015-08-03 14:40:11 -0700437 mStateTransitionAnimation = new LauncherStateTransitionAnimation(this);
Romain Guycbb89e42009-06-08 15:52:54 -0700438
Daniel Sandlerff02d492013-08-05 02:12:05 -0400439 mStats = new Stats(this);
440
Sunny Goyalffe83f12014-08-14 17:39:34 -0700441 mAppWidgetManager = AppWidgetManagerCompat.getInstance(this);
Adam Cohen53805212013-10-01 10:39:23 -0700442
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700443 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
444 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700445
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700446 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
447 // this also ensures that any synchronous binding below doesn't re-trigger another
448 // LauncherModel load.
449 mPaused = false;
450
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800451 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200452 android.os.Debug.startMethodTracing(
453 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800454 }
455
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800456 setContentView(R.layout.launcher);
Michael Jurka7267fa52013-09-26 15:29:57 -0700457
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 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001624 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001625 launcherInfo.hostView.setVisibility(View.VISIBLE);
Adam Cohenaaa5c212012-10-05 18:14:31 -07001626 launcherInfo.notifyWidgetSizeChanged(this);
1627
Adam Cohen59400422014-03-05 18:07:04 -08001628 mWorkspace.addInScreen(launcherInfo.hostView, container, screenId, info.cellX,
1629 info.cellY, launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001630
1631 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001632 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001633 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001634 }
Romain Guycbb89e42009-06-08 15:52:54 -07001635
Adam Cohended9f8d2010-11-03 13:25:16 -07001636 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1637 @Override
1638 public void onReceive(Context context, Intent intent) {
1639 final String action = intent.getAction();
1640 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1641 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001642 mDragLayer.clearAllResizeFrames();
Winson Chungb745afb2015-03-02 11:51:23 -08001643 updateAutoAdvanceState();
Winson Chung337cd9d2011-03-30 10:39:30 -07001644
Winson Chungc100e8e2011-08-09 16:02:43 -07001645 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001646 // processing a multi-step drop
Hyunyoung Song3f471442015-04-08 19:01:34 -07001647 if (mAppsView != null && mWidgetsView != null &&
Winson Chungb745afb2015-03-02 11:51:23 -08001648 mPendingAddInfo.container == ItemInfo.NO_ID) {
Winson5c6bdbb2015-09-03 11:36:19 -07001649 if (!showWorkspace(false)) {
1650 // If we are already on the workspace, then manually reset all apps
1651 mAppsView.reset();
1652 }
Winson Chung785d2eb2011-04-14 16:08:02 -07001653 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001654 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1655 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08001656 updateAutoAdvanceState();
Dan Sandlerd5024042014-01-09 15:01:33 -05001657 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.DELETE_DATABASE.equals(action)) {
1658 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001659 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001660 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE);
1661 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.MIGRATE_DATABASE.equals(action)) {
1662 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001663 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001664 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE
1665 | LauncherModel.LOADER_FLAG_MIGRATE_SHORTCUTS);
Adam Cohended9f8d2010-11-03 13:25:16 -07001666 }
1667 }
1668 };
1669
1670 @Override
1671 public void onAttachedToWindow() {
1672 super.onAttachedToWindow();
1673
1674 // Listen for broadcasts related to user-presence
1675 final IntentFilter filter = new IntentFilter();
1676 filter.addAction(Intent.ACTION_SCREEN_OFF);
1677 filter.addAction(Intent.ACTION_USER_PRESENT);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001678 // For handling managed profiles
Dan Sandlerd5024042014-01-09 15:01:33 -05001679 if (ENABLE_DEBUG_INTENTS) {
1680 filter.addAction(DebugIntents.DELETE_DATABASE);
1681 filter.addAction(DebugIntents.MIGRATE_DATABASE);
1682 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001683 registerReceiver(mReceiver, filter);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001684 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Sunny Goyal9fc953b2015-08-17 12:24:25 -07001685 setupTransparentSystemBarsForLollipop();
Adam Cohend113e0c2010-11-11 10:48:05 -08001686 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001687 mVisible = true;
1688 }
1689
Adam Cohen0b395352014-06-09 22:54:36 +00001690 /**
Sunny Goyal9fc953b2015-08-17 12:24:25 -07001691 * Sets up transparent navigation and status bars in Lollipop.
Adam Cohen0b395352014-06-09 22:54:36 +00001692 * This method is a no-op for other platform versions.
1693 */
Sunny Goyald0091012015-01-20 15:55:34 -08001694 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Sunny Goyal9fc953b2015-08-17 12:24:25 -07001695 private void setupTransparentSystemBarsForLollipop() {
1696 if (Utilities.ATLEAST_LOLLIPOP) {
Sunny Goyald0091012015-01-20 15:55:34 -08001697 Window window = getWindow();
1698 window.getAttributes().systemUiVisibility |=
1699 (View.SYSTEM_UI_FLAG_LAYOUT_STABLE
1700 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
1701 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
1702 window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS
1703 | WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
1704 window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
1705 window.setStatusBarColor(Color.TRANSPARENT);
1706 window.setNavigationBarColor(Color.TRANSPARENT);
Adam Cohen0b395352014-06-09 22:54:36 +00001707 }
1708 }
1709
Adam Cohended9f8d2010-11-03 13:25:16 -07001710 @Override
1711 public void onDetachedFromWindow() {
1712 super.onDetachedFromWindow();
1713 mVisible = false;
1714
Adam Cohend113e0c2010-11-11 10:48:05 -08001715 if (mAttached) {
1716 unregisterReceiver(mReceiver);
1717 mAttached = false;
1718 }
Winson Chungb745afb2015-03-02 11:51:23 -08001719 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001720 }
1721
1722 public void onWindowVisibilityChanged(int visibility) {
1723 mVisible = visibility == View.VISIBLE;
Winson Chungb745afb2015-03-02 11:51:23 -08001724 updateAutoAdvanceState();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001725 // The following code used to be in onResume, but it turns out onResume is called when
1726 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1727 // is a more appropriate event to handle
1728 if (mVisible) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001729 if (!mWorkspaceLoading) {
1730 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001731 // We want to let Launcher draw itself at least once before we force it to build
1732 // layers on all the workspace pages, so that transitioning to Launcher from other
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001733 // apps is nice and speedy.
1734 observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001735 private boolean mStarted = false;
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001736 public void onDraw() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001737 if (mStarted) return;
1738 mStarted = true;
Michael Jurka6ee21d22012-02-21 18:20:27 -08001739 // We delay the layer building a bit in order to give
1740 // other message processing a time to run. In particular
1741 // this avoids a delay in hiding the IME if it was
1742 // currently shown, because doing that may involve
1743 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001744 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurkadf96add2013-04-03 16:25:02 -07001745 final ViewTreeObserver.OnDrawListener listener = this;
1746 mWorkspace.post(new Runnable() {
Tony Wickhama0628cc2015-10-14 15:23:04 -07001747 public void run() {
1748 if (mWorkspace != null &&
1749 mWorkspace.getViewTreeObserver() != null) {
1750 mWorkspace.getViewTreeObserver().
1751 removeOnDrawListener(listener);
Michael Jurkadf96add2013-04-03 16:25:02 -07001752 }
Tony Wickhama0628cc2015-10-14 15:23:04 -07001753 }
1754 });
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001755 return;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001756 }
1757 });
1758 }
1759 clearTypedText();
1760 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001761 }
1762
Adam Cohen091440a2015-03-18 14:16:05 -07001763 @Thunk void sendAdvanceMessage(long delay) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001764 mHandler.removeMessages(ADVANCE_MSG);
1765 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1766 mHandler.sendMessageDelayed(msg, delay);
1767 mAutoAdvanceSentTime = System.currentTimeMillis();
1768 }
1769
Adam Cohen091440a2015-03-18 14:16:05 -07001770 @Thunk void updateAutoAdvanceState() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001771 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1772 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1773 mAutoAdvanceRunning = autoAdvanceRunning;
1774 if (autoAdvanceRunning) {
1775 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1776 sendAdvanceMessage(delay);
1777 } else {
1778 if (!mWidgetsToAdvance.isEmpty()) {
1779 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1780 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1781 }
1782 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001783 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001784 }
1785 }
1786 }
1787
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001788 @Thunk final Handler mHandler = new Handler(new Handler.Callback() {
1789
Adam Cohended9f8d2010-11-03 13:25:16 -07001790 @Override
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001791 public boolean handleMessage(Message msg) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001792 if (msg.what == ADVANCE_MSG) {
1793 int i = 0;
1794 for (View key: mWidgetsToAdvance.keySet()) {
1795 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1796 final int delay = mAdvanceStagger * i;
1797 if (v instanceof Advanceable) {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001798 mHandler.postDelayed(new Runnable() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001799 public void run() {
1800 ((Advanceable) v).advance();
1801 }
1802 }, delay);
1803 }
1804 i++;
1805 }
1806 sendAdvanceMessage(mAdvanceInterval);
1807 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001808 return true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001809 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001810 });
Adam Cohended9f8d2010-11-03 13:25:16 -07001811
Winsonc0b52fe2015-09-09 16:38:15 -07001812 private void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001813 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001814 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1815 if (v instanceof Advanceable) {
1816 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001817 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Winson Chungb745afb2015-03-02 11:51:23 -08001818 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001819 }
1820 }
1821
Winsonc0b52fe2015-09-09 16:38:15 -07001822 private void removeWidgetToAutoAdvance(View hostView) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001823 if (mWidgetsToAdvance.containsKey(hostView)) {
1824 mWidgetsToAdvance.remove(hostView);
Winson Chungb745afb2015-03-02 11:51:23 -08001825 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001826 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001827 }
1828
Hyunyoung Song3f471442015-04-08 19:01:34 -07001829 public void showOutOfSpaceMessage(boolean isHotseatLayout) {
Winson Chung93eef082012-03-23 15:59:27 -07001830 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1831 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001832 }
1833
Winson Chunga6945242014-01-08 14:04:34 -08001834 public DragLayer getDragLayer() {
1835 return mDragLayer;
1836 }
1837
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001838 public AllAppsContainerView getAppsView() {
Winson Chungb745afb2015-03-02 11:51:23 -08001839 return mAppsView;
1840 }
1841
Hyunyoung Song3f471442015-04-08 19:01:34 -07001842 public WidgetsContainerView getWidgetsView() {
1843 return mWidgetsView;
Winson Chungb745afb2015-03-02 11:51:23 -08001844 }
1845
Winson Chunga6945242014-01-08 14:04:34 -08001846 public Workspace getWorkspace() {
1847 return mWorkspace;
1848 }
1849
1850 public Hotseat getHotseat() {
1851 return mHotseat;
1852 }
1853
Jorim Jaggid017f882014-01-14 17:08:48 -08001854 public ViewGroup getOverviewPanel() {
Winson Chunga6945242014-01-08 14:04:34 -08001855 return mOverviewPanel;
1856 }
1857
Winson Chung006ee262015-08-03 14:40:11 -07001858 public SearchDropTargetBar getSearchDropTargetBar() {
Winson Chunga6945242014-01-08 14:04:34 -08001859 return mSearchDropTargetBar;
1860 }
1861
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001862 public LauncherAppWidgetHost getAppWidgetHost() {
1863 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001864 }
Romain Guycbb89e42009-06-08 15:52:54 -07001865
Winson Chunga9abd0e2010-10-27 17:18:37 -07001866 public LauncherModel getModel() {
1867 return mModel;
1868 }
1869
Winson Chunga6945242014-01-08 14:04:34 -08001870 protected SharedPreferences getSharedPrefs() {
1871 return mSharedPrefs;
1872 }
1873
Adam Cohen2e6da152015-05-06 11:42:25 -07001874 public DeviceProfile getDeviceProfile() {
1875 return mDeviceProfile;
1876 }
1877
Bjorn Bringertc459e522013-06-07 19:36:01 +01001878 public void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001879 getWindow().closeAllPanels();
1880
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001881 // Whatever we were doing is hereby canceled.
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001882 setWaitingForResult(false);
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001883 }
1884
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001885 @Override
1886 protected void onNewIntent(Intent intent) {
Michael Jurka447bf842013-05-15 14:52:15 +02001887 long startTime = 0;
1888 if (DEBUG_RESUME_TIME) {
1889 startTime = System.currentTimeMillis();
1890 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001891 super.onNewIntent(intent);
1892
1893 // Close the menu
Winson15f8b172015-08-19 11:02:39 -07001894 Folder openFolder = mWorkspace.getOpenFolder();
1895 boolean alreadyOnHome = mHasFocus && ((intent.getFlags() &
1896 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1897 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
1898 boolean isActionMain = Intent.ACTION_MAIN.equals(intent.getAction());
1899 if (isActionMain) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001900 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001901 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001902
Adam Cohen6fecd412013-10-02 17:41:50 -07001903 if (mWorkspace == null) {
1904 // Can be cases where mWorkspace is null, this prevents a NPE
1905 return;
1906 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001907 // In all these cases, only animate if we're already on home
1908 mWorkspace.exitWidgetResizeMode();
Adam Cohen9211d422014-10-07 18:14:53 -07001909
Adam Cohen6fecd412013-10-02 17:41:50 -07001910 closeFolder();
1911 exitSpringLoadedDragMode();
1912
1913 // If we are already on home, then just animate back to the workspace,
1914 // otherwise, just wait until onResume to set the state back to Workspace
1915 if (alreadyOnHome) {
Adam Cohened307df2013-10-02 09:37:31 -07001916 showWorkspace(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001917 } else {
1918 mOnResumeState = State.WORKSPACE;
1919 }
1920
1921 final View v = getWindow().peekDecorView();
1922 if (v != null && v.getWindowToken() != null) {
Tonyc17390962015-10-25 17:39:37 -07001923 InputMethodManager imm = (InputMethodManager) getSystemService(
Adam Cohen6fecd412013-10-02 17:41:50 -07001924 INPUT_METHOD_SERVICE);
1925 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1926 }
1927
Winson Chungb745afb2015-03-02 11:51:23 -08001928 // Reset the apps view
1929 if (!alreadyOnHome && mAppsView != null) {
1930 mAppsView.scrollToTop();
1931 }
1932
Hyunyoung Song3f471442015-04-08 19:01:34 -07001933 // Reset the widgets view
1934 if (!alreadyOnHome && mWidgetsView != null) {
1935 mWidgetsView.scrollToTop();
Adam Cohen6fecd412013-10-02 17:41:50 -07001936 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001937
Adam Cohen9211d422014-10-07 18:14:53 -07001938 if (mLauncherCallbacks != null) {
1939 mLauncherCallbacks.onHomeIntent();
1940 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001941 }
Adam Cohened307df2013-10-02 09:37:31 -07001942
Adam Cohen9211d422014-10-07 18:14:53 -07001943 if (mLauncherCallbacks != null) {
1944 mLauncherCallbacks.onNewIntent(intent);
1945 }
Winson15f8b172015-08-19 11:02:39 -07001946
1947 // Defer moving to the default screen until after we callback to the LauncherCallbacks
1948 // as slow logic in the callbacks eat into the time the scroller expects for the snapToPage
1949 // animation.
1950 if (isActionMain) {
Ivan Lee667d6882015-09-03 10:16:07 -06001951 boolean moveToDefaultScreen = mLauncherCallbacks != null ?
1952 mLauncherCallbacks.shouldMoveToDefaultScreenOnHomeIntent() : true;
Winson15f8b172015-08-19 11:02:39 -07001953 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
1954 openFolder == null && moveToDefaultScreen) {
Adam Cohen4b66bf32015-09-18 12:15:19 -07001955
1956 // We use this flag to suppress noisy callbacks above custom content state
1957 // from onResume.
1958 mMoveToDefaultScreenFromNewIntent = true;
Winson15f8b172015-08-19 11:02:39 -07001959 mWorkspace.post(new Runnable() {
1960 @Override
1961 public void run() {
Tonyc17390962015-10-25 17:39:37 -07001962 if (mWorkspace != null) {
1963 mWorkspace.moveToDefaultScreen(true);
1964 }
Winson15f8b172015-08-19 11:02:39 -07001965 }
1966 });
1967 }
1968 }
1969
1970 if (DEBUG_RESUME_TIME) {
1971 Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime));
1972 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001973 }
1974
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001975 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001976 public void onRestoreInstanceState(Bundle state) {
1977 super.onRestoreInstanceState(state);
1978 for (int page: mSynchronouslyBoundPages) {
1979 mWorkspace.restoreInstanceStateForChild(page);
1980 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001981 }
1982
1983 @Override
1984 protected void onSaveInstanceState(Bundle outState) {
Adam Cohen21cd0022013-10-09 18:57:02 -07001985 if (mWorkspace.getChildCount() > 0) {
Winson Chung9b9fb962013-11-15 15:39:34 -08001986 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN,
1987 mWorkspace.getCurrentPageOffsetFromCustomContent());
Adam Cohen21cd0022013-10-09 18:57:02 -07001988 }
Adam Cohen95bb8002011-07-03 23:40:28 -07001989 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001990
Michael Jurka883f55b2010-10-21 15:47:14 -07001991 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001992 // We close any open folder since it will not be re-opened, and we need to make sure
1993 // this state is reflected.
1994 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001995
Adam Cohendcd297f2013-06-18 13:13:40 -07001996 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screenId > -1 &&
Winson Chung3d503fb2011-07-13 17:25:49 -07001997 mWaitingForResult) {
1998 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
Adam Cohendcd297f2013-06-18 13:13:40 -07001999 outState.putLong(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screenId);
Winson Chung3d503fb2011-07-13 17:25:49 -07002000 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
2001 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002002 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_X, mPendingAddInfo.spanX);
2003 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y, mPendingAddInfo.spanY);
2004 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
Adam Cohen4637b5a2013-11-04 18:21:24 -08002005 outState.putInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID, mPendingAddWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002006 }
2007
Hyunyoung Song3f471442015-04-08 19:01:34 -07002008 // Save the current widgets tray?
2009 // TODO(hyunyoungs)
Adam Cohen9211d422014-10-07 18:14:53 -07002010
2011 if (mLauncherCallbacks != null) {
2012 mLauncherCallbacks.onSaveInstanceState(outState);
2013 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002014 }
2015
2016 @Override
2017 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002018 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07002019
Winson Chunge7a03942011-08-05 15:05:12 -07002020 // Remove all pending runnables
2021 mHandler.removeMessages(ADVANCE_MSG);
2022 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07002023 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07002024
Winson Chungcd2b0142011-06-08 16:02:26 -07002025 // Stop callbacks from LauncherModel
Daniel Sandlercc8befa2013-06-11 14:45:48 -04002026 LauncherAppState app = (LauncherAppState.getInstance());
Adam Cohen1a85c582014-09-30 09:48:49 -07002027
2028 // It's possible to receive onDestroy after a new Launcher activity has
2029 // been created. In this case, don't interfere with the new Launcher.
2030 if (mModel.isCurrentCallbacks(this)) {
2031 mModel.stopLoader();
2032 app.setLauncher(null);
2033 }
Winson Chungcd2b0142011-06-08 16:02:26 -07002034
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002035 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07002036 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002037 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002038 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002039 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002040 mAppWidgetHost = null;
2041
2042 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002043
2044 TextKeyListener.getInstance().release();
2045
Joe Onorato34a0e1b2009-12-14 17:44:51 -08002046 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002047
Adam Cohenaccf3bf2012-04-30 16:07:43 -07002048 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002049 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
Adam Cohend552dd92013-11-26 12:13:11 -08002050 mWorkspace.removeAllWorkspaceScreens();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002051 mWorkspace = null;
2052 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08002053
Michael Jurka2ecf9952012-06-18 12:52:28 -07002054 LauncherAnimUtils.onDestroyActivity();
Adam Cohen9211d422014-10-07 18:14:53 -07002055
2056 if (mLauncherCallbacks != null) {
2057 mLauncherCallbacks.onDestroy();
2058 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002059 }
2060
Adam Cohena9cf38f2011-05-02 15:36:58 -07002061 public DragController getDragController() {
2062 return mDragController;
2063 }
2064
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002065 @Override
2066 public void startActivityForResult(Intent intent, int requestCode) {
Adam Cohen173f7112015-03-27 15:14:00 -07002067 onStartForResult(requestCode);
2068 super.startActivityForResult(intent, requestCode);
2069 }
2070
2071 @Override
2072 public void startIntentSenderForResult (IntentSender intent, int requestCode,
2073 Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) {
2074 onStartForResult(requestCode);
2075 try {
2076 super.startIntentSenderForResult(intent, requestCode,
2077 fillInIntent, flagsMask, flagsValues, extraFlags, options);
2078 } catch (IntentSender.SendIntentException e) {
2079 throw new ActivityNotFoundException();
2080 }
2081 }
2082
2083 private void onStartForResult(int requestCode) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002084 if (requestCode >= 0) {
2085 setWaitingForResult(true);
2086 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002087 }
2088
Winson Chung70d72102011-08-12 11:24:35 -07002089 /**
2090 * Indicates that we want global search for this activity by setting the globalSearch
2091 * argument for {@link #startSearch} to true.
2092 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002093 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07002094 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002095 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002096
Karl Rosaen138a0412009-04-23 19:00:21 -07002097 if (initialQuery == null) {
2098 // Use any text typed in the launcher as the initial query
2099 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07002100 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002101 if (appSearchData == null) {
2102 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01002103 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002104 }
Winson Chungadf0c182012-08-23 14:59:07 -07002105 Rect sourceBounds = new Rect();
2106 if (mSearchDropTargetBar != null) {
2107 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
2108 }
Romain Guycbb89e42009-06-08 15:52:54 -07002109
Ian Parkinson047036e2014-09-01 15:40:53 +01002110 boolean clearTextImmediately = startSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002111 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002112 if (clearTextImmediately) {
2113 clearTypedText();
2114 }
Winson Chungcd99cd32015-04-29 11:03:24 -07002115
2116 // We need to show the workspace after starting the search
2117 showWorkspace(true);
Bjorn Bringertc459e522013-06-07 19:36:01 +01002118 }
2119
Ian Parkinson047036e2014-09-01 15:40:53 +01002120 /**
2121 * Start a text search.
2122 *
2123 * @return {@code true} if the search will start immediately, so any further keypresses
2124 * will be handled directly by the search UI. {@code false} if {@link Launcher} should continue
2125 * to buffer keypresses.
2126 */
2127 public boolean startSearch(String initialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002128 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Adam Cohen9211d422014-10-07 18:14:53 -07002129 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
2130 return mLauncherCallbacks.startSearch(initialQuery, selectInitialQuery, appSearchData,
2131 sourceBounds);
2132 }
2133
Michael Jurkaa33411c2012-06-14 16:18:21 -07002134 startGlobalSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002135 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002136 return false;
Michael Jurkaa33411c2012-06-14 16:18:21 -07002137 }
2138
2139 /**
2140 * Starts the global search activity. This code is a copied from SearchManager
2141 */
Bjorn Bringertc459e522013-06-07 19:36:01 +01002142 private void startGlobalSearch(String initialQuery,
Michael Jurkaa33411c2012-06-14 16:18:21 -07002143 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002144 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07002145 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2146 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
2147 if (globalSearchActivity == null) {
2148 Log.w(TAG, "No global search activity found.");
2149 return;
2150 }
2151 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
2152 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2153 intent.setComponent(globalSearchActivity);
2154 // Make sure that we have a Bundle to put source in
2155 if (appSearchData == null) {
2156 appSearchData = new Bundle();
2157 } else {
2158 appSearchData = new Bundle(appSearchData);
2159 }
Adam Cohen9211d422014-10-07 18:14:53 -07002160 // Set source to package name of app that starts global search if not set already.
Michael Jurkaa33411c2012-06-14 16:18:21 -07002161 if (!appSearchData.containsKey("source")) {
2162 appSearchData.putString("source", getPackageName());
2163 }
2164 intent.putExtra(SearchManager.APP_DATA, appSearchData);
2165 if (!TextUtils.isEmpty(initialQuery)) {
2166 intent.putExtra(SearchManager.QUERY, initialQuery);
2167 }
2168 if (selectInitialQuery) {
2169 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
2170 }
2171 intent.setSourceBounds(sourceBounds);
2172 try {
2173 startActivity(intent);
2174 } catch (ActivityNotFoundException ex) {
2175 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
2176 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002177 }
2178
Winson Chungbedf9232015-07-10 12:38:30 -07002179 public void startSearchFromAllApps(View v, Intent searchIntent, String searchQuery) {
2180 if (mLauncherCallbacks != null && mLauncherCallbacks.startSearchFromAllApps(searchQuery)) {
2181 return;
2182 }
2183
2184 // If not handled, then just start the provided search intent
2185 startActivitySafely(v, searchIntent, null);
2186 }
2187
Yura4f93ec62014-02-04 14:15:21 +00002188 public boolean isOnCustomContent() {
2189 return mWorkspace.isOnOrMovingToCustomContent();
2190 }
2191
Winson Chung70d72102011-08-12 11:24:35 -07002192 @Override
Winson Chung70d72102011-08-12 11:24:35 -07002193 public boolean onPrepareOptionsMenu(Menu menu) {
2194 super.onPrepareOptionsMenu(menu);
Adam Cohen9211d422014-10-07 18:14:53 -07002195 if (mLauncherCallbacks != null) {
2196 return mLauncherCallbacks.onPrepareOptionsMenu(menu);
2197 }
Michael Jurkab94f3f82013-09-11 18:08:54 +02002198 return false;
Winson Chung70d72102011-08-12 11:24:35 -07002199 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002200
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002201 @Override
2202 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07002203 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07002204 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07002205 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002206 }
2207
Joe Onorato9c1289c2009-08-17 11:03:03 -04002208 public boolean isWorkspaceLocked() {
2209 return mWorkspaceLoading || mWaitingForResult;
2210 }
2211
Adam Cohen517a7f52014-03-01 12:12:59 -08002212 public boolean isWorkspaceLoading() {
2213 return mWorkspaceLoading;
2214 }
2215
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002216 private void setWorkspaceLoading(boolean value) {
2217 boolean isLocked = isWorkspaceLocked();
2218 mWorkspaceLoading = value;
2219 if (isLocked != isWorkspaceLocked()) {
2220 onWorkspaceLockedChanged();
2221 }
2222 }
2223
2224 private void setWaitingForResult(boolean value) {
2225 boolean isLocked = isWorkspaceLocked();
2226 mWaitingForResult = value;
2227 if (isLocked != isWorkspaceLocked()) {
2228 onWorkspaceLockedChanged();
2229 }
2230 }
2231
Adam Cohen9211d422014-10-07 18:14:53 -07002232 protected void onWorkspaceLockedChanged() {
2233 if (mLauncherCallbacks != null) {
2234 mLauncherCallbacks.onWorkspaceLockedChanged();
2235 }
2236 }
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002237
Michael Jurka0280c3b2010-09-17 15:00:07 -07002238 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07002239 mPendingAddInfo.container = ItemInfo.NO_ID;
Adam Cohendcd297f2013-06-18 13:13:40 -07002240 mPendingAddInfo.screenId = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002241 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
2242 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Sunny Goyal233ee962015-08-03 13:05:01 -07002243 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = 1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002244 mPendingAddInfo.dropPos = null;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002245 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07002246
Tony Wickhama0628cc2015-10-14 15:23:04 -07002247 void addAppWidgetFromDropImpl(final int appWidgetId, final ItemInfo info, final
Adam Cohen59400422014-03-05 18:07:04 -08002248 AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo) {
Tony Wickhama0628cc2015-10-14 15:23:04 -07002249 if (LOGD) {
2250 Log.d(TAG, "Adding widget from drop");
2251 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07002252 addAppWidgetImpl(appWidgetId, info, boundWidget, appWidgetInfo, 0);
2253 }
2254
Sunny Goyale6b63a32015-01-16 16:14:29 -08002255 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
Adam Cohen59400422014-03-05 18:07:04 -08002256 final AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo,
2257 int delay) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002258 if (appWidgetInfo.configure != null) {
2259 mPendingAddWidgetInfo = appWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -08002260 mPendingAddWidgetId = appWidgetId;
Michael Jurkaaf442092010-06-10 17:01:57 -07002261
Bjorn Bringert7984c942009-12-09 15:38:25 +00002262 // Launch over to configure widget, if needed
Sunny Goyalffe83f12014-08-14 17:39:34 -07002263 mAppWidgetManager.startConfigActivity(appWidgetInfo, appWidgetId, this,
2264 mAppWidgetHost, REQUEST_CREATE_APPWIDGET);
2265
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002266 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00002267 // Otherwise just add it
Adam Cohenad4e15c2013-10-17 16:21:35 -07002268 Runnable onComplete = new Runnable() {
2269 @Override
2270 public void run() {
2271 // Exit spring loaded mode if necessary after adding the widget
2272 exitSpringLoadedDragModeDelayed(true, EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT,
2273 null);
2274 }
2275 };
Adam Cohendcd297f2013-06-18 13:13:40 -07002276 completeAddAppWidget(appWidgetId, info.container, info.screenId, boundWidget,
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002277 appWidgetInfo);
Adam Cohen689ff162014-05-08 17:27:56 -07002278 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, delay, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002279 }
2280 }
Romain Guycbb89e42009-06-08 15:52:54 -07002281
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002282 protected void moveToCustomContentScreen(boolean animate) {
Sandeep Siddharthaf2b47f12013-09-26 19:49:27 -07002283 // Close any folders that may be open.
2284 closeFolder();
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002285 mWorkspace.moveToCustomContentScreen(animate);
2286 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002287
2288 public void addPendingItem(PendingAddItemInfo info, long container, long screenId,
2289 int[] cell, int spanX, int spanY) {
2290 switch (info.itemType) {
2291 case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET:
2292 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
2293 int span[] = new int[2];
2294 span[0] = spanX;
2295 span[1] = spanY;
2296 addAppWidgetFromDrop((PendingAddWidgetInfo) info,
2297 container, screenId, cell, span);
2298 break;
2299 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
2300 processShortcutFromDrop(info.componentName, container, screenId, cell);
2301 break;
2302 default:
2303 throw new IllegalStateException("Unknown item type: " + info.itemType);
2304 }
2305 }
2306
Adam Cohenfbba09b2011-07-18 21:43:05 -07002307 /**
2308 * Process a shortcut drop.
2309 *
2310 * @param componentName The name of the component
Adam Cohendcd297f2013-06-18 13:13:40 -07002311 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002312 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002313 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002314 private void processShortcutFromDrop(ComponentName componentName, long container, long screenId,
2315 int[] cell) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002316 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002317 mPendingAddInfo.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002318 mPendingAddInfo.screenId = screenId;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002319 mPendingAddInfo.dropPos = null;
Adam Cohenfbba09b2011-07-18 21:43:05 -07002320
2321 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002322 mPendingAddInfo.cellX = cell[0];
2323 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002324 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002325
2326 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
2327 createShortcutIntent.setComponent(componentName);
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002328 Utilities.startActivityForResultSafely(this, createShortcutIntent, REQUEST_CREATE_SHORTCUT);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002329 }
2330
Adam Cohenfbba09b2011-07-18 21:43:05 -07002331 /**
2332 * Process a widget drop.
2333 *
2334 * @param info The PendingAppWidgetInfo of the widget being added.
Adam Cohendcd297f2013-06-18 13:13:40 -07002335 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002336 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002337 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002338 private void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, long screenId,
2339 int[] cell, int[] span) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07002340 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002341 mPendingAddInfo.container = info.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002342 mPendingAddInfo.screenId = info.screenId = screenId;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002343 mPendingAddInfo.dropPos = null;
Adam Cohend41fbf52012-02-16 23:53:59 -08002344 mPendingAddInfo.minSpanX = info.minSpanX;
2345 mPendingAddInfo.minSpanY = info.minSpanY;
2346
Adam Cohenfbba09b2011-07-18 21:43:05 -07002347 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002348 mPendingAddInfo.cellX = cell[0];
2349 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002350 }
Adam Cohend41fbf52012-02-16 23:53:59 -08002351 if (span != null) {
2352 mPendingAddInfo.spanX = span[0];
2353 mPendingAddInfo.spanY = span[1];
2354 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002355
Adam Cohened66b2b2012-01-23 17:28:51 -08002356 AppWidgetHostView hostView = info.boundWidget;
2357 int appWidgetId;
2358 if (hostView != null) {
Tony Wickhama0628cc2015-10-14 15:23:04 -07002359 // In the case where we've prebound the widget, we remove it from the DragLayer
2360 if (LOGD) {
2361 Log.d(TAG, "Removing widget view from drag layer and setting boundWidget to null");
2362 }
2363 getDragLayer().removeView(hostView);
2364
Adam Cohened66b2b2012-01-23 17:28:51 -08002365 appWidgetId = hostView.getAppWidgetId();
Tony Wickhama0628cc2015-10-14 15:23:04 -07002366 addAppWidgetFromDropImpl(appWidgetId, info, hostView, info.info);
Sunny Goyal5b9ebca2015-06-01 18:37:32 -07002367
2368 // Clear the boundWidget so that it doesn't get destroyed.
2369 info.boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -08002370 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002371 // In this case, we either need to start an activity to get permission to bind
2372 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08002373 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07002374 Bundle options = info.bindOptions;
2375
Sunny Goyalffe83f12014-08-14 17:39:34 -07002376 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
2377 appWidgetId, info.info, options);
Adam Cohendd70d662012-10-04 16:53:44 -07002378 if (success) {
Tony Wickhama0628cc2015-10-14 15:23:04 -07002379 addAppWidgetFromDropImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07002380 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002381 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07002382 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
2383 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
2384 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Sunny Goyalffe83f12014-08-14 17:39:34 -07002385 mAppWidgetManager.getUser(mPendingAddWidgetInfo)
2386 .addToIntent(intent, AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE);
Adam Cohendd70d662012-10-04 16:53:44 -07002387 // TODO: we need to make sure that this accounts for the options bundle.
2388 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07002389 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
2390 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002391 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002392 }
2393
Adam Cohendcd297f2013-06-18 13:13:40 -07002394 FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07002395 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07002396 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002397 folderInfo.title = getText(R.string.folder_name);
2398
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002399 // Update the model
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07002400 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId,
2401 cellX, cellY);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002402 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002403
2404 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07002405 FolderIcon newFolder =
2406 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07002407 mWorkspace.addInScreen(newFolder, container, screenId, cellX, cellY, 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07002408 isWorkspaceLocked());
Winson Chung5f8afe62013-08-12 16:19:28 -07002409 // Force measure the new folder icon
2410 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
2411 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07002412 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002413 }
Romain Guycbb89e42009-06-08 15:52:54 -07002414
Winsonc0b52fe2015-09-09 16:38:15 -07002415 /**
Winsonfa56b3f2015-09-14 12:01:13 -07002416 * Unbinds the view for the specified item, and removes the item and all its children.
2417 *
2418 * @param v the view being removed.
Winsonfa56b3f2015-09-14 12:01:13 -07002419 * @param itemInfo the {@link ItemInfo} for this view.
2420 * @param deleteFromDb whether or not to delete this item from the db.
Winsonc0b52fe2015-09-09 16:38:15 -07002421 */
Winson2949fb52015-09-24 09:56:11 -07002422 public boolean removeItem(View v, ItemInfo itemInfo, boolean deleteFromDb) {
Winsonc0b52fe2015-09-09 16:38:15 -07002423 if (itemInfo instanceof ShortcutInfo) {
Winsonfa56b3f2015-09-14 12:01:13 -07002424 // Remove the shortcut from the folder before removing it from launcher
Winson2949fb52015-09-24 09:56:11 -07002425 FolderInfo folderInfo = sFolders.get(itemInfo.container);
2426 if (folderInfo != null) {
2427 folderInfo.remove((ShortcutInfo) itemInfo);
Winsonfa56b3f2015-09-14 12:01:13 -07002428 } else {
2429 mWorkspace.removeWorkspaceItem(v);
2430 }
Winsonc0b52fe2015-09-09 16:38:15 -07002431 if (deleteFromDb) {
2432 LauncherModel.deleteItemFromDatabase(this, itemInfo);
2433 }
2434 } else if (itemInfo instanceof FolderInfo) {
2435 final FolderInfo folderInfo = (FolderInfo) itemInfo;
2436 unbindFolder(folderInfo);
2437 mWorkspace.removeWorkspaceItem(v);
2438 if (deleteFromDb) {
2439 LauncherModel.deleteFolderAndContentsFromDatabase(this, folderInfo);
2440 }
2441 } else if (itemInfo instanceof LauncherAppWidgetInfo) {
2442 final LauncherAppWidgetInfo widgetInfo = (LauncherAppWidgetInfo) itemInfo;
Winson44818e02015-10-02 11:25:46 -07002443 mWorkspace.removeWorkspaceItem(v);
Sunny Goyal56c73602015-09-25 12:55:01 -07002444 removeWidgetToAutoAdvance(widgetInfo.hostView);
2445 widgetInfo.hostView = null;
Winsonc0b52fe2015-09-09 16:38:15 -07002446 if (deleteFromDb) {
Sunny Goyal56c73602015-09-25 12:55:01 -07002447 deleteWidgetInfo(widgetInfo);
Winsonc0b52fe2015-09-09 16:38:15 -07002448 }
Sunny Goyal56c73602015-09-25 12:55:01 -07002449
Winsonc0b52fe2015-09-09 16:38:15 -07002450 } else {
2451 return false;
2452 }
2453 return true;
2454 }
2455
2456 /**
2457 * Unbinds any launcher references to the folder.
2458 */
2459 private void unbindFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002460 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002461 }
2462
Winsonc0b52fe2015-09-09 16:38:15 -07002463 /**
Sunny Goyal56c73602015-09-25 12:55:01 -07002464 * Deletes the widget info and the widget id.
Winsonc0b52fe2015-09-09 16:38:15 -07002465 */
Sunny Goyal56c73602015-09-25 12:55:01 -07002466 private void deleteWidgetInfo(final LauncherAppWidgetInfo widgetInfo) {
Winsonc0b52fe2015-09-09 16:38:15 -07002467 final LauncherAppWidgetHost appWidgetHost = getAppWidgetHost();
Sunny Goyal56c73602015-09-25 12:55:01 -07002468 if (appWidgetHost != null && !widgetInfo.isCustomWidget() && widgetInfo.isWidgetIdValid()) {
Winsonc0b52fe2015-09-09 16:38:15 -07002469 // Deleting an app widget ID is a void call but writes to disk before returning
2470 // to the caller...
2471 new AsyncTask<Void, Void, Void>() {
2472 public Void doInBackground(Void ... args) {
2473 appWidgetHost.deleteAppWidgetId(widgetInfo.appWidgetId);
2474 return null;
2475 }
Sunny Goyalf27cb0e2015-09-23 16:12:02 -07002476 }.executeOnExecutor(Utilities.THREAD_POOL_EXECUTOR);
Winsonc0b52fe2015-09-09 16:38:15 -07002477 }
Sunny Goyal56c73602015-09-25 12:55:01 -07002478 LauncherModel.deleteItemFromDatabase(this, widgetInfo);
Winsonc0b52fe2015-09-09 16:38:15 -07002479 }
2480
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002481 @Override
2482 public boolean dispatchKeyEvent(KeyEvent event) {
2483 if (event.getAction() == KeyEvent.ACTION_DOWN) {
2484 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002485 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07002486 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08002487 case KeyEvent.KEYCODE_VOLUME_DOWN:
Sunny Goyal4bbf4192014-11-11 12:23:59 -08002488 if (Utilities.isPropertyEnabled(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08002489 dumpState();
2490 return true;
2491 }
2492 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07002493 }
2494 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2495 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07002496 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002497 return true;
2498 }
2499 }
2500
2501 return super.dispatchKeyEvent(event);
2502 }
2503
Joe Onorato88ec0992009-11-19 13:16:06 -08002504 @Override
2505 public void onBackPressed() {
Adam Cohen9211d422014-10-07 18:14:53 -07002506 if (mLauncherCallbacks != null && mLauncherCallbacks.handleBackPressed()) {
2507 return;
2508 }
2509
Sunny Goyal45478022015-06-08 16:52:41 -07002510 if (mDragController.isDragging()) {
2511 mDragController.cancelDrag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08002512 return;
2513 }
2514
Winson Chungb745afb2015-03-02 11:51:23 -08002515 if (isAppsViewVisible()) {
2516 showWorkspace(true);
2517 } else if (isWidgetsViewVisible()) {
2518 showOverviewMode(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002519 } else if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002520 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002521 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07002522 Folder openFolder = mWorkspace.getOpenFolder();
2523 if (openFolder.isEditingName()) {
2524 openFolder.dismissEditingName();
2525 } else {
2526 closeFolder();
2527 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002528 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08002529 mWorkspace.exitWidgetResizeMode();
2530
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002531 // Back button is a no-op here, but give at least some feedback for the button press
2532 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07002533 }
Joe Onorato88ec0992009-11-19 13:16:06 -08002534 }
2535
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002536 /**
Sunny Goyal383c5072015-06-12 21:18:53 -07002537 * Re-listen when widget host is reset.
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002538 */
Sunny Goyal383c5072015-06-12 21:18:53 -07002539 @Override
2540 public void onAppWidgetHostReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08002541 if (mAppWidgetHost != null) {
2542 mAppWidgetHost.startListening();
2543 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002544 }
2545
2546 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002547 * Launches the intent referred by the clicked shortcut.
2548 *
2549 * @param v The view representing the clicked shortcut.
2550 */
2551 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002552 // Make sure that rogue clicks don't get through while allapps is launching, or after the
2553 // view has detached (it's possible for this to happen if the view is removed mid touch).
2554 if (v.getWindowToken() == null) {
2555 return;
2556 }
2557
Winson Chung9b0b2fe2012-02-24 13:03:34 -08002558 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002559 return;
2560 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07002561
Adam Cohen1697b792013-09-17 19:08:21 -07002562 if (v instanceof Workspace) {
2563 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002564 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002565 }
2566 return;
2567 }
2568
2569 if (v instanceof CellLayout) {
2570 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002571 showWorkspace(mWorkspace.indexOfChild(v), true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002572 }
2573 }
2574
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002575 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002576 if (tag instanceof ShortcutInfo) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002577 onClickAppShortcut(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002578 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002579 if (v instanceof FolderIcon) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002580 onClickFolderIcon(v);
Adam Cohena9cf38f2011-05-02 15:36:58 -07002581 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002582 } else if (v == mAllAppsButton) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002583 onClickAllAppsButton(v);
Sunny Goyal508da152014-08-14 10:53:27 -07002584 } else if (tag instanceof AppInfo) {
2585 startAppShortcutOrInfoActivity(v);
Sunny Goyalff572272014-07-23 13:58:07 -07002586 } else if (tag instanceof LauncherAppWidgetInfo) {
2587 if (v instanceof PendingAppWidgetHostView) {
2588 onClickPendingWidget((PendingAppWidgetHostView) v);
2589 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002590 }
2591 }
2592
Sunny Goyal70660032015-05-14 00:07:08 -07002593 @SuppressLint("ClickableViewAccessibility")
Michael Jurka0e260592010-06-30 17:07:39 -07002594 public boolean onTouch(View v, MotionEvent event) {
Michael Jurka0e260592010-06-30 17:07:39 -07002595 return false;
2596 }
2597
Michael Jurkaaf442092010-06-10 17:01:57 -07002598 /**
Sunny Goyalff572272014-07-23 13:58:07 -07002599 * Event handler for the app widget view which has not fully restored.
2600 */
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002601 public void onClickPendingWidget(final PendingAppWidgetHostView v) {
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002602 if (mIsSafeModeEnabled) {
2603 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2604 return;
2605 }
2606
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002607 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) v.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07002608 if (v.isReadyForClickSetup()) {
Sunny Goyalff572272014-07-23 13:58:07 -07002609 int widgetId = info.appWidgetId;
2610 AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
2611 if (appWidgetInfo != null) {
Adam Cohen59400422014-03-05 18:07:04 -08002612 mPendingAddWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(
2613 this, appWidgetInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07002614 mPendingAddInfo.copyFrom(info);
2615 mPendingAddWidgetId = widgetId;
2616
Sunny Goyalffe83f12014-08-14 17:39:34 -07002617 AppWidgetManagerCompat.getInstance(this).startConfigActivity(appWidgetInfo,
2618 info.appWidgetId, this, mAppWidgetHost, REQUEST_RECONFIGURE_APPWIDGET);
Sunny Goyalff572272014-07-23 13:58:07 -07002619 }
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002620 } else if (info.installProgress < 0) {
2621 // The install has not been queued
2622 final String packageName = info.providerName.getPackageName();
2623 showBrokenAppInstallDialog(packageName,
2624 new DialogInterface.OnClickListener() {
2625 public void onClick(DialogInterface dialog, int id) {
2626 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
2627 }
2628 });
2629 } else {
2630 // Download has started.
2631 final String packageName = info.providerName.getPackageName();
2632 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
Sunny Goyalff572272014-07-23 13:58:07 -07002633 }
2634 }
2635
2636 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002637 * Event handler for the "grid" button that appears on the home screen, which
2638 * enters all apps mode.
2639 *
2640 * @param v The view that was clicked.
2641 */
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002642 protected void onClickAllAppsButton(View v) {
2643 if (LOGD) Log.d(TAG, "onClickAllAppsButton");
Winson Chung76648c52015-07-10 14:33:23 -07002644 if (!isAppsViewVisible()) {
Winson Chung4ac30062015-05-08 17:34:17 -07002645 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07002646 true /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungbedf9232015-07-10 12:38:30 -07002647
2648 if (mLauncherCallbacks != null) {
2649 mLauncherCallbacks.onClickAllAppsButton(v);
2650 }
Winson Chung76648c52015-07-10 14:33:23 -07002651 }
2652 }
2653
2654 protected void onLongClickAllAppsButton(View v) {
2655 if (LOGD) Log.d(TAG, "onLongClickAllAppsButton");
2656 if (!isAppsViewVisible()) {
2657 showAppsView(true /* animated */, false /* resetListToTop */,
2658 true /* updatePredictedApps */, true /* focusSearchBar */);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002659 }
2660 }
2661
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002662 private void showBrokenAppInstallDialog(final String packageName,
2663 DialogInterface.OnClickListener onSearchClickListener) {
Sunny Goyale03b8122014-10-08 09:55:24 -07002664 new AlertDialog.Builder(this)
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002665 .setTitle(R.string.abandoned_promises_title)
2666 .setMessage(R.string.abandoned_promise_explanation)
2667 .setPositiveButton(R.string.abandoned_search, onSearchClickListener)
2668 .setNeutralButton(R.string.abandoned_clean_this,
2669 new DialogInterface.OnClickListener() {
2670 public void onClick(DialogInterface dialog, int id) {
2671 final UserHandleCompat user = UserHandleCompat.myUserHandle();
2672 mWorkspace.removeAbandonedPromise(packageName, user);
2673 }
2674 })
2675 .create().show();
2676 return;
2677 }
2678
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002679 /**
2680 * Event handler for an app shortcut click.
2681 *
2682 * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.
2683 */
Chris Wren40c5ed32014-06-24 18:24:23 -04002684 protected void onClickAppShortcut(final View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002685 if (LOGD) Log.d(TAG, "onClickAppShortcut");
2686 Object tag = v.getTag();
2687 if (!(tag instanceof ShortcutInfo)) {
2688 throw new IllegalArgumentException("Input must be a Shortcut");
2689 }
2690
2691 // Open shortcut
2692 final ShortcutInfo shortcut = (ShortcutInfo) tag;
Sunny Goyal1a745e82014-10-02 15:58:31 -07002693
2694 if (shortcut.isDisabled != 0) {
2695 int error = R.string.activity_not_available;
2696 if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_SAFEMODE) != 0) {
2697 error = R.string.safemode_shortcut_error;
2698 }
2699 Toast.makeText(this, error, Toast.LENGTH_SHORT).show();
2700 return;
2701 }
2702
Chris Wren40c5ed32014-06-24 18:24:23 -04002703 // Check for abandoned promise
Sunny Goyal34942622014-08-29 17:20:55 -07002704 if ((v instanceof BubbleTextView)
2705 && shortcut.isPromise()
2706 && !shortcut.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE)) {
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002707 showBrokenAppInstallDialog(
Sunny Goyal34942622014-08-29 17:20:55 -07002708 shortcut.getTargetComponent().getPackageName(),
Chris Wren40c5ed32014-06-24 18:24:23 -04002709 new DialogInterface.OnClickListener() {
2710 public void onClick(DialogInterface dialog, int id) {
Sunny Goyal508da152014-08-14 10:53:27 -07002711 startAppShortcutOrInfoActivity(v);
Chris Wren40c5ed32014-06-24 18:24:23 -04002712 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002713 });
Chris Wren40c5ed32014-06-24 18:24:23 -04002714 return;
2715 }
2716
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002717 // Start activities
Sunny Goyal508da152014-08-14 10:53:27 -07002718 startAppShortcutOrInfoActivity(v);
Adam Cohen9211d422014-10-07 18:14:53 -07002719
2720 if (mLauncherCallbacks != null) {
2721 mLauncherCallbacks.onClickAppShortcut(v);
2722 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002723 }
2724
Adam Cohen091440a2015-03-18 14:16:05 -07002725 @Thunk void startAppShortcutOrInfoActivity(View v) {
Chris Wren40c5ed32014-06-24 18:24:23 -04002726 Object tag = v.getTag();
Sunny Goyal508da152014-08-14 10:53:27 -07002727 final ShortcutInfo shortcut;
2728 final Intent intent;
2729 if (tag instanceof ShortcutInfo) {
2730 shortcut = (ShortcutInfo) tag;
2731 intent = shortcut.intent;
2732 int[] pos = new int[2];
2733 v.getLocationOnScreen(pos);
2734 intent.setSourceBounds(new Rect(pos[0], pos[1],
2735 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Chris Wren40c5ed32014-06-24 18:24:23 -04002736
Sunny Goyal508da152014-08-14 10:53:27 -07002737 } else if (tag instanceof AppInfo) {
2738 shortcut = null;
2739 intent = ((AppInfo) tag).intent;
2740 } else {
2741 throw new IllegalArgumentException("Input must be a Shortcut or AppInfo");
2742 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002743
2744 boolean success = startActivitySafely(v, intent, tag);
Winson Chung8f1eff72015-05-28 17:33:40 -07002745 mStats.recordLaunch(v, intent, shortcut);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002746
2747 if (success && v instanceof BubbleTextView) {
2748 mWaitingForResume = (BubbleTextView) v;
2749 mWaitingForResume.setStayPressed(true);
2750 }
2751 }
2752
2753 /**
2754 * Event handler for a folder icon click.
2755 *
2756 * @param v The view that was clicked. Must be an instance of {@link FolderIcon}.
2757 */
2758 protected void onClickFolderIcon(View v) {
2759 if (LOGD) Log.d(TAG, "onClickFolder");
2760 if (!(v instanceof FolderIcon)){
2761 throw new IllegalArgumentException("Input must be a FolderIcon");
2762 }
2763
Sunny Goyal317698b2015-07-29 11:45:41 -07002764 // TODO(sunnygoyal): Re-evaluate this code.
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002765 FolderIcon folderIcon = (FolderIcon) v;
2766 final FolderInfo info = folderIcon.getFolderInfo();
2767 Folder openFolder = mWorkspace.getFolderForTag(info);
2768
2769 // If the folder info reports that the associated folder is open, then verify that
2770 // it is actually opened. There have been a few instances where this gets out of sync.
2771 if (info.opened && openFolder == null) {
2772 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2773 + info.screenId + " (" + info.cellX + ", " + info.cellY + ")");
2774 info.opened = false;
2775 }
2776
2777 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
2778 // Close any open folder
2779 closeFolder();
2780 // Open the requested folder
2781 openFolder(folderIcon);
2782 } else {
2783 // Find the open folder...
2784 int folderScreen;
2785 if (openFolder != null) {
2786 folderScreen = mWorkspace.getPageForView(openFolder);
2787 // .. and close it
2788 closeFolder(openFolder);
2789 if (folderScreen != mWorkspace.getCurrentPage()) {
2790 // Close any folder open on the current screen
2791 closeFolder();
2792 // Pull the folder onto this screen
2793 openFolder(folderIcon);
2794 }
2795 }
2796 }
Adam Cohen9211d422014-10-07 18:14:53 -07002797
2798 if (mLauncherCallbacks != null) {
2799 mLauncherCallbacks.onClickFolderIcon(v);
2800 }
Michael Jurka5130e402011-10-13 04:55:35 -07002801 }
2802
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002803 /**
2804 * Event handler for the (Add) Widgets button that appears after a long press
2805 * on the home screen.
2806 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002807 protected void onClickAddWidgetButton(View view) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002808 if (LOGD) Log.d(TAG, "onClickAddWidgetButton");
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002809 if (mIsSafeModeEnabled) {
2810 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2811 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08002812 showWidgetsView(true /* animated */, true /* resetPageToZero */);
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002813 if (mLauncherCallbacks != null) {
2814 mLauncherCallbacks.onClickAddWidgetButton(view);
2815 }
Adam Cohen9211d422014-10-07 18:14:53 -07002816 }
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002817 }
2818
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002819 /**
2820 * Event handler for the wallpaper picker button that appears after a long press
2821 * on the home screen.
2822 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002823 protected void onClickWallpaperPicker(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002824 if (LOGD) Log.d(TAG, "onClickWallpaperPicker");
Tony Wickham3e776a82015-09-09 18:21:49 -07002825 int pageScroll = mWorkspace.getScrollForPage(mWorkspace.getPageNearestToCenterOfScreen());
2826 float offset = mWorkspace.mWallpaperOffset.wallpaperOffsetForScroll(pageScroll);
2827 startActivityForResult(new Intent(Intent.ACTION_SET_WALLPAPER).setPackage(getPackageName())
2828 .putExtra(WallpaperPickerActivity.EXTRA_WALLPAPER_OFFSET, offset),
Sunny Goyal6a1e95a2015-03-20 17:26:30 -07002829 REQUEST_PICK_WALLPAPER);
Adam Cohen9211d422014-10-07 18:14:53 -07002830
2831 if (mLauncherCallbacks != null) {
2832 mLauncherCallbacks.onClickWallpaperPicker(v);
2833 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002834 }
2835
2836 /**
2837 * Event handler for a click on the settings button that appears after a long press
2838 * on the home screen.
2839 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002840 protected void onClickSettingsButton(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002841 if (LOGD) Log.d(TAG, "onClickSettingsButton");
Adam Cohen9211d422014-10-07 18:14:53 -07002842 if (mLauncherCallbacks != null) {
2843 mLauncherCallbacks.onClickSettingsButton(v);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07002844 } else {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002845 startActivity(new Intent(this, SettingsActivity.class));
Adam Cohen9211d422014-10-07 18:14:53 -07002846 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002847 }
2848
Adam Cohen61f560d2013-09-30 15:58:20 -07002849 public View.OnTouchListener getHapticFeedbackTouchListener() {
2850 if (mHapticFeedbackTouchListener == null) {
2851 mHapticFeedbackTouchListener = new View.OnTouchListener() {
Sunny Goyal70660032015-05-14 00:07:08 -07002852 @SuppressLint("ClickableViewAccessibility")
Adam Cohen61f560d2013-09-30 15:58:20 -07002853 @Override
2854 public boolean onTouch(View v, MotionEvent event) {
2855 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
2856 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2857 }
2858 return false;
2859 }
2860 };
2861 }
2862 return mHapticFeedbackTouchListener;
2863 }
2864
Adam Cohen9211d422014-10-07 18:14:53 -07002865 public void onDragStarted(View view) {
2866 if (isOnCustomContent()) {
2867 // Custom content screen doesn't participate in drag and drop. If on custom
2868 // content screen, move to default.
2869 moveWorkspaceToDefaultScreen();
2870 }
2871
2872 if (mLauncherCallbacks != null) {
2873 mLauncherCallbacks.onDragStarted(view);
2874 }
2875 }
Anjali Koppal62d18ed2014-03-10 17:04:03 -07002876
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002877 /**
2878 * Called when the user stops interacting with the launcher.
2879 * This implies that the user is now on the homescreen and is not doing housekeeping.
2880 */
Adam Cohen9211d422014-10-07 18:14:53 -07002881 protected void onInteractionEnd() {
2882 if (mLauncherCallbacks != null) {
2883 mLauncherCallbacks.onInteractionEnd();
2884 }
2885 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002886
2887 /**
2888 * Called when the user starts interacting with the launcher.
2889 * The possible interactions are:
2890 * - open all apps
2891 * - reorder an app shortcut, or a widget
2892 * - open the overview mode.
2893 * This is a good time to stop doing things that only make sense
2894 * when the user is on the homescreen and not doing housekeeping.
2895 */
Adam Cohen9211d422014-10-07 18:14:53 -07002896 protected void onInteractionBegin() {
2897 if (mLauncherCallbacks != null) {
2898 mLauncherCallbacks.onInteractionBegin();
2899 }
2900 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002901
Winson Chungcd99cd32015-04-29 11:03:24 -07002902 /** Updates the interaction state. */
2903 public void updateInteraction(Workspace.State fromState, Workspace.State toState) {
Winson Chung83f59ab2015-05-05 17:21:58 -07002904 // Only update the interacting state if we are transitioning to/from a view with an
Winson Chungcd99cd32015-04-29 11:03:24 -07002905 // overlay
Winson Chungef7f8742015-06-04 17:18:17 -07002906 boolean fromStateWithOverlay = fromState != Workspace.State.NORMAL;
2907 boolean toStateWithOverlay = toState != Workspace.State.NORMAL;
Winson Chung83f59ab2015-05-05 17:21:58 -07002908 if (toStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002909 onInteractionBegin();
Winson Chung83f59ab2015-05-05 17:21:58 -07002910 } else if (fromStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002911 onInteractionEnd();
2912 }
2913 }
2914
Kenny Guyf07af7b2014-07-31 11:39:16 +01002915 void startApplicationDetailsActivity(ComponentName componentName, UserHandleCompat user) {
Kenny Guyf07af7b2014-07-31 11:39:16 +01002916 try {
2917 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Kenny Guyf07af7b2014-07-31 11:39:16 +01002918 launcherApps.showAppDetailsForProfile(componentName, user);
2919 } catch (SecurityException e) {
2920 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2921 Log.e(TAG, "Launcher does not have permission to launch settings");
2922 } catch (ActivityNotFoundException e) {
2923 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2924 Log.e(TAG, "Unable to launch settings");
2925 }
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002926 }
2927
Michael Jurka1e2f4652013-07-08 18:03:46 -07002928 // returns true if the activity was started
Kenny Guyd31df542014-06-30 15:12:11 +01002929 boolean startApplicationUninstallActivity(ComponentName componentName, int flags,
2930 UserHandleCompat user) {
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002931 if ((flags & AppInfo.DOWNLOADED_FLAG) == 0) {
Patrick Dubroy5539af72010-09-07 15:22:01 -07002932 // System applications cannot be installed. For now, show a toast explaining that.
2933 // We may give them the option of disabling apps this way.
2934 int messageId = R.string.uninstall_system_app_text;
2935 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
Michael Jurka1e2f4652013-07-08 18:03:46 -07002936 return false;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002937 } else {
Michael Jurka1e2f4652013-07-08 18:03:46 -07002938 String packageName = componentName.getPackageName();
2939 String className = componentName.getClassName();
Patrick Dubroy5539af72010-09-07 15:22:01 -07002940 Intent intent = new Intent(
2941 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002942 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2943 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Kenny Guyd31df542014-06-30 15:12:11 +01002944 if (user != null) {
2945 user.addToIntent(intent, Intent.EXTRA_USER);
2946 }
Patrick Dubroy5539af72010-09-07 15:22:01 -07002947 startActivity(intent);
Michael Jurka1e2f4652013-07-08 18:03:46 -07002948 return true;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002949 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002950 }
2951
Winson Chung8f1eff72015-05-28 17:33:40 -07002952 private boolean startActivity(View v, Intent intent, Object tag) {
Kenny Guyb6cc40b2014-05-13 15:58:58 +01002953 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002954 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002955 // Only launch using the new animation if the shortcut has not opted out (this is a
2956 // private contract between launcher and may be ignored in the future).
2957 boolean useLaunchAnimation = (v != null) &&
2958 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
Kenny Guyed131872014-04-30 03:02:21 +01002959 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
2960 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyed131872014-04-30 03:02:21 +01002961
Kenny Guy1317e2d2014-05-08 18:52:50 +01002962 UserHandleCompat user = null;
2963 if (intent.hasExtra(AppInfo.EXTRA_PROFILE)) {
2964 long serialNumber = intent.getLongExtra(AppInfo.EXTRA_PROFILE, -1);
2965 user = userManager.getUserForSerialNumber(serialNumber);
2966 }
2967
2968 Bundle optsBundle = null;
Winson Chung2672ff92012-05-04 16:22:30 -07002969 if (useLaunchAnimation) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002970 ActivityOptions opts = null;
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002971 if (Utilities.ATLEAST_MARSHMALLOW) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002972 int left = 0, top = 0;
2973 int width = v.getMeasuredWidth(), height = v.getMeasuredHeight();
2974 if (v instanceof TextView) {
2975 // Launch from center of icon, not entire view
Winson Chungb745afb2015-03-02 11:51:23 -08002976 Drawable icon = Workspace.getTextViewIcon((TextView) v);
2977 if (icon != null) {
2978 Rect bounds = icon.getBounds();
Chet Haasea8f996d2015-02-17 12:56:04 -08002979 left = (width - bounds.width()) / 2;
Winson Chungb745afb2015-03-02 11:51:23 -08002980 top = v.getPaddingTop();
Chet Haasea8f996d2015-02-17 12:56:04 -08002981 width = bounds.width();
2982 height = bounds.height();
2983 }
2984 }
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002985 opts = ActivityOptions.makeClipRevealAnimation(v, left, top, width, height);
2986 } else if (!Utilities.ATLEAST_LOLLIPOP) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002987 // Below L, we use a scale up animation
Adam Cohen2e52c902015-04-06 13:11:28 -07002988 opts = ActivityOptions.makeScaleUpAnimation(v, 0, 0,
Chet Haasea8f996d2015-02-17 12:56:04 -08002989 v.getMeasuredWidth(), v.getMeasuredHeight());
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002990 } else if (Utilities.ATLEAST_LOLLIPOP_MR1) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002991 // On L devices, we use the device default slide-up transition.
2992 // On L MR1 devices, we a custom version of the slide-up transition which
2993 // doesn't have the delay present in the device default.
2994 opts = ActivityOptions.makeCustomAnimation(this,
2995 R.anim.task_open_enter, R.anim.no_anim);
Chet Haasea8f996d2015-02-17 12:56:04 -08002996 }
Adam Cohen2e52c902015-04-06 13:11:28 -07002997 optsBundle = opts != null ? opts.toBundle() : null;
Adam Cohen6ea3b112014-06-11 11:38:49 -07002998 }
Kenny Guy1317e2d2014-05-08 18:52:50 +01002999
3000 if (user == null || user.equals(UserHandleCompat.myUserHandle())) {
3001 // Could be launching some bookkeeping activity
3002 startActivity(intent, optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07003003 } else {
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07003004 // TODO Component can be null when shortcuts are supported for secondary user
Kenny Guyc2bd8102014-06-30 12:30:31 +01003005 launcherApps.startActivityForProfile(intent.getComponent(), user,
3006 intent.getSourceBounds(), optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07003007 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08003008 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003009 } catch (SecurityException e) {
Sunny Goyal28c6b962015-10-12 11:42:05 -07003010 if (Utilities.ATLEAST_MARSHMALLOW && tag instanceof ItemInfo) {
3011 // Due to legacy reasons, direct call shortcuts require Launchers to have the
3012 // corresponding permission. Show the appropriate permission prompt if that
3013 // is the case.
3014 if (intent.getComponent() == null
3015 && Intent.ACTION_CALL.equals(intent.getAction())
3016 && checkSelfPermission(Manifest.permission.CALL_PHONE) !=
3017 PackageManager.PERMISSION_GRANTED) {
3018 // TODO: Rename sPendingAddItem to a generic name.
3019 sPendingAddItem = preparePendingAddArgs(REQUEST_PERMISSION_CALL_PHONE, intent,
3020 0, (ItemInfo) tag);
3021 requestPermissions(new String[]{Manifest.permission.CALL_PHONE},
3022 REQUEST_PERMISSION_CALL_PHONE);
3023 return false;
3024 }
3025 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003026 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08003027 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003028 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07003029 "or use the exported attribute for this activity. "
3030 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003031 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08003032 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003033 }
Winson Chungaafa03c2010-06-11 17:34:16 -07003034
Winson Chungbedf9232015-07-10 12:38:30 -07003035 public boolean startActivitySafely(View v, Intent intent, Object tag) {
Michael Jurka86a720e2012-05-09 11:23:23 -07003036 boolean success = false;
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07003037 if (mIsSafeModeEnabled && !Utilities.isSystemApp(this, intent)) {
3038 Toast.makeText(this, R.string.safemode_shortcut_error, Toast.LENGTH_SHORT).show();
3039 return false;
3040 }
Michael Jurka86a720e2012-05-09 11:23:23 -07003041 try {
3042 success = startActivity(v, intent, tag);
3043 } catch (ActivityNotFoundException e) {
3044 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
3045 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
3046 }
3047 return success;
3048 }
3049
Adam Cohen268c4752012-06-06 17:47:33 -07003050 /**
3051 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
3052 * in the DragLayer in the exact absolute location of the original FolderIcon.
3053 */
3054 private void copyFolderIconToImage(FolderIcon fi) {
3055 final int width = fi.getMeasuredWidth();
3056 final int height = fi.getMeasuredHeight();
3057
3058 // Lazy load ImageView, Bitmap and Canvas
3059 if (mFolderIconImageView == null) {
3060 mFolderIconImageView = new ImageView(this);
3061 }
3062 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
3063 mFolderIconBitmap.getHeight() != height) {
3064 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
3065 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
3066 }
3067
3068 DragLayer.LayoutParams lp;
3069 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
3070 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
3071 } else {
3072 lp = new DragLayer.LayoutParams(width, height);
3073 }
3074
Adam Cohen307fe232012-08-16 17:55:58 -07003075 // The layout from which the folder is being opened may be scaled, adjust the starting
3076 // view size by this scale factor.
3077 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07003078 lp.customPosition = true;
3079 lp.x = mRectForFolderAnimation.left;
3080 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07003081 lp.width = (int) (scale * width);
3082 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07003083
3084 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
3085 fi.draw(mFolderIconCanvas);
3086 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07003087 if (fi.getFolder() != null) {
3088 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
3089 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07003090 }
Adam Cohen268c4752012-06-06 17:47:33 -07003091 // Just in case this image view is still in the drag layer from a previous animation,
3092 // we remove it and re-add it.
3093 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
3094 mDragLayer.removeView(mFolderIconImageView);
3095 }
3096 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07003097 if (fi.getFolder() != null) {
3098 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07003099 }
Adam Cohen268c4752012-06-06 17:47:33 -07003100 }
3101
Adam Cohen2801caf2011-05-13 20:57:39 -07003102 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003103 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003104 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
3105 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
3106 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
3107
Adam Cohenc51934b2011-07-26 21:07:43 -07003108 FolderInfo info = (FolderInfo) fi.getTag();
3109 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3110 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07003111 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
3112 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07003113 }
3114
Adam Cohen268c4752012-06-06 17:47:33 -07003115 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
3116 copyFolderIconToImage(fi);
3117 fi.setVisibility(View.INVISIBLE);
3118
Michael Jurka2ecf9952012-06-18 12:52:28 -07003119 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003120 scaleX, scaleY);
Sunny Goyal9fc953b2015-08-17 12:24:25 -07003121 if (Utilities.ATLEAST_LOLLIPOP) {
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003122 oa.setInterpolator(new LogDecelerateInterpolator(100, 0));
3123 }
3124 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohen2801caf2011-05-13 20:57:39 -07003125 oa.start();
3126 }
3127
Adam Cohen268c4752012-06-06 17:47:33 -07003128 private void shrinkAndFadeInFolderIcon(final FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003129 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003130 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
3131 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
3132 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
3133
Adam Cohen268c4752012-06-06 17:47:33 -07003134 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07003135
Adam Cohen268c4752012-06-06 17:47:33 -07003136 // We remove and re-draw the FolderIcon in-case it has changed
3137 mDragLayer.removeView(mFolderIconImageView);
3138 copyFolderIconToImage(fi);
Michael Jurka2ecf9952012-06-18 12:52:28 -07003139 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003140 scaleX, scaleY);
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003141 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07003142 oa.addListener(new AnimatorListenerAdapter() {
3143 @Override
3144 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07003145 if (cl != null) {
3146 cl.clearFolderLeaveBehind();
3147 // Remove the ImageView copy of the FolderIcon and make the original visible.
3148 mDragLayer.removeView(mFolderIconImageView);
3149 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07003150 }
3151 }
3152 });
Adam Cohen2801caf2011-05-13 20:57:39 -07003153 oa.start();
3154 }
3155
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003156 /**
Michael Jurka774bd372010-10-22 13:40:50 -07003157 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003158 * is animated relative to the specified View. If the View is null, no animation
3159 * is played.
3160 *
3161 * @param folderInfo The FolderInfo describing the folder to open.
3162 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07003163 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07003164 Folder folder = folderIcon.getFolder();
Sunny Goyalf4066152015-04-15 09:42:19 -07003165 Folder openFolder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
3166 if (openFolder != null && openFolder != folder) {
3167 // Close any open folder before opening a folder.
3168 closeFolder();
3169 }
3170
Adam Cohena9cf38f2011-05-02 15:36:58 -07003171 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003172
Adam Cohena9cf38f2011-05-02 15:36:58 -07003173 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003174
Sunny Goyalf4066152015-04-15 09:42:19 -07003175 // While the folder is open, the position of the icon cannot change.
3176 ((CellLayout.LayoutParams) folderIcon.getLayoutParams()).canReorder = false;
3177
Adam Cohen4554ee12011-08-03 16:13:21 -07003178 // Just verify that the folder hasn't already been added to the DragLayer.
3179 // There was a one-off crash where the folder had a parent already.
3180 if (folder.getParent() == null) {
3181 mDragLayer.addView(folder);
3182 mDragController.addDropTarget((DropTarget) folder);
3183 } else {
3184 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
3185 folder.getParent() + ").");
3186 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07003187 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07003188 growAndFadeOutFolderIcon(folderIcon);
Winson Chung83ca4802013-04-12 15:10:52 -07003189
3190 // Notify the accessibility manager that this folder "window" has appeared and occluded
3191 // the workspace items
3192 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
3193 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07003194 }
3195
3196 public void closeFolder() {
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 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003202 closeFolder(folder);
3203 }
3204 }
3205
Sunny Goyal83a8f042015-05-19 12:52:12 -07003206 public void closeFolder(Folder folder) {
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);
3212 shrinkAndFadeInFolderIcon(fi);
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 }
3217 folder.animateClosed();
Winson Chung83ca4802013-04-12 15:10:52 -07003218
3219 // Notify the accessibility manager that this folder "window" has disappeard and no
3220 // longer occludeds the workspace items
3221 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003222 }
3223
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003224 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07003225 if (!isDraggingEnabled()) return false;
3226 if (isWorkspaceLocked()) return false;
3227 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003228
Winson Chung76648c52015-07-10 14:33:23 -07003229 if (v == mAllAppsButton) {
3230 onLongClickAllAppsButton(v);
3231 return true;
3232 }
3233
Adam Cohen1697b792013-09-17 19:08:21 -07003234 if (v instanceof Workspace) {
3235 if (!mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003236 if (!mWorkspace.isTouchActive()) {
3237 showOverviewMode(true);
Adam Cohen93c97562013-09-26 13:48:01 -07003238 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3239 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
3240 return true;
3241 } else {
3242 return false;
3243 }
Adam Cohenaa4c8c12014-06-06 11:52:52 -07003244 } else {
3245 return false;
Adam Cohen1697b792013-09-17 19:08:21 -07003246 }
Adam Cohen1697b792013-09-17 19:08:21 -07003247 }
3248
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003249 CellLayout.CellInfo longClickCellInfo = null;
3250 View itemUnderLongClick = null;
3251 if (v.getTag() instanceof ItemInfo) {
3252 ItemInfo info = (ItemInfo) v.getTag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08003253 longClickCellInfo = new CellLayout.CellInfo(v, info);
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003254 itemUnderLongClick = longClickCellInfo.cell;
3255 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003256 }
3257
Winson Chung3d503fb2011-07-13 17:25:49 -07003258 // The hotseat touch handling does not go through Workspace, and we always allow long press
3259 // on hotseat items.
Dan Sandlere26d0942014-01-13 14:30:14 -05003260 final boolean inHotseat = isHotseatLayout(v);
Sunny Goyal8e2133b2015-05-06 13:39:07 -07003261 if (!mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07003262 if (itemUnderLongClick == null) {
Adam Cohend3ecce92013-09-16 14:58:00 -07003263 // User long pressed on empty space
3264 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3265 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Adam Cohend3ecce92013-09-16 14:58:00 -07003266 if (mWorkspace.isInOverviewMode()) {
3267 mWorkspace.startReordering(v);
3268 } else {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003269 showOverviewMode(true);
Adam Cohendedbd962013-07-11 14:21:49 -07003270 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003271 } else {
Dan Sandlere26d0942014-01-13 14:30:14 -05003272 final boolean isAllAppsButton = inHotseat && isAllAppsButtonRank(
3273 mHotseat.getOrderInHotseat(
3274 longClickCellInfo.cellX,
3275 longClickCellInfo.cellY));
3276 if (!(itemUnderLongClick instanceof Folder || isAllAppsButton)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003277 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07003278 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003279 }
3280 }
3281 }
3282 return true;
3283 }
3284
Winson Chung3d503fb2011-07-13 17:25:49 -07003285 boolean isHotseatLayout(View layout) {
3286 return mHotseat != null && layout != null &&
3287 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
3288 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08003289
Winson Chung3d503fb2011-07-13 17:25:49 -07003290 /**
3291 * Returns the CellLayout of the specified container at the specified screen.
3292 */
Sunny Goyal92820592015-03-02 11:31:35 -08003293 public CellLayout getCellLayout(long container, long screenId) {
Winson Chung3d503fb2011-07-13 17:25:49 -07003294 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3295 if (mHotseat != null) {
3296 return mHotseat.getLayout();
3297 } else {
3298 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08003299 }
Winson Chung3d503fb2011-07-13 17:25:49 -07003300 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08003301 return mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08003302 }
3303 }
3304
Winson Chungb745afb2015-03-02 11:51:23 -08003305 /**
3306 * For overridden classes.
3307 */
Daniel Sandler843e8602010-06-07 14:59:01 -04003308 public boolean isAllAppsVisible() {
Winson Chungb745afb2015-03-02 11:51:23 -08003309 return isAppsViewVisible();
3310 }
3311
3312 public boolean isAppsViewVisible() {
3313 return (mState == State.APPS) || (mOnResumeState == State.APPS);
3314 }
3315
3316 public boolean isWidgetsViewVisible() {
3317 return (mState == State.WIDGETS) || (mOnResumeState == State.WIDGETS);
Joe Onoratofb0ca672009-09-14 17:55:46 -04003318 }
3319
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003320 private void setWorkspaceBackground(int background) {
3321 switch (background) {
3322 case WORKSPACE_BACKGROUND_TRANSPARENT:
3323 getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
3324 break;
3325 case WORKSPACE_BACKGROUND_BLACK:
3326 getWindow().setBackgroundDrawable(null);
3327 break;
3328 default:
3329 getWindow().setBackgroundDrawable(mWorkspaceBackgroundDrawable);
3330 }
Craig Mautner360310b2012-10-26 15:13:08 -07003331 }
3332
Selim Cinek3a8a8f72014-01-16 10:38:38 -08003333 protected void changeWallpaperVisiblity(boolean visible) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003334 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
3335 int curflags = getWindow().getAttributes().flags
3336 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
3337 if (wpflags != curflags) {
3338 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
3339 }
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003340 setWorkspaceBackground(visible ? WORKSPACE_BACKGROUND_GRADIENT : WORKSPACE_BACKGROUND_BLACK);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003341 }
3342
Michael Jurkae326f182011-11-21 14:05:46 -08003343 @Override
3344 public void onTrimMemory(int level) {
3345 super.onTrimMemory(level);
Adam Cohen3f9c9712014-10-31 11:48:25 -07003346 if (level >= ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
3347 // The widget preview db can result in holding onto over
3348 // 3MB of memory for caching which isn't necessary.
3349 SQLiteDatabase.releaseMemory();
3350
Adam Cohenc8f4e1b2014-11-19 16:03:20 -08003351 // This clears all widget bitmaps from the widget tray
Hyunyoung Song3f471442015-04-08 19:01:34 -07003352 // TODO(hyunyoungs)
Michael Jurkae326f182011-11-21 14:05:46 -08003353 }
Robert Kozikowski67c30862015-03-30 23:46:46 +01003354 if (mLauncherCallbacks != null) {
3355 mLauncherCallbacks.onTrimMemory(level);
3356 }
Michael Jurkae326f182011-11-21 14:05:46 -08003357 }
3358
Winson5c6bdbb2015-09-03 11:36:19 -07003359 /**
3360 * @return whether or not the Launcher state changed.
3361 */
3362 public boolean showWorkspace(boolean animated) {
3363 return showWorkspace(WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated, null);
Adam Cohened307df2013-10-02 09:37:31 -07003364 }
3365
Winson5c6bdbb2015-09-03 11:36:19 -07003366 /**
3367 * @return whether or not the Launcher state changed.
3368 */
3369 public boolean showWorkspace(boolean animated, Runnable onCompleteRunnable) {
3370 return showWorkspace(WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated,
Winson Chungef7f8742015-06-04 17:18:17 -07003371 onCompleteRunnable);
Winson Chungdc61c4d2015-04-20 18:26:57 -07003372 }
3373
Winson5c6bdbb2015-09-03 11:36:19 -07003374 /**
3375 * @return whether or not the Launcher state changed.
3376 */
3377 protected boolean showWorkspace(int snapToPage, boolean animated) {
3378 return showWorkspace(snapToPage, animated, null);
Winson Chungdc61c4d2015-04-20 18:26:57 -07003379 }
3380
Winson5c6bdbb2015-09-03 11:36:19 -07003381 /**
3382 * @return whether or not the Launcher state changed.
3383 */
3384 boolean showWorkspace(int snapToPage, boolean animated, Runnable onCompleteRunnable) {
Winson Chung0f785722015-04-08 10:27:49 -07003385 boolean changed = mState != State.WORKSPACE ||
3386 mWorkspace.getState() != Workspace.State.NORMAL;
3387 if (changed) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003388 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003389 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3390 Workspace.State.NORMAL, snapToPage, animated, onCompleteRunnable);
Winson Chungc7d2b602012-05-16 17:02:20 -07003391
Michael Jurkab3e22d92011-10-31 15:58:33 -07003392 // Set focus to the AppsCustomize button
3393 if (mAllAppsButton != null) {
3394 mAllAppsButton.requestFocus();
3395 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003396 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07003397
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003398 // Change the state *after* we've called all the transition code
3399 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08003400
Winson Chung5fb63472011-02-02 17:03:37 -08003401 // Resume the auto-advance of widgets
3402 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08003403 updateAutoAdvanceState();
Winson Chung5fb63472011-02-02 17:03:37 -08003404
Winson Chung0f785722015-04-08 10:27:49 -07003405 if (changed) {
3406 // Send an accessibility event to announce the context change
3407 getWindow().getDecorView()
3408 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Winson Chung0f785722015-04-08 10:27:49 -07003409 }
Winson5c6bdbb2015-09-03 11:36:19 -07003410 return changed;
Bjorn Bringertc459e522013-06-07 19:36:01 +01003411 }
3412
Winsone9f27272015-10-13 10:47:51 -07003413 /**
3414 * Shows the overview button.
3415 */
Adam Cohened307df2013-10-02 09:37:31 -07003416 void showOverviewMode(boolean animated) {
Winsone9f27272015-10-13 10:47:51 -07003417 showOverviewMode(animated, false);
3418 }
3419
3420 /**
3421 * Shows the overview button, and if {@param requestButtonFocus} is set, will force the focus
3422 * onto one of the overview panel buttons.
3423 */
3424 void showOverviewMode(boolean animated, boolean requestButtonFocus) {
3425 Runnable postAnimRunnable = null;
3426 if (requestButtonFocus) {
3427 postAnimRunnable = new Runnable() {
3428 @Override
3429 public void run() {
3430 // Hitting the menu button when in touch mode does not trigger touch mode to
3431 // be disabled, so if requested, force focus on one of the overview panel
3432 // buttons.
3433 mOverviewPanel.requestFocusFromTouch();
3434 }
3435 };
3436 }
Adam Cohened307df2013-10-02 09:37:31 -07003437 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003438 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3439 Workspace.State.OVERVIEW,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003440 WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated,
Winsone9f27272015-10-13 10:47:51 -07003441 postAnimRunnable);
Adam Cohened307df2013-10-02 09:37:31 -07003442 mState = State.WORKSPACE;
Joe Onorato00acb122009-08-04 16:04:30 -04003443 }
3444
Winson Chungb745afb2015-03-02 11:51:23 -08003445 /**
3446 * Shows the apps view.
3447 */
Winson Chung76648c52015-07-10 14:33:23 -07003448 void showAppsView(boolean animated, boolean resetListToTop, boolean updatePredictedApps,
3449 boolean focusSearchBar) {
Winson Chungb745afb2015-03-02 11:51:23 -08003450 if (resetListToTop) {
3451 mAppsView.scrollToTop();
3452 }
Winson Chung4ac30062015-05-08 17:34:17 -07003453 if (updatePredictedApps) {
3454 tryAndUpdatePredictedApps();
3455 }
Winson Chung76648c52015-07-10 14:33:23 -07003456 showAppsOrWidgets(State.APPS, animated, focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003457 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003458
Winson Chungb745afb2015-03-02 11:51:23 -08003459 /**
3460 * Shows the widgets view.
3461 */
3462 void showWidgetsView(boolean animated, boolean resetPageToZero) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003463 if (LOGD) Log.d(TAG, "showWidgetsView:" + animated + " resetPageToZero:" + resetPageToZero);
Winson Chung82963d52013-10-09 11:20:57 -07003464 if (resetPageToZero) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003465 mWidgetsView.scrollToTop();
Winson Chung82963d52013-10-09 11:20:57 -07003466 }
Winson Chung76648c52015-07-10 14:33:23 -07003467 showAppsOrWidgets(State.WIDGETS, animated, false);
Hyunyoung Song3f471442015-04-08 19:01:34 -07003468
3469 mWidgetsView.post(new Runnable() {
Adam Cohendcc5e712014-06-23 15:38:55 -04003470 @Override
3471 public void run() {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003472 mWidgetsView.requestFocus();
Adam Cohendcc5e712014-06-23 15:38:55 -04003473 }
3474 });
Winson Chungb745afb2015-03-02 11:51:23 -08003475 }
3476
3477 /**
3478 * Sets up the transition to show the apps/widgets view.
Hyunyoung Songb7900832015-05-15 16:29:45 -07003479 *
3480 * @return whether the current from and to state allowed this operation
Winson Chungb745afb2015-03-02 11:51:23 -08003481 */
Hyunyoung Songb7900832015-05-15 16:29:45 -07003482 // TODO: calling method should use the return value so that when {@code false} is returned
3483 // the workspace transition doesn't fall into invalid state.
Winson Chung76648c52015-07-10 14:33:23 -07003484 private boolean showAppsOrWidgets(State toState, boolean animated, boolean focusSearchBar) {
Hyunyoung Songb7900832015-05-15 16:29:45 -07003485 if (mState != State.WORKSPACE && mState != State.APPS_SPRING_LOADED &&
3486 mState != State.WIDGETS_SPRING_LOADED) {
3487 return false;
3488 }
3489 if (toState != State.APPS && toState != State.WIDGETS) {
3490 return false;
3491 }
Winson Chungb745afb2015-03-02 11:51:23 -08003492
3493 if (toState == State.APPS) {
Winson Chung006ee262015-08-03 14:40:11 -07003494 mStateTransitionAnimation.startAnimationToAllApps(mWorkspace.getState(), animated,
3495 focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003496 } else {
Winson Chung006ee262015-08-03 14:40:11 -07003497 mStateTransitionAnimation.startAnimationToWidgets(mWorkspace.getState(), animated);
Winson Chungb745afb2015-03-02 11:51:23 -08003498 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003499
Michael Jurkab3e22d92011-10-31 15:58:33 -07003500 // Change the state *after* we've called all the transition code
Winson Chungb745afb2015-03-02 11:51:23 -08003501 mState = toState;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003502
3503 // Pause the auto-advance of widgets until we are out of AllApps
3504 mUserPresent = false;
Winson Chungb745afb2015-03-02 11:51:23 -08003505 updateAutoAdvanceState();
Michael Jurkab3e22d92011-10-31 15:58:33 -07003506 closeFolder();
3507
3508 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07003509 getWindow().getDecorView()
3510 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Hyunyoung Songb7900832015-05-15 16:29:45 -07003511 return true;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003512 }
3513
Winson Chungcd99cd32015-04-29 11:03:24 -07003514 /**
3515 * Updates the workspace and interaction state on state change, and return the animation to this
3516 * new state.
3517 */
3518 public Animator startWorkspaceStateChangeAnimation(Workspace.State toState, int toPage,
Winson Chung006ee262015-08-03 14:40:11 -07003519 boolean animated, HashMap<View, Integer> layerViews) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003520 Workspace.State fromState = mWorkspace.getState();
Winson Chung006ee262015-08-03 14:40:11 -07003521 Animator anim = mWorkspace.setStateWithAnimation(toState, toPage, animated, layerViews);
Winson Chungcd99cd32015-04-29 11:03:24 -07003522 updateInteraction(fromState, toState);
3523 return anim;
3524 }
3525
Hyunyoung Song3f471442015-04-08 19:01:34 -07003526 public void enterSpringLoadedDragMode() {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003527 if (LOGD) Log.d(TAG, String.format("enterSpringLoadedDragMode [mState=%s", mState.name()));
Winson Chungb745afb2015-03-02 11:51:23 -08003528 if (mState == State.WORKSPACE || mState == State.APPS_SPRING_LOADED ||
3529 mState == State.WIDGETS_SPRING_LOADED) {
3530 return;
Winson Chungb26f3d62011-06-02 10:49:29 -07003531 }
Winson Chungb745afb2015-03-02 11:51:23 -08003532
Winson Chung006ee262015-08-03 14:40:11 -07003533 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3534 Workspace.State.SPRING_LOADED,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003535 WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, true /* animated */,
3536 null /* onCompleteRunnable */);
Winson Chungb745afb2015-03-02 11:51:23 -08003537 mState = isAppsViewVisible() ? State.APPS_SPRING_LOADED : State.WIDGETS_SPRING_LOADED;
Michael Jurkad3ef3062010-11-23 16:23:58 -08003538 }
Adam Cohen7777d962011-08-18 18:58:38 -07003539
Hyunyoung Song3f471442015-04-08 19:01:34 -07003540 public void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, int delay,
Adam Cohened66b2b2012-01-23 17:28:51 -08003541 final Runnable onCompleteRunnable) {
Winson Chungb745afb2015-03-02 11:51:23 -08003542 if (mState != State.APPS_SPRING_LOADED && mState != State.WIDGETS_SPRING_LOADED) return;
Winson Chung09bfc452011-09-09 11:30:20 -07003543
Winson Chunge7a03942011-08-05 15:05:12 -07003544 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07003545 @Override
3546 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003547 if (successfulDrop) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003548 // TODO(hyunyoungs): verify if this hack is still needed, if not, delete.
3549 //
Michael Jurka7bdb25a2011-08-03 15:16:44 -07003550 // Before we show workspace, hide all apps again because
3551 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
3552 // clean up our state transition functions
Hyunyoung Song3f471442015-04-08 19:01:34 -07003553 mWidgetsView.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003554 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07003555 } else {
3556 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003557 }
Winson Chung557d6ed2011-07-08 15:34:52 -07003558 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07003559 }, delay);
Winson Chung557d6ed2011-07-08 15:34:52 -07003560 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003561
Michael Jurkad3ef3062010-11-23 16:23:58 -08003562 void exitSpringLoadedDragMode() {
Winson Chungb745afb2015-03-02 11:51:23 -08003563 if (mState == State.APPS_SPRING_LOADED) {
Winson Chung4ac30062015-05-08 17:34:17 -07003564 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07003565 false /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -08003566 } else if (mState == State.WIDGETS_SPRING_LOADED) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003567 showWidgetsView(true, false);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003568 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003569 }
3570
Winson Chung4ac30062015-05-08 17:34:17 -07003571 /**
3572 * Updates the set of predicted apps if it hasn't been updated since the last time Launcher was
3573 * resumed.
3574 */
3575 private void tryAndUpdatePredictedApps() {
3576 if (mLauncherCallbacks != null) {
Winson Chung6b1c73f2015-06-18 11:38:42 -07003577 List<ComponentKey> apps = mLauncherCallbacks.getPredictedApps();
Winson Chung91c05952015-06-25 12:17:30 -07003578 if (apps != null) {
Winson Chung4ac30062015-05-08 17:34:17 -07003579 mAppsView.setPredictedApps(apps);
3580 }
3581 }
3582 }
3583
Michael Jurkab3e22d92011-10-31 15:58:33 -07003584 void lockAllApps() {
3585 // TODO
3586 }
3587
3588 void unlockAllApps() {
3589 // TODO
3590 }
3591
Sunny Goyal594d76d2014-11-06 10:12:54 -08003592 protected void disableVoiceButtonProxy(boolean disable) {
3593 // NO-OP
Winson Chungbb185bd2011-11-21 12:31:42 -08003594 }
3595
Winsonf768d932015-09-25 16:12:35 -07003596 public boolean launcherCallbacksProvidesSearch() {
3597 return (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch());
3598 }
3599
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003600 public View getOrCreateQsbBar() {
Winsonf768d932015-09-25 16:12:35 -07003601 if (launcherCallbacksProvidesSearch()) {
Adam Cohenc2d6e892014-10-16 09:49:24 -07003602 return mLauncherCallbacks.getQsbBar();
Adam Cohen9211d422014-10-07 18:14:53 -07003603 }
3604
Adam Cohen24ce0b32014-01-14 16:18:14 -08003605 if (mQsb == null) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003606 AppWidgetProviderInfo searchProvider = Utilities.getSearchWidgetProvider(this);
3607 if (searchProvider == null) {
3608 return null;
3609 }
3610
3611 Bundle opts = new Bundle();
3612 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_HOST_CATEGORY,
Adam Coheneb8e2822015-02-20 16:38:48 +00003613 AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003614
Tony Wickham3a3517f2015-10-06 11:27:04 -07003615 // Determine the min and max dimensions of the widget.
3616 LauncherAppState app = LauncherAppState.getInstance();
3617 DeviceProfile portraitProfile = app.getInvariantDeviceProfile().portraitProfile;
3618 DeviceProfile landscapeProfile = app.getInvariantDeviceProfile().landscapeProfile;
3619 float density = getResources().getDisplayMetrics().density;
3620 Rect searchBounds = portraitProfile.getSearchBarBounds(Utilities.isRtl(getResources()));
3621 int maxHeight = (int) (searchBounds.height() / density);
3622 int minHeight = maxHeight;
3623 int maxWidth = (int) (searchBounds.width() / density);
3624 int minWidth = maxWidth;
3625 if (!landscapeProfile.isVerticalBarLayout()) {
3626 searchBounds = landscapeProfile.getSearchBarBounds(Utilities.isRtl(getResources()));
3627 maxHeight = (int) Math.max(maxHeight, searchBounds.height() / density);
3628 minHeight = (int) Math.min(minHeight, searchBounds.height() / density);
3629 maxWidth = (int) Math.max(maxWidth, searchBounds.width() / density);
3630 minWidth = (int) Math.min(minWidth, searchBounds.width() / density);
3631 }
3632 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_MAX_HEIGHT, maxHeight);
3633 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_MIN_HEIGHT, minHeight);
3634 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_MAX_WIDTH, maxWidth);
3635 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_MIN_WIDTH, minWidth);
3636
Tony Wickham775455c2015-10-16 09:49:32 -07003637 if (mLauncherCallbacks != null) {
3638 opts.putAll(mLauncherCallbacks.getAdditionalSearchWidgetOptions());
3639 }
3640
Sunny Goyal594d76d2014-11-06 10:12:54 -08003641 SharedPreferences sp = getSharedPreferences(
3642 LauncherAppState.getSharedPreferencesKey(), MODE_PRIVATE);
3643 int widgetId = sp.getInt(QSB_WIDGET_ID, -1);
Sunny Goyal416541c2014-11-14 11:59:57 -08003644 AppWidgetProviderInfo widgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003645 if (!searchProvider.provider.flattenToString().equals(
3646 sp.getString(QSB_WIDGET_PROVIDER, null))
Sunny Goyal416541c2014-11-14 11:59:57 -08003647 || (widgetInfo == null)
3648 || !widgetInfo.provider.equals(searchProvider.provider)) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003649 // A valid widget is not already bound.
3650 if (widgetId > -1) {
3651 mAppWidgetHost.deleteAppWidgetId(widgetId);
3652 widgetId = -1;
3653 }
3654
3655 // Try to bind a new widget
3656 widgetId = mAppWidgetHost.allocateAppWidgetId();
3657
3658 if (!AppWidgetManagerCompat.getInstance(this)
3659 .bindAppWidgetIdIfAllowed(widgetId, searchProvider, opts)) {
3660 mAppWidgetHost.deleteAppWidgetId(widgetId);
3661 widgetId = -1;
3662 }
3663
3664 sp.edit()
3665 .putInt(QSB_WIDGET_ID, widgetId)
3666 .putString(QSB_WIDGET_PROVIDER, searchProvider.provider.flattenToString())
3667 .commit();
3668 }
3669
Sunny Goyal8d595092015-07-06 12:22:14 -07003670 mAppWidgetHost.setQsbWidgetId(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003671 if (widgetId != -1) {
3672 mQsb = mAppWidgetHost.createView(this, widgetId, searchProvider);
Sunny Goyalebfae6e2015-08-27 15:30:25 -07003673 mQsb.setId(R.id.qsb_widget);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003674 mQsb.updateAppWidgetOptions(opts);
3675 mQsb.setPadding(0, 0, 0, 0);
3676 mSearchDropTargetBar.addView(mQsb);
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003677 mSearchDropTargetBar.setQsbSearchBar(mQsb);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003678 }
Cristina Stancu476493b2013-08-07 17:20:14 +01003679 }
Adam Cohen24ce0b32014-01-14 16:18:14 -08003680 return mQsb;
Cristina Stancu476493b2013-08-07 17:20:14 +01003681 }
3682
Sunny Goyal22235bc2015-04-03 09:23:43 -07003683 private void reinflateQSBIfNecessary() {
3684 if (mQsb instanceof LauncherAppWidgetHostView &&
3685 ((LauncherAppWidgetHostView) mQsb).isReinflateRequired()) {
3686 mSearchDropTargetBar.removeView(mQsb);
3687 mQsb = null;
3688 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
3689 }
3690 }
3691
Michael Jurkad7c28052012-04-27 15:43:36 -07003692 @Override
3693 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07003694 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07003695 final List<CharSequence> text = event.getText();
3696 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07003697 // Populate event with a fake title based on the current state.
Winson Chungb745afb2015-03-02 11:51:23 -08003698 if (mState == State.APPS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003699 text.add(getString(R.string.all_apps_button_label));
Winson Chungb745afb2015-03-02 11:51:23 -08003700 } else if (mState == State.WIDGETS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003701 text.add(getString(R.string.widget_button_text));
Hyunyoung Song166e6482015-06-25 21:06:07 -07003702 } else if (mWorkspace != null) {
3703 text.add(mWorkspace.getCurrentPageDescription());
alanv1d4fde62012-10-17 13:15:47 -07003704 } else {
3705 text.add(getString(R.string.all_apps_home_button_label));
3706 }
Michael Jurkad7c28052012-04-27 15:43:36 -07003707 return result;
3708 }
3709
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003710 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003711 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003712 */
Adam Cohen091440a2015-03-18 14:16:05 -07003713 @Thunk class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003714 @Override
3715 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003716 closeSystemDialogs();
3717 }
3718 }
3719
3720 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07003721 * If the activity is currently paused, signal that we need to run the passed Runnable
3722 * in onResume.
3723 *
3724 * This needs to be called from incoming places where resources might have been loaded
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003725 * while the activity is paused. That is because the Configuration (e.g., rotation) might be
3726 * wrong when we're not running, and if the activity comes back to what the configuration was
3727 * when we were paused, activity is not restarted.
Michael Jurka7607c2f2013-04-03 14:33:19 -07003728 *
3729 * Implementation of the method from LauncherModel.Callbacks.
3730 *
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003731 * @return {@code true} if we are currently paused. The caller might be able to skip some work
Michael Jurka7607c2f2013-04-03 14:33:19 -07003732 */
Rahul Chaturvedi799aa042015-06-01 21:26:41 -04003733 @Thunk boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003734 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003735 if (LOGD) Log.d(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02003736 if (deletePreviousRunnables) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07003737 while (mBindOnResumeCallbacks.remove(run)) {
Michael Jurkac402cd92013-05-20 15:49:32 +02003738 }
3739 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07003740 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07003741 return true;
3742 } else {
3743 return false;
3744 }
3745 }
3746
Michael Jurkac402cd92013-05-20 15:49:32 +02003747 private boolean waitUntilResume(Runnable run) {
3748 return waitUntilResume(run, false);
3749 }
3750
Michael Jurka1e2f4652013-07-08 18:03:46 -07003751 public void addOnResumeCallback(Runnable run) {
Michael Jurka54554252013-08-01 12:52:23 +02003752 mOnResumeCallbacks.add(run);
Michael Jurka1e2f4652013-07-08 18:03:46 -07003753 }
3754
Michael Jurka7607c2f2013-04-03 14:33:19 -07003755 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003756 * If the activity is currently paused, signal that we need to re-run the loader
3757 * in onResume.
3758 *
3759 * This needs to be called from incoming places where resources might have been loaded
3760 * while we are paused. That is becaues the Configuration might be wrong
3761 * when we're not running, and if it comes back to what it was when we
3762 * were paused, we are not restarted.
3763 *
3764 * Implementation of the method from LauncherModel.Callbacks.
3765 *
3766 * @return true if we are currently paused. The caller might be able to
3767 * skip some work in that case since we will come back again.
3768 */
3769 public boolean setLoadOnResume() {
3770 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003771 if (LOGD) Log.d(TAG, "setLoadOnResume");
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003772 mOnResumeNeedsLoad = true;
3773 return true;
3774 } else {
3775 return false;
3776 }
3777 }
3778
3779 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003780 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003781 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003782 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003783 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003784 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003785 } else {
3786 return SCREEN_COUNT / 2;
3787 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003788 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003789
Joe Onorato9c1289c2009-08-17 11:03:03 -04003790 /**
3791 * Refreshes the shortcuts shown on the workspace.
3792 *
3793 * Implementation of the method from LauncherModel.Callbacks.
3794 */
3795 public void startBinding() {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07003796 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08003797
Michael Jurka7607c2f2013-04-03 14:33:19 -07003798 // If we're starting binding all over again, clear any bind calls we'd postponed in
3799 // the past (see waitUntilResume) -- we don't need them since we're starting binding
3800 // from scratch again
Michael Jurka1e2f4652013-07-08 18:03:46 -07003801 mBindOnResumeCallbacks.clear();
Adam Cohendf035382011-04-11 17:22:04 -07003802
Winson Chungd64d1762013-08-20 14:37:16 -07003803 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07003804 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07003805 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07003806
Michael Jurka05bf644e2011-11-30 20:28:53 -08003807 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003808 if (mHotseat != null) {
3809 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003810 }
3811 }
3812
Adam Cohendcd297f2013-06-18 13:13:40 -07003813 @Override
3814 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Winson Chung64359a52013-07-08 17:17:08 -07003815 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07003816
Adam Cohen5084cba2013-09-03 12:01:16 -07003817 // If there are no screens, we need to have an empty screen
3818 if (orderedScreenIds.size() == 0) {
3819 mWorkspace.addExtraEmptyScreen();
3820 }
Winson Chung0e6a7132013-08-23 12:55:10 -07003821
3822 // Create the custom content page (this call updates mDefaultScreen which calls
Dave Hawkeya8881582013-09-17 15:55:33 -06003823 // setCurrentPage() so ensure that all pages are added before calling this).
Derek Prothrodadd9842014-01-17 13:43:50 -05003824 if (hasCustomContentToLeft()) {
3825 mWorkspace.createCustomContentContainer();
3826 populateCustomContentContainer();
Winson Chung0e6a7132013-08-23 12:55:10 -07003827 }
Winson Chung64359a52013-07-08 17:17:08 -07003828 }
3829
3830 @Override
3831 public void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Adam Cohendcd297f2013-06-18 13:13:40 -07003832 int count = orderedScreenIds.size();
3833 for (int i = 0; i < count; i++) {
Adam Cohen89bddfa2013-08-20 11:57:13 -07003834 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(orderedScreenIds.get(i));
Adam Cohendcd297f2013-06-18 13:13:40 -07003835 }
Adam Cohendcd297f2013-06-18 13:13:40 -07003836 }
3837
Winson Chungd64d1762013-08-20 14:37:16 -07003838 public void bindAppsAdded(final ArrayList<Long> newScreens,
3839 final ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -07003840 final ArrayList<ItemInfo> addAnimated,
3841 final ArrayList<AppInfo> addedApps) {
Winson Chungd64d1762013-08-20 14:37:16 -07003842 Runnable r = new Runnable() {
3843 public void run() {
Winson Chungc58497e2013-09-03 17:48:37 -07003844 bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps);
Winson Chungd64d1762013-08-20 14:37:16 -07003845 }
3846 };
3847 if (waitUntilResume(r)) {
3848 return;
3849 }
3850
Winson Chungd64d1762013-08-20 14:37:16 -07003851 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08003852 if (newScreens != null) {
3853 bindAddScreens(newScreens);
3854 }
Winson Chungd64d1762013-08-20 14:37:16 -07003855
3856 // We add the items without animation on non-visible pages, and with
3857 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08003858 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003859 bindItems(addNotAnimated, 0,
3860 addNotAnimated.size(), false);
3861 }
Adam Cohen76a47a12014-02-05 11:47:43 -08003862 if (addAnimated != null && !addAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003863 bindItems(addAnimated, 0,
3864 addAnimated.size(), true);
3865 }
Winson Chungc58497e2013-09-03 17:48:37 -07003866
Winson Chung87412982013-10-03 18:34:14 -07003867 // Remove the extra empty screen
Adam Cohen689ff162014-05-08 17:27:56 -07003868 mWorkspace.removeExtraEmptyScreen(false, false);
Winson Chung87412982013-10-03 18:34:14 -07003869
Winson Chungb745afb2015-03-02 11:51:23 -08003870 if (addedApps != null && mAppsView != null) {
3871 mAppsView.addApps(addedApps);
Winson Chungc58497e2013-09-03 17:48:37 -07003872 }
Winson Chungd64d1762013-08-20 14:37:16 -07003873 }
3874
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003875 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003876 * Bind the items start-end from the list.
3877 *
3878 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003879 */
Tony Wickham0bb211a2015-10-02 16:22:08 -07003880 @Override
Winson Chung64359a52013-07-08 17:17:08 -07003881 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end,
3882 final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07003883 Runnable r = new Runnable() {
3884 public void run() {
3885 bindItems(shortcuts, start, end, forceAnimateIcons);
3886 }
3887 };
3888 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003889 return;
3890 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003891
Winson Chungf0c6ae02012-03-21 16:10:31 -07003892 // Get the list of added shortcuts and intersect them with the set of shortcuts here
Winson Chung64359a52013-07-08 17:17:08 -07003893 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
3894 final Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chung997a9232013-07-24 15:33:46 -07003895 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07003896 Workspace workspace = mWorkspace;
Winson Chung997a9232013-07-24 15:33:46 -07003897 long newShortcutsScreenId = -1;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003898 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003899 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003900
3901 // Short circuit if we are loading dock items for a configuration which has no dock
3902 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3903 mHotseat == null) {
3904 continue;
3905 }
3906
Sunny Goyal639e9062015-08-19 19:17:06 -07003907 final View view;
Joe Onorato9c1289c2009-08-17 11:03:03 -04003908 switch (item.itemType) {
3909 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3910 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07003911 ShortcutInfo info = (ShortcutInfo) item;
Sunny Goyal639e9062015-08-19 19:17:06 -07003912 view = createShortcut(info);
Adam Cohendcd297f2013-06-18 13:13:40 -07003913
Winson Chung64359a52013-07-08 17:17:08 -07003914 /*
3915 * TODO: FIX collision case
3916 */
Winson Chungce376632013-07-11 16:12:41 -07003917 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
3918 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
3919 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07003920 View v = cl.getChildAt(item.cellX, item.cellY);
3921 Object tag = v.getTag();
3922 String desc = "Collision while binding workspace item: " + item
3923 + ". Collides with " + tag;
3924 if (LauncherAppState.isDogfoodBuild()) {
3925 throw (new RuntimeException(desc));
3926 } else {
3927 Log.d(TAG, desc);
3928 }
Winson Chungce376632013-07-11 16:12:41 -07003929 }
Winson Chung64359a52013-07-08 17:17:08 -07003930 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003931 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003932 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Sunny Goyal639e9062015-08-19 19:17:06 -07003933 view = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003934 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003935 (FolderInfo) item, mIconCache);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003936 break;
Winson Chungc763c4e2013-07-19 13:49:06 -07003937 default:
3938 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04003939 }
Sunny Goyal639e9062015-08-19 19:17:06 -07003940
3941 workspace.addInScreenFromBind(view, item.container, item.screenId, item.cellX,
3942 item.cellY, 1, 1);
3943 if (animateIcons) {
3944 // Animate all the applications up now
3945 view.setAlpha(0f);
3946 view.setScaleX(0f);
3947 view.setScaleY(0f);
3948 bounceAnims.add(createNewAppBounceAnimation(view, i));
3949 newShortcutsScreenId = item.screenId;
3950 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003951 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003952
Winson Chung997a9232013-07-24 15:33:46 -07003953 if (animateIcons) {
3954 // Animate to the correct page
3955 if (newShortcutsScreenId > -1) {
3956 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Winson Chung94d67682013-09-25 16:29:40 -07003957 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId);
Winson Chungb2323832013-10-03 15:22:09 -07003958 final Runnable startBounceAnimRunnable = new Runnable() {
3959 public void run() {
3960 anim.playTogether(bounceAnims);
3961 anim.start();
3962 }
3963 };
Winson Chung997a9232013-07-24 15:33:46 -07003964 if (newShortcutsScreenId != currentScreenId) {
Winson Chung94d67682013-09-25 16:29:40 -07003965 // We post the animation slightly delayed to prevent slowdowns
3966 // when we are loading right after we return to launcher.
3967 mWorkspace.postDelayed(new Runnable() {
3968 public void run() {
Ian Parkinson94449152014-01-21 13:09:59 +00003969 if (mWorkspace != null) {
3970 mWorkspace.snapToPage(newScreenIndex);
3971 mWorkspace.postDelayed(startBounceAnimRunnable,
3972 NEW_APPS_ANIMATION_DELAY);
3973 }
Winson Chung94d67682013-09-25 16:29:40 -07003974 }
3975 }, NEW_APPS_PAGE_MOVE_DELAY);
Winson Chungb2323832013-10-03 15:22:09 -07003976 } else {
3977 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07003978 }
3979 }
Winson Chung64359a52013-07-08 17:17:08 -07003980 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003981 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003982 }
3983
Joe Onorato9c1289c2009-08-17 11:03:03 -04003984 /**
3985 * Implementation of the method from LauncherModel.Callbacks.
3986 */
Sunny Goyale2df0622015-04-24 11:27:00 -07003987 public void bindFolders(final LongArrayMap<FolderInfo> folders) {
Winson Chungd64d1762013-08-20 14:37:16 -07003988 Runnable r = new Runnable() {
3989 public void run() {
3990 bindFolders(folders);
3991 }
3992 };
3993 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003994 return;
3995 }
Sunny Goyale2df0622015-04-24 11:27:00 -07003996 sFolders = folders.clone();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003997 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003998
3999 /**
4000 * Add the views for a widget to the workspace.
4001 *
4002 * Implementation of the method from LauncherModel.Callbacks.
4003 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07004004 public void bindAppWidget(final LauncherAppWidgetInfo item) {
Winson Chungd64d1762013-08-20 14:37:16 -07004005 Runnable r = new Runnable() {
4006 public void run() {
4007 bindAppWidget(item);
4008 }
4009 };
4010 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004011 return;
4012 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07004013
Daniel Sandler843e8602010-06-07 14:59:01 -04004014 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
4015 if (DEBUG_WIDGETS) {
4016 Log.d(TAG, "bindAppWidget: " + item);
4017 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004018 final Workspace workspace = mWorkspace;
4019
Adam Cohen59400422014-03-05 18:07:04 -08004020 LauncherAppWidgetProviderInfo appWidgetInfo =
Robin Lee26ace122015-03-16 19:41:43 +00004021 LauncherModel.getProviderInfo(this, item.providerName, item.user);
Adam Cohen59400422014-03-05 18:07:04 -08004022
Sunny Goyal9b4b0812014-10-08 10:47:28 -07004023 if (!mIsSafeModeEnabled
4024 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY) == 0)
Sunny Goyal84b4adc2015-08-12 15:12:16 -07004025 && (item.restoreStatus != LauncherAppWidgetInfo.RESTORE_COMPLETED)) {
4026
Sunny Goyalff572272014-07-23 13:58:07 -07004027 if (appWidgetInfo == null) {
4028 if (DEBUG_WIDGETS) {
4029 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
4030 + " belongs to component " + item.providerName
4031 + ", as the povider is null");
4032 }
4033 LauncherModel.deleteItemFromDatabase(this, item);
4034 return;
4035 }
Sunny Goyalff572272014-07-23 13:58:07 -07004036
Sunny Goyal84b4adc2015-08-12 15:12:16 -07004037 // If we do not have a valid id, try to bind an id.
4038 if ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_ID_NOT_VALID) != 0) {
4039 // Note: This assumes that the id remap broadcast is received before this step.
4040 // If that is not the case, the id remap will be ignored and user may see the
4041 // click to setup view.
4042 PendingAddWidgetInfo pendingInfo = new PendingAddWidgetInfo(this, appWidgetInfo, null);
4043 pendingInfo.spanX = item.spanX;
4044 pendingInfo.spanY = item.spanY;
4045 pendingInfo.minSpanX = item.minSpanX;
4046 pendingInfo.minSpanY = item.minSpanY;
4047 Bundle options = null;
4048 WidgetHostViewLoader.getDefaultOptionsForWidget(this, pendingInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07004049
Sunny Goyal84b4adc2015-08-12 15:12:16 -07004050 int newWidgetId = mAppWidgetHost.allocateAppWidgetId();
4051 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
4052 newWidgetId, appWidgetInfo, options);
4053
4054 // TODO consider showing a permission dialog when the widget is clicked.
4055 if (!success) {
4056 mAppWidgetHost.deleteAppWidgetId(newWidgetId);
4057 if (DEBUG_WIDGETS) {
4058 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
4059 + " belongs to component " + item.providerName
4060 + ", as the launcher is unable to bing a new widget id");
4061 }
4062 LauncherModel.deleteItemFromDatabase(this, item);
4063 return;
Sunny Goyalff572272014-07-23 13:58:07 -07004064 }
Sunny Goyal84b4adc2015-08-12 15:12:16 -07004065
4066 item.appWidgetId = newWidgetId;
4067
4068 // If the widget has a configure activity, it is still needs to set it up, otherwise
4069 // the widget is ready to go.
4070 item.restoreStatus = (appWidgetInfo.configure == null)
4071 ? LauncherAppWidgetInfo.RESTORE_COMPLETED
4072 : LauncherAppWidgetInfo.FLAG_UI_NOT_READY;
4073
4074 LauncherModel.updateItemInDatabase(this, item);
4075 } else if (((item.restoreStatus & LauncherAppWidgetInfo.FLAG_UI_NOT_READY) != 0)
4076 && (appWidgetInfo.configure == null)) {
4077 // If the ID is already valid, verify if we need to configure or not.
4078 item.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
4079 LauncherModel.updateItemInDatabase(this, item);
Sunny Goyalff572272014-07-23 13:58:07 -07004080 }
Sunny Goyalff572272014-07-23 13:58:07 -07004081 }
4082
Sunny Goyal9b4b0812014-10-08 10:47:28 -07004083 if (!mIsSafeModeEnabled && item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
Sunny Goyal651077b2014-06-30 14:15:31 -07004084 final int appWidgetId = item.appWidgetId;
Sunny Goyal651077b2014-06-30 14:15:31 -07004085 if (DEBUG_WIDGETS) {
Adam Cohen59400422014-03-05 18:07:04 -08004086 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component "
4087 + appWidgetInfo.provider);
Sunny Goyal651077b2014-06-30 14:15:31 -07004088 }
Daniel Sandler843e8602010-06-07 14:59:01 -04004089
Sunny Goyal56c73602015-09-25 12:55:01 -07004090 // Verify that we own the widget
4091 AppWidgetProviderInfo info = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
4092 if (info == null || appWidgetInfo == null ||
4093 !info.provider.equals(appWidgetInfo.provider)) {
4094 Log.e(TAG, "Removing invalid widget: id=" + item.appWidgetId);
4095 deleteWidgetInfo(item);
4096 return;
4097 }
4098
Sunny Goyal651077b2014-06-30 14:15:31 -07004099 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
Sunny Goyal233ee962015-08-03 13:05:01 -07004100 item.minSpanX = appWidgetInfo.minSpanX;
4101 item.minSpanY = appWidgetInfo.minSpanY;
Sunny Goyal651077b2014-06-30 14:15:31 -07004102 } else {
4103 appWidgetInfo = null;
Sunny Goyal9b4b0812014-10-08 10:47:28 -07004104 PendingAppWidgetHostView view = new PendingAppWidgetHostView(this, item,
4105 mIsSafeModeEnabled);
Sunny Goyal0fc1be12014-08-11 17:05:23 -07004106 view.updateIcon(mIconCache);
4107 item.hostView = view;
Sunny Goyal651077b2014-06-30 14:15:31 -07004108 item.hostView.updateAppWidget(null);
Sunny Goyalff572272014-07-23 13:58:07 -07004109 item.hostView.setOnClickListener(this);
Sunny Goyal651077b2014-06-30 14:15:31 -07004110 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004111
Joe Onorato9c1289c2009-08-17 11:03:03 -04004112 item.hostView.setTag(item);
Winson Chung211bac32012-05-15 13:43:57 -07004113 item.onBindAppWidget(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04004114
Adam Cohendcd297f2013-06-18 13:13:40 -07004115 workspace.addInScreen(item.hostView, item.container, item.screenId, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04004116 item.cellY, item.spanX, item.spanY, false);
Adam Cohen59400422014-03-05 18:07:04 -08004117 if (!item.isCustomWidget()) {
4118 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
4119 }
Adam Cohended9f8d2010-11-03 13:25:16 -07004120
Joe Onorato9c1289c2009-08-17 11:03:03 -04004121 workspace.requestLayout();
4122
Daniel Sandler843e8602010-06-07 14:59:01 -04004123 if (DEBUG_WIDGETS) {
4124 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
4125 + (SystemClock.uptimeMillis()-start) + "ms");
4126 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004127 }
4128
Sunny Goyalff572272014-07-23 13:58:07 -07004129 /**
4130 * Restores a pending widget.
4131 *
4132 * @param appWidgetId The app widget id
4133 * @param cellInfo The position on screen where to create the widget.
4134 */
4135 private void completeRestoreAppWidget(final int appWidgetId) {
4136 LauncherAppWidgetHostView view = mWorkspace.getWidgetForAppWidgetId(appWidgetId);
4137 if ((view == null) || !(view instanceof PendingAppWidgetHostView)) {
4138 Log.e(TAG, "Widget update called, when the widget no longer exists.");
4139 return;
4140 }
4141
Sunny Goyal0fc1be12014-08-11 17:05:23 -07004142 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) view.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07004143 info.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
4144
4145 mWorkspace.reinflateWidgetsIfNecessary();
4146 LauncherModel.updateItemInDatabase(this, info);
4147 }
4148
Adam Cohen1462de32012-07-24 22:34:36 -07004149 public void onPageBoundSynchronously(int page) {
4150 mSynchronouslyBoundPages.add(page);
4151 }
4152
Joe Onorato9c1289c2009-08-17 11:03:03 -04004153 /**
4154 * Callback saying that there aren't any more items to bind.
4155 *
4156 * Implementation of the method from LauncherModel.Callbacks.
4157 */
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004158 public void finishBindingItems() {
Winson Chungd64d1762013-08-20 14:37:16 -07004159 Runnable r = new Runnable() {
4160 public void run() {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004161 finishBindingItems();
Winson Chungd64d1762013-08-20 14:37:16 -07004162 }
4163 };
4164 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004165 return;
4166 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004167 if (mSavedState != null) {
4168 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07004169 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004170 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004171 mSavedState = null;
4172 }
4173
Adam Cohen1462de32012-07-24 22:34:36 -07004174 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004175
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004176 setWorkspaceLoading(false);
Adam Cohen3ed316a2014-07-23 18:21:20 -07004177 sendLoadingCompleteBroadcastIfNecessary();
Adam Cohendb364c32014-05-20 14:23:40 -07004178
4179 // If we received the result of any pending adds while the loader was running (e.g. the
4180 // widget configuration forced an orientation change), process them now.
4181 if (sPendingAddItem != null) {
4182 final long screenId = completeAdd(sPendingAddItem);
4183
4184 // TODO: this moves the user to the page where the pending item was added. Ideally,
4185 // the screen would be guaranteed to exist after bind, and the page would be set through
4186 // the workspace restore process.
4187 mWorkspace.post(new Runnable() {
4188 @Override
4189 public void run() {
4190 mWorkspace.snapToScreenId(screenId);
4191 }
4192 });
4193 sPendingAddItem = null;
4194 }
4195
Sunny Goyal756adbc2015-04-16 15:20:51 -07004196 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
Adam Cohen9211d422014-10-07 18:14:53 -07004197
4198 if (mLauncherCallbacks != null) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004199 mLauncherCallbacks.finishBindingItems(false);
Adam Cohen9211d422014-10-07 18:14:53 -07004200 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004201 }
4202
Adam Cohen3ed316a2014-07-23 18:21:20 -07004203 private void sendLoadingCompleteBroadcastIfNecessary() {
4204 if (!mSharedPrefs.getBoolean(FIRST_LOAD_COMPLETE, false)) {
4205 String permission =
4206 getResources().getString(R.string.receive_first_load_broadcast_permission);
4207 Intent intent = new Intent(ACTION_FIRST_LOAD_COMPLETE);
4208 sendBroadcast(intent, permission);
4209 SharedPreferences.Editor editor = mSharedPrefs.edit();
4210 editor.putBoolean(FIRST_LOAD_COMPLETE, true);
4211 editor.apply();
4212 }
4213 }
4214
Winson Chunga0b7e862013-09-05 16:03:15 -07004215 public boolean isAllAppsButtonRank(int rank) {
4216 if (mHotseat != null) {
4217 return mHotseat.isAllAppsButtonRank(rank);
4218 }
4219 return false;
4220 }
4221
Winson Chunga2413752012-04-03 14:22:34 -07004222 private boolean canRunNewAppsAnimation() {
4223 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
Sunny Goyal639e9062015-08-19 19:17:06 -07004224 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000)
4225 && (mClings == null || !mClings.isVisible());
Winson Chunga2413752012-04-03 14:22:34 -07004226 }
4227
Winson Chungc9168342013-06-26 14:54:55 -07004228 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
4229 ValueAnimator bounceAnim = LauncherAnimUtils.ofPropertyValuesHolder(v,
4230 PropertyValuesHolder.ofFloat("alpha", 1f),
4231 PropertyValuesHolder.ofFloat("scaleX", 1f),
4232 PropertyValuesHolder.ofFloat("scaleY", 1f));
4233 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
4234 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
Sunny Goyal5a1f53b2015-05-27 10:24:24 -07004235 bounceAnim.setInterpolator(new OvershootInterpolator(BOUNCE_ANIMATION_TENSION));
Winson Chungc9168342013-06-26 14:54:55 -07004236 return bounceAnim;
4237 }
4238
Adam Cohen27772732013-11-11 14:00:56 +00004239 public boolean useVerticalBarLayout() {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07004240 return mDeviceProfile.isVerticalBarLayout();
Adam Cohen27772732013-11-11 14:00:56 +00004241 }
4242
Tony Wickham3a3517f2015-10-06 11:27:04 -07004243 /** Returns the search bar bounds in pixels. */
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004244 protected Rect getSearchBarBounds() {
Sunny Goyalc6205602015-05-21 20:46:33 -07004245 return mDeviceProfile.getSearchBarBounds(Utilities.isRtl(getResources()));
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004246 }
4247
Tony Wickham55616cd2015-09-23 14:55:17 -07004248 public int getSearchBarHeight() {
4249 if (mLauncherCallbacks != null) {
4250 return mLauncherCallbacks.getSearchBarHeight();
4251 }
4252 return LauncherCallbacks.SEARCH_BAR_HEIGHT_NORMAL;
4253 }
4254
Winson Chung88fa7412015-08-03 14:25:28 -07004255 public void bindSearchProviderChanged() {
Sunny Goyal594d76d2014-11-06 10:12:54 -08004256 if (mSearchDropTargetBar == null) {
4257 return;
Winson Chungadf0c182012-08-23 14:59:07 -07004258 }
Sunny Goyal594d76d2014-11-06 10:12:54 -08004259 if (mQsb != null) {
4260 mSearchDropTargetBar.removeView(mQsb);
4261 mQsb = null;
4262 }
Adam Cohenb0df1b02015-03-18 22:21:40 -07004263 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004264 }
4265
Amith Yamasani6d7fe502010-11-16 09:05:07 -08004266 /**
Winson Chungbb785c62015-05-05 10:05:08 -07004267 * A runnable that we can dequeue and re-enqueue when all applications are bound (to prevent
4268 * multiple calls to bind the same list.)
4269 */
4270 @Thunk ArrayList<AppInfo> mTmpAppsList;
4271 private Runnable mBindAllApplicationsRunnable = new Runnable() {
4272 public void run() {
4273 bindAllApplications(mTmpAppsList);
4274 mTmpAppsList = null;
4275 }
4276 };
4277
4278 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004279 * Add the icons for all apps.
4280 *
4281 * Implementation of the method from LauncherModel.Callbacks.
4282 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004283 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Winson Chungbb785c62015-05-05 10:05:08 -07004284 if (waitUntilResume(mBindAllApplicationsRunnable, true)) {
4285 mTmpAppsList = apps;
4286 return;
4287 }
4288
Winson Chungb745afb2015-03-02 11:51:23 -08004289 if (mAppsView != null) {
4290 mAppsView.setApps(apps);
4291 }
Adam Cohen9211d422014-10-07 18:14:53 -07004292 if (mLauncherCallbacks != null) {
4293 mLauncherCallbacks.bindAllApplications(apps);
4294 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004295 }
4296
4297 /**
4298 * A package was updated.
4299 *
4300 * Implementation of the method from LauncherModel.Callbacks.
4301 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004302 public void bindAppsUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004303 Runnable r = new Runnable() {
4304 public void run() {
4305 bindAppsUpdated(apps);
4306 }
4307 };
4308 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004309 return;
4310 }
4311
Winson Chungb745afb2015-03-02 11:51:23 -08004312 if (mAppsView != null) {
4313 mAppsView.updateApps(apps);
Winson Chungc58497e2013-09-03 17:48:37 -07004314 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004315 }
4316
Sunny Goyal4390ace2014-10-13 11:33:11 -07004317 @Override
4318 public void bindWidgetsRestored(final ArrayList<LauncherAppWidgetInfo> widgets) {
4319 Runnable r = new Runnable() {
4320 public void run() {
4321 bindWidgetsRestored(widgets);
4322 }
4323 };
4324 if (waitUntilResume(r)) {
4325 return;
4326 }
4327 mWorkspace.widgetsRestored(widgets);
4328 }
4329
Joe Onorato9c1289c2009-08-17 11:03:03 -04004330 /**
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004331 * Some shortcuts were updated in the background.
4332 *
4333 * Implementation of the method from LauncherModel.Callbacks.
4334 */
Sunny Goyal4390ace2014-10-13 11:33:11 -07004335 @Override
4336 public void bindShortcutsChanged(final ArrayList<ShortcutInfo> updated,
4337 final ArrayList<ShortcutInfo> removed, final UserHandleCompat user) {
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004338 Runnable r = new Runnable() {
4339 public void run() {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004340 bindShortcutsChanged(updated, removed, user);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004341 }
4342 };
4343 if (waitUntilResume(r)) {
4344 return;
4345 }
4346
Sunny Goyal4390ace2014-10-13 11:33:11 -07004347 if (!updated.isEmpty()) {
4348 mWorkspace.updateShortcuts(updated);
4349 }
4350
4351 if (!removed.isEmpty()) {
4352 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4353 for (ShortcutInfo si : removed) {
4354 removedComponents.add(si.getTargetComponent());
4355 }
4356 mWorkspace.removeItemsByComponentName(removedComponents, user);
4357 // Notify the drag controller
4358 mDragController.onAppsRemoved(new ArrayList<String>(), removedComponents);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004359 }
4360 }
4361
4362 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004363 * Update the state of a package, typically related to install state.
4364 *
4365 * Implementation of the method from LauncherModel.Callbacks.
4366 */
Sunny Goyale755d462014-07-22 13:48:29 -07004367 @Override
Sunny Goyal756adbc2015-04-16 15:20:51 -07004368 public void bindRestoreItemsChange(final HashSet<ItemInfo> updates) {
4369 Runnable r = new Runnable() {
4370 public void run() {
4371 bindRestoreItemsChange(updates);
4372 }
4373 };
4374 if (waitUntilResume(r)) {
4375 return;
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004376 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004377
Sunny Goyal756adbc2015-04-16 15:20:51 -07004378 mWorkspace.updateRestoreItems(updates);
Sunny Goyala22666f2014-09-18 13:25:15 -07004379 }
4380
4381 /**
Winson Chung83892cc2013-05-01 16:53:33 -07004382 * A package was uninstalled. We take both the super set of packageNames
4383 * in addition to specific applications to remove, the reason being that
4384 * this can be called when a package is updated as well. In that scenario,
4385 * we only remove specific components from the workspace, where as
4386 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004387 *
Sunny Goyal1a745e82014-10-02 15:58:31 -07004388 * @param reason if non-zero, the icons are not permanently removed, rather marked as disabled.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004389 * Implementation of the method from LauncherModel.Callbacks.
4390 */
Sunny Goyal1a745e82014-10-02 15:58:31 -07004391 @Override
Winson Chung83892cc2013-05-01 16:53:33 -07004392 public void bindComponentsRemoved(final ArrayList<String> packageNames,
Sunny Goyal1a745e82014-10-02 15:58:31 -07004393 final ArrayList<AppInfo> appInfos, final UserHandleCompat user, final int reason) {
Winson Chungd64d1762013-08-20 14:37:16 -07004394 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004395 public void run() {
Sunny Goyal1a745e82014-10-02 15:58:31 -07004396 bindComponentsRemoved(packageNames, appInfos, user, reason);
Winson Chung83892cc2013-05-01 16:53:33 -07004397 }
Winson Chungd64d1762013-08-20 14:37:16 -07004398 };
4399 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07004400 return;
4401 }
4402
Sunny Goyal1a745e82014-10-02 15:58:31 -07004403 if (reason == 0) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004404 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4405 for (AppInfo info : appInfos) {
4406 removedComponents.add(info.componentName);
4407 }
Sunny Goyal1a745e82014-10-02 15:58:31 -07004408 if (!packageNames.isEmpty()) {
4409 mWorkspace.removeItemsByPackageName(packageNames, user);
4410 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004411 if (!removedComponents.isEmpty()) {
4412 mWorkspace.removeItemsByComponentName(removedComponents, user);
Sunny Goyal1a745e82014-10-02 15:58:31 -07004413 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004414 // Notify the drag controller
4415 mDragController.onAppsRemoved(packageNames, removedComponents);
4416
Sunny Goyal1a745e82014-10-02 15:58:31 -07004417 } else {
4418 mWorkspace.disableShortcutsByPackageName(packageNames, user, reason);
Joe Onorato36115782010-06-17 13:28:48 -04004419 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07004420
Winson Chungdf95eb12013-10-16 14:57:07 -07004421 // Update AllApps
Winson Chungb745afb2015-03-02 11:51:23 -08004422 if (mAppsView != null) {
4423 mAppsView.removeApps(appInfos);
Winson Chungc58497e2013-09-03 17:48:37 -07004424 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004425 }
Joe Onoratobe386092009-11-17 17:32:16 -08004426
Michael Jurkac402cd92013-05-20 15:49:32 +02004427 private Runnable mBindPackagesUpdatedRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004428 public void run() {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004429 bindAllPackages(mWidgetsModel);
Winson Chung83892cc2013-05-01 16:53:33 -07004430 }
Michael Jurkac402cd92013-05-20 15:49:32 +02004431 };
Hyunyoung Song3f471442015-04-08 19:01:34 -07004432
Hyunyoung Song8821ca92015-05-04 16:28:20 -07004433 @Override
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004434 public void bindAllPackages(final WidgetsModel model) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004435 if (waitUntilResume(mBindPackagesUpdatedRunnable, true)) {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004436 mWidgetsModel = model;
Winson Chung83892cc2013-05-01 16:53:33 -07004437 return;
4438 }
4439
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004440 if (mWidgetsView != null && model != null) {
4441 mWidgetsView.addWidgets(model);
4442 mWidgetsModel = null;
Winson Chung785d2eb2011-04-14 16:08:02 -07004443 }
Winson Chung80baf5a2010-08-09 16:03:15 -07004444 }
4445
Winson Chung400438b2011-01-16 17:53:48 -08004446 private int mapConfigurationOriActivityInfoOri(int configOri) {
4447 final Display d = getWindowManager().getDefaultDisplay();
4448 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
4449 switch (d.getRotation()) {
4450 case Surface.ROTATION_0:
4451 case Surface.ROTATION_180:
4452 // We are currently in the same basic orientation as the natural orientation
4453 naturalOri = configOri;
4454 break;
4455 case Surface.ROTATION_90:
4456 case Surface.ROTATION_270:
4457 // We are currently in the other basic orientation to the natural orientation
4458 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
4459 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
4460 break;
4461 }
4462
4463 int[] oriMap = {
4464 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
4465 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
4466 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
4467 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
4468 };
4469 // Since the map starts at portrait, we need to offset if this device's natural orientation
4470 // is landscape.
4471 int indexOffset = 0;
4472 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
4473 indexOffset = 1;
4474 }
4475 return oriMap[(d.getRotation() + indexOffset) % 4];
4476 }
Adam Cohen446e9402011-09-15 18:21:21 -07004477
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004478 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR2)
Winson Chung4b919f82012-05-01 10:44:08 -07004479 public void lockScreenOrientation() {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004480 if (mRotationEnabled) {
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004481 if (Utilities.ATLEAST_JB_MR2) {
4482 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LOCKED);
4483 } else {
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004484 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
4485 .getConfiguration().orientation));
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004486 }
Winson Chung4b919f82012-05-01 10:44:08 -07004487 }
4488 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004489
Winson Chung4b919f82012-05-01 10:44:08 -07004490 public void unlockScreenOrientation(boolean immediate) {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004491 if (mRotationEnabled) {
Winson Chung4b919f82012-05-01 10:44:08 -07004492 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07004493 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07004494 } else {
4495 mHandler.postDelayed(new Runnable() {
4496 public void run() {
4497 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4498 }
4499 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07004500 }
Winson Chung4b919f82012-05-01 10:44:08 -07004501 }
Winson Chung400438b2011-01-16 17:53:48 -08004502 }
4503
Winson Chunge43a1e72014-01-15 10:33:02 -08004504 protected boolean isLauncherPreinstalled() {
Adam Cohen9211d422014-10-07 18:14:53 -07004505 if (mLauncherCallbacks != null) {
4506 return mLauncherCallbacks.isLauncherPreinstalled();
4507 }
Winson Chunge43a1e72014-01-15 10:33:02 -08004508 PackageManager pm = getPackageManager();
4509 try {
4510 ApplicationInfo ai = pm.getApplicationInfo(getComponentName().getPackageName(), 0);
4511 if ((ai.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
4512 return true;
4513 } else {
4514 return false;
4515 }
4516 } catch (NameNotFoundException e) {
4517 e.printStackTrace();
4518 return false;
4519 }
4520 }
4521
Adam Cohenea90f832014-05-21 15:03:34 -07004522 /**
4523 * This method indicates whether or not we should suggest default wallpaper dimensions
4524 * when our wallpaper cropper was not yet used to set a wallpaper.
4525 */
4526 protected boolean overrideWallpaperDimensions() {
Adam Cohen9211d422014-10-07 18:14:53 -07004527 if (mLauncherCallbacks != null) {
4528 return mLauncherCallbacks.overrideWallpaperDimensions();
4529 }
Adam Cohenea90f832014-05-21 15:03:34 -07004530 return true;
4531 }
4532
Adam Cohen432609a2014-03-13 17:03:22 -07004533 /**
4534 * To be overridden by subclasses to indicate that there is an activity to launch
4535 * before showing the standard launcher experience.
4536 */
4537 protected boolean hasFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004538 if (mLauncherCallbacks != null) {
4539 return mLauncherCallbacks.hasFirstRunActivity();
4540 }
Adam Cohen432609a2014-03-13 17:03:22 -07004541 return false;
4542 }
4543
4544 /**
4545 * To be overridden by subclasses to launch any first run activity
4546 */
4547 protected Intent getFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004548 if (mLauncherCallbacks != null) {
4549 return mLauncherCallbacks.getFirstRunActivity();
4550 }
Adam Cohen432609a2014-03-13 17:03:22 -07004551 return null;
4552 }
4553
Winson Chunga6945242014-01-08 14:04:34 -08004554 private boolean shouldRunFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004555 return !ActivityManager.isRunningInTestHarness() &&
4556 !mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
Winson Chunga6945242014-01-08 14:04:34 -08004557 }
4558
Adam Cohen4a9423d2014-03-28 14:22:31 -07004559 protected boolean hasRunFirstRunActivity() {
4560 return mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
4561 }
4562
Adam Cohen432609a2014-03-13 17:03:22 -07004563 public boolean showFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004564 if (shouldRunFirstRunActivity() &&
4565 hasFirstRunActivity()) {
Winson Chunga6945242014-01-08 14:04:34 -08004566 Intent firstRunIntent = getFirstRunActivity();
4567 if (firstRunIntent != null) {
4568 startActivity(firstRunIntent);
4569 markFirstRunActivityShown();
Adam Cohen432609a2014-03-13 17:03:22 -07004570 return true;
Winson Chunga6945242014-01-08 14:04:34 -08004571 }
4572 }
Adam Cohen432609a2014-03-13 17:03:22 -07004573 return false;
Winson Chunga6945242014-01-08 14:04:34 -08004574 }
4575
4576 private void markFirstRunActivityShown() {
4577 SharedPreferences.Editor editor = mSharedPrefs.edit();
4578 editor.putBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, true);
4579 editor.apply();
4580 }
4581
Adam Cohen432609a2014-03-13 17:03:22 -07004582 /**
4583 * To be overridden by subclasses to indicate that there is an in-activity full-screen intro
4584 * screen that must be displayed and dismissed.
4585 */
4586 protected boolean hasDismissableIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004587 if (mLauncherCallbacks != null) {
4588 return mLauncherCallbacks.hasDismissableIntroScreen();
4589 }
Adam Cohen432609a2014-03-13 17:03:22 -07004590 return false;
4591 }
4592
4593 /**
4594 * Full screen intro screen to be shown and dismissed before the launcher can be used.
4595 */
4596 protected View getIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004597 if (mLauncherCallbacks != null) {
4598 return mLauncherCallbacks.getIntroScreen();
4599 }
Adam Cohen432609a2014-03-13 17:03:22 -07004600 return null;
4601 }
4602
4603 /**
4604 * To be overriden by subclasses to indicate whether the in-activity intro screen has been
4605 * dismissed. This method is ignored if #hasDismissableIntroScreen returns false.
4606 */
4607 private boolean shouldShowIntroScreen() {
4608 return hasDismissableIntroScreen() &&
4609 !mSharedPrefs.getBoolean(INTRO_SCREEN_DISMISSED, false);
4610 }
4611
4612 protected void showIntroScreen() {
4613 View introScreen = getIntroScreen();
4614 changeWallpaperVisiblity(false);
4615 if (introScreen != null) {
4616 mDragLayer.showOverlayView(introScreen);
4617 }
Adam Cohenc3e12c72014-10-31 16:15:36 -07004618 if (mLauncherOverlayContainer != null) {
4619 mLauncherOverlayContainer.setVisibility(View.INVISIBLE);
4620 }
Adam Cohen432609a2014-03-13 17:03:22 -07004621 }
4622
4623 public void dismissIntroScreen() {
4624 markIntroScreenDismissed();
4625 if (showFirstRunActivity()) {
4626 // We delay hiding the intro view until the first run activity is showing. This
4627 // avoids a blip.
4628 mWorkspace.postDelayed(new Runnable() {
4629 @Override
4630 public void run() {
4631 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004632 if (mLauncherOverlayContainer != null) {
4633 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4634 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004635 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004636 }
4637 }, ACTIVITY_START_DELAY);
4638 } else {
4639 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004640 if (mLauncherOverlayContainer != null) {
4641 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4642 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004643 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004644 }
4645 changeWallpaperVisiblity(true);
4646 }
4647
4648 private void markIntroScreenDismissed() {
4649 SharedPreferences.Editor editor = mSharedPrefs.edit();
4650 editor.putBoolean(INTRO_SCREEN_DISMISSED, true);
4651 editor.apply();
4652 }
4653
Adam Cohen091440a2015-03-18 14:16:05 -07004654 @Thunk void showFirstRunClings() {
Sunny Goyal88d60f12014-09-08 03:47:29 -07004655 // The two first run cling paths are mutually exclusive, if the launcher is preinstalled
4656 // on the device, then we always show the first run cling experience (or if there is no
4657 // launcher2). Otherwise, we prompt the user upon started for migration
4658 LauncherClings launcherClings = new LauncherClings(this);
4659 if (launcherClings.shouldShowFirstRunOrMigrationClings()) {
Sunny Goyal639e9062015-08-19 19:17:06 -07004660 mClings = launcherClings;
Sunny Goyal88d60f12014-09-08 03:47:29 -07004661 if (mModel.canMigrateFromOldLauncherDb(this)) {
4662 launcherClings.showMigrationCling();
4663 } else {
Sunny Goyalaf0628f2014-09-19 10:14:48 -07004664 launcherClings.showLongPressCling(true);
Sunny Goyal88d60f12014-09-08 03:47:29 -07004665 }
4666 }
4667 }
4668
Winson Chunga6945242014-01-08 14:04:34 -08004669 void showWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004670 if (mWorkspace != null) mWorkspace.setAlpha(1f);
4671 if (mHotseat != null) mHotseat.setAlpha(1f);
4672 if (mPageIndicators != null) mPageIndicators.setAlpha(1f);
Winson Chung006ee262015-08-03 14:40:11 -07004673 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4674 SearchDropTargetBar.State.SEARCH_BAR, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004675 }
4676
4677 void hideWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004678 if (mWorkspace != null) mWorkspace.setAlpha(0f);
4679 if (mHotseat != null) mHotseat.setAlpha(0f);
4680 if (mPageIndicators != null) mPageIndicators.setAlpha(0f);
Winson Chung006ee262015-08-03 14:40:11 -07004681 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4682 SearchDropTargetBar.State.INVISIBLE, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004683 }
4684
Winson Chung5ffd51d2015-06-25 11:36:50 -07004685 // TODO: These method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004686 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Mathew Inwood72fbec12013-11-19 15:45:07 +00004687 public ItemInfo createAppDragInfo(Intent appLaunchIntent) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004688 // Called from search suggestion
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004689 UserHandleCompat user = null;
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004690 if (Utilities.ATLEAST_LOLLIPOP) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004691 UserHandle userHandle = appLaunchIntent.getParcelableExtra(Intent.EXTRA_USER);
4692 if (userHandle != null) {
4693 user = UserHandleCompat.fromUser(userHandle);
4694 }
4695 }
4696 return createAppDragInfo(appLaunchIntent, user);
Winson Chung5ffd51d2015-06-25 11:36:50 -07004697 }
4698
4699 // TODO: This method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004700 public ItemInfo createAppDragInfo(Intent intent, UserHandleCompat user) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004701 if (user == null) {
4702 user = UserHandleCompat.myUserHandle();
4703 }
4704
4705 // Called from search suggestion, add the profile extra to the intent to ensure that we
4706 // can launch it correctly
Kenny Guyed131872014-04-30 03:02:21 +01004707 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004708 LauncherActivityInfoCompat activityInfo = launcherApps.resolveActivity(intent, user);
Kenny Guyed131872014-04-30 03:02:21 +01004709 if (activityInfo == null) {
Mathew Inwood72fbec12013-11-19 15:45:07 +00004710 return null;
4711 }
Winson Chung5ffd51d2015-06-25 11:36:50 -07004712 return new AppInfo(this, activityInfo, user, mIconCache);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004713 }
4714
Winson Chung5ffd51d2015-06-25 11:36:50 -07004715 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004716 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4717 Bitmap icon) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004718 return new ShortcutInfo(shortcutIntent, caption, caption, icon,
Kenny Guyed131872014-04-30 03:02:21 +01004719 UserHandleCompat.myUserHandle());
4720 }
4721
Winson Chung5ffd51d2015-06-25 11:36:50 -07004722 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004723 public void startDrag(View dragView, ItemInfo dragInfo, DragSource source) {
4724 dragView.setTag(dragInfo);
Winson Chungbabb53e2014-04-14 17:12:49 -07004725 mWorkspace.onExternalDragStartedWithItem(dragView);
4726 mWorkspace.beginExternalDragShared(dragView, source);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004727 }
4728
Winson Chung5ffd51d2015-06-25 11:36:50 -07004729 protected void moveWorkspaceToDefaultScreen() {
4730 mWorkspace.moveToDefaultScreen(false);
4731 }
4732
Anjali Koppalf5d29132014-02-28 13:33:27 -08004733 @Override
4734 public void onPageSwitch(View newPage, int newPageIndex) {
Adam Cohen9211d422014-10-07 18:14:53 -07004735 if (mLauncherCallbacks != null) {
4736 mLauncherCallbacks.onPageSwitch(newPage, newPageIndex);
4737 }
Anjali Koppalf5d29132014-02-28 13:33:27 -08004738 }
4739
Winson Chung80baf5a2010-08-09 16:03:15 -07004740 /**
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004741 * Returns a FastBitmapDrawable with the icon, accurately sized.
4742 */
4743 public FastBitmapDrawable createIconDrawable(Bitmap icon) {
4744 FastBitmapDrawable d = new FastBitmapDrawable(icon);
4745 d.setFilterBitmap(true);
4746 resizeIconDrawable(d);
4747 return d;
4748 }
4749
4750 /**
4751 * Resizes an icon drawable to the correct icon size.
4752 */
Winson5fbe0742015-09-30 15:33:00 -07004753 public Drawable resizeIconDrawable(Drawable icon) {
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004754 icon.setBounds(0, 0, mDeviceProfile.iconSizePx, mDeviceProfile.iconSizePx);
Winson5fbe0742015-09-30 15:33:00 -07004755 return icon;
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004756 }
4757
4758 /**
Joe Onoratobe386092009-11-17 17:32:16 -08004759 * Prints out out state for debugging.
4760 */
4761 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04004762 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08004763 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08004764 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
4765 Log.d(TAG, "mRestoring=" + mRestoring);
4766 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
4767 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004768 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08004769 mModel.dumpState();
Hyunyoung Song3f471442015-04-08 19:01:34 -07004770 // TODO(hyunyoungs): add mWidgetsView.dumpState(); or mWidgetsModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07004771
Daniel Sandler325dc232013-06-05 22:57:57 -04004772 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08004773 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004774
4775 @Override
4776 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
4777 super.dump(prefix, fd, writer, args);
Adam Cohen4caf2982013-08-20 18:54:31 -07004778 synchronized (sDumpLogs) {
4779 writer.println(" ");
4780 writer.println("Debug logs: ");
4781 for (int i = 0; i < sDumpLogs.size(); i++) {
4782 writer.println(" " + sDumpLogs.get(i));
4783 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004784 }
Adam Cohen9211d422014-10-07 18:14:53 -07004785 if (mLauncherCallbacks != null) {
4786 mLauncherCallbacks.dump(prefix, fd, writer, args);
4787 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004788 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004789
4790 public static void dumpDebugLogsToConsole() {
Winson Chungede41292013-09-19 16:27:36 -07004791 if (DEBUG_DUMP_LOG) {
4792 synchronized (sDumpLogs) {
4793 Log.d(TAG, "");
4794 Log.d(TAG, "*********************");
4795 Log.d(TAG, "Launcher debug logs: ");
4796 for (int i = 0; i < sDumpLogs.size(); i++) {
4797 Log.d(TAG, " " + sDumpLogs.get(i));
4798 }
4799 Log.d(TAG, "*********************");
4800 Log.d(TAG, "");
Adam Cohen4caf2982013-08-20 18:54:31 -07004801 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004802 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004803 }
4804
4805 public static void addDumpLog(String tag, String log, boolean debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004806 addDumpLog(tag, log, null, debugLog);
4807 }
4808
4809 public static void addDumpLog(String tag, String log, Exception e, boolean debugLog) {
Adam Cohen4caf2982013-08-20 18:54:31 -07004810 if (debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004811 if (e != null) {
4812 Log.d(tag, log, e);
4813 } else {
4814 Log.d(tag, log);
4815 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004816 }
Winson Chungede41292013-09-19 16:27:36 -07004817 if (DEBUG_DUMP_LOG) {
4818 sDateStamp.setTime(System.currentTimeMillis());
4819 synchronized (sDumpLogs) {
Dan Sandler295ae182013-12-10 16:05:47 -05004820 sDumpLogs.add(sDateFormat.format(sDateStamp) + ": " + tag + ", " + log
4821 + (e == null ? "" : (", Exception: " + e)));
Adam Cohen4caf2982013-08-20 18:54:31 -07004822 }
Winson Chungede41292013-09-19 16:27:36 -07004823 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004824 }
4825
Adam Cohen59400422014-03-05 18:07:04 -08004826 public static CustomAppWidget getCustomAppWidget(String name) {
4827 return sCustomAppWidgets.get(name);
4828 }
4829
4830 public static HashMap<String, CustomAppWidget> getCustomAppWidgets() {
4831 return sCustomAppWidgets;
4832 }
4833
Winson Chungede41292013-09-19 16:27:36 -07004834 public void dumpLogsToLocalData() {
4835 if (DEBUG_DUMP_LOG) {
Michael Jurka43467462013-11-14 12:03:58 +01004836 new AsyncTask<Void, Void, Void>() {
4837 public Void doInBackground(Void ... args) {
Winson Chungede41292013-09-19 16:27:36 -07004838 boolean success = false;
4839 sDateStamp.setTime(sRunStart);
4840 String FILENAME = sDateStamp.getMonth() + "-"
4841 + sDateStamp.getDay() + "_"
4842 + sDateStamp.getHours() + "-"
4843 + sDateStamp.getMinutes() + "_"
4844 + sDateStamp.getSeconds() + ".txt";
4845
4846 FileOutputStream fos = null;
4847 File outFile = null;
4848 try {
4849 outFile = new File(getFilesDir(), FILENAME);
4850 outFile.createNewFile();
4851 fos = new FileOutputStream(outFile);
4852 } catch (Exception e) {
4853 e.printStackTrace();
4854 }
4855 if (fos != null) {
4856 PrintWriter writer = new PrintWriter(fos);
4857
4858 writer.println(" ");
4859 writer.println("Debug logs: ");
4860 synchronized (sDumpLogs) {
4861 for (int i = 0; i < sDumpLogs.size(); i++) {
4862 writer.println(" " + sDumpLogs.get(i));
4863 }
4864 }
4865 writer.close();
4866 }
4867 try {
4868 if (fos != null) {
4869 fos.close();
4870 success = true;
4871 }
4872 } catch (IOException e) {
4873 e.printStackTrace();
4874 }
Michael Jurka43467462013-11-14 12:03:58 +01004875 return null;
Winson Chungede41292013-09-19 16:27:36 -07004876 }
Sunny Goyal8ac727b2015-09-23 15:38:09 -07004877 }.executeOnExecutor(Utilities.THREAD_POOL_EXECUTOR);
Adam Cohen4caf2982013-08-20 18:54:31 -07004878 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004879 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004880}
Michael Jurka2763be32011-02-24 11:19:57 -08004881
Dan Sandlerd5024042014-01-09 15:01:33 -05004882interface DebugIntents {
4883 static final String DELETE_DATABASE = "com.android.launcher3.action.DELETE_DATABASE";
4884 static final String MIGRATE_DATABASE = "com.android.launcher3.action.MIGRATE_DATABASE";
Adam Cohen8b5b05b2014-01-10 21:42:39 +00004885}