blob: c6cb779c4a88c627e979e3fa16b8b1f493289f28 [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
Gilles Debunnedd6c9922010-10-25 11:23:41 -070019import android.animation.Animator;
Michael Jurka8edd75c2010-12-17 20:15:06 -080020import android.animation.AnimatorListenerAdapter;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070021import android.animation.AnimatorSet;
Adam Cohen2801caf2011-05-13 20:57:39 -070022import android.animation.ObjectAnimator;
23import android.animation.PropertyValuesHolder;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070024import android.animation.ValueAnimator;
Sunny Goyal70660032015-05-14 00:07:08 -070025import android.annotation.SuppressLint;
Adam Cohen0b395352014-06-09 22:54:36 +000026import android.annotation.TargetApi;
Michael Jurka946ad472010-07-09 18:05:18 -070027import android.app.Activity;
Brett Chabot2a9e2282011-08-23 15:03:13 -070028import android.app.ActivityManager;
Winson Chungc7450e32012-04-17 17:34:08 -070029import android.app.ActivityOptions;
Chris Wren40c5ed32014-06-24 18:24:23 -040030import android.app.AlertDialog;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080031import android.app.SearchManager;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080032import android.appwidget.AppWidgetHostView;
Michael Jurkaaf442092010-06-10 17:01:57 -070033import android.appwidget.AppWidgetManager;
34import android.appwidget.AppWidgetProviderInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080035import android.content.ActivityNotFoundException;
Joe Onorato2ca0ae72009-11-10 13:14:13 -080036import android.content.BroadcastReceiver;
Michael Jurkae326f182011-11-21 14:05:46 -080037import android.content.ComponentCallbacks2;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040038import android.content.ComponentName;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080039import android.content.Context;
Chris Wren40c5ed32014-06-24 18:24:23 -040040import android.content.DialogInterface;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080041import android.content.Intent;
Winson Chungf0ea4d32011-06-06 14:27:16 -070042import android.content.IntentFilter;
Adam Cohen173f7112015-03-27 15:14:00 -070043import android.content.IntentSender;
Winson Chung82f55532011-08-09 14:14:23 -070044import android.content.SharedPreferences;
Winson Chungaafa03c2010-06-11 17:34:16 -070045import android.content.pm.ActivityInfo;
Winson Chunge43a1e72014-01-15 10:33:02 -080046import android.content.pm.ApplicationInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080047import android.content.pm.PackageManager;
Adam Cohen716b51e2011-06-30 12:09:54 -070048import android.content.pm.PackageManager.NameNotFoundException;
Winsonc0880492015-08-21 11:16:27 -070049import android.content.pm.ResolveInfo;
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 Goyal4a6c6f32015-05-19 12:36:46 -0700152 private static final int WORKSPACE_BACKGROUND_GRADIENT = 0;
153 private static final int WORKSPACE_BACKGROUND_TRANSPARENT = 1;
154 private static final int WORKSPACE_BACKGROUND_BLACK = 2;
155
Sunny Goyal5a1f53b2015-05-27 10:24:24 -0700156 private static final float BOUNCE_ANIMATION_TENSION = 1.3f;
157
Mathew Inwood876a8462013-06-14 14:12:41 +0100158 /**
159 * IntentStarter uses request codes starting with this. This must be greater than all activity
160 * request codes used internally.
161 */
162 protected static final int REQUEST_LAST = 100;
163
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800164 static final int SCREEN_COUNT = 5;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800165
Michael Jurka0a457bf2012-11-19 14:05:05 -0800166 // To turn on these properties, type
167 // adb shell setprop log.tag.PROPERTY_NAME [VERBOSE | SUPPRESS]
Michael Jurka0a457bf2012-11-19 14:05:05 -0800168 static final String DUMP_STATE_PROPERTY = "launcher_dump_state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800169
Winson Chung2672ff92012-05-04 16:22:30 -0700170 // The Intent extra that defines whether to ignore the launch animation
171 static final String INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION =
Daniel Sandler325dc232013-06-05 22:57:57 -0400172 "com.android.launcher3.intent.extra.shortcut.INGORE_LAUNCH_ANIMATION";
Winson Chung2672ff92012-05-04 16:22:30 -0700173
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800174 // Type: int
175 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
Michael Jurka883f55b2010-10-21 15:47:14 -0700176 // Type: int
177 private static final String RUNTIME_STATE = "launcher.state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800178 // Type: int
Winson Chung3d503fb2011-07-13 17:25:49 -0700179 private static final String RUNTIME_STATE_PENDING_ADD_CONTAINER = "launcher.add_container";
180 // Type: int
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800181 private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
182 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700183 private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cell_x";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800184 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700185 private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cell_y";
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700186 // Type: int
187 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_X = "launcher.add_span_x";
188 // Type: int
189 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_Y = "launcher.add_span_y";
190 // Type: parcelable
191 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_INFO = "launcher.add_widget_info";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000192 // Type: parcelable
Adam Cohen4637b5a2013-11-04 18:21:24 -0800193 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_ID = "launcher.add_widget_id";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800194
Adam Cohen432609a2014-03-13 17:03:22 -0700195 static final String INTRO_SCREEN_DISMISSED = "launcher.intro_screen_dismissed";
Adam Cohenb54a5982014-01-08 15:21:04 -0800196 static final String FIRST_RUN_ACTIVITY_DISPLAYED = "launcher.first_run_activity_displayed";
197
Adam Cohen3ed316a2014-07-23 18:21:20 -0700198 static final String FIRST_LOAD_COMPLETE = "launcher.first_load_complete";
199 static final String ACTION_FIRST_LOAD_COMPLETE =
200 "com.android.launcher3.action.FIRST_LOAD_COMPLETE";
201
Sunny Goyal594d76d2014-11-06 10:12:54 -0800202 private static final String QSB_WIDGET_ID = "qsb_widget_id";
203 private static final String QSB_WIDGET_PROVIDER = "qsb_widget_provider";
204
Winson Chunga6945242014-01-08 14:04:34 -0800205 public static final String USER_HAS_MIGRATED = "launcher.user_migrated_from_old_data";
206
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700207 /** The different states that Launcher can be in. */
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700208 enum State { NONE, WORKSPACE, APPS, APPS_SPRING_LOADED, WIDGETS, WIDGETS_SPRING_LOADED }
209
Adam Cohen091440a2015-03-18 14:16:05 -0700210 @Thunk State mState = State.WORKSPACE;
Adam Cohen091440a2015-03-18 14:16:05 -0700211 @Thunk LauncherStateTransitionAnimation mStateTransitionAnimation;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700212
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700213 private boolean mIsSafeModeEnabled;
214
Adam Cohenc2d6e892014-10-16 09:49:24 -0700215 LauncherOverlayCallbacks mLauncherOverlayCallbacks = new LauncherOverlayCallbacksImpl();
216 LauncherOverlay mLauncherOverlay;
Adam Cohena6d04922014-10-23 17:28:30 -0700217 InsettableFrameLayout mLauncherOverlayContainer;
Adam Cohenc2d6e892014-10-16 09:49:24 -0700218
Joe Onorato9c1289c2009-08-17 11:03:03 -0400219 static final int APPWIDGET_HOST_ID = 1024;
Adam Cohenad4e15c2013-10-17 16:21:35 -0700220 public static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
221 private static final int ON_ACTIVITY_RESULT_ANIMATION_DELAY = 500;
Adam Cohen646fdf72014-04-08 16:59:36 -0700222 private static final int ACTIVITY_START_DELAY = 1000;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800223
Winson Chunga2413752012-04-03 14:22:34 -0700224 // How long to wait before the new-shortcut animation automatically pans the workspace
Winson Chung94d67682013-09-25 16:29:40 -0700225 private static int NEW_APPS_PAGE_MOVE_DELAY = 500;
226 private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 5;
Adam Cohen091440a2015-03-18 14:16:05 -0700227 @Thunk static int NEW_APPS_ANIMATION_DELAY = 500;
Winson Chunga2413752012-04-03 14:22:34 -0700228
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800229 private final BroadcastReceiver mCloseSystemDialogsReceiver
230 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800231
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800232 private LayoutInflater mInflater;
233
Adam Cohen091440a2015-03-18 14:16:05 -0700234 @Thunk Workspace mWorkspace;
Craig Mautner360310b2012-10-26 15:13:08 -0700235 private View mLauncherView;
Winson Chunga6945242014-01-08 14:04:34 -0800236 private View mPageIndicators;
Adam Cohen091440a2015-03-18 14:16:05 -0700237 @Thunk DragLayer mDragLayer;
Michael Jurkab737ee62011-11-15 15:57:22 -0800238 private DragController mDragController;
Sunny Goyald3060552015-06-25 19:35:49 -0700239
240 public View mWeightWatcher;
Romain Guycbb89e42009-06-08 15:52:54 -0700241
Sunny Goyalffe83f12014-08-14 17:39:34 -0700242 private AppWidgetManagerCompat mAppWidgetManager;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700243 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700244
Adam Cohen091440a2015-03-18 14:16:05 -0700245 @Thunk ItemInfo mPendingAddInfo = new ItemInfo();
Adam Cohen59400422014-03-05 18:07:04 -0800246 private LauncherAppWidgetProviderInfo mPendingAddWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800247 private int mPendingAddWidgetId = -1;
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700248
Michael Jurka0280c3b2010-09-17 15:00:07 -0700249 private int[] mTmpAddItemCellCoordinates = new int[2];
250
Sunny Goyal316490e2015-06-02 09:38:28 -0700251 @Thunk Hotseat mHotseat;
Jorim Jaggid017f882014-01-14 17:08:48 -0800252 private ViewGroup mOverviewPanel;
Adam Cohenf358a4b2013-07-23 16:47:31 -0700253
Michael Jurka838a4ca2011-02-07 13:33:06 -0800254 private View mAllAppsButton;
Hyunyoung Song98ff38a2015-07-10 17:50:13 -0700255 private View mWidgetsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700256
Winson Chungc51db6a2011-10-05 11:44:49 -0700257 private SearchDropTargetBar mSearchDropTargetBar;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700258
259 // Main container view for the all apps screen.
Winson Chung5f4e0fd2015-05-22 11:12:27 -0700260 @Thunk AllAppsContainerView mAppsView;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700261
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700262 // Main container view and the model for the widget tray screen.
263 @Thunk WidgetsContainerView mWidgetsView;
264 @Thunk WidgetsModel mWidgetsModel;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700265
Winson Chungf0ea4d32011-06-06 14:27:16 -0700266 private boolean mAutoAdvanceRunning = false;
Sunny Goyal594d76d2014-11-06 10:12:54 -0800267 private AppWidgetHostView mQsb;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800268
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800269 private Bundle mSavedState;
Winson Chung4a2afa32012-07-19 14:53:05 -0700270 // We set the state in both onCreate and then onNewIntent in some cases, which causes both
271 // scroll issues (because the workspace may not have been measured yet) and extra work.
272 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
273 private State mOnResumeState = State.NONE;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800274
275 private SpannableStringBuilder mDefaultKeySsb = null;
276
Adam Cohen091440a2015-03-18 14:16:05 -0700277 @Thunk boolean mWorkspaceLoading = true;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400278
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800279 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800280 private boolean mRestoring;
281 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700282 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800283
Michael Jurka1e2f4652013-07-08 18:03:46 -0700284 private ArrayList<Runnable> mBindOnResumeCallbacks = new ArrayList<Runnable>();
Michael Jurka7607c2f2013-04-03 14:33:19 -0700285 private ArrayList<Runnable> mOnResumeCallbacks = new ArrayList<Runnable>();
286
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800287 private Bundle mSavedInstanceState;
288
Joe Onorato9c1289c2009-08-17 11:03:03 -0400289 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800290 private IconCache mIconCache;
Adam Cohen091440a2015-03-18 14:16:05 -0700291 @Thunk boolean mUserPresent = true;
Adam Cohend113e0c2010-11-11 10:48:05 -0800292 private boolean mVisible = false;
Adam Cohened307df2013-10-02 09:37:31 -0700293 private boolean mHasFocus = false;
Adam Cohend113e0c2010-11-11 10:48:05 -0800294 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400295
Sunny Goyal639e9062015-08-19 19:17:06 -0700296 private LauncherClings mClings;
297
Sunny Goyale2df0622015-04-24 11:27:00 -0700298 private static LongArrayMap<FolderInfo> sFolders = new LongArrayMap<>();
Romain Guycbb89e42009-06-08 15:52:54 -0700299
Adam Cohen61f560d2013-09-30 15:58:20 -0700300 private View.OnTouchListener mHapticFeedbackTouchListener;
301
Adam Cohended9f8d2010-11-03 13:25:16 -0700302 // Related to the auto-advancing of widgets
303 private final int ADVANCE_MSG = 1;
304 private final int mAdvanceInterval = 20000;
305 private final int mAdvanceStagger = 250;
306 private long mAutoAdvanceSentTime;
307 private long mAutoAdvanceTimeLeft = -1;
Adam Cohen091440a2015-03-18 14:16:05 -0700308 @Thunk HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
Adam Cohended9f8d2010-11-03 13:25:16 -0700309 new HashMap<View, AppWidgetProviderInfo>();
310
Winson Chung400438b2011-01-16 17:53:48 -0800311 // Determines how long to wait after a rotation before restoring the screen orientation to
312 // match the sensor state.
313 private final int mRestoreScreenOrientationDelay = 500;
314
Adam Cohen091440a2015-03-18 14:16:05 -0700315 @Thunk Drawable mWorkspaceBackgroundDrawable;
Craig Mautner360310b2012-10-26 15:13:08 -0700316
Adam Cohen1462de32012-07-24 22:34:36 -0700317 private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700318 private static final boolean DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE = false;
Adam Cohen1462de32012-07-24 22:34:36 -0700319
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700320 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
Adam Cohen4caf2982013-08-20 18:54:31 -0700321 static Date sDateStamp = new Date();
322 static DateFormat sDateFormat =
323 DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
324 static long sRunStart = System.currentTimeMillis();
325 static final String CORRUPTION_EMAIL_SENT_KEY = "corruptionEmailSent";
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700326
Winson Chung46353de2012-02-16 14:05:10 -0800327 // We only want to get the SharedPreferences once since it does an FS stat each time we get
328 // it from the context.
329 private SharedPreferences mSharedPrefs;
330
Winson Chungf0c6ae02012-03-21 16:10:31 -0700331 // Holds the page that we need to animate to, and the icon views that we need to animate up
332 // when we scroll to that page on resume.
Adam Cohen091440a2015-03-18 14:16:05 -0700333 @Thunk ImageView mFolderIconImageView;
Adam Cohen268c4752012-06-06 17:47:33 -0700334 private Bitmap mFolderIconBitmap;
335 private Canvas mFolderIconCanvas;
336 private Rect mRectForFolderAnimation = new Rect();
Adam Cohen2801caf2011-05-13 20:57:39 -0700337
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700338 private DeviceProfile mDeviceProfile;
339
Adam Cohen4b66bf32015-09-18 12:15:19 -0700340 private boolean mMoveToDefaultScreenFromNewIntent;
341
Winson Chung13eb5272015-05-11 16:30:13 -0700342 // This is set to the view that launched the activity that navigated the user away from
343 // launcher. Since there is no callback for when the activity has finished launching, enable
344 // the press state and keep this reference to reset the press state when we return to launcher.
Michael Jurkaddd62e92011-02-16 17:49:14 -0800345 private BubbleTextView mWaitingForResume;
346
Adam Cohen59400422014-03-05 18:07:04 -0800347 protected static HashMap<String, CustomAppWidget> sCustomAppWidgets =
348 new HashMap<String, CustomAppWidget>();
349
Adam Cohen59400422014-03-05 18:07:04 -0800350 static {
Sunny Goyald3060552015-06-25 19:35:49 -0700351 if (TestingUtils.ENABLE_CUSTOM_WIDGET_TEST) {
352 TestingUtils.addDummyWidget(sCustomAppWidgets);
Adam Cohen59400422014-03-05 18:07:04 -0800353 }
354 }
355
Adam Cohen091440a2015-03-18 14:16:05 -0700356 @Thunk Runnable mBuildLayersRunnable = new Runnable() {
Michael Jurkac1f5d262011-09-30 19:32:27 -0700357 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700358 if (mWorkspace != null) {
359 mWorkspace.buildPageHardwareLayers();
360 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700361 }
362 };
363
Adam Cohendb364c32014-05-20 14:23:40 -0700364 private static PendingAddArguments sPendingAddItem;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800365
Adam Cohen091440a2015-03-18 14:16:05 -0700366 @Thunk static class PendingAddArguments {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800367 int requestCode;
368 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700369 long container;
Adam Cohendcd297f2013-06-18 13:13:40 -0700370 long screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800371 int cellX;
372 int cellY;
Adam Cohendb364c32014-05-20 14:23:40 -0700373 int appWidgetId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800374 }
375
Daniel Sandlerff02d492013-08-05 02:12:05 -0400376 private Stats mStats;
Sunny Goyaldcbcc862014-08-12 15:58:36 -0700377 FocusIndicatorView mFocusHandler;
Sunny Goyal7779d622015-06-11 16:18:39 -0700378 private boolean mRotationEnabled = false;
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400379
380 @Thunk void setOrientation() {
381 if (mRotationEnabled) {
382 unlockScreenOrientation(true);
383 } else {
384 setRequestedOrientation(
385 ActivityInfo.SCREEN_ORIENTATION_NOSENSOR);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700386 }
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400387 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700388
Sunny Goyal7779d622015-06-11 16:18:39 -0700389 private Runnable mUpdateOrientationRunnable = new Runnable() {
390 public void run() {
391 setOrientation();
392 }
393 };
394
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800395 @Override
396 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700397 if (DEBUG_STRICT_MODE) {
398 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
399 .detectDiskReads()
400 .detectDiskWrites()
401 .detectNetwork() // or .detectAll() for all detectable problems
402 .penaltyLog()
403 .build());
404 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
405 .detectLeakedSqlLiteObjects()
406 .detectLeakedClosableObjects()
407 .penaltyLog()
408 .penaltyDeath()
409 .build());
410 }
411
Adam Cohen9211d422014-10-07 18:14:53 -0700412 if (mLauncherCallbacks != null) {
413 mLauncherCallbacks.preOnCreate();
414 }
415
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800416 super.onCreate(savedInstanceState);
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400417
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400418 LauncherAppState.setApplicationContext(getApplicationContext());
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400419 LauncherAppState app = LauncherAppState.getInstance();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700420
Adam Cohen2e6da152015-05-06 11:42:25 -0700421 // Load configuration-specific DeviceProfile
Sunny Goyalc6205602015-05-21 20:46:33 -0700422 mDeviceProfile = getResources().getConfiguration().orientation
423 == Configuration.ORIENTATION_LANDSCAPE ?
Tony Wickham3a3517f2015-10-06 11:27:04 -0700424 app.getInvariantDeviceProfile().landscapeProfile
425 : app.getInvariantDeviceProfile().portraitProfile;
Sunny Goyalc6205602015-05-21 20:46:33 -0700426
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400427 mSharedPrefs = getSharedPreferences(LauncherAppState.getSharedPreferencesKey(),
Winson Chungf0c6ae02012-03-21 16:10:31 -0700428 Context.MODE_PRIVATE);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700429 mIsSafeModeEnabled = getPackageManager().isSafeMode();
Joe Onorato0589f0f2010-02-08 13:44:00 -0800430 mModel = app.setLauncher(this);
431 mIconCache = app.getIconCache();
Adam Cohen2e6da152015-05-06 11:42:25 -0700432
Joe Onorato41a12d22009-10-31 18:30:00 -0400433 mDragController = new DragController(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800434 mInflater = getLayoutInflater();
Winson Chung006ee262015-08-03 14:40:11 -0700435 mStateTransitionAnimation = new LauncherStateTransitionAnimation(this);
Romain Guycbb89e42009-06-08 15:52:54 -0700436
Daniel Sandlerff02d492013-08-05 02:12:05 -0400437 mStats = new Stats(this);
438
Sunny Goyalffe83f12014-08-14 17:39:34 -0700439 mAppWidgetManager = AppWidgetManagerCompat.getInstance(this);
Adam Cohen53805212013-10-01 10:39:23 -0700440
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700441 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
442 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700443
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700444 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
445 // this also ensures that any synchronous binding below doesn't re-trigger another
446 // LauncherModel load.
447 mPaused = false;
448
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800449 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200450 android.os.Debug.startMethodTracing(
451 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800452 }
453
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800454 setContentView(R.layout.launcher);
Michael Jurka7267fa52013-09-26 15:29:57 -0700455
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800456 setupViews();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700457 mDeviceProfile.layout(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800458
Joe Onorato7c312c12009-08-13 21:36:53 -0700459 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700460
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800461 mSavedState = savedInstanceState;
462 restoreState(mSavedState);
463
464 if (PROFILE_STARTUP) {
465 android.os.Debug.stopMethodTracing();
466 }
467
468 if (!mRestoring) {
Adam Cohendb78dc82014-06-19 14:50:51 -0700469 if (DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700470 // If the user leaves launcher, then we should just load items asynchronously when
471 // they return.
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700472 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Winson Chung4a2afa32012-07-19 14:53:05 -0700473 } else {
474 // We only load the page synchronously if the user rotates (or triggers a
475 // configuration change) while launcher is in the foreground
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700476 mModel.startLoader(mWorkspace.getRestorePage());
Winson Chung4a2afa32012-07-19 14:53:05 -0700477 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800478 }
479
480 // For handling default keys
481 mDefaultKeySsb = new SpannableStringBuilder();
482 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800483
484 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
485 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800486
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700487 mRotationEnabled = Utilities.isRotationAllowedForDevice(getApplicationContext());
488 // In case we are on a device with locked rotation, we should look at preferences to check
489 // if the user has specifically allowed rotation.
490 if (!mRotationEnabled) {
Rahul Chaturvedie863fed2015-06-15 14:09:42 -0400491 mRotationEnabled = Utilities.isAllowRotationPrefEnabled(getApplicationContext(), false);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700492 }
493
494 // On large interfaces, or on devices that a user has specifically enabled screen rotation,
495 // we want the screen to auto-rotate based on the current orientation
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400496 setOrientation();
Winson Chungaf40f202013-09-18 18:26:31 -0700497
Adam Cohen9211d422014-10-07 18:14:53 -0700498 if (mLauncherCallbacks != null) {
499 mLauncherCallbacks.onCreate(savedInstanceState);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700500 if (mLauncherCallbacks.hasLauncherOverlay()) {
501 ViewStub stub = (ViewStub) findViewById(R.id.launcher_overlay_stub);
Adam Cohena6d04922014-10-23 17:28:30 -0700502 mLauncherOverlayContainer = (InsettableFrameLayout) stub.inflate();
503 mLauncherOverlay = mLauncherCallbacks.setLauncherOverlayView(
504 mLauncherOverlayContainer, mLauncherOverlayCallbacks);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700505 mWorkspace.setLauncherOverlay(mLauncherOverlay);
506 }
Adam Cohen9211d422014-10-07 18:14:53 -0700507 }
Adam Cohenc3e12c72014-10-31 16:15:36 -0700508
509 if (shouldShowIntroScreen()) {
510 showIntroScreen();
511 } else {
512 showFirstRunActivity();
513 showFirstRunClings();
514 }
Adam Cohen9211d422014-10-07 18:14:53 -0700515 }
516
Sunny Goyal7779d622015-06-11 16:18:39 -0700517 @Override
518 public void onSettingsChanged(String settings, boolean value) {
519 if (Utilities.ALLOW_ROTATION_PREFERENCE_KEY.equals(settings)) {
520 mRotationEnabled = value;
521 if (!waitUntilResume(mUpdateOrientationRunnable, true)) {
522 mUpdateOrientationRunnable.run();
523 }
524 }
525 }
526
Adam Cohen9211d422014-10-07 18:14:53 -0700527 private LauncherCallbacks mLauncherCallbacks;
528
529 public void onPostCreate(Bundle savedInstanceState) {
530 super.onPostCreate(savedInstanceState);
531 if (mLauncherCallbacks != null) {
532 mLauncherCallbacks.onPostCreate(savedInstanceState);
533 }
534 }
535
536 public boolean setLauncherCallbacks(LauncherCallbacks callbacks) {
537 mLauncherCallbacks = callbacks;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700538 mLauncherCallbacks.setLauncherSearchCallback(new Launcher.LauncherSearchCallbacks() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700539 private boolean mWorkspaceImportanceStored = false;
540 private boolean mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700541 private int mWorkspaceImportanceForAccessibility =
542 View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
543 private int mHotseatImportanceForAccessibility = View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
544
545 @Override
546 public void onSearchOverlayOpened() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700547 if (mWorkspaceImportanceStored || mHotseatImportanceStored) {
Jun Mukai8af0cd82015-05-12 12:32:12 -0700548 return;
549 }
550 // The underlying workspace and hotseat are temporarily suppressed by the search
551 // overlay. So they sholudn't be accessible.
Jun Mukaie9819e62015-06-17 10:58:59 -0700552 if (mWorkspace != null) {
553 mWorkspaceImportanceForAccessibility =
554 mWorkspace.getImportantForAccessibility();
555 mWorkspace.setImportantForAccessibility(
556 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
557 mWorkspaceImportanceStored = true;
558 }
559 if (mHotseat != null) {
560 mHotseatImportanceForAccessibility = mHotseat.getImportantForAccessibility();
561 mHotseat.setImportantForAccessibility(
562 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
563 mHotseatImportanceStored = true;
564 }
Jun Mukai8af0cd82015-05-12 12:32:12 -0700565 }
566
567 @Override
568 public void onSearchOverlayClosed() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700569 if (mWorkspaceImportanceStored && mWorkspace != null) {
570 mWorkspace.setImportantForAccessibility(mWorkspaceImportanceForAccessibility);
571 }
572 if (mHotseatImportanceStored && mHotseat != null) {
573 mHotseat.setImportantForAccessibility(mHotseatImportanceForAccessibility);
574 }
575 mWorkspaceImportanceStored = false;
576 mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700577 }
578 });
Adam Cohen9211d422014-10-07 18:14:53 -0700579 return true;
Adam Cohenf9426d52012-06-04 17:26:21 -0700580 }
581
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700582 @Override
Adam Cohen9211d422014-10-07 18:14:53 -0700583 public void onLauncherProviderChange() {
584 if (mLauncherCallbacks != null) {
585 mLauncherCallbacks.onLauncherProviderChange();
586 }
587 }
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700588
Winson Chungef7f8742015-06-04 17:18:17 -0700589 /**
590 * Updates the bounds of all the overlays to match the new fixed bounds.
591 */
592 public void updateOverlayBounds(Rect newBounds) {
593 mAppsView.setSearchBarBounds(newBounds);
594 mWidgetsView.setSearchBarBounds(newBounds);
595 }
596
Adam Cohen9211d422014-10-07 18:14:53 -0700597 /** To be overridden by subclasses to hint to Launcher that we have custom content */
Winson Chung98ca0f72013-07-29 12:58:51 -0700598 protected boolean hasCustomContentToLeft() {
Adam Cohen9211d422014-10-07 18:14:53 -0700599 if (mLauncherCallbacks != null) {
600 return mLauncherCallbacks.hasCustomContentToLeft();
601 }
Winson Chung98ca0f72013-07-29 12:58:51 -0700602 return false;
603 }
604
Dave Hawkeya8881582013-09-17 15:55:33 -0600605 /**
Derek Prothrodadd9842014-01-17 13:43:50 -0500606 * To be overridden by subclasses to populate the custom content container and call
Dave Hawkeya8881582013-09-17 15:55:33 -0600607 * {@link #addToCustomContentPage}. This will only be invoked if
608 * {@link #hasCustomContentToLeft()} is {@code true}.
609 */
Derek Prothrodadd9842014-01-17 13:43:50 -0500610 protected void populateCustomContentContainer() {
Adam Cohen9211d422014-10-07 18:14:53 -0700611 if (mLauncherCallbacks != null) {
612 mLauncherCallbacks.populateCustomContentContainer();
613 }
Dave Hawkeya8881582013-09-17 15:55:33 -0600614 }
615
616 /**
617 * Invoked by subclasses to signal a change to the {@link #addCustomContentToLeft} value to
618 * ensure the custom content page is added or removed if necessary.
619 */
620 protected void invalidateHasCustomContentToLeft() {
Dave Hawkey3a733a72013-09-30 11:52:21 -0600621 if (mWorkspace == null || mWorkspace.getScreenOrder().isEmpty()) {
Dave Hawkeya8881582013-09-17 15:55:33 -0600622 // Not bound yet, wait for bindScreens to be called.
623 return;
624 }
625
626 if (!mWorkspace.hasCustomContent() && hasCustomContentToLeft()) {
627 // Create the custom content page and call the subclass to populate it.
Derek Prothrodadd9842014-01-17 13:43:50 -0500628 mWorkspace.createCustomContentContainer();
629 populateCustomContentContainer();
Dave Hawkeya8881582013-09-17 15:55:33 -0600630 } else if (mWorkspace.hasCustomContent() && !hasCustomContentToLeft()) {
631 mWorkspace.removeCustomContentPage();
632 }
633 }
634
Anton Hanssona2f665f2013-09-26 12:18:32 +0100635 public Stats getStats() {
636 return mStats;
637 }
638
Bjorn Bringertc459e522013-06-07 19:36:01 +0100639 public LayoutInflater getInflater() {
640 return mInflater;
641 }
642
Hyunyoung Song3f471442015-04-08 19:01:34 -0700643 public boolean isDraggingEnabled() {
Winson Chung36a62fe2012-05-06 18:04:42 -0700644 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
645 // that is subsequently removed from the workspace in startBinding().
Sunny Goyal639e9062015-08-19 19:17:06 -0700646 return !isWorkspaceLoading();
Winson Chung36a62fe2012-05-06 18:04:42 -0700647 }
648
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000649 public int getViewIdForItem(ItemInfo info) {
Sunny Goyald1a0e8b2015-08-27 17:45:46 -0700650 // aapt-generated IDs have the high byte nonzero; clamp to the range under that.
651 // This cast is safe as long as the id < 0x00FFFFFF
652 // Since we jail all the dynamically generated views, there should be no clashes
653 // with any other views.
654 return (int) info.id;
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000655 }
656
657 /**
Winson Chung557d6ed2011-07-08 15:34:52 -0700658 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
659 * a configuration step, this allows the proper animations to run after other transitions.
660 */
Adam Cohendb364c32014-05-20 14:23:40 -0700661 private long completeAdd(PendingAddArguments args) {
Adam Cohen83079e42014-09-19 17:43:08 -0700662 long screenId = args.screenId;
663 if (args.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
664 // When the screen id represents an actual screen (as opposed to a rank) we make sure
665 // that the drop page actually exists.
666 screenId = ensurePendingDropLayoutExists(args.screenId);
667 }
Adam Cohendb364c32014-05-20 14:23:40 -0700668
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800669 switch (args.requestCode) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800670 case REQUEST_CREATE_SHORTCUT:
Adam Cohendb364c32014-05-20 14:23:40 -0700671 completeAddShortcut(args.intent, args.container, screenId, args.cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -0700672 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700673 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800674 case REQUEST_CREATE_APPWIDGET:
Adam Cohendb364c32014-05-20 14:23:40 -0700675 completeAddAppWidget(args.appWidgetId, args.container, screenId, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700676 break;
Sunny Goyalff572272014-07-23 13:58:07 -0700677 case REQUEST_RECONFIGURE_APPWIDGET:
678 completeRestoreAppWidget(args.appWidgetId);
679 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800680 }
Michael Jurka27614d22012-04-02 06:40:22 -0700681 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
682 // if you turned the screen off and then back while in All Apps, Launcher would not
683 // return to the workspace. Clearing mAddInfo.container here fixes this issue
684 resetAddInfo();
Adam Cohendb364c32014-05-20 14:23:40 -0700685 return screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800686 }
687
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800688 private void handleActivityResult(
Michael Jurka8b805b12012-04-18 14:23:14 -0700689 final int requestCode, final int resultCode, final Intent data) {
Winson Chunge341d302013-08-16 14:31:00 -0700690 // Reset the startActivity waiting flag
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700691 setWaitingForResult(false);
Adam Cohendb364c32014-05-20 14:23:40 -0700692 final int pendingAddWidgetId = mPendingAddWidgetId;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800693 mPendingAddWidgetId = -1;
Winson Chunge341d302013-08-16 14:31:00 -0700694
Adam Cohenad4e15c2013-10-17 16:21:35 -0700695 Runnable exitSpringLoaded = new Runnable() {
696 @Override
697 public void run() {
698 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
699 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
700 }
701 };
702
Michael Jurka8b805b12012-04-18 14:23:14 -0700703 if (requestCode == REQUEST_BIND_APPWIDGET) {
Winsona1f79d32015-08-05 14:00:45 -0700704 // This is called only if the user did not previously have permissions to bind widgets
Adam Cohenad4e15c2013-10-17 16:21:35 -0700705 final int appWidgetId = data != null ?
Michael Jurka8b805b12012-04-18 14:23:14 -0700706 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
707 if (resultCode == RESULT_CANCELED) {
708 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
Adam Cohen689ff162014-05-08 17:27:56 -0700709 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700710 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
Michael Jurka8b805b12012-04-18 14:23:14 -0700711 } else if (resultCode == RESULT_OK) {
Sunny Goyale6b63a32015-01-16 16:14:29 -0800712 addAppWidgetImpl(appWidgetId, mPendingAddInfo, null,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700713 mPendingAddWidgetInfo, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
Winsona1f79d32015-08-05 14:00:45 -0700714
715 // When the user has granted permission to bind widgets, we should check to see if
716 // we can inflate the default search bar widget.
717 getOrCreateQsbBar();
Michael Jurka8b805b12012-04-18 14:23:14 -0700718 }
719 return;
Michael Jurka336fd4f2013-09-12 00:05:02 +0200720 } else if (requestCode == REQUEST_PICK_WALLPAPER) {
721 if (resultCode == RESULT_OK && mWorkspace.isInOverviewMode()) {
Tony Wickham6ed058c2015-09-09 18:21:49 -0700722 // User could have free-scrolled between pages before picking a wallpaper; make sure
723 // we move to the closest one now to avoid visual jump.
724 mWorkspace.setCurrentPage(mWorkspace.getPageNearestToCenterOfScreen());
Winson Chungdc61c4d2015-04-20 18:26:57 -0700725 showWorkspace(false);
Michael Jurka336fd4f2013-09-12 00:05:02 +0200726 }
727 return;
Michael Jurka8b805b12012-04-18 14:23:14 -0700728 }
Michael Jurka336fd4f2013-09-12 00:05:02 +0200729
Adam Cohened66b2b2012-01-23 17:28:51 -0800730 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
Sunny Goyal5c97f512015-05-19 16:03:28 -0700731 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700732
Adam Cohendb364c32014-05-20 14:23:40 -0700733 final boolean workspaceLocked = isWorkspaceLocked();
Adam Cohened66b2b2012-01-23 17:28:51 -0800734 // We have special handling for widgets
735 if (isWidgetDrop) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800736 final int appWidgetId;
737 int widgetId = data != null ? data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1)
738 : -1;
739 if (widgetId < 0) {
740 appWidgetId = pendingAddWidgetId;
741 } else {
742 appWidgetId = widgetId;
743 }
744
Adam Cohenad4e15c2013-10-17 16:21:35 -0700745 final int result;
Adam Cohenf0129b12013-11-04 17:57:36 -0800746 if (appWidgetId < 0 || resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700747 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not " +
748 "returned from the widget configuration activity.");
Adam Cohenad4e15c2013-10-17 16:21:35 -0700749 result = RESULT_CANCELED;
750 completeTwoStageWidgetDrop(result, appWidgetId);
Adam Cohendb364c32014-05-20 14:23:40 -0700751 final Runnable onComplete = new Runnable() {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700752 @Override
753 public void run() {
754 exitSpringLoadedDragModeDelayed(false, 0, null);
755 }
756 };
Adam Cohendb364c32014-05-20 14:23:40 -0700757 if (workspaceLocked) {
758 // No need to remove the empty screen if we're mid-binding, as the
759 // the bind will not add the empty screen.
760 mWorkspace.postDelayed(onComplete, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
761 } else {
762 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
763 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
764 }
Winson Chung5aaab772012-04-27 15:24:02 -0700765 } else {
Adam Cohendb364c32014-05-20 14:23:40 -0700766 if (!workspaceLocked) {
Adam Cohen83079e42014-09-19 17:43:08 -0700767 if (mPendingAddInfo.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
768 // When the screen id represents an actual screen (as opposed to a rank)
769 // we make sure that the drop page actually exists.
770 mPendingAddInfo.screenId =
771 ensurePendingDropLayoutExists(mPendingAddInfo.screenId);
772 }
Adam Cohendb364c32014-05-20 14:23:40 -0700773 final CellLayout dropLayout = mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
774
775 dropLayout.setDropPending(true);
776 final Runnable onComplete = new Runnable() {
777 @Override
778 public void run() {
779 completeTwoStageWidgetDrop(resultCode, appWidgetId);
780 dropLayout.setDropPending(false);
781 }
782 };
783 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
784 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
785 } else {
786 PendingAddArguments args = preparePendingAddArgs(requestCode, data, appWidgetId,
787 mPendingAddInfo);
788 sPendingAddItem = args;
789 }
Winson Chung5aaab772012-04-27 15:24:02 -0700790 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800791 return;
792 }
793
Sunny Goyalff572272014-07-23 13:58:07 -0700794 if (requestCode == REQUEST_RECONFIGURE_APPWIDGET) {
795 if (resultCode == RESULT_OK) {
796 // Update the widget view.
797 PendingAddArguments args = preparePendingAddArgs(requestCode, data,
798 pendingAddWidgetId, mPendingAddInfo);
799 if (workspaceLocked) {
800 sPendingAddItem = args;
801 } else {
802 completeAdd(args);
803 }
804 }
805 // Leave the widget in the pending state if the user canceled the configure.
806 return;
807 }
808
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800809 // The pattern used here is that a user PICKs a specific application,
810 // which, depending on the target, might need to CREATE the actual target.
Romain Guycbb89e42009-06-08 15:52:54 -0700811
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800812 // For example, the user would PICK_SHORTCUT for "Music playlist", and we
813 // launch over to the Music app to actually CREATE_SHORTCUT.
Winson Chungc7da5552011-08-10 15:28:45 -0700814 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
Adam Cohendb364c32014-05-20 14:23:40 -0700815 final PendingAddArguments args = preparePendingAddArgs(requestCode, data, -1,
816 mPendingAddInfo);
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800817 if (isWorkspaceLocked()) {
Adam Cohendb364c32014-05-20 14:23:40 -0700818 sPendingAddItem = args;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800819 } else {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700820 completeAdd(args);
Adam Cohendb364c32014-05-20 14:23:40 -0700821 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
822 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800823 }
Adam Cohen00074722013-10-11 17:46:09 -0700824 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen689ff162014-05-08 17:27:56 -0700825 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700826 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800827 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800828 mDragLayer.clearAnimatedView();
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800829
830 }
831
832 @Override
833 protected void onActivityResult(
834 final int requestCode, final int resultCode, final Intent data) {
835 handleActivityResult(requestCode, resultCode, data);
836 if (mLauncherCallbacks != null) {
837 mLauncherCallbacks.onActivityResult(requestCode, resultCode, data);
838 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800839 }
840
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600841 /** @Override for MNC */
Sunny Goyaldd2e6df2015-07-07 10:57:57 -0700842 public void onRequestPermissionsResult(int requestCode, String[] permissions,
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600843 int[] grantResults) {
844 if (mLauncherCallbacks != null) {
845 mLauncherCallbacks.onRequestPermissionsResult(requestCode, permissions,
846 grantResults);
847 }
848 }
849
Adam Cohendb364c32014-05-20 14:23:40 -0700850 private PendingAddArguments preparePendingAddArgs(int requestCode, Intent data, int
851 appWidgetId, ItemInfo info) {
852 PendingAddArguments args = new PendingAddArguments();
853 args.requestCode = requestCode;
854 args.intent = data;
855 args.container = info.container;
856 args.screenId = info.screenId;
857 args.cellX = info.cellX;
858 args.cellY = info.cellY;
859 args.appWidgetId = appWidgetId;
860 return args;
861 }
862
863 /**
864 * Check to see if a given screen id exists. If not, create it at the end, return the new id.
865 *
866 * @param screenId the screen id to check
867 * @return the new screen, or screenId if it exists
868 */
869 private long ensurePendingDropLayoutExists(long screenId) {
870 CellLayout dropLayout =
871 (CellLayout) mWorkspace.getScreenWithId(screenId);
872 if (dropLayout == null) {
873 // it's possible that the add screen was removed because it was
874 // empty and a re-bind occurred
875 mWorkspace.addExtraEmptyScreen();
876 return mWorkspace.commitExtraEmptyScreen();
877 } else {
878 return screenId;
879 }
880 }
881
Adam Cohen091440a2015-03-18 14:16:05 -0700882 @Thunk void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700883 CellLayout cellLayout =
Adam Cohendcd297f2013-06-18 13:13:40 -0700884 (CellLayout) mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800885 Runnable onCompleteRunnable = null;
886 int animationType = 0;
887
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700888 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800889 if (resultCode == RESULT_OK) {
890 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
891 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700892 mPendingAddWidgetInfo);
893 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800894 onCompleteRunnable = new Runnable() {
895 @Override
896 public void run() {
897 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700898 mPendingAddInfo.screenId, layout, null);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700899 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
900 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
Adam Cohened66b2b2012-01-23 17:28:51 -0800901 }
902 };
903 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800904 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800905 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
Adam Cohened66b2b2012-01-23 17:28:51 -0800906 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700907 if (mDragLayer.getAnimatedView() != null) {
908 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
909 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
910 animationType, boundWidget, true);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700911 } else if (onCompleteRunnable != null) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700912 // The animated view may be null in the case of a rotation during widget configuration
913 onCompleteRunnable.run();
914 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800915 }
916
917 @Override
Michael Jurkacd496d72013-04-11 11:32:45 -0700918 protected void onStop() {
919 super.onStop();
920 FirstFrameAnimatorHelper.setIsVisible(false);
Adam Cohen9211d422014-10-07 18:14:53 -0700921
922 if (mLauncherCallbacks != null) {
923 mLauncherCallbacks.onStop();
924 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700925 }
926
927 @Override
928 protected void onStart() {
929 super.onStart();
930 FirstFrameAnimatorHelper.setIsVisible(true);
Adam Cohen9211d422014-10-07 18:14:53 -0700931
932 if (mLauncherCallbacks != null) {
933 mLauncherCallbacks.onStart();
934 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700935 }
936
937 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800938 protected void onResume() {
Michael Jurka447bf842013-05-15 14:52:15 +0200939 long startTime = 0;
940 if (DEBUG_RESUME_TIME) {
941 startTime = System.currentTimeMillis();
Daniel Sandler924b9932013-06-12 00:38:25 -0400942 Log.v(TAG, "Launcher.onResume()");
Michael Jurka447bf842013-05-15 14:52:15 +0200943 }
Adam Cohen9211d422014-10-07 18:14:53 -0700944
945 if (mLauncherCallbacks != null) {
946 mLauncherCallbacks.preOnResume();
947 }
948
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800949 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700950
Winson Chung4a2afa32012-07-19 14:53:05 -0700951 // Restore the previous launcher state
Winson Chung75cc8252015-04-10 10:19:58 -0700952 if (mOnResumeState == State.WORKSPACE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700953 showWorkspace(false);
Winson Chungb745afb2015-03-02 11:51:23 -0800954 } else if (mOnResumeState == State.APPS) {
Winson Chung13eb5272015-05-11 16:30:13 -0700955 boolean launchedFromApp = (mWaitingForResume != null);
Winson Chung4ac30062015-05-08 17:34:17 -0700956 // Don't update the predicted apps if the user is returning to launcher in the apps
Winson Chung13eb5272015-05-11 16:30:13 -0700957 // view after launching an app, as they may be depending on the UI to be static to
958 // switch to another app, otherwise, if it was
Winson Chung4ac30062015-05-08 17:34:17 -0700959 showAppsView(false /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -0700960 !launchedFromApp /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -0800961 } else if (mOnResumeState == State.WIDGETS) {
962 showWidgetsView(false, false);
Winson Chung4a2afa32012-07-19 14:53:05 -0700963 }
964 mOnResumeState = State.NONE;
965
Sunny Goyal4a6c6f32015-05-19 12:36:46 -0700966 // Background was set to gradient in onPause(), restore to transparent if in all apps.
Sunny Goyald70ad0d2015-05-26 17:20:07 -0700967 setWorkspaceBackground(mState == State.WORKSPACE ? WORKSPACE_BACKGROUND_GRADIENT
968 : WORKSPACE_BACKGROUND_TRANSPARENT);
Craig Mautner360310b2012-10-26 15:13:08 -0700969
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800970 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700971 if (mRestoring || mOnResumeNeedsLoad) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700972 setWorkspaceLoading(true);
Sunny Goyal22aa3812015-08-19 16:24:27 -0700973
974 // If we're starting binding all over again, clear any bind calls we'd postponed in
975 // the past (see waitUntilResume) -- we don't need them since we're starting binding
976 // from scratch again
977 mBindOnResumeCallbacks.clear();
978
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700979 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400980 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700981 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800982 }
Michael Jurka1e2f4652013-07-08 18:03:46 -0700983 if (mBindOnResumeCallbacks.size() > 0) {
Michael Jurkac402cd92013-05-20 15:49:32 +0200984 // We might have postponed some bind calls until onResume (see waitUntilResume) --
985 // execute them here
986 long startTimeCallbacks = 0;
987 if (DEBUG_RESUME_TIME) {
988 startTimeCallbacks = System.currentTimeMillis();
989 }
990
Michael Jurka1e2f4652013-07-08 18:03:46 -0700991 for (int i = 0; i < mBindOnResumeCallbacks.size(); i++) {
992 mBindOnResumeCallbacks.get(i).run();
Michael Jurkac402cd92013-05-20 15:49:32 +0200993 }
Michael Jurka1e2f4652013-07-08 18:03:46 -0700994 mBindOnResumeCallbacks.clear();
Michael Jurkac402cd92013-05-20 15:49:32 +0200995 if (DEBUG_RESUME_TIME) {
996 Log.d(TAG, "Time spent processing callbacks in onResume: " +
997 (System.currentTimeMillis() - startTimeCallbacks));
998 }
Michael Jurka447bf842013-05-15 14:52:15 +0200999 }
Michael Jurka54554252013-08-01 12:52:23 +02001000 if (mOnResumeCallbacks.size() > 0) {
1001 for (int i = 0; i < mOnResumeCallbacks.size(); i++) {
1002 mOnResumeCallbacks.get(i).run();
1003 }
1004 mOnResumeCallbacks.clear();
1005 }
Winson Chunge4e50662012-01-23 14:45:13 -08001006
1007 // Reset the pressed state of icons that were locked in the press state while activities
1008 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -08001009 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -08001010 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -08001011 mWaitingForResume.setStayPressed(false);
1012 }
Winson Chung82963d52013-10-09 11:20:57 -07001013
Adam Cohen06dff352012-06-01 17:17:08 -07001014 // It is possible that widgets can receive updates while launcher is not in the foreground.
1015 // Consequently, the widgets will be inflated in the orientation of the foreground activity
1016 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
1017 // orientation.
Sunny Goyal6bec75f2015-10-01 18:50:48 -07001018 if (!isWorkspaceLoading()) {
1019 getWorkspace().reinflateWidgetsIfNecessary();
1020 }
Sunny Goyal22235bc2015-04-03 09:23:43 -07001021 reinflateQSBIfNecessary();
Adam Cohenf9426d52012-06-04 17:26:21 -07001022
Michael Jurka447bf842013-05-15 14:52:15 +02001023 if (DEBUG_RESUME_TIME) {
1024 Log.d(TAG, "Time spent in onResume: " + (System.currentTimeMillis() - startTime));
1025 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001026
Adam Cohen4b66bf32015-09-18 12:15:19 -07001027 // We want to suppress callbacks about CustomContent being shown if we have just received
1028 // onNewIntent while the user was present within launcher. In that case, we post a call
1029 // to move the user to the main screen (which will occur after onResume). We don't want to
1030 // have onHide (from onPause), then onShow, then onHide again, which we get if we don't
1031 // suppress here.
1032 if (mWorkspace.getCustomContentCallbacks() != null
1033 && !mMoveToDefaultScreenFromNewIntent) {
Adam Cohen6fecd412013-10-02 17:41:50 -07001034 // If we are resuming and the custom content is the current page, we call onShow().
Adam Cohen4b66bf32015-09-18 12:15:19 -07001035 // It is also possible that onShow will instead be called slightly after first layout
Adam Cohen6fecd412013-10-02 17:41:50 -07001036 // if PagedView#setRestorePage was set to the custom content page in onCreate().
1037 if (mWorkspace.isOnOrMovingToCustomContent()) {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001038 mWorkspace.getCustomContentCallbacks().onShow(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001039 }
1040 }
Adam Cohen4b66bf32015-09-18 12:15:19 -07001041 mMoveToDefaultScreenFromNewIntent = false;
Winson Chungcd99cd32015-04-29 11:03:24 -07001042 updateInteraction(Workspace.State.NORMAL, mWorkspace.getState());
Adam Cohen53805212013-10-01 10:39:23 -07001043 mWorkspace.onResume();
Sunny Goyale755d462014-07-22 13:48:29 -07001044
Sunny Goyal756adbc2015-04-16 15:20:51 -07001045 if (!isWorkspaceLoading()) {
1046 // Process any items that were added while Launcher was away.
1047 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
1048 }
Adam Cohen9211d422014-10-07 18:14:53 -07001049
1050 if (mLauncherCallbacks != null) {
1051 mLauncherCallbacks.onResume();
1052 }
Adam Cohen06dff352012-06-01 17:17:08 -07001053 }
1054
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001055 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001056 protected void onPause() {
Winson Chung997a9232013-07-24 15:33:46 -07001057 // Ensure that items added to Launcher are queued until Launcher returns
1058 InstallShortcutReceiver.enableInstallQueue();
1059
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001060 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001061 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -08001062 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -07001063 mDragController.resetLastGestureUpTime();
Adam Cohen6fecd412013-10-02 17:41:50 -07001064
1065 // We call onHide() aggressively. The custom content callbacks should be able to
1066 // debounce excess onHide calls.
1067 if (mWorkspace.getCustomContentCallbacks() != null) {
1068 mWorkspace.getCustomContentCallbacks().onHide();
1069 }
Romain Guycbb89e42009-06-08 15:52:54 -07001070
Adam Cohen9211d422014-10-07 18:14:53 -07001071 if (mLauncherCallbacks != null) {
1072 mLauncherCallbacks.onPause();
Adam Cohenbffe7452013-07-22 18:21:45 -07001073 }
Adam Cohenbffe7452013-07-22 18:21:45 -07001074 }
1075
1076 public interface CustomContentCallbacks {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001077 // Custom content is completely shown. {@code fromResume} indicates whether this was caused
1078 // by a onResume or by scrolling otherwise.
1079 public void onShow(boolean fromResume);
Adam Cohenbffe7452013-07-22 18:21:45 -07001080
1081 // Custom content is completely hidden
1082 public void onHide();
Adam Cohenc36fa5c2013-08-29 11:54:42 -07001083
1084 // Custom content scroll progress changed. From 0 (not showing) to 1 (fully showing).
1085 public void onScrollProgressChanged(float progress);
Jan-Willem Maarse2ff91c42014-07-10 15:58:12 -07001086
1087 // Indicates whether the user is allowed to scroll away from the custom content.
1088 boolean isScrollingAllowed();
Adam Cohenbffe7452013-07-22 18:21:45 -07001089 }
1090
Adam Cohenc2d6e892014-10-16 09:49:24 -07001091 public interface LauncherOverlay {
1092
1093 /**
1094 * Touch interaction leading to overscroll has begun
1095 */
1096 public void onScrollInteractionBegin();
1097
1098 /**
1099 * Touch interaction related to overscroll has ended
1100 */
1101 public void onScrollInteractionEnd();
1102
1103 /**
1104 * Scroll progress, between 0 and 100, when the user scrolls beyond the leftmost
1105 * screen (or in the case of RTL, the rightmost screen).
1106 */
1107 public void onScrollChange(int progress, boolean rtl);
1108
1109 /**
1110 * Screen has stopped scrolling
1111 */
1112 public void onScrollSettled();
1113
1114 /**
1115 * This method can be called by the Launcher in order to force the LauncherOverlay
1116 * to exit fully immersive mode.
1117 */
1118 public void forceExitFullImmersion();
1119 }
1120
Jun Mukai8af0cd82015-05-12 12:32:12 -07001121 public interface LauncherSearchCallbacks {
1122 /**
1123 * Called when the search overlay is shown.
1124 */
1125 public void onSearchOverlayOpened();
1126
1127 /**
1128 * Called when the search overlay is dismissed.
1129 */
1130 public void onSearchOverlayClosed();
1131 }
1132
Adam Cohenc2d6e892014-10-16 09:49:24 -07001133 public interface LauncherOverlayCallbacks {
1134 /**
1135 * This method indicates whether a call to {@link #enterFullImmersion()} will succeed,
1136 * however it doesn't modify any state within the launcher.
1137 */
1138 public boolean canEnterFullImmersion();
1139
1140 /**
1141 * Should be called to tell Launcher that the LauncherOverlay will take over interaction,
1142 * eg. by occupying the full screen and handling all touch events.
1143 *
1144 * @return true if Launcher allows the LauncherOverlay to become fully immersive. In this
1145 * case, Launcher will modify any necessary state and assumes the overlay is
1146 * handling all interaction. If false, the LauncherOverlay should cancel any
1147 *
1148 */
1149 public boolean enterFullImmersion();
1150
1151 /**
1152 * Must be called when exiting fully immersive mode. Indicates to Launcher that it has
1153 * full control over UI and state.
1154 */
1155 public void exitFullImmersion();
1156 }
1157
1158 class LauncherOverlayCallbacksImpl implements LauncherOverlayCallbacks {
1159
1160 @Override
1161 public boolean canEnterFullImmersion() {
1162 return mState == State.WORKSPACE;
1163 }
1164
1165 @Override
1166 public boolean enterFullImmersion() {
1167 if (mState == State.WORKSPACE) {
1168 // When fully immersed, disregard any touches which fall through.
1169 mDragLayer.setBlockTouch(true);
1170 return true;
1171 }
1172 return false;
1173 }
1174
1175 @Override
1176 public void exitFullImmersion() {
1177 mDragLayer.setBlockTouch(false);
1178 }
1179 }
1180
Jorim Jaggid017f882014-01-14 17:08:48 -08001181 protected boolean hasSettings() {
Adam Cohen9211d422014-10-07 18:14:53 -07001182 if (mLauncherCallbacks != null) {
1183 return mLauncherCallbacks.hasSettings();
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07001184 } else {
1185 // On devices with a locked orientation, we will at least have the allow rotation
1186 // setting.
1187 return !Utilities.isRotationAllowedForDevice(this);
Adam Cohen9211d422014-10-07 18:14:53 -07001188 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001189 }
1190
Adam Cohen9211d422014-10-07 18:14:53 -07001191 public void addToCustomContentPage(View customContent,
Adam Cohen53805212013-10-01 10:39:23 -07001192 CustomContentCallbacks callbacks, String description) {
1193 mWorkspace.addToCustomContentPage(customContent, callbacks, description);
Adam Cohen66a01fd2013-06-11 12:48:00 -07001194 }
1195
Adam Cohenedb40762013-07-18 16:45:45 -07001196 // The custom content needs to offset its content to account for the QSB
1197 public int getTopOffsetForCustomContent() {
1198 return mWorkspace.getPaddingTop();
1199 }
1200
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001201 @Override
1202 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001203 // Flag the loader to stop early before switching
Adam Cohen1a85c582014-09-30 09:48:49 -07001204 if (mModel.isCurrentCallbacks(this)) {
1205 mModel.stopLoader();
1206 }
Hyunyoung Song3f471442015-04-08 19:01:34 -07001207 //TODO(hyunyoungs): stop the widgets loader when there is a rotation.
1208
Romain Guy13c2e7b2010-03-10 19:45:00 -08001209 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001210 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001211
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001212 // We can't hide the IME if it was forced open. So don't bother
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001213 @Override
1214 public void onWindowFocusChanged(boolean hasFocus) {
1215 super.onWindowFocusChanged(hasFocus);
Adam Cohened307df2013-10-02 09:37:31 -07001216 mHasFocus = hasFocus;
Adam Cohen9211d422014-10-07 18:14:53 -07001217
1218 if (mLauncherCallbacks != null) {
1219 mLauncherCallbacks.onWindowFocusChanged(hasFocus);
1220 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001221 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001222
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001223 private boolean acceptFilter() {
1224 final InputMethodManager inputManager = (InputMethodManager)
1225 getSystemService(Context.INPUT_METHOD_SERVICE);
1226 return !inputManager.isFullscreenMode();
1227 }
1228
1229 @Override
1230 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -07001231 final int uniChar = event.getUnicodeChar();
1232 final boolean handled = super.onKeyDown(keyCode, event);
1233 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
1234 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001235 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
1236 keyCode, event);
1237 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001238 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -07001239 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -07001240 // showSearchDialog()
1241 // If there are multiple keystrokes before the search dialog takes focus,
1242 // onSearchRequested() will be called for every keystroke,
1243 // but it is idempotent, so it's fine.
1244 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001245 }
1246 }
1247
Joe Onorato8a9625e2010-01-28 15:55:35 -08001248 // Eat the long press event so the keyboard doesn't come up.
1249 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
1250 return true;
1251 }
1252
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001253 return handled;
1254 }
1255
Winson46163472015-09-22 17:31:56 -07001256 @Override
1257 public boolean onKeyUp(int keyCode, KeyEvent event) {
1258 if (keyCode == KeyEvent.KEYCODE_MENU) {
1259 // Ignore the menu key if we are currently dragging or are on the custom content screen
1260 if (!isOnCustomContent() && !mDragController.isDragging()) {
1261 // Close any open folders
1262 closeFolder();
1263
1264 // Stop resizing any widgets
1265 mWorkspace.exitWidgetResizeMode();
1266
1267 // Show the overview mode if we are on the workspace
1268 if (mState == State.WORKSPACE && !mWorkspace.isInOverviewMode() &&
1269 !mWorkspace.isSwitchingState()) {
1270 mOverviewPanel.requestFocus();
1271 showOverviewMode(true);
1272 }
1273 }
1274 return true;
1275 }
1276 return super.onKeyUp(keyCode, event);
1277 }
1278
Karl Rosaen138a0412009-04-23 19:00:21 -07001279 private String getTypedText() {
1280 return mDefaultKeySsb.toString();
1281 }
1282
1283 private void clearTypedText() {
1284 mDefaultKeySsb.clear();
1285 mDefaultKeySsb.clearSpans();
1286 Selection.setSelection(mDefaultKeySsb, 0);
1287 }
1288
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001289 /**
Michael Jurka883f55b2010-10-21 15:47:14 -07001290 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
1291 * State
1292 */
1293 private static State intToState(int stateOrdinal) {
1294 State state = State.WORKSPACE;
1295 final State[] stateValues = State.values();
1296 for (int i = 0; i < stateValues.length; i++) {
1297 if (stateValues[i].ordinal() == stateOrdinal) {
1298 state = stateValues[i];
1299 break;
1300 }
1301 }
1302 return state;
1303 }
1304
1305 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001306 * Restores the previous state, if it exists.
1307 *
1308 * @param savedState The previous state.
1309 */
1310 private void restoreState(Bundle savedState) {
1311 if (savedState == null) {
1312 return;
1313 }
1314
Michael Jurka883f55b2010-10-21 15:47:14 -07001315 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungb745afb2015-03-02 11:51:23 -08001316 if (state == State.APPS || state == State.WIDGETS) {
1317 mOnResumeState = state;
Joe Onorato3a8820b2009-11-10 15:06:42 -08001318 }
1319
Adam Cohen21cd0022013-10-09 18:57:02 -07001320 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN,
1321 PagedView.INVALID_RESTORE_PAGE);
1322 if (currentScreen != PagedView.INVALID_RESTORE_PAGE) {
Winson Chung8c87cd82013-07-23 16:20:10 -07001323 mWorkspace.setRestorePage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001324 }
1325
Winson Chung3d503fb2011-07-13 17:25:49 -07001326 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
Adam Cohendcd297f2013-06-18 13:13:40 -07001327 final long pendingAddScreen = savedState.getLong(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001328
Winson Chung3d503fb2011-07-13 17:25:49 -07001329 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
1330 mPendingAddInfo.container = pendingAddContainer;
Adam Cohendcd297f2013-06-18 13:13:40 -07001331 mPendingAddInfo.screenId = pendingAddScreen;
Winson Chung3d503fb2011-07-13 17:25:49 -07001332 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
1333 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001334 mPendingAddInfo.spanX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_X);
1335 mPendingAddInfo.spanY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y);
Adam Cohenb823ae42015-03-27 18:07:52 -07001336 AppWidgetProviderInfo info = savedState.getParcelable(
1337 RUNTIME_STATE_PENDING_ADD_WIDGET_INFO);
Sunny Goyalf044bb12015-05-12 13:30:07 -07001338 mPendingAddWidgetInfo = info == null ?
1339 null : LauncherAppWidgetProviderInfo.fromProviderInfo(this, info);
1340
Adam Cohen4637b5a2013-11-04 18:21:24 -08001341 mPendingAddWidgetId = savedState.getInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID);
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001342 setWaitingForResult(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001343 mRestoring = true;
1344 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001345 }
1346
1347 /**
1348 * Finds all the views we need and configure them properly.
1349 */
1350 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -07001351 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -04001352
Craig Mautner360310b2012-10-26 15:13:08 -07001353 mLauncherView = findViewById(R.id.launcher);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001354 mFocusHandler = (FocusIndicatorView) findViewById(R.id.focus_indicator);
Winson Chung4c98d922011-05-31 16:50:48 -07001355 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
1356 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Anjali Koppalf5d29132014-02-28 13:33:27 -08001357 mWorkspace.setPageSwitchListener(this);
Winson Chunga6945242014-01-08 14:04:34 -08001358 mPageIndicators = mDragLayer.findViewById(R.id.page_indicator);
Craig Mautner360310b2012-10-26 15:13:08 -07001359
John Spurlock77e1f472013-09-11 10:09:51 -04001360 mLauncherView.setSystemUiVisibility(
1361 View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
Craig Mautner360310b2012-10-26 15:13:08 -07001362 mWorkspaceBackgroundDrawable = getResources().getDrawable(R.drawable.workspace_bg);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001363
Winson Chung4c98d922011-05-31 16:50:48 -07001364 // Setup the drag layer
1365 mDragLayer.setup(this, dragController);
1366
Winson Chung3d503fb2011-07-13 17:25:49 -07001367 // Setup the hotseat
1368 mHotseat = (Hotseat) findViewById(R.id.hotseat);
1369 if (mHotseat != null) {
Winson Chung11a1a532013-09-13 11:14:45 -07001370 mHotseat.setOnLongClickListener(this);
Winson Chung3d503fb2011-07-13 17:25:49 -07001371 }
1372
Jorim Jaggid017f882014-01-14 17:08:48 -08001373 mOverviewPanel = (ViewGroup) findViewById(R.id.overview_panel);
Tony Wickham6b7653d2015-09-02 16:11:09 -07001374 // Long-clicking buttons in the overview panel does the same thing as clicking them.
1375 OnLongClickListener performClickOnLongClick = new OnLongClickListener() {
1376 @Override
1377 public boolean onLongClick(View v) {
1378 return v.performClick();
1379 }
1380 };
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001381 mWidgetsButton = findViewById(R.id.widget_button);
1382 mWidgetsButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001383 @Override
Tony Wickham6b7653d2015-09-02 16:11:09 -07001384 public void onClick(View view) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001385 if (!mWorkspace.isSwitchingState()) {
Tony Wickham6b7653d2015-09-02 16:11:09 -07001386 onClickAddWidgetButton(view);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001387 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001388 }
1389 });
Tony Wickham6b7653d2015-09-02 16:11:09 -07001390 mWidgetsButton.setOnLongClickListener(performClickOnLongClick);
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001391 mWidgetsButton.setOnTouchListener(getHapticFeedbackTouchListener());
Adam Cohen61f560d2013-09-30 15:58:20 -07001392
1393 View wallpaperButton = findViewById(R.id.wallpaper_button);
1394 wallpaperButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001395 @Override
Tony Wickham6b7653d2015-09-02 16:11:09 -07001396 public void onClick(View view) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001397 if (!mWorkspace.isSwitchingState()) {
Tony Wickham6b7653d2015-09-02 16:11:09 -07001398 onClickWallpaperPicker(view);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001399 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001400 }
1401 });
Tony Wickham6b7653d2015-09-02 16:11:09 -07001402 wallpaperButton.setOnLongClickListener(performClickOnLongClick);
Adam Cohen61f560d2013-09-30 15:58:20 -07001403 wallpaperButton.setOnTouchListener(getHapticFeedbackTouchListener());
1404
1405 View settingsButton = findViewById(R.id.settings_button);
Jorim Jaggid017f882014-01-14 17:08:48 -08001406 if (hasSettings()) {
1407 settingsButton.setOnClickListener(new OnClickListener() {
1408 @Override
Tony Wickham6b7653d2015-09-02 16:11:09 -07001409 public void onClick(View view) {
Jorim Jaggid017f882014-01-14 17:08:48 -08001410 if (!mWorkspace.isSwitchingState()) {
Tony Wickham6b7653d2015-09-02 16:11:09 -07001411 onClickSettingsButton(view);
Jorim Jaggid017f882014-01-14 17:08:48 -08001412 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08001413 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001414 });
Tony Wickham6b7653d2015-09-02 16:11:09 -07001415 settingsButton.setOnLongClickListener(performClickOnLongClick);
Jorim Jaggid017f882014-01-14 17:08:48 -08001416 settingsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1417 } else {
1418 settingsButton.setVisibility(View.GONE);
Jorim Jaggid017f882014-01-14 17:08:48 -08001419 }
1420
Adam Cohendbdff6b2013-09-18 19:09:15 -07001421 mOverviewPanel.setAlpha(0f);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001422
Winson Chung4c98d922011-05-31 16:50:48 -07001423 // Setup the workspace
1424 mWorkspace.setHapticFeedbackEnabled(false);
1425 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -07001426 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -07001427 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001428
Winson Chungf0ea4d32011-06-06 14:27:16 -07001429 // Get the search/delete bar
Adam Cohen24ce0b32014-01-14 16:18:14 -08001430 mSearchDropTargetBar = (SearchDropTargetBar)
1431 mDragLayer.findViewById(R.id.search_drop_target_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001432
Winson Chungef7f8742015-06-04 17:18:17 -07001433 // Setup Apps and Widgets
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001434 mAppsView = (AllAppsContainerView) findViewById(R.id.apps_view);
Hyunyoung Song3f471442015-04-08 19:01:34 -07001435 mWidgetsView = (WidgetsContainerView) findViewById(R.id.widgets_view);
Winson Chungef7f8742015-06-04 17:18:17 -07001436 if (mLauncherCallbacks != null && mLauncherCallbacks.getAllAppsSearchBarController() != null) {
1437 mAppsView.setSearchBarController(mLauncherCallbacks.getAllAppsSearchBarController());
1438 } else {
1439 mAppsView.setSearchBarController(mAppsView.newDefaultAppSearchController());
1440 }
Craig Mautner360310b2012-10-26 15:13:08 -07001441
Winson Chung3d503fb2011-07-13 17:25:49 -07001442 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -07001443 dragController.setDragScoller(mWorkspace);
1444 dragController.setScrollView(mDragLayer);
1445 dragController.setMoveTarget(mWorkspace);
1446 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -07001447 if (mSearchDropTargetBar != null) {
1448 mSearchDropTargetBar.setup(this, dragController);
Adam Cohenb0df1b02015-03-18 22:21:40 -07001449 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Michael Jurkae0f5a612011-02-07 16:45:41 -08001450 }
Daniel Sandler924b9932013-06-12 00:38:25 -04001451
Sunny Goyald3060552015-06-25 19:35:49 -07001452 if (TestingUtils.MEMORY_DUMP_ENABLED) {
1453 TestingUtils.addWeightWatcher(this);
Daniel Sandler924b9932013-06-12 00:38:25 -04001454 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001455 }
1456
1457 /**
Anjali Koppal5ad44842014-03-10 20:34:39 -07001458 * Sets the all apps button. This method is called from {@link Hotseat}.
1459 */
1460 public void setAllAppsButton(View allAppsButton) {
1461 mAllAppsButton = allAppsButton;
1462 }
1463
1464 public View getAllAppsButton() {
1465 return mAllAppsButton;
1466 }
1467
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001468 public View getWidgetsButton() {
1469 return mWidgetsButton;
1470 }
1471
Anjali Koppal5ad44842014-03-10 20:34:39 -07001472 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001473 * Creates a view representing a shortcut.
1474 *
1475 * @param info The data structure describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001476 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001477 View createShortcut(ShortcutInfo info) {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001478 return createShortcut((ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001479 }
1480
1481 /**
1482 * Creates a view representing a shortcut inflated from the specified resource.
1483 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001484 * @param parent The group the shortcut belongs to.
1485 * @param info The data structure describing the shortcut.
1486 *
1487 * @return A View inflated from layoutResId.
1488 */
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001489 public View createShortcut(ViewGroup parent, ShortcutInfo info) {
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001490 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(R.layout.app_icon,
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001491 parent, false);
1492 favorite.applyFromShortcutInfo(info, mIconCache);
1493 favorite.setCompoundDrawablePadding(mDeviceProfile.iconDrawablePaddingPx);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001494 favorite.setOnClickListener(this);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001495 favorite.setOnFocusChangeListener(mFocusHandler);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001496 return favorite;
1497 }
1498
1499 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001500 * Add a shortcut to the workspace.
1501 *
1502 * @param data The intent describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001503 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001504 private void completeAddShortcut(Intent data, long container, long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07001505 int cellY) {
1506 int[] cellXY = mTmpAddItemCellCoordinates;
1507 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohendcd297f2013-06-18 13:13:40 -07001508 CellLayout layout = getCellLayout(container, screenId);
Romain Guycbb89e42009-06-08 15:52:54 -07001509
Sunny Goyal5c97f512015-05-19 16:03:28 -07001510 ShortcutInfo info = InstallShortcutReceiver.fromShortcutIntent(this, data);
Adam Cohend9198822011-11-22 16:42:47 -08001511 if (info == null) {
1512 return;
1513 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001514 final View view = createShortcut(info);
1515
Sunny Goyal5c97f512015-05-19 16:03:28 -07001516 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001517 // First we check if we already know the exact location where we want to add this item.
1518 if (cellX >= 0 && cellY >= 0) {
1519 cellXY[0] = cellX;
1520 cellXY[1] = cellY;
1521 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001522
1523 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001524 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001525 true, null,null)) {
1526 return;
1527 }
1528 DragObject dragObject = new DragObject();
1529 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001530 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1531 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001532 return;
1533 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001534 } else if (touchXY != null) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08001535 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001536 int[] result = layout.findNearestVacantArea(touchXY[0], touchXY[1], 1, 1, cellXY);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001537 foundCellSpan = (result != null);
1538 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001539 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001540 }
1541
1542 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001543 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001544 return;
1545 }
1546
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001547 LauncherModel.addItemToDatabase(this, info, container, screenId, cellXY[0], cellXY[1]);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001548
1549 if (!mRestoring) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001550 mWorkspace.addInScreen(view, container, screenId, cellXY[0], cellXY[1], 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07001551 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001552 }
1553 }
1554
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001555 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001556 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001557 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001558 * @param appWidgetId The app widget id
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001559 */
Adam Cohen091440a2015-03-18 14:16:05 -07001560 @Thunk void completeAddAppWidget(int appWidgetId, long container, long screenId,
Adam Cohen59400422014-03-05 18:07:04 -08001561 AppWidgetHostView hostView, LauncherAppWidgetProviderInfo appWidgetInfo) {
1562
1563 ItemInfo info = mPendingAddInfo;
Adam Cohened66b2b2012-01-23 17:28:51 -08001564 if (appWidgetInfo == null) {
Adam Cohen59400422014-03-05 18:07:04 -08001565 appWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(this,
1566 mAppWidgetManager.getAppWidgetInfo(appWidgetId));
Adam Cohened66b2b2012-01-23 17:28:51 -08001567 }
Romain Guycbb89e42009-06-08 15:52:54 -07001568
Adam Cohen59400422014-03-05 18:07:04 -08001569 if (appWidgetInfo.isCustomWidget) {
1570 appWidgetId = LauncherAppWidgetInfo.CUSTOM_WIDGET_ID;
Michael Jurkaa63c4522010-08-19 13:52:27 -07001571 }
1572
Adam Cohen59400422014-03-05 18:07:04 -08001573 LauncherAppWidgetInfo launcherInfo;
1574 launcherInfo = new LauncherAppWidgetInfo(appWidgetId, appWidgetInfo.provider);
1575 launcherInfo.spanX = info.spanX;
1576 launcherInfo.spanY = info.spanY;
1577 launcherInfo.minSpanX = info.minSpanX;
1578 launcherInfo.minSpanY = info.minSpanY;
Sunny Goyalffe83f12014-08-14 17:39:34 -07001579 launcherInfo.user = mAppWidgetManager.getUser(appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001580
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001581 LauncherModel.addItemToDatabase(this, launcherInfo,
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001582 container, screenId, info.cellX, info.cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001583
1584 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001585 if (hostView == null) {
1586 // Perform actual inflation because we're live
Adam Cohen59400422014-03-05 18:07:04 -08001587 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId,
1588 appWidgetInfo);
Adam Cohened66b2b2012-01-23 17:28:51 -08001589 } else {
1590 // The AppWidgetHostView has already been inflated and instantiated
1591 launcherInfo.hostView = hostView;
1592 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001593 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001594 launcherInfo.hostView.setVisibility(View.VISIBLE);
Adam Cohenaaa5c212012-10-05 18:14:31 -07001595 launcherInfo.notifyWidgetSizeChanged(this);
1596
Adam Cohen59400422014-03-05 18:07:04 -08001597 mWorkspace.addInScreen(launcherInfo.hostView, container, screenId, info.cellX,
1598 info.cellY, launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001599
1600 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001601 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001602 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001603 }
Romain Guycbb89e42009-06-08 15:52:54 -07001604
Adam Cohended9f8d2010-11-03 13:25:16 -07001605 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1606 @Override
1607 public void onReceive(Context context, Intent intent) {
1608 final String action = intent.getAction();
1609 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1610 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001611 mDragLayer.clearAllResizeFrames();
Winson Chungb745afb2015-03-02 11:51:23 -08001612 updateAutoAdvanceState();
Winson Chung337cd9d2011-03-30 10:39:30 -07001613
Winson Chungc100e8e2011-08-09 16:02:43 -07001614 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001615 // processing a multi-step drop
Hyunyoung Song3f471442015-04-08 19:01:34 -07001616 if (mAppsView != null && mWidgetsView != null &&
Winson Chungb745afb2015-03-02 11:51:23 -08001617 mPendingAddInfo.container == ItemInfo.NO_ID) {
Winson5c6bdbb2015-09-03 11:36:19 -07001618 if (!showWorkspace(false)) {
1619 // If we are already on the workspace, then manually reset all apps
1620 mAppsView.reset();
1621 }
Winson Chung785d2eb2011-04-14 16:08:02 -07001622 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001623 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1624 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08001625 updateAutoAdvanceState();
Dan Sandlerd5024042014-01-09 15:01:33 -05001626 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.DELETE_DATABASE.equals(action)) {
1627 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001628 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001629 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE);
1630 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.MIGRATE_DATABASE.equals(action)) {
1631 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001632 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001633 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE
1634 | LauncherModel.LOADER_FLAG_MIGRATE_SHORTCUTS);
Adam Cohended9f8d2010-11-03 13:25:16 -07001635 }
1636 }
1637 };
1638
1639 @Override
1640 public void onAttachedToWindow() {
1641 super.onAttachedToWindow();
1642
1643 // Listen for broadcasts related to user-presence
1644 final IntentFilter filter = new IntentFilter();
1645 filter.addAction(Intent.ACTION_SCREEN_OFF);
1646 filter.addAction(Intent.ACTION_USER_PRESENT);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001647 // For handling managed profiles
Dan Sandlerd5024042014-01-09 15:01:33 -05001648 if (ENABLE_DEBUG_INTENTS) {
1649 filter.addAction(DebugIntents.DELETE_DATABASE);
1650 filter.addAction(DebugIntents.MIGRATE_DATABASE);
1651 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001652 registerReceiver(mReceiver, filter);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001653 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Sunny Goyal9fc953b2015-08-17 12:24:25 -07001654 setupTransparentSystemBarsForLollipop();
Adam Cohend113e0c2010-11-11 10:48:05 -08001655 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001656 mVisible = true;
1657 }
1658
Adam Cohen0b395352014-06-09 22:54:36 +00001659 /**
Sunny Goyal9fc953b2015-08-17 12:24:25 -07001660 * Sets up transparent navigation and status bars in Lollipop.
Adam Cohen0b395352014-06-09 22:54:36 +00001661 * This method is a no-op for other platform versions.
1662 */
Sunny Goyald0091012015-01-20 15:55:34 -08001663 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Sunny Goyal9fc953b2015-08-17 12:24:25 -07001664 private void setupTransparentSystemBarsForLollipop() {
1665 if (Utilities.ATLEAST_LOLLIPOP) {
Sunny Goyald0091012015-01-20 15:55:34 -08001666 Window window = getWindow();
1667 window.getAttributes().systemUiVisibility |=
1668 (View.SYSTEM_UI_FLAG_LAYOUT_STABLE
1669 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
1670 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
1671 window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS
1672 | WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
1673 window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
1674 window.setStatusBarColor(Color.TRANSPARENT);
1675 window.setNavigationBarColor(Color.TRANSPARENT);
Adam Cohen0b395352014-06-09 22:54:36 +00001676 }
1677 }
1678
Adam Cohended9f8d2010-11-03 13:25:16 -07001679 @Override
1680 public void onDetachedFromWindow() {
1681 super.onDetachedFromWindow();
1682 mVisible = false;
1683
Adam Cohend113e0c2010-11-11 10:48:05 -08001684 if (mAttached) {
1685 unregisterReceiver(mReceiver);
1686 mAttached = false;
1687 }
Winson Chungb745afb2015-03-02 11:51:23 -08001688 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001689 }
1690
1691 public void onWindowVisibilityChanged(int visibility) {
1692 mVisible = visibility == View.VISIBLE;
Winson Chungb745afb2015-03-02 11:51:23 -08001693 updateAutoAdvanceState();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001694 // The following code used to be in onResume, but it turns out onResume is called when
1695 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1696 // is a more appropriate event to handle
1697 if (mVisible) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001698 if (!mWorkspaceLoading) {
1699 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001700 // We want to let Launcher draw itself at least once before we force it to build
1701 // layers on all the workspace pages, so that transitioning to Launcher from other
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001702 // apps is nice and speedy.
1703 observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001704 private boolean mStarted = false;
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001705 public void onDraw() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001706 if (mStarted) return;
1707 mStarted = true;
Michael Jurka6ee21d22012-02-21 18:20:27 -08001708 // We delay the layer building a bit in order to give
1709 // other message processing a time to run. In particular
1710 // this avoids a delay in hiding the IME if it was
1711 // currently shown, because doing that may involve
1712 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001713 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurkadf96add2013-04-03 16:25:02 -07001714 final ViewTreeObserver.OnDrawListener listener = this;
1715 mWorkspace.post(new Runnable() {
1716 public void run() {
Michael Jurkab68e03a2013-04-11 11:36:41 -07001717 if (mWorkspace != null &&
1718 mWorkspace.getViewTreeObserver() != null) {
1719 mWorkspace.getViewTreeObserver().
1720 removeOnDrawListener(listener);
1721 }
Michael Jurkadf96add2013-04-03 16:25:02 -07001722 }
1723 });
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001724 return;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001725 }
1726 });
1727 }
1728 clearTypedText();
1729 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001730 }
1731
Adam Cohen091440a2015-03-18 14:16:05 -07001732 @Thunk void sendAdvanceMessage(long delay) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001733 mHandler.removeMessages(ADVANCE_MSG);
1734 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1735 mHandler.sendMessageDelayed(msg, delay);
1736 mAutoAdvanceSentTime = System.currentTimeMillis();
1737 }
1738
Adam Cohen091440a2015-03-18 14:16:05 -07001739 @Thunk void updateAutoAdvanceState() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001740 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1741 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1742 mAutoAdvanceRunning = autoAdvanceRunning;
1743 if (autoAdvanceRunning) {
1744 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1745 sendAdvanceMessage(delay);
1746 } else {
1747 if (!mWidgetsToAdvance.isEmpty()) {
1748 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1749 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1750 }
1751 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001752 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001753 }
1754 }
1755 }
1756
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001757 @Thunk final Handler mHandler = new Handler(new Handler.Callback() {
1758
Adam Cohended9f8d2010-11-03 13:25:16 -07001759 @Override
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001760 public boolean handleMessage(Message msg) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001761 if (msg.what == ADVANCE_MSG) {
1762 int i = 0;
1763 for (View key: mWidgetsToAdvance.keySet()) {
1764 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1765 final int delay = mAdvanceStagger * i;
1766 if (v instanceof Advanceable) {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001767 mHandler.postDelayed(new Runnable() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001768 public void run() {
1769 ((Advanceable) v).advance();
1770 }
1771 }, delay);
1772 }
1773 i++;
1774 }
1775 sendAdvanceMessage(mAdvanceInterval);
1776 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001777 return true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001778 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001779 });
Adam Cohended9f8d2010-11-03 13:25:16 -07001780
Winsonc0b52fe2015-09-09 16:38:15 -07001781 private void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001782 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001783 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1784 if (v instanceof Advanceable) {
1785 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001786 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Winson Chungb745afb2015-03-02 11:51:23 -08001787 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001788 }
1789 }
1790
Winsonc0b52fe2015-09-09 16:38:15 -07001791 private void removeWidgetToAutoAdvance(View hostView) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001792 if (mWidgetsToAdvance.containsKey(hostView)) {
1793 mWidgetsToAdvance.remove(hostView);
Winson Chungb745afb2015-03-02 11:51:23 -08001794 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001795 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001796 }
1797
Hyunyoung Song3f471442015-04-08 19:01:34 -07001798 public void showOutOfSpaceMessage(boolean isHotseatLayout) {
Winson Chung93eef082012-03-23 15:59:27 -07001799 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1800 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001801 }
1802
Winson Chunga6945242014-01-08 14:04:34 -08001803 public DragLayer getDragLayer() {
1804 return mDragLayer;
1805 }
1806
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001807 public AllAppsContainerView getAppsView() {
Winson Chungb745afb2015-03-02 11:51:23 -08001808 return mAppsView;
1809 }
1810
Hyunyoung Song3f471442015-04-08 19:01:34 -07001811 public WidgetsContainerView getWidgetsView() {
1812 return mWidgetsView;
Winson Chungb745afb2015-03-02 11:51:23 -08001813 }
1814
Winson Chunga6945242014-01-08 14:04:34 -08001815 public Workspace getWorkspace() {
1816 return mWorkspace;
1817 }
1818
1819 public Hotseat getHotseat() {
1820 return mHotseat;
1821 }
1822
Jorim Jaggid017f882014-01-14 17:08:48 -08001823 public ViewGroup getOverviewPanel() {
Winson Chunga6945242014-01-08 14:04:34 -08001824 return mOverviewPanel;
1825 }
1826
Winson Chung006ee262015-08-03 14:40:11 -07001827 public SearchDropTargetBar getSearchDropTargetBar() {
Winson Chunga6945242014-01-08 14:04:34 -08001828 return mSearchDropTargetBar;
1829 }
1830
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001831 public LauncherAppWidgetHost getAppWidgetHost() {
1832 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001833 }
Romain Guycbb89e42009-06-08 15:52:54 -07001834
Winson Chunga9abd0e2010-10-27 17:18:37 -07001835 public LauncherModel getModel() {
1836 return mModel;
1837 }
1838
Winson Chunga6945242014-01-08 14:04:34 -08001839 protected SharedPreferences getSharedPrefs() {
1840 return mSharedPrefs;
1841 }
1842
Adam Cohen2e6da152015-05-06 11:42:25 -07001843 public DeviceProfile getDeviceProfile() {
1844 return mDeviceProfile;
1845 }
1846
Bjorn Bringertc459e522013-06-07 19:36:01 +01001847 public void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001848 getWindow().closeAllPanels();
1849
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001850 // Whatever we were doing is hereby canceled.
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001851 setWaitingForResult(false);
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001852 }
1853
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001854 @Override
1855 protected void onNewIntent(Intent intent) {
Michael Jurka447bf842013-05-15 14:52:15 +02001856 long startTime = 0;
1857 if (DEBUG_RESUME_TIME) {
1858 startTime = System.currentTimeMillis();
1859 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001860 super.onNewIntent(intent);
1861
1862 // Close the menu
Winson15f8b172015-08-19 11:02:39 -07001863 Folder openFolder = mWorkspace.getOpenFolder();
1864 boolean alreadyOnHome = mHasFocus && ((intent.getFlags() &
1865 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1866 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
1867 boolean isActionMain = Intent.ACTION_MAIN.equals(intent.getAction());
1868 if (isActionMain) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001869 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001870 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001871
Adam Cohen6fecd412013-10-02 17:41:50 -07001872 if (mWorkspace == null) {
1873 // Can be cases where mWorkspace is null, this prevents a NPE
1874 return;
1875 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001876 // In all these cases, only animate if we're already on home
1877 mWorkspace.exitWidgetResizeMode();
Adam Cohen9211d422014-10-07 18:14:53 -07001878
Adam Cohen6fecd412013-10-02 17:41:50 -07001879 closeFolder();
1880 exitSpringLoadedDragMode();
1881
1882 // If we are already on home, then just animate back to the workspace,
1883 // otherwise, just wait until onResume to set the state back to Workspace
1884 if (alreadyOnHome) {
Adam Cohened307df2013-10-02 09:37:31 -07001885 showWorkspace(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001886 } else {
1887 mOnResumeState = State.WORKSPACE;
1888 }
1889
1890 final View v = getWindow().peekDecorView();
1891 if (v != null && v.getWindowToken() != null) {
1892 InputMethodManager imm = (InputMethodManager)getSystemService(
1893 INPUT_METHOD_SERVICE);
1894 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1895 }
1896
Winson Chungb745afb2015-03-02 11:51:23 -08001897 // Reset the apps view
1898 if (!alreadyOnHome && mAppsView != null) {
1899 mAppsView.scrollToTop();
1900 }
1901
Hyunyoung Song3f471442015-04-08 19:01:34 -07001902 // Reset the widgets view
1903 if (!alreadyOnHome && mWidgetsView != null) {
1904 mWidgetsView.scrollToTop();
Adam Cohen6fecd412013-10-02 17:41:50 -07001905 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001906
Adam Cohen9211d422014-10-07 18:14:53 -07001907 if (mLauncherCallbacks != null) {
1908 mLauncherCallbacks.onHomeIntent();
1909 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001910 }
Adam Cohened307df2013-10-02 09:37:31 -07001911
Adam Cohen9211d422014-10-07 18:14:53 -07001912 if (mLauncherCallbacks != null) {
1913 mLauncherCallbacks.onNewIntent(intent);
1914 }
Winson15f8b172015-08-19 11:02:39 -07001915
1916 // Defer moving to the default screen until after we callback to the LauncherCallbacks
1917 // as slow logic in the callbacks eat into the time the scroller expects for the snapToPage
1918 // animation.
1919 if (isActionMain) {
Ivan Lee667d6882015-09-03 10:16:07 -06001920 boolean moveToDefaultScreen = mLauncherCallbacks != null ?
1921 mLauncherCallbacks.shouldMoveToDefaultScreenOnHomeIntent() : true;
Winson15f8b172015-08-19 11:02:39 -07001922 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
1923 openFolder == null && moveToDefaultScreen) {
Adam Cohen4b66bf32015-09-18 12:15:19 -07001924
1925 // We use this flag to suppress noisy callbacks above custom content state
1926 // from onResume.
1927 mMoveToDefaultScreenFromNewIntent = true;
Winson15f8b172015-08-19 11:02:39 -07001928 mWorkspace.post(new Runnable() {
1929 @Override
1930 public void run() {
1931 mWorkspace.moveToDefaultScreen(true);
1932 }
1933 });
1934 }
1935 }
1936
1937 if (DEBUG_RESUME_TIME) {
1938 Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime));
1939 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001940 }
1941
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001942 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001943 public void onRestoreInstanceState(Bundle state) {
1944 super.onRestoreInstanceState(state);
1945 for (int page: mSynchronouslyBoundPages) {
1946 mWorkspace.restoreInstanceStateForChild(page);
1947 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001948 }
1949
1950 @Override
1951 protected void onSaveInstanceState(Bundle outState) {
Adam Cohen21cd0022013-10-09 18:57:02 -07001952 if (mWorkspace.getChildCount() > 0) {
Winson Chung9b9fb962013-11-15 15:39:34 -08001953 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN,
1954 mWorkspace.getCurrentPageOffsetFromCustomContent());
Adam Cohen21cd0022013-10-09 18:57:02 -07001955 }
Adam Cohen95bb8002011-07-03 23:40:28 -07001956 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001957
Michael Jurka883f55b2010-10-21 15:47:14 -07001958 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001959 // We close any open folder since it will not be re-opened, and we need to make sure
1960 // this state is reflected.
1961 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001962
Adam Cohendcd297f2013-06-18 13:13:40 -07001963 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screenId > -1 &&
Winson Chung3d503fb2011-07-13 17:25:49 -07001964 mWaitingForResult) {
1965 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
Adam Cohendcd297f2013-06-18 13:13:40 -07001966 outState.putLong(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screenId);
Winson Chung3d503fb2011-07-13 17:25:49 -07001967 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1968 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001969 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_X, mPendingAddInfo.spanX);
1970 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y, mPendingAddInfo.spanY);
1971 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
Adam Cohen4637b5a2013-11-04 18:21:24 -08001972 outState.putInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID, mPendingAddWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001973 }
1974
Hyunyoung Song3f471442015-04-08 19:01:34 -07001975 // Save the current widgets tray?
1976 // TODO(hyunyoungs)
Adam Cohen9211d422014-10-07 18:14:53 -07001977
1978 if (mLauncherCallbacks != null) {
1979 mLauncherCallbacks.onSaveInstanceState(outState);
1980 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001981 }
1982
1983 @Override
1984 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001985 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001986
Winson Chunge7a03942011-08-05 15:05:12 -07001987 // Remove all pending runnables
1988 mHandler.removeMessages(ADVANCE_MSG);
1989 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07001990 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07001991
Winson Chungcd2b0142011-06-08 16:02:26 -07001992 // Stop callbacks from LauncherModel
Daniel Sandlercc8befa2013-06-11 14:45:48 -04001993 LauncherAppState app = (LauncherAppState.getInstance());
Adam Cohen1a85c582014-09-30 09:48:49 -07001994
1995 // It's possible to receive onDestroy after a new Launcher activity has
1996 // been created. In this case, don't interfere with the new Launcher.
1997 if (mModel.isCurrentCallbacks(this)) {
1998 mModel.stopLoader();
1999 app.setLauncher(null);
2000 }
Winson Chungcd2b0142011-06-08 16:02:26 -07002001
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002002 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07002003 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002004 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002005 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002006 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002007 mAppWidgetHost = null;
2008
2009 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002010
2011 TextKeyListener.getInstance().release();
2012
Joe Onorato34a0e1b2009-12-14 17:44:51 -08002013 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002014
Adam Cohenaccf3bf2012-04-30 16:07:43 -07002015 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002016 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
Adam Cohend552dd92013-11-26 12:13:11 -08002017 mWorkspace.removeAllWorkspaceScreens();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002018 mWorkspace = null;
2019 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08002020
Michael Jurka2ecf9952012-06-18 12:52:28 -07002021 LauncherAnimUtils.onDestroyActivity();
Adam Cohen9211d422014-10-07 18:14:53 -07002022
2023 if (mLauncherCallbacks != null) {
2024 mLauncherCallbacks.onDestroy();
2025 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002026 }
2027
Adam Cohena9cf38f2011-05-02 15:36:58 -07002028 public DragController getDragController() {
2029 return mDragController;
2030 }
2031
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002032 @Override
2033 public void startActivityForResult(Intent intent, int requestCode) {
Adam Cohen173f7112015-03-27 15:14:00 -07002034 onStartForResult(requestCode);
2035 super.startActivityForResult(intent, requestCode);
2036 }
2037
2038 @Override
2039 public void startIntentSenderForResult (IntentSender intent, int requestCode,
2040 Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) {
2041 onStartForResult(requestCode);
2042 try {
2043 super.startIntentSenderForResult(intent, requestCode,
2044 fillInIntent, flagsMask, flagsValues, extraFlags, options);
2045 } catch (IntentSender.SendIntentException e) {
2046 throw new ActivityNotFoundException();
2047 }
2048 }
2049
2050 private void onStartForResult(int requestCode) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002051 if (requestCode >= 0) {
2052 setWaitingForResult(true);
2053 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002054 }
2055
Winson Chung70d72102011-08-12 11:24:35 -07002056 /**
2057 * Indicates that we want global search for this activity by setting the globalSearch
2058 * argument for {@link #startSearch} to true.
2059 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002060 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07002061 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002062 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002063
Karl Rosaen138a0412009-04-23 19:00:21 -07002064 if (initialQuery == null) {
2065 // Use any text typed in the launcher as the initial query
2066 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07002067 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002068 if (appSearchData == null) {
2069 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01002070 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002071 }
Winson Chungadf0c182012-08-23 14:59:07 -07002072 Rect sourceBounds = new Rect();
2073 if (mSearchDropTargetBar != null) {
2074 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
2075 }
Romain Guycbb89e42009-06-08 15:52:54 -07002076
Ian Parkinson047036e2014-09-01 15:40:53 +01002077 boolean clearTextImmediately = startSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002078 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002079 if (clearTextImmediately) {
2080 clearTypedText();
2081 }
Winson Chungcd99cd32015-04-29 11:03:24 -07002082
2083 // We need to show the workspace after starting the search
2084 showWorkspace(true);
Bjorn Bringertc459e522013-06-07 19:36:01 +01002085 }
2086
Ian Parkinson047036e2014-09-01 15:40:53 +01002087 /**
2088 * Start a text search.
2089 *
2090 * @return {@code true} if the search will start immediately, so any further keypresses
2091 * will be handled directly by the search UI. {@code false} if {@link Launcher} should continue
2092 * to buffer keypresses.
2093 */
2094 public boolean startSearch(String initialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002095 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Adam Cohen9211d422014-10-07 18:14:53 -07002096 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
2097 return mLauncherCallbacks.startSearch(initialQuery, selectInitialQuery, appSearchData,
2098 sourceBounds);
2099 }
2100
Michael Jurkaa33411c2012-06-14 16:18:21 -07002101 startGlobalSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002102 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002103 return false;
Michael Jurkaa33411c2012-06-14 16:18:21 -07002104 }
2105
2106 /**
2107 * Starts the global search activity. This code is a copied from SearchManager
2108 */
Bjorn Bringertc459e522013-06-07 19:36:01 +01002109 private void startGlobalSearch(String initialQuery,
Michael Jurkaa33411c2012-06-14 16:18:21 -07002110 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002111 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07002112 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2113 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
2114 if (globalSearchActivity == null) {
2115 Log.w(TAG, "No global search activity found.");
2116 return;
2117 }
2118 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
2119 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2120 intent.setComponent(globalSearchActivity);
2121 // Make sure that we have a Bundle to put source in
2122 if (appSearchData == null) {
2123 appSearchData = new Bundle();
2124 } else {
2125 appSearchData = new Bundle(appSearchData);
2126 }
Adam Cohen9211d422014-10-07 18:14:53 -07002127 // Set source to package name of app that starts global search if not set already.
Michael Jurkaa33411c2012-06-14 16:18:21 -07002128 if (!appSearchData.containsKey("source")) {
2129 appSearchData.putString("source", getPackageName());
2130 }
2131 intent.putExtra(SearchManager.APP_DATA, appSearchData);
2132 if (!TextUtils.isEmpty(initialQuery)) {
2133 intent.putExtra(SearchManager.QUERY, initialQuery);
2134 }
2135 if (selectInitialQuery) {
2136 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
2137 }
2138 intent.setSourceBounds(sourceBounds);
2139 try {
2140 startActivity(intent);
2141 } catch (ActivityNotFoundException ex) {
2142 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
2143 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002144 }
2145
Winson Chungbedf9232015-07-10 12:38:30 -07002146 public void startSearchFromAllApps(View v, Intent searchIntent, String searchQuery) {
2147 if (mLauncherCallbacks != null && mLauncherCallbacks.startSearchFromAllApps(searchQuery)) {
2148 return;
2149 }
2150
2151 // If not handled, then just start the provided search intent
2152 startActivitySafely(v, searchIntent, null);
2153 }
2154
Yura4f93ec62014-02-04 14:15:21 +00002155 public boolean isOnCustomContent() {
2156 return mWorkspace.isOnOrMovingToCustomContent();
2157 }
2158
Winson Chung70d72102011-08-12 11:24:35 -07002159 @Override
Winson Chung70d72102011-08-12 11:24:35 -07002160 public boolean onPrepareOptionsMenu(Menu menu) {
2161 super.onPrepareOptionsMenu(menu);
Adam Cohen9211d422014-10-07 18:14:53 -07002162 if (mLauncherCallbacks != null) {
2163 return mLauncherCallbacks.onPrepareOptionsMenu(menu);
2164 }
Michael Jurkab94f3f82013-09-11 18:08:54 +02002165 return false;
Winson Chung70d72102011-08-12 11:24:35 -07002166 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002167
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002168 @Override
2169 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07002170 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07002171 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07002172 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002173 }
2174
Joe Onorato9c1289c2009-08-17 11:03:03 -04002175 public boolean isWorkspaceLocked() {
2176 return mWorkspaceLoading || mWaitingForResult;
2177 }
2178
Adam Cohen517a7f52014-03-01 12:12:59 -08002179 public boolean isWorkspaceLoading() {
2180 return mWorkspaceLoading;
2181 }
2182
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002183 private void setWorkspaceLoading(boolean value) {
2184 boolean isLocked = isWorkspaceLocked();
2185 mWorkspaceLoading = value;
2186 if (isLocked != isWorkspaceLocked()) {
2187 onWorkspaceLockedChanged();
2188 }
2189 }
2190
2191 private void setWaitingForResult(boolean value) {
2192 boolean isLocked = isWorkspaceLocked();
2193 mWaitingForResult = value;
2194 if (isLocked != isWorkspaceLocked()) {
2195 onWorkspaceLockedChanged();
2196 }
2197 }
2198
Adam Cohen9211d422014-10-07 18:14:53 -07002199 protected void onWorkspaceLockedChanged() {
2200 if (mLauncherCallbacks != null) {
2201 mLauncherCallbacks.onWorkspaceLockedChanged();
2202 }
2203 }
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002204
Michael Jurka0280c3b2010-09-17 15:00:07 -07002205 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07002206 mPendingAddInfo.container = ItemInfo.NO_ID;
Adam Cohendcd297f2013-06-18 13:13:40 -07002207 mPendingAddInfo.screenId = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002208 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
2209 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Sunny Goyal233ee962015-08-03 13:05:01 -07002210 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = 1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002211 mPendingAddInfo.dropPos = null;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002212 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07002213
Sunny Goyale6b63a32015-01-16 16:14:29 -08002214 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info, final
Adam Cohen59400422014-03-05 18:07:04 -08002215 AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo) {
Adam Cohenad4e15c2013-10-17 16:21:35 -07002216 addAppWidgetImpl(appWidgetId, info, boundWidget, appWidgetInfo, 0);
2217 }
2218
Sunny Goyale6b63a32015-01-16 16:14:29 -08002219 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
Adam Cohen59400422014-03-05 18:07:04 -08002220 final AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo,
2221 int delay) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002222 if (appWidgetInfo.configure != null) {
2223 mPendingAddWidgetInfo = appWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -08002224 mPendingAddWidgetId = appWidgetId;
Michael Jurkaaf442092010-06-10 17:01:57 -07002225
Bjorn Bringert7984c942009-12-09 15:38:25 +00002226 // Launch over to configure widget, if needed
Sunny Goyalffe83f12014-08-14 17:39:34 -07002227 mAppWidgetManager.startConfigActivity(appWidgetInfo, appWidgetId, this,
2228 mAppWidgetHost, REQUEST_CREATE_APPWIDGET);
2229
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002230 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00002231 // Otherwise just add it
Adam Cohenad4e15c2013-10-17 16:21:35 -07002232 Runnable onComplete = new Runnable() {
2233 @Override
2234 public void run() {
2235 // Exit spring loaded mode if necessary after adding the widget
2236 exitSpringLoadedDragModeDelayed(true, EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT,
2237 null);
2238 }
2239 };
Adam Cohendcd297f2013-06-18 13:13:40 -07002240 completeAddAppWidget(appWidgetId, info.container, info.screenId, boundWidget,
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002241 appWidgetInfo);
Adam Cohen689ff162014-05-08 17:27:56 -07002242 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, delay, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002243 }
2244 }
Romain Guycbb89e42009-06-08 15:52:54 -07002245
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002246 protected void moveToCustomContentScreen(boolean animate) {
Sandeep Siddharthaf2b47f12013-09-26 19:49:27 -07002247 // Close any folders that may be open.
2248 closeFolder();
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002249 mWorkspace.moveToCustomContentScreen(animate);
2250 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002251
2252 public void addPendingItem(PendingAddItemInfo info, long container, long screenId,
2253 int[] cell, int spanX, int spanY) {
2254 switch (info.itemType) {
2255 case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET:
2256 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
2257 int span[] = new int[2];
2258 span[0] = spanX;
2259 span[1] = spanY;
2260 addAppWidgetFromDrop((PendingAddWidgetInfo) info,
2261 container, screenId, cell, span);
2262 break;
2263 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
2264 processShortcutFromDrop(info.componentName, container, screenId, cell);
2265 break;
2266 default:
2267 throw new IllegalStateException("Unknown item type: " + info.itemType);
2268 }
2269 }
2270
Adam Cohenfbba09b2011-07-18 21:43:05 -07002271 /**
2272 * Process a shortcut drop.
2273 *
2274 * @param componentName The name of the component
Adam Cohendcd297f2013-06-18 13:13:40 -07002275 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002276 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002277 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002278 private void processShortcutFromDrop(ComponentName componentName, long container, long screenId,
2279 int[] cell) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002280 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002281 mPendingAddInfo.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002282 mPendingAddInfo.screenId = screenId;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002283 mPendingAddInfo.dropPos = null;
Adam Cohenfbba09b2011-07-18 21:43:05 -07002284
2285 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002286 mPendingAddInfo.cellX = cell[0];
2287 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002288 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002289
2290 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
2291 createShortcutIntent.setComponent(componentName);
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002292 Utilities.startActivityForResultSafely(this, createShortcutIntent, REQUEST_CREATE_SHORTCUT);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002293 }
2294
Adam Cohenfbba09b2011-07-18 21:43:05 -07002295 /**
2296 * Process a widget drop.
2297 *
2298 * @param info The PendingAppWidgetInfo of the widget being added.
Adam Cohendcd297f2013-06-18 13:13:40 -07002299 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002300 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002301 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002302 private void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, long screenId,
2303 int[] cell, int[] span) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07002304 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002305 mPendingAddInfo.container = info.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002306 mPendingAddInfo.screenId = info.screenId = screenId;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002307 mPendingAddInfo.dropPos = null;
Adam Cohend41fbf52012-02-16 23:53:59 -08002308 mPendingAddInfo.minSpanX = info.minSpanX;
2309 mPendingAddInfo.minSpanY = info.minSpanY;
2310
Adam Cohenfbba09b2011-07-18 21:43:05 -07002311 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002312 mPendingAddInfo.cellX = cell[0];
2313 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002314 }
Adam Cohend41fbf52012-02-16 23:53:59 -08002315 if (span != null) {
2316 mPendingAddInfo.spanX = span[0];
2317 mPendingAddInfo.spanY = span[1];
2318 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002319
Adam Cohened66b2b2012-01-23 17:28:51 -08002320 AppWidgetHostView hostView = info.boundWidget;
2321 int appWidgetId;
2322 if (hostView != null) {
2323 appWidgetId = hostView.getAppWidgetId();
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002324 addAppWidgetImpl(appWidgetId, info, hostView, info.info);
Sunny Goyal5b9ebca2015-06-01 18:37:32 -07002325
2326 // Clear the boundWidget so that it doesn't get destroyed.
2327 info.boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -08002328 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002329 // In this case, we either need to start an activity to get permission to bind
2330 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08002331 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07002332 Bundle options = info.bindOptions;
2333
Sunny Goyalffe83f12014-08-14 17:39:34 -07002334 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
2335 appWidgetId, info.info, options);
Adam Cohendd70d662012-10-04 16:53:44 -07002336 if (success) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002337 addAppWidgetImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07002338 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002339 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07002340 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
2341 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
2342 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Sunny Goyalffe83f12014-08-14 17:39:34 -07002343 mAppWidgetManager.getUser(mPendingAddWidgetInfo)
2344 .addToIntent(intent, AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE);
Adam Cohendd70d662012-10-04 16:53:44 -07002345 // TODO: we need to make sure that this accounts for the options bundle.
2346 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07002347 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
2348 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002349 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002350 }
2351
Adam Cohendcd297f2013-06-18 13:13:40 -07002352 FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07002353 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07002354 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002355 folderInfo.title = getText(R.string.folder_name);
2356
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002357 // Update the model
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07002358 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId,
2359 cellX, cellY);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002360 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002361
2362 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07002363 FolderIcon newFolder =
2364 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07002365 mWorkspace.addInScreen(newFolder, container, screenId, cellX, cellY, 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07002366 isWorkspaceLocked());
Winson Chung5f8afe62013-08-12 16:19:28 -07002367 // Force measure the new folder icon
2368 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
2369 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07002370 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002371 }
Romain Guycbb89e42009-06-08 15:52:54 -07002372
Winsonc0b52fe2015-09-09 16:38:15 -07002373 /**
Winsonfa56b3f2015-09-14 12:01:13 -07002374 * Unbinds the view for the specified item, and removes the item and all its children.
2375 *
2376 * @param v the view being removed.
Winsonfa56b3f2015-09-14 12:01:13 -07002377 * @param itemInfo the {@link ItemInfo} for this view.
2378 * @param deleteFromDb whether or not to delete this item from the db.
Winsonc0b52fe2015-09-09 16:38:15 -07002379 */
Winson2949fb52015-09-24 09:56:11 -07002380 public boolean removeItem(View v, ItemInfo itemInfo, boolean deleteFromDb) {
Winsonc0b52fe2015-09-09 16:38:15 -07002381 if (itemInfo instanceof ShortcutInfo) {
Winsonfa56b3f2015-09-14 12:01:13 -07002382 // Remove the shortcut from the folder before removing it from launcher
Winson2949fb52015-09-24 09:56:11 -07002383 FolderInfo folderInfo = sFolders.get(itemInfo.container);
2384 if (folderInfo != null) {
2385 folderInfo.remove((ShortcutInfo) itemInfo);
Winsonfa56b3f2015-09-14 12:01:13 -07002386 } else {
2387 mWorkspace.removeWorkspaceItem(v);
2388 }
Winsonc0b52fe2015-09-09 16:38:15 -07002389 if (deleteFromDb) {
2390 LauncherModel.deleteItemFromDatabase(this, itemInfo);
2391 }
2392 } else if (itemInfo instanceof FolderInfo) {
2393 final FolderInfo folderInfo = (FolderInfo) itemInfo;
2394 unbindFolder(folderInfo);
2395 mWorkspace.removeWorkspaceItem(v);
2396 if (deleteFromDb) {
2397 LauncherModel.deleteFolderAndContentsFromDatabase(this, folderInfo);
2398 }
2399 } else if (itemInfo instanceof LauncherAppWidgetInfo) {
2400 final LauncherAppWidgetInfo widgetInfo = (LauncherAppWidgetInfo) itemInfo;
2401 unbindAppWidget(widgetInfo, deleteFromDb);
Winson44818e02015-10-02 11:25:46 -07002402 mWorkspace.removeWorkspaceItem(v);
Winsonc0b52fe2015-09-09 16:38:15 -07002403 if (deleteFromDb) {
2404 LauncherModel.deleteItemFromDatabase(this, widgetInfo);
2405 }
2406 } else {
2407 return false;
2408 }
2409 return true;
2410 }
2411
2412 /**
2413 * Unbinds any launcher references to the folder.
2414 */
2415 private void unbindFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002416 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002417 }
2418
Winsonc0b52fe2015-09-09 16:38:15 -07002419 /**
2420 * Unbinds any launcher references to the widget and deletes the app widget id.
2421 */
2422 private void unbindAppWidget(final LauncherAppWidgetInfo widgetInfo, boolean deleteAppWidgetId) {
2423 final LauncherAppWidgetHost appWidgetHost = getAppWidgetHost();
2424 if (deleteAppWidgetId && appWidgetHost != null &&
2425 !widgetInfo.isCustomWidget() && widgetInfo.isWidgetIdValid()) {
2426 // Deleting an app widget ID is a void call but writes to disk before returning
2427 // to the caller...
2428 new AsyncTask<Void, Void, Void>() {
2429 public Void doInBackground(Void ... args) {
2430 appWidgetHost.deleteAppWidgetId(widgetInfo.appWidgetId);
2431 return null;
2432 }
Sunny Goyalf27cb0e2015-09-23 16:12:02 -07002433 }.executeOnExecutor(Utilities.THREAD_POOL_EXECUTOR);
Winsonc0b52fe2015-09-09 16:38:15 -07002434 }
2435 removeWidgetToAutoAdvance(widgetInfo.hostView);
2436 widgetInfo.hostView = null;
2437 }
2438
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002439 @Override
2440 public boolean dispatchKeyEvent(KeyEvent event) {
2441 if (event.getAction() == KeyEvent.ACTION_DOWN) {
2442 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002443 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07002444 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08002445 case KeyEvent.KEYCODE_VOLUME_DOWN:
Sunny Goyal4bbf4192014-11-11 12:23:59 -08002446 if (Utilities.isPropertyEnabled(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08002447 dumpState();
2448 return true;
2449 }
2450 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07002451 }
2452 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2453 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07002454 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002455 return true;
2456 }
2457 }
2458
2459 return super.dispatchKeyEvent(event);
2460 }
2461
Joe Onorato88ec0992009-11-19 13:16:06 -08002462 @Override
2463 public void onBackPressed() {
Adam Cohen9211d422014-10-07 18:14:53 -07002464 if (mLauncherCallbacks != null && mLauncherCallbacks.handleBackPressed()) {
2465 return;
2466 }
2467
Sunny Goyal45478022015-06-08 16:52:41 -07002468 if (mDragController.isDragging()) {
2469 mDragController.cancelDrag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08002470 return;
2471 }
2472
Winson Chungb745afb2015-03-02 11:51:23 -08002473 if (isAppsViewVisible()) {
2474 showWorkspace(true);
2475 } else if (isWidgetsViewVisible()) {
2476 showOverviewMode(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002477 } else if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002478 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002479 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07002480 Folder openFolder = mWorkspace.getOpenFolder();
2481 if (openFolder.isEditingName()) {
2482 openFolder.dismissEditingName();
2483 } else {
2484 closeFolder();
2485 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002486 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08002487 mWorkspace.exitWidgetResizeMode();
2488
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002489 // Back button is a no-op here, but give at least some feedback for the button press
2490 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07002491 }
Joe Onorato88ec0992009-11-19 13:16:06 -08002492 }
2493
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002494 /**
Sunny Goyal383c5072015-06-12 21:18:53 -07002495 * Re-listen when widget host is reset.
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002496 */
Sunny Goyal383c5072015-06-12 21:18:53 -07002497 @Override
2498 public void onAppWidgetHostReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08002499 if (mAppWidgetHost != null) {
2500 mAppWidgetHost.startListening();
2501 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002502 }
2503
2504 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002505 * Launches the intent referred by the clicked shortcut.
2506 *
2507 * @param v The view representing the clicked shortcut.
2508 */
2509 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002510 // Make sure that rogue clicks don't get through while allapps is launching, or after the
2511 // view has detached (it's possible for this to happen if the view is removed mid touch).
2512 if (v.getWindowToken() == null) {
2513 return;
2514 }
2515
Winson Chung9b0b2fe2012-02-24 13:03:34 -08002516 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002517 return;
2518 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07002519
Adam Cohen1697b792013-09-17 19:08:21 -07002520 if (v instanceof Workspace) {
2521 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002522 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002523 }
2524 return;
2525 }
2526
2527 if (v instanceof CellLayout) {
2528 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002529 showWorkspace(mWorkspace.indexOfChild(v), true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002530 }
2531 }
2532
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002533 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002534 if (tag instanceof ShortcutInfo) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002535 onClickAppShortcut(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002536 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002537 if (v instanceof FolderIcon) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002538 onClickFolderIcon(v);
Adam Cohena9cf38f2011-05-02 15:36:58 -07002539 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002540 } else if (v == mAllAppsButton) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002541 onClickAllAppsButton(v);
Sunny Goyal508da152014-08-14 10:53:27 -07002542 } else if (tag instanceof AppInfo) {
2543 startAppShortcutOrInfoActivity(v);
Sunny Goyalff572272014-07-23 13:58:07 -07002544 } else if (tag instanceof LauncherAppWidgetInfo) {
2545 if (v instanceof PendingAppWidgetHostView) {
2546 onClickPendingWidget((PendingAppWidgetHostView) v);
2547 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002548 }
2549 }
2550
Sunny Goyal70660032015-05-14 00:07:08 -07002551 @SuppressLint("ClickableViewAccessibility")
Michael Jurka0e260592010-06-30 17:07:39 -07002552 public boolean onTouch(View v, MotionEvent event) {
Michael Jurka0e260592010-06-30 17:07:39 -07002553 return false;
2554 }
2555
Michael Jurkaaf442092010-06-10 17:01:57 -07002556 /**
Sunny Goyalff572272014-07-23 13:58:07 -07002557 * Event handler for the app widget view which has not fully restored.
2558 */
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002559 public void onClickPendingWidget(final PendingAppWidgetHostView v) {
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002560 if (mIsSafeModeEnabled) {
2561 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2562 return;
2563 }
2564
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002565 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) v.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07002566 if (v.isReadyForClickSetup()) {
Sunny Goyalff572272014-07-23 13:58:07 -07002567 int widgetId = info.appWidgetId;
2568 AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
2569 if (appWidgetInfo != null) {
Adam Cohen59400422014-03-05 18:07:04 -08002570 mPendingAddWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(
2571 this, appWidgetInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07002572 mPendingAddInfo.copyFrom(info);
2573 mPendingAddWidgetId = widgetId;
2574
Sunny Goyalffe83f12014-08-14 17:39:34 -07002575 AppWidgetManagerCompat.getInstance(this).startConfigActivity(appWidgetInfo,
2576 info.appWidgetId, this, mAppWidgetHost, REQUEST_RECONFIGURE_APPWIDGET);
Sunny Goyalff572272014-07-23 13:58:07 -07002577 }
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002578 } else if (info.installProgress < 0) {
2579 // The install has not been queued
2580 final String packageName = info.providerName.getPackageName();
2581 showBrokenAppInstallDialog(packageName,
2582 new DialogInterface.OnClickListener() {
2583 public void onClick(DialogInterface dialog, int id) {
2584 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
2585 }
2586 });
2587 } else {
2588 // Download has started.
2589 final String packageName = info.providerName.getPackageName();
2590 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
Sunny Goyalff572272014-07-23 13:58:07 -07002591 }
2592 }
2593
2594 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002595 * Event handler for the "grid" button that appears on the home screen, which
2596 * enters all apps mode.
2597 *
2598 * @param v The view that was clicked.
2599 */
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002600 protected void onClickAllAppsButton(View v) {
2601 if (LOGD) Log.d(TAG, "onClickAllAppsButton");
Winson Chung76648c52015-07-10 14:33:23 -07002602 if (!isAppsViewVisible()) {
Winson Chung4ac30062015-05-08 17:34:17 -07002603 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07002604 true /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungbedf9232015-07-10 12:38:30 -07002605
2606 if (mLauncherCallbacks != null) {
2607 mLauncherCallbacks.onClickAllAppsButton(v);
2608 }
Winson Chung76648c52015-07-10 14:33:23 -07002609 }
2610 }
2611
2612 protected void onLongClickAllAppsButton(View v) {
2613 if (LOGD) Log.d(TAG, "onLongClickAllAppsButton");
2614 if (!isAppsViewVisible()) {
2615 showAppsView(true /* animated */, false /* resetListToTop */,
2616 true /* updatePredictedApps */, true /* focusSearchBar */);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002617 }
2618 }
2619
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002620 private void showBrokenAppInstallDialog(final String packageName,
2621 DialogInterface.OnClickListener onSearchClickListener) {
Sunny Goyale03b8122014-10-08 09:55:24 -07002622 new AlertDialog.Builder(this)
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002623 .setTitle(R.string.abandoned_promises_title)
2624 .setMessage(R.string.abandoned_promise_explanation)
2625 .setPositiveButton(R.string.abandoned_search, onSearchClickListener)
2626 .setNeutralButton(R.string.abandoned_clean_this,
2627 new DialogInterface.OnClickListener() {
2628 public void onClick(DialogInterface dialog, int id) {
2629 final UserHandleCompat user = UserHandleCompat.myUserHandle();
2630 mWorkspace.removeAbandonedPromise(packageName, user);
2631 }
2632 })
2633 .create().show();
2634 return;
2635 }
2636
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002637 /**
2638 * Event handler for an app shortcut click.
2639 *
2640 * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.
2641 */
Chris Wren40c5ed32014-06-24 18:24:23 -04002642 protected void onClickAppShortcut(final View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002643 if (LOGD) Log.d(TAG, "onClickAppShortcut");
2644 Object tag = v.getTag();
2645 if (!(tag instanceof ShortcutInfo)) {
2646 throw new IllegalArgumentException("Input must be a Shortcut");
2647 }
2648
2649 // Open shortcut
2650 final ShortcutInfo shortcut = (ShortcutInfo) tag;
Sunny Goyal1a745e82014-10-02 15:58:31 -07002651
2652 if (shortcut.isDisabled != 0) {
2653 int error = R.string.activity_not_available;
2654 if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_SAFEMODE) != 0) {
2655 error = R.string.safemode_shortcut_error;
2656 }
2657 Toast.makeText(this, error, Toast.LENGTH_SHORT).show();
2658 return;
2659 }
2660
Chris Wren40c5ed32014-06-24 18:24:23 -04002661 // Check for abandoned promise
Sunny Goyal34942622014-08-29 17:20:55 -07002662 if ((v instanceof BubbleTextView)
2663 && shortcut.isPromise()
2664 && !shortcut.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE)) {
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002665 showBrokenAppInstallDialog(
Sunny Goyal34942622014-08-29 17:20:55 -07002666 shortcut.getTargetComponent().getPackageName(),
Chris Wren40c5ed32014-06-24 18:24:23 -04002667 new DialogInterface.OnClickListener() {
2668 public void onClick(DialogInterface dialog, int id) {
Sunny Goyal508da152014-08-14 10:53:27 -07002669 startAppShortcutOrInfoActivity(v);
Chris Wren40c5ed32014-06-24 18:24:23 -04002670 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002671 });
Chris Wren40c5ed32014-06-24 18:24:23 -04002672 return;
2673 }
2674
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002675 // Start activities
Sunny Goyal508da152014-08-14 10:53:27 -07002676 startAppShortcutOrInfoActivity(v);
Adam Cohen9211d422014-10-07 18:14:53 -07002677
2678 if (mLauncherCallbacks != null) {
2679 mLauncherCallbacks.onClickAppShortcut(v);
2680 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002681 }
2682
Adam Cohen091440a2015-03-18 14:16:05 -07002683 @Thunk void startAppShortcutOrInfoActivity(View v) {
Chris Wren40c5ed32014-06-24 18:24:23 -04002684 Object tag = v.getTag();
Sunny Goyal508da152014-08-14 10:53:27 -07002685 final ShortcutInfo shortcut;
2686 final Intent intent;
2687 if (tag instanceof ShortcutInfo) {
2688 shortcut = (ShortcutInfo) tag;
2689 intent = shortcut.intent;
2690 int[] pos = new int[2];
2691 v.getLocationOnScreen(pos);
2692 intent.setSourceBounds(new Rect(pos[0], pos[1],
2693 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Chris Wren40c5ed32014-06-24 18:24:23 -04002694
Sunny Goyal508da152014-08-14 10:53:27 -07002695 } else if (tag instanceof AppInfo) {
2696 shortcut = null;
2697 intent = ((AppInfo) tag).intent;
2698 } else {
2699 throw new IllegalArgumentException("Input must be a Shortcut or AppInfo");
2700 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002701
2702 boolean success = startActivitySafely(v, intent, tag);
Winson Chung8f1eff72015-05-28 17:33:40 -07002703 mStats.recordLaunch(v, intent, shortcut);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002704
2705 if (success && v instanceof BubbleTextView) {
2706 mWaitingForResume = (BubbleTextView) v;
2707 mWaitingForResume.setStayPressed(true);
2708 }
2709 }
2710
2711 /**
2712 * Event handler for a folder icon click.
2713 *
2714 * @param v The view that was clicked. Must be an instance of {@link FolderIcon}.
2715 */
2716 protected void onClickFolderIcon(View v) {
2717 if (LOGD) Log.d(TAG, "onClickFolder");
2718 if (!(v instanceof FolderIcon)){
2719 throw new IllegalArgumentException("Input must be a FolderIcon");
2720 }
2721
Sunny Goyal317698b2015-07-29 11:45:41 -07002722 // TODO(sunnygoyal): Re-evaluate this code.
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002723 FolderIcon folderIcon = (FolderIcon) v;
2724 final FolderInfo info = folderIcon.getFolderInfo();
2725 Folder openFolder = mWorkspace.getFolderForTag(info);
2726
2727 // If the folder info reports that the associated folder is open, then verify that
2728 // it is actually opened. There have been a few instances where this gets out of sync.
2729 if (info.opened && openFolder == null) {
2730 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2731 + info.screenId + " (" + info.cellX + ", " + info.cellY + ")");
2732 info.opened = false;
2733 }
2734
2735 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
2736 // Close any open folder
2737 closeFolder();
2738 // Open the requested folder
2739 openFolder(folderIcon);
2740 } else {
2741 // Find the open folder...
2742 int folderScreen;
2743 if (openFolder != null) {
2744 folderScreen = mWorkspace.getPageForView(openFolder);
2745 // .. and close it
2746 closeFolder(openFolder);
2747 if (folderScreen != mWorkspace.getCurrentPage()) {
2748 // Close any folder open on the current screen
2749 closeFolder();
2750 // Pull the folder onto this screen
2751 openFolder(folderIcon);
2752 }
2753 }
2754 }
Adam Cohen9211d422014-10-07 18:14:53 -07002755
2756 if (mLauncherCallbacks != null) {
2757 mLauncherCallbacks.onClickFolderIcon(v);
2758 }
Michael Jurka5130e402011-10-13 04:55:35 -07002759 }
2760
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002761 /**
2762 * Event handler for the (Add) Widgets button that appears after a long press
2763 * on the home screen.
2764 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002765 protected void onClickAddWidgetButton(View view) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002766 if (LOGD) Log.d(TAG, "onClickAddWidgetButton");
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002767 if (mIsSafeModeEnabled) {
2768 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2769 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08002770 showWidgetsView(true /* animated */, true /* resetPageToZero */);
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002771 if (mLauncherCallbacks != null) {
2772 mLauncherCallbacks.onClickAddWidgetButton(view);
2773 }
Adam Cohen9211d422014-10-07 18:14:53 -07002774 }
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002775 }
2776
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002777 /**
2778 * Event handler for the wallpaper picker button that appears after a long press
2779 * on the home screen.
2780 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002781 protected void onClickWallpaperPicker(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002782 if (LOGD) Log.d(TAG, "onClickWallpaperPicker");
Tony Wickham3e776a82015-09-09 18:21:49 -07002783 int pageScroll = mWorkspace.getScrollForPage(mWorkspace.getPageNearestToCenterOfScreen());
2784 float offset = mWorkspace.mWallpaperOffset.wallpaperOffsetForScroll(pageScroll);
2785 startActivityForResult(new Intent(Intent.ACTION_SET_WALLPAPER).setPackage(getPackageName())
2786 .putExtra(WallpaperPickerActivity.EXTRA_WALLPAPER_OFFSET, offset),
Sunny Goyal6a1e95a2015-03-20 17:26:30 -07002787 REQUEST_PICK_WALLPAPER);
Adam Cohen9211d422014-10-07 18:14:53 -07002788
2789 if (mLauncherCallbacks != null) {
2790 mLauncherCallbacks.onClickWallpaperPicker(v);
2791 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002792 }
2793
2794 /**
2795 * Event handler for a click on the settings button that appears after a long press
2796 * on the home screen.
2797 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002798 protected void onClickSettingsButton(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002799 if (LOGD) Log.d(TAG, "onClickSettingsButton");
Adam Cohen9211d422014-10-07 18:14:53 -07002800 if (mLauncherCallbacks != null) {
2801 mLauncherCallbacks.onClickSettingsButton(v);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07002802 } else {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002803 startActivity(new Intent(this, SettingsActivity.class));
Adam Cohen9211d422014-10-07 18:14:53 -07002804 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002805 }
2806
Adam Cohen61f560d2013-09-30 15:58:20 -07002807 public View.OnTouchListener getHapticFeedbackTouchListener() {
2808 if (mHapticFeedbackTouchListener == null) {
2809 mHapticFeedbackTouchListener = new View.OnTouchListener() {
Sunny Goyal70660032015-05-14 00:07:08 -07002810 @SuppressLint("ClickableViewAccessibility")
Adam Cohen61f560d2013-09-30 15:58:20 -07002811 @Override
2812 public boolean onTouch(View v, MotionEvent event) {
2813 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
2814 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2815 }
2816 return false;
2817 }
2818 };
2819 }
2820 return mHapticFeedbackTouchListener;
2821 }
2822
Adam Cohen9211d422014-10-07 18:14:53 -07002823 public void onDragStarted(View view) {
2824 if (isOnCustomContent()) {
2825 // Custom content screen doesn't participate in drag and drop. If on custom
2826 // content screen, move to default.
2827 moveWorkspaceToDefaultScreen();
2828 }
2829
2830 if (mLauncherCallbacks != null) {
2831 mLauncherCallbacks.onDragStarted(view);
2832 }
2833 }
Anjali Koppal62d18ed2014-03-10 17:04:03 -07002834
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002835 /**
2836 * Called when the user stops interacting with the launcher.
2837 * This implies that the user is now on the homescreen and is not doing housekeeping.
2838 */
Adam Cohen9211d422014-10-07 18:14:53 -07002839 protected void onInteractionEnd() {
2840 if (mLauncherCallbacks != null) {
2841 mLauncherCallbacks.onInteractionEnd();
2842 }
2843 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002844
2845 /**
2846 * Called when the user starts interacting with the launcher.
2847 * The possible interactions are:
2848 * - open all apps
2849 * - reorder an app shortcut, or a widget
2850 * - open the overview mode.
2851 * This is a good time to stop doing things that only make sense
2852 * when the user is on the homescreen and not doing housekeeping.
2853 */
Adam Cohen9211d422014-10-07 18:14:53 -07002854 protected void onInteractionBegin() {
2855 if (mLauncherCallbacks != null) {
2856 mLauncherCallbacks.onInteractionBegin();
2857 }
2858 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002859
Winson Chungcd99cd32015-04-29 11:03:24 -07002860 /** Updates the interaction state. */
2861 public void updateInteraction(Workspace.State fromState, Workspace.State toState) {
Winson Chung83f59ab2015-05-05 17:21:58 -07002862 // Only update the interacting state if we are transitioning to/from a view with an
Winson Chungcd99cd32015-04-29 11:03:24 -07002863 // overlay
Winson Chungef7f8742015-06-04 17:18:17 -07002864 boolean fromStateWithOverlay = fromState != Workspace.State.NORMAL;
2865 boolean toStateWithOverlay = toState != Workspace.State.NORMAL;
Winson Chung83f59ab2015-05-05 17:21:58 -07002866 if (toStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002867 onInteractionBegin();
Winson Chung83f59ab2015-05-05 17:21:58 -07002868 } else if (fromStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002869 onInteractionEnd();
2870 }
2871 }
2872
Kenny Guyf07af7b2014-07-31 11:39:16 +01002873 void startApplicationDetailsActivity(ComponentName componentName, UserHandleCompat user) {
Kenny Guyf07af7b2014-07-31 11:39:16 +01002874 try {
2875 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Kenny Guyf07af7b2014-07-31 11:39:16 +01002876 launcherApps.showAppDetailsForProfile(componentName, user);
2877 } catch (SecurityException e) {
2878 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2879 Log.e(TAG, "Launcher does not have permission to launch settings");
2880 } catch (ActivityNotFoundException e) {
2881 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2882 Log.e(TAG, "Unable to launch settings");
2883 }
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002884 }
2885
Michael Jurka1e2f4652013-07-08 18:03:46 -07002886 // returns true if the activity was started
Kenny Guyd31df542014-06-30 15:12:11 +01002887 boolean startApplicationUninstallActivity(ComponentName componentName, int flags,
2888 UserHandleCompat user) {
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002889 if ((flags & AppInfo.DOWNLOADED_FLAG) == 0) {
Patrick Dubroy5539af72010-09-07 15:22:01 -07002890 // System applications cannot be installed. For now, show a toast explaining that.
2891 // We may give them the option of disabling apps this way.
2892 int messageId = R.string.uninstall_system_app_text;
2893 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
Michael Jurka1e2f4652013-07-08 18:03:46 -07002894 return false;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002895 } else {
Michael Jurka1e2f4652013-07-08 18:03:46 -07002896 String packageName = componentName.getPackageName();
2897 String className = componentName.getClassName();
Patrick Dubroy5539af72010-09-07 15:22:01 -07002898 Intent intent = new Intent(
2899 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002900 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2901 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Kenny Guyd31df542014-06-30 15:12:11 +01002902 if (user != null) {
2903 user.addToIntent(intent, Intent.EXTRA_USER);
2904 }
Patrick Dubroy5539af72010-09-07 15:22:01 -07002905 startActivity(intent);
Michael Jurka1e2f4652013-07-08 18:03:46 -07002906 return true;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002907 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002908 }
2909
Winson Chung8f1eff72015-05-28 17:33:40 -07002910 private boolean startActivity(View v, Intent intent, Object tag) {
Kenny Guyb6cc40b2014-05-13 15:58:58 +01002911 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002912 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002913 // Only launch using the new animation if the shortcut has not opted out (this is a
2914 // private contract between launcher and may be ignored in the future).
2915 boolean useLaunchAnimation = (v != null) &&
2916 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
Kenny Guyed131872014-04-30 03:02:21 +01002917 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
2918 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyed131872014-04-30 03:02:21 +01002919
Kenny Guy1317e2d2014-05-08 18:52:50 +01002920 UserHandleCompat user = null;
2921 if (intent.hasExtra(AppInfo.EXTRA_PROFILE)) {
2922 long serialNumber = intent.getLongExtra(AppInfo.EXTRA_PROFILE, -1);
2923 user = userManager.getUserForSerialNumber(serialNumber);
2924 }
2925
2926 Bundle optsBundle = null;
Winson Chung2672ff92012-05-04 16:22:30 -07002927 if (useLaunchAnimation) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002928 ActivityOptions opts = null;
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002929 if (Utilities.ATLEAST_MARSHMALLOW) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002930 int left = 0, top = 0;
2931 int width = v.getMeasuredWidth(), height = v.getMeasuredHeight();
2932 if (v instanceof TextView) {
2933 // Launch from center of icon, not entire view
Winson Chungb745afb2015-03-02 11:51:23 -08002934 Drawable icon = Workspace.getTextViewIcon((TextView) v);
2935 if (icon != null) {
2936 Rect bounds = icon.getBounds();
Chet Haasea8f996d2015-02-17 12:56:04 -08002937 left = (width - bounds.width()) / 2;
Winson Chungb745afb2015-03-02 11:51:23 -08002938 top = v.getPaddingTop();
Chet Haasea8f996d2015-02-17 12:56:04 -08002939 width = bounds.width();
2940 height = bounds.height();
2941 }
2942 }
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002943 opts = ActivityOptions.makeClipRevealAnimation(v, left, top, width, height);
2944 } else if (!Utilities.ATLEAST_LOLLIPOP) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002945 // Below L, we use a scale up animation
Adam Cohen2e52c902015-04-06 13:11:28 -07002946 opts = ActivityOptions.makeScaleUpAnimation(v, 0, 0,
Chet Haasea8f996d2015-02-17 12:56:04 -08002947 v.getMeasuredWidth(), v.getMeasuredHeight());
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002948 } else if (Utilities.ATLEAST_LOLLIPOP_MR1) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002949 // On L devices, we use the device default slide-up transition.
2950 // On L MR1 devices, we a custom version of the slide-up transition which
2951 // doesn't have the delay present in the device default.
2952 opts = ActivityOptions.makeCustomAnimation(this,
2953 R.anim.task_open_enter, R.anim.no_anim);
Chet Haasea8f996d2015-02-17 12:56:04 -08002954 }
Adam Cohen2e52c902015-04-06 13:11:28 -07002955 optsBundle = opts != null ? opts.toBundle() : null;
Adam Cohen6ea3b112014-06-11 11:38:49 -07002956 }
Kenny Guy1317e2d2014-05-08 18:52:50 +01002957
2958 if (user == null || user.equals(UserHandleCompat.myUserHandle())) {
2959 // Could be launching some bookkeeping activity
2960 startActivity(intent, optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002961 } else {
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002962 // TODO Component can be null when shortcuts are supported for secondary user
Kenny Guyc2bd8102014-06-30 12:30:31 +01002963 launcherApps.startActivityForProfile(intent.getComponent(), user,
2964 intent.getSourceBounds(), optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002965 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002966 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002967 } catch (SecurityException e) {
2968 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002969 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002970 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07002971 "or use the exported attribute for this activity. "
2972 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002973 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002974 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002975 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002976
Winson Chungbedf9232015-07-10 12:38:30 -07002977 public boolean startActivitySafely(View v, Intent intent, Object tag) {
Michael Jurka86a720e2012-05-09 11:23:23 -07002978 boolean success = false;
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002979 if (mIsSafeModeEnabled && !Utilities.isSystemApp(this, intent)) {
2980 Toast.makeText(this, R.string.safemode_shortcut_error, Toast.LENGTH_SHORT).show();
2981 return false;
2982 }
Michael Jurka86a720e2012-05-09 11:23:23 -07002983 try {
2984 success = startActivity(v, intent, tag);
2985 } catch (ActivityNotFoundException e) {
2986 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2987 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
2988 }
2989 return success;
2990 }
2991
Adam Cohen268c4752012-06-06 17:47:33 -07002992 /**
2993 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
2994 * in the DragLayer in the exact absolute location of the original FolderIcon.
2995 */
2996 private void copyFolderIconToImage(FolderIcon fi) {
2997 final int width = fi.getMeasuredWidth();
2998 final int height = fi.getMeasuredHeight();
2999
3000 // Lazy load ImageView, Bitmap and Canvas
3001 if (mFolderIconImageView == null) {
3002 mFolderIconImageView = new ImageView(this);
3003 }
3004 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
3005 mFolderIconBitmap.getHeight() != height) {
3006 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
3007 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
3008 }
3009
3010 DragLayer.LayoutParams lp;
3011 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
3012 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
3013 } else {
3014 lp = new DragLayer.LayoutParams(width, height);
3015 }
3016
Adam Cohen307fe232012-08-16 17:55:58 -07003017 // The layout from which the folder is being opened may be scaled, adjust the starting
3018 // view size by this scale factor.
3019 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07003020 lp.customPosition = true;
3021 lp.x = mRectForFolderAnimation.left;
3022 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07003023 lp.width = (int) (scale * width);
3024 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07003025
3026 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
3027 fi.draw(mFolderIconCanvas);
3028 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07003029 if (fi.getFolder() != null) {
3030 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
3031 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07003032 }
Adam Cohen268c4752012-06-06 17:47:33 -07003033 // Just in case this image view is still in the drag layer from a previous animation,
3034 // we remove it and re-add it.
3035 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
3036 mDragLayer.removeView(mFolderIconImageView);
3037 }
3038 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07003039 if (fi.getFolder() != null) {
3040 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07003041 }
Adam Cohen268c4752012-06-06 17:47:33 -07003042 }
3043
Adam Cohen2801caf2011-05-13 20:57:39 -07003044 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003045 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003046 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
3047 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
3048 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
3049
Adam Cohenc51934b2011-07-26 21:07:43 -07003050 FolderInfo info = (FolderInfo) fi.getTag();
3051 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3052 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07003053 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
3054 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07003055 }
3056
Adam Cohen268c4752012-06-06 17:47:33 -07003057 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
3058 copyFolderIconToImage(fi);
3059 fi.setVisibility(View.INVISIBLE);
3060
Michael Jurka2ecf9952012-06-18 12:52:28 -07003061 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003062 scaleX, scaleY);
Sunny Goyal9fc953b2015-08-17 12:24:25 -07003063 if (Utilities.ATLEAST_LOLLIPOP) {
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003064 oa.setInterpolator(new LogDecelerateInterpolator(100, 0));
3065 }
3066 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohen2801caf2011-05-13 20:57:39 -07003067 oa.start();
3068 }
3069
Adam Cohen268c4752012-06-06 17:47:33 -07003070 private void shrinkAndFadeInFolderIcon(final FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003071 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003072 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
3073 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
3074 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
3075
Adam Cohen268c4752012-06-06 17:47:33 -07003076 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07003077
Adam Cohen268c4752012-06-06 17:47:33 -07003078 // We remove and re-draw the FolderIcon in-case it has changed
3079 mDragLayer.removeView(mFolderIconImageView);
3080 copyFolderIconToImage(fi);
Michael Jurka2ecf9952012-06-18 12:52:28 -07003081 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003082 scaleX, scaleY);
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003083 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07003084 oa.addListener(new AnimatorListenerAdapter() {
3085 @Override
3086 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07003087 if (cl != null) {
3088 cl.clearFolderLeaveBehind();
3089 // Remove the ImageView copy of the FolderIcon and make the original visible.
3090 mDragLayer.removeView(mFolderIconImageView);
3091 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07003092 }
3093 }
3094 });
Adam Cohen2801caf2011-05-13 20:57:39 -07003095 oa.start();
3096 }
3097
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003098 /**
Michael Jurka774bd372010-10-22 13:40:50 -07003099 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003100 * is animated relative to the specified View. If the View is null, no animation
3101 * is played.
3102 *
3103 * @param folderInfo The FolderInfo describing the folder to open.
3104 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07003105 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07003106 Folder folder = folderIcon.getFolder();
Sunny Goyalf4066152015-04-15 09:42:19 -07003107 Folder openFolder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
3108 if (openFolder != null && openFolder != folder) {
3109 // Close any open folder before opening a folder.
3110 closeFolder();
3111 }
3112
Adam Cohena9cf38f2011-05-02 15:36:58 -07003113 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003114
Adam Cohena9cf38f2011-05-02 15:36:58 -07003115 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003116
Sunny Goyalf4066152015-04-15 09:42:19 -07003117 // While the folder is open, the position of the icon cannot change.
3118 ((CellLayout.LayoutParams) folderIcon.getLayoutParams()).canReorder = false;
3119
Adam Cohen4554ee12011-08-03 16:13:21 -07003120 // Just verify that the folder hasn't already been added to the DragLayer.
3121 // There was a one-off crash where the folder had a parent already.
3122 if (folder.getParent() == null) {
3123 mDragLayer.addView(folder);
3124 mDragController.addDropTarget((DropTarget) folder);
3125 } else {
3126 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
3127 folder.getParent() + ").");
3128 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07003129 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07003130 growAndFadeOutFolderIcon(folderIcon);
Winson Chung83ca4802013-04-12 15:10:52 -07003131
3132 // Notify the accessibility manager that this folder "window" has appeared and occluded
3133 // the workspace items
3134 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
3135 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07003136 }
3137
3138 public void closeFolder() {
Adam Cohen37c717f2013-11-26 11:50:15 -08003139 Folder folder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
Adam Cohen4554ee12011-08-03 16:13:21 -07003140 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07003141 if (folder.isEditingName()) {
3142 folder.dismissEditingName();
3143 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003144 closeFolder(folder);
3145 }
3146 }
3147
Sunny Goyal83a8f042015-05-19 12:52:12 -07003148 public void closeFolder(Folder folder) {
Adam Cohen4554ee12011-08-03 16:13:21 -07003149 folder.getInfo().opened = false;
3150
3151 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
3152 if (parent != null) {
3153 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
3154 shrinkAndFadeInFolderIcon(fi);
Sunny Goyalf4066152015-04-15 09:42:19 -07003155 if (fi != null) {
3156 ((CellLayout.LayoutParams) fi.getLayoutParams()).canReorder = true;
3157 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003158 }
3159 folder.animateClosed();
Winson Chung83ca4802013-04-12 15:10:52 -07003160
3161 // Notify the accessibility manager that this folder "window" has disappeard and no
3162 // longer occludeds the workspace items
3163 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003164 }
3165
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003166 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07003167 if (!isDraggingEnabled()) return false;
3168 if (isWorkspaceLocked()) return false;
3169 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003170
Winson Chung76648c52015-07-10 14:33:23 -07003171 if (v == mAllAppsButton) {
3172 onLongClickAllAppsButton(v);
3173 return true;
3174 }
3175
Adam Cohen1697b792013-09-17 19:08:21 -07003176 if (v instanceof Workspace) {
3177 if (!mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003178 if (!mWorkspace.isTouchActive()) {
3179 showOverviewMode(true);
Adam Cohen93c97562013-09-26 13:48:01 -07003180 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3181 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
3182 return true;
3183 } else {
3184 return false;
3185 }
Adam Cohenaa4c8c12014-06-06 11:52:52 -07003186 } else {
3187 return false;
Adam Cohen1697b792013-09-17 19:08:21 -07003188 }
Adam Cohen1697b792013-09-17 19:08:21 -07003189 }
3190
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003191 CellLayout.CellInfo longClickCellInfo = null;
3192 View itemUnderLongClick = null;
3193 if (v.getTag() instanceof ItemInfo) {
3194 ItemInfo info = (ItemInfo) v.getTag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08003195 longClickCellInfo = new CellLayout.CellInfo(v, info);
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003196 itemUnderLongClick = longClickCellInfo.cell;
3197 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003198 }
3199
Winson Chung3d503fb2011-07-13 17:25:49 -07003200 // The hotseat touch handling does not go through Workspace, and we always allow long press
3201 // on hotseat items.
Dan Sandlere26d0942014-01-13 14:30:14 -05003202 final boolean inHotseat = isHotseatLayout(v);
Sunny Goyal8e2133b2015-05-06 13:39:07 -07003203 if (!mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07003204 if (itemUnderLongClick == null) {
Adam Cohend3ecce92013-09-16 14:58:00 -07003205 // User long pressed on empty space
3206 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3207 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Adam Cohend3ecce92013-09-16 14:58:00 -07003208 if (mWorkspace.isInOverviewMode()) {
3209 mWorkspace.startReordering(v);
3210 } else {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003211 showOverviewMode(true);
Adam Cohendedbd962013-07-11 14:21:49 -07003212 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003213 } else {
Dan Sandlere26d0942014-01-13 14:30:14 -05003214 final boolean isAllAppsButton = inHotseat && isAllAppsButtonRank(
3215 mHotseat.getOrderInHotseat(
3216 longClickCellInfo.cellX,
3217 longClickCellInfo.cellY));
3218 if (!(itemUnderLongClick instanceof Folder || isAllAppsButton)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003219 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07003220 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003221 }
3222 }
3223 }
3224 return true;
3225 }
3226
Winson Chung3d503fb2011-07-13 17:25:49 -07003227 boolean isHotseatLayout(View layout) {
3228 return mHotseat != null && layout != null &&
3229 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
3230 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08003231
Winson Chung3d503fb2011-07-13 17:25:49 -07003232 /**
3233 * Returns the CellLayout of the specified container at the specified screen.
3234 */
Sunny Goyal92820592015-03-02 11:31:35 -08003235 public CellLayout getCellLayout(long container, long screenId) {
Winson Chung3d503fb2011-07-13 17:25:49 -07003236 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3237 if (mHotseat != null) {
3238 return mHotseat.getLayout();
3239 } else {
3240 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08003241 }
Winson Chung3d503fb2011-07-13 17:25:49 -07003242 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08003243 return mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08003244 }
3245 }
3246
Winson Chungb745afb2015-03-02 11:51:23 -08003247 /**
3248 * For overridden classes.
3249 */
Daniel Sandler843e8602010-06-07 14:59:01 -04003250 public boolean isAllAppsVisible() {
Winson Chungb745afb2015-03-02 11:51:23 -08003251 return isAppsViewVisible();
3252 }
3253
3254 public boolean isAppsViewVisible() {
3255 return (mState == State.APPS) || (mOnResumeState == State.APPS);
3256 }
3257
3258 public boolean isWidgetsViewVisible() {
3259 return (mState == State.WIDGETS) || (mOnResumeState == State.WIDGETS);
Joe Onoratofb0ca672009-09-14 17:55:46 -04003260 }
3261
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003262 private void setWorkspaceBackground(int background) {
3263 switch (background) {
3264 case WORKSPACE_BACKGROUND_TRANSPARENT:
3265 getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
3266 break;
3267 case WORKSPACE_BACKGROUND_BLACK:
3268 getWindow().setBackgroundDrawable(null);
3269 break;
3270 default:
3271 getWindow().setBackgroundDrawable(mWorkspaceBackgroundDrawable);
3272 }
Craig Mautner360310b2012-10-26 15:13:08 -07003273 }
3274
Selim Cinek3a8a8f72014-01-16 10:38:38 -08003275 protected void changeWallpaperVisiblity(boolean visible) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003276 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
3277 int curflags = getWindow().getAttributes().flags
3278 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
3279 if (wpflags != curflags) {
3280 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
3281 }
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003282 setWorkspaceBackground(visible ? WORKSPACE_BACKGROUND_GRADIENT : WORKSPACE_BACKGROUND_BLACK);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003283 }
3284
Michael Jurkae326f182011-11-21 14:05:46 -08003285 @Override
3286 public void onTrimMemory(int level) {
3287 super.onTrimMemory(level);
Adam Cohen3f9c9712014-10-31 11:48:25 -07003288 if (level >= ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
3289 // The widget preview db can result in holding onto over
3290 // 3MB of memory for caching which isn't necessary.
3291 SQLiteDatabase.releaseMemory();
3292
Adam Cohenc8f4e1b2014-11-19 16:03:20 -08003293 // This clears all widget bitmaps from the widget tray
Hyunyoung Song3f471442015-04-08 19:01:34 -07003294 // TODO(hyunyoungs)
Michael Jurkae326f182011-11-21 14:05:46 -08003295 }
Robert Kozikowski67c30862015-03-30 23:46:46 +01003296 if (mLauncherCallbacks != null) {
3297 mLauncherCallbacks.onTrimMemory(level);
3298 }
Michael Jurkae326f182011-11-21 14:05:46 -08003299 }
3300
Winson5c6bdbb2015-09-03 11:36:19 -07003301 /**
3302 * @return whether or not the Launcher state changed.
3303 */
3304 public boolean showWorkspace(boolean animated) {
3305 return showWorkspace(WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated, null);
Adam Cohened307df2013-10-02 09:37:31 -07003306 }
3307
Winson5c6bdbb2015-09-03 11:36:19 -07003308 /**
3309 * @return whether or not the Launcher state changed.
3310 */
3311 public boolean showWorkspace(boolean animated, Runnable onCompleteRunnable) {
3312 return showWorkspace(WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated,
Winson Chungef7f8742015-06-04 17:18:17 -07003313 onCompleteRunnable);
Winson Chungdc61c4d2015-04-20 18:26:57 -07003314 }
3315
Winson5c6bdbb2015-09-03 11:36:19 -07003316 /**
3317 * @return whether or not the Launcher state changed.
3318 */
3319 protected boolean showWorkspace(int snapToPage, boolean animated) {
3320 return showWorkspace(snapToPage, animated, null);
Winson Chungdc61c4d2015-04-20 18:26:57 -07003321 }
3322
Winson5c6bdbb2015-09-03 11:36:19 -07003323 /**
3324 * @return whether or not the Launcher state changed.
3325 */
3326 boolean showWorkspace(int snapToPage, boolean animated, Runnable onCompleteRunnable) {
Winson Chung0f785722015-04-08 10:27:49 -07003327 boolean changed = mState != State.WORKSPACE ||
3328 mWorkspace.getState() != Workspace.State.NORMAL;
3329 if (changed) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003330 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003331 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3332 Workspace.State.NORMAL, snapToPage, animated, onCompleteRunnable);
Winson Chungc7d2b602012-05-16 17:02:20 -07003333
Michael Jurkab3e22d92011-10-31 15:58:33 -07003334 // Set focus to the AppsCustomize button
3335 if (mAllAppsButton != null) {
3336 mAllAppsButton.requestFocus();
3337 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003338 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07003339
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003340 // Change the state *after* we've called all the transition code
3341 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08003342
Winson Chung5fb63472011-02-02 17:03:37 -08003343 // Resume the auto-advance of widgets
3344 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08003345 updateAutoAdvanceState();
Winson Chung5fb63472011-02-02 17:03:37 -08003346
Winson Chung0f785722015-04-08 10:27:49 -07003347 if (changed) {
3348 // Send an accessibility event to announce the context change
3349 getWindow().getDecorView()
3350 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Winson Chung0f785722015-04-08 10:27:49 -07003351 }
Winson5c6bdbb2015-09-03 11:36:19 -07003352 return changed;
Bjorn Bringertc459e522013-06-07 19:36:01 +01003353 }
3354
Adam Cohened307df2013-10-02 09:37:31 -07003355 void showOverviewMode(boolean animated) {
3356 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003357 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3358 Workspace.State.OVERVIEW,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003359 WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated,
3360 null /* onCompleteRunnable */);
Adam Cohened307df2013-10-02 09:37:31 -07003361 mState = State.WORKSPACE;
Joe Onorato00acb122009-08-04 16:04:30 -04003362 }
3363
Winson Chungb745afb2015-03-02 11:51:23 -08003364 /**
3365 * Shows the apps view.
3366 */
Winson Chung76648c52015-07-10 14:33:23 -07003367 void showAppsView(boolean animated, boolean resetListToTop, boolean updatePredictedApps,
3368 boolean focusSearchBar) {
Winson Chungb745afb2015-03-02 11:51:23 -08003369 if (resetListToTop) {
3370 mAppsView.scrollToTop();
3371 }
Winson Chung4ac30062015-05-08 17:34:17 -07003372 if (updatePredictedApps) {
3373 tryAndUpdatePredictedApps();
3374 }
Winson Chung76648c52015-07-10 14:33:23 -07003375 showAppsOrWidgets(State.APPS, animated, focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003376 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003377
Winson Chungb745afb2015-03-02 11:51:23 -08003378 /**
3379 * Shows the widgets view.
3380 */
3381 void showWidgetsView(boolean animated, boolean resetPageToZero) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003382 if (LOGD) Log.d(TAG, "showWidgetsView:" + animated + " resetPageToZero:" + resetPageToZero);
Winson Chung82963d52013-10-09 11:20:57 -07003383 if (resetPageToZero) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003384 mWidgetsView.scrollToTop();
Winson Chung82963d52013-10-09 11:20:57 -07003385 }
Winson Chung76648c52015-07-10 14:33:23 -07003386 showAppsOrWidgets(State.WIDGETS, animated, false);
Hyunyoung Song3f471442015-04-08 19:01:34 -07003387
3388 mWidgetsView.post(new Runnable() {
Adam Cohendcc5e712014-06-23 15:38:55 -04003389 @Override
3390 public void run() {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003391 mWidgetsView.requestFocus();
Adam Cohendcc5e712014-06-23 15:38:55 -04003392 }
3393 });
Winson Chungb745afb2015-03-02 11:51:23 -08003394 }
3395
3396 /**
3397 * Sets up the transition to show the apps/widgets view.
Hyunyoung Songb7900832015-05-15 16:29:45 -07003398 *
3399 * @return whether the current from and to state allowed this operation
Winson Chungb745afb2015-03-02 11:51:23 -08003400 */
Hyunyoung Songb7900832015-05-15 16:29:45 -07003401 // TODO: calling method should use the return value so that when {@code false} is returned
3402 // the workspace transition doesn't fall into invalid state.
Winson Chung76648c52015-07-10 14:33:23 -07003403 private boolean showAppsOrWidgets(State toState, boolean animated, boolean focusSearchBar) {
Hyunyoung Songb7900832015-05-15 16:29:45 -07003404 if (mState != State.WORKSPACE && mState != State.APPS_SPRING_LOADED &&
3405 mState != State.WIDGETS_SPRING_LOADED) {
3406 return false;
3407 }
3408 if (toState != State.APPS && toState != State.WIDGETS) {
3409 return false;
3410 }
Winson Chungb745afb2015-03-02 11:51:23 -08003411
3412 if (toState == State.APPS) {
Winson Chung006ee262015-08-03 14:40:11 -07003413 mStateTransitionAnimation.startAnimationToAllApps(mWorkspace.getState(), animated,
3414 focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003415 } else {
Winson Chung006ee262015-08-03 14:40:11 -07003416 mStateTransitionAnimation.startAnimationToWidgets(mWorkspace.getState(), animated);
Winson Chungb745afb2015-03-02 11:51:23 -08003417 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003418
Michael Jurkab3e22d92011-10-31 15:58:33 -07003419 // Change the state *after* we've called all the transition code
Winson Chungb745afb2015-03-02 11:51:23 -08003420 mState = toState;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003421
3422 // Pause the auto-advance of widgets until we are out of AllApps
3423 mUserPresent = false;
Winson Chungb745afb2015-03-02 11:51:23 -08003424 updateAutoAdvanceState();
Michael Jurkab3e22d92011-10-31 15:58:33 -07003425 closeFolder();
3426
3427 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07003428 getWindow().getDecorView()
3429 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Hyunyoung Songb7900832015-05-15 16:29:45 -07003430 return true;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003431 }
3432
Winson Chungcd99cd32015-04-29 11:03:24 -07003433 /**
3434 * Updates the workspace and interaction state on state change, and return the animation to this
3435 * new state.
3436 */
3437 public Animator startWorkspaceStateChangeAnimation(Workspace.State toState, int toPage,
Winson Chung006ee262015-08-03 14:40:11 -07003438 boolean animated, HashMap<View, Integer> layerViews) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003439 Workspace.State fromState = mWorkspace.getState();
Winson Chung006ee262015-08-03 14:40:11 -07003440 Animator anim = mWorkspace.setStateWithAnimation(toState, toPage, animated, layerViews);
Winson Chungcd99cd32015-04-29 11:03:24 -07003441 updateInteraction(fromState, toState);
3442 return anim;
3443 }
3444
Hyunyoung Song3f471442015-04-08 19:01:34 -07003445 public void enterSpringLoadedDragMode() {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003446 if (LOGD) Log.d(TAG, String.format("enterSpringLoadedDragMode [mState=%s", mState.name()));
Winson Chungb745afb2015-03-02 11:51:23 -08003447 if (mState == State.WORKSPACE || mState == State.APPS_SPRING_LOADED ||
3448 mState == State.WIDGETS_SPRING_LOADED) {
3449 return;
Winson Chungb26f3d62011-06-02 10:49:29 -07003450 }
Winson Chungb745afb2015-03-02 11:51:23 -08003451
Winson Chung006ee262015-08-03 14:40:11 -07003452 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3453 Workspace.State.SPRING_LOADED,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003454 WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, true /* animated */,
3455 null /* onCompleteRunnable */);
Winson Chungb745afb2015-03-02 11:51:23 -08003456 mState = isAppsViewVisible() ? State.APPS_SPRING_LOADED : State.WIDGETS_SPRING_LOADED;
Michael Jurkad3ef3062010-11-23 16:23:58 -08003457 }
Adam Cohen7777d962011-08-18 18:58:38 -07003458
Hyunyoung Song3f471442015-04-08 19:01:34 -07003459 public void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, int delay,
Adam Cohened66b2b2012-01-23 17:28:51 -08003460 final Runnable onCompleteRunnable) {
Winson Chungb745afb2015-03-02 11:51:23 -08003461 if (mState != State.APPS_SPRING_LOADED && mState != State.WIDGETS_SPRING_LOADED) return;
Winson Chung09bfc452011-09-09 11:30:20 -07003462
Winson Chunge7a03942011-08-05 15:05:12 -07003463 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07003464 @Override
3465 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003466 if (successfulDrop) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003467 // TODO(hyunyoungs): verify if this hack is still needed, if not, delete.
3468 //
Michael Jurka7bdb25a2011-08-03 15:16:44 -07003469 // Before we show workspace, hide all apps again because
3470 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
3471 // clean up our state transition functions
Hyunyoung Song3f471442015-04-08 19:01:34 -07003472 mWidgetsView.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003473 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07003474 } else {
3475 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003476 }
Winson Chung557d6ed2011-07-08 15:34:52 -07003477 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07003478 }, delay);
Winson Chung557d6ed2011-07-08 15:34:52 -07003479 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003480
Michael Jurkad3ef3062010-11-23 16:23:58 -08003481 void exitSpringLoadedDragMode() {
Winson Chungb745afb2015-03-02 11:51:23 -08003482 if (mState == State.APPS_SPRING_LOADED) {
Winson Chung4ac30062015-05-08 17:34:17 -07003483 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07003484 false /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -08003485 } else if (mState == State.WIDGETS_SPRING_LOADED) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003486 showWidgetsView(true, false);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003487 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003488 }
3489
Winson Chung4ac30062015-05-08 17:34:17 -07003490 /**
3491 * Updates the set of predicted apps if it hasn't been updated since the last time Launcher was
3492 * resumed.
3493 */
3494 private void tryAndUpdatePredictedApps() {
3495 if (mLauncherCallbacks != null) {
Winson Chung6b1c73f2015-06-18 11:38:42 -07003496 List<ComponentKey> apps = mLauncherCallbacks.getPredictedApps();
Winson Chung91c05952015-06-25 12:17:30 -07003497 if (apps != null) {
Winson Chung4ac30062015-05-08 17:34:17 -07003498 mAppsView.setPredictedApps(apps);
3499 }
3500 }
3501 }
3502
Michael Jurkab3e22d92011-10-31 15:58:33 -07003503 void lockAllApps() {
3504 // TODO
3505 }
3506
3507 void unlockAllApps() {
3508 // TODO
3509 }
3510
Sunny Goyal594d76d2014-11-06 10:12:54 -08003511 protected void disableVoiceButtonProxy(boolean disable) {
3512 // NO-OP
Winson Chungbb185bd2011-11-21 12:31:42 -08003513 }
3514
Winsonf768d932015-09-25 16:12:35 -07003515 public boolean launcherCallbacksProvidesSearch() {
3516 return (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch());
3517 }
3518
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003519 public View getOrCreateQsbBar() {
Winsonf768d932015-09-25 16:12:35 -07003520 if (launcherCallbacksProvidesSearch()) {
Adam Cohenc2d6e892014-10-16 09:49:24 -07003521 return mLauncherCallbacks.getQsbBar();
Adam Cohen9211d422014-10-07 18:14:53 -07003522 }
3523
Adam Cohen24ce0b32014-01-14 16:18:14 -08003524 if (mQsb == null) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003525 AppWidgetProviderInfo searchProvider = Utilities.getSearchWidgetProvider(this);
3526 if (searchProvider == null) {
3527 return null;
3528 }
3529
3530 Bundle opts = new Bundle();
3531 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_HOST_CATEGORY,
Adam Coheneb8e2822015-02-20 16:38:48 +00003532 AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003533
Tony Wickham3a3517f2015-10-06 11:27:04 -07003534 // Determine the min and max dimensions of the widget.
3535 LauncherAppState app = LauncherAppState.getInstance();
3536 DeviceProfile portraitProfile = app.getInvariantDeviceProfile().portraitProfile;
3537 DeviceProfile landscapeProfile = app.getInvariantDeviceProfile().landscapeProfile;
3538 float density = getResources().getDisplayMetrics().density;
3539 Rect searchBounds = portraitProfile.getSearchBarBounds(Utilities.isRtl(getResources()));
3540 int maxHeight = (int) (searchBounds.height() / density);
3541 int minHeight = maxHeight;
3542 int maxWidth = (int) (searchBounds.width() / density);
3543 int minWidth = maxWidth;
3544 if (!landscapeProfile.isVerticalBarLayout()) {
3545 searchBounds = landscapeProfile.getSearchBarBounds(Utilities.isRtl(getResources()));
3546 maxHeight = (int) Math.max(maxHeight, searchBounds.height() / density);
3547 minHeight = (int) Math.min(minHeight, searchBounds.height() / density);
3548 maxWidth = (int) Math.max(maxWidth, searchBounds.width() / density);
3549 minWidth = (int) Math.min(minWidth, searchBounds.width() / density);
3550 }
3551 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_MAX_HEIGHT, maxHeight);
3552 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_MIN_HEIGHT, minHeight);
3553 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_MAX_WIDTH, maxWidth);
3554 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_MIN_WIDTH, minWidth);
3555
Sunny Goyal594d76d2014-11-06 10:12:54 -08003556 SharedPreferences sp = getSharedPreferences(
3557 LauncherAppState.getSharedPreferencesKey(), MODE_PRIVATE);
3558 int widgetId = sp.getInt(QSB_WIDGET_ID, -1);
Sunny Goyal416541c2014-11-14 11:59:57 -08003559 AppWidgetProviderInfo widgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003560 if (!searchProvider.provider.flattenToString().equals(
3561 sp.getString(QSB_WIDGET_PROVIDER, null))
Sunny Goyal416541c2014-11-14 11:59:57 -08003562 || (widgetInfo == null)
3563 || !widgetInfo.provider.equals(searchProvider.provider)) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003564 // A valid widget is not already bound.
3565 if (widgetId > -1) {
3566 mAppWidgetHost.deleteAppWidgetId(widgetId);
3567 widgetId = -1;
3568 }
3569
3570 // Try to bind a new widget
3571 widgetId = mAppWidgetHost.allocateAppWidgetId();
3572
3573 if (!AppWidgetManagerCompat.getInstance(this)
3574 .bindAppWidgetIdIfAllowed(widgetId, searchProvider, opts)) {
3575 mAppWidgetHost.deleteAppWidgetId(widgetId);
3576 widgetId = -1;
3577 }
3578
3579 sp.edit()
3580 .putInt(QSB_WIDGET_ID, widgetId)
3581 .putString(QSB_WIDGET_PROVIDER, searchProvider.provider.flattenToString())
3582 .commit();
3583 }
3584
Sunny Goyal8d595092015-07-06 12:22:14 -07003585 mAppWidgetHost.setQsbWidgetId(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003586 if (widgetId != -1) {
3587 mQsb = mAppWidgetHost.createView(this, widgetId, searchProvider);
Sunny Goyalebfae6e2015-08-27 15:30:25 -07003588 mQsb.setId(R.id.qsb_widget);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003589 mQsb.updateAppWidgetOptions(opts);
3590 mQsb.setPadding(0, 0, 0, 0);
3591 mSearchDropTargetBar.addView(mQsb);
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003592 mSearchDropTargetBar.setQsbSearchBar(mQsb);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003593 }
Cristina Stancu476493b2013-08-07 17:20:14 +01003594 }
Adam Cohen24ce0b32014-01-14 16:18:14 -08003595 return mQsb;
Cristina Stancu476493b2013-08-07 17:20:14 +01003596 }
3597
Sunny Goyal22235bc2015-04-03 09:23:43 -07003598 private void reinflateQSBIfNecessary() {
3599 if (mQsb instanceof LauncherAppWidgetHostView &&
3600 ((LauncherAppWidgetHostView) mQsb).isReinflateRequired()) {
3601 mSearchDropTargetBar.removeView(mQsb);
3602 mQsb = null;
3603 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
3604 }
3605 }
3606
Michael Jurkad7c28052012-04-27 15:43:36 -07003607 @Override
3608 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07003609 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07003610 final List<CharSequence> text = event.getText();
3611 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07003612 // Populate event with a fake title based on the current state.
Winson Chungb745afb2015-03-02 11:51:23 -08003613 if (mState == State.APPS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003614 text.add(getString(R.string.all_apps_button_label));
Winson Chungb745afb2015-03-02 11:51:23 -08003615 } else if (mState == State.WIDGETS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003616 text.add(getString(R.string.widget_button_text));
Hyunyoung Song166e6482015-06-25 21:06:07 -07003617 } else if (mWorkspace != null) {
3618 text.add(mWorkspace.getCurrentPageDescription());
alanv1d4fde62012-10-17 13:15:47 -07003619 } else {
3620 text.add(getString(R.string.all_apps_home_button_label));
3621 }
Michael Jurkad7c28052012-04-27 15:43:36 -07003622 return result;
3623 }
3624
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003625 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003626 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003627 */
Adam Cohen091440a2015-03-18 14:16:05 -07003628 @Thunk class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003629 @Override
3630 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003631 closeSystemDialogs();
3632 }
3633 }
3634
3635 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07003636 * If the activity is currently paused, signal that we need to run the passed Runnable
3637 * in onResume.
3638 *
3639 * This needs to be called from incoming places where resources might have been loaded
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003640 * while the activity is paused. That is because the Configuration (e.g., rotation) might be
3641 * wrong when we're not running, and if the activity comes back to what the configuration was
3642 * when we were paused, activity is not restarted.
Michael Jurka7607c2f2013-04-03 14:33:19 -07003643 *
3644 * Implementation of the method from LauncherModel.Callbacks.
3645 *
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003646 * @return {@code true} if we are currently paused. The caller might be able to skip some work
Michael Jurka7607c2f2013-04-03 14:33:19 -07003647 */
Rahul Chaturvedi799aa042015-06-01 21:26:41 -04003648 @Thunk boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003649 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003650 if (LOGD) Log.d(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02003651 if (deletePreviousRunnables) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07003652 while (mBindOnResumeCallbacks.remove(run)) {
Michael Jurkac402cd92013-05-20 15:49:32 +02003653 }
3654 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07003655 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07003656 return true;
3657 } else {
3658 return false;
3659 }
3660 }
3661
Michael Jurkac402cd92013-05-20 15:49:32 +02003662 private boolean waitUntilResume(Runnable run) {
3663 return waitUntilResume(run, false);
3664 }
3665
Michael Jurka1e2f4652013-07-08 18:03:46 -07003666 public void addOnResumeCallback(Runnable run) {
Michael Jurka54554252013-08-01 12:52:23 +02003667 mOnResumeCallbacks.add(run);
Michael Jurka1e2f4652013-07-08 18:03:46 -07003668 }
3669
Michael Jurka7607c2f2013-04-03 14:33:19 -07003670 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003671 * If the activity is currently paused, signal that we need to re-run the loader
3672 * in onResume.
3673 *
3674 * This needs to be called from incoming places where resources might have been loaded
3675 * while we are paused. That is becaues the Configuration might be wrong
3676 * when we're not running, and if it comes back to what it was when we
3677 * were paused, we are not restarted.
3678 *
3679 * Implementation of the method from LauncherModel.Callbacks.
3680 *
3681 * @return true if we are currently paused. The caller might be able to
3682 * skip some work in that case since we will come back again.
3683 */
3684 public boolean setLoadOnResume() {
3685 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003686 if (LOGD) Log.d(TAG, "setLoadOnResume");
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003687 mOnResumeNeedsLoad = true;
3688 return true;
3689 } else {
3690 return false;
3691 }
3692 }
3693
3694 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003695 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003696 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003697 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003698 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003699 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003700 } else {
3701 return SCREEN_COUNT / 2;
3702 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003703 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003704
Joe Onorato9c1289c2009-08-17 11:03:03 -04003705 /**
3706 * Refreshes the shortcuts shown on the workspace.
3707 *
3708 * Implementation of the method from LauncherModel.Callbacks.
3709 */
3710 public void startBinding() {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07003711 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08003712
Michael Jurka7607c2f2013-04-03 14:33:19 -07003713 // If we're starting binding all over again, clear any bind calls we'd postponed in
3714 // the past (see waitUntilResume) -- we don't need them since we're starting binding
3715 // from scratch again
Michael Jurka1e2f4652013-07-08 18:03:46 -07003716 mBindOnResumeCallbacks.clear();
Adam Cohendf035382011-04-11 17:22:04 -07003717
Winson Chungd64d1762013-08-20 14:37:16 -07003718 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07003719 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07003720 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07003721
Michael Jurka05bf644e2011-11-30 20:28:53 -08003722 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003723 if (mHotseat != null) {
3724 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003725 }
3726 }
3727
Adam Cohendcd297f2013-06-18 13:13:40 -07003728 @Override
3729 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Winson Chung64359a52013-07-08 17:17:08 -07003730 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07003731
Adam Cohen5084cba2013-09-03 12:01:16 -07003732 // If there are no screens, we need to have an empty screen
3733 if (orderedScreenIds.size() == 0) {
3734 mWorkspace.addExtraEmptyScreen();
3735 }
Winson Chung0e6a7132013-08-23 12:55:10 -07003736
3737 // Create the custom content page (this call updates mDefaultScreen which calls
Dave Hawkeya8881582013-09-17 15:55:33 -06003738 // setCurrentPage() so ensure that all pages are added before calling this).
Derek Prothrodadd9842014-01-17 13:43:50 -05003739 if (hasCustomContentToLeft()) {
3740 mWorkspace.createCustomContentContainer();
3741 populateCustomContentContainer();
Winson Chung0e6a7132013-08-23 12:55:10 -07003742 }
Winson Chung64359a52013-07-08 17:17:08 -07003743 }
3744
3745 @Override
3746 public void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Adam Cohendcd297f2013-06-18 13:13:40 -07003747 int count = orderedScreenIds.size();
3748 for (int i = 0; i < count; i++) {
Adam Cohen89bddfa2013-08-20 11:57:13 -07003749 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(orderedScreenIds.get(i));
Adam Cohendcd297f2013-06-18 13:13:40 -07003750 }
Adam Cohendcd297f2013-06-18 13:13:40 -07003751 }
3752
Winson Chungd64d1762013-08-20 14:37:16 -07003753 public void bindAppsAdded(final ArrayList<Long> newScreens,
3754 final ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -07003755 final ArrayList<ItemInfo> addAnimated,
3756 final ArrayList<AppInfo> addedApps) {
Winson Chungd64d1762013-08-20 14:37:16 -07003757 Runnable r = new Runnable() {
3758 public void run() {
Winson Chungc58497e2013-09-03 17:48:37 -07003759 bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps);
Winson Chungd64d1762013-08-20 14:37:16 -07003760 }
3761 };
3762 if (waitUntilResume(r)) {
3763 return;
3764 }
3765
Winson Chungd64d1762013-08-20 14:37:16 -07003766 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08003767 if (newScreens != null) {
3768 bindAddScreens(newScreens);
3769 }
Winson Chungd64d1762013-08-20 14:37:16 -07003770
3771 // We add the items without animation on non-visible pages, and with
3772 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08003773 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003774 bindItems(addNotAnimated, 0,
3775 addNotAnimated.size(), false);
3776 }
Adam Cohen76a47a12014-02-05 11:47:43 -08003777 if (addAnimated != null && !addAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003778 bindItems(addAnimated, 0,
3779 addAnimated.size(), true);
3780 }
Winson Chungc58497e2013-09-03 17:48:37 -07003781
Winson Chung87412982013-10-03 18:34:14 -07003782 // Remove the extra empty screen
Adam Cohen689ff162014-05-08 17:27:56 -07003783 mWorkspace.removeExtraEmptyScreen(false, false);
Winson Chung87412982013-10-03 18:34:14 -07003784
Winson Chungb745afb2015-03-02 11:51:23 -08003785 if (addedApps != null && mAppsView != null) {
3786 mAppsView.addApps(addedApps);
Winson Chungc58497e2013-09-03 17:48:37 -07003787 }
Winson Chungd64d1762013-08-20 14:37:16 -07003788 }
3789
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003790 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003791 * Bind the items start-end from the list.
3792 *
3793 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003794 */
Winson Chung64359a52013-07-08 17:17:08 -07003795 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end,
3796 final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07003797 Runnable r = new Runnable() {
3798 public void run() {
3799 bindItems(shortcuts, start, end, forceAnimateIcons);
3800 }
3801 };
3802 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003803 return;
3804 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003805
Winson Chungf0c6ae02012-03-21 16:10:31 -07003806 // Get the list of added shortcuts and intersect them with the set of shortcuts here
Winson Chung64359a52013-07-08 17:17:08 -07003807 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
3808 final Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chung997a9232013-07-24 15:33:46 -07003809 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07003810 Workspace workspace = mWorkspace;
Winson Chung997a9232013-07-24 15:33:46 -07003811 long newShortcutsScreenId = -1;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003812 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003813 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003814
3815 // Short circuit if we are loading dock items for a configuration which has no dock
3816 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3817 mHotseat == null) {
3818 continue;
3819 }
3820
Sunny Goyal639e9062015-08-19 19:17:06 -07003821 final View view;
Joe Onorato9c1289c2009-08-17 11:03:03 -04003822 switch (item.itemType) {
3823 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3824 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07003825 ShortcutInfo info = (ShortcutInfo) item;
Sunny Goyal639e9062015-08-19 19:17:06 -07003826 view = createShortcut(info);
Adam Cohendcd297f2013-06-18 13:13:40 -07003827
Winson Chung64359a52013-07-08 17:17:08 -07003828 /*
3829 * TODO: FIX collision case
3830 */
Winson Chungce376632013-07-11 16:12:41 -07003831 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
3832 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
3833 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07003834 View v = cl.getChildAt(item.cellX, item.cellY);
3835 Object tag = v.getTag();
3836 String desc = "Collision while binding workspace item: " + item
3837 + ". Collides with " + tag;
3838 if (LauncherAppState.isDogfoodBuild()) {
3839 throw (new RuntimeException(desc));
3840 } else {
3841 Log.d(TAG, desc);
3842 }
Winson Chungce376632013-07-11 16:12:41 -07003843 }
Winson Chung64359a52013-07-08 17:17:08 -07003844 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003845 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003846 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Sunny Goyal639e9062015-08-19 19:17:06 -07003847 view = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003848 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003849 (FolderInfo) item, mIconCache);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003850 break;
Winson Chungc763c4e2013-07-19 13:49:06 -07003851 default:
3852 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04003853 }
Sunny Goyal639e9062015-08-19 19:17:06 -07003854
3855 workspace.addInScreenFromBind(view, item.container, item.screenId, item.cellX,
3856 item.cellY, 1, 1);
3857 if (animateIcons) {
3858 // Animate all the applications up now
3859 view.setAlpha(0f);
3860 view.setScaleX(0f);
3861 view.setScaleY(0f);
3862 bounceAnims.add(createNewAppBounceAnimation(view, i));
3863 newShortcutsScreenId = item.screenId;
3864 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003865 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003866
Winson Chung997a9232013-07-24 15:33:46 -07003867 if (animateIcons) {
3868 // Animate to the correct page
3869 if (newShortcutsScreenId > -1) {
3870 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Winson Chung94d67682013-09-25 16:29:40 -07003871 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId);
Winson Chungb2323832013-10-03 15:22:09 -07003872 final Runnable startBounceAnimRunnable = new Runnable() {
3873 public void run() {
3874 anim.playTogether(bounceAnims);
3875 anim.start();
3876 }
3877 };
Winson Chung997a9232013-07-24 15:33:46 -07003878 if (newShortcutsScreenId != currentScreenId) {
Winson Chung94d67682013-09-25 16:29:40 -07003879 // We post the animation slightly delayed to prevent slowdowns
3880 // when we are loading right after we return to launcher.
3881 mWorkspace.postDelayed(new Runnable() {
3882 public void run() {
Ian Parkinson94449152014-01-21 13:09:59 +00003883 if (mWorkspace != null) {
3884 mWorkspace.snapToPage(newScreenIndex);
3885 mWorkspace.postDelayed(startBounceAnimRunnable,
3886 NEW_APPS_ANIMATION_DELAY);
3887 }
Winson Chung94d67682013-09-25 16:29:40 -07003888 }
3889 }, NEW_APPS_PAGE_MOVE_DELAY);
Winson Chungb2323832013-10-03 15:22:09 -07003890 } else {
3891 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07003892 }
3893 }
Winson Chung64359a52013-07-08 17:17:08 -07003894 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003895 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003896 }
3897
Joe Onorato9c1289c2009-08-17 11:03:03 -04003898 /**
3899 * Implementation of the method from LauncherModel.Callbacks.
3900 */
Sunny Goyale2df0622015-04-24 11:27:00 -07003901 public void bindFolders(final LongArrayMap<FolderInfo> folders) {
Winson Chungd64d1762013-08-20 14:37:16 -07003902 Runnable r = new Runnable() {
3903 public void run() {
3904 bindFolders(folders);
3905 }
3906 };
3907 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003908 return;
3909 }
Sunny Goyale2df0622015-04-24 11:27:00 -07003910 sFolders = folders.clone();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003911 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003912
3913 /**
3914 * Add the views for a widget to the workspace.
3915 *
3916 * Implementation of the method from LauncherModel.Callbacks.
3917 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07003918 public void bindAppWidget(final LauncherAppWidgetInfo item) {
Winson Chungd64d1762013-08-20 14:37:16 -07003919 Runnable r = new Runnable() {
3920 public void run() {
3921 bindAppWidget(item);
3922 }
3923 };
3924 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003925 return;
3926 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003927
Daniel Sandler843e8602010-06-07 14:59:01 -04003928 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
3929 if (DEBUG_WIDGETS) {
3930 Log.d(TAG, "bindAppWidget: " + item);
3931 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003932 final Workspace workspace = mWorkspace;
3933
Adam Cohen59400422014-03-05 18:07:04 -08003934 LauncherAppWidgetProviderInfo appWidgetInfo =
Robin Lee26ace122015-03-16 19:41:43 +00003935 LauncherModel.getProviderInfo(this, item.providerName, item.user);
Adam Cohen59400422014-03-05 18:07:04 -08003936
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003937 if (!mIsSafeModeEnabled
3938 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY) == 0)
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003939 && (item.restoreStatus != LauncherAppWidgetInfo.RESTORE_COMPLETED)) {
3940
Sunny Goyalff572272014-07-23 13:58:07 -07003941 if (appWidgetInfo == null) {
3942 if (DEBUG_WIDGETS) {
3943 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3944 + " belongs to component " + item.providerName
3945 + ", as the povider is null");
3946 }
3947 LauncherModel.deleteItemFromDatabase(this, item);
3948 return;
3949 }
Sunny Goyalff572272014-07-23 13:58:07 -07003950
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003951 // If we do not have a valid id, try to bind an id.
3952 if ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_ID_NOT_VALID) != 0) {
3953 // Note: This assumes that the id remap broadcast is received before this step.
3954 // If that is not the case, the id remap will be ignored and user may see the
3955 // click to setup view.
3956 PendingAddWidgetInfo pendingInfo = new PendingAddWidgetInfo(this, appWidgetInfo, null);
3957 pendingInfo.spanX = item.spanX;
3958 pendingInfo.spanY = item.spanY;
3959 pendingInfo.minSpanX = item.minSpanX;
3960 pendingInfo.minSpanY = item.minSpanY;
3961 Bundle options = null;
3962 WidgetHostViewLoader.getDefaultOptionsForWidget(this, pendingInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07003963
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003964 int newWidgetId = mAppWidgetHost.allocateAppWidgetId();
3965 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
3966 newWidgetId, appWidgetInfo, options);
3967
3968 // TODO consider showing a permission dialog when the widget is clicked.
3969 if (!success) {
3970 mAppWidgetHost.deleteAppWidgetId(newWidgetId);
3971 if (DEBUG_WIDGETS) {
3972 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3973 + " belongs to component " + item.providerName
3974 + ", as the launcher is unable to bing a new widget id");
3975 }
3976 LauncherModel.deleteItemFromDatabase(this, item);
3977 return;
Sunny Goyalff572272014-07-23 13:58:07 -07003978 }
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003979
3980 item.appWidgetId = newWidgetId;
3981
3982 // If the widget has a configure activity, it is still needs to set it up, otherwise
3983 // the widget is ready to go.
3984 item.restoreStatus = (appWidgetInfo.configure == null)
3985 ? LauncherAppWidgetInfo.RESTORE_COMPLETED
3986 : LauncherAppWidgetInfo.FLAG_UI_NOT_READY;
3987
3988 LauncherModel.updateItemInDatabase(this, item);
3989 } else if (((item.restoreStatus & LauncherAppWidgetInfo.FLAG_UI_NOT_READY) != 0)
3990 && (appWidgetInfo.configure == null)) {
3991 // If the ID is already valid, verify if we need to configure or not.
3992 item.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
3993 LauncherModel.updateItemInDatabase(this, item);
Sunny Goyalff572272014-07-23 13:58:07 -07003994 }
Sunny Goyalff572272014-07-23 13:58:07 -07003995 }
3996
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003997 if (!mIsSafeModeEnabled && item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
Sunny Goyal651077b2014-06-30 14:15:31 -07003998 final int appWidgetId = item.appWidgetId;
Sunny Goyal651077b2014-06-30 14:15:31 -07003999 if (DEBUG_WIDGETS) {
Adam Cohen59400422014-03-05 18:07:04 -08004000 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component "
4001 + appWidgetInfo.provider);
Sunny Goyal651077b2014-06-30 14:15:31 -07004002 }
Daniel Sandler843e8602010-06-07 14:59:01 -04004003
Sunny Goyal651077b2014-06-30 14:15:31 -07004004 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
Sunny Goyal233ee962015-08-03 13:05:01 -07004005 item.minSpanX = appWidgetInfo.minSpanX;
4006 item.minSpanY = appWidgetInfo.minSpanY;
Sunny Goyal651077b2014-06-30 14:15:31 -07004007 } else {
4008 appWidgetInfo = null;
Sunny Goyal9b4b0812014-10-08 10:47:28 -07004009 PendingAppWidgetHostView view = new PendingAppWidgetHostView(this, item,
4010 mIsSafeModeEnabled);
Sunny Goyal0fc1be12014-08-11 17:05:23 -07004011 view.updateIcon(mIconCache);
4012 item.hostView = view;
Sunny Goyal651077b2014-06-30 14:15:31 -07004013 item.hostView.updateAppWidget(null);
Sunny Goyalff572272014-07-23 13:58:07 -07004014 item.hostView.setOnClickListener(this);
Sunny Goyal651077b2014-06-30 14:15:31 -07004015 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004016
Joe Onorato9c1289c2009-08-17 11:03:03 -04004017 item.hostView.setTag(item);
Winson Chung211bac32012-05-15 13:43:57 -07004018 item.onBindAppWidget(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04004019
Adam Cohendcd297f2013-06-18 13:13:40 -07004020 workspace.addInScreen(item.hostView, item.container, item.screenId, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04004021 item.cellY, item.spanX, item.spanY, false);
Adam Cohen59400422014-03-05 18:07:04 -08004022 if (!item.isCustomWidget()) {
4023 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
4024 }
Adam Cohended9f8d2010-11-03 13:25:16 -07004025
Joe Onorato9c1289c2009-08-17 11:03:03 -04004026 workspace.requestLayout();
4027
Daniel Sandler843e8602010-06-07 14:59:01 -04004028 if (DEBUG_WIDGETS) {
4029 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
4030 + (SystemClock.uptimeMillis()-start) + "ms");
4031 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004032 }
4033
Sunny Goyalff572272014-07-23 13:58:07 -07004034 /**
4035 * Restores a pending widget.
4036 *
4037 * @param appWidgetId The app widget id
4038 * @param cellInfo The position on screen where to create the widget.
4039 */
4040 private void completeRestoreAppWidget(final int appWidgetId) {
4041 LauncherAppWidgetHostView view = mWorkspace.getWidgetForAppWidgetId(appWidgetId);
4042 if ((view == null) || !(view instanceof PendingAppWidgetHostView)) {
4043 Log.e(TAG, "Widget update called, when the widget no longer exists.");
4044 return;
4045 }
4046
Sunny Goyal0fc1be12014-08-11 17:05:23 -07004047 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) view.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07004048 info.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
4049
4050 mWorkspace.reinflateWidgetsIfNecessary();
4051 LauncherModel.updateItemInDatabase(this, info);
4052 }
4053
Adam Cohen1462de32012-07-24 22:34:36 -07004054 public void onPageBoundSynchronously(int page) {
4055 mSynchronouslyBoundPages.add(page);
4056 }
4057
Joe Onorato9c1289c2009-08-17 11:03:03 -04004058 /**
4059 * Callback saying that there aren't any more items to bind.
4060 *
4061 * Implementation of the method from LauncherModel.Callbacks.
4062 */
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004063 public void finishBindingItems() {
Winson Chungd64d1762013-08-20 14:37:16 -07004064 Runnable r = new Runnable() {
4065 public void run() {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004066 finishBindingItems();
Winson Chungd64d1762013-08-20 14:37:16 -07004067 }
4068 };
4069 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004070 return;
4071 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004072 if (mSavedState != null) {
4073 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07004074 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004075 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004076 mSavedState = null;
4077 }
4078
Adam Cohen1462de32012-07-24 22:34:36 -07004079 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004080
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004081 setWorkspaceLoading(false);
Adam Cohen3ed316a2014-07-23 18:21:20 -07004082 sendLoadingCompleteBroadcastIfNecessary();
Adam Cohendb364c32014-05-20 14:23:40 -07004083
4084 // If we received the result of any pending adds while the loader was running (e.g. the
4085 // widget configuration forced an orientation change), process them now.
4086 if (sPendingAddItem != null) {
4087 final long screenId = completeAdd(sPendingAddItem);
4088
4089 // TODO: this moves the user to the page where the pending item was added. Ideally,
4090 // the screen would be guaranteed to exist after bind, and the page would be set through
4091 // the workspace restore process.
4092 mWorkspace.post(new Runnable() {
4093 @Override
4094 public void run() {
4095 mWorkspace.snapToScreenId(screenId);
4096 }
4097 });
4098 sPendingAddItem = null;
4099 }
4100
Sunny Goyal756adbc2015-04-16 15:20:51 -07004101 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
Adam Cohen9211d422014-10-07 18:14:53 -07004102
4103 if (mLauncherCallbacks != null) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004104 mLauncherCallbacks.finishBindingItems(false);
Adam Cohen9211d422014-10-07 18:14:53 -07004105 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004106 }
4107
Adam Cohen3ed316a2014-07-23 18:21:20 -07004108 private void sendLoadingCompleteBroadcastIfNecessary() {
4109 if (!mSharedPrefs.getBoolean(FIRST_LOAD_COMPLETE, false)) {
4110 String permission =
4111 getResources().getString(R.string.receive_first_load_broadcast_permission);
4112 Intent intent = new Intent(ACTION_FIRST_LOAD_COMPLETE);
4113 sendBroadcast(intent, permission);
4114 SharedPreferences.Editor editor = mSharedPrefs.edit();
4115 editor.putBoolean(FIRST_LOAD_COMPLETE, true);
4116 editor.apply();
4117 }
4118 }
4119
Winson Chunga0b7e862013-09-05 16:03:15 -07004120 public boolean isAllAppsButtonRank(int rank) {
4121 if (mHotseat != null) {
4122 return mHotseat.isAllAppsButtonRank(rank);
4123 }
4124 return false;
4125 }
4126
Winson Chunga2413752012-04-03 14:22:34 -07004127 private boolean canRunNewAppsAnimation() {
4128 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
Sunny Goyal639e9062015-08-19 19:17:06 -07004129 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000)
4130 && (mClings == null || !mClings.isVisible());
Winson Chunga2413752012-04-03 14:22:34 -07004131 }
4132
Winson Chungc9168342013-06-26 14:54:55 -07004133 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
4134 ValueAnimator bounceAnim = LauncherAnimUtils.ofPropertyValuesHolder(v,
4135 PropertyValuesHolder.ofFloat("alpha", 1f),
4136 PropertyValuesHolder.ofFloat("scaleX", 1f),
4137 PropertyValuesHolder.ofFloat("scaleY", 1f));
4138 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
4139 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
Sunny Goyal5a1f53b2015-05-27 10:24:24 -07004140 bounceAnim.setInterpolator(new OvershootInterpolator(BOUNCE_ANIMATION_TENSION));
Winson Chungc9168342013-06-26 14:54:55 -07004141 return bounceAnim;
4142 }
4143
Adam Cohen27772732013-11-11 14:00:56 +00004144 public boolean useVerticalBarLayout() {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07004145 return mDeviceProfile.isVerticalBarLayout();
Adam Cohen27772732013-11-11 14:00:56 +00004146 }
4147
Tony Wickham3a3517f2015-10-06 11:27:04 -07004148 /** Returns the search bar bounds in pixels. */
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004149 protected Rect getSearchBarBounds() {
Sunny Goyalc6205602015-05-21 20:46:33 -07004150 return mDeviceProfile.getSearchBarBounds(Utilities.isRtl(getResources()));
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004151 }
4152
Winson Chung88fa7412015-08-03 14:25:28 -07004153 public void bindSearchProviderChanged() {
Sunny Goyal594d76d2014-11-06 10:12:54 -08004154 if (mSearchDropTargetBar == null) {
4155 return;
Winson Chungadf0c182012-08-23 14:59:07 -07004156 }
Sunny Goyal594d76d2014-11-06 10:12:54 -08004157 if (mQsb != null) {
4158 mSearchDropTargetBar.removeView(mQsb);
4159 mQsb = null;
4160 }
Adam Cohenb0df1b02015-03-18 22:21:40 -07004161 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004162 }
4163
Amith Yamasani6d7fe502010-11-16 09:05:07 -08004164 /**
Winson Chungbb785c62015-05-05 10:05:08 -07004165 * A runnable that we can dequeue and re-enqueue when all applications are bound (to prevent
4166 * multiple calls to bind the same list.)
4167 */
4168 @Thunk ArrayList<AppInfo> mTmpAppsList;
4169 private Runnable mBindAllApplicationsRunnable = new Runnable() {
4170 public void run() {
4171 bindAllApplications(mTmpAppsList);
4172 mTmpAppsList = null;
4173 }
4174 };
4175
4176 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004177 * Add the icons for all apps.
4178 *
4179 * Implementation of the method from LauncherModel.Callbacks.
4180 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004181 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Winson Chungbb785c62015-05-05 10:05:08 -07004182 if (waitUntilResume(mBindAllApplicationsRunnable, true)) {
4183 mTmpAppsList = apps;
4184 return;
4185 }
4186
Winson Chungb745afb2015-03-02 11:51:23 -08004187 if (mAppsView != null) {
4188 mAppsView.setApps(apps);
4189 }
Adam Cohen9211d422014-10-07 18:14:53 -07004190 if (mLauncherCallbacks != null) {
4191 mLauncherCallbacks.bindAllApplications(apps);
4192 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004193 }
4194
4195 /**
4196 * A package was updated.
4197 *
4198 * Implementation of the method from LauncherModel.Callbacks.
4199 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004200 public void bindAppsUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004201 Runnable r = new Runnable() {
4202 public void run() {
4203 bindAppsUpdated(apps);
4204 }
4205 };
4206 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004207 return;
4208 }
4209
Winson Chungb745afb2015-03-02 11:51:23 -08004210 if (mAppsView != null) {
4211 mAppsView.updateApps(apps);
Winson Chungc58497e2013-09-03 17:48:37 -07004212 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004213 }
4214
Sunny Goyal4390ace2014-10-13 11:33:11 -07004215 @Override
4216 public void bindWidgetsRestored(final ArrayList<LauncherAppWidgetInfo> widgets) {
4217 Runnable r = new Runnable() {
4218 public void run() {
4219 bindWidgetsRestored(widgets);
4220 }
4221 };
4222 if (waitUntilResume(r)) {
4223 return;
4224 }
4225 mWorkspace.widgetsRestored(widgets);
4226 }
4227
Joe Onorato9c1289c2009-08-17 11:03:03 -04004228 /**
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004229 * Some shortcuts were updated in the background.
4230 *
4231 * Implementation of the method from LauncherModel.Callbacks.
4232 */
Sunny Goyal4390ace2014-10-13 11:33:11 -07004233 @Override
4234 public void bindShortcutsChanged(final ArrayList<ShortcutInfo> updated,
4235 final ArrayList<ShortcutInfo> removed, final UserHandleCompat user) {
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004236 Runnable r = new Runnable() {
4237 public void run() {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004238 bindShortcutsChanged(updated, removed, user);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004239 }
4240 };
4241 if (waitUntilResume(r)) {
4242 return;
4243 }
4244
Sunny Goyal4390ace2014-10-13 11:33:11 -07004245 if (!updated.isEmpty()) {
4246 mWorkspace.updateShortcuts(updated);
4247 }
4248
4249 if (!removed.isEmpty()) {
4250 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4251 for (ShortcutInfo si : removed) {
4252 removedComponents.add(si.getTargetComponent());
4253 }
4254 mWorkspace.removeItemsByComponentName(removedComponents, user);
4255 // Notify the drag controller
4256 mDragController.onAppsRemoved(new ArrayList<String>(), removedComponents);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004257 }
4258 }
4259
4260 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004261 * Update the state of a package, typically related to install state.
4262 *
4263 * Implementation of the method from LauncherModel.Callbacks.
4264 */
Sunny Goyale755d462014-07-22 13:48:29 -07004265 @Override
Sunny Goyal756adbc2015-04-16 15:20:51 -07004266 public void bindRestoreItemsChange(final HashSet<ItemInfo> updates) {
4267 Runnable r = new Runnable() {
4268 public void run() {
4269 bindRestoreItemsChange(updates);
4270 }
4271 };
4272 if (waitUntilResume(r)) {
4273 return;
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004274 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004275
Sunny Goyal756adbc2015-04-16 15:20:51 -07004276 mWorkspace.updateRestoreItems(updates);
Sunny Goyala22666f2014-09-18 13:25:15 -07004277 }
4278
4279 /**
Winson Chung83892cc2013-05-01 16:53:33 -07004280 * A package was uninstalled. We take both the super set of packageNames
4281 * in addition to specific applications to remove, the reason being that
4282 * this can be called when a package is updated as well. In that scenario,
4283 * we only remove specific components from the workspace, where as
4284 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004285 *
Sunny Goyal1a745e82014-10-02 15:58:31 -07004286 * @param reason if non-zero, the icons are not permanently removed, rather marked as disabled.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004287 * Implementation of the method from LauncherModel.Callbacks.
4288 */
Sunny Goyal1a745e82014-10-02 15:58:31 -07004289 @Override
Winson Chung83892cc2013-05-01 16:53:33 -07004290 public void bindComponentsRemoved(final ArrayList<String> packageNames,
Sunny Goyal1a745e82014-10-02 15:58:31 -07004291 final ArrayList<AppInfo> appInfos, final UserHandleCompat user, final int reason) {
Winson Chungd64d1762013-08-20 14:37:16 -07004292 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004293 public void run() {
Sunny Goyal1a745e82014-10-02 15:58:31 -07004294 bindComponentsRemoved(packageNames, appInfos, user, reason);
Winson Chung83892cc2013-05-01 16:53:33 -07004295 }
Winson Chungd64d1762013-08-20 14:37:16 -07004296 };
4297 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07004298 return;
4299 }
4300
Sunny Goyal1a745e82014-10-02 15:58:31 -07004301 if (reason == 0) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004302 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4303 for (AppInfo info : appInfos) {
4304 removedComponents.add(info.componentName);
4305 }
Sunny Goyal1a745e82014-10-02 15:58:31 -07004306 if (!packageNames.isEmpty()) {
4307 mWorkspace.removeItemsByPackageName(packageNames, user);
4308 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004309 if (!removedComponents.isEmpty()) {
4310 mWorkspace.removeItemsByComponentName(removedComponents, user);
Sunny Goyal1a745e82014-10-02 15:58:31 -07004311 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004312 // Notify the drag controller
4313 mDragController.onAppsRemoved(packageNames, removedComponents);
4314
Sunny Goyal1a745e82014-10-02 15:58:31 -07004315 } else {
4316 mWorkspace.disableShortcutsByPackageName(packageNames, user, reason);
Joe Onorato36115782010-06-17 13:28:48 -04004317 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07004318
Winson Chungdf95eb12013-10-16 14:57:07 -07004319 // Update AllApps
Winson Chungb745afb2015-03-02 11:51:23 -08004320 if (mAppsView != null) {
4321 mAppsView.removeApps(appInfos);
Winson Chungc58497e2013-09-03 17:48:37 -07004322 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004323 }
Joe Onoratobe386092009-11-17 17:32:16 -08004324
Michael Jurkac402cd92013-05-20 15:49:32 +02004325 private Runnable mBindPackagesUpdatedRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004326 public void run() {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004327 bindAllPackages(mWidgetsModel);
Winson Chung83892cc2013-05-01 16:53:33 -07004328 }
Michael Jurkac402cd92013-05-20 15:49:32 +02004329 };
Hyunyoung Song3f471442015-04-08 19:01:34 -07004330
Hyunyoung Song8821ca92015-05-04 16:28:20 -07004331 @Override
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004332 public void bindAllPackages(final WidgetsModel model) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004333 if (waitUntilResume(mBindPackagesUpdatedRunnable, true)) {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004334 mWidgetsModel = model;
Winson Chung83892cc2013-05-01 16:53:33 -07004335 return;
4336 }
4337
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004338 if (mWidgetsView != null && model != null) {
4339 mWidgetsView.addWidgets(model);
4340 mWidgetsModel = null;
Winson Chung785d2eb2011-04-14 16:08:02 -07004341 }
Winson Chung80baf5a2010-08-09 16:03:15 -07004342 }
4343
Winson Chung400438b2011-01-16 17:53:48 -08004344 private int mapConfigurationOriActivityInfoOri(int configOri) {
4345 final Display d = getWindowManager().getDefaultDisplay();
4346 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
4347 switch (d.getRotation()) {
4348 case Surface.ROTATION_0:
4349 case Surface.ROTATION_180:
4350 // We are currently in the same basic orientation as the natural orientation
4351 naturalOri = configOri;
4352 break;
4353 case Surface.ROTATION_90:
4354 case Surface.ROTATION_270:
4355 // We are currently in the other basic orientation to the natural orientation
4356 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
4357 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
4358 break;
4359 }
4360
4361 int[] oriMap = {
4362 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
4363 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
4364 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
4365 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
4366 };
4367 // Since the map starts at portrait, we need to offset if this device's natural orientation
4368 // is landscape.
4369 int indexOffset = 0;
4370 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
4371 indexOffset = 1;
4372 }
4373 return oriMap[(d.getRotation() + indexOffset) % 4];
4374 }
Adam Cohen446e9402011-09-15 18:21:21 -07004375
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004376 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR2)
Winson Chung4b919f82012-05-01 10:44:08 -07004377 public void lockScreenOrientation() {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004378 if (mRotationEnabled) {
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004379 if (Utilities.ATLEAST_JB_MR2) {
4380 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LOCKED);
4381 } else {
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004382 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
4383 .getConfiguration().orientation));
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004384 }
Winson Chung4b919f82012-05-01 10:44:08 -07004385 }
4386 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004387
Winson Chung4b919f82012-05-01 10:44:08 -07004388 public void unlockScreenOrientation(boolean immediate) {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004389 if (mRotationEnabled) {
Winson Chung4b919f82012-05-01 10:44:08 -07004390 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07004391 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07004392 } else {
4393 mHandler.postDelayed(new Runnable() {
4394 public void run() {
4395 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4396 }
4397 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07004398 }
Winson Chung4b919f82012-05-01 10:44:08 -07004399 }
Winson Chung400438b2011-01-16 17:53:48 -08004400 }
4401
Winson Chunge43a1e72014-01-15 10:33:02 -08004402 protected boolean isLauncherPreinstalled() {
Adam Cohen9211d422014-10-07 18:14:53 -07004403 if (mLauncherCallbacks != null) {
4404 return mLauncherCallbacks.isLauncherPreinstalled();
4405 }
Winson Chunge43a1e72014-01-15 10:33:02 -08004406 PackageManager pm = getPackageManager();
4407 try {
4408 ApplicationInfo ai = pm.getApplicationInfo(getComponentName().getPackageName(), 0);
4409 if ((ai.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
4410 return true;
4411 } else {
4412 return false;
4413 }
4414 } catch (NameNotFoundException e) {
4415 e.printStackTrace();
4416 return false;
4417 }
4418 }
4419
Adam Cohenea90f832014-05-21 15:03:34 -07004420 /**
4421 * This method indicates whether or not we should suggest default wallpaper dimensions
4422 * when our wallpaper cropper was not yet used to set a wallpaper.
4423 */
4424 protected boolean overrideWallpaperDimensions() {
Adam Cohen9211d422014-10-07 18:14:53 -07004425 if (mLauncherCallbacks != null) {
4426 return mLauncherCallbacks.overrideWallpaperDimensions();
4427 }
Adam Cohenea90f832014-05-21 15:03:34 -07004428 return true;
4429 }
4430
Adam Cohen432609a2014-03-13 17:03:22 -07004431 /**
4432 * To be overridden by subclasses to indicate that there is an activity to launch
4433 * before showing the standard launcher experience.
4434 */
4435 protected boolean hasFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004436 if (mLauncherCallbacks != null) {
4437 return mLauncherCallbacks.hasFirstRunActivity();
4438 }
Adam Cohen432609a2014-03-13 17:03:22 -07004439 return false;
4440 }
4441
4442 /**
4443 * To be overridden by subclasses to launch any first run activity
4444 */
4445 protected Intent getFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004446 if (mLauncherCallbacks != null) {
4447 return mLauncherCallbacks.getFirstRunActivity();
4448 }
Adam Cohen432609a2014-03-13 17:03:22 -07004449 return null;
4450 }
4451
Winson Chunga6945242014-01-08 14:04:34 -08004452 private boolean shouldRunFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004453 return !ActivityManager.isRunningInTestHarness() &&
4454 !mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
Winson Chunga6945242014-01-08 14:04:34 -08004455 }
4456
Adam Cohen4a9423d2014-03-28 14:22:31 -07004457 protected boolean hasRunFirstRunActivity() {
4458 return mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
4459 }
4460
Adam Cohen432609a2014-03-13 17:03:22 -07004461 public boolean showFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004462 if (shouldRunFirstRunActivity() &&
4463 hasFirstRunActivity()) {
Winson Chunga6945242014-01-08 14:04:34 -08004464 Intent firstRunIntent = getFirstRunActivity();
4465 if (firstRunIntent != null) {
4466 startActivity(firstRunIntent);
4467 markFirstRunActivityShown();
Adam Cohen432609a2014-03-13 17:03:22 -07004468 return true;
Winson Chunga6945242014-01-08 14:04:34 -08004469 }
4470 }
Adam Cohen432609a2014-03-13 17:03:22 -07004471 return false;
Winson Chunga6945242014-01-08 14:04:34 -08004472 }
4473
4474 private void markFirstRunActivityShown() {
4475 SharedPreferences.Editor editor = mSharedPrefs.edit();
4476 editor.putBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, true);
4477 editor.apply();
4478 }
4479
Adam Cohen432609a2014-03-13 17:03:22 -07004480 /**
4481 * To be overridden by subclasses to indicate that there is an in-activity full-screen intro
4482 * screen that must be displayed and dismissed.
4483 */
4484 protected boolean hasDismissableIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004485 if (mLauncherCallbacks != null) {
4486 return mLauncherCallbacks.hasDismissableIntroScreen();
4487 }
Adam Cohen432609a2014-03-13 17:03:22 -07004488 return false;
4489 }
4490
4491 /**
4492 * Full screen intro screen to be shown and dismissed before the launcher can be used.
4493 */
4494 protected View getIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004495 if (mLauncherCallbacks != null) {
4496 return mLauncherCallbacks.getIntroScreen();
4497 }
Adam Cohen432609a2014-03-13 17:03:22 -07004498 return null;
4499 }
4500
4501 /**
4502 * To be overriden by subclasses to indicate whether the in-activity intro screen has been
4503 * dismissed. This method is ignored if #hasDismissableIntroScreen returns false.
4504 */
4505 private boolean shouldShowIntroScreen() {
4506 return hasDismissableIntroScreen() &&
4507 !mSharedPrefs.getBoolean(INTRO_SCREEN_DISMISSED, false);
4508 }
4509
4510 protected void showIntroScreen() {
4511 View introScreen = getIntroScreen();
4512 changeWallpaperVisiblity(false);
4513 if (introScreen != null) {
4514 mDragLayer.showOverlayView(introScreen);
4515 }
Adam Cohenc3e12c72014-10-31 16:15:36 -07004516 if (mLauncherOverlayContainer != null) {
4517 mLauncherOverlayContainer.setVisibility(View.INVISIBLE);
4518 }
Adam Cohen432609a2014-03-13 17:03:22 -07004519 }
4520
4521 public void dismissIntroScreen() {
4522 markIntroScreenDismissed();
4523 if (showFirstRunActivity()) {
4524 // We delay hiding the intro view until the first run activity is showing. This
4525 // avoids a blip.
4526 mWorkspace.postDelayed(new Runnable() {
4527 @Override
4528 public void run() {
4529 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004530 if (mLauncherOverlayContainer != null) {
4531 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4532 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004533 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004534 }
4535 }, ACTIVITY_START_DELAY);
4536 } else {
4537 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004538 if (mLauncherOverlayContainer != null) {
4539 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4540 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004541 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004542 }
4543 changeWallpaperVisiblity(true);
4544 }
4545
4546 private void markIntroScreenDismissed() {
4547 SharedPreferences.Editor editor = mSharedPrefs.edit();
4548 editor.putBoolean(INTRO_SCREEN_DISMISSED, true);
4549 editor.apply();
4550 }
4551
Adam Cohen091440a2015-03-18 14:16:05 -07004552 @Thunk void showFirstRunClings() {
Sunny Goyal88d60f12014-09-08 03:47:29 -07004553 // The two first run cling paths are mutually exclusive, if the launcher is preinstalled
4554 // on the device, then we always show the first run cling experience (or if there is no
4555 // launcher2). Otherwise, we prompt the user upon started for migration
4556 LauncherClings launcherClings = new LauncherClings(this);
4557 if (launcherClings.shouldShowFirstRunOrMigrationClings()) {
Sunny Goyal639e9062015-08-19 19:17:06 -07004558 mClings = launcherClings;
Sunny Goyal88d60f12014-09-08 03:47:29 -07004559 if (mModel.canMigrateFromOldLauncherDb(this)) {
4560 launcherClings.showMigrationCling();
4561 } else {
Sunny Goyalaf0628f2014-09-19 10:14:48 -07004562 launcherClings.showLongPressCling(true);
Sunny Goyal88d60f12014-09-08 03:47:29 -07004563 }
4564 }
4565 }
4566
Winson Chunga6945242014-01-08 14:04:34 -08004567 void showWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004568 if (mWorkspace != null) mWorkspace.setAlpha(1f);
4569 if (mHotseat != null) mHotseat.setAlpha(1f);
4570 if (mPageIndicators != null) mPageIndicators.setAlpha(1f);
Winson Chung006ee262015-08-03 14:40:11 -07004571 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4572 SearchDropTargetBar.State.SEARCH_BAR, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004573 }
4574
4575 void hideWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004576 if (mWorkspace != null) mWorkspace.setAlpha(0f);
4577 if (mHotseat != null) mHotseat.setAlpha(0f);
4578 if (mPageIndicators != null) mPageIndicators.setAlpha(0f);
Winson Chung006ee262015-08-03 14:40:11 -07004579 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4580 SearchDropTargetBar.State.INVISIBLE, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004581 }
4582
Winson Chung5ffd51d2015-06-25 11:36:50 -07004583 // TODO: These method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004584 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Mathew Inwood72fbec12013-11-19 15:45:07 +00004585 public ItemInfo createAppDragInfo(Intent appLaunchIntent) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004586 // Called from search suggestion
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004587 UserHandleCompat user = null;
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004588 if (Utilities.ATLEAST_LOLLIPOP) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004589 UserHandle userHandle = appLaunchIntent.getParcelableExtra(Intent.EXTRA_USER);
4590 if (userHandle != null) {
4591 user = UserHandleCompat.fromUser(userHandle);
4592 }
4593 }
4594 return createAppDragInfo(appLaunchIntent, user);
Winson Chung5ffd51d2015-06-25 11:36:50 -07004595 }
4596
4597 // TODO: This method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004598 public ItemInfo createAppDragInfo(Intent intent, UserHandleCompat user) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004599 if (user == null) {
4600 user = UserHandleCompat.myUserHandle();
4601 }
4602
4603 // Called from search suggestion, add the profile extra to the intent to ensure that we
4604 // can launch it correctly
Kenny Guyed131872014-04-30 03:02:21 +01004605 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004606 LauncherActivityInfoCompat activityInfo = launcherApps.resolveActivity(intent, user);
Kenny Guyed131872014-04-30 03:02:21 +01004607 if (activityInfo == null) {
Mathew Inwood72fbec12013-11-19 15:45:07 +00004608 return null;
4609 }
Winson Chung5ffd51d2015-06-25 11:36:50 -07004610 return new AppInfo(this, activityInfo, user, mIconCache);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004611 }
4612
Winson Chung5ffd51d2015-06-25 11:36:50 -07004613 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004614 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4615 Bitmap icon) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004616 return new ShortcutInfo(shortcutIntent, caption, caption, icon,
Kenny Guyed131872014-04-30 03:02:21 +01004617 UserHandleCompat.myUserHandle());
4618 }
4619
Winson Chung5ffd51d2015-06-25 11:36:50 -07004620 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004621 public void startDrag(View dragView, ItemInfo dragInfo, DragSource source) {
4622 dragView.setTag(dragInfo);
Winson Chungbabb53e2014-04-14 17:12:49 -07004623 mWorkspace.onExternalDragStartedWithItem(dragView);
4624 mWorkspace.beginExternalDragShared(dragView, source);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004625 }
4626
Winson Chung5ffd51d2015-06-25 11:36:50 -07004627 protected void moveWorkspaceToDefaultScreen() {
4628 mWorkspace.moveToDefaultScreen(false);
4629 }
4630
Anjali Koppalf5d29132014-02-28 13:33:27 -08004631 @Override
4632 public void onPageSwitch(View newPage, int newPageIndex) {
Adam Cohen9211d422014-10-07 18:14:53 -07004633 if (mLauncherCallbacks != null) {
4634 mLauncherCallbacks.onPageSwitch(newPage, newPageIndex);
4635 }
Anjali Koppalf5d29132014-02-28 13:33:27 -08004636 }
4637
Winson Chung80baf5a2010-08-09 16:03:15 -07004638 /**
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004639 * Returns a FastBitmapDrawable with the icon, accurately sized.
4640 */
4641 public FastBitmapDrawable createIconDrawable(Bitmap icon) {
4642 FastBitmapDrawable d = new FastBitmapDrawable(icon);
4643 d.setFilterBitmap(true);
4644 resizeIconDrawable(d);
4645 return d;
4646 }
4647
4648 /**
4649 * Resizes an icon drawable to the correct icon size.
4650 */
Winson5fbe0742015-09-30 15:33:00 -07004651 public Drawable resizeIconDrawable(Drawable icon) {
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004652 icon.setBounds(0, 0, mDeviceProfile.iconSizePx, mDeviceProfile.iconSizePx);
Winson5fbe0742015-09-30 15:33:00 -07004653 return icon;
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004654 }
4655
4656 /**
Joe Onoratobe386092009-11-17 17:32:16 -08004657 * Prints out out state for debugging.
4658 */
4659 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04004660 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08004661 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08004662 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
4663 Log.d(TAG, "mRestoring=" + mRestoring);
4664 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
4665 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004666 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08004667 mModel.dumpState();
Hyunyoung Song3f471442015-04-08 19:01:34 -07004668 // TODO(hyunyoungs): add mWidgetsView.dumpState(); or mWidgetsModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07004669
Daniel Sandler325dc232013-06-05 22:57:57 -04004670 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08004671 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004672
4673 @Override
4674 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
4675 super.dump(prefix, fd, writer, args);
Adam Cohen4caf2982013-08-20 18:54:31 -07004676 synchronized (sDumpLogs) {
4677 writer.println(" ");
4678 writer.println("Debug logs: ");
4679 for (int i = 0; i < sDumpLogs.size(); i++) {
4680 writer.println(" " + sDumpLogs.get(i));
4681 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004682 }
Adam Cohen9211d422014-10-07 18:14:53 -07004683 if (mLauncherCallbacks != null) {
4684 mLauncherCallbacks.dump(prefix, fd, writer, args);
4685 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004686 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004687
4688 public static void dumpDebugLogsToConsole() {
Winson Chungede41292013-09-19 16:27:36 -07004689 if (DEBUG_DUMP_LOG) {
4690 synchronized (sDumpLogs) {
4691 Log.d(TAG, "");
4692 Log.d(TAG, "*********************");
4693 Log.d(TAG, "Launcher debug logs: ");
4694 for (int i = 0; i < sDumpLogs.size(); i++) {
4695 Log.d(TAG, " " + sDumpLogs.get(i));
4696 }
4697 Log.d(TAG, "*********************");
4698 Log.d(TAG, "");
Adam Cohen4caf2982013-08-20 18:54:31 -07004699 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004700 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004701 }
4702
4703 public static void addDumpLog(String tag, String log, boolean debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004704 addDumpLog(tag, log, null, debugLog);
4705 }
4706
4707 public static void addDumpLog(String tag, String log, Exception e, boolean debugLog) {
Adam Cohen4caf2982013-08-20 18:54:31 -07004708 if (debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004709 if (e != null) {
4710 Log.d(tag, log, e);
4711 } else {
4712 Log.d(tag, log);
4713 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004714 }
Winson Chungede41292013-09-19 16:27:36 -07004715 if (DEBUG_DUMP_LOG) {
4716 sDateStamp.setTime(System.currentTimeMillis());
4717 synchronized (sDumpLogs) {
Dan Sandler295ae182013-12-10 16:05:47 -05004718 sDumpLogs.add(sDateFormat.format(sDateStamp) + ": " + tag + ", " + log
4719 + (e == null ? "" : (", Exception: " + e)));
Adam Cohen4caf2982013-08-20 18:54:31 -07004720 }
Winson Chungede41292013-09-19 16:27:36 -07004721 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004722 }
4723
Adam Cohen59400422014-03-05 18:07:04 -08004724 public static CustomAppWidget getCustomAppWidget(String name) {
4725 return sCustomAppWidgets.get(name);
4726 }
4727
4728 public static HashMap<String, CustomAppWidget> getCustomAppWidgets() {
4729 return sCustomAppWidgets;
4730 }
4731
Winson Chungede41292013-09-19 16:27:36 -07004732 public void dumpLogsToLocalData() {
4733 if (DEBUG_DUMP_LOG) {
Michael Jurka43467462013-11-14 12:03:58 +01004734 new AsyncTask<Void, Void, Void>() {
4735 public Void doInBackground(Void ... args) {
Winson Chungede41292013-09-19 16:27:36 -07004736 boolean success = false;
4737 sDateStamp.setTime(sRunStart);
4738 String FILENAME = sDateStamp.getMonth() + "-"
4739 + sDateStamp.getDay() + "_"
4740 + sDateStamp.getHours() + "-"
4741 + sDateStamp.getMinutes() + "_"
4742 + sDateStamp.getSeconds() + ".txt";
4743
4744 FileOutputStream fos = null;
4745 File outFile = null;
4746 try {
4747 outFile = new File(getFilesDir(), FILENAME);
4748 outFile.createNewFile();
4749 fos = new FileOutputStream(outFile);
4750 } catch (Exception e) {
4751 e.printStackTrace();
4752 }
4753 if (fos != null) {
4754 PrintWriter writer = new PrintWriter(fos);
4755
4756 writer.println(" ");
4757 writer.println("Debug logs: ");
4758 synchronized (sDumpLogs) {
4759 for (int i = 0; i < sDumpLogs.size(); i++) {
4760 writer.println(" " + sDumpLogs.get(i));
4761 }
4762 }
4763 writer.close();
4764 }
4765 try {
4766 if (fos != null) {
4767 fos.close();
4768 success = true;
4769 }
4770 } catch (IOException e) {
4771 e.printStackTrace();
4772 }
Michael Jurka43467462013-11-14 12:03:58 +01004773 return null;
Winson Chungede41292013-09-19 16:27:36 -07004774 }
Sunny Goyal8ac727b2015-09-23 15:38:09 -07004775 }.executeOnExecutor(Utilities.THREAD_POOL_EXECUTOR);
Adam Cohen4caf2982013-08-20 18:54:31 -07004776 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004777 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004778}
Michael Jurka2763be32011-02-24 11:19:57 -08004779
Dan Sandlerd5024042014-01-09 15:01:33 -05004780interface DebugIntents {
4781 static final String DELETE_DATABASE = "com.android.launcher3.action.DELETE_DATABASE";
4782 static final String MIGRATE_DATABASE = "com.android.launcher3.action.MIGRATE_DATABASE";
Adam Cohen8b5b05b2014-01-10 21:42:39 +00004783}