blob: f5057c0b3d696538792364f3c0895597bb0b3fa6 [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;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080049import android.content.res.Configuration;
Adam Cohen3f9c9712014-10-31 11:48:25 -070050import android.database.sqlite.SQLiteDatabase;
Adam Cohen268c4752012-06-06 17:47:33 -070051import android.graphics.Bitmap;
52import android.graphics.Canvas;
Sandeep Siddhartha2efc7d92014-05-16 17:21:15 -070053import android.graphics.Color;
Adam Cohen268c4752012-06-06 17:47:33 -070054import android.graphics.PorterDuff;
Michael Jurkaaf442092010-06-10 17:01:57 -070055import android.graphics.Rect;
Sunny Goyal4a6c6f32015-05-19 12:36:46 -070056import android.graphics.drawable.ColorDrawable;
Michael Jurkaaf442092010-06-10 17:01:57 -070057import android.graphics.drawable.Drawable;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040058import android.net.Uri;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -070059import android.os.AsyncTask;
Adam Cohen0f668f32014-09-08 19:54:17 +020060import android.os.Build;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080061import android.os.Bundle;
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +020062import android.os.Environment;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080063import android.os.Handler;
Adam Cohended9f8d2010-11-03 13:25:16 -070064import android.os.Message;
Winson Chunga2413752012-04-03 14:22:34 -070065import android.os.StrictMode;
Daniel Sandler843e8602010-06-07 14:59:01 -040066import android.os.SystemClock;
Sunny Goyala1d1bf32015-06-26 13:24:53 -070067import android.os.UserHandle;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080068import android.text.Selection;
69import android.text.SpannableStringBuilder;
Michael Jurkaa33411c2012-06-14 16:18:21 -070070import android.text.TextUtils;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080071import android.text.method.TextKeyListener;
Joe Onorato7c312c12009-08-13 21:36:53 -070072import android.util.Log;
Adam Cohen96d30a12013-07-16 18:13:21 -070073import android.view.Display;
74import android.view.Gravity;
75import 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;
93import android.widget.FrameLayout;
94import android.widget.ImageView;
Chet Haasea8f996d2015-02-17 12:56:04 -080095import android.widget.TextView;
Adam Cohen96d30a12013-07-16 18:13:21 -070096import android.widget.Toast;
Sunny Goyala1d1bf32015-06-26 13:24:53 -070097
Sunny Goyal651077b2014-06-30 14:15:31 -070098import com.android.launcher3.DropTarget.DragObject;
99import com.android.launcher3.PagedView.PageSwitchListener;
Winson Chung5f4e0fd2015-05-22 11:12:27 -0700100import com.android.launcher3.allapps.AllAppsContainerView;
Sunny Goyalffe83f12014-08-14 17:39:34 -0700101import com.android.launcher3.compat.AppWidgetManagerCompat;
Kenny Guyed131872014-04-30 03:02:21 +0100102import com.android.launcher3.compat.LauncherActivityInfoCompat;
103import com.android.launcher3.compat.LauncherAppsCompat;
104import com.android.launcher3.compat.UserHandleCompat;
105import com.android.launcher3.compat.UserManagerCompat;
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700106import com.android.launcher3.model.WidgetsModel;
Winson Chung6b1c73f2015-06-18 11:38:42 -0700107import com.android.launcher3.util.ComponentKey;
Sunny Goyale2df0622015-04-24 11:27:00 -0700108import com.android.launcher3.util.LongArrayMap;
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
Adam Cohen39a06042013-07-19 14:30:12 -0700202 public static final String SHOW_WEIGHT_WATCHER = "debug.show_mem";
Daniel Sandler6053b802013-08-15 15:44:26 -0700203 public static final boolean SHOW_WEIGHT_WATCHER_DEFAULT = false;
Adam Cohen39a06042013-07-19 14:30:12 -0700204
Sunny Goyal594d76d2014-11-06 10:12:54 -0800205 private static final String QSB_WIDGET_ID = "qsb_widget_id";
206 private static final String QSB_WIDGET_PROVIDER = "qsb_widget_provider";
207
Winson Chunga6945242014-01-08 14:04:34 -0800208 public static final String USER_HAS_MIGRATED = "launcher.user_migrated_from_old_data";
209
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700210 /** The different states that Launcher can be in. */
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700211 enum State { NONE, WORKSPACE, APPS, APPS_SPRING_LOADED, WIDGETS, WIDGETS_SPRING_LOADED }
212
Adam Cohen091440a2015-03-18 14:16:05 -0700213 @Thunk State mState = State.WORKSPACE;
Adam Cohen091440a2015-03-18 14:16:05 -0700214 @Thunk LauncherStateTransitionAnimation mStateTransitionAnimation;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700215
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700216 private boolean mIsSafeModeEnabled;
217
Adam Cohenc2d6e892014-10-16 09:49:24 -0700218 LauncherOverlayCallbacks mLauncherOverlayCallbacks = new LauncherOverlayCallbacksImpl();
219 LauncherOverlay mLauncherOverlay;
Adam Cohena6d04922014-10-23 17:28:30 -0700220 InsettableFrameLayout mLauncherOverlayContainer;
Adam Cohenc2d6e892014-10-16 09:49:24 -0700221
Joe Onorato9c1289c2009-08-17 11:03:03 -0400222 static final int APPWIDGET_HOST_ID = 1024;
Adam Cohenad4e15c2013-10-17 16:21:35 -0700223 public static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
224 private static final int ON_ACTIVITY_RESULT_ANIMATION_DELAY = 500;
Adam Cohen646fdf72014-04-08 16:59:36 -0700225 private static final int ACTIVITY_START_DELAY = 1000;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800226
Winson Chunga2413752012-04-03 14:22:34 -0700227 // How long to wait before the new-shortcut animation automatically pans the workspace
Winson Chung94d67682013-09-25 16:29:40 -0700228 private static int NEW_APPS_PAGE_MOVE_DELAY = 500;
229 private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 5;
Adam Cohen091440a2015-03-18 14:16:05 -0700230 @Thunk static int NEW_APPS_ANIMATION_DELAY = 500;
Winson Chunga2413752012-04-03 14:22:34 -0700231
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800232 private final BroadcastReceiver mCloseSystemDialogsReceiver
233 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800234
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800235 private LayoutInflater mInflater;
236
Adam Cohen091440a2015-03-18 14:16:05 -0700237 @Thunk Workspace mWorkspace;
Craig Mautner360310b2012-10-26 15:13:08 -0700238 private View mLauncherView;
Winson Chunga6945242014-01-08 14:04:34 -0800239 private View mPageIndicators;
Adam Cohen091440a2015-03-18 14:16:05 -0700240 @Thunk DragLayer mDragLayer;
Michael Jurkab737ee62011-11-15 15:57:22 -0800241 private DragController mDragController;
Adam Cohen39a06042013-07-19 14:30:12 -0700242 private View mWeightWatcher;
Romain Guycbb89e42009-06-08 15:52:54 -0700243
Sunny Goyalffe83f12014-08-14 17:39:34 -0700244 private AppWidgetManagerCompat mAppWidgetManager;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700245 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700246
Adam Cohen091440a2015-03-18 14:16:05 -0700247 @Thunk ItemInfo mPendingAddInfo = new ItemInfo();
Adam Cohen59400422014-03-05 18:07:04 -0800248 private LauncherAppWidgetProviderInfo mPendingAddWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800249 private int mPendingAddWidgetId = -1;
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700250
Michael Jurka0280c3b2010-09-17 15:00:07 -0700251 private int[] mTmpAddItemCellCoordinates = new int[2];
252
Sunny Goyal316490e2015-06-02 09:38:28 -0700253 @Thunk Hotseat mHotseat;
Jorim Jaggid017f882014-01-14 17:08:48 -0800254 private ViewGroup mOverviewPanel;
Adam Cohenf358a4b2013-07-23 16:47:31 -0700255
Michael Jurka838a4ca2011-02-07 13:33:06 -0800256 private View mAllAppsButton;
Hyunyoung Song98ff38a2015-07-10 17:50:13 -0700257 private View mWidgetsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700258
Winson Chungc51db6a2011-10-05 11:44:49 -0700259 private SearchDropTargetBar mSearchDropTargetBar;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700260
261 // Main container view for the all apps screen.
Winson Chung5f4e0fd2015-05-22 11:12:27 -0700262 @Thunk AllAppsContainerView mAppsView;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700263
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700264 // Main container view and the model for the widget tray screen.
265 @Thunk WidgetsContainerView mWidgetsView;
266 @Thunk WidgetsModel mWidgetsModel;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700267
Winson Chungf0ea4d32011-06-06 14:27:16 -0700268 private boolean mAutoAdvanceRunning = false;
Sunny Goyal594d76d2014-11-06 10:12:54 -0800269 private AppWidgetHostView mQsb;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800270
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800271 private Bundle mSavedState;
Winson Chung4a2afa32012-07-19 14:53:05 -0700272 // We set the state in both onCreate and then onNewIntent in some cases, which causes both
273 // scroll issues (because the workspace may not have been measured yet) and extra work.
274 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
275 private State mOnResumeState = State.NONE;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800276
277 private SpannableStringBuilder mDefaultKeySsb = null;
278
Adam Cohen091440a2015-03-18 14:16:05 -0700279 @Thunk boolean mWorkspaceLoading = true;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400280
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800281 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800282 private boolean mRestoring;
283 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700284 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800285
Michael Jurka1e2f4652013-07-08 18:03:46 -0700286 private ArrayList<Runnable> mBindOnResumeCallbacks = new ArrayList<Runnable>();
Michael Jurka7607c2f2013-04-03 14:33:19 -0700287 private ArrayList<Runnable> mOnResumeCallbacks = new ArrayList<Runnable>();
288
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800289 private Bundle mSavedInstanceState;
290
Joe Onorato9c1289c2009-08-17 11:03:03 -0400291 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800292 private IconCache mIconCache;
Adam Cohen091440a2015-03-18 14:16:05 -0700293 @Thunk boolean mUserPresent = true;
Adam Cohend113e0c2010-11-11 10:48:05 -0800294 private boolean mVisible = false;
Adam Cohened307df2013-10-02 09:37:31 -0700295 private boolean mHasFocus = false;
Adam Cohend113e0c2010-11-11 10:48:05 -0800296 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400297
Sunny Goyal639e9062015-08-19 19:17:06 -0700298 private LauncherClings mClings;
299
Sunny Goyale2df0622015-04-24 11:27:00 -0700300 private static LongArrayMap<FolderInfo> sFolders = new LongArrayMap<>();
Romain Guycbb89e42009-06-08 15:52:54 -0700301
Adam Cohen61f560d2013-09-30 15:58:20 -0700302 private View.OnTouchListener mHapticFeedbackTouchListener;
303
Adam Cohended9f8d2010-11-03 13:25:16 -0700304 // Related to the auto-advancing of widgets
305 private final int ADVANCE_MSG = 1;
306 private final int mAdvanceInterval = 20000;
307 private final int mAdvanceStagger = 250;
308 private long mAutoAdvanceSentTime;
309 private long mAutoAdvanceTimeLeft = -1;
Adam Cohen091440a2015-03-18 14:16:05 -0700310 @Thunk HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
Adam Cohended9f8d2010-11-03 13:25:16 -0700311 new HashMap<View, AppWidgetProviderInfo>();
312
Winson Chung400438b2011-01-16 17:53:48 -0800313 // Determines how long to wait after a rotation before restoring the screen orientation to
314 // match the sensor state.
315 private final int mRestoreScreenOrientationDelay = 500;
316
Adam Cohen091440a2015-03-18 14:16:05 -0700317 @Thunk Drawable mWorkspaceBackgroundDrawable;
Craig Mautner360310b2012-10-26 15:13:08 -0700318
Adam Cohen1462de32012-07-24 22:34:36 -0700319 private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700320 private static final boolean DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE = false;
Adam Cohen1462de32012-07-24 22:34:36 -0700321
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700322 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
Adam Cohen4caf2982013-08-20 18:54:31 -0700323 static Date sDateStamp = new Date();
324 static DateFormat sDateFormat =
325 DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
326 static long sRunStart = System.currentTimeMillis();
327 static final String CORRUPTION_EMAIL_SENT_KEY = "corruptionEmailSent";
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700328
Winson Chung46353de2012-02-16 14:05:10 -0800329 // We only want to get the SharedPreferences once since it does an FS stat each time we get
330 // it from the context.
331 private SharedPreferences mSharedPrefs;
332
Winson Chungf0c6ae02012-03-21 16:10:31 -0700333 // Holds the page that we need to animate to, and the icon views that we need to animate up
334 // when we scroll to that page on resume.
Adam Cohen091440a2015-03-18 14:16:05 -0700335 @Thunk ImageView mFolderIconImageView;
Adam Cohen268c4752012-06-06 17:47:33 -0700336 private Bitmap mFolderIconBitmap;
337 private Canvas mFolderIconCanvas;
338 private Rect mRectForFolderAnimation = new Rect();
Adam Cohen2801caf2011-05-13 20:57:39 -0700339
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700340 private DeviceProfile mDeviceProfile;
341
Adam Cohen4b66bf32015-09-18 12:15:19 -0700342 private boolean mMoveToDefaultScreenFromNewIntent;
343
Winson Chung13eb5272015-05-11 16:30:13 -0700344 // This is set to the view that launched the activity that navigated the user away from
345 // launcher. Since there is no callback for when the activity has finished launching, enable
346 // the press state and keep this reference to reset the press state when we return to launcher.
Michael Jurkaddd62e92011-02-16 17:49:14 -0800347 private BubbleTextView mWaitingForResume;
348
Adam Cohen59400422014-03-05 18:07:04 -0800349 protected static HashMap<String, CustomAppWidget> sCustomAppWidgets =
350 new HashMap<String, CustomAppWidget>();
351
352 private static final boolean ENABLE_CUSTOM_WIDGET_TEST = false;
353 static {
354 if (ENABLE_CUSTOM_WIDGET_TEST) {
355 sCustomAppWidgets.put(DummyWidget.class.getName(), new DummyWidget());
356 }
357 }
358
Adam Cohen091440a2015-03-18 14:16:05 -0700359 @Thunk Runnable mBuildLayersRunnable = new Runnable() {
Michael Jurkac1f5d262011-09-30 19:32:27 -0700360 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700361 if (mWorkspace != null) {
362 mWorkspace.buildPageHardwareLayers();
363 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700364 }
365 };
366
Adam Cohendb364c32014-05-20 14:23:40 -0700367 private static PendingAddArguments sPendingAddItem;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800368
Adam Cohen091440a2015-03-18 14:16:05 -0700369 @Thunk static class PendingAddArguments {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800370 int requestCode;
371 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700372 long container;
Adam Cohendcd297f2013-06-18 13:13:40 -0700373 long screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800374 int cellX;
375 int cellY;
Adam Cohendb364c32014-05-20 14:23:40 -0700376 int appWidgetId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800377 }
378
Daniel Sandlerff02d492013-08-05 02:12:05 -0400379 private Stats mStats;
Sunny Goyaldcbcc862014-08-12 15:58:36 -0700380 FocusIndicatorView mFocusHandler;
Sunny Goyal7779d622015-06-11 16:18:39 -0700381 private boolean mRotationEnabled = false;
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400382
383 @Thunk void setOrientation() {
384 if (mRotationEnabled) {
385 unlockScreenOrientation(true);
386 } else {
387 setRequestedOrientation(
388 ActivityInfo.SCREEN_ORIENTATION_NOSENSOR);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700389 }
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400390 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700391
Sunny Goyal7779d622015-06-11 16:18:39 -0700392 private Runnable mUpdateOrientationRunnable = new Runnable() {
393 public void run() {
394 setOrientation();
395 }
396 };
397
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800398 @Override
399 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700400 if (DEBUG_STRICT_MODE) {
401 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
402 .detectDiskReads()
403 .detectDiskWrites()
404 .detectNetwork() // or .detectAll() for all detectable problems
405 .penaltyLog()
406 .build());
407 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
408 .detectLeakedSqlLiteObjects()
409 .detectLeakedClosableObjects()
410 .penaltyLog()
411 .penaltyDeath()
412 .build());
413 }
414
Adam Cohen9211d422014-10-07 18:14:53 -0700415 if (mLauncherCallbacks != null) {
416 mLauncherCallbacks.preOnCreate();
417 }
418
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800419 super.onCreate(savedInstanceState);
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400420
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400421 LauncherAppState.setApplicationContext(getApplicationContext());
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400422 LauncherAppState app = LauncherAppState.getInstance();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700423
Adam Cohen2e6da152015-05-06 11:42:25 -0700424 // Load configuration-specific DeviceProfile
Sunny Goyalc6205602015-05-21 20:46:33 -0700425 mDeviceProfile = getResources().getConfiguration().orientation
426 == Configuration.ORIENTATION_LANDSCAPE ?
427 app.getInvariantDeviceProfile().landscapeProfile
428 : app.getInvariantDeviceProfile().portraitProfile;
429
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400430 mSharedPrefs = getSharedPreferences(LauncherAppState.getSharedPreferencesKey(),
Winson Chungf0c6ae02012-03-21 16:10:31 -0700431 Context.MODE_PRIVATE);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700432 mIsSafeModeEnabled = getPackageManager().isSafeMode();
Joe Onorato0589f0f2010-02-08 13:44:00 -0800433 mModel = app.setLauncher(this);
434 mIconCache = app.getIconCache();
Adam Cohen2e6da152015-05-06 11:42:25 -0700435
Joe Onorato41a12d22009-10-31 18:30:00 -0400436 mDragController = new DragController(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800437 mInflater = getLayoutInflater();
Winson Chung006ee262015-08-03 14:40:11 -0700438 mStateTransitionAnimation = new LauncherStateTransitionAnimation(this);
Romain Guycbb89e42009-06-08 15:52:54 -0700439
Daniel Sandlerff02d492013-08-05 02:12:05 -0400440 mStats = new Stats(this);
441
Sunny Goyalffe83f12014-08-14 17:39:34 -0700442 mAppWidgetManager = AppWidgetManagerCompat.getInstance(this);
Adam Cohen53805212013-10-01 10:39:23 -0700443
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700444 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
445 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700446
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700447 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
448 // this also ensures that any synchronous binding below doesn't re-trigger another
449 // LauncherModel load.
450 mPaused = false;
451
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800452 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200453 android.os.Debug.startMethodTracing(
454 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800455 }
456
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800457 setContentView(R.layout.launcher);
Michael Jurka7267fa52013-09-26 15:29:57 -0700458
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800459 setupViews();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700460 mDeviceProfile.layout(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800461
Joe Onorato7c312c12009-08-13 21:36:53 -0700462 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700463
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800464 mSavedState = savedInstanceState;
465 restoreState(mSavedState);
466
467 if (PROFILE_STARTUP) {
468 android.os.Debug.stopMethodTracing();
469 }
470
471 if (!mRestoring) {
Adam Cohendb78dc82014-06-19 14:50:51 -0700472 if (DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700473 // If the user leaves launcher, then we should just load items asynchronously when
474 // they return.
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700475 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Winson Chung4a2afa32012-07-19 14:53:05 -0700476 } else {
477 // We only load the page synchronously if the user rotates (or triggers a
478 // configuration change) while launcher is in the foreground
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700479 mModel.startLoader(mWorkspace.getRestorePage());
Winson Chung4a2afa32012-07-19 14:53:05 -0700480 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800481 }
482
483 // For handling default keys
484 mDefaultKeySsb = new SpannableStringBuilder();
485 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800486
487 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
488 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800489
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700490 mRotationEnabled = Utilities.isRotationAllowedForDevice(getApplicationContext());
491 // In case we are on a device with locked rotation, we should look at preferences to check
492 // if the user has specifically allowed rotation.
493 if (!mRotationEnabled) {
Rahul Chaturvedie863fed2015-06-15 14:09:42 -0400494 mRotationEnabled = Utilities.isAllowRotationPrefEnabled(getApplicationContext(), false);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700495 }
496
497 // On large interfaces, or on devices that a user has specifically enabled screen rotation,
498 // we want the screen to auto-rotate based on the current orientation
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400499 setOrientation();
Winson Chungaf40f202013-09-18 18:26:31 -0700500
Adam Cohen9211d422014-10-07 18:14:53 -0700501 if (mLauncherCallbacks != null) {
502 mLauncherCallbacks.onCreate(savedInstanceState);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700503 if (mLauncherCallbacks.hasLauncherOverlay()) {
504 ViewStub stub = (ViewStub) findViewById(R.id.launcher_overlay_stub);
Adam Cohena6d04922014-10-23 17:28:30 -0700505 mLauncherOverlayContainer = (InsettableFrameLayout) stub.inflate();
506 mLauncherOverlay = mLauncherCallbacks.setLauncherOverlayView(
507 mLauncherOverlayContainer, mLauncherOverlayCallbacks);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700508 mWorkspace.setLauncherOverlay(mLauncherOverlay);
509 }
Adam Cohen9211d422014-10-07 18:14:53 -0700510 }
Adam Cohenc3e12c72014-10-31 16:15:36 -0700511
512 if (shouldShowIntroScreen()) {
513 showIntroScreen();
514 } else {
515 showFirstRunActivity();
516 showFirstRunClings();
517 }
Adam Cohen9211d422014-10-07 18:14:53 -0700518 }
519
Sunny Goyal7779d622015-06-11 16:18:39 -0700520 @Override
521 public void onSettingsChanged(String settings, boolean value) {
522 if (Utilities.ALLOW_ROTATION_PREFERENCE_KEY.equals(settings)) {
523 mRotationEnabled = value;
524 if (!waitUntilResume(mUpdateOrientationRunnable, true)) {
525 mUpdateOrientationRunnable.run();
526 }
527 }
528 }
529
Adam Cohen9211d422014-10-07 18:14:53 -0700530 private LauncherCallbacks mLauncherCallbacks;
531
532 public void onPostCreate(Bundle savedInstanceState) {
533 super.onPostCreate(savedInstanceState);
534 if (mLauncherCallbacks != null) {
535 mLauncherCallbacks.onPostCreate(savedInstanceState);
536 }
537 }
538
539 public boolean setLauncherCallbacks(LauncherCallbacks callbacks) {
540 mLauncherCallbacks = callbacks;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700541 mLauncherCallbacks.setLauncherSearchCallback(new Launcher.LauncherSearchCallbacks() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700542 private boolean mWorkspaceImportanceStored = false;
543 private boolean mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700544 private int mWorkspaceImportanceForAccessibility =
545 View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
546 private int mHotseatImportanceForAccessibility = View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
547
548 @Override
549 public void onSearchOverlayOpened() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700550 if (mWorkspaceImportanceStored || mHotseatImportanceStored) {
Jun Mukai8af0cd82015-05-12 12:32:12 -0700551 return;
552 }
553 // The underlying workspace and hotseat are temporarily suppressed by the search
554 // overlay. So they sholudn't be accessible.
Jun Mukaie9819e62015-06-17 10:58:59 -0700555 if (mWorkspace != null) {
556 mWorkspaceImportanceForAccessibility =
557 mWorkspace.getImportantForAccessibility();
558 mWorkspace.setImportantForAccessibility(
559 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
560 mWorkspaceImportanceStored = true;
561 }
562 if (mHotseat != null) {
563 mHotseatImportanceForAccessibility = mHotseat.getImportantForAccessibility();
564 mHotseat.setImportantForAccessibility(
565 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
566 mHotseatImportanceStored = true;
567 }
Jun Mukai8af0cd82015-05-12 12:32:12 -0700568 }
569
570 @Override
571 public void onSearchOverlayClosed() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700572 if (mWorkspaceImportanceStored && mWorkspace != null) {
573 mWorkspace.setImportantForAccessibility(mWorkspaceImportanceForAccessibility);
574 }
575 if (mHotseatImportanceStored && mHotseat != null) {
576 mHotseat.setImportantForAccessibility(mHotseatImportanceForAccessibility);
577 }
578 mWorkspaceImportanceStored = false;
579 mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700580 }
581 });
Adam Cohen9211d422014-10-07 18:14:53 -0700582 return true;
Adam Cohenf9426d52012-06-04 17:26:21 -0700583 }
584
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700585 @Override
Adam Cohen9211d422014-10-07 18:14:53 -0700586 public void onLauncherProviderChange() {
587 if (mLauncherCallbacks != null) {
588 mLauncherCallbacks.onLauncherProviderChange();
589 }
590 }
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700591
Winson Chungef7f8742015-06-04 17:18:17 -0700592 /**
593 * Updates the bounds of all the overlays to match the new fixed bounds.
594 */
595 public void updateOverlayBounds(Rect newBounds) {
596 mAppsView.setSearchBarBounds(newBounds);
597 mWidgetsView.setSearchBarBounds(newBounds);
598 }
599
Adam Cohen9211d422014-10-07 18:14:53 -0700600 /** To be overridden by subclasses to hint to Launcher that we have custom content */
Winson Chung98ca0f72013-07-29 12:58:51 -0700601 protected boolean hasCustomContentToLeft() {
Adam Cohen9211d422014-10-07 18:14:53 -0700602 if (mLauncherCallbacks != null) {
603 return mLauncherCallbacks.hasCustomContentToLeft();
604 }
Winson Chung98ca0f72013-07-29 12:58:51 -0700605 return false;
606 }
607
Dave Hawkeya8881582013-09-17 15:55:33 -0600608 /**
Derek Prothrodadd9842014-01-17 13:43:50 -0500609 * To be overridden by subclasses to populate the custom content container and call
Dave Hawkeya8881582013-09-17 15:55:33 -0600610 * {@link #addToCustomContentPage}. This will only be invoked if
611 * {@link #hasCustomContentToLeft()} is {@code true}.
612 */
Derek Prothrodadd9842014-01-17 13:43:50 -0500613 protected void populateCustomContentContainer() {
Adam Cohen9211d422014-10-07 18:14:53 -0700614 if (mLauncherCallbacks != null) {
615 mLauncherCallbacks.populateCustomContentContainer();
616 }
Dave Hawkeya8881582013-09-17 15:55:33 -0600617 }
618
619 /**
620 * Invoked by subclasses to signal a change to the {@link #addCustomContentToLeft} value to
621 * ensure the custom content page is added or removed if necessary.
622 */
623 protected void invalidateHasCustomContentToLeft() {
Dave Hawkey3a733a72013-09-30 11:52:21 -0600624 if (mWorkspace == null || mWorkspace.getScreenOrder().isEmpty()) {
Dave Hawkeya8881582013-09-17 15:55:33 -0600625 // Not bound yet, wait for bindScreens to be called.
626 return;
627 }
628
629 if (!mWorkspace.hasCustomContent() && hasCustomContentToLeft()) {
630 // Create the custom content page and call the subclass to populate it.
Derek Prothrodadd9842014-01-17 13:43:50 -0500631 mWorkspace.createCustomContentContainer();
632 populateCustomContentContainer();
Dave Hawkeya8881582013-09-17 15:55:33 -0600633 } else if (mWorkspace.hasCustomContent() && !hasCustomContentToLeft()) {
634 mWorkspace.removeCustomContentPage();
635 }
636 }
637
Anton Hanssona2f665f2013-09-26 12:18:32 +0100638 public Stats getStats() {
639 return mStats;
640 }
641
Bjorn Bringertc459e522013-06-07 19:36:01 +0100642 public LayoutInflater getInflater() {
643 return mInflater;
644 }
645
Hyunyoung Song3f471442015-04-08 19:01:34 -0700646 public boolean isDraggingEnabled() {
Winson Chung36a62fe2012-05-06 18:04:42 -0700647 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
648 // that is subsequently removed from the workspace in startBinding().
Sunny Goyal639e9062015-08-19 19:17:06 -0700649 return !isWorkspaceLoading();
Winson Chung36a62fe2012-05-06 18:04:42 -0700650 }
651
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000652 public int getViewIdForItem(ItemInfo info) {
Sunny Goyald1a0e8b2015-08-27 17:45:46 -0700653 // aapt-generated IDs have the high byte nonzero; clamp to the range under that.
654 // This cast is safe as long as the id < 0x00FFFFFF
655 // Since we jail all the dynamically generated views, there should be no clashes
656 // with any other views.
657 return (int) info.id;
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000658 }
659
660 /**
Winson Chung557d6ed2011-07-08 15:34:52 -0700661 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
662 * a configuration step, this allows the proper animations to run after other transitions.
663 */
Adam Cohendb364c32014-05-20 14:23:40 -0700664 private long completeAdd(PendingAddArguments args) {
Adam Cohen83079e42014-09-19 17:43:08 -0700665 long screenId = args.screenId;
666 if (args.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
667 // When the screen id represents an actual screen (as opposed to a rank) we make sure
668 // that the drop page actually exists.
669 screenId = ensurePendingDropLayoutExists(args.screenId);
670 }
Adam Cohendb364c32014-05-20 14:23:40 -0700671
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800672 switch (args.requestCode) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800673 case REQUEST_CREATE_SHORTCUT:
Adam Cohendb364c32014-05-20 14:23:40 -0700674 completeAddShortcut(args.intent, args.container, screenId, args.cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -0700675 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700676 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800677 case REQUEST_CREATE_APPWIDGET:
Adam Cohendb364c32014-05-20 14:23:40 -0700678 completeAddAppWidget(args.appWidgetId, args.container, screenId, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700679 break;
Sunny Goyalff572272014-07-23 13:58:07 -0700680 case REQUEST_RECONFIGURE_APPWIDGET:
681 completeRestoreAppWidget(args.appWidgetId);
682 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800683 }
Michael Jurka27614d22012-04-02 06:40:22 -0700684 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
685 // if you turned the screen off and then back while in All Apps, Launcher would not
686 // return to the workspace. Clearing mAddInfo.container here fixes this issue
687 resetAddInfo();
Adam Cohendb364c32014-05-20 14:23:40 -0700688 return screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800689 }
690
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800691 private void handleActivityResult(
Michael Jurka8b805b12012-04-18 14:23:14 -0700692 final int requestCode, final int resultCode, final Intent data) {
Winson Chunge341d302013-08-16 14:31:00 -0700693 // Reset the startActivity waiting flag
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700694 setWaitingForResult(false);
Adam Cohendb364c32014-05-20 14:23:40 -0700695 final int pendingAddWidgetId = mPendingAddWidgetId;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800696 mPendingAddWidgetId = -1;
Winson Chunge341d302013-08-16 14:31:00 -0700697
Adam Cohenad4e15c2013-10-17 16:21:35 -0700698 Runnable exitSpringLoaded = new Runnable() {
699 @Override
700 public void run() {
701 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
702 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
703 }
704 };
705
Michael Jurka8b805b12012-04-18 14:23:14 -0700706 if (requestCode == REQUEST_BIND_APPWIDGET) {
Winsona1f79d32015-08-05 14:00:45 -0700707 // This is called only if the user did not previously have permissions to bind widgets
Adam Cohenad4e15c2013-10-17 16:21:35 -0700708 final int appWidgetId = data != null ?
Michael Jurka8b805b12012-04-18 14:23:14 -0700709 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
710 if (resultCode == RESULT_CANCELED) {
711 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
Adam Cohen689ff162014-05-08 17:27:56 -0700712 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700713 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
Michael Jurka8b805b12012-04-18 14:23:14 -0700714 } else if (resultCode == RESULT_OK) {
Sunny Goyale6b63a32015-01-16 16:14:29 -0800715 addAppWidgetImpl(appWidgetId, mPendingAddInfo, null,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700716 mPendingAddWidgetInfo, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
Winsona1f79d32015-08-05 14:00:45 -0700717
718 // When the user has granted permission to bind widgets, we should check to see if
719 // we can inflate the default search bar widget.
720 getOrCreateQsbBar();
Michael Jurka8b805b12012-04-18 14:23:14 -0700721 }
722 return;
Michael Jurka336fd4f2013-09-12 00:05:02 +0200723 } else if (requestCode == REQUEST_PICK_WALLPAPER) {
724 if (resultCode == RESULT_OK && mWorkspace.isInOverviewMode()) {
Tony Wickham6ed058c2015-09-09 18:21:49 -0700725 // User could have free-scrolled between pages before picking a wallpaper; make sure
726 // we move to the closest one now to avoid visual jump.
727 mWorkspace.setCurrentPage(mWorkspace.getPageNearestToCenterOfScreen());
Winson Chungdc61c4d2015-04-20 18:26:57 -0700728 showWorkspace(false);
Michael Jurka336fd4f2013-09-12 00:05:02 +0200729 }
730 return;
Michael Jurka8b805b12012-04-18 14:23:14 -0700731 }
Michael Jurka336fd4f2013-09-12 00:05:02 +0200732
Adam Cohened66b2b2012-01-23 17:28:51 -0800733 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
Sunny Goyal5c97f512015-05-19 16:03:28 -0700734 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700735
Adam Cohendb364c32014-05-20 14:23:40 -0700736 final boolean workspaceLocked = isWorkspaceLocked();
Adam Cohened66b2b2012-01-23 17:28:51 -0800737 // We have special handling for widgets
738 if (isWidgetDrop) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800739 final int appWidgetId;
740 int widgetId = data != null ? data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1)
741 : -1;
742 if (widgetId < 0) {
743 appWidgetId = pendingAddWidgetId;
744 } else {
745 appWidgetId = widgetId;
746 }
747
Adam Cohenad4e15c2013-10-17 16:21:35 -0700748 final int result;
Adam Cohenf0129b12013-11-04 17:57:36 -0800749 if (appWidgetId < 0 || resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700750 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not " +
751 "returned from the widget configuration activity.");
Adam Cohenad4e15c2013-10-17 16:21:35 -0700752 result = RESULT_CANCELED;
753 completeTwoStageWidgetDrop(result, appWidgetId);
Adam Cohendb364c32014-05-20 14:23:40 -0700754 final Runnable onComplete = new Runnable() {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700755 @Override
756 public void run() {
757 exitSpringLoadedDragModeDelayed(false, 0, null);
758 }
759 };
Adam Cohendb364c32014-05-20 14:23:40 -0700760 if (workspaceLocked) {
761 // No need to remove the empty screen if we're mid-binding, as the
762 // the bind will not add the empty screen.
763 mWorkspace.postDelayed(onComplete, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
764 } else {
765 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
766 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
767 }
Winson Chung5aaab772012-04-27 15:24:02 -0700768 } else {
Adam Cohendb364c32014-05-20 14:23:40 -0700769 if (!workspaceLocked) {
Adam Cohen83079e42014-09-19 17:43:08 -0700770 if (mPendingAddInfo.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
771 // When the screen id represents an actual screen (as opposed to a rank)
772 // we make sure that the drop page actually exists.
773 mPendingAddInfo.screenId =
774 ensurePendingDropLayoutExists(mPendingAddInfo.screenId);
775 }
Adam Cohendb364c32014-05-20 14:23:40 -0700776 final CellLayout dropLayout = mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
777
778 dropLayout.setDropPending(true);
779 final Runnable onComplete = new Runnable() {
780 @Override
781 public void run() {
782 completeTwoStageWidgetDrop(resultCode, appWidgetId);
783 dropLayout.setDropPending(false);
784 }
785 };
786 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
787 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
788 } else {
789 PendingAddArguments args = preparePendingAddArgs(requestCode, data, appWidgetId,
790 mPendingAddInfo);
791 sPendingAddItem = args;
792 }
Winson Chung5aaab772012-04-27 15:24:02 -0700793 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800794 return;
795 }
796
Sunny Goyalff572272014-07-23 13:58:07 -0700797 if (requestCode == REQUEST_RECONFIGURE_APPWIDGET) {
798 if (resultCode == RESULT_OK) {
799 // Update the widget view.
800 PendingAddArguments args = preparePendingAddArgs(requestCode, data,
801 pendingAddWidgetId, mPendingAddInfo);
802 if (workspaceLocked) {
803 sPendingAddItem = args;
804 } else {
805 completeAdd(args);
806 }
807 }
808 // Leave the widget in the pending state if the user canceled the configure.
809 return;
810 }
811
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800812 // The pattern used here is that a user PICKs a specific application,
813 // which, depending on the target, might need to CREATE the actual target.
Romain Guycbb89e42009-06-08 15:52:54 -0700814
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800815 // For example, the user would PICK_SHORTCUT for "Music playlist", and we
816 // launch over to the Music app to actually CREATE_SHORTCUT.
Winson Chungc7da5552011-08-10 15:28:45 -0700817 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
Adam Cohendb364c32014-05-20 14:23:40 -0700818 final PendingAddArguments args = preparePendingAddArgs(requestCode, data, -1,
819 mPendingAddInfo);
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800820 if (isWorkspaceLocked()) {
Adam Cohendb364c32014-05-20 14:23:40 -0700821 sPendingAddItem = args;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800822 } else {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700823 completeAdd(args);
Adam Cohendb364c32014-05-20 14:23:40 -0700824 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
825 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800826 }
Adam Cohen00074722013-10-11 17:46:09 -0700827 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen689ff162014-05-08 17:27:56 -0700828 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700829 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800830 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800831 mDragLayer.clearAnimatedView();
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800832
833 }
834
835 @Override
836 protected void onActivityResult(
837 final int requestCode, final int resultCode, final Intent data) {
838 handleActivityResult(requestCode, resultCode, data);
839 if (mLauncherCallbacks != null) {
840 mLauncherCallbacks.onActivityResult(requestCode, resultCode, data);
841 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800842 }
843
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600844 /** @Override for MNC */
Sunny Goyaldd2e6df2015-07-07 10:57:57 -0700845 public void onRequestPermissionsResult(int requestCode, String[] permissions,
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600846 int[] grantResults) {
847 if (mLauncherCallbacks != null) {
848 mLauncherCallbacks.onRequestPermissionsResult(requestCode, permissions,
849 grantResults);
850 }
851 }
852
Adam Cohendb364c32014-05-20 14:23:40 -0700853 private PendingAddArguments preparePendingAddArgs(int requestCode, Intent data, int
854 appWidgetId, ItemInfo info) {
855 PendingAddArguments args = new PendingAddArguments();
856 args.requestCode = requestCode;
857 args.intent = data;
858 args.container = info.container;
859 args.screenId = info.screenId;
860 args.cellX = info.cellX;
861 args.cellY = info.cellY;
862 args.appWidgetId = appWidgetId;
863 return args;
864 }
865
866 /**
867 * Check to see if a given screen id exists. If not, create it at the end, return the new id.
868 *
869 * @param screenId the screen id to check
870 * @return the new screen, or screenId if it exists
871 */
872 private long ensurePendingDropLayoutExists(long screenId) {
873 CellLayout dropLayout =
874 (CellLayout) mWorkspace.getScreenWithId(screenId);
875 if (dropLayout == null) {
876 // it's possible that the add screen was removed because it was
877 // empty and a re-bind occurred
878 mWorkspace.addExtraEmptyScreen();
879 return mWorkspace.commitExtraEmptyScreen();
880 } else {
881 return screenId;
882 }
883 }
884
Adam Cohen091440a2015-03-18 14:16:05 -0700885 @Thunk void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700886 CellLayout cellLayout =
Adam Cohendcd297f2013-06-18 13:13:40 -0700887 (CellLayout) mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800888 Runnable onCompleteRunnable = null;
889 int animationType = 0;
890
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700891 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800892 if (resultCode == RESULT_OK) {
893 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
894 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700895 mPendingAddWidgetInfo);
896 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800897 onCompleteRunnable = new Runnable() {
898 @Override
899 public void run() {
900 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700901 mPendingAddInfo.screenId, layout, null);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700902 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
903 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
Adam Cohened66b2b2012-01-23 17:28:51 -0800904 }
905 };
906 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800907 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800908 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
Adam Cohened66b2b2012-01-23 17:28:51 -0800909 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700910 if (mDragLayer.getAnimatedView() != null) {
911 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
912 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
913 animationType, boundWidget, true);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700914 } else if (onCompleteRunnable != null) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700915 // The animated view may be null in the case of a rotation during widget configuration
916 onCompleteRunnable.run();
917 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800918 }
919
920 @Override
Michael Jurkacd496d72013-04-11 11:32:45 -0700921 protected void onStop() {
922 super.onStop();
923 FirstFrameAnimatorHelper.setIsVisible(false);
Adam Cohen9211d422014-10-07 18:14:53 -0700924
925 if (mLauncherCallbacks != null) {
926 mLauncherCallbacks.onStop();
927 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700928 }
929
930 @Override
931 protected void onStart() {
932 super.onStart();
933 FirstFrameAnimatorHelper.setIsVisible(true);
Adam Cohen9211d422014-10-07 18:14:53 -0700934
935 if (mLauncherCallbacks != null) {
936 mLauncherCallbacks.onStart();
937 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700938 }
939
940 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800941 protected void onResume() {
Michael Jurka447bf842013-05-15 14:52:15 +0200942 long startTime = 0;
943 if (DEBUG_RESUME_TIME) {
944 startTime = System.currentTimeMillis();
Daniel Sandler924b9932013-06-12 00:38:25 -0400945 Log.v(TAG, "Launcher.onResume()");
Michael Jurka447bf842013-05-15 14:52:15 +0200946 }
Adam Cohen9211d422014-10-07 18:14:53 -0700947
948 if (mLauncherCallbacks != null) {
949 mLauncherCallbacks.preOnResume();
950 }
951
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800952 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700953
Winson Chung4a2afa32012-07-19 14:53:05 -0700954 // Restore the previous launcher state
Winson Chung75cc8252015-04-10 10:19:58 -0700955 if (mOnResumeState == State.WORKSPACE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700956 showWorkspace(false);
Winson Chungb745afb2015-03-02 11:51:23 -0800957 } else if (mOnResumeState == State.APPS) {
Winson Chung13eb5272015-05-11 16:30:13 -0700958 boolean launchedFromApp = (mWaitingForResume != null);
Winson Chung4ac30062015-05-08 17:34:17 -0700959 // Don't update the predicted apps if the user is returning to launcher in the apps
Winson Chung13eb5272015-05-11 16:30:13 -0700960 // view after launching an app, as they may be depending on the UI to be static to
961 // switch to another app, otherwise, if it was
Winson Chung4ac30062015-05-08 17:34:17 -0700962 showAppsView(false /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -0700963 !launchedFromApp /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -0800964 } else if (mOnResumeState == State.WIDGETS) {
965 showWidgetsView(false, false);
Winson Chung4a2afa32012-07-19 14:53:05 -0700966 }
967 mOnResumeState = State.NONE;
968
Sunny Goyal4a6c6f32015-05-19 12:36:46 -0700969 // Background was set to gradient in onPause(), restore to transparent if in all apps.
Sunny Goyald70ad0d2015-05-26 17:20:07 -0700970 setWorkspaceBackground(mState == State.WORKSPACE ? WORKSPACE_BACKGROUND_GRADIENT
971 : WORKSPACE_BACKGROUND_TRANSPARENT);
Craig Mautner360310b2012-10-26 15:13:08 -0700972
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800973 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700974 if (mRestoring || mOnResumeNeedsLoad) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700975 setWorkspaceLoading(true);
Sunny Goyal22aa3812015-08-19 16:24:27 -0700976
977 // If we're starting binding all over again, clear any bind calls we'd postponed in
978 // the past (see waitUntilResume) -- we don't need them since we're starting binding
979 // from scratch again
980 mBindOnResumeCallbacks.clear();
981
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700982 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400983 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700984 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800985 }
Michael Jurka1e2f4652013-07-08 18:03:46 -0700986 if (mBindOnResumeCallbacks.size() > 0) {
Michael Jurkac402cd92013-05-20 15:49:32 +0200987 // We might have postponed some bind calls until onResume (see waitUntilResume) --
988 // execute them here
989 long startTimeCallbacks = 0;
990 if (DEBUG_RESUME_TIME) {
991 startTimeCallbacks = System.currentTimeMillis();
992 }
993
Michael Jurka1e2f4652013-07-08 18:03:46 -0700994 for (int i = 0; i < mBindOnResumeCallbacks.size(); i++) {
995 mBindOnResumeCallbacks.get(i).run();
Michael Jurkac402cd92013-05-20 15:49:32 +0200996 }
Michael Jurka1e2f4652013-07-08 18:03:46 -0700997 mBindOnResumeCallbacks.clear();
Michael Jurkac402cd92013-05-20 15:49:32 +0200998 if (DEBUG_RESUME_TIME) {
999 Log.d(TAG, "Time spent processing callbacks in onResume: " +
1000 (System.currentTimeMillis() - startTimeCallbacks));
1001 }
Michael Jurka447bf842013-05-15 14:52:15 +02001002 }
Michael Jurka54554252013-08-01 12:52:23 +02001003 if (mOnResumeCallbacks.size() > 0) {
1004 for (int i = 0; i < mOnResumeCallbacks.size(); i++) {
1005 mOnResumeCallbacks.get(i).run();
1006 }
1007 mOnResumeCallbacks.clear();
1008 }
Winson Chunge4e50662012-01-23 14:45:13 -08001009
1010 // Reset the pressed state of icons that were locked in the press state while activities
1011 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -08001012 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -08001013 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -08001014 mWaitingForResume.setStayPressed(false);
1015 }
Winson Chung82963d52013-10-09 11:20:57 -07001016
Adam Cohen06dff352012-06-01 17:17:08 -07001017 // It is possible that widgets can receive updates while launcher is not in the foreground.
1018 // Consequently, the widgets will be inflated in the orientation of the foreground activity
1019 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
1020 // orientation.
Sunny Goyal6bec75f2015-10-01 18:50:48 -07001021 if (!isWorkspaceLoading()) {
1022 getWorkspace().reinflateWidgetsIfNecessary();
1023 }
Sunny Goyal22235bc2015-04-03 09:23:43 -07001024 reinflateQSBIfNecessary();
Adam Cohenf9426d52012-06-04 17:26:21 -07001025
Michael Jurka447bf842013-05-15 14:52:15 +02001026 if (DEBUG_RESUME_TIME) {
1027 Log.d(TAG, "Time spent in onResume: " + (System.currentTimeMillis() - startTime));
1028 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001029
Adam Cohen4b66bf32015-09-18 12:15:19 -07001030 // We want to suppress callbacks about CustomContent being shown if we have just received
1031 // onNewIntent while the user was present within launcher. In that case, we post a call
1032 // to move the user to the main screen (which will occur after onResume). We don't want to
1033 // have onHide (from onPause), then onShow, then onHide again, which we get if we don't
1034 // suppress here.
1035 if (mWorkspace.getCustomContentCallbacks() != null
1036 && !mMoveToDefaultScreenFromNewIntent) {
Adam Cohen6fecd412013-10-02 17:41:50 -07001037 // If we are resuming and the custom content is the current page, we call onShow().
Adam Cohen4b66bf32015-09-18 12:15:19 -07001038 // It is also possible that onShow will instead be called slightly after first layout
Adam Cohen6fecd412013-10-02 17:41:50 -07001039 // if PagedView#setRestorePage was set to the custom content page in onCreate().
1040 if (mWorkspace.isOnOrMovingToCustomContent()) {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001041 mWorkspace.getCustomContentCallbacks().onShow(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001042 }
1043 }
Adam Cohen4b66bf32015-09-18 12:15:19 -07001044 mMoveToDefaultScreenFromNewIntent = false;
Winson Chungcd99cd32015-04-29 11:03:24 -07001045 updateInteraction(Workspace.State.NORMAL, mWorkspace.getState());
Adam Cohen53805212013-10-01 10:39:23 -07001046 mWorkspace.onResume();
Sunny Goyale755d462014-07-22 13:48:29 -07001047
Sunny Goyal756adbc2015-04-16 15:20:51 -07001048 if (!isWorkspaceLoading()) {
1049 // Process any items that were added while Launcher was away.
1050 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
1051 }
Adam Cohen9211d422014-10-07 18:14:53 -07001052
1053 if (mLauncherCallbacks != null) {
1054 mLauncherCallbacks.onResume();
1055 }
Adam Cohen06dff352012-06-01 17:17:08 -07001056 }
1057
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001058 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001059 protected void onPause() {
Winson Chung997a9232013-07-24 15:33:46 -07001060 // Ensure that items added to Launcher are queued until Launcher returns
1061 InstallShortcutReceiver.enableInstallQueue();
1062
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001063 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001064 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -08001065 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -07001066 mDragController.resetLastGestureUpTime();
Adam Cohen6fecd412013-10-02 17:41:50 -07001067
1068 // We call onHide() aggressively. The custom content callbacks should be able to
1069 // debounce excess onHide calls.
1070 if (mWorkspace.getCustomContentCallbacks() != null) {
1071 mWorkspace.getCustomContentCallbacks().onHide();
1072 }
Romain Guycbb89e42009-06-08 15:52:54 -07001073
Adam Cohen9211d422014-10-07 18:14:53 -07001074 if (mLauncherCallbacks != null) {
1075 mLauncherCallbacks.onPause();
Adam Cohenbffe7452013-07-22 18:21:45 -07001076 }
Adam Cohenbffe7452013-07-22 18:21:45 -07001077 }
1078
1079 public interface CustomContentCallbacks {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001080 // Custom content is completely shown. {@code fromResume} indicates whether this was caused
1081 // by a onResume or by scrolling otherwise.
1082 public void onShow(boolean fromResume);
Adam Cohenbffe7452013-07-22 18:21:45 -07001083
1084 // Custom content is completely hidden
1085 public void onHide();
Adam Cohenc36fa5c2013-08-29 11:54:42 -07001086
1087 // Custom content scroll progress changed. From 0 (not showing) to 1 (fully showing).
1088 public void onScrollProgressChanged(float progress);
Jan-Willem Maarse2ff91c42014-07-10 15:58:12 -07001089
1090 // Indicates whether the user is allowed to scroll away from the custom content.
1091 boolean isScrollingAllowed();
Adam Cohenbffe7452013-07-22 18:21:45 -07001092 }
1093
Adam Cohenc2d6e892014-10-16 09:49:24 -07001094 public interface LauncherOverlay {
1095
1096 /**
1097 * Touch interaction leading to overscroll has begun
1098 */
1099 public void onScrollInteractionBegin();
1100
1101 /**
1102 * Touch interaction related to overscroll has ended
1103 */
1104 public void onScrollInteractionEnd();
1105
1106 /**
1107 * Scroll progress, between 0 and 100, when the user scrolls beyond the leftmost
1108 * screen (or in the case of RTL, the rightmost screen).
1109 */
1110 public void onScrollChange(int progress, boolean rtl);
1111
1112 /**
1113 * Screen has stopped scrolling
1114 */
1115 public void onScrollSettled();
1116
1117 /**
1118 * This method can be called by the Launcher in order to force the LauncherOverlay
1119 * to exit fully immersive mode.
1120 */
1121 public void forceExitFullImmersion();
1122 }
1123
Jun Mukai8af0cd82015-05-12 12:32:12 -07001124 public interface LauncherSearchCallbacks {
1125 /**
1126 * Called when the search overlay is shown.
1127 */
1128 public void onSearchOverlayOpened();
1129
1130 /**
1131 * Called when the search overlay is dismissed.
1132 */
1133 public void onSearchOverlayClosed();
1134 }
1135
Adam Cohenc2d6e892014-10-16 09:49:24 -07001136 public interface LauncherOverlayCallbacks {
1137 /**
1138 * This method indicates whether a call to {@link #enterFullImmersion()} will succeed,
1139 * however it doesn't modify any state within the launcher.
1140 */
1141 public boolean canEnterFullImmersion();
1142
1143 /**
1144 * Should be called to tell Launcher that the LauncherOverlay will take over interaction,
1145 * eg. by occupying the full screen and handling all touch events.
1146 *
1147 * @return true if Launcher allows the LauncherOverlay to become fully immersive. In this
1148 * case, Launcher will modify any necessary state and assumes the overlay is
1149 * handling all interaction. If false, the LauncherOverlay should cancel any
1150 *
1151 */
1152 public boolean enterFullImmersion();
1153
1154 /**
1155 * Must be called when exiting fully immersive mode. Indicates to Launcher that it has
1156 * full control over UI and state.
1157 */
1158 public void exitFullImmersion();
1159 }
1160
1161 class LauncherOverlayCallbacksImpl implements LauncherOverlayCallbacks {
1162
1163 @Override
1164 public boolean canEnterFullImmersion() {
1165 return mState == State.WORKSPACE;
1166 }
1167
1168 @Override
1169 public boolean enterFullImmersion() {
1170 if (mState == State.WORKSPACE) {
1171 // When fully immersed, disregard any touches which fall through.
1172 mDragLayer.setBlockTouch(true);
1173 return true;
1174 }
1175 return false;
1176 }
1177
1178 @Override
1179 public void exitFullImmersion() {
1180 mDragLayer.setBlockTouch(false);
1181 }
1182 }
1183
Jorim Jaggid017f882014-01-14 17:08:48 -08001184 protected boolean hasSettings() {
Adam Cohen9211d422014-10-07 18:14:53 -07001185 if (mLauncherCallbacks != null) {
1186 return mLauncherCallbacks.hasSettings();
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07001187 } else {
1188 // On devices with a locked orientation, we will at least have the allow rotation
1189 // setting.
1190 return !Utilities.isRotationAllowedForDevice(this);
Adam Cohen9211d422014-10-07 18:14:53 -07001191 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001192 }
1193
Adam Cohen9211d422014-10-07 18:14:53 -07001194 public void addToCustomContentPage(View customContent,
Adam Cohen53805212013-10-01 10:39:23 -07001195 CustomContentCallbacks callbacks, String description) {
1196 mWorkspace.addToCustomContentPage(customContent, callbacks, description);
Adam Cohen66a01fd2013-06-11 12:48:00 -07001197 }
1198
Adam Cohenedb40762013-07-18 16:45:45 -07001199 // The custom content needs to offset its content to account for the QSB
1200 public int getTopOffsetForCustomContent() {
1201 return mWorkspace.getPaddingTop();
1202 }
1203
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001204 @Override
1205 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001206 // Flag the loader to stop early before switching
Adam Cohen1a85c582014-09-30 09:48:49 -07001207 if (mModel.isCurrentCallbacks(this)) {
1208 mModel.stopLoader();
1209 }
Hyunyoung Song3f471442015-04-08 19:01:34 -07001210 //TODO(hyunyoungs): stop the widgets loader when there is a rotation.
1211
Romain Guy13c2e7b2010-03-10 19:45:00 -08001212 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001213 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001214
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001215 // We can't hide the IME if it was forced open. So don't bother
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001216 @Override
1217 public void onWindowFocusChanged(boolean hasFocus) {
1218 super.onWindowFocusChanged(hasFocus);
Adam Cohened307df2013-10-02 09:37:31 -07001219 mHasFocus = hasFocus;
Adam Cohen9211d422014-10-07 18:14:53 -07001220
1221 if (mLauncherCallbacks != null) {
1222 mLauncherCallbacks.onWindowFocusChanged(hasFocus);
1223 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001224 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001225
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001226 private boolean acceptFilter() {
1227 final InputMethodManager inputManager = (InputMethodManager)
1228 getSystemService(Context.INPUT_METHOD_SERVICE);
1229 return !inputManager.isFullscreenMode();
1230 }
1231
1232 @Override
1233 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -07001234 final int uniChar = event.getUnicodeChar();
1235 final boolean handled = super.onKeyDown(keyCode, event);
1236 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
1237 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001238 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
1239 keyCode, event);
1240 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001241 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -07001242 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -07001243 // showSearchDialog()
1244 // If there are multiple keystrokes before the search dialog takes focus,
1245 // onSearchRequested() will be called for every keystroke,
1246 // but it is idempotent, so it's fine.
1247 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001248 }
1249 }
1250
Joe Onorato8a9625e2010-01-28 15:55:35 -08001251 // Eat the long press event so the keyboard doesn't come up.
1252 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
1253 return true;
1254 }
1255
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001256 return handled;
1257 }
1258
Winson46163472015-09-22 17:31:56 -07001259 @Override
1260 public boolean onKeyUp(int keyCode, KeyEvent event) {
1261 if (keyCode == KeyEvent.KEYCODE_MENU) {
1262 // Ignore the menu key if we are currently dragging or are on the custom content screen
1263 if (!isOnCustomContent() && !mDragController.isDragging()) {
1264 // Close any open folders
1265 closeFolder();
1266
1267 // Stop resizing any widgets
1268 mWorkspace.exitWidgetResizeMode();
1269
1270 // Show the overview mode if we are on the workspace
1271 if (mState == State.WORKSPACE && !mWorkspace.isInOverviewMode() &&
1272 !mWorkspace.isSwitchingState()) {
1273 mOverviewPanel.requestFocus();
1274 showOverviewMode(true);
1275 }
1276 }
1277 return true;
1278 }
1279 return super.onKeyUp(keyCode, event);
1280 }
1281
Karl Rosaen138a0412009-04-23 19:00:21 -07001282 private String getTypedText() {
1283 return mDefaultKeySsb.toString();
1284 }
1285
1286 private void clearTypedText() {
1287 mDefaultKeySsb.clear();
1288 mDefaultKeySsb.clearSpans();
1289 Selection.setSelection(mDefaultKeySsb, 0);
1290 }
1291
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001292 /**
Michael Jurka883f55b2010-10-21 15:47:14 -07001293 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
1294 * State
1295 */
1296 private static State intToState(int stateOrdinal) {
1297 State state = State.WORKSPACE;
1298 final State[] stateValues = State.values();
1299 for (int i = 0; i < stateValues.length; i++) {
1300 if (stateValues[i].ordinal() == stateOrdinal) {
1301 state = stateValues[i];
1302 break;
1303 }
1304 }
1305 return state;
1306 }
1307
1308 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001309 * Restores the previous state, if it exists.
1310 *
1311 * @param savedState The previous state.
1312 */
1313 private void restoreState(Bundle savedState) {
1314 if (savedState == null) {
1315 return;
1316 }
1317
Michael Jurka883f55b2010-10-21 15:47:14 -07001318 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungb745afb2015-03-02 11:51:23 -08001319 if (state == State.APPS || state == State.WIDGETS) {
1320 mOnResumeState = state;
Joe Onorato3a8820b2009-11-10 15:06:42 -08001321 }
1322
Adam Cohen21cd0022013-10-09 18:57:02 -07001323 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN,
1324 PagedView.INVALID_RESTORE_PAGE);
1325 if (currentScreen != PagedView.INVALID_RESTORE_PAGE) {
Winson Chung8c87cd82013-07-23 16:20:10 -07001326 mWorkspace.setRestorePage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001327 }
1328
Winson Chung3d503fb2011-07-13 17:25:49 -07001329 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
Adam Cohendcd297f2013-06-18 13:13:40 -07001330 final long pendingAddScreen = savedState.getLong(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001331
Winson Chung3d503fb2011-07-13 17:25:49 -07001332 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
1333 mPendingAddInfo.container = pendingAddContainer;
Adam Cohendcd297f2013-06-18 13:13:40 -07001334 mPendingAddInfo.screenId = pendingAddScreen;
Winson Chung3d503fb2011-07-13 17:25:49 -07001335 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
1336 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001337 mPendingAddInfo.spanX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_X);
1338 mPendingAddInfo.spanY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y);
Adam Cohenb823ae42015-03-27 18:07:52 -07001339 AppWidgetProviderInfo info = savedState.getParcelable(
1340 RUNTIME_STATE_PENDING_ADD_WIDGET_INFO);
Sunny Goyalf044bb12015-05-12 13:30:07 -07001341 mPendingAddWidgetInfo = info == null ?
1342 null : LauncherAppWidgetProviderInfo.fromProviderInfo(this, info);
1343
Adam Cohen4637b5a2013-11-04 18:21:24 -08001344 mPendingAddWidgetId = savedState.getInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID);
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001345 setWaitingForResult(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001346 mRestoring = true;
1347 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001348 }
1349
1350 /**
1351 * Finds all the views we need and configure them properly.
1352 */
1353 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -07001354 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -04001355
Craig Mautner360310b2012-10-26 15:13:08 -07001356 mLauncherView = findViewById(R.id.launcher);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001357 mFocusHandler = (FocusIndicatorView) findViewById(R.id.focus_indicator);
Winson Chung4c98d922011-05-31 16:50:48 -07001358 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
1359 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Anjali Koppalf5d29132014-02-28 13:33:27 -08001360 mWorkspace.setPageSwitchListener(this);
Winson Chunga6945242014-01-08 14:04:34 -08001361 mPageIndicators = mDragLayer.findViewById(R.id.page_indicator);
Craig Mautner360310b2012-10-26 15:13:08 -07001362
John Spurlock77e1f472013-09-11 10:09:51 -04001363 mLauncherView.setSystemUiVisibility(
1364 View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
Craig Mautner360310b2012-10-26 15:13:08 -07001365 mWorkspaceBackgroundDrawable = getResources().getDrawable(R.drawable.workspace_bg);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001366
Winson Chung4c98d922011-05-31 16:50:48 -07001367 // Setup the drag layer
1368 mDragLayer.setup(this, dragController);
1369
Winson Chung3d503fb2011-07-13 17:25:49 -07001370 // Setup the hotseat
1371 mHotseat = (Hotseat) findViewById(R.id.hotseat);
1372 if (mHotseat != null) {
Winson Chung11a1a532013-09-13 11:14:45 -07001373 mHotseat.setOnLongClickListener(this);
Winson Chung3d503fb2011-07-13 17:25:49 -07001374 }
1375
Jorim Jaggid017f882014-01-14 17:08:48 -08001376 mOverviewPanel = (ViewGroup) findViewById(R.id.overview_panel);
Tony Wickham6b7653d2015-09-02 16:11:09 -07001377 // Long-clicking buttons in the overview panel does the same thing as clicking them.
1378 OnLongClickListener performClickOnLongClick = new OnLongClickListener() {
1379 @Override
1380 public boolean onLongClick(View v) {
1381 return v.performClick();
1382 }
1383 };
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001384 mWidgetsButton = findViewById(R.id.widget_button);
1385 mWidgetsButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001386 @Override
Tony Wickham6b7653d2015-09-02 16:11:09 -07001387 public void onClick(View view) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001388 if (!mWorkspace.isSwitchingState()) {
Tony Wickham6b7653d2015-09-02 16:11:09 -07001389 onClickAddWidgetButton(view);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001390 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001391 }
1392 });
Tony Wickham6b7653d2015-09-02 16:11:09 -07001393 mWidgetsButton.setOnLongClickListener(performClickOnLongClick);
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001394 mWidgetsButton.setOnTouchListener(getHapticFeedbackTouchListener());
Adam Cohen61f560d2013-09-30 15:58:20 -07001395
1396 View wallpaperButton = findViewById(R.id.wallpaper_button);
1397 wallpaperButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001398 @Override
Tony Wickham6b7653d2015-09-02 16:11:09 -07001399 public void onClick(View view) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001400 if (!mWorkspace.isSwitchingState()) {
Tony Wickham6b7653d2015-09-02 16:11:09 -07001401 onClickWallpaperPicker(view);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001402 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001403 }
1404 });
Tony Wickham6b7653d2015-09-02 16:11:09 -07001405 wallpaperButton.setOnLongClickListener(performClickOnLongClick);
Adam Cohen61f560d2013-09-30 15:58:20 -07001406 wallpaperButton.setOnTouchListener(getHapticFeedbackTouchListener());
1407
1408 View settingsButton = findViewById(R.id.settings_button);
Jorim Jaggid017f882014-01-14 17:08:48 -08001409 if (hasSettings()) {
1410 settingsButton.setOnClickListener(new OnClickListener() {
1411 @Override
Tony Wickham6b7653d2015-09-02 16:11:09 -07001412 public void onClick(View view) {
Jorim Jaggid017f882014-01-14 17:08:48 -08001413 if (!mWorkspace.isSwitchingState()) {
Tony Wickham6b7653d2015-09-02 16:11:09 -07001414 onClickSettingsButton(view);
Jorim Jaggid017f882014-01-14 17:08:48 -08001415 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08001416 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001417 });
Tony Wickham6b7653d2015-09-02 16:11:09 -07001418 settingsButton.setOnLongClickListener(performClickOnLongClick);
Jorim Jaggid017f882014-01-14 17:08:48 -08001419 settingsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1420 } else {
1421 settingsButton.setVisibility(View.GONE);
Jorim Jaggid017f882014-01-14 17:08:48 -08001422 }
1423
Adam Cohendbdff6b2013-09-18 19:09:15 -07001424 mOverviewPanel.setAlpha(0f);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001425
Winson Chung4c98d922011-05-31 16:50:48 -07001426 // Setup the workspace
1427 mWorkspace.setHapticFeedbackEnabled(false);
1428 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -07001429 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -07001430 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001431
Winson Chungf0ea4d32011-06-06 14:27:16 -07001432 // Get the search/delete bar
Adam Cohen24ce0b32014-01-14 16:18:14 -08001433 mSearchDropTargetBar = (SearchDropTargetBar)
1434 mDragLayer.findViewById(R.id.search_drop_target_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001435
Winson Chungef7f8742015-06-04 17:18:17 -07001436 // Setup Apps and Widgets
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001437 mAppsView = (AllAppsContainerView) findViewById(R.id.apps_view);
Hyunyoung Song3f471442015-04-08 19:01:34 -07001438 mWidgetsView = (WidgetsContainerView) findViewById(R.id.widgets_view);
Winson Chungef7f8742015-06-04 17:18:17 -07001439 if (mLauncherCallbacks != null && mLauncherCallbacks.getAllAppsSearchBarController() != null) {
1440 mAppsView.setSearchBarController(mLauncherCallbacks.getAllAppsSearchBarController());
1441 } else {
1442 mAppsView.setSearchBarController(mAppsView.newDefaultAppSearchController());
1443 }
Craig Mautner360310b2012-10-26 15:13:08 -07001444
Winson Chung3d503fb2011-07-13 17:25:49 -07001445 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -07001446 dragController.setDragScoller(mWorkspace);
1447 dragController.setScrollView(mDragLayer);
1448 dragController.setMoveTarget(mWorkspace);
1449 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -07001450 if (mSearchDropTargetBar != null) {
1451 mSearchDropTargetBar.setup(this, dragController);
Adam Cohenb0df1b02015-03-18 22:21:40 -07001452 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Michael Jurkae0f5a612011-02-07 16:45:41 -08001453 }
Daniel Sandler924b9932013-06-12 00:38:25 -04001454
Daniel Sandlera127b7a2013-06-17 14:25:46 -04001455 if (getResources().getBoolean(R.bool.debug_memory_enabled)) {
Daniel Sandler924b9932013-06-12 00:38:25 -04001456 Log.v(TAG, "adding WeightWatcher");
Adam Cohen39a06042013-07-19 14:30:12 -07001457 mWeightWatcher = new WeightWatcher(this);
1458 mWeightWatcher.setAlpha(0.5f);
1459 ((FrameLayout) mLauncherView).addView(mWeightWatcher,
Daniel Sandler924b9932013-06-12 00:38:25 -04001460 new FrameLayout.LayoutParams(
1461 FrameLayout.LayoutParams.MATCH_PARENT,
Daniel Sandlerb9eb2862013-06-14 20:17:30 -04001462 FrameLayout.LayoutParams.WRAP_CONTENT,
Daniel Sandler924b9932013-06-12 00:38:25 -04001463 Gravity.BOTTOM)
1464 );
Adam Cohen39a06042013-07-19 14:30:12 -07001465
1466 boolean show = shouldShowWeightWatcher();
1467 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
Daniel Sandler924b9932013-06-12 00:38:25 -04001468 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001469 }
1470
1471 /**
Anjali Koppal5ad44842014-03-10 20:34:39 -07001472 * Sets the all apps button. This method is called from {@link Hotseat}.
1473 */
1474 public void setAllAppsButton(View allAppsButton) {
1475 mAllAppsButton = allAppsButton;
1476 }
1477
1478 public View getAllAppsButton() {
1479 return mAllAppsButton;
1480 }
1481
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001482 public View getWidgetsButton() {
1483 return mWidgetsButton;
1484 }
1485
Anjali Koppal5ad44842014-03-10 20:34:39 -07001486 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001487 * Creates a view representing a shortcut.
1488 *
1489 * @param info The data structure describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001490 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001491 View createShortcut(ShortcutInfo info) {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001492 return createShortcut((ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001493 }
1494
1495 /**
1496 * Creates a view representing a shortcut inflated from the specified resource.
1497 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001498 * @param parent The group the shortcut belongs to.
1499 * @param info The data structure describing the shortcut.
1500 *
1501 * @return A View inflated from layoutResId.
1502 */
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001503 public View createShortcut(ViewGroup parent, ShortcutInfo info) {
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001504 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(R.layout.app_icon,
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001505 parent, false);
1506 favorite.applyFromShortcutInfo(info, mIconCache);
1507 favorite.setCompoundDrawablePadding(mDeviceProfile.iconDrawablePaddingPx);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001508 favorite.setOnClickListener(this);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001509 favorite.setOnFocusChangeListener(mFocusHandler);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001510 return favorite;
1511 }
1512
1513 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001514 * Add a shortcut to the workspace.
1515 *
1516 * @param data The intent describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001517 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001518 private void completeAddShortcut(Intent data, long container, long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07001519 int cellY) {
1520 int[] cellXY = mTmpAddItemCellCoordinates;
1521 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohendcd297f2013-06-18 13:13:40 -07001522 CellLayout layout = getCellLayout(container, screenId);
Romain Guycbb89e42009-06-08 15:52:54 -07001523
Sunny Goyal5c97f512015-05-19 16:03:28 -07001524 ShortcutInfo info = InstallShortcutReceiver.fromShortcutIntent(this, data);
Adam Cohend9198822011-11-22 16:42:47 -08001525 if (info == null) {
1526 return;
1527 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001528 final View view = createShortcut(info);
1529
Sunny Goyal5c97f512015-05-19 16:03:28 -07001530 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001531 // First we check if we already know the exact location where we want to add this item.
1532 if (cellX >= 0 && cellY >= 0) {
1533 cellXY[0] = cellX;
1534 cellXY[1] = cellY;
1535 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001536
1537 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001538 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001539 true, null,null)) {
1540 return;
1541 }
1542 DragObject dragObject = new DragObject();
1543 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001544 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1545 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001546 return;
1547 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001548 } else if (touchXY != null) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08001549 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001550 int[] result = layout.findNearestVacantArea(touchXY[0], touchXY[1], 1, 1, cellXY);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001551 foundCellSpan = (result != null);
1552 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001553 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001554 }
1555
1556 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001557 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001558 return;
1559 }
1560
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001561 LauncherModel.addItemToDatabase(this, info, container, screenId, cellXY[0], cellXY[1]);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001562
1563 if (!mRestoring) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001564 mWorkspace.addInScreen(view, container, screenId, cellXY[0], cellXY[1], 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07001565 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001566 }
1567 }
1568
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001569 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001570 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001571 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001572 * @param appWidgetId The app widget id
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001573 */
Adam Cohen091440a2015-03-18 14:16:05 -07001574 @Thunk void completeAddAppWidget(int appWidgetId, long container, long screenId,
Adam Cohen59400422014-03-05 18:07:04 -08001575 AppWidgetHostView hostView, LauncherAppWidgetProviderInfo appWidgetInfo) {
1576
1577 ItemInfo info = mPendingAddInfo;
Adam Cohened66b2b2012-01-23 17:28:51 -08001578 if (appWidgetInfo == null) {
Adam Cohen59400422014-03-05 18:07:04 -08001579 appWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(this,
1580 mAppWidgetManager.getAppWidgetInfo(appWidgetId));
Adam Cohened66b2b2012-01-23 17:28:51 -08001581 }
Romain Guycbb89e42009-06-08 15:52:54 -07001582
Adam Cohen59400422014-03-05 18:07:04 -08001583 if (appWidgetInfo.isCustomWidget) {
1584 appWidgetId = LauncherAppWidgetInfo.CUSTOM_WIDGET_ID;
Michael Jurkaa63c4522010-08-19 13:52:27 -07001585 }
1586
Adam Cohen59400422014-03-05 18:07:04 -08001587 LauncherAppWidgetInfo launcherInfo;
1588 launcherInfo = new LauncherAppWidgetInfo(appWidgetId, appWidgetInfo.provider);
1589 launcherInfo.spanX = info.spanX;
1590 launcherInfo.spanY = info.spanY;
1591 launcherInfo.minSpanX = info.minSpanX;
1592 launcherInfo.minSpanY = info.minSpanY;
Sunny Goyalffe83f12014-08-14 17:39:34 -07001593 launcherInfo.user = mAppWidgetManager.getUser(appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001594
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001595 LauncherModel.addItemToDatabase(this, launcherInfo,
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001596 container, screenId, info.cellX, info.cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001597
1598 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001599 if (hostView == null) {
1600 // Perform actual inflation because we're live
Adam Cohen59400422014-03-05 18:07:04 -08001601 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId,
1602 appWidgetInfo);
Adam Cohened66b2b2012-01-23 17:28:51 -08001603 } else {
1604 // The AppWidgetHostView has already been inflated and instantiated
1605 launcherInfo.hostView = hostView;
1606 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001607 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001608 launcherInfo.hostView.setVisibility(View.VISIBLE);
Adam Cohenaaa5c212012-10-05 18:14:31 -07001609 launcherInfo.notifyWidgetSizeChanged(this);
1610
Adam Cohen59400422014-03-05 18:07:04 -08001611 mWorkspace.addInScreen(launcherInfo.hostView, container, screenId, info.cellX,
1612 info.cellY, launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001613
1614 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001615 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001616 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001617 }
Romain Guycbb89e42009-06-08 15:52:54 -07001618
Adam Cohended9f8d2010-11-03 13:25:16 -07001619 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1620 @Override
1621 public void onReceive(Context context, Intent intent) {
1622 final String action = intent.getAction();
1623 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1624 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001625 mDragLayer.clearAllResizeFrames();
Winson Chungb745afb2015-03-02 11:51:23 -08001626 updateAutoAdvanceState();
Winson Chung337cd9d2011-03-30 10:39:30 -07001627
Winson Chungc100e8e2011-08-09 16:02:43 -07001628 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001629 // processing a multi-step drop
Hyunyoung Song3f471442015-04-08 19:01:34 -07001630 if (mAppsView != null && mWidgetsView != null &&
Winson Chungb745afb2015-03-02 11:51:23 -08001631 mPendingAddInfo.container == ItemInfo.NO_ID) {
Winson5c6bdbb2015-09-03 11:36:19 -07001632 if (!showWorkspace(false)) {
1633 // If we are already on the workspace, then manually reset all apps
1634 mAppsView.reset();
1635 }
Winson Chung785d2eb2011-04-14 16:08:02 -07001636 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001637 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1638 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08001639 updateAutoAdvanceState();
Dan Sandlerd5024042014-01-09 15:01:33 -05001640 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.DELETE_DATABASE.equals(action)) {
1641 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001642 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001643 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE);
1644 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.MIGRATE_DATABASE.equals(action)) {
1645 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001646 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001647 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE
1648 | LauncherModel.LOADER_FLAG_MIGRATE_SHORTCUTS);
Adam Cohended9f8d2010-11-03 13:25:16 -07001649 }
1650 }
1651 };
1652
1653 @Override
1654 public void onAttachedToWindow() {
1655 super.onAttachedToWindow();
1656
1657 // Listen for broadcasts related to user-presence
1658 final IntentFilter filter = new IntentFilter();
1659 filter.addAction(Intent.ACTION_SCREEN_OFF);
1660 filter.addAction(Intent.ACTION_USER_PRESENT);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001661 // For handling managed profiles
Dan Sandlerd5024042014-01-09 15:01:33 -05001662 if (ENABLE_DEBUG_INTENTS) {
1663 filter.addAction(DebugIntents.DELETE_DATABASE);
1664 filter.addAction(DebugIntents.MIGRATE_DATABASE);
1665 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001666 registerReceiver(mReceiver, filter);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001667 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Sunny Goyal9fc953b2015-08-17 12:24:25 -07001668 setupTransparentSystemBarsForLollipop();
Adam Cohend113e0c2010-11-11 10:48:05 -08001669 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001670 mVisible = true;
1671 }
1672
Adam Cohen0b395352014-06-09 22:54:36 +00001673 /**
Sunny Goyal9fc953b2015-08-17 12:24:25 -07001674 * Sets up transparent navigation and status bars in Lollipop.
Adam Cohen0b395352014-06-09 22:54:36 +00001675 * This method is a no-op for other platform versions.
1676 */
Sunny Goyald0091012015-01-20 15:55:34 -08001677 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Sunny Goyal9fc953b2015-08-17 12:24:25 -07001678 private void setupTransparentSystemBarsForLollipop() {
1679 if (Utilities.ATLEAST_LOLLIPOP) {
Sunny Goyald0091012015-01-20 15:55:34 -08001680 Window window = getWindow();
1681 window.getAttributes().systemUiVisibility |=
1682 (View.SYSTEM_UI_FLAG_LAYOUT_STABLE
1683 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
1684 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
1685 window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS
1686 | WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
1687 window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
1688 window.setStatusBarColor(Color.TRANSPARENT);
1689 window.setNavigationBarColor(Color.TRANSPARENT);
Adam Cohen0b395352014-06-09 22:54:36 +00001690 }
1691 }
1692
Adam Cohended9f8d2010-11-03 13:25:16 -07001693 @Override
1694 public void onDetachedFromWindow() {
1695 super.onDetachedFromWindow();
1696 mVisible = false;
1697
Adam Cohend113e0c2010-11-11 10:48:05 -08001698 if (mAttached) {
1699 unregisterReceiver(mReceiver);
1700 mAttached = false;
1701 }
Winson Chungb745afb2015-03-02 11:51:23 -08001702 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001703 }
1704
1705 public void onWindowVisibilityChanged(int visibility) {
1706 mVisible = visibility == View.VISIBLE;
Winson Chungb745afb2015-03-02 11:51:23 -08001707 updateAutoAdvanceState();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001708 // The following code used to be in onResume, but it turns out onResume is called when
1709 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1710 // is a more appropriate event to handle
1711 if (mVisible) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001712 if (!mWorkspaceLoading) {
1713 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001714 // We want to let Launcher draw itself at least once before we force it to build
1715 // layers on all the workspace pages, so that transitioning to Launcher from other
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001716 // apps is nice and speedy.
1717 observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001718 private boolean mStarted = false;
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001719 public void onDraw() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001720 if (mStarted) return;
1721 mStarted = true;
Michael Jurka6ee21d22012-02-21 18:20:27 -08001722 // We delay the layer building a bit in order to give
1723 // other message processing a time to run. In particular
1724 // this avoids a delay in hiding the IME if it was
1725 // currently shown, because doing that may involve
1726 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001727 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurkadf96add2013-04-03 16:25:02 -07001728 final ViewTreeObserver.OnDrawListener listener = this;
1729 mWorkspace.post(new Runnable() {
Tony Wickhama0628cc2015-10-14 15:23:04 -07001730 public void run() {
1731 if (mWorkspace != null &&
1732 mWorkspace.getViewTreeObserver() != null) {
1733 mWorkspace.getViewTreeObserver().
1734 removeOnDrawListener(listener);
Michael Jurkadf96add2013-04-03 16:25:02 -07001735 }
Tony Wickhama0628cc2015-10-14 15:23:04 -07001736 }
1737 });
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001738 return;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001739 }
1740 });
1741 }
1742 clearTypedText();
1743 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001744 }
1745
Adam Cohen091440a2015-03-18 14:16:05 -07001746 @Thunk void sendAdvanceMessage(long delay) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001747 mHandler.removeMessages(ADVANCE_MSG);
1748 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1749 mHandler.sendMessageDelayed(msg, delay);
1750 mAutoAdvanceSentTime = System.currentTimeMillis();
1751 }
1752
Adam Cohen091440a2015-03-18 14:16:05 -07001753 @Thunk void updateAutoAdvanceState() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001754 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1755 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1756 mAutoAdvanceRunning = autoAdvanceRunning;
1757 if (autoAdvanceRunning) {
1758 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1759 sendAdvanceMessage(delay);
1760 } else {
1761 if (!mWidgetsToAdvance.isEmpty()) {
1762 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1763 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1764 }
1765 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001766 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001767 }
1768 }
1769 }
1770
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001771 @Thunk final Handler mHandler = new Handler(new Handler.Callback() {
1772
Adam Cohended9f8d2010-11-03 13:25:16 -07001773 @Override
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001774 public boolean handleMessage(Message msg) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001775 if (msg.what == ADVANCE_MSG) {
1776 int i = 0;
1777 for (View key: mWidgetsToAdvance.keySet()) {
1778 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1779 final int delay = mAdvanceStagger * i;
1780 if (v instanceof Advanceable) {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001781 mHandler.postDelayed(new Runnable() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001782 public void run() {
1783 ((Advanceable) v).advance();
1784 }
1785 }, delay);
1786 }
1787 i++;
1788 }
1789 sendAdvanceMessage(mAdvanceInterval);
1790 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001791 return true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001792 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001793 });
Adam Cohended9f8d2010-11-03 13:25:16 -07001794
Winsonc0b52fe2015-09-09 16:38:15 -07001795 private void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001796 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001797 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1798 if (v instanceof Advanceable) {
1799 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001800 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Winson Chungb745afb2015-03-02 11:51:23 -08001801 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001802 }
1803 }
1804
Winsonc0b52fe2015-09-09 16:38:15 -07001805 private void removeWidgetToAutoAdvance(View hostView) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001806 if (mWidgetsToAdvance.containsKey(hostView)) {
1807 mWidgetsToAdvance.remove(hostView);
Winson Chungb745afb2015-03-02 11:51:23 -08001808 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001809 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001810 }
1811
Hyunyoung Song3f471442015-04-08 19:01:34 -07001812 public void showOutOfSpaceMessage(boolean isHotseatLayout) {
Winson Chung93eef082012-03-23 15:59:27 -07001813 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1814 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001815 }
1816
Winson Chunga6945242014-01-08 14:04:34 -08001817 public DragLayer getDragLayer() {
1818 return mDragLayer;
1819 }
1820
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001821 public AllAppsContainerView getAppsView() {
Winson Chungb745afb2015-03-02 11:51:23 -08001822 return mAppsView;
1823 }
1824
Hyunyoung Song3f471442015-04-08 19:01:34 -07001825 public WidgetsContainerView getWidgetsView() {
1826 return mWidgetsView;
Winson Chungb745afb2015-03-02 11:51:23 -08001827 }
1828
Winson Chunga6945242014-01-08 14:04:34 -08001829 public Workspace getWorkspace() {
1830 return mWorkspace;
1831 }
1832
1833 public Hotseat getHotseat() {
1834 return mHotseat;
1835 }
1836
Jorim Jaggid017f882014-01-14 17:08:48 -08001837 public ViewGroup getOverviewPanel() {
Winson Chunga6945242014-01-08 14:04:34 -08001838 return mOverviewPanel;
1839 }
1840
Winson Chung006ee262015-08-03 14:40:11 -07001841 public SearchDropTargetBar getSearchDropTargetBar() {
Winson Chunga6945242014-01-08 14:04:34 -08001842 return mSearchDropTargetBar;
1843 }
1844
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001845 public LauncherAppWidgetHost getAppWidgetHost() {
1846 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001847 }
Romain Guycbb89e42009-06-08 15:52:54 -07001848
Winson Chunga9abd0e2010-10-27 17:18:37 -07001849 public LauncherModel getModel() {
1850 return mModel;
1851 }
1852
Winson Chunga6945242014-01-08 14:04:34 -08001853 protected SharedPreferences getSharedPrefs() {
1854 return mSharedPrefs;
1855 }
1856
Adam Cohen2e6da152015-05-06 11:42:25 -07001857 public DeviceProfile getDeviceProfile() {
1858 return mDeviceProfile;
1859 }
1860
Bjorn Bringertc459e522013-06-07 19:36:01 +01001861 public void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001862 getWindow().closeAllPanels();
1863
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001864 // Whatever we were doing is hereby canceled.
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001865 setWaitingForResult(false);
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001866 }
1867
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001868 @Override
1869 protected void onNewIntent(Intent intent) {
Michael Jurka447bf842013-05-15 14:52:15 +02001870 long startTime = 0;
1871 if (DEBUG_RESUME_TIME) {
1872 startTime = System.currentTimeMillis();
1873 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001874 super.onNewIntent(intent);
1875
1876 // Close the menu
Winson15f8b172015-08-19 11:02:39 -07001877 Folder openFolder = mWorkspace.getOpenFolder();
1878 boolean alreadyOnHome = mHasFocus && ((intent.getFlags() &
1879 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1880 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
1881 boolean isActionMain = Intent.ACTION_MAIN.equals(intent.getAction());
1882 if (isActionMain) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001883 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001884 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001885
Adam Cohen6fecd412013-10-02 17:41:50 -07001886 if (mWorkspace == null) {
1887 // Can be cases where mWorkspace is null, this prevents a NPE
1888 return;
1889 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001890 // In all these cases, only animate if we're already on home
1891 mWorkspace.exitWidgetResizeMode();
Adam Cohen9211d422014-10-07 18:14:53 -07001892
Adam Cohen6fecd412013-10-02 17:41:50 -07001893 closeFolder();
1894 exitSpringLoadedDragMode();
1895
1896 // If we are already on home, then just animate back to the workspace,
1897 // otherwise, just wait until onResume to set the state back to Workspace
1898 if (alreadyOnHome) {
Adam Cohened307df2013-10-02 09:37:31 -07001899 showWorkspace(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001900 } else {
1901 mOnResumeState = State.WORKSPACE;
1902 }
1903
1904 final View v = getWindow().peekDecorView();
1905 if (v != null && v.getWindowToken() != null) {
1906 InputMethodManager imm = (InputMethodManager)getSystemService(
1907 INPUT_METHOD_SERVICE);
1908 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1909 }
1910
Winson Chungb745afb2015-03-02 11:51:23 -08001911 // Reset the apps view
1912 if (!alreadyOnHome && mAppsView != null) {
1913 mAppsView.scrollToTop();
1914 }
1915
Hyunyoung Song3f471442015-04-08 19:01:34 -07001916 // Reset the widgets view
1917 if (!alreadyOnHome && mWidgetsView != null) {
1918 mWidgetsView.scrollToTop();
Adam Cohen6fecd412013-10-02 17:41:50 -07001919 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001920
Adam Cohen9211d422014-10-07 18:14:53 -07001921 if (mLauncherCallbacks != null) {
1922 mLauncherCallbacks.onHomeIntent();
1923 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001924 }
Adam Cohened307df2013-10-02 09:37:31 -07001925
Adam Cohen9211d422014-10-07 18:14:53 -07001926 if (mLauncherCallbacks != null) {
1927 mLauncherCallbacks.onNewIntent(intent);
1928 }
Winson15f8b172015-08-19 11:02:39 -07001929
1930 // Defer moving to the default screen until after we callback to the LauncherCallbacks
1931 // as slow logic in the callbacks eat into the time the scroller expects for the snapToPage
1932 // animation.
1933 if (isActionMain) {
Ivan Lee667d6882015-09-03 10:16:07 -06001934 boolean moveToDefaultScreen = mLauncherCallbacks != null ?
1935 mLauncherCallbacks.shouldMoveToDefaultScreenOnHomeIntent() : true;
Winson15f8b172015-08-19 11:02:39 -07001936 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
1937 openFolder == null && moveToDefaultScreen) {
Adam Cohen4b66bf32015-09-18 12:15:19 -07001938
1939 // We use this flag to suppress noisy callbacks above custom content state
1940 // from onResume.
1941 mMoveToDefaultScreenFromNewIntent = true;
Winson15f8b172015-08-19 11:02:39 -07001942 mWorkspace.post(new Runnable() {
1943 @Override
1944 public void run() {
1945 mWorkspace.moveToDefaultScreen(true);
1946 }
1947 });
1948 }
1949 }
1950
1951 if (DEBUG_RESUME_TIME) {
1952 Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime));
1953 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001954 }
1955
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001956 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001957 public void onRestoreInstanceState(Bundle state) {
1958 super.onRestoreInstanceState(state);
1959 for (int page: mSynchronouslyBoundPages) {
1960 mWorkspace.restoreInstanceStateForChild(page);
1961 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001962 }
1963
1964 @Override
1965 protected void onSaveInstanceState(Bundle outState) {
Adam Cohen21cd0022013-10-09 18:57:02 -07001966 if (mWorkspace.getChildCount() > 0) {
Winson Chung9b9fb962013-11-15 15:39:34 -08001967 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN,
1968 mWorkspace.getCurrentPageOffsetFromCustomContent());
Adam Cohen21cd0022013-10-09 18:57:02 -07001969 }
Adam Cohen95bb8002011-07-03 23:40:28 -07001970 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001971
Michael Jurka883f55b2010-10-21 15:47:14 -07001972 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001973 // We close any open folder since it will not be re-opened, and we need to make sure
1974 // this state is reflected.
1975 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001976
Adam Cohendcd297f2013-06-18 13:13:40 -07001977 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screenId > -1 &&
Winson Chung3d503fb2011-07-13 17:25:49 -07001978 mWaitingForResult) {
1979 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
Adam Cohendcd297f2013-06-18 13:13:40 -07001980 outState.putLong(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screenId);
Winson Chung3d503fb2011-07-13 17:25:49 -07001981 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1982 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001983 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_X, mPendingAddInfo.spanX);
1984 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y, mPendingAddInfo.spanY);
1985 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
Adam Cohen4637b5a2013-11-04 18:21:24 -08001986 outState.putInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID, mPendingAddWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001987 }
1988
Hyunyoung Song3f471442015-04-08 19:01:34 -07001989 // Save the current widgets tray?
1990 // TODO(hyunyoungs)
Adam Cohen9211d422014-10-07 18:14:53 -07001991
1992 if (mLauncherCallbacks != null) {
1993 mLauncherCallbacks.onSaveInstanceState(outState);
1994 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001995 }
1996
1997 @Override
1998 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001999 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07002000
Winson Chunge7a03942011-08-05 15:05:12 -07002001 // Remove all pending runnables
2002 mHandler.removeMessages(ADVANCE_MSG);
2003 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07002004 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07002005
Winson Chungcd2b0142011-06-08 16:02:26 -07002006 // Stop callbacks from LauncherModel
Daniel Sandlercc8befa2013-06-11 14:45:48 -04002007 LauncherAppState app = (LauncherAppState.getInstance());
Adam Cohen1a85c582014-09-30 09:48:49 -07002008
2009 // It's possible to receive onDestroy after a new Launcher activity has
2010 // been created. In this case, don't interfere with the new Launcher.
2011 if (mModel.isCurrentCallbacks(this)) {
2012 mModel.stopLoader();
2013 app.setLauncher(null);
2014 }
Winson Chungcd2b0142011-06-08 16:02:26 -07002015
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002016 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07002017 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002018 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002019 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002020 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002021 mAppWidgetHost = null;
2022
2023 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002024
2025 TextKeyListener.getInstance().release();
2026
Joe Onorato34a0e1b2009-12-14 17:44:51 -08002027 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002028
Adam Cohenaccf3bf2012-04-30 16:07:43 -07002029 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002030 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
Adam Cohend552dd92013-11-26 12:13:11 -08002031 mWorkspace.removeAllWorkspaceScreens();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002032 mWorkspace = null;
2033 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08002034
Michael Jurka2ecf9952012-06-18 12:52:28 -07002035 LauncherAnimUtils.onDestroyActivity();
Adam Cohen9211d422014-10-07 18:14:53 -07002036
2037 if (mLauncherCallbacks != null) {
2038 mLauncherCallbacks.onDestroy();
2039 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002040 }
2041
Adam Cohena9cf38f2011-05-02 15:36:58 -07002042 public DragController getDragController() {
2043 return mDragController;
2044 }
2045
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002046 @Override
2047 public void startActivityForResult(Intent intent, int requestCode) {
Adam Cohen173f7112015-03-27 15:14:00 -07002048 onStartForResult(requestCode);
2049 super.startActivityForResult(intent, requestCode);
2050 }
2051
2052 @Override
2053 public void startIntentSenderForResult (IntentSender intent, int requestCode,
2054 Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) {
2055 onStartForResult(requestCode);
2056 try {
2057 super.startIntentSenderForResult(intent, requestCode,
2058 fillInIntent, flagsMask, flagsValues, extraFlags, options);
2059 } catch (IntentSender.SendIntentException e) {
2060 throw new ActivityNotFoundException();
2061 }
2062 }
2063
2064 private void onStartForResult(int requestCode) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002065 if (requestCode >= 0) {
2066 setWaitingForResult(true);
2067 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002068 }
2069
Winson Chung70d72102011-08-12 11:24:35 -07002070 /**
2071 * Indicates that we want global search for this activity by setting the globalSearch
2072 * argument for {@link #startSearch} to true.
2073 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002074 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07002075 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002076 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002077
Karl Rosaen138a0412009-04-23 19:00:21 -07002078 if (initialQuery == null) {
2079 // Use any text typed in the launcher as the initial query
2080 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07002081 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002082 if (appSearchData == null) {
2083 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01002084 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002085 }
Winson Chungadf0c182012-08-23 14:59:07 -07002086 Rect sourceBounds = new Rect();
2087 if (mSearchDropTargetBar != null) {
2088 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
2089 }
Romain Guycbb89e42009-06-08 15:52:54 -07002090
Ian Parkinson047036e2014-09-01 15:40:53 +01002091 boolean clearTextImmediately = startSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002092 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002093 if (clearTextImmediately) {
2094 clearTypedText();
2095 }
Winson Chungcd99cd32015-04-29 11:03:24 -07002096
2097 // We need to show the workspace after starting the search
2098 showWorkspace(true);
Bjorn Bringertc459e522013-06-07 19:36:01 +01002099 }
2100
Ian Parkinson047036e2014-09-01 15:40:53 +01002101 /**
2102 * Start a text search.
2103 *
2104 * @return {@code true} if the search will start immediately, so any further keypresses
2105 * will be handled directly by the search UI. {@code false} if {@link Launcher} should continue
2106 * to buffer keypresses.
2107 */
2108 public boolean startSearch(String initialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002109 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Adam Cohen9211d422014-10-07 18:14:53 -07002110 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
2111 return mLauncherCallbacks.startSearch(initialQuery, selectInitialQuery, appSearchData,
2112 sourceBounds);
2113 }
2114
Michael Jurkaa33411c2012-06-14 16:18:21 -07002115 startGlobalSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002116 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002117 return false;
Michael Jurkaa33411c2012-06-14 16:18:21 -07002118 }
2119
2120 /**
2121 * Starts the global search activity. This code is a copied from SearchManager
2122 */
Bjorn Bringertc459e522013-06-07 19:36:01 +01002123 private void startGlobalSearch(String initialQuery,
Michael Jurkaa33411c2012-06-14 16:18:21 -07002124 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002125 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07002126 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2127 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
2128 if (globalSearchActivity == null) {
2129 Log.w(TAG, "No global search activity found.");
2130 return;
2131 }
2132 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
2133 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2134 intent.setComponent(globalSearchActivity);
2135 // Make sure that we have a Bundle to put source in
2136 if (appSearchData == null) {
2137 appSearchData = new Bundle();
2138 } else {
2139 appSearchData = new Bundle(appSearchData);
2140 }
Adam Cohen9211d422014-10-07 18:14:53 -07002141 // Set source to package name of app that starts global search if not set already.
Michael Jurkaa33411c2012-06-14 16:18:21 -07002142 if (!appSearchData.containsKey("source")) {
2143 appSearchData.putString("source", getPackageName());
2144 }
2145 intent.putExtra(SearchManager.APP_DATA, appSearchData);
2146 if (!TextUtils.isEmpty(initialQuery)) {
2147 intent.putExtra(SearchManager.QUERY, initialQuery);
2148 }
2149 if (selectInitialQuery) {
2150 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
2151 }
2152 intent.setSourceBounds(sourceBounds);
2153 try {
2154 startActivity(intent);
2155 } catch (ActivityNotFoundException ex) {
2156 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
2157 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002158 }
2159
Winson Chungbedf9232015-07-10 12:38:30 -07002160 public void startSearchFromAllApps(View v, Intent searchIntent, String searchQuery) {
2161 if (mLauncherCallbacks != null && mLauncherCallbacks.startSearchFromAllApps(searchQuery)) {
2162 return;
2163 }
2164
2165 // If not handled, then just start the provided search intent
2166 startActivitySafely(v, searchIntent, null);
2167 }
2168
Yura4f93ec62014-02-04 14:15:21 +00002169 public boolean isOnCustomContent() {
2170 return mWorkspace.isOnOrMovingToCustomContent();
2171 }
2172
Winson Chung70d72102011-08-12 11:24:35 -07002173 @Override
Winson Chung70d72102011-08-12 11:24:35 -07002174 public boolean onPrepareOptionsMenu(Menu menu) {
2175 super.onPrepareOptionsMenu(menu);
Adam Cohen9211d422014-10-07 18:14:53 -07002176 if (mLauncherCallbacks != null) {
2177 return mLauncherCallbacks.onPrepareOptionsMenu(menu);
2178 }
Michael Jurkab94f3f82013-09-11 18:08:54 +02002179 return false;
Winson Chung70d72102011-08-12 11:24:35 -07002180 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002181
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002182 @Override
2183 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07002184 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07002185 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07002186 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002187 }
2188
Joe Onorato9c1289c2009-08-17 11:03:03 -04002189 public boolean isWorkspaceLocked() {
2190 return mWorkspaceLoading || mWaitingForResult;
2191 }
2192
Adam Cohen517a7f52014-03-01 12:12:59 -08002193 public boolean isWorkspaceLoading() {
2194 return mWorkspaceLoading;
2195 }
2196
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002197 private void setWorkspaceLoading(boolean value) {
2198 boolean isLocked = isWorkspaceLocked();
2199 mWorkspaceLoading = value;
2200 if (isLocked != isWorkspaceLocked()) {
2201 onWorkspaceLockedChanged();
2202 }
2203 }
2204
2205 private void setWaitingForResult(boolean value) {
2206 boolean isLocked = isWorkspaceLocked();
2207 mWaitingForResult = value;
2208 if (isLocked != isWorkspaceLocked()) {
2209 onWorkspaceLockedChanged();
2210 }
2211 }
2212
Adam Cohen9211d422014-10-07 18:14:53 -07002213 protected void onWorkspaceLockedChanged() {
2214 if (mLauncherCallbacks != null) {
2215 mLauncherCallbacks.onWorkspaceLockedChanged();
2216 }
2217 }
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002218
Michael Jurka0280c3b2010-09-17 15:00:07 -07002219 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07002220 mPendingAddInfo.container = ItemInfo.NO_ID;
Adam Cohendcd297f2013-06-18 13:13:40 -07002221 mPendingAddInfo.screenId = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002222 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
2223 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Sunny Goyal233ee962015-08-03 13:05:01 -07002224 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = 1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002225 mPendingAddInfo.dropPos = null;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002226 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07002227
Tony Wickhama0628cc2015-10-14 15:23:04 -07002228 void addAppWidgetFromDropImpl(final int appWidgetId, final ItemInfo info, final
Adam Cohen59400422014-03-05 18:07:04 -08002229 AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo) {
Tony Wickhama0628cc2015-10-14 15:23:04 -07002230 if (LOGD) {
2231 Log.d(TAG, "Adding widget from drop");
2232 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07002233 addAppWidgetImpl(appWidgetId, info, boundWidget, appWidgetInfo, 0);
2234 }
2235
Sunny Goyale6b63a32015-01-16 16:14:29 -08002236 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
Adam Cohen59400422014-03-05 18:07:04 -08002237 final AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo,
2238 int delay) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002239 if (appWidgetInfo.configure != null) {
2240 mPendingAddWidgetInfo = appWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -08002241 mPendingAddWidgetId = appWidgetId;
Michael Jurkaaf442092010-06-10 17:01:57 -07002242
Bjorn Bringert7984c942009-12-09 15:38:25 +00002243 // Launch over to configure widget, if needed
Sunny Goyalffe83f12014-08-14 17:39:34 -07002244 mAppWidgetManager.startConfigActivity(appWidgetInfo, appWidgetId, this,
2245 mAppWidgetHost, REQUEST_CREATE_APPWIDGET);
2246
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002247 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00002248 // Otherwise just add it
Adam Cohenad4e15c2013-10-17 16:21:35 -07002249 Runnable onComplete = new Runnable() {
2250 @Override
2251 public void run() {
2252 // Exit spring loaded mode if necessary after adding the widget
2253 exitSpringLoadedDragModeDelayed(true, EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT,
2254 null);
2255 }
2256 };
Adam Cohendcd297f2013-06-18 13:13:40 -07002257 completeAddAppWidget(appWidgetId, info.container, info.screenId, boundWidget,
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002258 appWidgetInfo);
Adam Cohen689ff162014-05-08 17:27:56 -07002259 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, delay, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002260 }
2261 }
Romain Guycbb89e42009-06-08 15:52:54 -07002262
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002263 protected void moveToCustomContentScreen(boolean animate) {
Sandeep Siddharthaf2b47f12013-09-26 19:49:27 -07002264 // Close any folders that may be open.
2265 closeFolder();
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002266 mWorkspace.moveToCustomContentScreen(animate);
2267 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002268
2269 public void addPendingItem(PendingAddItemInfo info, long container, long screenId,
2270 int[] cell, int spanX, int spanY) {
2271 switch (info.itemType) {
2272 case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET:
2273 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
2274 int span[] = new int[2];
2275 span[0] = spanX;
2276 span[1] = spanY;
2277 addAppWidgetFromDrop((PendingAddWidgetInfo) info,
2278 container, screenId, cell, span);
2279 break;
2280 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
2281 processShortcutFromDrop(info.componentName, container, screenId, cell);
2282 break;
2283 default:
2284 throw new IllegalStateException("Unknown item type: " + info.itemType);
2285 }
2286 }
2287
Adam Cohenfbba09b2011-07-18 21:43:05 -07002288 /**
2289 * Process a shortcut drop.
2290 *
2291 * @param componentName The name of the component
Adam Cohendcd297f2013-06-18 13:13:40 -07002292 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002293 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002294 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002295 private void processShortcutFromDrop(ComponentName componentName, long container, long screenId,
2296 int[] cell) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002297 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002298 mPendingAddInfo.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002299 mPendingAddInfo.screenId = screenId;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002300 mPendingAddInfo.dropPos = null;
Adam Cohenfbba09b2011-07-18 21:43:05 -07002301
2302 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002303 mPendingAddInfo.cellX = cell[0];
2304 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002305 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002306
2307 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
2308 createShortcutIntent.setComponent(componentName);
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002309 Utilities.startActivityForResultSafely(this, createShortcutIntent, REQUEST_CREATE_SHORTCUT);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002310 }
2311
Adam Cohenfbba09b2011-07-18 21:43:05 -07002312 /**
2313 * Process a widget drop.
2314 *
2315 * @param info The PendingAppWidgetInfo of the widget being added.
Adam Cohendcd297f2013-06-18 13:13:40 -07002316 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002317 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002318 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002319 private void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, long screenId,
2320 int[] cell, int[] span) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07002321 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002322 mPendingAddInfo.container = info.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002323 mPendingAddInfo.screenId = info.screenId = screenId;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002324 mPendingAddInfo.dropPos = null;
Adam Cohend41fbf52012-02-16 23:53:59 -08002325 mPendingAddInfo.minSpanX = info.minSpanX;
2326 mPendingAddInfo.minSpanY = info.minSpanY;
2327
Adam Cohenfbba09b2011-07-18 21:43:05 -07002328 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002329 mPendingAddInfo.cellX = cell[0];
2330 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002331 }
Adam Cohend41fbf52012-02-16 23:53:59 -08002332 if (span != null) {
2333 mPendingAddInfo.spanX = span[0];
2334 mPendingAddInfo.spanY = span[1];
2335 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002336
Adam Cohened66b2b2012-01-23 17:28:51 -08002337 AppWidgetHostView hostView = info.boundWidget;
2338 int appWidgetId;
2339 if (hostView != null) {
Tony Wickhama0628cc2015-10-14 15:23:04 -07002340 // In the case where we've prebound the widget, we remove it from the DragLayer
2341 if (LOGD) {
2342 Log.d(TAG, "Removing widget view from drag layer and setting boundWidget to null");
2343 }
2344 getDragLayer().removeView(hostView);
2345
Adam Cohened66b2b2012-01-23 17:28:51 -08002346 appWidgetId = hostView.getAppWidgetId();
Tony Wickhama0628cc2015-10-14 15:23:04 -07002347 addAppWidgetFromDropImpl(appWidgetId, info, hostView, info.info);
Sunny Goyal5b9ebca2015-06-01 18:37:32 -07002348
2349 // Clear the boundWidget so that it doesn't get destroyed.
2350 info.boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -08002351 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002352 // In this case, we either need to start an activity to get permission to bind
2353 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08002354 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07002355 Bundle options = info.bindOptions;
2356
Sunny Goyalffe83f12014-08-14 17:39:34 -07002357 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
2358 appWidgetId, info.info, options);
Adam Cohendd70d662012-10-04 16:53:44 -07002359 if (success) {
Tony Wickhama0628cc2015-10-14 15:23:04 -07002360 addAppWidgetFromDropImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07002361 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002362 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07002363 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
2364 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
2365 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Sunny Goyalffe83f12014-08-14 17:39:34 -07002366 mAppWidgetManager.getUser(mPendingAddWidgetInfo)
2367 .addToIntent(intent, AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE);
Adam Cohendd70d662012-10-04 16:53:44 -07002368 // TODO: we need to make sure that this accounts for the options bundle.
2369 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07002370 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
2371 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002372 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002373 }
2374
Adam Cohendcd297f2013-06-18 13:13:40 -07002375 FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07002376 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07002377 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002378 folderInfo.title = getText(R.string.folder_name);
2379
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002380 // Update the model
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07002381 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId,
2382 cellX, cellY);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002383 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002384
2385 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07002386 FolderIcon newFolder =
2387 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07002388 mWorkspace.addInScreen(newFolder, container, screenId, cellX, cellY, 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07002389 isWorkspaceLocked());
Winson Chung5f8afe62013-08-12 16:19:28 -07002390 // Force measure the new folder icon
2391 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
2392 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07002393 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002394 }
Romain Guycbb89e42009-06-08 15:52:54 -07002395
Winsonc0b52fe2015-09-09 16:38:15 -07002396 /**
Winsonfa56b3f2015-09-14 12:01:13 -07002397 * Unbinds the view for the specified item, and removes the item and all its children.
2398 *
2399 * @param v the view being removed.
Winsonfa56b3f2015-09-14 12:01:13 -07002400 * @param itemInfo the {@link ItemInfo} for this view.
2401 * @param deleteFromDb whether or not to delete this item from the db.
Winsonc0b52fe2015-09-09 16:38:15 -07002402 */
Winson2949fb52015-09-24 09:56:11 -07002403 public boolean removeItem(View v, ItemInfo itemInfo, boolean deleteFromDb) {
Winsonc0b52fe2015-09-09 16:38:15 -07002404 if (itemInfo instanceof ShortcutInfo) {
Winsonfa56b3f2015-09-14 12:01:13 -07002405 // Remove the shortcut from the folder before removing it from launcher
Winson2949fb52015-09-24 09:56:11 -07002406 FolderInfo folderInfo = sFolders.get(itemInfo.container);
2407 if (folderInfo != null) {
2408 folderInfo.remove((ShortcutInfo) itemInfo);
Winsonfa56b3f2015-09-14 12:01:13 -07002409 } else {
2410 mWorkspace.removeWorkspaceItem(v);
2411 }
Winsonc0b52fe2015-09-09 16:38:15 -07002412 if (deleteFromDb) {
2413 LauncherModel.deleteItemFromDatabase(this, itemInfo);
2414 }
2415 } else if (itemInfo instanceof FolderInfo) {
2416 final FolderInfo folderInfo = (FolderInfo) itemInfo;
2417 unbindFolder(folderInfo);
2418 mWorkspace.removeWorkspaceItem(v);
2419 if (deleteFromDb) {
2420 LauncherModel.deleteFolderAndContentsFromDatabase(this, folderInfo);
2421 }
2422 } else if (itemInfo instanceof LauncherAppWidgetInfo) {
2423 final LauncherAppWidgetInfo widgetInfo = (LauncherAppWidgetInfo) itemInfo;
2424 unbindAppWidget(widgetInfo, deleteFromDb);
Winson44818e02015-10-02 11:25:46 -07002425 mWorkspace.removeWorkspaceItem(v);
Winsonc0b52fe2015-09-09 16:38:15 -07002426 if (deleteFromDb) {
2427 LauncherModel.deleteItemFromDatabase(this, widgetInfo);
2428 }
2429 } else {
2430 return false;
2431 }
2432 return true;
2433 }
2434
2435 /**
2436 * Unbinds any launcher references to the folder.
2437 */
2438 private void unbindFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002439 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002440 }
2441
Winsonc0b52fe2015-09-09 16:38:15 -07002442 /**
2443 * Unbinds any launcher references to the widget and deletes the app widget id.
2444 */
2445 private void unbindAppWidget(final LauncherAppWidgetInfo widgetInfo, boolean deleteAppWidgetId) {
2446 final LauncherAppWidgetHost appWidgetHost = getAppWidgetHost();
2447 if (deleteAppWidgetId && appWidgetHost != null &&
2448 !widgetInfo.isCustomWidget() && widgetInfo.isWidgetIdValid()) {
2449 // Deleting an app widget ID is a void call but writes to disk before returning
2450 // to the caller...
2451 new AsyncTask<Void, Void, Void>() {
2452 public Void doInBackground(Void ... args) {
2453 appWidgetHost.deleteAppWidgetId(widgetInfo.appWidgetId);
2454 return null;
2455 }
Sunny Goyalf27cb0e2015-09-23 16:12:02 -07002456 }.executeOnExecutor(Utilities.THREAD_POOL_EXECUTOR);
Winsonc0b52fe2015-09-09 16:38:15 -07002457 }
2458 removeWidgetToAutoAdvance(widgetInfo.hostView);
2459 widgetInfo.hostView = null;
2460 }
2461
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002462 @Override
2463 public boolean dispatchKeyEvent(KeyEvent event) {
2464 if (event.getAction() == KeyEvent.ACTION_DOWN) {
2465 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002466 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07002467 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08002468 case KeyEvent.KEYCODE_VOLUME_DOWN:
Sunny Goyal4bbf4192014-11-11 12:23:59 -08002469 if (Utilities.isPropertyEnabled(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08002470 dumpState();
2471 return true;
2472 }
2473 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07002474 }
2475 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2476 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07002477 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002478 return true;
2479 }
2480 }
2481
2482 return super.dispatchKeyEvent(event);
2483 }
2484
Joe Onorato88ec0992009-11-19 13:16:06 -08002485 @Override
2486 public void onBackPressed() {
Adam Cohen9211d422014-10-07 18:14:53 -07002487 if (mLauncherCallbacks != null && mLauncherCallbacks.handleBackPressed()) {
2488 return;
2489 }
2490
Sunny Goyal45478022015-06-08 16:52:41 -07002491 if (mDragController.isDragging()) {
2492 mDragController.cancelDrag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08002493 return;
2494 }
2495
Winson Chungb745afb2015-03-02 11:51:23 -08002496 if (isAppsViewVisible()) {
2497 showWorkspace(true);
2498 } else if (isWidgetsViewVisible()) {
2499 showOverviewMode(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002500 } else if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002501 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002502 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07002503 Folder openFolder = mWorkspace.getOpenFolder();
2504 if (openFolder.isEditingName()) {
2505 openFolder.dismissEditingName();
2506 } else {
2507 closeFolder();
2508 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002509 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08002510 mWorkspace.exitWidgetResizeMode();
2511
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002512 // Back button is a no-op here, but give at least some feedback for the button press
2513 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07002514 }
Joe Onorato88ec0992009-11-19 13:16:06 -08002515 }
2516
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002517 /**
Sunny Goyal383c5072015-06-12 21:18:53 -07002518 * Re-listen when widget host is reset.
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002519 */
Sunny Goyal383c5072015-06-12 21:18:53 -07002520 @Override
2521 public void onAppWidgetHostReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08002522 if (mAppWidgetHost != null) {
2523 mAppWidgetHost.startListening();
2524 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002525 }
2526
2527 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002528 * Launches the intent referred by the clicked shortcut.
2529 *
2530 * @param v The view representing the clicked shortcut.
2531 */
2532 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002533 // Make sure that rogue clicks don't get through while allapps is launching, or after the
2534 // view has detached (it's possible for this to happen if the view is removed mid touch).
2535 if (v.getWindowToken() == null) {
2536 return;
2537 }
2538
Winson Chung9b0b2fe2012-02-24 13:03:34 -08002539 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002540 return;
2541 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07002542
Adam Cohen1697b792013-09-17 19:08:21 -07002543 if (v instanceof Workspace) {
2544 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002545 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002546 }
2547 return;
2548 }
2549
2550 if (v instanceof CellLayout) {
2551 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002552 showWorkspace(mWorkspace.indexOfChild(v), true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002553 }
2554 }
2555
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002556 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002557 if (tag instanceof ShortcutInfo) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002558 onClickAppShortcut(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002559 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002560 if (v instanceof FolderIcon) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002561 onClickFolderIcon(v);
Adam Cohena9cf38f2011-05-02 15:36:58 -07002562 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002563 } else if (v == mAllAppsButton) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002564 onClickAllAppsButton(v);
Sunny Goyal508da152014-08-14 10:53:27 -07002565 } else if (tag instanceof AppInfo) {
2566 startAppShortcutOrInfoActivity(v);
Sunny Goyalff572272014-07-23 13:58:07 -07002567 } else if (tag instanceof LauncherAppWidgetInfo) {
2568 if (v instanceof PendingAppWidgetHostView) {
2569 onClickPendingWidget((PendingAppWidgetHostView) v);
2570 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002571 }
2572 }
2573
Sunny Goyal70660032015-05-14 00:07:08 -07002574 @SuppressLint("ClickableViewAccessibility")
Michael Jurka0e260592010-06-30 17:07:39 -07002575 public boolean onTouch(View v, MotionEvent event) {
Michael Jurka0e260592010-06-30 17:07:39 -07002576 return false;
2577 }
2578
Michael Jurkaaf442092010-06-10 17:01:57 -07002579 /**
Sunny Goyalff572272014-07-23 13:58:07 -07002580 * Event handler for the app widget view which has not fully restored.
2581 */
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002582 public void onClickPendingWidget(final PendingAppWidgetHostView v) {
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002583 if (mIsSafeModeEnabled) {
2584 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2585 return;
2586 }
2587
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002588 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) v.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07002589 if (v.isReadyForClickSetup()) {
Sunny Goyalff572272014-07-23 13:58:07 -07002590 int widgetId = info.appWidgetId;
2591 AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
2592 if (appWidgetInfo != null) {
Adam Cohen59400422014-03-05 18:07:04 -08002593 mPendingAddWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(
2594 this, appWidgetInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07002595 mPendingAddInfo.copyFrom(info);
2596 mPendingAddWidgetId = widgetId;
2597
Sunny Goyalffe83f12014-08-14 17:39:34 -07002598 AppWidgetManagerCompat.getInstance(this).startConfigActivity(appWidgetInfo,
2599 info.appWidgetId, this, mAppWidgetHost, REQUEST_RECONFIGURE_APPWIDGET);
Sunny Goyalff572272014-07-23 13:58:07 -07002600 }
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002601 } else if (info.installProgress < 0) {
2602 // The install has not been queued
2603 final String packageName = info.providerName.getPackageName();
2604 showBrokenAppInstallDialog(packageName,
2605 new DialogInterface.OnClickListener() {
2606 public void onClick(DialogInterface dialog, int id) {
2607 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
2608 }
2609 });
2610 } else {
2611 // Download has started.
2612 final String packageName = info.providerName.getPackageName();
2613 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
Sunny Goyalff572272014-07-23 13:58:07 -07002614 }
2615 }
2616
2617 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002618 * Event handler for the "grid" button that appears on the home screen, which
2619 * enters all apps mode.
2620 *
2621 * @param v The view that was clicked.
2622 */
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002623 protected void onClickAllAppsButton(View v) {
2624 if (LOGD) Log.d(TAG, "onClickAllAppsButton");
Winson Chung76648c52015-07-10 14:33:23 -07002625 if (!isAppsViewVisible()) {
Winson Chung4ac30062015-05-08 17:34:17 -07002626 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07002627 true /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungbedf9232015-07-10 12:38:30 -07002628
2629 if (mLauncherCallbacks != null) {
2630 mLauncherCallbacks.onClickAllAppsButton(v);
2631 }
Winson Chung76648c52015-07-10 14:33:23 -07002632 }
2633 }
2634
2635 protected void onLongClickAllAppsButton(View v) {
2636 if (LOGD) Log.d(TAG, "onLongClickAllAppsButton");
2637 if (!isAppsViewVisible()) {
2638 showAppsView(true /* animated */, false /* resetListToTop */,
2639 true /* updatePredictedApps */, true /* focusSearchBar */);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002640 }
2641 }
2642
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002643 private void showBrokenAppInstallDialog(final String packageName,
2644 DialogInterface.OnClickListener onSearchClickListener) {
Sunny Goyale03b8122014-10-08 09:55:24 -07002645 new AlertDialog.Builder(this)
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002646 .setTitle(R.string.abandoned_promises_title)
2647 .setMessage(R.string.abandoned_promise_explanation)
2648 .setPositiveButton(R.string.abandoned_search, onSearchClickListener)
2649 .setNeutralButton(R.string.abandoned_clean_this,
2650 new DialogInterface.OnClickListener() {
2651 public void onClick(DialogInterface dialog, int id) {
2652 final UserHandleCompat user = UserHandleCompat.myUserHandle();
2653 mWorkspace.removeAbandonedPromise(packageName, user);
2654 }
2655 })
2656 .create().show();
2657 return;
2658 }
2659
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002660 /**
2661 * Event handler for an app shortcut click.
2662 *
2663 * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.
2664 */
Chris Wren40c5ed32014-06-24 18:24:23 -04002665 protected void onClickAppShortcut(final View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002666 if (LOGD) Log.d(TAG, "onClickAppShortcut");
2667 Object tag = v.getTag();
2668 if (!(tag instanceof ShortcutInfo)) {
2669 throw new IllegalArgumentException("Input must be a Shortcut");
2670 }
2671
2672 // Open shortcut
2673 final ShortcutInfo shortcut = (ShortcutInfo) tag;
Sunny Goyal1a745e82014-10-02 15:58:31 -07002674
2675 if (shortcut.isDisabled != 0) {
2676 int error = R.string.activity_not_available;
2677 if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_SAFEMODE) != 0) {
2678 error = R.string.safemode_shortcut_error;
2679 }
2680 Toast.makeText(this, error, Toast.LENGTH_SHORT).show();
2681 return;
2682 }
2683
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002684 final Intent intent = shortcut.intent;
2685
2686 // Check for special shortcuts
2687 if (intent.getComponent() != null) {
2688 final String shortcutClass = intent.getComponent().getClassName();
2689
2690 if (shortcutClass.equals(MemoryDumpActivity.class.getName())) {
2691 MemoryDumpActivity.startDump(this);
2692 return;
2693 } else if (shortcutClass.equals(ToggleWeightWatcher.class.getName())) {
2694 toggleShowWeightWatcher();
2695 return;
2696 }
2697 }
2698
Chris Wren40c5ed32014-06-24 18:24:23 -04002699 // Check for abandoned promise
Sunny Goyal34942622014-08-29 17:20:55 -07002700 if ((v instanceof BubbleTextView)
2701 && shortcut.isPromise()
2702 && !shortcut.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE)) {
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002703 showBrokenAppInstallDialog(
Sunny Goyal34942622014-08-29 17:20:55 -07002704 shortcut.getTargetComponent().getPackageName(),
Chris Wren40c5ed32014-06-24 18:24:23 -04002705 new DialogInterface.OnClickListener() {
2706 public void onClick(DialogInterface dialog, int id) {
Sunny Goyal508da152014-08-14 10:53:27 -07002707 startAppShortcutOrInfoActivity(v);
Chris Wren40c5ed32014-06-24 18:24:23 -04002708 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002709 });
Chris Wren40c5ed32014-06-24 18:24:23 -04002710 return;
2711 }
2712
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002713 // Start activities
Sunny Goyal508da152014-08-14 10:53:27 -07002714 startAppShortcutOrInfoActivity(v);
Adam Cohen9211d422014-10-07 18:14:53 -07002715
2716 if (mLauncherCallbacks != null) {
2717 mLauncherCallbacks.onClickAppShortcut(v);
2718 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002719 }
2720
Adam Cohen091440a2015-03-18 14:16:05 -07002721 @Thunk void startAppShortcutOrInfoActivity(View v) {
Chris Wren40c5ed32014-06-24 18:24:23 -04002722 Object tag = v.getTag();
Sunny Goyal508da152014-08-14 10:53:27 -07002723 final ShortcutInfo shortcut;
2724 final Intent intent;
2725 if (tag instanceof ShortcutInfo) {
2726 shortcut = (ShortcutInfo) tag;
2727 intent = shortcut.intent;
2728 int[] pos = new int[2];
2729 v.getLocationOnScreen(pos);
2730 intent.setSourceBounds(new Rect(pos[0], pos[1],
2731 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Chris Wren40c5ed32014-06-24 18:24:23 -04002732
Sunny Goyal508da152014-08-14 10:53:27 -07002733 } else if (tag instanceof AppInfo) {
2734 shortcut = null;
2735 intent = ((AppInfo) tag).intent;
2736 } else {
2737 throw new IllegalArgumentException("Input must be a Shortcut or AppInfo");
2738 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002739
2740 boolean success = startActivitySafely(v, intent, tag);
Winson Chung8f1eff72015-05-28 17:33:40 -07002741 mStats.recordLaunch(v, intent, shortcut);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002742
2743 if (success && v instanceof BubbleTextView) {
2744 mWaitingForResume = (BubbleTextView) v;
2745 mWaitingForResume.setStayPressed(true);
2746 }
2747 }
2748
2749 /**
2750 * Event handler for a folder icon click.
2751 *
2752 * @param v The view that was clicked. Must be an instance of {@link FolderIcon}.
2753 */
2754 protected void onClickFolderIcon(View v) {
2755 if (LOGD) Log.d(TAG, "onClickFolder");
2756 if (!(v instanceof FolderIcon)){
2757 throw new IllegalArgumentException("Input must be a FolderIcon");
2758 }
2759
Sunny Goyal317698b2015-07-29 11:45:41 -07002760 // TODO(sunnygoyal): Re-evaluate this code.
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002761 FolderIcon folderIcon = (FolderIcon) v;
2762 final FolderInfo info = folderIcon.getFolderInfo();
2763 Folder openFolder = mWorkspace.getFolderForTag(info);
2764
2765 // If the folder info reports that the associated folder is open, then verify that
2766 // it is actually opened. There have been a few instances where this gets out of sync.
2767 if (info.opened && openFolder == null) {
2768 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2769 + info.screenId + " (" + info.cellX + ", " + info.cellY + ")");
2770 info.opened = false;
2771 }
2772
2773 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
2774 // Close any open folder
2775 closeFolder();
2776 // Open the requested folder
2777 openFolder(folderIcon);
2778 } else {
2779 // Find the open folder...
2780 int folderScreen;
2781 if (openFolder != null) {
2782 folderScreen = mWorkspace.getPageForView(openFolder);
2783 // .. and close it
2784 closeFolder(openFolder);
2785 if (folderScreen != mWorkspace.getCurrentPage()) {
2786 // Close any folder open on the current screen
2787 closeFolder();
2788 // Pull the folder onto this screen
2789 openFolder(folderIcon);
2790 }
2791 }
2792 }
Adam Cohen9211d422014-10-07 18:14:53 -07002793
2794 if (mLauncherCallbacks != null) {
2795 mLauncherCallbacks.onClickFolderIcon(v);
2796 }
Michael Jurka5130e402011-10-13 04:55:35 -07002797 }
2798
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002799 /**
2800 * Event handler for the (Add) Widgets button that appears after a long press
2801 * on the home screen.
2802 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002803 protected void onClickAddWidgetButton(View view) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002804 if (LOGD) Log.d(TAG, "onClickAddWidgetButton");
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002805 if (mIsSafeModeEnabled) {
2806 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2807 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08002808 showWidgetsView(true /* animated */, true /* resetPageToZero */);
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002809 if (mLauncherCallbacks != null) {
2810 mLauncherCallbacks.onClickAddWidgetButton(view);
2811 }
Adam Cohen9211d422014-10-07 18:14:53 -07002812 }
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002813 }
2814
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002815 /**
2816 * Event handler for the wallpaper picker button that appears after a long press
2817 * on the home screen.
2818 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002819 protected void onClickWallpaperPicker(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002820 if (LOGD) Log.d(TAG, "onClickWallpaperPicker");
Tony Wickham3e776a82015-09-09 18:21:49 -07002821 int pageScroll = mWorkspace.getScrollForPage(mWorkspace.getPageNearestToCenterOfScreen());
2822 float offset = mWorkspace.mWallpaperOffset.wallpaperOffsetForScroll(pageScroll);
2823 startActivityForResult(new Intent(Intent.ACTION_SET_WALLPAPER).setPackage(getPackageName())
2824 .putExtra(WallpaperPickerActivity.EXTRA_WALLPAPER_OFFSET, offset),
Sunny Goyal6a1e95a2015-03-20 17:26:30 -07002825 REQUEST_PICK_WALLPAPER);
Adam Cohen9211d422014-10-07 18:14:53 -07002826
2827 if (mLauncherCallbacks != null) {
2828 mLauncherCallbacks.onClickWallpaperPicker(v);
2829 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002830 }
2831
2832 /**
2833 * Event handler for a click on the settings button that appears after a long press
2834 * on the home screen.
2835 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002836 protected void onClickSettingsButton(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002837 if (LOGD) Log.d(TAG, "onClickSettingsButton");
Adam Cohen9211d422014-10-07 18:14:53 -07002838 if (mLauncherCallbacks != null) {
2839 mLauncherCallbacks.onClickSettingsButton(v);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07002840 } else {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002841 startActivity(new Intent(this, SettingsActivity.class));
Adam Cohen9211d422014-10-07 18:14:53 -07002842 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002843 }
2844
Adam Cohen61f560d2013-09-30 15:58:20 -07002845 public View.OnTouchListener getHapticFeedbackTouchListener() {
2846 if (mHapticFeedbackTouchListener == null) {
2847 mHapticFeedbackTouchListener = new View.OnTouchListener() {
Sunny Goyal70660032015-05-14 00:07:08 -07002848 @SuppressLint("ClickableViewAccessibility")
Adam Cohen61f560d2013-09-30 15:58:20 -07002849 @Override
2850 public boolean onTouch(View v, MotionEvent event) {
2851 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
2852 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2853 }
2854 return false;
2855 }
2856 };
2857 }
2858 return mHapticFeedbackTouchListener;
2859 }
2860
Adam Cohen9211d422014-10-07 18:14:53 -07002861 public void onDragStarted(View view) {
2862 if (isOnCustomContent()) {
2863 // Custom content screen doesn't participate in drag and drop. If on custom
2864 // content screen, move to default.
2865 moveWorkspaceToDefaultScreen();
2866 }
2867
2868 if (mLauncherCallbacks != null) {
2869 mLauncherCallbacks.onDragStarted(view);
2870 }
2871 }
Anjali Koppal62d18ed2014-03-10 17:04:03 -07002872
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002873 /**
2874 * Called when the user stops interacting with the launcher.
2875 * This implies that the user is now on the homescreen and is not doing housekeeping.
2876 */
Adam Cohen9211d422014-10-07 18:14:53 -07002877 protected void onInteractionEnd() {
2878 if (mLauncherCallbacks != null) {
2879 mLauncherCallbacks.onInteractionEnd();
2880 }
2881 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002882
2883 /**
2884 * Called when the user starts interacting with the launcher.
2885 * The possible interactions are:
2886 * - open all apps
2887 * - reorder an app shortcut, or a widget
2888 * - open the overview mode.
2889 * This is a good time to stop doing things that only make sense
2890 * when the user is on the homescreen and not doing housekeeping.
2891 */
Adam Cohen9211d422014-10-07 18:14:53 -07002892 protected void onInteractionBegin() {
2893 if (mLauncherCallbacks != null) {
2894 mLauncherCallbacks.onInteractionBegin();
2895 }
2896 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002897
Winson Chungcd99cd32015-04-29 11:03:24 -07002898 /** Updates the interaction state. */
2899 public void updateInteraction(Workspace.State fromState, Workspace.State toState) {
Winson Chung83f59ab2015-05-05 17:21:58 -07002900 // Only update the interacting state if we are transitioning to/from a view with an
Winson Chungcd99cd32015-04-29 11:03:24 -07002901 // overlay
Winson Chungef7f8742015-06-04 17:18:17 -07002902 boolean fromStateWithOverlay = fromState != Workspace.State.NORMAL;
2903 boolean toStateWithOverlay = toState != Workspace.State.NORMAL;
Winson Chung83f59ab2015-05-05 17:21:58 -07002904 if (toStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002905 onInteractionBegin();
Winson Chung83f59ab2015-05-05 17:21:58 -07002906 } else if (fromStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002907 onInteractionEnd();
2908 }
2909 }
2910
Kenny Guyf07af7b2014-07-31 11:39:16 +01002911 void startApplicationDetailsActivity(ComponentName componentName, UserHandleCompat user) {
Kenny Guyf07af7b2014-07-31 11:39:16 +01002912 try {
2913 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Kenny Guyf07af7b2014-07-31 11:39:16 +01002914 launcherApps.showAppDetailsForProfile(componentName, user);
2915 } catch (SecurityException e) {
2916 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2917 Log.e(TAG, "Launcher does not have permission to launch settings");
2918 } catch (ActivityNotFoundException e) {
2919 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2920 Log.e(TAG, "Unable to launch settings");
2921 }
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002922 }
2923
Michael Jurka1e2f4652013-07-08 18:03:46 -07002924 // returns true if the activity was started
Kenny Guyd31df542014-06-30 15:12:11 +01002925 boolean startApplicationUninstallActivity(ComponentName componentName, int flags,
2926 UserHandleCompat user) {
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002927 if ((flags & AppInfo.DOWNLOADED_FLAG) == 0) {
Patrick Dubroy5539af72010-09-07 15:22:01 -07002928 // System applications cannot be installed. For now, show a toast explaining that.
2929 // We may give them the option of disabling apps this way.
2930 int messageId = R.string.uninstall_system_app_text;
2931 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
Michael Jurka1e2f4652013-07-08 18:03:46 -07002932 return false;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002933 } else {
Michael Jurka1e2f4652013-07-08 18:03:46 -07002934 String packageName = componentName.getPackageName();
2935 String className = componentName.getClassName();
Patrick Dubroy5539af72010-09-07 15:22:01 -07002936 Intent intent = new Intent(
2937 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002938 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2939 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Kenny Guyd31df542014-06-30 15:12:11 +01002940 if (user != null) {
2941 user.addToIntent(intent, Intent.EXTRA_USER);
2942 }
Patrick Dubroy5539af72010-09-07 15:22:01 -07002943 startActivity(intent);
Michael Jurka1e2f4652013-07-08 18:03:46 -07002944 return true;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002945 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002946 }
2947
Winson Chung8f1eff72015-05-28 17:33:40 -07002948 private boolean startActivity(View v, Intent intent, Object tag) {
Kenny Guyb6cc40b2014-05-13 15:58:58 +01002949 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002950 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002951 // Only launch using the new animation if the shortcut has not opted out (this is a
2952 // private contract between launcher and may be ignored in the future).
2953 boolean useLaunchAnimation = (v != null) &&
2954 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
Kenny Guyed131872014-04-30 03:02:21 +01002955 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
2956 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyed131872014-04-30 03:02:21 +01002957
Kenny Guy1317e2d2014-05-08 18:52:50 +01002958 UserHandleCompat user = null;
2959 if (intent.hasExtra(AppInfo.EXTRA_PROFILE)) {
2960 long serialNumber = intent.getLongExtra(AppInfo.EXTRA_PROFILE, -1);
2961 user = userManager.getUserForSerialNumber(serialNumber);
2962 }
2963
2964 Bundle optsBundle = null;
Winson Chung2672ff92012-05-04 16:22:30 -07002965 if (useLaunchAnimation) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002966 ActivityOptions opts = null;
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002967 if (Utilities.ATLEAST_MARSHMALLOW) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002968 int left = 0, top = 0;
2969 int width = v.getMeasuredWidth(), height = v.getMeasuredHeight();
2970 if (v instanceof TextView) {
2971 // Launch from center of icon, not entire view
Winson Chungb745afb2015-03-02 11:51:23 -08002972 Drawable icon = Workspace.getTextViewIcon((TextView) v);
2973 if (icon != null) {
2974 Rect bounds = icon.getBounds();
Chet Haasea8f996d2015-02-17 12:56:04 -08002975 left = (width - bounds.width()) / 2;
Winson Chungb745afb2015-03-02 11:51:23 -08002976 top = v.getPaddingTop();
Chet Haasea8f996d2015-02-17 12:56:04 -08002977 width = bounds.width();
2978 height = bounds.height();
2979 }
2980 }
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002981 opts = ActivityOptions.makeClipRevealAnimation(v, left, top, width, height);
2982 } else if (!Utilities.ATLEAST_LOLLIPOP) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002983 // Below L, we use a scale up animation
Adam Cohen2e52c902015-04-06 13:11:28 -07002984 opts = ActivityOptions.makeScaleUpAnimation(v, 0, 0,
Chet Haasea8f996d2015-02-17 12:56:04 -08002985 v.getMeasuredWidth(), v.getMeasuredHeight());
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002986 } else if (Utilities.ATLEAST_LOLLIPOP_MR1) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002987 // On L devices, we use the device default slide-up transition.
2988 // On L MR1 devices, we a custom version of the slide-up transition which
2989 // doesn't have the delay present in the device default.
2990 opts = ActivityOptions.makeCustomAnimation(this,
2991 R.anim.task_open_enter, R.anim.no_anim);
Chet Haasea8f996d2015-02-17 12:56:04 -08002992 }
Adam Cohen2e52c902015-04-06 13:11:28 -07002993 optsBundle = opts != null ? opts.toBundle() : null;
Adam Cohen6ea3b112014-06-11 11:38:49 -07002994 }
Kenny Guy1317e2d2014-05-08 18:52:50 +01002995
2996 if (user == null || user.equals(UserHandleCompat.myUserHandle())) {
2997 // Could be launching some bookkeeping activity
2998 startActivity(intent, optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002999 } else {
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07003000 // TODO Component can be null when shortcuts are supported for secondary user
Kenny Guyc2bd8102014-06-30 12:30:31 +01003001 launcherApps.startActivityForProfile(intent.getComponent(), user,
3002 intent.getSourceBounds(), optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07003003 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08003004 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003005 } catch (SecurityException e) {
3006 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08003007 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003008 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07003009 "or use the exported attribute for this activity. "
3010 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003011 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08003012 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003013 }
Winson Chungaafa03c2010-06-11 17:34:16 -07003014
Winson Chungbedf9232015-07-10 12:38:30 -07003015 public boolean startActivitySafely(View v, Intent intent, Object tag) {
Michael Jurka86a720e2012-05-09 11:23:23 -07003016 boolean success = false;
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07003017 if (mIsSafeModeEnabled && !Utilities.isSystemApp(this, intent)) {
3018 Toast.makeText(this, R.string.safemode_shortcut_error, Toast.LENGTH_SHORT).show();
3019 return false;
3020 }
Michael Jurka86a720e2012-05-09 11:23:23 -07003021 try {
3022 success = startActivity(v, intent, tag);
3023 } catch (ActivityNotFoundException e) {
3024 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
3025 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
3026 }
3027 return success;
3028 }
3029
Adam Cohen268c4752012-06-06 17:47:33 -07003030 /**
3031 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
3032 * in the DragLayer in the exact absolute location of the original FolderIcon.
3033 */
3034 private void copyFolderIconToImage(FolderIcon fi) {
3035 final int width = fi.getMeasuredWidth();
3036 final int height = fi.getMeasuredHeight();
3037
3038 // Lazy load ImageView, Bitmap and Canvas
3039 if (mFolderIconImageView == null) {
3040 mFolderIconImageView = new ImageView(this);
3041 }
3042 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
3043 mFolderIconBitmap.getHeight() != height) {
3044 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
3045 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
3046 }
3047
3048 DragLayer.LayoutParams lp;
3049 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
3050 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
3051 } else {
3052 lp = new DragLayer.LayoutParams(width, height);
3053 }
3054
Adam Cohen307fe232012-08-16 17:55:58 -07003055 // The layout from which the folder is being opened may be scaled, adjust the starting
3056 // view size by this scale factor.
3057 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07003058 lp.customPosition = true;
3059 lp.x = mRectForFolderAnimation.left;
3060 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07003061 lp.width = (int) (scale * width);
3062 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07003063
3064 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
3065 fi.draw(mFolderIconCanvas);
3066 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07003067 if (fi.getFolder() != null) {
3068 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
3069 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07003070 }
Adam Cohen268c4752012-06-06 17:47:33 -07003071 // Just in case this image view is still in the drag layer from a previous animation,
3072 // we remove it and re-add it.
3073 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
3074 mDragLayer.removeView(mFolderIconImageView);
3075 }
3076 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07003077 if (fi.getFolder() != null) {
3078 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07003079 }
Adam Cohen268c4752012-06-06 17:47:33 -07003080 }
3081
Adam Cohen2801caf2011-05-13 20:57:39 -07003082 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003083 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003084 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
3085 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
3086 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
3087
Adam Cohenc51934b2011-07-26 21:07:43 -07003088 FolderInfo info = (FolderInfo) fi.getTag();
3089 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3090 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07003091 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
3092 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07003093 }
3094
Adam Cohen268c4752012-06-06 17:47:33 -07003095 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
3096 copyFolderIconToImage(fi);
3097 fi.setVisibility(View.INVISIBLE);
3098
Michael Jurka2ecf9952012-06-18 12:52:28 -07003099 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003100 scaleX, scaleY);
Sunny Goyal9fc953b2015-08-17 12:24:25 -07003101 if (Utilities.ATLEAST_LOLLIPOP) {
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003102 oa.setInterpolator(new LogDecelerateInterpolator(100, 0));
3103 }
3104 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohen2801caf2011-05-13 20:57:39 -07003105 oa.start();
3106 }
3107
Adam Cohen268c4752012-06-06 17:47:33 -07003108 private void shrinkAndFadeInFolderIcon(final FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003109 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003110 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
3111 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
3112 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
3113
Adam Cohen268c4752012-06-06 17:47:33 -07003114 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07003115
Adam Cohen268c4752012-06-06 17:47:33 -07003116 // We remove and re-draw the FolderIcon in-case it has changed
3117 mDragLayer.removeView(mFolderIconImageView);
3118 copyFolderIconToImage(fi);
Michael Jurka2ecf9952012-06-18 12:52:28 -07003119 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003120 scaleX, scaleY);
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003121 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07003122 oa.addListener(new AnimatorListenerAdapter() {
3123 @Override
3124 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07003125 if (cl != null) {
3126 cl.clearFolderLeaveBehind();
3127 // Remove the ImageView copy of the FolderIcon and make the original visible.
3128 mDragLayer.removeView(mFolderIconImageView);
3129 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07003130 }
3131 }
3132 });
Adam Cohen2801caf2011-05-13 20:57:39 -07003133 oa.start();
3134 }
3135
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003136 /**
Michael Jurka774bd372010-10-22 13:40:50 -07003137 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003138 * is animated relative to the specified View. If the View is null, no animation
3139 * is played.
3140 *
3141 * @param folderInfo The FolderInfo describing the folder to open.
3142 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07003143 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07003144 Folder folder = folderIcon.getFolder();
Sunny Goyalf4066152015-04-15 09:42:19 -07003145 Folder openFolder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
3146 if (openFolder != null && openFolder != folder) {
3147 // Close any open folder before opening a folder.
3148 closeFolder();
3149 }
3150
Adam Cohena9cf38f2011-05-02 15:36:58 -07003151 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003152
Adam Cohena9cf38f2011-05-02 15:36:58 -07003153 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003154
Sunny Goyalf4066152015-04-15 09:42:19 -07003155 // While the folder is open, the position of the icon cannot change.
3156 ((CellLayout.LayoutParams) folderIcon.getLayoutParams()).canReorder = false;
3157
Adam Cohen4554ee12011-08-03 16:13:21 -07003158 // Just verify that the folder hasn't already been added to the DragLayer.
3159 // There was a one-off crash where the folder had a parent already.
3160 if (folder.getParent() == null) {
3161 mDragLayer.addView(folder);
3162 mDragController.addDropTarget((DropTarget) folder);
3163 } else {
3164 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
3165 folder.getParent() + ").");
3166 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07003167 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07003168 growAndFadeOutFolderIcon(folderIcon);
Winson Chung83ca4802013-04-12 15:10:52 -07003169
3170 // Notify the accessibility manager that this folder "window" has appeared and occluded
3171 // the workspace items
3172 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
3173 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07003174 }
3175
3176 public void closeFolder() {
Adam Cohen37c717f2013-11-26 11:50:15 -08003177 Folder folder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
Adam Cohen4554ee12011-08-03 16:13:21 -07003178 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07003179 if (folder.isEditingName()) {
3180 folder.dismissEditingName();
3181 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003182 closeFolder(folder);
3183 }
3184 }
3185
Sunny Goyal83a8f042015-05-19 12:52:12 -07003186 public void closeFolder(Folder folder) {
Adam Cohen4554ee12011-08-03 16:13:21 -07003187 folder.getInfo().opened = false;
3188
3189 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
3190 if (parent != null) {
3191 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
3192 shrinkAndFadeInFolderIcon(fi);
Sunny Goyalf4066152015-04-15 09:42:19 -07003193 if (fi != null) {
3194 ((CellLayout.LayoutParams) fi.getLayoutParams()).canReorder = true;
3195 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003196 }
3197 folder.animateClosed();
Winson Chung83ca4802013-04-12 15:10:52 -07003198
3199 // Notify the accessibility manager that this folder "window" has disappeard and no
3200 // longer occludeds the workspace items
3201 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003202 }
3203
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003204 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07003205 if (!isDraggingEnabled()) return false;
3206 if (isWorkspaceLocked()) return false;
3207 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003208
Winson Chung76648c52015-07-10 14:33:23 -07003209 if (v == mAllAppsButton) {
3210 onLongClickAllAppsButton(v);
3211 return true;
3212 }
3213
Adam Cohen1697b792013-09-17 19:08:21 -07003214 if (v instanceof Workspace) {
3215 if (!mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003216 if (!mWorkspace.isTouchActive()) {
3217 showOverviewMode(true);
Adam Cohen93c97562013-09-26 13:48:01 -07003218 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3219 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
3220 return true;
3221 } else {
3222 return false;
3223 }
Adam Cohenaa4c8c12014-06-06 11:52:52 -07003224 } else {
3225 return false;
Adam Cohen1697b792013-09-17 19:08:21 -07003226 }
Adam Cohen1697b792013-09-17 19:08:21 -07003227 }
3228
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003229 CellLayout.CellInfo longClickCellInfo = null;
3230 View itemUnderLongClick = null;
3231 if (v.getTag() instanceof ItemInfo) {
3232 ItemInfo info = (ItemInfo) v.getTag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08003233 longClickCellInfo = new CellLayout.CellInfo(v, info);
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003234 itemUnderLongClick = longClickCellInfo.cell;
3235 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003236 }
3237
Winson Chung3d503fb2011-07-13 17:25:49 -07003238 // The hotseat touch handling does not go through Workspace, and we always allow long press
3239 // on hotseat items.
Dan Sandlere26d0942014-01-13 14:30:14 -05003240 final boolean inHotseat = isHotseatLayout(v);
Sunny Goyal8e2133b2015-05-06 13:39:07 -07003241 if (!mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07003242 if (itemUnderLongClick == null) {
Adam Cohend3ecce92013-09-16 14:58:00 -07003243 // User long pressed on empty space
3244 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3245 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Adam Cohend3ecce92013-09-16 14:58:00 -07003246 if (mWorkspace.isInOverviewMode()) {
3247 mWorkspace.startReordering(v);
3248 } else {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003249 showOverviewMode(true);
Adam Cohendedbd962013-07-11 14:21:49 -07003250 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003251 } else {
Dan Sandlere26d0942014-01-13 14:30:14 -05003252 final boolean isAllAppsButton = inHotseat && isAllAppsButtonRank(
3253 mHotseat.getOrderInHotseat(
3254 longClickCellInfo.cellX,
3255 longClickCellInfo.cellY));
3256 if (!(itemUnderLongClick instanceof Folder || isAllAppsButton)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003257 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07003258 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003259 }
3260 }
3261 }
3262 return true;
3263 }
3264
Winson Chung3d503fb2011-07-13 17:25:49 -07003265 boolean isHotseatLayout(View layout) {
3266 return mHotseat != null && layout != null &&
3267 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
3268 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08003269
Winson Chung3d503fb2011-07-13 17:25:49 -07003270 /**
3271 * Returns the CellLayout of the specified container at the specified screen.
3272 */
Sunny Goyal92820592015-03-02 11:31:35 -08003273 public CellLayout getCellLayout(long container, long screenId) {
Winson Chung3d503fb2011-07-13 17:25:49 -07003274 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3275 if (mHotseat != null) {
3276 return mHotseat.getLayout();
3277 } else {
3278 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08003279 }
Winson Chung3d503fb2011-07-13 17:25:49 -07003280 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08003281 return mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08003282 }
3283 }
3284
Winson Chungb745afb2015-03-02 11:51:23 -08003285 /**
3286 * For overridden classes.
3287 */
Daniel Sandler843e8602010-06-07 14:59:01 -04003288 public boolean isAllAppsVisible() {
Winson Chungb745afb2015-03-02 11:51:23 -08003289 return isAppsViewVisible();
3290 }
3291
3292 public boolean isAppsViewVisible() {
3293 return (mState == State.APPS) || (mOnResumeState == State.APPS);
3294 }
3295
3296 public boolean isWidgetsViewVisible() {
3297 return (mState == State.WIDGETS) || (mOnResumeState == State.WIDGETS);
Joe Onoratofb0ca672009-09-14 17:55:46 -04003298 }
3299
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003300 private void setWorkspaceBackground(int background) {
3301 switch (background) {
3302 case WORKSPACE_BACKGROUND_TRANSPARENT:
3303 getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
3304 break;
3305 case WORKSPACE_BACKGROUND_BLACK:
3306 getWindow().setBackgroundDrawable(null);
3307 break;
3308 default:
3309 getWindow().setBackgroundDrawable(mWorkspaceBackgroundDrawable);
3310 }
Craig Mautner360310b2012-10-26 15:13:08 -07003311 }
3312
Selim Cinek3a8a8f72014-01-16 10:38:38 -08003313 protected void changeWallpaperVisiblity(boolean visible) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003314 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
3315 int curflags = getWindow().getAttributes().flags
3316 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
3317 if (wpflags != curflags) {
3318 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
3319 }
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003320 setWorkspaceBackground(visible ? WORKSPACE_BACKGROUND_GRADIENT : WORKSPACE_BACKGROUND_BLACK);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003321 }
3322
Michael Jurkae326f182011-11-21 14:05:46 -08003323 @Override
3324 public void onTrimMemory(int level) {
3325 super.onTrimMemory(level);
Adam Cohen3f9c9712014-10-31 11:48:25 -07003326 if (level >= ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
3327 // The widget preview db can result in holding onto over
3328 // 3MB of memory for caching which isn't necessary.
3329 SQLiteDatabase.releaseMemory();
3330
Adam Cohenc8f4e1b2014-11-19 16:03:20 -08003331 // This clears all widget bitmaps from the widget tray
Hyunyoung Song3f471442015-04-08 19:01:34 -07003332 // TODO(hyunyoungs)
Michael Jurkae326f182011-11-21 14:05:46 -08003333 }
Robert Kozikowski67c30862015-03-30 23:46:46 +01003334 if (mLauncherCallbacks != null) {
3335 mLauncherCallbacks.onTrimMemory(level);
3336 }
Michael Jurkae326f182011-11-21 14:05:46 -08003337 }
3338
Winson5c6bdbb2015-09-03 11:36:19 -07003339 /**
3340 * @return whether or not the Launcher state changed.
3341 */
3342 public boolean showWorkspace(boolean animated) {
3343 return showWorkspace(WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated, null);
Adam Cohened307df2013-10-02 09:37:31 -07003344 }
3345
Winson5c6bdbb2015-09-03 11:36:19 -07003346 /**
3347 * @return whether or not the Launcher state changed.
3348 */
3349 public boolean showWorkspace(boolean animated, Runnable onCompleteRunnable) {
3350 return showWorkspace(WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated,
Winson Chungef7f8742015-06-04 17:18:17 -07003351 onCompleteRunnable);
Winson Chungdc61c4d2015-04-20 18:26:57 -07003352 }
3353
Winson5c6bdbb2015-09-03 11:36:19 -07003354 /**
3355 * @return whether or not the Launcher state changed.
3356 */
3357 protected boolean showWorkspace(int snapToPage, boolean animated) {
3358 return showWorkspace(snapToPage, animated, null);
Winson Chungdc61c4d2015-04-20 18:26:57 -07003359 }
3360
Winson5c6bdbb2015-09-03 11:36:19 -07003361 /**
3362 * @return whether or not the Launcher state changed.
3363 */
3364 boolean showWorkspace(int snapToPage, boolean animated, Runnable onCompleteRunnable) {
Winson Chung0f785722015-04-08 10:27:49 -07003365 boolean changed = mState != State.WORKSPACE ||
3366 mWorkspace.getState() != Workspace.State.NORMAL;
3367 if (changed) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003368 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003369 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3370 Workspace.State.NORMAL, snapToPage, animated, onCompleteRunnable);
Winson Chungc7d2b602012-05-16 17:02:20 -07003371
Michael Jurkab3e22d92011-10-31 15:58:33 -07003372 // Set focus to the AppsCustomize button
3373 if (mAllAppsButton != null) {
3374 mAllAppsButton.requestFocus();
3375 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003376 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07003377
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003378 // Change the state *after* we've called all the transition code
3379 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08003380
Winson Chung5fb63472011-02-02 17:03:37 -08003381 // Resume the auto-advance of widgets
3382 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08003383 updateAutoAdvanceState();
Winson Chung5fb63472011-02-02 17:03:37 -08003384
Winson Chung0f785722015-04-08 10:27:49 -07003385 if (changed) {
3386 // Send an accessibility event to announce the context change
3387 getWindow().getDecorView()
3388 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Winson Chung0f785722015-04-08 10:27:49 -07003389 }
Winson5c6bdbb2015-09-03 11:36:19 -07003390 return changed;
Bjorn Bringertc459e522013-06-07 19:36:01 +01003391 }
3392
Adam Cohened307df2013-10-02 09:37:31 -07003393 void showOverviewMode(boolean animated) {
3394 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003395 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3396 Workspace.State.OVERVIEW,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003397 WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated,
3398 null /* onCompleteRunnable */);
Adam Cohened307df2013-10-02 09:37:31 -07003399 mState = State.WORKSPACE;
Joe Onorato00acb122009-08-04 16:04:30 -04003400 }
3401
Winson Chungb745afb2015-03-02 11:51:23 -08003402 /**
3403 * Shows the apps view.
3404 */
Winson Chung76648c52015-07-10 14:33:23 -07003405 void showAppsView(boolean animated, boolean resetListToTop, boolean updatePredictedApps,
3406 boolean focusSearchBar) {
Winson Chungb745afb2015-03-02 11:51:23 -08003407 if (resetListToTop) {
3408 mAppsView.scrollToTop();
3409 }
Winson Chung4ac30062015-05-08 17:34:17 -07003410 if (updatePredictedApps) {
3411 tryAndUpdatePredictedApps();
3412 }
Winson Chung76648c52015-07-10 14:33:23 -07003413 showAppsOrWidgets(State.APPS, animated, focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003414 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003415
Winson Chungb745afb2015-03-02 11:51:23 -08003416 /**
3417 * Shows the widgets view.
3418 */
3419 void showWidgetsView(boolean animated, boolean resetPageToZero) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003420 if (LOGD) Log.d(TAG, "showWidgetsView:" + animated + " resetPageToZero:" + resetPageToZero);
Winson Chung82963d52013-10-09 11:20:57 -07003421 if (resetPageToZero) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003422 mWidgetsView.scrollToTop();
Winson Chung82963d52013-10-09 11:20:57 -07003423 }
Winson Chung76648c52015-07-10 14:33:23 -07003424 showAppsOrWidgets(State.WIDGETS, animated, false);
Hyunyoung Song3f471442015-04-08 19:01:34 -07003425
3426 mWidgetsView.post(new Runnable() {
Adam Cohendcc5e712014-06-23 15:38:55 -04003427 @Override
3428 public void run() {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003429 mWidgetsView.requestFocus();
Adam Cohendcc5e712014-06-23 15:38:55 -04003430 }
3431 });
Winson Chungb745afb2015-03-02 11:51:23 -08003432 }
3433
3434 /**
3435 * Sets up the transition to show the apps/widgets view.
Hyunyoung Songb7900832015-05-15 16:29:45 -07003436 *
3437 * @return whether the current from and to state allowed this operation
Winson Chungb745afb2015-03-02 11:51:23 -08003438 */
Hyunyoung Songb7900832015-05-15 16:29:45 -07003439 // TODO: calling method should use the return value so that when {@code false} is returned
3440 // the workspace transition doesn't fall into invalid state.
Winson Chung76648c52015-07-10 14:33:23 -07003441 private boolean showAppsOrWidgets(State toState, boolean animated, boolean focusSearchBar) {
Hyunyoung Songb7900832015-05-15 16:29:45 -07003442 if (mState != State.WORKSPACE && mState != State.APPS_SPRING_LOADED &&
3443 mState != State.WIDGETS_SPRING_LOADED) {
3444 return false;
3445 }
3446 if (toState != State.APPS && toState != State.WIDGETS) {
3447 return false;
3448 }
Winson Chungb745afb2015-03-02 11:51:23 -08003449
3450 if (toState == State.APPS) {
Winson Chung006ee262015-08-03 14:40:11 -07003451 mStateTransitionAnimation.startAnimationToAllApps(mWorkspace.getState(), animated,
3452 focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003453 } else {
Winson Chung006ee262015-08-03 14:40:11 -07003454 mStateTransitionAnimation.startAnimationToWidgets(mWorkspace.getState(), animated);
Winson Chungb745afb2015-03-02 11:51:23 -08003455 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003456
Michael Jurkab3e22d92011-10-31 15:58:33 -07003457 // Change the state *after* we've called all the transition code
Winson Chungb745afb2015-03-02 11:51:23 -08003458 mState = toState;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003459
3460 // Pause the auto-advance of widgets until we are out of AllApps
3461 mUserPresent = false;
Winson Chungb745afb2015-03-02 11:51:23 -08003462 updateAutoAdvanceState();
Michael Jurkab3e22d92011-10-31 15:58:33 -07003463 closeFolder();
3464
3465 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07003466 getWindow().getDecorView()
3467 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Hyunyoung Songb7900832015-05-15 16:29:45 -07003468 return true;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003469 }
3470
Winson Chungcd99cd32015-04-29 11:03:24 -07003471 /**
3472 * Updates the workspace and interaction state on state change, and return the animation to this
3473 * new state.
3474 */
3475 public Animator startWorkspaceStateChangeAnimation(Workspace.State toState, int toPage,
Winson Chung006ee262015-08-03 14:40:11 -07003476 boolean animated, HashMap<View, Integer> layerViews) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003477 Workspace.State fromState = mWorkspace.getState();
Winson Chung006ee262015-08-03 14:40:11 -07003478 Animator anim = mWorkspace.setStateWithAnimation(toState, toPage, animated, layerViews);
Winson Chungcd99cd32015-04-29 11:03:24 -07003479 updateInteraction(fromState, toState);
3480 return anim;
3481 }
3482
Hyunyoung Song3f471442015-04-08 19:01:34 -07003483 public void enterSpringLoadedDragMode() {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003484 if (LOGD) Log.d(TAG, String.format("enterSpringLoadedDragMode [mState=%s", mState.name()));
Winson Chungb745afb2015-03-02 11:51:23 -08003485 if (mState == State.WORKSPACE || mState == State.APPS_SPRING_LOADED ||
3486 mState == State.WIDGETS_SPRING_LOADED) {
3487 return;
Winson Chungb26f3d62011-06-02 10:49:29 -07003488 }
Winson Chungb745afb2015-03-02 11:51:23 -08003489
Winson Chung006ee262015-08-03 14:40:11 -07003490 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3491 Workspace.State.SPRING_LOADED,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003492 WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, true /* animated */,
3493 null /* onCompleteRunnable */);
Winson Chungb745afb2015-03-02 11:51:23 -08003494 mState = isAppsViewVisible() ? State.APPS_SPRING_LOADED : State.WIDGETS_SPRING_LOADED;
Michael Jurkad3ef3062010-11-23 16:23:58 -08003495 }
Adam Cohen7777d962011-08-18 18:58:38 -07003496
Hyunyoung Song3f471442015-04-08 19:01:34 -07003497 public void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, int delay,
Adam Cohened66b2b2012-01-23 17:28:51 -08003498 final Runnable onCompleteRunnable) {
Winson Chungb745afb2015-03-02 11:51:23 -08003499 if (mState != State.APPS_SPRING_LOADED && mState != State.WIDGETS_SPRING_LOADED) return;
Winson Chung09bfc452011-09-09 11:30:20 -07003500
Winson Chunge7a03942011-08-05 15:05:12 -07003501 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07003502 @Override
3503 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003504 if (successfulDrop) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003505 // TODO(hyunyoungs): verify if this hack is still needed, if not, delete.
3506 //
Michael Jurka7bdb25a2011-08-03 15:16:44 -07003507 // Before we show workspace, hide all apps again because
3508 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
3509 // clean up our state transition functions
Hyunyoung Song3f471442015-04-08 19:01:34 -07003510 mWidgetsView.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003511 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07003512 } else {
3513 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003514 }
Winson Chung557d6ed2011-07-08 15:34:52 -07003515 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07003516 }, delay);
Winson Chung557d6ed2011-07-08 15:34:52 -07003517 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003518
Michael Jurkad3ef3062010-11-23 16:23:58 -08003519 void exitSpringLoadedDragMode() {
Winson Chungb745afb2015-03-02 11:51:23 -08003520 if (mState == State.APPS_SPRING_LOADED) {
Winson Chung4ac30062015-05-08 17:34:17 -07003521 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07003522 false /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -08003523 } else if (mState == State.WIDGETS_SPRING_LOADED) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003524 showWidgetsView(true, false);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003525 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003526 }
3527
Winson Chung4ac30062015-05-08 17:34:17 -07003528 /**
3529 * Updates the set of predicted apps if it hasn't been updated since the last time Launcher was
3530 * resumed.
3531 */
3532 private void tryAndUpdatePredictedApps() {
3533 if (mLauncherCallbacks != null) {
Winson Chung6b1c73f2015-06-18 11:38:42 -07003534 List<ComponentKey> apps = mLauncherCallbacks.getPredictedApps();
Winson Chung91c05952015-06-25 12:17:30 -07003535 if (apps != null) {
Winson Chung4ac30062015-05-08 17:34:17 -07003536 mAppsView.setPredictedApps(apps);
3537 }
3538 }
3539 }
3540
Michael Jurkab3e22d92011-10-31 15:58:33 -07003541 void lockAllApps() {
3542 // TODO
3543 }
3544
3545 void unlockAllApps() {
3546 // TODO
3547 }
3548
Sunny Goyal594d76d2014-11-06 10:12:54 -08003549 protected void disableVoiceButtonProxy(boolean disable) {
3550 // NO-OP
Winson Chungbb185bd2011-11-21 12:31:42 -08003551 }
3552
Winsonf768d932015-09-25 16:12:35 -07003553 public boolean launcherCallbacksProvidesSearch() {
3554 return (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch());
3555 }
3556
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003557 public View getOrCreateQsbBar() {
Winsonf768d932015-09-25 16:12:35 -07003558 if (launcherCallbacksProvidesSearch()) {
Adam Cohenc2d6e892014-10-16 09:49:24 -07003559 return mLauncherCallbacks.getQsbBar();
Adam Cohen9211d422014-10-07 18:14:53 -07003560 }
3561
Adam Cohen24ce0b32014-01-14 16:18:14 -08003562 if (mQsb == null) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003563 AppWidgetProviderInfo searchProvider = Utilities.getSearchWidgetProvider(this);
3564 if (searchProvider == null) {
3565 return null;
3566 }
3567
3568 Bundle opts = new Bundle();
3569 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_HOST_CATEGORY,
Adam Coheneb8e2822015-02-20 16:38:48 +00003570 AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003571
3572 SharedPreferences sp = getSharedPreferences(
3573 LauncherAppState.getSharedPreferencesKey(), MODE_PRIVATE);
3574 int widgetId = sp.getInt(QSB_WIDGET_ID, -1);
Sunny Goyal416541c2014-11-14 11:59:57 -08003575 AppWidgetProviderInfo widgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003576 if (!searchProvider.provider.flattenToString().equals(
3577 sp.getString(QSB_WIDGET_PROVIDER, null))
Sunny Goyal416541c2014-11-14 11:59:57 -08003578 || (widgetInfo == null)
3579 || !widgetInfo.provider.equals(searchProvider.provider)) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003580 // A valid widget is not already bound.
3581 if (widgetId > -1) {
3582 mAppWidgetHost.deleteAppWidgetId(widgetId);
3583 widgetId = -1;
3584 }
3585
3586 // Try to bind a new widget
3587 widgetId = mAppWidgetHost.allocateAppWidgetId();
3588
3589 if (!AppWidgetManagerCompat.getInstance(this)
3590 .bindAppWidgetIdIfAllowed(widgetId, searchProvider, opts)) {
3591 mAppWidgetHost.deleteAppWidgetId(widgetId);
3592 widgetId = -1;
3593 }
3594
3595 sp.edit()
3596 .putInt(QSB_WIDGET_ID, widgetId)
3597 .putString(QSB_WIDGET_PROVIDER, searchProvider.provider.flattenToString())
3598 .commit();
3599 }
3600
Sunny Goyal8d595092015-07-06 12:22:14 -07003601 mAppWidgetHost.setQsbWidgetId(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003602 if (widgetId != -1) {
3603 mQsb = mAppWidgetHost.createView(this, widgetId, searchProvider);
Sunny Goyalebfae6e2015-08-27 15:30:25 -07003604 mQsb.setId(R.id.qsb_widget);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003605 mQsb.updateAppWidgetOptions(opts);
3606 mQsb.setPadding(0, 0, 0, 0);
3607 mSearchDropTargetBar.addView(mQsb);
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003608 mSearchDropTargetBar.setQsbSearchBar(mQsb);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003609 }
Cristina Stancu476493b2013-08-07 17:20:14 +01003610 }
Adam Cohen24ce0b32014-01-14 16:18:14 -08003611 return mQsb;
Cristina Stancu476493b2013-08-07 17:20:14 +01003612 }
3613
Sunny Goyal22235bc2015-04-03 09:23:43 -07003614 private void reinflateQSBIfNecessary() {
3615 if (mQsb instanceof LauncherAppWidgetHostView &&
3616 ((LauncherAppWidgetHostView) mQsb).isReinflateRequired()) {
3617 mSearchDropTargetBar.removeView(mQsb);
3618 mQsb = null;
3619 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
3620 }
3621 }
3622
Michael Jurkad7c28052012-04-27 15:43:36 -07003623 @Override
3624 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07003625 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07003626 final List<CharSequence> text = event.getText();
3627 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07003628 // Populate event with a fake title based on the current state.
Winson Chungb745afb2015-03-02 11:51:23 -08003629 if (mState == State.APPS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003630 text.add(getString(R.string.all_apps_button_label));
Winson Chungb745afb2015-03-02 11:51:23 -08003631 } else if (mState == State.WIDGETS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003632 text.add(getString(R.string.widget_button_text));
Hyunyoung Song166e6482015-06-25 21:06:07 -07003633 } else if (mWorkspace != null) {
3634 text.add(mWorkspace.getCurrentPageDescription());
alanv1d4fde62012-10-17 13:15:47 -07003635 } else {
3636 text.add(getString(R.string.all_apps_home_button_label));
3637 }
Michael Jurkad7c28052012-04-27 15:43:36 -07003638 return result;
3639 }
3640
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003641 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003642 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003643 */
Adam Cohen091440a2015-03-18 14:16:05 -07003644 @Thunk class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003645 @Override
3646 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003647 closeSystemDialogs();
3648 }
3649 }
3650
3651 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07003652 * If the activity is currently paused, signal that we need to run the passed Runnable
3653 * in onResume.
3654 *
3655 * This needs to be called from incoming places where resources might have been loaded
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003656 * while the activity is paused. That is because the Configuration (e.g., rotation) might be
3657 * wrong when we're not running, and if the activity comes back to what the configuration was
3658 * when we were paused, activity is not restarted.
Michael Jurka7607c2f2013-04-03 14:33:19 -07003659 *
3660 * Implementation of the method from LauncherModel.Callbacks.
3661 *
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003662 * @return {@code true} if we are currently paused. The caller might be able to skip some work
Michael Jurka7607c2f2013-04-03 14:33:19 -07003663 */
Rahul Chaturvedi799aa042015-06-01 21:26:41 -04003664 @Thunk boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003665 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003666 if (LOGD) Log.d(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02003667 if (deletePreviousRunnables) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07003668 while (mBindOnResumeCallbacks.remove(run)) {
Michael Jurkac402cd92013-05-20 15:49:32 +02003669 }
3670 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07003671 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07003672 return true;
3673 } else {
3674 return false;
3675 }
3676 }
3677
Michael Jurkac402cd92013-05-20 15:49:32 +02003678 private boolean waitUntilResume(Runnable run) {
3679 return waitUntilResume(run, false);
3680 }
3681
Michael Jurka1e2f4652013-07-08 18:03:46 -07003682 public void addOnResumeCallback(Runnable run) {
Michael Jurka54554252013-08-01 12:52:23 +02003683 mOnResumeCallbacks.add(run);
Michael Jurka1e2f4652013-07-08 18:03:46 -07003684 }
3685
Michael Jurka7607c2f2013-04-03 14:33:19 -07003686 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003687 * If the activity is currently paused, signal that we need to re-run the loader
3688 * in onResume.
3689 *
3690 * This needs to be called from incoming places where resources might have been loaded
3691 * while we are paused. That is becaues the Configuration might be wrong
3692 * when we're not running, and if it comes back to what it was when we
3693 * were paused, we are not restarted.
3694 *
3695 * Implementation of the method from LauncherModel.Callbacks.
3696 *
3697 * @return true if we are currently paused. The caller might be able to
3698 * skip some work in that case since we will come back again.
3699 */
3700 public boolean setLoadOnResume() {
3701 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003702 if (LOGD) Log.d(TAG, "setLoadOnResume");
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003703 mOnResumeNeedsLoad = true;
3704 return true;
3705 } else {
3706 return false;
3707 }
3708 }
3709
3710 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003711 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003712 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003713 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003714 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003715 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003716 } else {
3717 return SCREEN_COUNT / 2;
3718 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003719 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003720
Joe Onorato9c1289c2009-08-17 11:03:03 -04003721 /**
3722 * Refreshes the shortcuts shown on the workspace.
3723 *
3724 * Implementation of the method from LauncherModel.Callbacks.
3725 */
3726 public void startBinding() {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07003727 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08003728
Michael Jurka7607c2f2013-04-03 14:33:19 -07003729 // If we're starting binding all over again, clear any bind calls we'd postponed in
3730 // the past (see waitUntilResume) -- we don't need them since we're starting binding
3731 // from scratch again
Michael Jurka1e2f4652013-07-08 18:03:46 -07003732 mBindOnResumeCallbacks.clear();
Adam Cohendf035382011-04-11 17:22:04 -07003733
Winson Chungd64d1762013-08-20 14:37:16 -07003734 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07003735 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07003736 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07003737
Michael Jurka05bf644e2011-11-30 20:28:53 -08003738 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003739 if (mHotseat != null) {
3740 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003741 }
3742 }
3743
Adam Cohendcd297f2013-06-18 13:13:40 -07003744 @Override
3745 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Winson Chung64359a52013-07-08 17:17:08 -07003746 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07003747
Adam Cohen5084cba2013-09-03 12:01:16 -07003748 // If there are no screens, we need to have an empty screen
3749 if (orderedScreenIds.size() == 0) {
3750 mWorkspace.addExtraEmptyScreen();
3751 }
Winson Chung0e6a7132013-08-23 12:55:10 -07003752
3753 // Create the custom content page (this call updates mDefaultScreen which calls
Dave Hawkeya8881582013-09-17 15:55:33 -06003754 // setCurrentPage() so ensure that all pages are added before calling this).
Derek Prothrodadd9842014-01-17 13:43:50 -05003755 if (hasCustomContentToLeft()) {
3756 mWorkspace.createCustomContentContainer();
3757 populateCustomContentContainer();
Winson Chung0e6a7132013-08-23 12:55:10 -07003758 }
Winson Chung64359a52013-07-08 17:17:08 -07003759 }
3760
3761 @Override
3762 public void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Adam Cohendcd297f2013-06-18 13:13:40 -07003763 int count = orderedScreenIds.size();
3764 for (int i = 0; i < count; i++) {
Adam Cohen89bddfa2013-08-20 11:57:13 -07003765 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(orderedScreenIds.get(i));
Adam Cohendcd297f2013-06-18 13:13:40 -07003766 }
Adam Cohendcd297f2013-06-18 13:13:40 -07003767 }
3768
Adam Cohen39a06042013-07-19 14:30:12 -07003769 private boolean shouldShowWeightWatcher() {
3770 String spKey = LauncherAppState.getSharedPreferencesKey();
3771 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
Daniel Sandler6053b802013-08-15 15:44:26 -07003772 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, SHOW_WEIGHT_WATCHER_DEFAULT);
Adam Cohen39a06042013-07-19 14:30:12 -07003773
3774 return show;
3775 }
3776
3777 private void toggleShowWeightWatcher() {
3778 String spKey = LauncherAppState.getSharedPreferencesKey();
3779 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
3780 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, true);
3781
3782 show = !show;
3783
3784 SharedPreferences.Editor editor = sp.edit();
3785 editor.putBoolean(SHOW_WEIGHT_WATCHER, show);
3786 editor.commit();
3787
3788 if (mWeightWatcher != null) {
3789 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
3790 }
3791 }
3792
Winson Chungd64d1762013-08-20 14:37:16 -07003793 public void bindAppsAdded(final ArrayList<Long> newScreens,
3794 final ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -07003795 final ArrayList<ItemInfo> addAnimated,
3796 final ArrayList<AppInfo> addedApps) {
Winson Chungd64d1762013-08-20 14:37:16 -07003797 Runnable r = new Runnable() {
3798 public void run() {
Winson Chungc58497e2013-09-03 17:48:37 -07003799 bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps);
Winson Chungd64d1762013-08-20 14:37:16 -07003800 }
3801 };
3802 if (waitUntilResume(r)) {
3803 return;
3804 }
3805
Winson Chungd64d1762013-08-20 14:37:16 -07003806 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08003807 if (newScreens != null) {
3808 bindAddScreens(newScreens);
3809 }
Winson Chungd64d1762013-08-20 14:37:16 -07003810
3811 // We add the items without animation on non-visible pages, and with
3812 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08003813 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003814 bindItems(addNotAnimated, 0,
3815 addNotAnimated.size(), false);
3816 }
Adam Cohen76a47a12014-02-05 11:47:43 -08003817 if (addAnimated != null && !addAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003818 bindItems(addAnimated, 0,
3819 addAnimated.size(), true);
3820 }
Winson Chungc58497e2013-09-03 17:48:37 -07003821
Winson Chung87412982013-10-03 18:34:14 -07003822 // Remove the extra empty screen
Adam Cohen689ff162014-05-08 17:27:56 -07003823 mWorkspace.removeExtraEmptyScreen(false, false);
Winson Chung87412982013-10-03 18:34:14 -07003824
Winson Chungb745afb2015-03-02 11:51:23 -08003825 if (addedApps != null && mAppsView != null) {
3826 mAppsView.addApps(addedApps);
Winson Chungc58497e2013-09-03 17:48:37 -07003827 }
Winson Chungd64d1762013-08-20 14:37:16 -07003828 }
3829
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003830 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003831 * Bind the items start-end from the list.
3832 *
3833 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003834 */
Winson Chung64359a52013-07-08 17:17:08 -07003835 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end,
3836 final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07003837 Runnable r = new Runnable() {
3838 public void run() {
3839 bindItems(shortcuts, start, end, forceAnimateIcons);
3840 }
3841 };
3842 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003843 return;
3844 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003845
Winson Chungf0c6ae02012-03-21 16:10:31 -07003846 // Get the list of added shortcuts and intersect them with the set of shortcuts here
Winson Chung64359a52013-07-08 17:17:08 -07003847 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
3848 final Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chung997a9232013-07-24 15:33:46 -07003849 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07003850 Workspace workspace = mWorkspace;
Winson Chung997a9232013-07-24 15:33:46 -07003851 long newShortcutsScreenId = -1;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003852 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003853 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003854
3855 // Short circuit if we are loading dock items for a configuration which has no dock
3856 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3857 mHotseat == null) {
3858 continue;
3859 }
3860
Sunny Goyal639e9062015-08-19 19:17:06 -07003861 final View view;
Joe Onorato9c1289c2009-08-17 11:03:03 -04003862 switch (item.itemType) {
3863 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3864 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07003865 ShortcutInfo info = (ShortcutInfo) item;
Sunny Goyal639e9062015-08-19 19:17:06 -07003866 view = createShortcut(info);
Adam Cohendcd297f2013-06-18 13:13:40 -07003867
Winson Chung64359a52013-07-08 17:17:08 -07003868 /*
3869 * TODO: FIX collision case
3870 */
Winson Chungce376632013-07-11 16:12:41 -07003871 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
3872 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
3873 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07003874 View v = cl.getChildAt(item.cellX, item.cellY);
3875 Object tag = v.getTag();
3876 String desc = "Collision while binding workspace item: " + item
3877 + ". Collides with " + tag;
3878 if (LauncherAppState.isDogfoodBuild()) {
3879 throw (new RuntimeException(desc));
3880 } else {
3881 Log.d(TAG, desc);
3882 }
Winson Chungce376632013-07-11 16:12:41 -07003883 }
Winson Chung64359a52013-07-08 17:17:08 -07003884 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003885 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003886 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Sunny Goyal639e9062015-08-19 19:17:06 -07003887 view = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003888 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003889 (FolderInfo) item, mIconCache);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003890 break;
Winson Chungc763c4e2013-07-19 13:49:06 -07003891 default:
3892 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04003893 }
Sunny Goyal639e9062015-08-19 19:17:06 -07003894
3895 workspace.addInScreenFromBind(view, item.container, item.screenId, item.cellX,
3896 item.cellY, 1, 1);
3897 if (animateIcons) {
3898 // Animate all the applications up now
3899 view.setAlpha(0f);
3900 view.setScaleX(0f);
3901 view.setScaleY(0f);
3902 bounceAnims.add(createNewAppBounceAnimation(view, i));
3903 newShortcutsScreenId = item.screenId;
3904 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003905 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003906
Winson Chung997a9232013-07-24 15:33:46 -07003907 if (animateIcons) {
3908 // Animate to the correct page
3909 if (newShortcutsScreenId > -1) {
3910 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Winson Chung94d67682013-09-25 16:29:40 -07003911 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId);
Winson Chungb2323832013-10-03 15:22:09 -07003912 final Runnable startBounceAnimRunnable = new Runnable() {
3913 public void run() {
3914 anim.playTogether(bounceAnims);
3915 anim.start();
3916 }
3917 };
Winson Chung997a9232013-07-24 15:33:46 -07003918 if (newShortcutsScreenId != currentScreenId) {
Winson Chung94d67682013-09-25 16:29:40 -07003919 // We post the animation slightly delayed to prevent slowdowns
3920 // when we are loading right after we return to launcher.
3921 mWorkspace.postDelayed(new Runnable() {
3922 public void run() {
Ian Parkinson94449152014-01-21 13:09:59 +00003923 if (mWorkspace != null) {
3924 mWorkspace.snapToPage(newScreenIndex);
3925 mWorkspace.postDelayed(startBounceAnimRunnable,
3926 NEW_APPS_ANIMATION_DELAY);
3927 }
Winson Chung94d67682013-09-25 16:29:40 -07003928 }
3929 }, NEW_APPS_PAGE_MOVE_DELAY);
Winson Chungb2323832013-10-03 15:22:09 -07003930 } else {
3931 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07003932 }
3933 }
Winson Chung64359a52013-07-08 17:17:08 -07003934 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003935 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003936 }
3937
Joe Onorato9c1289c2009-08-17 11:03:03 -04003938 /**
3939 * Implementation of the method from LauncherModel.Callbacks.
3940 */
Sunny Goyale2df0622015-04-24 11:27:00 -07003941 public void bindFolders(final LongArrayMap<FolderInfo> folders) {
Winson Chungd64d1762013-08-20 14:37:16 -07003942 Runnable r = new Runnable() {
3943 public void run() {
3944 bindFolders(folders);
3945 }
3946 };
3947 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003948 return;
3949 }
Sunny Goyale2df0622015-04-24 11:27:00 -07003950 sFolders = folders.clone();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003951 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003952
3953 /**
3954 * Add the views for a widget to the workspace.
3955 *
3956 * Implementation of the method from LauncherModel.Callbacks.
3957 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07003958 public void bindAppWidget(final LauncherAppWidgetInfo item) {
Winson Chungd64d1762013-08-20 14:37:16 -07003959 Runnable r = new Runnable() {
3960 public void run() {
3961 bindAppWidget(item);
3962 }
3963 };
3964 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003965 return;
3966 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003967
Daniel Sandler843e8602010-06-07 14:59:01 -04003968 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
3969 if (DEBUG_WIDGETS) {
3970 Log.d(TAG, "bindAppWidget: " + item);
3971 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003972 final Workspace workspace = mWorkspace;
3973
Adam Cohen59400422014-03-05 18:07:04 -08003974 LauncherAppWidgetProviderInfo appWidgetInfo =
Robin Lee26ace122015-03-16 19:41:43 +00003975 LauncherModel.getProviderInfo(this, item.providerName, item.user);
Adam Cohen59400422014-03-05 18:07:04 -08003976
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003977 if (!mIsSafeModeEnabled
3978 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY) == 0)
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003979 && (item.restoreStatus != LauncherAppWidgetInfo.RESTORE_COMPLETED)) {
3980
Sunny Goyalff572272014-07-23 13:58:07 -07003981 if (appWidgetInfo == null) {
3982 if (DEBUG_WIDGETS) {
3983 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3984 + " belongs to component " + item.providerName
3985 + ", as the povider is null");
3986 }
3987 LauncherModel.deleteItemFromDatabase(this, item);
3988 return;
3989 }
Sunny Goyalff572272014-07-23 13:58:07 -07003990
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003991 // If we do not have a valid id, try to bind an id.
3992 if ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_ID_NOT_VALID) != 0) {
3993 // Note: This assumes that the id remap broadcast is received before this step.
3994 // If that is not the case, the id remap will be ignored and user may see the
3995 // click to setup view.
3996 PendingAddWidgetInfo pendingInfo = new PendingAddWidgetInfo(this, appWidgetInfo, null);
3997 pendingInfo.spanX = item.spanX;
3998 pendingInfo.spanY = item.spanY;
3999 pendingInfo.minSpanX = item.minSpanX;
4000 pendingInfo.minSpanY = item.minSpanY;
4001 Bundle options = null;
4002 WidgetHostViewLoader.getDefaultOptionsForWidget(this, pendingInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07004003
Sunny Goyal84b4adc2015-08-12 15:12:16 -07004004 int newWidgetId = mAppWidgetHost.allocateAppWidgetId();
4005 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
4006 newWidgetId, appWidgetInfo, options);
4007
4008 // TODO consider showing a permission dialog when the widget is clicked.
4009 if (!success) {
4010 mAppWidgetHost.deleteAppWidgetId(newWidgetId);
4011 if (DEBUG_WIDGETS) {
4012 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
4013 + " belongs to component " + item.providerName
4014 + ", as the launcher is unable to bing a new widget id");
4015 }
4016 LauncherModel.deleteItemFromDatabase(this, item);
4017 return;
Sunny Goyalff572272014-07-23 13:58:07 -07004018 }
Sunny Goyal84b4adc2015-08-12 15:12:16 -07004019
4020 item.appWidgetId = newWidgetId;
4021
4022 // If the widget has a configure activity, it is still needs to set it up, otherwise
4023 // the widget is ready to go.
4024 item.restoreStatus = (appWidgetInfo.configure == null)
4025 ? LauncherAppWidgetInfo.RESTORE_COMPLETED
4026 : LauncherAppWidgetInfo.FLAG_UI_NOT_READY;
4027
4028 LauncherModel.updateItemInDatabase(this, item);
4029 } else if (((item.restoreStatus & LauncherAppWidgetInfo.FLAG_UI_NOT_READY) != 0)
4030 && (appWidgetInfo.configure == null)) {
4031 // If the ID is already valid, verify if we need to configure or not.
4032 item.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
4033 LauncherModel.updateItemInDatabase(this, item);
Sunny Goyalff572272014-07-23 13:58:07 -07004034 }
Sunny Goyalff572272014-07-23 13:58:07 -07004035 }
4036
Sunny Goyal9b4b0812014-10-08 10:47:28 -07004037 if (!mIsSafeModeEnabled && item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
Sunny Goyal651077b2014-06-30 14:15:31 -07004038 final int appWidgetId = item.appWidgetId;
Sunny Goyal651077b2014-06-30 14:15:31 -07004039 if (DEBUG_WIDGETS) {
Adam Cohen59400422014-03-05 18:07:04 -08004040 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component "
4041 + appWidgetInfo.provider);
Sunny Goyal651077b2014-06-30 14:15:31 -07004042 }
Daniel Sandler843e8602010-06-07 14:59:01 -04004043
Sunny Goyal651077b2014-06-30 14:15:31 -07004044 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
Sunny Goyal233ee962015-08-03 13:05:01 -07004045 item.minSpanX = appWidgetInfo.minSpanX;
4046 item.minSpanY = appWidgetInfo.minSpanY;
Sunny Goyal651077b2014-06-30 14:15:31 -07004047 } else {
4048 appWidgetInfo = null;
Sunny Goyal9b4b0812014-10-08 10:47:28 -07004049 PendingAppWidgetHostView view = new PendingAppWidgetHostView(this, item,
4050 mIsSafeModeEnabled);
Sunny Goyal0fc1be12014-08-11 17:05:23 -07004051 view.updateIcon(mIconCache);
4052 item.hostView = view;
Sunny Goyal651077b2014-06-30 14:15:31 -07004053 item.hostView.updateAppWidget(null);
Sunny Goyalff572272014-07-23 13:58:07 -07004054 item.hostView.setOnClickListener(this);
Sunny Goyal651077b2014-06-30 14:15:31 -07004055 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004056
Joe Onorato9c1289c2009-08-17 11:03:03 -04004057 item.hostView.setTag(item);
Winson Chung211bac32012-05-15 13:43:57 -07004058 item.onBindAppWidget(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04004059
Adam Cohendcd297f2013-06-18 13:13:40 -07004060 workspace.addInScreen(item.hostView, item.container, item.screenId, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04004061 item.cellY, item.spanX, item.spanY, false);
Adam Cohen59400422014-03-05 18:07:04 -08004062 if (!item.isCustomWidget()) {
4063 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
4064 }
Adam Cohended9f8d2010-11-03 13:25:16 -07004065
Joe Onorato9c1289c2009-08-17 11:03:03 -04004066 workspace.requestLayout();
4067
Daniel Sandler843e8602010-06-07 14:59:01 -04004068 if (DEBUG_WIDGETS) {
4069 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
4070 + (SystemClock.uptimeMillis()-start) + "ms");
4071 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004072 }
4073
Sunny Goyalff572272014-07-23 13:58:07 -07004074 /**
4075 * Restores a pending widget.
4076 *
4077 * @param appWidgetId The app widget id
4078 * @param cellInfo The position on screen where to create the widget.
4079 */
4080 private void completeRestoreAppWidget(final int appWidgetId) {
4081 LauncherAppWidgetHostView view = mWorkspace.getWidgetForAppWidgetId(appWidgetId);
4082 if ((view == null) || !(view instanceof PendingAppWidgetHostView)) {
4083 Log.e(TAG, "Widget update called, when the widget no longer exists.");
4084 return;
4085 }
4086
Sunny Goyal0fc1be12014-08-11 17:05:23 -07004087 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) view.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07004088 info.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
4089
4090 mWorkspace.reinflateWidgetsIfNecessary();
4091 LauncherModel.updateItemInDatabase(this, info);
4092 }
4093
Adam Cohen1462de32012-07-24 22:34:36 -07004094 public void onPageBoundSynchronously(int page) {
4095 mSynchronouslyBoundPages.add(page);
4096 }
4097
Joe Onorato9c1289c2009-08-17 11:03:03 -04004098 /**
4099 * Callback saying that there aren't any more items to bind.
4100 *
4101 * Implementation of the method from LauncherModel.Callbacks.
4102 */
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004103 public void finishBindingItems() {
Winson Chungd64d1762013-08-20 14:37:16 -07004104 Runnable r = new Runnable() {
4105 public void run() {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004106 finishBindingItems();
Winson Chungd64d1762013-08-20 14:37:16 -07004107 }
4108 };
4109 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004110 return;
4111 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004112 if (mSavedState != null) {
4113 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07004114 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004115 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004116 mSavedState = null;
4117 }
4118
Adam Cohen1462de32012-07-24 22:34:36 -07004119 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004120
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004121 setWorkspaceLoading(false);
Adam Cohen3ed316a2014-07-23 18:21:20 -07004122 sendLoadingCompleteBroadcastIfNecessary();
Adam Cohendb364c32014-05-20 14:23:40 -07004123
4124 // If we received the result of any pending adds while the loader was running (e.g. the
4125 // widget configuration forced an orientation change), process them now.
4126 if (sPendingAddItem != null) {
4127 final long screenId = completeAdd(sPendingAddItem);
4128
4129 // TODO: this moves the user to the page where the pending item was added. Ideally,
4130 // the screen would be guaranteed to exist after bind, and the page would be set through
4131 // the workspace restore process.
4132 mWorkspace.post(new Runnable() {
4133 @Override
4134 public void run() {
4135 mWorkspace.snapToScreenId(screenId);
4136 }
4137 });
4138 sPendingAddItem = null;
4139 }
4140
Sunny Goyal756adbc2015-04-16 15:20:51 -07004141 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
Adam Cohen9211d422014-10-07 18:14:53 -07004142
4143 if (mLauncherCallbacks != null) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004144 mLauncherCallbacks.finishBindingItems(false);
Adam Cohen9211d422014-10-07 18:14:53 -07004145 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004146 }
4147
Adam Cohen3ed316a2014-07-23 18:21:20 -07004148 private void sendLoadingCompleteBroadcastIfNecessary() {
4149 if (!mSharedPrefs.getBoolean(FIRST_LOAD_COMPLETE, false)) {
4150 String permission =
4151 getResources().getString(R.string.receive_first_load_broadcast_permission);
4152 Intent intent = new Intent(ACTION_FIRST_LOAD_COMPLETE);
4153 sendBroadcast(intent, permission);
4154 SharedPreferences.Editor editor = mSharedPrefs.edit();
4155 editor.putBoolean(FIRST_LOAD_COMPLETE, true);
4156 editor.apply();
4157 }
4158 }
4159
Winson Chunga0b7e862013-09-05 16:03:15 -07004160 public boolean isAllAppsButtonRank(int rank) {
4161 if (mHotseat != null) {
4162 return mHotseat.isAllAppsButtonRank(rank);
4163 }
4164 return false;
4165 }
4166
Winson Chunga2413752012-04-03 14:22:34 -07004167 private boolean canRunNewAppsAnimation() {
4168 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
Sunny Goyal639e9062015-08-19 19:17:06 -07004169 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000)
4170 && (mClings == null || !mClings.isVisible());
Winson Chunga2413752012-04-03 14:22:34 -07004171 }
4172
Winson Chungc9168342013-06-26 14:54:55 -07004173 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
4174 ValueAnimator bounceAnim = LauncherAnimUtils.ofPropertyValuesHolder(v,
4175 PropertyValuesHolder.ofFloat("alpha", 1f),
4176 PropertyValuesHolder.ofFloat("scaleX", 1f),
4177 PropertyValuesHolder.ofFloat("scaleY", 1f));
4178 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
4179 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
Sunny Goyal5a1f53b2015-05-27 10:24:24 -07004180 bounceAnim.setInterpolator(new OvershootInterpolator(BOUNCE_ANIMATION_TENSION));
Winson Chungc9168342013-06-26 14:54:55 -07004181 return bounceAnim;
4182 }
4183
Adam Cohen27772732013-11-11 14:00:56 +00004184 public boolean useVerticalBarLayout() {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07004185 return mDeviceProfile.isVerticalBarLayout();
Adam Cohen27772732013-11-11 14:00:56 +00004186 }
4187
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004188 protected Rect getSearchBarBounds() {
Sunny Goyalc6205602015-05-21 20:46:33 -07004189 return mDeviceProfile.getSearchBarBounds(Utilities.isRtl(getResources()));
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004190 }
4191
Winson Chung88fa7412015-08-03 14:25:28 -07004192 public void bindSearchProviderChanged() {
Sunny Goyal594d76d2014-11-06 10:12:54 -08004193 if (mSearchDropTargetBar == null) {
4194 return;
Winson Chungadf0c182012-08-23 14:59:07 -07004195 }
Sunny Goyal594d76d2014-11-06 10:12:54 -08004196 if (mQsb != null) {
4197 mSearchDropTargetBar.removeView(mQsb);
4198 mQsb = null;
4199 }
Adam Cohenb0df1b02015-03-18 22:21:40 -07004200 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004201 }
4202
Amith Yamasani6d7fe502010-11-16 09:05:07 -08004203 /**
Winson Chungbb785c62015-05-05 10:05:08 -07004204 * A runnable that we can dequeue and re-enqueue when all applications are bound (to prevent
4205 * multiple calls to bind the same list.)
4206 */
4207 @Thunk ArrayList<AppInfo> mTmpAppsList;
4208 private Runnable mBindAllApplicationsRunnable = new Runnable() {
4209 public void run() {
4210 bindAllApplications(mTmpAppsList);
4211 mTmpAppsList = null;
4212 }
4213 };
4214
4215 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004216 * Add the icons for all apps.
4217 *
4218 * Implementation of the method from LauncherModel.Callbacks.
4219 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004220 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Winson Chungbb785c62015-05-05 10:05:08 -07004221 if (waitUntilResume(mBindAllApplicationsRunnable, true)) {
4222 mTmpAppsList = apps;
4223 return;
4224 }
4225
Winson Chungb745afb2015-03-02 11:51:23 -08004226 if (mAppsView != null) {
4227 mAppsView.setApps(apps);
4228 }
Adam Cohen9211d422014-10-07 18:14:53 -07004229 if (mLauncherCallbacks != null) {
4230 mLauncherCallbacks.bindAllApplications(apps);
4231 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004232 }
4233
4234 /**
4235 * A package was updated.
4236 *
4237 * Implementation of the method from LauncherModel.Callbacks.
4238 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004239 public void bindAppsUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004240 Runnable r = new Runnable() {
4241 public void run() {
4242 bindAppsUpdated(apps);
4243 }
4244 };
4245 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004246 return;
4247 }
4248
Winson Chungb745afb2015-03-02 11:51:23 -08004249 if (mAppsView != null) {
4250 mAppsView.updateApps(apps);
Winson Chungc58497e2013-09-03 17:48:37 -07004251 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004252 }
4253
Sunny Goyal4390ace2014-10-13 11:33:11 -07004254 @Override
4255 public void bindWidgetsRestored(final ArrayList<LauncherAppWidgetInfo> widgets) {
4256 Runnable r = new Runnable() {
4257 public void run() {
4258 bindWidgetsRestored(widgets);
4259 }
4260 };
4261 if (waitUntilResume(r)) {
4262 return;
4263 }
4264 mWorkspace.widgetsRestored(widgets);
4265 }
4266
Joe Onorato9c1289c2009-08-17 11:03:03 -04004267 /**
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004268 * Some shortcuts were updated in the background.
4269 *
4270 * Implementation of the method from LauncherModel.Callbacks.
4271 */
Sunny Goyal4390ace2014-10-13 11:33:11 -07004272 @Override
4273 public void bindShortcutsChanged(final ArrayList<ShortcutInfo> updated,
4274 final ArrayList<ShortcutInfo> removed, final UserHandleCompat user) {
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004275 Runnable r = new Runnable() {
4276 public void run() {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004277 bindShortcutsChanged(updated, removed, user);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004278 }
4279 };
4280 if (waitUntilResume(r)) {
4281 return;
4282 }
4283
Sunny Goyal4390ace2014-10-13 11:33:11 -07004284 if (!updated.isEmpty()) {
4285 mWorkspace.updateShortcuts(updated);
4286 }
4287
4288 if (!removed.isEmpty()) {
4289 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4290 for (ShortcutInfo si : removed) {
4291 removedComponents.add(si.getTargetComponent());
4292 }
4293 mWorkspace.removeItemsByComponentName(removedComponents, user);
4294 // Notify the drag controller
4295 mDragController.onAppsRemoved(new ArrayList<String>(), removedComponents);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004296 }
4297 }
4298
4299 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004300 * Update the state of a package, typically related to install state.
4301 *
4302 * Implementation of the method from LauncherModel.Callbacks.
4303 */
Sunny Goyale755d462014-07-22 13:48:29 -07004304 @Override
Sunny Goyal756adbc2015-04-16 15:20:51 -07004305 public void bindRestoreItemsChange(final HashSet<ItemInfo> updates) {
4306 Runnable r = new Runnable() {
4307 public void run() {
4308 bindRestoreItemsChange(updates);
4309 }
4310 };
4311 if (waitUntilResume(r)) {
4312 return;
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004313 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004314
Sunny Goyal756adbc2015-04-16 15:20:51 -07004315 mWorkspace.updateRestoreItems(updates);
Sunny Goyala22666f2014-09-18 13:25:15 -07004316 }
4317
4318 /**
Winson Chung83892cc2013-05-01 16:53:33 -07004319 * A package was uninstalled. We take both the super set of packageNames
4320 * in addition to specific applications to remove, the reason being that
4321 * this can be called when a package is updated as well. In that scenario,
4322 * we only remove specific components from the workspace, where as
4323 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004324 *
Sunny Goyal1a745e82014-10-02 15:58:31 -07004325 * @param reason if non-zero, the icons are not permanently removed, rather marked as disabled.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004326 * Implementation of the method from LauncherModel.Callbacks.
4327 */
Sunny Goyal1a745e82014-10-02 15:58:31 -07004328 @Override
Winson Chung83892cc2013-05-01 16:53:33 -07004329 public void bindComponentsRemoved(final ArrayList<String> packageNames,
Sunny Goyal1a745e82014-10-02 15:58:31 -07004330 final ArrayList<AppInfo> appInfos, final UserHandleCompat user, final int reason) {
Winson Chungd64d1762013-08-20 14:37:16 -07004331 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004332 public void run() {
Sunny Goyal1a745e82014-10-02 15:58:31 -07004333 bindComponentsRemoved(packageNames, appInfos, user, reason);
Winson Chung83892cc2013-05-01 16:53:33 -07004334 }
Winson Chungd64d1762013-08-20 14:37:16 -07004335 };
4336 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07004337 return;
4338 }
4339
Sunny Goyal1a745e82014-10-02 15:58:31 -07004340 if (reason == 0) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004341 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4342 for (AppInfo info : appInfos) {
4343 removedComponents.add(info.componentName);
4344 }
Sunny Goyal1a745e82014-10-02 15:58:31 -07004345 if (!packageNames.isEmpty()) {
4346 mWorkspace.removeItemsByPackageName(packageNames, user);
4347 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004348 if (!removedComponents.isEmpty()) {
4349 mWorkspace.removeItemsByComponentName(removedComponents, user);
Sunny Goyal1a745e82014-10-02 15:58:31 -07004350 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004351 // Notify the drag controller
4352 mDragController.onAppsRemoved(packageNames, removedComponents);
4353
Sunny Goyal1a745e82014-10-02 15:58:31 -07004354 } else {
4355 mWorkspace.disableShortcutsByPackageName(packageNames, user, reason);
Joe Onorato36115782010-06-17 13:28:48 -04004356 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07004357
Winson Chungdf95eb12013-10-16 14:57:07 -07004358 // Update AllApps
Winson Chungb745afb2015-03-02 11:51:23 -08004359 if (mAppsView != null) {
4360 mAppsView.removeApps(appInfos);
Winson Chungc58497e2013-09-03 17:48:37 -07004361 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004362 }
Joe Onoratobe386092009-11-17 17:32:16 -08004363
Michael Jurkac402cd92013-05-20 15:49:32 +02004364 private Runnable mBindPackagesUpdatedRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004365 public void run() {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004366 bindAllPackages(mWidgetsModel);
Winson Chung83892cc2013-05-01 16:53:33 -07004367 }
Michael Jurkac402cd92013-05-20 15:49:32 +02004368 };
Hyunyoung Song3f471442015-04-08 19:01:34 -07004369
Hyunyoung Song8821ca92015-05-04 16:28:20 -07004370 @Override
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004371 public void bindAllPackages(final WidgetsModel model) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004372 if (waitUntilResume(mBindPackagesUpdatedRunnable, true)) {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004373 mWidgetsModel = model;
Winson Chung83892cc2013-05-01 16:53:33 -07004374 return;
4375 }
4376
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004377 if (mWidgetsView != null && model != null) {
4378 mWidgetsView.addWidgets(model);
4379 mWidgetsModel = null;
Winson Chung785d2eb2011-04-14 16:08:02 -07004380 }
Winson Chung80baf5a2010-08-09 16:03:15 -07004381 }
4382
Winson Chung400438b2011-01-16 17:53:48 -08004383 private int mapConfigurationOriActivityInfoOri(int configOri) {
4384 final Display d = getWindowManager().getDefaultDisplay();
4385 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
4386 switch (d.getRotation()) {
4387 case Surface.ROTATION_0:
4388 case Surface.ROTATION_180:
4389 // We are currently in the same basic orientation as the natural orientation
4390 naturalOri = configOri;
4391 break;
4392 case Surface.ROTATION_90:
4393 case Surface.ROTATION_270:
4394 // We are currently in the other basic orientation to the natural orientation
4395 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
4396 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
4397 break;
4398 }
4399
4400 int[] oriMap = {
4401 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
4402 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
4403 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
4404 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
4405 };
4406 // Since the map starts at portrait, we need to offset if this device's natural orientation
4407 // is landscape.
4408 int indexOffset = 0;
4409 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
4410 indexOffset = 1;
4411 }
4412 return oriMap[(d.getRotation() + indexOffset) % 4];
4413 }
Adam Cohen446e9402011-09-15 18:21:21 -07004414
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004415 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR2)
Winson Chung4b919f82012-05-01 10:44:08 -07004416 public void lockScreenOrientation() {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004417 if (mRotationEnabled) {
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004418 if (Utilities.ATLEAST_JB_MR2) {
4419 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LOCKED);
4420 } else {
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004421 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
4422 .getConfiguration().orientation));
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004423 }
Winson Chung4b919f82012-05-01 10:44:08 -07004424 }
4425 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004426
Winson Chung4b919f82012-05-01 10:44:08 -07004427 public void unlockScreenOrientation(boolean immediate) {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004428 if (mRotationEnabled) {
Winson Chung4b919f82012-05-01 10:44:08 -07004429 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07004430 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07004431 } else {
4432 mHandler.postDelayed(new Runnable() {
4433 public void run() {
4434 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4435 }
4436 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07004437 }
Winson Chung4b919f82012-05-01 10:44:08 -07004438 }
Winson Chung400438b2011-01-16 17:53:48 -08004439 }
4440
Winson Chunge43a1e72014-01-15 10:33:02 -08004441 protected boolean isLauncherPreinstalled() {
Adam Cohen9211d422014-10-07 18:14:53 -07004442 if (mLauncherCallbacks != null) {
4443 return mLauncherCallbacks.isLauncherPreinstalled();
4444 }
Winson Chunge43a1e72014-01-15 10:33:02 -08004445 PackageManager pm = getPackageManager();
4446 try {
4447 ApplicationInfo ai = pm.getApplicationInfo(getComponentName().getPackageName(), 0);
4448 if ((ai.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
4449 return true;
4450 } else {
4451 return false;
4452 }
4453 } catch (NameNotFoundException e) {
4454 e.printStackTrace();
4455 return false;
4456 }
4457 }
4458
Adam Cohenea90f832014-05-21 15:03:34 -07004459 /**
4460 * This method indicates whether or not we should suggest default wallpaper dimensions
4461 * when our wallpaper cropper was not yet used to set a wallpaper.
4462 */
4463 protected boolean overrideWallpaperDimensions() {
Adam Cohen9211d422014-10-07 18:14:53 -07004464 if (mLauncherCallbacks != null) {
4465 return mLauncherCallbacks.overrideWallpaperDimensions();
4466 }
Adam Cohenea90f832014-05-21 15:03:34 -07004467 return true;
4468 }
4469
Adam Cohen432609a2014-03-13 17:03:22 -07004470 /**
4471 * To be overridden by subclasses to indicate that there is an activity to launch
4472 * before showing the standard launcher experience.
4473 */
4474 protected boolean hasFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004475 if (mLauncherCallbacks != null) {
4476 return mLauncherCallbacks.hasFirstRunActivity();
4477 }
Adam Cohen432609a2014-03-13 17:03:22 -07004478 return false;
4479 }
4480
4481 /**
4482 * To be overridden by subclasses to launch any first run activity
4483 */
4484 protected Intent getFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004485 if (mLauncherCallbacks != null) {
4486 return mLauncherCallbacks.getFirstRunActivity();
4487 }
Adam Cohen432609a2014-03-13 17:03:22 -07004488 return null;
4489 }
4490
Winson Chunga6945242014-01-08 14:04:34 -08004491 private boolean shouldRunFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004492 return !ActivityManager.isRunningInTestHarness() &&
4493 !mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
Winson Chunga6945242014-01-08 14:04:34 -08004494 }
4495
Adam Cohen4a9423d2014-03-28 14:22:31 -07004496 protected boolean hasRunFirstRunActivity() {
4497 return mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
4498 }
4499
Adam Cohen432609a2014-03-13 17:03:22 -07004500 public boolean showFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004501 if (shouldRunFirstRunActivity() &&
4502 hasFirstRunActivity()) {
Winson Chunga6945242014-01-08 14:04:34 -08004503 Intent firstRunIntent = getFirstRunActivity();
4504 if (firstRunIntent != null) {
4505 startActivity(firstRunIntent);
4506 markFirstRunActivityShown();
Adam Cohen432609a2014-03-13 17:03:22 -07004507 return true;
Winson Chunga6945242014-01-08 14:04:34 -08004508 }
4509 }
Adam Cohen432609a2014-03-13 17:03:22 -07004510 return false;
Winson Chunga6945242014-01-08 14:04:34 -08004511 }
4512
4513 private void markFirstRunActivityShown() {
4514 SharedPreferences.Editor editor = mSharedPrefs.edit();
4515 editor.putBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, true);
4516 editor.apply();
4517 }
4518
Adam Cohen432609a2014-03-13 17:03:22 -07004519 /**
4520 * To be overridden by subclasses to indicate that there is an in-activity full-screen intro
4521 * screen that must be displayed and dismissed.
4522 */
4523 protected boolean hasDismissableIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004524 if (mLauncherCallbacks != null) {
4525 return mLauncherCallbacks.hasDismissableIntroScreen();
4526 }
Adam Cohen432609a2014-03-13 17:03:22 -07004527 return false;
4528 }
4529
4530 /**
4531 * Full screen intro screen to be shown and dismissed before the launcher can be used.
4532 */
4533 protected View getIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004534 if (mLauncherCallbacks != null) {
4535 return mLauncherCallbacks.getIntroScreen();
4536 }
Adam Cohen432609a2014-03-13 17:03:22 -07004537 return null;
4538 }
4539
4540 /**
4541 * To be overriden by subclasses to indicate whether the in-activity intro screen has been
4542 * dismissed. This method is ignored if #hasDismissableIntroScreen returns false.
4543 */
4544 private boolean shouldShowIntroScreen() {
4545 return hasDismissableIntroScreen() &&
4546 !mSharedPrefs.getBoolean(INTRO_SCREEN_DISMISSED, false);
4547 }
4548
4549 protected void showIntroScreen() {
4550 View introScreen = getIntroScreen();
4551 changeWallpaperVisiblity(false);
4552 if (introScreen != null) {
4553 mDragLayer.showOverlayView(introScreen);
4554 }
Adam Cohenc3e12c72014-10-31 16:15:36 -07004555 if (mLauncherOverlayContainer != null) {
4556 mLauncherOverlayContainer.setVisibility(View.INVISIBLE);
4557 }
Adam Cohen432609a2014-03-13 17:03:22 -07004558 }
4559
4560 public void dismissIntroScreen() {
4561 markIntroScreenDismissed();
4562 if (showFirstRunActivity()) {
4563 // We delay hiding the intro view until the first run activity is showing. This
4564 // avoids a blip.
4565 mWorkspace.postDelayed(new Runnable() {
4566 @Override
4567 public void run() {
4568 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004569 if (mLauncherOverlayContainer != null) {
4570 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4571 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004572 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004573 }
4574 }, ACTIVITY_START_DELAY);
4575 } else {
4576 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004577 if (mLauncherOverlayContainer != null) {
4578 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4579 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004580 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004581 }
4582 changeWallpaperVisiblity(true);
4583 }
4584
4585 private void markIntroScreenDismissed() {
4586 SharedPreferences.Editor editor = mSharedPrefs.edit();
4587 editor.putBoolean(INTRO_SCREEN_DISMISSED, true);
4588 editor.apply();
4589 }
4590
Adam Cohen091440a2015-03-18 14:16:05 -07004591 @Thunk void showFirstRunClings() {
Sunny Goyal88d60f12014-09-08 03:47:29 -07004592 // The two first run cling paths are mutually exclusive, if the launcher is preinstalled
4593 // on the device, then we always show the first run cling experience (or if there is no
4594 // launcher2). Otherwise, we prompt the user upon started for migration
4595 LauncherClings launcherClings = new LauncherClings(this);
4596 if (launcherClings.shouldShowFirstRunOrMigrationClings()) {
Sunny Goyal639e9062015-08-19 19:17:06 -07004597 mClings = launcherClings;
Sunny Goyal88d60f12014-09-08 03:47:29 -07004598 if (mModel.canMigrateFromOldLauncherDb(this)) {
4599 launcherClings.showMigrationCling();
4600 } else {
Sunny Goyalaf0628f2014-09-19 10:14:48 -07004601 launcherClings.showLongPressCling(true);
Sunny Goyal88d60f12014-09-08 03:47:29 -07004602 }
4603 }
4604 }
4605
Winson Chunga6945242014-01-08 14:04:34 -08004606 void showWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004607 if (mWorkspace != null) mWorkspace.setAlpha(1f);
4608 if (mHotseat != null) mHotseat.setAlpha(1f);
4609 if (mPageIndicators != null) mPageIndicators.setAlpha(1f);
Winson Chung006ee262015-08-03 14:40:11 -07004610 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4611 SearchDropTargetBar.State.SEARCH_BAR, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004612 }
4613
4614 void hideWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004615 if (mWorkspace != null) mWorkspace.setAlpha(0f);
4616 if (mHotseat != null) mHotseat.setAlpha(0f);
4617 if (mPageIndicators != null) mPageIndicators.setAlpha(0f);
Winson Chung006ee262015-08-03 14:40:11 -07004618 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4619 SearchDropTargetBar.State.INVISIBLE, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004620 }
4621
Winson Chung5ffd51d2015-06-25 11:36:50 -07004622 // TODO: These method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004623 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Mathew Inwood72fbec12013-11-19 15:45:07 +00004624 public ItemInfo createAppDragInfo(Intent appLaunchIntent) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004625 // Called from search suggestion
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004626 UserHandleCompat user = null;
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004627 if (Utilities.ATLEAST_LOLLIPOP) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004628 UserHandle userHandle = appLaunchIntent.getParcelableExtra(Intent.EXTRA_USER);
4629 if (userHandle != null) {
4630 user = UserHandleCompat.fromUser(userHandle);
4631 }
4632 }
4633 return createAppDragInfo(appLaunchIntent, user);
Winson Chung5ffd51d2015-06-25 11:36:50 -07004634 }
4635
4636 // TODO: This method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004637 public ItemInfo createAppDragInfo(Intent intent, UserHandleCompat user) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004638 if (user == null) {
4639 user = UserHandleCompat.myUserHandle();
4640 }
4641
4642 // Called from search suggestion, add the profile extra to the intent to ensure that we
4643 // can launch it correctly
Kenny Guyed131872014-04-30 03:02:21 +01004644 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004645 LauncherActivityInfoCompat activityInfo = launcherApps.resolveActivity(intent, user);
Kenny Guyed131872014-04-30 03:02:21 +01004646 if (activityInfo == null) {
Mathew Inwood72fbec12013-11-19 15:45:07 +00004647 return null;
4648 }
Winson Chung5ffd51d2015-06-25 11:36:50 -07004649 return new AppInfo(this, activityInfo, user, mIconCache);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004650 }
4651
Winson Chung5ffd51d2015-06-25 11:36:50 -07004652 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004653 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4654 Bitmap icon) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004655 return new ShortcutInfo(shortcutIntent, caption, caption, icon,
Kenny Guyed131872014-04-30 03:02:21 +01004656 UserHandleCompat.myUserHandle());
4657 }
4658
Winson Chung5ffd51d2015-06-25 11:36:50 -07004659 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004660 public void startDrag(View dragView, ItemInfo dragInfo, DragSource source) {
4661 dragView.setTag(dragInfo);
Winson Chungbabb53e2014-04-14 17:12:49 -07004662 mWorkspace.onExternalDragStartedWithItem(dragView);
4663 mWorkspace.beginExternalDragShared(dragView, source);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004664 }
4665
Winson Chung5ffd51d2015-06-25 11:36:50 -07004666 protected void moveWorkspaceToDefaultScreen() {
4667 mWorkspace.moveToDefaultScreen(false);
4668 }
4669
Anjali Koppalf5d29132014-02-28 13:33:27 -08004670 @Override
4671 public void onPageSwitch(View newPage, int newPageIndex) {
Adam Cohen9211d422014-10-07 18:14:53 -07004672 if (mLauncherCallbacks != null) {
4673 mLauncherCallbacks.onPageSwitch(newPage, newPageIndex);
4674 }
Anjali Koppalf5d29132014-02-28 13:33:27 -08004675 }
4676
Winson Chung80baf5a2010-08-09 16:03:15 -07004677 /**
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004678 * Returns a FastBitmapDrawable with the icon, accurately sized.
4679 */
4680 public FastBitmapDrawable createIconDrawable(Bitmap icon) {
4681 FastBitmapDrawable d = new FastBitmapDrawable(icon);
4682 d.setFilterBitmap(true);
4683 resizeIconDrawable(d);
4684 return d;
4685 }
4686
4687 /**
4688 * Resizes an icon drawable to the correct icon size.
4689 */
Winson5fbe0742015-09-30 15:33:00 -07004690 public Drawable resizeIconDrawable(Drawable icon) {
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004691 icon.setBounds(0, 0, mDeviceProfile.iconSizePx, mDeviceProfile.iconSizePx);
Winson5fbe0742015-09-30 15:33:00 -07004692 return icon;
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004693 }
4694
4695 /**
Joe Onoratobe386092009-11-17 17:32:16 -08004696 * Prints out out state for debugging.
4697 */
4698 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04004699 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08004700 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08004701 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
4702 Log.d(TAG, "mRestoring=" + mRestoring);
4703 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
4704 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004705 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08004706 mModel.dumpState();
Hyunyoung Song3f471442015-04-08 19:01:34 -07004707 // TODO(hyunyoungs): add mWidgetsView.dumpState(); or mWidgetsModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07004708
Daniel Sandler325dc232013-06-05 22:57:57 -04004709 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08004710 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004711
4712 @Override
4713 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
4714 super.dump(prefix, fd, writer, args);
Adam Cohen4caf2982013-08-20 18:54:31 -07004715 synchronized (sDumpLogs) {
4716 writer.println(" ");
4717 writer.println("Debug logs: ");
4718 for (int i = 0; i < sDumpLogs.size(); i++) {
4719 writer.println(" " + sDumpLogs.get(i));
4720 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004721 }
Adam Cohen9211d422014-10-07 18:14:53 -07004722 if (mLauncherCallbacks != null) {
4723 mLauncherCallbacks.dump(prefix, fd, writer, args);
4724 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004725 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004726
4727 public static void dumpDebugLogsToConsole() {
Winson Chungede41292013-09-19 16:27:36 -07004728 if (DEBUG_DUMP_LOG) {
4729 synchronized (sDumpLogs) {
4730 Log.d(TAG, "");
4731 Log.d(TAG, "*********************");
4732 Log.d(TAG, "Launcher debug logs: ");
4733 for (int i = 0; i < sDumpLogs.size(); i++) {
4734 Log.d(TAG, " " + sDumpLogs.get(i));
4735 }
4736 Log.d(TAG, "*********************");
4737 Log.d(TAG, "");
Adam Cohen4caf2982013-08-20 18:54:31 -07004738 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004739 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004740 }
4741
4742 public static void addDumpLog(String tag, String log, boolean debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004743 addDumpLog(tag, log, null, debugLog);
4744 }
4745
4746 public static void addDumpLog(String tag, String log, Exception e, boolean debugLog) {
Adam Cohen4caf2982013-08-20 18:54:31 -07004747 if (debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004748 if (e != null) {
4749 Log.d(tag, log, e);
4750 } else {
4751 Log.d(tag, log);
4752 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004753 }
Winson Chungede41292013-09-19 16:27:36 -07004754 if (DEBUG_DUMP_LOG) {
4755 sDateStamp.setTime(System.currentTimeMillis());
4756 synchronized (sDumpLogs) {
Dan Sandler295ae182013-12-10 16:05:47 -05004757 sDumpLogs.add(sDateFormat.format(sDateStamp) + ": " + tag + ", " + log
4758 + (e == null ? "" : (", Exception: " + e)));
Adam Cohen4caf2982013-08-20 18:54:31 -07004759 }
Winson Chungede41292013-09-19 16:27:36 -07004760 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004761 }
4762
Adam Cohen59400422014-03-05 18:07:04 -08004763 public static CustomAppWidget getCustomAppWidget(String name) {
4764 return sCustomAppWidgets.get(name);
4765 }
4766
4767 public static HashMap<String, CustomAppWidget> getCustomAppWidgets() {
4768 return sCustomAppWidgets;
4769 }
4770
Winson Chungede41292013-09-19 16:27:36 -07004771 public void dumpLogsToLocalData() {
4772 if (DEBUG_DUMP_LOG) {
Michael Jurka43467462013-11-14 12:03:58 +01004773 new AsyncTask<Void, Void, Void>() {
4774 public Void doInBackground(Void ... args) {
Winson Chungede41292013-09-19 16:27:36 -07004775 boolean success = false;
4776 sDateStamp.setTime(sRunStart);
4777 String FILENAME = sDateStamp.getMonth() + "-"
4778 + sDateStamp.getDay() + "_"
4779 + sDateStamp.getHours() + "-"
4780 + sDateStamp.getMinutes() + "_"
4781 + sDateStamp.getSeconds() + ".txt";
4782
4783 FileOutputStream fos = null;
4784 File outFile = null;
4785 try {
4786 outFile = new File(getFilesDir(), FILENAME);
4787 outFile.createNewFile();
4788 fos = new FileOutputStream(outFile);
4789 } catch (Exception e) {
4790 e.printStackTrace();
4791 }
4792 if (fos != null) {
4793 PrintWriter writer = new PrintWriter(fos);
4794
4795 writer.println(" ");
4796 writer.println("Debug logs: ");
4797 synchronized (sDumpLogs) {
4798 for (int i = 0; i < sDumpLogs.size(); i++) {
4799 writer.println(" " + sDumpLogs.get(i));
4800 }
4801 }
4802 writer.close();
4803 }
4804 try {
4805 if (fos != null) {
4806 fos.close();
4807 success = true;
4808 }
4809 } catch (IOException e) {
4810 e.printStackTrace();
4811 }
Michael Jurka43467462013-11-14 12:03:58 +01004812 return null;
Winson Chungede41292013-09-19 16:27:36 -07004813 }
Sunny Goyal8ac727b2015-09-23 15:38:09 -07004814 }.executeOnExecutor(Utilities.THREAD_POOL_EXECUTOR);
Adam Cohen4caf2982013-08-20 18:54:31 -07004815 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004816 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004817}
Michael Jurka2763be32011-02-24 11:19:57 -08004818
Dan Sandlerd5024042014-01-09 15:01:33 -05004819interface DebugIntents {
4820 static final String DELETE_DATABASE = "com.android.launcher3.action.DELETE_DATABASE";
4821 static final String MIGRATE_DATABASE = "com.android.launcher3.action.MIGRATE_DATABASE";
Adam Cohen8b5b05b2014-01-10 21:42:39 +00004822}