blob: e97f0172fa95ef0dc6b91208e90e66078ea16f00 [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 Cohenc76e1dd2013-11-14 11:09:14 +0000126import java.util.concurrent.atomic.AtomicInteger;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700127
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800128/**
129 * Default launcher application.
130 */
Bjorn Bringertc459e522013-06-07 19:36:01 +0100131public class Launcher extends Activity
Michael Jurka0e260592010-06-30 17:07:39 -0700132 implements View.OnClickListener, OnLongClickListener, LauncherModel.Callbacks,
Winson Chung006ee262015-08-03 14:40:11 -0700133 View.OnTouchListener, PageSwitchListener, LauncherProviderChangeListener {
Hyunyoung Song4e8fb912015-04-11 15:44:32 -0700134 static final String TAG = "Launcher";
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700135 static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800136
Daniel Sandlerf061f822013-06-27 13:59:36 -0400137 static final boolean PROFILE_STARTUP = false;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700138 static final boolean DEBUG_WIDGETS = true;
Winson Chunga2413752012-04-03 14:22:34 -0700139 static final boolean DEBUG_STRICT_MODE = false;
Daniel Sandlerf061f822013-06-27 13:59:36 -0400140 static final boolean DEBUG_RESUME_TIME = false;
Winson Chungede41292013-09-19 16:27:36 -0700141 static final boolean DEBUG_DUMP_LOG = false;
Romain Guy6fefcf12009-06-11 13:07:43 -0700142
Dan Sandlerd5024042014-01-09 15:01:33 -0500143 static final boolean ENABLE_DEBUG_INTENTS = false; // allow DebugIntents to run
144
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800145 private static final int REQUEST_CREATE_SHORTCUT = 1;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700146 private static final int REQUEST_CREATE_APPWIDGET = 5;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700147 private static final int REQUEST_PICK_APPWIDGET = 9;
Mike Clerona0618e42009-10-22 13:55:21 -0700148 private static final int REQUEST_PICK_WALLPAPER = 10;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800149
Michael Jurka8b805b12012-04-18 14:23:14 -0700150 private static final int REQUEST_BIND_APPWIDGET = 11;
Sunny Goyalff572272014-07-23 13:58:07 -0700151 private static final int REQUEST_RECONFIGURE_APPWIDGET = 12;
Michael Jurka8b805b12012-04-18 14:23:14 -0700152
Sunny Goyal4a6c6f32015-05-19 12:36:46 -0700153 private static final int WORKSPACE_BACKGROUND_GRADIENT = 0;
154 private static final int WORKSPACE_BACKGROUND_TRANSPARENT = 1;
155 private static final int WORKSPACE_BACKGROUND_BLACK = 2;
156
Sunny Goyal5a1f53b2015-05-27 10:24:24 -0700157 private static final float BOUNCE_ANIMATION_TENSION = 1.3f;
158
Mathew Inwood876a8462013-06-14 14:12:41 +0100159 /**
160 * IntentStarter uses request codes starting with this. This must be greater than all activity
161 * request codes used internally.
162 */
163 protected static final int REQUEST_LAST = 100;
164
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800165 static final int SCREEN_COUNT = 5;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800166
Michael Jurka0a457bf2012-11-19 14:05:05 -0800167 // To turn on these properties, type
168 // adb shell setprop log.tag.PROPERTY_NAME [VERBOSE | SUPPRESS]
Michael Jurka0a457bf2012-11-19 14:05:05 -0800169 static final String DUMP_STATE_PROPERTY = "launcher_dump_state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800170
Winson Chung2672ff92012-05-04 16:22:30 -0700171 // The Intent extra that defines whether to ignore the launch animation
172 static final String INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION =
Daniel Sandler325dc232013-06-05 22:57:57 -0400173 "com.android.launcher3.intent.extra.shortcut.INGORE_LAUNCH_ANIMATION";
Winson Chung2672ff92012-05-04 16:22:30 -0700174
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800175 // Type: int
176 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
Michael Jurka883f55b2010-10-21 15:47:14 -0700177 // Type: int
178 private static final String RUNTIME_STATE = "launcher.state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800179 // Type: int
Winson Chung3d503fb2011-07-13 17:25:49 -0700180 private static final String RUNTIME_STATE_PENDING_ADD_CONTAINER = "launcher.add_container";
181 // Type: int
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800182 private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
183 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700184 private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cell_x";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800185 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700186 private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cell_y";
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700187 // Type: int
188 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_X = "launcher.add_span_x";
189 // Type: int
190 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_Y = "launcher.add_span_y";
191 // Type: parcelable
192 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_INFO = "launcher.add_widget_info";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000193 // Type: parcelable
Adam Cohen4637b5a2013-11-04 18:21:24 -0800194 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_ID = "launcher.add_widget_id";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000195 // Type: int[]
196 private static final String RUNTIME_STATE_VIEW_IDS = "launcher.view_ids";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800197
Adam Cohen432609a2014-03-13 17:03:22 -0700198 static final String INTRO_SCREEN_DISMISSED = "launcher.intro_screen_dismissed";
Adam Cohenb54a5982014-01-08 15:21:04 -0800199 static final String FIRST_RUN_ACTIVITY_DISPLAYED = "launcher.first_run_activity_displayed";
200
Adam Cohen3ed316a2014-07-23 18:21:20 -0700201 static final String FIRST_LOAD_COMPLETE = "launcher.first_load_complete";
202 static final String ACTION_FIRST_LOAD_COMPLETE =
203 "com.android.launcher3.action.FIRST_LOAD_COMPLETE";
204
Adam Cohen39a06042013-07-19 14:30:12 -0700205 public static final String SHOW_WEIGHT_WATCHER = "debug.show_mem";
Daniel Sandler6053b8002013-08-15 15:44:26 -0700206 public static final boolean SHOW_WEIGHT_WATCHER_DEFAULT = false;
Adam Cohen39a06042013-07-19 14:30:12 -0700207
Sunny Goyal594d76d2014-11-06 10:12:54 -0800208 private static final String QSB_WIDGET_ID = "qsb_widget_id";
209 private static final String QSB_WIDGET_PROVIDER = "qsb_widget_provider";
210
Winson Chunga6945242014-01-08 14:04:34 -0800211 public static final String USER_HAS_MIGRATED = "launcher.user_migrated_from_old_data";
212
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700213 /** The different states that Launcher can be in. */
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700214 enum State { NONE, WORKSPACE, APPS, APPS_SPRING_LOADED, WIDGETS, WIDGETS_SPRING_LOADED }
215
Adam Cohen091440a2015-03-18 14:16:05 -0700216 @Thunk State mState = State.WORKSPACE;
Adam Cohen091440a2015-03-18 14:16:05 -0700217 @Thunk LauncherStateTransitionAnimation mStateTransitionAnimation;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700218
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700219 private boolean mIsSafeModeEnabled;
220
Adam Cohenc2d6e892014-10-16 09:49:24 -0700221 LauncherOverlayCallbacks mLauncherOverlayCallbacks = new LauncherOverlayCallbacksImpl();
222 LauncherOverlay mLauncherOverlay;
Adam Cohena6d04922014-10-23 17:28:30 -0700223 InsettableFrameLayout mLauncherOverlayContainer;
Adam Cohenc2d6e892014-10-16 09:49:24 -0700224
Joe Onorato9c1289c2009-08-17 11:03:03 -0400225 static final int APPWIDGET_HOST_ID = 1024;
Adam Cohenad4e15c2013-10-17 16:21:35 -0700226 public static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
227 private static final int ON_ACTIVITY_RESULT_ANIMATION_DELAY = 500;
Adam Cohen646fdf72014-04-08 16:59:36 -0700228 private static final int ACTIVITY_START_DELAY = 1000;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800229
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000230 private HashMap<Integer, Integer> mItemIdToViewId = new HashMap<Integer, Integer>();
231 private static final AtomicInteger sNextGeneratedId = new AtomicInteger(1);
232
Winson Chunga2413752012-04-03 14:22:34 -0700233 // How long to wait before the new-shortcut animation automatically pans the workspace
Winson Chung94d67682013-09-25 16:29:40 -0700234 private static int NEW_APPS_PAGE_MOVE_DELAY = 500;
235 private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 5;
Adam Cohen091440a2015-03-18 14:16:05 -0700236 @Thunk static int NEW_APPS_ANIMATION_DELAY = 500;
Winson Chunga2413752012-04-03 14:22:34 -0700237
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800238 private final BroadcastReceiver mCloseSystemDialogsReceiver
239 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800240
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800241 private LayoutInflater mInflater;
242
Adam Cohen091440a2015-03-18 14:16:05 -0700243 @Thunk Workspace mWorkspace;
Craig Mautner360310b2012-10-26 15:13:08 -0700244 private View mLauncherView;
Winson Chunga6945242014-01-08 14:04:34 -0800245 private View mPageIndicators;
Adam Cohen091440a2015-03-18 14:16:05 -0700246 @Thunk DragLayer mDragLayer;
Michael Jurkab737ee62011-11-15 15:57:22 -0800247 private DragController mDragController;
Adam Cohen39a06042013-07-19 14:30:12 -0700248 private View mWeightWatcher;
Romain Guycbb89e42009-06-08 15:52:54 -0700249
Sunny Goyalffe83f12014-08-14 17:39:34 -0700250 private AppWidgetManagerCompat mAppWidgetManager;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700251 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700252
Adam Cohen091440a2015-03-18 14:16:05 -0700253 @Thunk ItemInfo mPendingAddInfo = new ItemInfo();
Adam Cohen59400422014-03-05 18:07:04 -0800254 private LauncherAppWidgetProviderInfo mPendingAddWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800255 private int mPendingAddWidgetId = -1;
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700256
Michael Jurka0280c3b2010-09-17 15:00:07 -0700257 private int[] mTmpAddItemCellCoordinates = new int[2];
258
Sunny Goyal316490e2015-06-02 09:38:28 -0700259 @Thunk Hotseat mHotseat;
Jorim Jaggid017f882014-01-14 17:08:48 -0800260 private ViewGroup mOverviewPanel;
Adam Cohenf358a4b2013-07-23 16:47:31 -0700261
Michael Jurka838a4ca2011-02-07 13:33:06 -0800262 private View mAllAppsButton;
Hyunyoung Song98ff38a2015-07-10 17:50:13 -0700263 private View mWidgetsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700264
Winson Chungc51db6a2011-10-05 11:44:49 -0700265 private SearchDropTargetBar mSearchDropTargetBar;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700266
267 // Main container view for the all apps screen.
Winson Chung5f4e0fd2015-05-22 11:12:27 -0700268 @Thunk AllAppsContainerView mAppsView;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700269
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700270 // Main container view and the model for the widget tray screen.
271 @Thunk WidgetsContainerView mWidgetsView;
272 @Thunk WidgetsModel mWidgetsModel;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700273
Winson Chungf0ea4d32011-06-06 14:27:16 -0700274 private boolean mAutoAdvanceRunning = false;
Sunny Goyal594d76d2014-11-06 10:12:54 -0800275 private AppWidgetHostView mQsb;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800276
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800277 private Bundle mSavedState;
Winson Chung4a2afa32012-07-19 14:53:05 -0700278 // We set the state in both onCreate and then onNewIntent in some cases, which causes both
279 // scroll issues (because the workspace may not have been measured yet) and extra work.
280 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
281 private State mOnResumeState = State.NONE;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800282
283 private SpannableStringBuilder mDefaultKeySsb = null;
284
Adam Cohen091440a2015-03-18 14:16:05 -0700285 @Thunk boolean mWorkspaceLoading = true;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400286
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800287 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800288 private boolean mRestoring;
289 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700290 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800291
Michael Jurka1e2f4652013-07-08 18:03:46 -0700292 private ArrayList<Runnable> mBindOnResumeCallbacks = new ArrayList<Runnable>();
Michael Jurka7607c2f2013-04-03 14:33:19 -0700293 private ArrayList<Runnable> mOnResumeCallbacks = new ArrayList<Runnable>();
294
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800295 private Bundle mSavedInstanceState;
296
Joe Onorato9c1289c2009-08-17 11:03:03 -0400297 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800298 private IconCache mIconCache;
Adam Cohen091440a2015-03-18 14:16:05 -0700299 @Thunk boolean mUserPresent = true;
Adam Cohend113e0c2010-11-11 10:48:05 -0800300 private boolean mVisible = false;
Adam Cohened307df2013-10-02 09:37:31 -0700301 private boolean mHasFocus = false;
Adam Cohend113e0c2010-11-11 10:48:05 -0800302 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400303
Sunny Goyal639e9062015-08-19 19:17:06 -0700304 private LauncherClings mClings;
305
Sunny Goyale2df0622015-04-24 11:27:00 -0700306 private static LongArrayMap<FolderInfo> sFolders = new LongArrayMap<>();
Romain Guycbb89e42009-06-08 15:52:54 -0700307
Adam Cohen61f560d2013-09-30 15:58:20 -0700308 private View.OnTouchListener mHapticFeedbackTouchListener;
309
Adam Cohended9f8d2010-11-03 13:25:16 -0700310 // Related to the auto-advancing of widgets
311 private final int ADVANCE_MSG = 1;
312 private final int mAdvanceInterval = 20000;
313 private final int mAdvanceStagger = 250;
314 private long mAutoAdvanceSentTime;
315 private long mAutoAdvanceTimeLeft = -1;
Adam Cohen091440a2015-03-18 14:16:05 -0700316 @Thunk HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
Adam Cohended9f8d2010-11-03 13:25:16 -0700317 new HashMap<View, AppWidgetProviderInfo>();
318
Winson Chung400438b2011-01-16 17:53:48 -0800319 // Determines how long to wait after a rotation before restoring the screen orientation to
320 // match the sensor state.
321 private final int mRestoreScreenOrientationDelay = 500;
322
Adam Cohen091440a2015-03-18 14:16:05 -0700323 @Thunk Drawable mWorkspaceBackgroundDrawable;
Craig Mautner360310b2012-10-26 15:13:08 -0700324
Adam Cohen1462de32012-07-24 22:34:36 -0700325 private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700326 private static final boolean DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE = false;
Adam Cohen1462de32012-07-24 22:34:36 -0700327
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700328 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
Adam Cohen4caf2982013-08-20 18:54:31 -0700329 static Date sDateStamp = new Date();
330 static DateFormat sDateFormat =
331 DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
332 static long sRunStart = System.currentTimeMillis();
333 static final String CORRUPTION_EMAIL_SENT_KEY = "corruptionEmailSent";
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700334
Winson Chung46353de2012-02-16 14:05:10 -0800335 // We only want to get the SharedPreferences once since it does an FS stat each time we get
336 // it from the context.
337 private SharedPreferences mSharedPrefs;
338
Winson Chungf0c6ae02012-03-21 16:10:31 -0700339 // Holds the page that we need to animate to, and the icon views that we need to animate up
340 // when we scroll to that page on resume.
Adam Cohen091440a2015-03-18 14:16:05 -0700341 @Thunk ImageView mFolderIconImageView;
Adam Cohen268c4752012-06-06 17:47:33 -0700342 private Bitmap mFolderIconBitmap;
343 private Canvas mFolderIconCanvas;
344 private Rect mRectForFolderAnimation = new Rect();
Adam Cohen2801caf2011-05-13 20:57:39 -0700345
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700346 private DeviceProfile mDeviceProfile;
347
Adam Cohen4b66bf32015-09-18 12:15:19 -0700348 private boolean mMoveToDefaultScreenFromNewIntent;
349
Winson Chung13eb5272015-05-11 16:30:13 -0700350 // This is set to the view that launched the activity that navigated the user away from
351 // launcher. Since there is no callback for when the activity has finished launching, enable
352 // the press state and keep this reference to reset the press state when we return to launcher.
Michael Jurkaddd62e92011-02-16 17:49:14 -0800353 private BubbleTextView mWaitingForResume;
354
Adam Cohen59400422014-03-05 18:07:04 -0800355 protected static HashMap<String, CustomAppWidget> sCustomAppWidgets =
356 new HashMap<String, CustomAppWidget>();
357
358 private static final boolean ENABLE_CUSTOM_WIDGET_TEST = false;
359 static {
360 if (ENABLE_CUSTOM_WIDGET_TEST) {
361 sCustomAppWidgets.put(DummyWidget.class.getName(), new DummyWidget());
362 }
363 }
364
Adam Cohen091440a2015-03-18 14:16:05 -0700365 @Thunk Runnable mBuildLayersRunnable = new Runnable() {
Michael Jurkac1f5d262011-09-30 19:32:27 -0700366 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700367 if (mWorkspace != null) {
368 mWorkspace.buildPageHardwareLayers();
369 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700370 }
371 };
372
Adam Cohendb364c32014-05-20 14:23:40 -0700373 private static PendingAddArguments sPendingAddItem;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800374
Adam Cohen091440a2015-03-18 14:16:05 -0700375 @Thunk static class PendingAddArguments {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800376 int requestCode;
377 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700378 long container;
Adam Cohendcd297f2013-06-18 13:13:40 -0700379 long screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800380 int cellX;
381 int cellY;
Adam Cohendb364c32014-05-20 14:23:40 -0700382 int appWidgetId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800383 }
384
Daniel Sandlerff02d492013-08-05 02:12:05 -0400385 private Stats mStats;
Sunny Goyaldcbcc862014-08-12 15:58:36 -0700386 FocusIndicatorView mFocusHandler;
Sunny Goyal7779d622015-06-11 16:18:39 -0700387 private boolean mRotationEnabled = false;
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400388
389 @Thunk void setOrientation() {
390 if (mRotationEnabled) {
391 unlockScreenOrientation(true);
392 } else {
393 setRequestedOrientation(
394 ActivityInfo.SCREEN_ORIENTATION_NOSENSOR);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700395 }
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400396 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700397
Sunny Goyal7779d622015-06-11 16:18:39 -0700398 private Runnable mUpdateOrientationRunnable = new Runnable() {
399 public void run() {
400 setOrientation();
401 }
402 };
403
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800404 @Override
405 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700406 if (DEBUG_STRICT_MODE) {
407 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
408 .detectDiskReads()
409 .detectDiskWrites()
410 .detectNetwork() // or .detectAll() for all detectable problems
411 .penaltyLog()
412 .build());
413 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
414 .detectLeakedSqlLiteObjects()
415 .detectLeakedClosableObjects()
416 .penaltyLog()
417 .penaltyDeath()
418 .build());
419 }
420
Adam Cohen9211d422014-10-07 18:14:53 -0700421 if (mLauncherCallbacks != null) {
422 mLauncherCallbacks.preOnCreate();
423 }
424
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800425 super.onCreate(savedInstanceState);
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400426
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400427 LauncherAppState.setApplicationContext(getApplicationContext());
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400428 LauncherAppState app = LauncherAppState.getInstance();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700429
Adam Cohen2e6da152015-05-06 11:42:25 -0700430 // Load configuration-specific DeviceProfile
Sunny Goyalc6205602015-05-21 20:46:33 -0700431 mDeviceProfile = getResources().getConfiguration().orientation
432 == Configuration.ORIENTATION_LANDSCAPE ?
433 app.getInvariantDeviceProfile().landscapeProfile
434 : app.getInvariantDeviceProfile().portraitProfile;
435
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400436 mSharedPrefs = getSharedPreferences(LauncherAppState.getSharedPreferencesKey(),
Winson Chungf0c6ae02012-03-21 16:10:31 -0700437 Context.MODE_PRIVATE);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700438 mIsSafeModeEnabled = getPackageManager().isSafeMode();
Joe Onorato0589f0f2010-02-08 13:44:00 -0800439 mModel = app.setLauncher(this);
440 mIconCache = app.getIconCache();
Adam Cohen2e6da152015-05-06 11:42:25 -0700441
Joe Onorato41a12d22009-10-31 18:30:00 -0400442 mDragController = new DragController(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800443 mInflater = getLayoutInflater();
Winson Chung006ee262015-08-03 14:40:11 -0700444 mStateTransitionAnimation = new LauncherStateTransitionAnimation(this);
Romain Guycbb89e42009-06-08 15:52:54 -0700445
Daniel Sandlerff02d492013-08-05 02:12:05 -0400446 mStats = new Stats(this);
447
Sunny Goyalffe83f12014-08-14 17:39:34 -0700448 mAppWidgetManager = AppWidgetManagerCompat.getInstance(this);
Adam Cohen53805212013-10-01 10:39:23 -0700449
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700450 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
451 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700452
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700453 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
454 // this also ensures that any synchronous binding below doesn't re-trigger another
455 // LauncherModel load.
456 mPaused = false;
457
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800458 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200459 android.os.Debug.startMethodTracing(
460 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800461 }
462
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800463 setContentView(R.layout.launcher);
Michael Jurka7267fa52013-09-26 15:29:57 -0700464
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800465 setupViews();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700466 mDeviceProfile.layout(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800467
Joe Onorato7c312c12009-08-13 21:36:53 -0700468 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700469
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800470 mSavedState = savedInstanceState;
471 restoreState(mSavedState);
472
473 if (PROFILE_STARTUP) {
474 android.os.Debug.stopMethodTracing();
475 }
476
477 if (!mRestoring) {
Adam Cohendb78dc82014-06-19 14:50:51 -0700478 if (DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700479 // If the user leaves launcher, then we should just load items asynchronously when
480 // they return.
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700481 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Winson Chung4a2afa32012-07-19 14:53:05 -0700482 } else {
483 // We only load the page synchronously if the user rotates (or triggers a
484 // configuration change) while launcher is in the foreground
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700485 mModel.startLoader(mWorkspace.getRestorePage());
Winson Chung4a2afa32012-07-19 14:53:05 -0700486 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800487 }
488
489 // For handling default keys
490 mDefaultKeySsb = new SpannableStringBuilder();
491 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800492
493 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
494 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800495
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700496 mRotationEnabled = Utilities.isRotationAllowedForDevice(getApplicationContext());
497 // In case we are on a device with locked rotation, we should look at preferences to check
498 // if the user has specifically allowed rotation.
499 if (!mRotationEnabled) {
Rahul Chaturvedie863fed2015-06-15 14:09:42 -0400500 mRotationEnabled = Utilities.isAllowRotationPrefEnabled(getApplicationContext(), false);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700501 }
502
503 // On large interfaces, or on devices that a user has specifically enabled screen rotation,
504 // we want the screen to auto-rotate based on the current orientation
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400505 setOrientation();
Winson Chungaf40f202013-09-18 18:26:31 -0700506
Adam Cohen9211d422014-10-07 18:14:53 -0700507 if (mLauncherCallbacks != null) {
508 mLauncherCallbacks.onCreate(savedInstanceState);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700509 if (mLauncherCallbacks.hasLauncherOverlay()) {
510 ViewStub stub = (ViewStub) findViewById(R.id.launcher_overlay_stub);
Adam Cohena6d04922014-10-23 17:28:30 -0700511 mLauncherOverlayContainer = (InsettableFrameLayout) stub.inflate();
512 mLauncherOverlay = mLauncherCallbacks.setLauncherOverlayView(
513 mLauncherOverlayContainer, mLauncherOverlayCallbacks);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700514 mWorkspace.setLauncherOverlay(mLauncherOverlay);
515 }
Adam Cohen9211d422014-10-07 18:14:53 -0700516 }
Adam Cohenc3e12c72014-10-31 16:15:36 -0700517
518 if (shouldShowIntroScreen()) {
519 showIntroScreen();
520 } else {
521 showFirstRunActivity();
522 showFirstRunClings();
523 }
Adam Cohen9211d422014-10-07 18:14:53 -0700524 }
525
Sunny Goyal7779d622015-06-11 16:18:39 -0700526 @Override
527 public void onSettingsChanged(String settings, boolean value) {
528 if (Utilities.ALLOW_ROTATION_PREFERENCE_KEY.equals(settings)) {
529 mRotationEnabled = value;
530 if (!waitUntilResume(mUpdateOrientationRunnable, true)) {
531 mUpdateOrientationRunnable.run();
532 }
533 }
534 }
535
Adam Cohen9211d422014-10-07 18:14:53 -0700536 private LauncherCallbacks mLauncherCallbacks;
537
538 public void onPostCreate(Bundle savedInstanceState) {
539 super.onPostCreate(savedInstanceState);
540 if (mLauncherCallbacks != null) {
541 mLauncherCallbacks.onPostCreate(savedInstanceState);
542 }
543 }
544
545 public boolean setLauncherCallbacks(LauncherCallbacks callbacks) {
546 mLauncherCallbacks = callbacks;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700547 mLauncherCallbacks.setLauncherSearchCallback(new Launcher.LauncherSearchCallbacks() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700548 private boolean mWorkspaceImportanceStored = false;
549 private boolean mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700550 private int mWorkspaceImportanceForAccessibility =
551 View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
552 private int mHotseatImportanceForAccessibility = View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
553
554 @Override
555 public void onSearchOverlayOpened() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700556 if (mWorkspaceImportanceStored || mHotseatImportanceStored) {
Jun Mukai8af0cd82015-05-12 12:32:12 -0700557 return;
558 }
559 // The underlying workspace and hotseat are temporarily suppressed by the search
560 // overlay. So they sholudn't be accessible.
Jun Mukaie9819e62015-06-17 10:58:59 -0700561 if (mWorkspace != null) {
562 mWorkspaceImportanceForAccessibility =
563 mWorkspace.getImportantForAccessibility();
564 mWorkspace.setImportantForAccessibility(
565 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
566 mWorkspaceImportanceStored = true;
567 }
568 if (mHotseat != null) {
569 mHotseatImportanceForAccessibility = mHotseat.getImportantForAccessibility();
570 mHotseat.setImportantForAccessibility(
571 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
572 mHotseatImportanceStored = true;
573 }
Jun Mukai8af0cd82015-05-12 12:32:12 -0700574 }
575
576 @Override
577 public void onSearchOverlayClosed() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700578 if (mWorkspaceImportanceStored && mWorkspace != null) {
579 mWorkspace.setImportantForAccessibility(mWorkspaceImportanceForAccessibility);
580 }
581 if (mHotseatImportanceStored && mHotseat != null) {
582 mHotseat.setImportantForAccessibility(mHotseatImportanceForAccessibility);
583 }
584 mWorkspaceImportanceStored = false;
585 mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700586 }
587 });
Adam Cohen9211d422014-10-07 18:14:53 -0700588 return true;
Adam Cohenf9426d52012-06-04 17:26:21 -0700589 }
590
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700591 @Override
Adam Cohen9211d422014-10-07 18:14:53 -0700592 public void onLauncherProviderChange() {
593 if (mLauncherCallbacks != null) {
594 mLauncherCallbacks.onLauncherProviderChange();
595 }
596 }
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700597
Winson Chungef7f8742015-06-04 17:18:17 -0700598 /**
599 * Updates the bounds of all the overlays to match the new fixed bounds.
600 */
601 public void updateOverlayBounds(Rect newBounds) {
602 mAppsView.setSearchBarBounds(newBounds);
603 mWidgetsView.setSearchBarBounds(newBounds);
604 }
605
Adam Cohen9211d422014-10-07 18:14:53 -0700606 /** To be overridden by subclasses to hint to Launcher that we have custom content */
Winson Chung98ca0f72013-07-29 12:58:51 -0700607 protected boolean hasCustomContentToLeft() {
Adam Cohen9211d422014-10-07 18:14:53 -0700608 if (mLauncherCallbacks != null) {
609 return mLauncherCallbacks.hasCustomContentToLeft();
610 }
Winson Chung98ca0f72013-07-29 12:58:51 -0700611 return false;
612 }
613
Dave Hawkeya8881582013-09-17 15:55:33 -0600614 /**
Derek Prothrodadd9842014-01-17 13:43:50 -0500615 * To be overridden by subclasses to populate the custom content container and call
Dave Hawkeya8881582013-09-17 15:55:33 -0600616 * {@link #addToCustomContentPage}. This will only be invoked if
617 * {@link #hasCustomContentToLeft()} is {@code true}.
618 */
Derek Prothrodadd9842014-01-17 13:43:50 -0500619 protected void populateCustomContentContainer() {
Adam Cohen9211d422014-10-07 18:14:53 -0700620 if (mLauncherCallbacks != null) {
621 mLauncherCallbacks.populateCustomContentContainer();
622 }
Dave Hawkeya8881582013-09-17 15:55:33 -0600623 }
624
625 /**
626 * Invoked by subclasses to signal a change to the {@link #addCustomContentToLeft} value to
627 * ensure the custom content page is added or removed if necessary.
628 */
629 protected void invalidateHasCustomContentToLeft() {
Dave Hawkey3a733a72013-09-30 11:52:21 -0600630 if (mWorkspace == null || mWorkspace.getScreenOrder().isEmpty()) {
Dave Hawkeya8881582013-09-17 15:55:33 -0600631 // Not bound yet, wait for bindScreens to be called.
632 return;
633 }
634
635 if (!mWorkspace.hasCustomContent() && hasCustomContentToLeft()) {
636 // Create the custom content page and call the subclass to populate it.
Derek Prothrodadd9842014-01-17 13:43:50 -0500637 mWorkspace.createCustomContentContainer();
638 populateCustomContentContainer();
Dave Hawkeya8881582013-09-17 15:55:33 -0600639 } else if (mWorkspace.hasCustomContent() && !hasCustomContentToLeft()) {
640 mWorkspace.removeCustomContentPage();
641 }
642 }
643
Anton Hanssona2f665f2013-09-26 12:18:32 +0100644 public Stats getStats() {
645 return mStats;
646 }
647
Bjorn Bringertc459e522013-06-07 19:36:01 +0100648 public LayoutInflater getInflater() {
649 return mInflater;
650 }
651
Hyunyoung Song3f471442015-04-08 19:01:34 -0700652 public boolean isDraggingEnabled() {
Winson Chung36a62fe2012-05-06 18:04:42 -0700653 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
654 // that is subsequently removed from the workspace in startBinding().
Sunny Goyal639e9062015-08-19 19:17:06 -0700655 return !isWorkspaceLoading();
Winson Chung36a62fe2012-05-06 18:04:42 -0700656 }
657
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800658 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000659 public static int generateViewId() {
Sunny Goyal9fc953b2015-08-17 12:24:25 -0700660 if (Utilities.ATLEAST_JB_MR1) {
Ian Parkinson0c2918f2014-10-06 14:24:31 +0100661 return View.generateViewId();
662 } else {
663 // View.generateViewId() is not available. The following fallback logic is a copy
664 // of its implementation.
665 for (;;) {
666 final int result = sNextGeneratedId.get();
667 // aapt-generated IDs have the high byte nonzero; clamp to the range under that.
668 int newValue = result + 1;
669 if (newValue > 0x00FFFFFF) newValue = 1; // Roll over to 1, not 0.
670 if (sNextGeneratedId.compareAndSet(result, newValue)) {
671 return result;
672 }
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000673 }
674 }
675 }
676
677 public int getViewIdForItem(ItemInfo info) {
678 // This cast is safe given the > 2B range for int.
Sunny Goyalebfae6e2015-08-27 15:30:25 -0700679 int itemId = (int) info.id;
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000680 if (mItemIdToViewId.containsKey(itemId)) {
681 return mItemIdToViewId.get(itemId);
682 }
683 int viewId = generateViewId();
684 mItemIdToViewId.put(itemId, viewId);
685 return viewId;
686 }
687
688 /**
Winson Chung557d6ed2011-07-08 15:34:52 -0700689 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
690 * a configuration step, this allows the proper animations to run after other transitions.
691 */
Adam Cohendb364c32014-05-20 14:23:40 -0700692 private long completeAdd(PendingAddArguments args) {
Adam Cohen83079e42014-09-19 17:43:08 -0700693 long screenId = args.screenId;
694 if (args.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
695 // When the screen id represents an actual screen (as opposed to a rank) we make sure
696 // that the drop page actually exists.
697 screenId = ensurePendingDropLayoutExists(args.screenId);
698 }
Adam Cohendb364c32014-05-20 14:23:40 -0700699
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800700 switch (args.requestCode) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800701 case REQUEST_CREATE_SHORTCUT:
Adam Cohendb364c32014-05-20 14:23:40 -0700702 completeAddShortcut(args.intent, args.container, screenId, args.cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -0700703 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700704 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800705 case REQUEST_CREATE_APPWIDGET:
Adam Cohendb364c32014-05-20 14:23:40 -0700706 completeAddAppWidget(args.appWidgetId, args.container, screenId, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700707 break;
Sunny Goyalff572272014-07-23 13:58:07 -0700708 case REQUEST_RECONFIGURE_APPWIDGET:
709 completeRestoreAppWidget(args.appWidgetId);
710 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800711 }
Michael Jurka27614d22012-04-02 06:40:22 -0700712 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
713 // if you turned the screen off and then back while in All Apps, Launcher would not
714 // return to the workspace. Clearing mAddInfo.container here fixes this issue
715 resetAddInfo();
Adam Cohendb364c32014-05-20 14:23:40 -0700716 return screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800717 }
718
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800719 private void handleActivityResult(
Michael Jurka8b805b12012-04-18 14:23:14 -0700720 final int requestCode, final int resultCode, final Intent data) {
Winson Chunge341d302013-08-16 14:31:00 -0700721 // Reset the startActivity waiting flag
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700722 setWaitingForResult(false);
Adam Cohendb364c32014-05-20 14:23:40 -0700723 final int pendingAddWidgetId = mPendingAddWidgetId;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800724 mPendingAddWidgetId = -1;
Winson Chunge341d302013-08-16 14:31:00 -0700725
Adam Cohenad4e15c2013-10-17 16:21:35 -0700726 Runnable exitSpringLoaded = new Runnable() {
727 @Override
728 public void run() {
729 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
730 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
731 }
732 };
733
Michael Jurka8b805b12012-04-18 14:23:14 -0700734 if (requestCode == REQUEST_BIND_APPWIDGET) {
Winsona1f79d32015-08-05 14:00:45 -0700735 // This is called only if the user did not previously have permissions to bind widgets
Adam Cohenad4e15c2013-10-17 16:21:35 -0700736 final int appWidgetId = data != null ?
Michael Jurka8b805b12012-04-18 14:23:14 -0700737 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
738 if (resultCode == RESULT_CANCELED) {
739 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
Adam Cohen689ff162014-05-08 17:27:56 -0700740 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700741 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
Michael Jurka8b805b12012-04-18 14:23:14 -0700742 } else if (resultCode == RESULT_OK) {
Sunny Goyale6b63a32015-01-16 16:14:29 -0800743 addAppWidgetImpl(appWidgetId, mPendingAddInfo, null,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700744 mPendingAddWidgetInfo, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
Winsona1f79d32015-08-05 14:00:45 -0700745
746 // When the user has granted permission to bind widgets, we should check to see if
747 // we can inflate the default search bar widget.
748 getOrCreateQsbBar();
Michael Jurka8b805b12012-04-18 14:23:14 -0700749 }
750 return;
Michael Jurka336fd4f2013-09-12 00:05:02 +0200751 } else if (requestCode == REQUEST_PICK_WALLPAPER) {
752 if (resultCode == RESULT_OK && mWorkspace.isInOverviewMode()) {
Tony Wickham6ed058c2015-09-09 18:21:49 -0700753 // User could have free-scrolled between pages before picking a wallpaper; make sure
754 // we move to the closest one now to avoid visual jump.
755 mWorkspace.setCurrentPage(mWorkspace.getPageNearestToCenterOfScreen());
Winson Chungdc61c4d2015-04-20 18:26:57 -0700756 showWorkspace(false);
Michael Jurka336fd4f2013-09-12 00:05:02 +0200757 }
758 return;
Michael Jurka8b805b12012-04-18 14:23:14 -0700759 }
Michael Jurka336fd4f2013-09-12 00:05:02 +0200760
Adam Cohened66b2b2012-01-23 17:28:51 -0800761 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
Sunny Goyal5c97f512015-05-19 16:03:28 -0700762 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700763
Adam Cohendb364c32014-05-20 14:23:40 -0700764 final boolean workspaceLocked = isWorkspaceLocked();
Adam Cohened66b2b2012-01-23 17:28:51 -0800765 // We have special handling for widgets
766 if (isWidgetDrop) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800767 final int appWidgetId;
768 int widgetId = data != null ? data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1)
769 : -1;
770 if (widgetId < 0) {
771 appWidgetId = pendingAddWidgetId;
772 } else {
773 appWidgetId = widgetId;
774 }
775
Adam Cohenad4e15c2013-10-17 16:21:35 -0700776 final int result;
Adam Cohenf0129b12013-11-04 17:57:36 -0800777 if (appWidgetId < 0 || resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700778 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not " +
779 "returned from the widget configuration activity.");
Adam Cohenad4e15c2013-10-17 16:21:35 -0700780 result = RESULT_CANCELED;
781 completeTwoStageWidgetDrop(result, appWidgetId);
Adam Cohendb364c32014-05-20 14:23:40 -0700782 final Runnable onComplete = new Runnable() {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700783 @Override
784 public void run() {
785 exitSpringLoadedDragModeDelayed(false, 0, null);
786 }
787 };
Adam Cohendb364c32014-05-20 14:23:40 -0700788 if (workspaceLocked) {
789 // No need to remove the empty screen if we're mid-binding, as the
790 // the bind will not add the empty screen.
791 mWorkspace.postDelayed(onComplete, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
792 } else {
793 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
794 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
795 }
Winson Chung5aaab772012-04-27 15:24:02 -0700796 } else {
Adam Cohendb364c32014-05-20 14:23:40 -0700797 if (!workspaceLocked) {
Adam Cohen83079e42014-09-19 17:43:08 -0700798 if (mPendingAddInfo.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
799 // When the screen id represents an actual screen (as opposed to a rank)
800 // we make sure that the drop page actually exists.
801 mPendingAddInfo.screenId =
802 ensurePendingDropLayoutExists(mPendingAddInfo.screenId);
803 }
Adam Cohendb364c32014-05-20 14:23:40 -0700804 final CellLayout dropLayout = mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
805
806 dropLayout.setDropPending(true);
807 final Runnable onComplete = new Runnable() {
808 @Override
809 public void run() {
810 completeTwoStageWidgetDrop(resultCode, appWidgetId);
811 dropLayout.setDropPending(false);
812 }
813 };
814 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
815 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
816 } else {
817 PendingAddArguments args = preparePendingAddArgs(requestCode, data, appWidgetId,
818 mPendingAddInfo);
819 sPendingAddItem = args;
820 }
Winson Chung5aaab772012-04-27 15:24:02 -0700821 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800822 return;
823 }
824
Sunny Goyalff572272014-07-23 13:58:07 -0700825 if (requestCode == REQUEST_RECONFIGURE_APPWIDGET) {
826 if (resultCode == RESULT_OK) {
827 // Update the widget view.
828 PendingAddArguments args = preparePendingAddArgs(requestCode, data,
829 pendingAddWidgetId, mPendingAddInfo);
830 if (workspaceLocked) {
831 sPendingAddItem = args;
832 } else {
833 completeAdd(args);
834 }
835 }
836 // Leave the widget in the pending state if the user canceled the configure.
837 return;
838 }
839
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800840 // The pattern used here is that a user PICKs a specific application,
841 // which, depending on the target, might need to CREATE the actual target.
Romain Guycbb89e42009-06-08 15:52:54 -0700842
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800843 // For example, the user would PICK_SHORTCUT for "Music playlist", and we
844 // launch over to the Music app to actually CREATE_SHORTCUT.
Winson Chungc7da5552011-08-10 15:28:45 -0700845 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
Adam Cohendb364c32014-05-20 14:23:40 -0700846 final PendingAddArguments args = preparePendingAddArgs(requestCode, data, -1,
847 mPendingAddInfo);
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800848 if (isWorkspaceLocked()) {
Adam Cohendb364c32014-05-20 14:23:40 -0700849 sPendingAddItem = args;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800850 } else {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700851 completeAdd(args);
Adam Cohendb364c32014-05-20 14:23:40 -0700852 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
853 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800854 }
Adam Cohen00074722013-10-11 17:46:09 -0700855 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen689ff162014-05-08 17:27:56 -0700856 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700857 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800858 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800859 mDragLayer.clearAnimatedView();
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800860
861 }
862
863 @Override
864 protected void onActivityResult(
865 final int requestCode, final int resultCode, final Intent data) {
866 handleActivityResult(requestCode, resultCode, data);
867 if (mLauncherCallbacks != null) {
868 mLauncherCallbacks.onActivityResult(requestCode, resultCode, data);
869 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800870 }
871
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600872 /** @Override for MNC */
Sunny Goyaldd2e6df2015-07-07 10:57:57 -0700873 public void onRequestPermissionsResult(int requestCode, String[] permissions,
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600874 int[] grantResults) {
875 if (mLauncherCallbacks != null) {
876 mLauncherCallbacks.onRequestPermissionsResult(requestCode, permissions,
877 grantResults);
878 }
879 }
880
Adam Cohendb364c32014-05-20 14:23:40 -0700881 private PendingAddArguments preparePendingAddArgs(int requestCode, Intent data, int
882 appWidgetId, ItemInfo info) {
883 PendingAddArguments args = new PendingAddArguments();
884 args.requestCode = requestCode;
885 args.intent = data;
886 args.container = info.container;
887 args.screenId = info.screenId;
888 args.cellX = info.cellX;
889 args.cellY = info.cellY;
890 args.appWidgetId = appWidgetId;
891 return args;
892 }
893
894 /**
895 * Check to see if a given screen id exists. If not, create it at the end, return the new id.
896 *
897 * @param screenId the screen id to check
898 * @return the new screen, or screenId if it exists
899 */
900 private long ensurePendingDropLayoutExists(long screenId) {
901 CellLayout dropLayout =
902 (CellLayout) mWorkspace.getScreenWithId(screenId);
903 if (dropLayout == null) {
904 // it's possible that the add screen was removed because it was
905 // empty and a re-bind occurred
906 mWorkspace.addExtraEmptyScreen();
907 return mWorkspace.commitExtraEmptyScreen();
908 } else {
909 return screenId;
910 }
911 }
912
Adam Cohen091440a2015-03-18 14:16:05 -0700913 @Thunk void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700914 CellLayout cellLayout =
Adam Cohendcd297f2013-06-18 13:13:40 -0700915 (CellLayout) mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800916 Runnable onCompleteRunnable = null;
917 int animationType = 0;
918
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700919 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800920 if (resultCode == RESULT_OK) {
921 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
922 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700923 mPendingAddWidgetInfo);
924 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800925 onCompleteRunnable = new Runnable() {
926 @Override
927 public void run() {
928 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700929 mPendingAddInfo.screenId, layout, null);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700930 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
931 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
Adam Cohened66b2b2012-01-23 17:28:51 -0800932 }
933 };
934 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800935 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800936 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
Adam Cohened66b2b2012-01-23 17:28:51 -0800937 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700938 if (mDragLayer.getAnimatedView() != null) {
939 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
940 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
941 animationType, boundWidget, true);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700942 } else if (onCompleteRunnable != null) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700943 // The animated view may be null in the case of a rotation during widget configuration
944 onCompleteRunnable.run();
945 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800946 }
947
948 @Override
Michael Jurkacd496d72013-04-11 11:32:45 -0700949 protected void onStop() {
950 super.onStop();
951 FirstFrameAnimatorHelper.setIsVisible(false);
Adam Cohen9211d422014-10-07 18:14:53 -0700952
953 if (mLauncherCallbacks != null) {
954 mLauncherCallbacks.onStop();
955 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700956 }
957
958 @Override
959 protected void onStart() {
960 super.onStart();
961 FirstFrameAnimatorHelper.setIsVisible(true);
Adam Cohen9211d422014-10-07 18:14:53 -0700962
963 if (mLauncherCallbacks != null) {
964 mLauncherCallbacks.onStart();
965 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700966 }
967
968 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800969 protected void onResume() {
Michael Jurka447bf842013-05-15 14:52:15 +0200970 long startTime = 0;
971 if (DEBUG_RESUME_TIME) {
972 startTime = System.currentTimeMillis();
Daniel Sandler924b9932013-06-12 00:38:25 -0400973 Log.v(TAG, "Launcher.onResume()");
Michael Jurka447bf842013-05-15 14:52:15 +0200974 }
Adam Cohen9211d422014-10-07 18:14:53 -0700975
976 if (mLauncherCallbacks != null) {
977 mLauncherCallbacks.preOnResume();
978 }
979
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800980 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700981
Winson Chung4a2afa32012-07-19 14:53:05 -0700982 // Restore the previous launcher state
Winson Chung75cc8252015-04-10 10:19:58 -0700983 if (mOnResumeState == State.WORKSPACE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700984 showWorkspace(false);
Winson Chungb745afb2015-03-02 11:51:23 -0800985 } else if (mOnResumeState == State.APPS) {
Winson Chung13eb5272015-05-11 16:30:13 -0700986 boolean launchedFromApp = (mWaitingForResume != null);
Winson Chung4ac30062015-05-08 17:34:17 -0700987 // Don't update the predicted apps if the user is returning to launcher in the apps
Winson Chung13eb5272015-05-11 16:30:13 -0700988 // view after launching an app, as they may be depending on the UI to be static to
989 // switch to another app, otherwise, if it was
Winson Chung4ac30062015-05-08 17:34:17 -0700990 showAppsView(false /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -0700991 !launchedFromApp /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -0800992 } else if (mOnResumeState == State.WIDGETS) {
993 showWidgetsView(false, false);
Winson Chung4a2afa32012-07-19 14:53:05 -0700994 }
995 mOnResumeState = State.NONE;
996
Sunny Goyal4a6c6f32015-05-19 12:36:46 -0700997 // Background was set to gradient in onPause(), restore to transparent if in all apps.
Sunny Goyald70ad0d2015-05-26 17:20:07 -0700998 setWorkspaceBackground(mState == State.WORKSPACE ? WORKSPACE_BACKGROUND_GRADIENT
999 : WORKSPACE_BACKGROUND_TRANSPARENT);
Craig Mautner360310b2012-10-26 15:13:08 -07001000
Joe Onorato34a0e1b2009-12-14 17:44:51 -08001001 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001002 if (mRestoring || mOnResumeNeedsLoad) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001003 setWorkspaceLoading(true);
Sunny Goyal22aa3812015-08-19 16:24:27 -07001004
1005 // If we're starting binding all over again, clear any bind calls we'd postponed in
1006 // the past (see waitUntilResume) -- we don't need them since we're starting binding
1007 // from scratch again
1008 mBindOnResumeCallbacks.clear();
1009
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001010 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001011 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001012 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001013 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001014 if (mBindOnResumeCallbacks.size() > 0) {
Michael Jurkac402cd92013-05-20 15:49:32 +02001015 // We might have postponed some bind calls until onResume (see waitUntilResume) --
1016 // execute them here
1017 long startTimeCallbacks = 0;
1018 if (DEBUG_RESUME_TIME) {
1019 startTimeCallbacks = System.currentTimeMillis();
1020 }
1021
Michael Jurka1e2f4652013-07-08 18:03:46 -07001022 for (int i = 0; i < mBindOnResumeCallbacks.size(); i++) {
1023 mBindOnResumeCallbacks.get(i).run();
Michael Jurkac402cd92013-05-20 15:49:32 +02001024 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001025 mBindOnResumeCallbacks.clear();
Michael Jurkac402cd92013-05-20 15:49:32 +02001026 if (DEBUG_RESUME_TIME) {
1027 Log.d(TAG, "Time spent processing callbacks in onResume: " +
1028 (System.currentTimeMillis() - startTimeCallbacks));
1029 }
Michael Jurka447bf842013-05-15 14:52:15 +02001030 }
Michael Jurka54554252013-08-01 12:52:23 +02001031 if (mOnResumeCallbacks.size() > 0) {
1032 for (int i = 0; i < mOnResumeCallbacks.size(); i++) {
1033 mOnResumeCallbacks.get(i).run();
1034 }
1035 mOnResumeCallbacks.clear();
1036 }
Winson Chunge4e50662012-01-23 14:45:13 -08001037
1038 // Reset the pressed state of icons that were locked in the press state while activities
1039 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -08001040 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -08001041 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -08001042 mWaitingForResume.setStayPressed(false);
1043 }
Winson Chung82963d52013-10-09 11:20:57 -07001044
Adam Cohen06dff352012-06-01 17:17:08 -07001045 // It is possible that widgets can receive updates while launcher is not in the foreground.
1046 // Consequently, the widgets will be inflated in the orientation of the foreground activity
1047 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
1048 // orientation.
Adam Cohen3d509322012-06-06 14:10:04 -07001049 getWorkspace().reinflateWidgetsIfNecessary();
Sunny Goyal22235bc2015-04-03 09:23:43 -07001050 reinflateQSBIfNecessary();
Adam Cohenf9426d52012-06-04 17:26:21 -07001051
Michael Jurka447bf842013-05-15 14:52:15 +02001052 if (DEBUG_RESUME_TIME) {
1053 Log.d(TAG, "Time spent in onResume: " + (System.currentTimeMillis() - startTime));
1054 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001055
Adam Cohen4b66bf32015-09-18 12:15:19 -07001056 // We want to suppress callbacks about CustomContent being shown if we have just received
1057 // onNewIntent while the user was present within launcher. In that case, we post a call
1058 // to move the user to the main screen (which will occur after onResume). We don't want to
1059 // have onHide (from onPause), then onShow, then onHide again, which we get if we don't
1060 // suppress here.
1061 if (mWorkspace.getCustomContentCallbacks() != null
1062 && !mMoveToDefaultScreenFromNewIntent) {
Adam Cohen6fecd412013-10-02 17:41:50 -07001063 // If we are resuming and the custom content is the current page, we call onShow().
Adam Cohen4b66bf32015-09-18 12:15:19 -07001064 // It is also possible that onShow will instead be called slightly after first layout
Adam Cohen6fecd412013-10-02 17:41:50 -07001065 // if PagedView#setRestorePage was set to the custom content page in onCreate().
1066 if (mWorkspace.isOnOrMovingToCustomContent()) {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001067 mWorkspace.getCustomContentCallbacks().onShow(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001068 }
1069 }
Adam Cohen4b66bf32015-09-18 12:15:19 -07001070 mMoveToDefaultScreenFromNewIntent = false;
Winson Chungcd99cd32015-04-29 11:03:24 -07001071 updateInteraction(Workspace.State.NORMAL, mWorkspace.getState());
Adam Cohen53805212013-10-01 10:39:23 -07001072 mWorkspace.onResume();
Sunny Goyale755d462014-07-22 13:48:29 -07001073
Sunny Goyal756adbc2015-04-16 15:20:51 -07001074 if (!isWorkspaceLoading()) {
1075 // Process any items that were added while Launcher was away.
1076 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
1077 }
Adam Cohen9211d422014-10-07 18:14:53 -07001078
1079 if (mLauncherCallbacks != null) {
1080 mLauncherCallbacks.onResume();
1081 }
Adam Cohen06dff352012-06-01 17:17:08 -07001082 }
1083
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001084 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001085 protected void onPause() {
Winson Chung997a9232013-07-24 15:33:46 -07001086 // Ensure that items added to Launcher are queued until Launcher returns
1087 InstallShortcutReceiver.enableInstallQueue();
1088
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001089 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001090 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -08001091 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -07001092 mDragController.resetLastGestureUpTime();
Adam Cohen6fecd412013-10-02 17:41:50 -07001093
1094 // We call onHide() aggressively. The custom content callbacks should be able to
1095 // debounce excess onHide calls.
1096 if (mWorkspace.getCustomContentCallbacks() != null) {
1097 mWorkspace.getCustomContentCallbacks().onHide();
1098 }
Romain Guycbb89e42009-06-08 15:52:54 -07001099
Adam Cohen9211d422014-10-07 18:14:53 -07001100 if (mLauncherCallbacks != null) {
1101 mLauncherCallbacks.onPause();
Adam Cohenbffe7452013-07-22 18:21:45 -07001102 }
Adam Cohenbffe7452013-07-22 18:21:45 -07001103 }
1104
1105 public interface CustomContentCallbacks {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001106 // Custom content is completely shown. {@code fromResume} indicates whether this was caused
1107 // by a onResume or by scrolling otherwise.
1108 public void onShow(boolean fromResume);
Adam Cohenbffe7452013-07-22 18:21:45 -07001109
1110 // Custom content is completely hidden
1111 public void onHide();
Adam Cohenc36fa5c2013-08-29 11:54:42 -07001112
1113 // Custom content scroll progress changed. From 0 (not showing) to 1 (fully showing).
1114 public void onScrollProgressChanged(float progress);
Jan-Willem Maarse2ff91c42014-07-10 15:58:12 -07001115
1116 // Indicates whether the user is allowed to scroll away from the custom content.
1117 boolean isScrollingAllowed();
Adam Cohenbffe7452013-07-22 18:21:45 -07001118 }
1119
Adam Cohenc2d6e892014-10-16 09:49:24 -07001120 public interface LauncherOverlay {
1121
1122 /**
1123 * Touch interaction leading to overscroll has begun
1124 */
1125 public void onScrollInteractionBegin();
1126
1127 /**
1128 * Touch interaction related to overscroll has ended
1129 */
1130 public void onScrollInteractionEnd();
1131
1132 /**
1133 * Scroll progress, between 0 and 100, when the user scrolls beyond the leftmost
1134 * screen (or in the case of RTL, the rightmost screen).
1135 */
1136 public void onScrollChange(int progress, boolean rtl);
1137
1138 /**
1139 * Screen has stopped scrolling
1140 */
1141 public void onScrollSettled();
1142
1143 /**
1144 * This method can be called by the Launcher in order to force the LauncherOverlay
1145 * to exit fully immersive mode.
1146 */
1147 public void forceExitFullImmersion();
1148 }
1149
Jun Mukai8af0cd82015-05-12 12:32:12 -07001150 public interface LauncherSearchCallbacks {
1151 /**
1152 * Called when the search overlay is shown.
1153 */
1154 public void onSearchOverlayOpened();
1155
1156 /**
1157 * Called when the search overlay is dismissed.
1158 */
1159 public void onSearchOverlayClosed();
1160 }
1161
Adam Cohenc2d6e892014-10-16 09:49:24 -07001162 public interface LauncherOverlayCallbacks {
1163 /**
1164 * This method indicates whether a call to {@link #enterFullImmersion()} will succeed,
1165 * however it doesn't modify any state within the launcher.
1166 */
1167 public boolean canEnterFullImmersion();
1168
1169 /**
1170 * Should be called to tell Launcher that the LauncherOverlay will take over interaction,
1171 * eg. by occupying the full screen and handling all touch events.
1172 *
1173 * @return true if Launcher allows the LauncherOverlay to become fully immersive. In this
1174 * case, Launcher will modify any necessary state and assumes the overlay is
1175 * handling all interaction. If false, the LauncherOverlay should cancel any
1176 *
1177 */
1178 public boolean enterFullImmersion();
1179
1180 /**
1181 * Must be called when exiting fully immersive mode. Indicates to Launcher that it has
1182 * full control over UI and state.
1183 */
1184 public void exitFullImmersion();
1185 }
1186
1187 class LauncherOverlayCallbacksImpl implements LauncherOverlayCallbacks {
1188
1189 @Override
1190 public boolean canEnterFullImmersion() {
1191 return mState == State.WORKSPACE;
1192 }
1193
1194 @Override
1195 public boolean enterFullImmersion() {
1196 if (mState == State.WORKSPACE) {
1197 // When fully immersed, disregard any touches which fall through.
1198 mDragLayer.setBlockTouch(true);
1199 return true;
1200 }
1201 return false;
1202 }
1203
1204 @Override
1205 public void exitFullImmersion() {
1206 mDragLayer.setBlockTouch(false);
1207 }
1208 }
1209
Jorim Jaggid017f882014-01-14 17:08:48 -08001210 protected boolean hasSettings() {
Adam Cohen9211d422014-10-07 18:14:53 -07001211 if (mLauncherCallbacks != null) {
1212 return mLauncherCallbacks.hasSettings();
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07001213 } else {
1214 // On devices with a locked orientation, we will at least have the allow rotation
1215 // setting.
1216 return !Utilities.isRotationAllowedForDevice(this);
Adam Cohen9211d422014-10-07 18:14:53 -07001217 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001218 }
1219
Adam Cohen9211d422014-10-07 18:14:53 -07001220 public void addToCustomContentPage(View customContent,
Adam Cohen53805212013-10-01 10:39:23 -07001221 CustomContentCallbacks callbacks, String description) {
1222 mWorkspace.addToCustomContentPage(customContent, callbacks, description);
Adam Cohen66a01fd2013-06-11 12:48:00 -07001223 }
1224
Adam Cohenedb40762013-07-18 16:45:45 -07001225 // The custom content needs to offset its content to account for the QSB
1226 public int getTopOffsetForCustomContent() {
1227 return mWorkspace.getPaddingTop();
1228 }
1229
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001230 @Override
1231 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001232 // Flag the loader to stop early before switching
Adam Cohen1a85c582014-09-30 09:48:49 -07001233 if (mModel.isCurrentCallbacks(this)) {
1234 mModel.stopLoader();
1235 }
Hyunyoung Song3f471442015-04-08 19:01:34 -07001236 //TODO(hyunyoungs): stop the widgets loader when there is a rotation.
1237
Romain Guy13c2e7b2010-03-10 19:45:00 -08001238 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001239 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001240
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001241 // We can't hide the IME if it was forced open. So don't bother
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001242 @Override
1243 public void onWindowFocusChanged(boolean hasFocus) {
1244 super.onWindowFocusChanged(hasFocus);
Adam Cohened307df2013-10-02 09:37:31 -07001245 mHasFocus = hasFocus;
Adam Cohen9211d422014-10-07 18:14:53 -07001246
1247 if (mLauncherCallbacks != null) {
1248 mLauncherCallbacks.onWindowFocusChanged(hasFocus);
1249 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001250 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001251
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001252 private boolean acceptFilter() {
1253 final InputMethodManager inputManager = (InputMethodManager)
1254 getSystemService(Context.INPUT_METHOD_SERVICE);
1255 return !inputManager.isFullscreenMode();
1256 }
1257
1258 @Override
1259 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -07001260 final int uniChar = event.getUnicodeChar();
1261 final boolean handled = super.onKeyDown(keyCode, event);
1262 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
1263 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001264 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
1265 keyCode, event);
1266 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001267 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -07001268 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -07001269 // showSearchDialog()
1270 // If there are multiple keystrokes before the search dialog takes focus,
1271 // onSearchRequested() will be called for every keystroke,
1272 // but it is idempotent, so it's fine.
1273 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001274 }
1275 }
1276
Joe Onorato8a9625e2010-01-28 15:55:35 -08001277 // Eat the long press event so the keyboard doesn't come up.
1278 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
1279 return true;
1280 }
1281
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001282 return handled;
1283 }
1284
Winson46163472015-09-22 17:31:56 -07001285 @Override
1286 public boolean onKeyUp(int keyCode, KeyEvent event) {
1287 if (keyCode == KeyEvent.KEYCODE_MENU) {
1288 // Ignore the menu key if we are currently dragging or are on the custom content screen
1289 if (!isOnCustomContent() && !mDragController.isDragging()) {
1290 // Close any open folders
1291 closeFolder();
1292
1293 // Stop resizing any widgets
1294 mWorkspace.exitWidgetResizeMode();
1295
1296 // Show the overview mode if we are on the workspace
1297 if (mState == State.WORKSPACE && !mWorkspace.isInOverviewMode() &&
1298 !mWorkspace.isSwitchingState()) {
1299 mOverviewPanel.requestFocus();
1300 showOverviewMode(true);
1301 }
1302 }
1303 return true;
1304 }
1305 return super.onKeyUp(keyCode, event);
1306 }
1307
Karl Rosaen138a0412009-04-23 19:00:21 -07001308 private String getTypedText() {
1309 return mDefaultKeySsb.toString();
1310 }
1311
1312 private void clearTypedText() {
1313 mDefaultKeySsb.clear();
1314 mDefaultKeySsb.clearSpans();
1315 Selection.setSelection(mDefaultKeySsb, 0);
1316 }
1317
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001318 /**
Michael Jurka883f55b2010-10-21 15:47:14 -07001319 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
1320 * State
1321 */
1322 private static State intToState(int stateOrdinal) {
1323 State state = State.WORKSPACE;
1324 final State[] stateValues = State.values();
1325 for (int i = 0; i < stateValues.length; i++) {
1326 if (stateValues[i].ordinal() == stateOrdinal) {
1327 state = stateValues[i];
1328 break;
1329 }
1330 }
1331 return state;
1332 }
1333
1334 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001335 * Restores the previous state, if it exists.
1336 *
1337 * @param savedState The previous state.
1338 */
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001339 @SuppressWarnings("unchecked")
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001340 private void restoreState(Bundle savedState) {
1341 if (savedState == null) {
1342 return;
1343 }
1344
Michael Jurka883f55b2010-10-21 15:47:14 -07001345 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungb745afb2015-03-02 11:51:23 -08001346 if (state == State.APPS || state == State.WIDGETS) {
1347 mOnResumeState = state;
Joe Onorato3a8820b2009-11-10 15:06:42 -08001348 }
1349
Adam Cohen21cd0022013-10-09 18:57:02 -07001350 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN,
1351 PagedView.INVALID_RESTORE_PAGE);
1352 if (currentScreen != PagedView.INVALID_RESTORE_PAGE) {
Winson Chung8c87cd82013-07-23 16:20:10 -07001353 mWorkspace.setRestorePage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001354 }
1355
Winson Chung3d503fb2011-07-13 17:25:49 -07001356 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
Adam Cohendcd297f2013-06-18 13:13:40 -07001357 final long pendingAddScreen = savedState.getLong(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001358
Winson Chung3d503fb2011-07-13 17:25:49 -07001359 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
1360 mPendingAddInfo.container = pendingAddContainer;
Adam Cohendcd297f2013-06-18 13:13:40 -07001361 mPendingAddInfo.screenId = pendingAddScreen;
Winson Chung3d503fb2011-07-13 17:25:49 -07001362 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
1363 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001364 mPendingAddInfo.spanX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_X);
1365 mPendingAddInfo.spanY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y);
Adam Cohenb823ae42015-03-27 18:07:52 -07001366 AppWidgetProviderInfo info = savedState.getParcelable(
1367 RUNTIME_STATE_PENDING_ADD_WIDGET_INFO);
Sunny Goyalf044bb12015-05-12 13:30:07 -07001368 mPendingAddWidgetInfo = info == null ?
1369 null : LauncherAppWidgetProviderInfo.fromProviderInfo(this, info);
1370
Adam Cohen4637b5a2013-11-04 18:21:24 -08001371 mPendingAddWidgetId = savedState.getInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID);
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001372 setWaitingForResult(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001373 mRestoring = true;
1374 }
1375
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001376 mItemIdToViewId = (HashMap<Integer, Integer>)
1377 savedState.getSerializable(RUNTIME_STATE_VIEW_IDS);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001378 }
1379
1380 /**
1381 * Finds all the views we need and configure them properly.
1382 */
1383 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -07001384 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -04001385
Craig Mautner360310b2012-10-26 15:13:08 -07001386 mLauncherView = findViewById(R.id.launcher);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001387 mFocusHandler = (FocusIndicatorView) findViewById(R.id.focus_indicator);
Winson Chung4c98d922011-05-31 16:50:48 -07001388 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
1389 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Anjali Koppalf5d29132014-02-28 13:33:27 -08001390 mWorkspace.setPageSwitchListener(this);
Winson Chunga6945242014-01-08 14:04:34 -08001391 mPageIndicators = mDragLayer.findViewById(R.id.page_indicator);
Craig Mautner360310b2012-10-26 15:13:08 -07001392
John Spurlock77e1f472013-09-11 10:09:51 -04001393 mLauncherView.setSystemUiVisibility(
1394 View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
Craig Mautner360310b2012-10-26 15:13:08 -07001395 mWorkspaceBackgroundDrawable = getResources().getDrawable(R.drawable.workspace_bg);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001396
Winson Chung4c98d922011-05-31 16:50:48 -07001397 // Setup the drag layer
1398 mDragLayer.setup(this, dragController);
1399
Winson Chung3d503fb2011-07-13 17:25:49 -07001400 // Setup the hotseat
1401 mHotseat = (Hotseat) findViewById(R.id.hotseat);
1402 if (mHotseat != null) {
Winson Chung11a1a532013-09-13 11:14:45 -07001403 mHotseat.setOnLongClickListener(this);
Winson Chung3d503fb2011-07-13 17:25:49 -07001404 }
1405
Jorim Jaggid017f882014-01-14 17:08:48 -08001406 mOverviewPanel = (ViewGroup) findViewById(R.id.overview_panel);
Tony Wickham6b7653d2015-09-02 16:11:09 -07001407 // Long-clicking buttons in the overview panel does the same thing as clicking them.
1408 OnLongClickListener performClickOnLongClick = new OnLongClickListener() {
1409 @Override
1410 public boolean onLongClick(View v) {
1411 return v.performClick();
1412 }
1413 };
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001414 mWidgetsButton = findViewById(R.id.widget_button);
1415 mWidgetsButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001416 @Override
Tony Wickham6b7653d2015-09-02 16:11:09 -07001417 public void onClick(View view) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001418 if (!mWorkspace.isSwitchingState()) {
Tony Wickham6b7653d2015-09-02 16:11:09 -07001419 onClickAddWidgetButton(view);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001420 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001421 }
1422 });
Tony Wickham6b7653d2015-09-02 16:11:09 -07001423 mWidgetsButton.setOnLongClickListener(performClickOnLongClick);
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001424 mWidgetsButton.setOnTouchListener(getHapticFeedbackTouchListener());
Adam Cohen61f560d2013-09-30 15:58:20 -07001425
1426 View wallpaperButton = findViewById(R.id.wallpaper_button);
1427 wallpaperButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001428 @Override
Tony Wickham6b7653d2015-09-02 16:11:09 -07001429 public void onClick(View view) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001430 if (!mWorkspace.isSwitchingState()) {
Tony Wickham6b7653d2015-09-02 16:11:09 -07001431 onClickWallpaperPicker(view);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001432 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001433 }
1434 });
Tony Wickham6b7653d2015-09-02 16:11:09 -07001435 wallpaperButton.setOnLongClickListener(performClickOnLongClick);
Adam Cohen61f560d2013-09-30 15:58:20 -07001436 wallpaperButton.setOnTouchListener(getHapticFeedbackTouchListener());
1437
1438 View settingsButton = findViewById(R.id.settings_button);
Jorim Jaggid017f882014-01-14 17:08:48 -08001439 if (hasSettings()) {
1440 settingsButton.setOnClickListener(new OnClickListener() {
1441 @Override
Tony Wickham6b7653d2015-09-02 16:11:09 -07001442 public void onClick(View view) {
Jorim Jaggid017f882014-01-14 17:08:48 -08001443 if (!mWorkspace.isSwitchingState()) {
Tony Wickham6b7653d2015-09-02 16:11:09 -07001444 onClickSettingsButton(view);
Jorim Jaggid017f882014-01-14 17:08:48 -08001445 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08001446 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001447 });
Tony Wickham6b7653d2015-09-02 16:11:09 -07001448 settingsButton.setOnLongClickListener(performClickOnLongClick);
Jorim Jaggid017f882014-01-14 17:08:48 -08001449 settingsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1450 } else {
1451 settingsButton.setVisibility(View.GONE);
Jorim Jaggid017f882014-01-14 17:08:48 -08001452 }
1453
Adam Cohendbdff6b2013-09-18 19:09:15 -07001454 mOverviewPanel.setAlpha(0f);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001455
Winson Chung4c98d922011-05-31 16:50:48 -07001456 // Setup the workspace
1457 mWorkspace.setHapticFeedbackEnabled(false);
1458 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -07001459 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -07001460 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001461
Winson Chungf0ea4d32011-06-06 14:27:16 -07001462 // Get the search/delete bar
Adam Cohen24ce0b32014-01-14 16:18:14 -08001463 mSearchDropTargetBar = (SearchDropTargetBar)
1464 mDragLayer.findViewById(R.id.search_drop_target_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001465
Winson Chungef7f8742015-06-04 17:18:17 -07001466 // Setup Apps and Widgets
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001467 mAppsView = (AllAppsContainerView) findViewById(R.id.apps_view);
Hyunyoung Song3f471442015-04-08 19:01:34 -07001468 mWidgetsView = (WidgetsContainerView) findViewById(R.id.widgets_view);
Winson Chungef7f8742015-06-04 17:18:17 -07001469 if (mLauncherCallbacks != null && mLauncherCallbacks.getAllAppsSearchBarController() != null) {
1470 mAppsView.setSearchBarController(mLauncherCallbacks.getAllAppsSearchBarController());
1471 } else {
1472 mAppsView.setSearchBarController(mAppsView.newDefaultAppSearchController());
1473 }
Craig Mautner360310b2012-10-26 15:13:08 -07001474
Winson Chung3d503fb2011-07-13 17:25:49 -07001475 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -07001476 dragController.setDragScoller(mWorkspace);
1477 dragController.setScrollView(mDragLayer);
1478 dragController.setMoveTarget(mWorkspace);
1479 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -07001480 if (mSearchDropTargetBar != null) {
1481 mSearchDropTargetBar.setup(this, dragController);
Adam Cohenb0df1b02015-03-18 22:21:40 -07001482 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Michael Jurkae0f5a612011-02-07 16:45:41 -08001483 }
Daniel Sandler924b9932013-06-12 00:38:25 -04001484
Daniel Sandlera127b7a2013-06-17 14:25:46 -04001485 if (getResources().getBoolean(R.bool.debug_memory_enabled)) {
Daniel Sandler924b9932013-06-12 00:38:25 -04001486 Log.v(TAG, "adding WeightWatcher");
Adam Cohen39a06042013-07-19 14:30:12 -07001487 mWeightWatcher = new WeightWatcher(this);
1488 mWeightWatcher.setAlpha(0.5f);
1489 ((FrameLayout) mLauncherView).addView(mWeightWatcher,
Daniel Sandler924b9932013-06-12 00:38:25 -04001490 new FrameLayout.LayoutParams(
1491 FrameLayout.LayoutParams.MATCH_PARENT,
Daniel Sandlerb9eb2862013-06-14 20:17:30 -04001492 FrameLayout.LayoutParams.WRAP_CONTENT,
Daniel Sandler924b9932013-06-12 00:38:25 -04001493 Gravity.BOTTOM)
1494 );
Adam Cohen39a06042013-07-19 14:30:12 -07001495
1496 boolean show = shouldShowWeightWatcher();
1497 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
Daniel Sandler924b9932013-06-12 00:38:25 -04001498 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001499 }
1500
1501 /**
Anjali Koppal5ad44842014-03-10 20:34:39 -07001502 * Sets the all apps button. This method is called from {@link Hotseat}.
1503 */
1504 public void setAllAppsButton(View allAppsButton) {
1505 mAllAppsButton = allAppsButton;
1506 }
1507
1508 public View getAllAppsButton() {
1509 return mAllAppsButton;
1510 }
1511
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001512 public View getWidgetsButton() {
1513 return mWidgetsButton;
1514 }
1515
Anjali Koppal5ad44842014-03-10 20:34:39 -07001516 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001517 * Creates a view representing a shortcut.
1518 *
1519 * @param info The data structure describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001520 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001521 View createShortcut(ShortcutInfo info) {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001522 return createShortcut((ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001523 }
1524
1525 /**
1526 * Creates a view representing a shortcut inflated from the specified resource.
1527 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001528 * @param parent The group the shortcut belongs to.
1529 * @param info The data structure describing the shortcut.
1530 *
1531 * @return A View inflated from layoutResId.
1532 */
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001533 public View createShortcut(ViewGroup parent, ShortcutInfo info) {
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001534 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(R.layout.app_icon,
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001535 parent, false);
1536 favorite.applyFromShortcutInfo(info, mIconCache);
1537 favorite.setCompoundDrawablePadding(mDeviceProfile.iconDrawablePaddingPx);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001538 favorite.setOnClickListener(this);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001539 favorite.setOnFocusChangeListener(mFocusHandler);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001540 return favorite;
1541 }
1542
1543 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001544 * Add a shortcut to the workspace.
1545 *
1546 * @param data The intent describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001547 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001548 private void completeAddShortcut(Intent data, long container, long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07001549 int cellY) {
1550 int[] cellXY = mTmpAddItemCellCoordinates;
1551 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohendcd297f2013-06-18 13:13:40 -07001552 CellLayout layout = getCellLayout(container, screenId);
Romain Guycbb89e42009-06-08 15:52:54 -07001553
Sunny Goyal5c97f512015-05-19 16:03:28 -07001554 ShortcutInfo info = InstallShortcutReceiver.fromShortcutIntent(this, data);
Adam Cohend9198822011-11-22 16:42:47 -08001555 if (info == null) {
1556 return;
1557 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001558 final View view = createShortcut(info);
1559
Sunny Goyal5c97f512015-05-19 16:03:28 -07001560 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001561 // First we check if we already know the exact location where we want to add this item.
1562 if (cellX >= 0 && cellY >= 0) {
1563 cellXY[0] = cellX;
1564 cellXY[1] = cellY;
1565 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001566
1567 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001568 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001569 true, null,null)) {
1570 return;
1571 }
1572 DragObject dragObject = new DragObject();
1573 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001574 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1575 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001576 return;
1577 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001578 } else if (touchXY != null) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08001579 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001580 int[] result = layout.findNearestVacantArea(touchXY[0], touchXY[1], 1, 1, cellXY);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001581 foundCellSpan = (result != null);
1582 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001583 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001584 }
1585
1586 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001587 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001588 return;
1589 }
1590
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001591 LauncherModel.addItemToDatabase(this, info, container, screenId, cellXY[0], cellXY[1]);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001592
1593 if (!mRestoring) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001594 mWorkspace.addInScreen(view, container, screenId, cellXY[0], cellXY[1], 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07001595 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001596 }
1597 }
1598
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001599 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001600 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001601 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001602 * @param appWidgetId The app widget id
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001603 */
Adam Cohen091440a2015-03-18 14:16:05 -07001604 @Thunk void completeAddAppWidget(int appWidgetId, long container, long screenId,
Adam Cohen59400422014-03-05 18:07:04 -08001605 AppWidgetHostView hostView, LauncherAppWidgetProviderInfo appWidgetInfo) {
1606
1607 ItemInfo info = mPendingAddInfo;
Adam Cohened66b2b2012-01-23 17:28:51 -08001608 if (appWidgetInfo == null) {
Adam Cohen59400422014-03-05 18:07:04 -08001609 appWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(this,
1610 mAppWidgetManager.getAppWidgetInfo(appWidgetId));
Adam Cohened66b2b2012-01-23 17:28:51 -08001611 }
Romain Guycbb89e42009-06-08 15:52:54 -07001612
Adam Cohen59400422014-03-05 18:07:04 -08001613 if (appWidgetInfo.isCustomWidget) {
1614 appWidgetId = LauncherAppWidgetInfo.CUSTOM_WIDGET_ID;
Michael Jurkaa63c4522010-08-19 13:52:27 -07001615 }
1616
Adam Cohen59400422014-03-05 18:07:04 -08001617 LauncherAppWidgetInfo launcherInfo;
1618 launcherInfo = new LauncherAppWidgetInfo(appWidgetId, appWidgetInfo.provider);
1619 launcherInfo.spanX = info.spanX;
1620 launcherInfo.spanY = info.spanY;
1621 launcherInfo.minSpanX = info.minSpanX;
1622 launcherInfo.minSpanY = info.minSpanY;
Sunny Goyalffe83f12014-08-14 17:39:34 -07001623 launcherInfo.user = mAppWidgetManager.getUser(appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001624
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001625 LauncherModel.addItemToDatabase(this, launcherInfo,
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001626 container, screenId, info.cellX, info.cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001627
1628 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001629 if (hostView == null) {
1630 // Perform actual inflation because we're live
Adam Cohen59400422014-03-05 18:07:04 -08001631 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId,
1632 appWidgetInfo);
Adam Cohened66b2b2012-01-23 17:28:51 -08001633 } else {
1634 // The AppWidgetHostView has already been inflated and instantiated
1635 launcherInfo.hostView = hostView;
1636 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001637 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001638 launcherInfo.hostView.setVisibility(View.VISIBLE);
Adam Cohenaaa5c212012-10-05 18:14:31 -07001639 launcherInfo.notifyWidgetSizeChanged(this);
1640
Adam Cohen59400422014-03-05 18:07:04 -08001641 mWorkspace.addInScreen(launcherInfo.hostView, container, screenId, info.cellX,
1642 info.cellY, launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001643
1644 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001645 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001646 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001647 }
Romain Guycbb89e42009-06-08 15:52:54 -07001648
Adam Cohended9f8d2010-11-03 13:25:16 -07001649 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1650 @Override
1651 public void onReceive(Context context, Intent intent) {
1652 final String action = intent.getAction();
1653 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1654 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001655 mDragLayer.clearAllResizeFrames();
Winson Chungb745afb2015-03-02 11:51:23 -08001656 updateAutoAdvanceState();
Winson Chung337cd9d2011-03-30 10:39:30 -07001657
Winson Chungc100e8e2011-08-09 16:02:43 -07001658 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001659 // processing a multi-step drop
Hyunyoung Song3f471442015-04-08 19:01:34 -07001660 if (mAppsView != null && mWidgetsView != null &&
Winson Chungb745afb2015-03-02 11:51:23 -08001661 mPendingAddInfo.container == ItemInfo.NO_ID) {
Winson5c6bdbb2015-09-03 11:36:19 -07001662 if (!showWorkspace(false)) {
1663 // If we are already on the workspace, then manually reset all apps
1664 mAppsView.reset();
1665 }
Winson Chung785d2eb2011-04-14 16:08:02 -07001666 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001667 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1668 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08001669 updateAutoAdvanceState();
Dan Sandlerd5024042014-01-09 15:01:33 -05001670 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.DELETE_DATABASE.equals(action)) {
1671 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001672 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001673 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE);
1674 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.MIGRATE_DATABASE.equals(action)) {
1675 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001676 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001677 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE
1678 | LauncherModel.LOADER_FLAG_MIGRATE_SHORTCUTS);
Adam Cohended9f8d2010-11-03 13:25:16 -07001679 }
1680 }
1681 };
1682
1683 @Override
1684 public void onAttachedToWindow() {
1685 super.onAttachedToWindow();
1686
1687 // Listen for broadcasts related to user-presence
1688 final IntentFilter filter = new IntentFilter();
1689 filter.addAction(Intent.ACTION_SCREEN_OFF);
1690 filter.addAction(Intent.ACTION_USER_PRESENT);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001691 // For handling managed profiles
Dan Sandlerd5024042014-01-09 15:01:33 -05001692 if (ENABLE_DEBUG_INTENTS) {
1693 filter.addAction(DebugIntents.DELETE_DATABASE);
1694 filter.addAction(DebugIntents.MIGRATE_DATABASE);
1695 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001696 registerReceiver(mReceiver, filter);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001697 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Sunny Goyal9fc953b2015-08-17 12:24:25 -07001698 setupTransparentSystemBarsForLollipop();
Adam Cohend113e0c2010-11-11 10:48:05 -08001699 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001700 mVisible = true;
1701 }
1702
Adam Cohen0b395352014-06-09 22:54:36 +00001703 /**
Sunny Goyal9fc953b2015-08-17 12:24:25 -07001704 * Sets up transparent navigation and status bars in Lollipop.
Adam Cohen0b395352014-06-09 22:54:36 +00001705 * This method is a no-op for other platform versions.
1706 */
Sunny Goyald0091012015-01-20 15:55:34 -08001707 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Sunny Goyal9fc953b2015-08-17 12:24:25 -07001708 private void setupTransparentSystemBarsForLollipop() {
1709 if (Utilities.ATLEAST_LOLLIPOP) {
Sunny Goyald0091012015-01-20 15:55:34 -08001710 Window window = getWindow();
1711 window.getAttributes().systemUiVisibility |=
1712 (View.SYSTEM_UI_FLAG_LAYOUT_STABLE
1713 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
1714 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
1715 window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS
1716 | WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
1717 window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
1718 window.setStatusBarColor(Color.TRANSPARENT);
1719 window.setNavigationBarColor(Color.TRANSPARENT);
Adam Cohen0b395352014-06-09 22:54:36 +00001720 }
1721 }
1722
Adam Cohended9f8d2010-11-03 13:25:16 -07001723 @Override
1724 public void onDetachedFromWindow() {
1725 super.onDetachedFromWindow();
1726 mVisible = false;
1727
Adam Cohend113e0c2010-11-11 10:48:05 -08001728 if (mAttached) {
1729 unregisterReceiver(mReceiver);
1730 mAttached = false;
1731 }
Winson Chungb745afb2015-03-02 11:51:23 -08001732 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001733 }
1734
1735 public void onWindowVisibilityChanged(int visibility) {
1736 mVisible = visibility == View.VISIBLE;
Winson Chungb745afb2015-03-02 11:51:23 -08001737 updateAutoAdvanceState();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001738 // The following code used to be in onResume, but it turns out onResume is called when
1739 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1740 // is a more appropriate event to handle
1741 if (mVisible) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001742 if (!mWorkspaceLoading) {
1743 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001744 // We want to let Launcher draw itself at least once before we force it to build
1745 // layers on all the workspace pages, so that transitioning to Launcher from other
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001746 // apps is nice and speedy.
1747 observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001748 private boolean mStarted = false;
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001749 public void onDraw() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001750 if (mStarted) return;
1751 mStarted = true;
Michael Jurka6ee21d22012-02-21 18:20:27 -08001752 // We delay the layer building a bit in order to give
1753 // other message processing a time to run. In particular
1754 // this avoids a delay in hiding the IME if it was
1755 // currently shown, because doing that may involve
1756 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001757 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurkadf96add2013-04-03 16:25:02 -07001758 final ViewTreeObserver.OnDrawListener listener = this;
1759 mWorkspace.post(new Runnable() {
1760 public void run() {
Michael Jurkab68e03a2013-04-11 11:36:41 -07001761 if (mWorkspace != null &&
1762 mWorkspace.getViewTreeObserver() != null) {
1763 mWorkspace.getViewTreeObserver().
1764 removeOnDrawListener(listener);
1765 }
Michael Jurkadf96add2013-04-03 16:25:02 -07001766 }
1767 });
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001768 return;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001769 }
1770 });
1771 }
1772 clearTypedText();
1773 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001774 }
1775
Adam Cohen091440a2015-03-18 14:16:05 -07001776 @Thunk void sendAdvanceMessage(long delay) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001777 mHandler.removeMessages(ADVANCE_MSG);
1778 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1779 mHandler.sendMessageDelayed(msg, delay);
1780 mAutoAdvanceSentTime = System.currentTimeMillis();
1781 }
1782
Adam Cohen091440a2015-03-18 14:16:05 -07001783 @Thunk void updateAutoAdvanceState() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001784 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1785 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1786 mAutoAdvanceRunning = autoAdvanceRunning;
1787 if (autoAdvanceRunning) {
1788 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1789 sendAdvanceMessage(delay);
1790 } else {
1791 if (!mWidgetsToAdvance.isEmpty()) {
1792 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1793 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1794 }
1795 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001796 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001797 }
1798 }
1799 }
1800
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001801 @Thunk final Handler mHandler = new Handler(new Handler.Callback() {
1802
Adam Cohended9f8d2010-11-03 13:25:16 -07001803 @Override
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001804 public boolean handleMessage(Message msg) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001805 if (msg.what == ADVANCE_MSG) {
1806 int i = 0;
1807 for (View key: mWidgetsToAdvance.keySet()) {
1808 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1809 final int delay = mAdvanceStagger * i;
1810 if (v instanceof Advanceable) {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001811 mHandler.postDelayed(new Runnable() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001812 public void run() {
1813 ((Advanceable) v).advance();
1814 }
1815 }, delay);
1816 }
1817 i++;
1818 }
1819 sendAdvanceMessage(mAdvanceInterval);
1820 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001821 return true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001822 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001823 });
Adam Cohended9f8d2010-11-03 13:25:16 -07001824
Winsonc0b52fe2015-09-09 16:38:15 -07001825 private void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001826 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001827 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1828 if (v instanceof Advanceable) {
1829 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001830 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Winson Chungb745afb2015-03-02 11:51:23 -08001831 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001832 }
1833 }
1834
Winsonc0b52fe2015-09-09 16:38:15 -07001835 private void removeWidgetToAutoAdvance(View hostView) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001836 if (mWidgetsToAdvance.containsKey(hostView)) {
1837 mWidgetsToAdvance.remove(hostView);
Winson Chungb745afb2015-03-02 11:51:23 -08001838 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001839 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001840 }
1841
Hyunyoung Song3f471442015-04-08 19:01:34 -07001842 public void showOutOfSpaceMessage(boolean isHotseatLayout) {
Winson Chung93eef082012-03-23 15:59:27 -07001843 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1844 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001845 }
1846
Winson Chunga6945242014-01-08 14:04:34 -08001847 public DragLayer getDragLayer() {
1848 return mDragLayer;
1849 }
1850
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001851 public AllAppsContainerView getAppsView() {
Winson Chungb745afb2015-03-02 11:51:23 -08001852 return mAppsView;
1853 }
1854
Hyunyoung Song3f471442015-04-08 19:01:34 -07001855 public WidgetsContainerView getWidgetsView() {
1856 return mWidgetsView;
Winson Chungb745afb2015-03-02 11:51:23 -08001857 }
1858
Winson Chunga6945242014-01-08 14:04:34 -08001859 public Workspace getWorkspace() {
1860 return mWorkspace;
1861 }
1862
1863 public Hotseat getHotseat() {
1864 return mHotseat;
1865 }
1866
Jorim Jaggid017f882014-01-14 17:08:48 -08001867 public ViewGroup getOverviewPanel() {
Winson Chunga6945242014-01-08 14:04:34 -08001868 return mOverviewPanel;
1869 }
1870
Winson Chung006ee262015-08-03 14:40:11 -07001871 public SearchDropTargetBar getSearchDropTargetBar() {
Winson Chunga6945242014-01-08 14:04:34 -08001872 return mSearchDropTargetBar;
1873 }
1874
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001875 public LauncherAppWidgetHost getAppWidgetHost() {
1876 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001877 }
Romain Guycbb89e42009-06-08 15:52:54 -07001878
Winson Chunga9abd0e2010-10-27 17:18:37 -07001879 public LauncherModel getModel() {
1880 return mModel;
1881 }
1882
Winson Chunga6945242014-01-08 14:04:34 -08001883 protected SharedPreferences getSharedPrefs() {
1884 return mSharedPrefs;
1885 }
1886
Adam Cohen2e6da152015-05-06 11:42:25 -07001887 public DeviceProfile getDeviceProfile() {
1888 return mDeviceProfile;
1889 }
1890
Bjorn Bringertc459e522013-06-07 19:36:01 +01001891 public void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001892 getWindow().closeAllPanels();
1893
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001894 // Whatever we were doing is hereby canceled.
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001895 setWaitingForResult(false);
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001896 }
1897
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001898 @Override
1899 protected void onNewIntent(Intent intent) {
Michael Jurka447bf842013-05-15 14:52:15 +02001900 long startTime = 0;
1901 if (DEBUG_RESUME_TIME) {
1902 startTime = System.currentTimeMillis();
1903 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001904 super.onNewIntent(intent);
1905
1906 // Close the menu
Winson15f8b172015-08-19 11:02:39 -07001907 Folder openFolder = mWorkspace.getOpenFolder();
1908 boolean alreadyOnHome = mHasFocus && ((intent.getFlags() &
1909 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1910 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
1911 boolean isActionMain = Intent.ACTION_MAIN.equals(intent.getAction());
1912 if (isActionMain) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001913 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001914 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001915
Adam Cohen6fecd412013-10-02 17:41:50 -07001916 if (mWorkspace == null) {
1917 // Can be cases where mWorkspace is null, this prevents a NPE
1918 return;
1919 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001920 // In all these cases, only animate if we're already on home
1921 mWorkspace.exitWidgetResizeMode();
Adam Cohen9211d422014-10-07 18:14:53 -07001922
Adam Cohen6fecd412013-10-02 17:41:50 -07001923 closeFolder();
1924 exitSpringLoadedDragMode();
1925
1926 // If we are already on home, then just animate back to the workspace,
1927 // otherwise, just wait until onResume to set the state back to Workspace
1928 if (alreadyOnHome) {
Adam Cohened307df2013-10-02 09:37:31 -07001929 showWorkspace(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001930 } else {
1931 mOnResumeState = State.WORKSPACE;
1932 }
1933
1934 final View v = getWindow().peekDecorView();
1935 if (v != null && v.getWindowToken() != null) {
1936 InputMethodManager imm = (InputMethodManager)getSystemService(
1937 INPUT_METHOD_SERVICE);
1938 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1939 }
1940
Winson Chungb745afb2015-03-02 11:51:23 -08001941 // Reset the apps view
1942 if (!alreadyOnHome && mAppsView != null) {
1943 mAppsView.scrollToTop();
1944 }
1945
Hyunyoung Song3f471442015-04-08 19:01:34 -07001946 // Reset the widgets view
1947 if (!alreadyOnHome && mWidgetsView != null) {
1948 mWidgetsView.scrollToTop();
Adam Cohen6fecd412013-10-02 17:41:50 -07001949 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001950
Adam Cohen9211d422014-10-07 18:14:53 -07001951 if (mLauncherCallbacks != null) {
1952 mLauncherCallbacks.onHomeIntent();
1953 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001954 }
Adam Cohened307df2013-10-02 09:37:31 -07001955
Adam Cohen9211d422014-10-07 18:14:53 -07001956 if (mLauncherCallbacks != null) {
1957 mLauncherCallbacks.onNewIntent(intent);
1958 }
Winson15f8b172015-08-19 11:02:39 -07001959
1960 // Defer moving to the default screen until after we callback to the LauncherCallbacks
1961 // as slow logic in the callbacks eat into the time the scroller expects for the snapToPage
1962 // animation.
1963 if (isActionMain) {
Ivan Lee667d6882015-09-03 10:16:07 -06001964 boolean moveToDefaultScreen = mLauncherCallbacks != null ?
1965 mLauncherCallbacks.shouldMoveToDefaultScreenOnHomeIntent() : true;
Winson15f8b172015-08-19 11:02:39 -07001966 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
1967 openFolder == null && moveToDefaultScreen) {
Adam Cohen4b66bf32015-09-18 12:15:19 -07001968
1969 // We use this flag to suppress noisy callbacks above custom content state
1970 // from onResume.
1971 mMoveToDefaultScreenFromNewIntent = true;
Winson15f8b172015-08-19 11:02:39 -07001972 mWorkspace.post(new Runnable() {
1973 @Override
1974 public void run() {
1975 mWorkspace.moveToDefaultScreen(true);
1976 }
1977 });
1978 }
1979 }
1980
1981 if (DEBUG_RESUME_TIME) {
1982 Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime));
1983 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001984 }
1985
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001986 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001987 public void onRestoreInstanceState(Bundle state) {
1988 super.onRestoreInstanceState(state);
1989 for (int page: mSynchronouslyBoundPages) {
1990 mWorkspace.restoreInstanceStateForChild(page);
1991 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001992 }
1993
1994 @Override
1995 protected void onSaveInstanceState(Bundle outState) {
Adam Cohen21cd0022013-10-09 18:57:02 -07001996 if (mWorkspace.getChildCount() > 0) {
Winson Chung9b9fb962013-11-15 15:39:34 -08001997 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN,
1998 mWorkspace.getCurrentPageOffsetFromCustomContent());
Adam Cohen21cd0022013-10-09 18:57:02 -07001999 }
Adam Cohen95bb8002011-07-03 23:40:28 -07002000 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002001
Michael Jurka883f55b2010-10-21 15:47:14 -07002002 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07002003 // We close any open folder since it will not be re-opened, and we need to make sure
2004 // this state is reflected.
2005 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002006
Adam Cohendcd297f2013-06-18 13:13:40 -07002007 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screenId > -1 &&
Winson Chung3d503fb2011-07-13 17:25:49 -07002008 mWaitingForResult) {
2009 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
Adam Cohendcd297f2013-06-18 13:13:40 -07002010 outState.putLong(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screenId);
Winson Chung3d503fb2011-07-13 17:25:49 -07002011 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
2012 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002013 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_X, mPendingAddInfo.spanX);
2014 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y, mPendingAddInfo.spanY);
2015 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
Adam Cohen4637b5a2013-11-04 18:21:24 -08002016 outState.putInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID, mPendingAddWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002017 }
2018
Hyunyoung Song3f471442015-04-08 19:01:34 -07002019 // Save the current widgets tray?
2020 // TODO(hyunyoungs)
Adam Cohenc76e1dd2013-11-14 11:09:14 +00002021 outState.putSerializable(RUNTIME_STATE_VIEW_IDS, mItemIdToViewId);
Adam Cohen9211d422014-10-07 18:14:53 -07002022
2023 if (mLauncherCallbacks != null) {
2024 mLauncherCallbacks.onSaveInstanceState(outState);
2025 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002026 }
2027
2028 @Override
2029 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002030 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07002031
Winson Chunge7a03942011-08-05 15:05:12 -07002032 // Remove all pending runnables
2033 mHandler.removeMessages(ADVANCE_MSG);
2034 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07002035 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07002036
Winson Chungcd2b0142011-06-08 16:02:26 -07002037 // Stop callbacks from LauncherModel
Daniel Sandlercc8befa2013-06-11 14:45:48 -04002038 LauncherAppState app = (LauncherAppState.getInstance());
Adam Cohen1a85c582014-09-30 09:48:49 -07002039
2040 // It's possible to receive onDestroy after a new Launcher activity has
2041 // been created. In this case, don't interfere with the new Launcher.
2042 if (mModel.isCurrentCallbacks(this)) {
2043 mModel.stopLoader();
2044 app.setLauncher(null);
2045 }
Winson Chungcd2b0142011-06-08 16:02:26 -07002046
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002047 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07002048 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002049 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002050 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002051 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002052 mAppWidgetHost = null;
2053
2054 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002055
2056 TextKeyListener.getInstance().release();
2057
Joe Onorato34a0e1b2009-12-14 17:44:51 -08002058 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002059
Adam Cohenaccf3bf2012-04-30 16:07:43 -07002060 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002061 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
Adam Cohend552dd92013-11-26 12:13:11 -08002062 mWorkspace.removeAllWorkspaceScreens();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002063 mWorkspace = null;
2064 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08002065
Michael Jurka2ecf9952012-06-18 12:52:28 -07002066 LauncherAnimUtils.onDestroyActivity();
Adam Cohen9211d422014-10-07 18:14:53 -07002067
2068 if (mLauncherCallbacks != null) {
2069 mLauncherCallbacks.onDestroy();
2070 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002071 }
2072
Adam Cohena9cf38f2011-05-02 15:36:58 -07002073 public DragController getDragController() {
2074 return mDragController;
2075 }
2076
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002077 @Override
2078 public void startActivityForResult(Intent intent, int requestCode) {
Adam Cohen173f7112015-03-27 15:14:00 -07002079 onStartForResult(requestCode);
2080 super.startActivityForResult(intent, requestCode);
2081 }
2082
2083 @Override
2084 public void startIntentSenderForResult (IntentSender intent, int requestCode,
2085 Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) {
2086 onStartForResult(requestCode);
2087 try {
2088 super.startIntentSenderForResult(intent, requestCode,
2089 fillInIntent, flagsMask, flagsValues, extraFlags, options);
2090 } catch (IntentSender.SendIntentException e) {
2091 throw new ActivityNotFoundException();
2092 }
2093 }
2094
2095 private void onStartForResult(int requestCode) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002096 if (requestCode >= 0) {
2097 setWaitingForResult(true);
2098 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002099 }
2100
Winson Chung70d72102011-08-12 11:24:35 -07002101 /**
2102 * Indicates that we want global search for this activity by setting the globalSearch
2103 * argument for {@link #startSearch} to true.
2104 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002105 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07002106 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002107 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002108
Karl Rosaen138a0412009-04-23 19:00:21 -07002109 if (initialQuery == null) {
2110 // Use any text typed in the launcher as the initial query
2111 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07002112 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002113 if (appSearchData == null) {
2114 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01002115 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002116 }
Winson Chungadf0c182012-08-23 14:59:07 -07002117 Rect sourceBounds = new Rect();
2118 if (mSearchDropTargetBar != null) {
2119 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
2120 }
Romain Guycbb89e42009-06-08 15:52:54 -07002121
Ian Parkinson047036e2014-09-01 15:40:53 +01002122 boolean clearTextImmediately = startSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002123 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002124 if (clearTextImmediately) {
2125 clearTypedText();
2126 }
Winson Chungcd99cd32015-04-29 11:03:24 -07002127
2128 // We need to show the workspace after starting the search
2129 showWorkspace(true);
Bjorn Bringertc459e522013-06-07 19:36:01 +01002130 }
2131
Ian Parkinson047036e2014-09-01 15:40:53 +01002132 /**
2133 * Start a text search.
2134 *
2135 * @return {@code true} if the search will start immediately, so any further keypresses
2136 * will be handled directly by the search UI. {@code false} if {@link Launcher} should continue
2137 * to buffer keypresses.
2138 */
2139 public boolean startSearch(String initialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002140 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Adam Cohen9211d422014-10-07 18:14:53 -07002141 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
2142 return mLauncherCallbacks.startSearch(initialQuery, selectInitialQuery, appSearchData,
2143 sourceBounds);
2144 }
2145
Michael Jurkaa33411c2012-06-14 16:18:21 -07002146 startGlobalSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002147 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002148 return false;
Michael Jurkaa33411c2012-06-14 16:18:21 -07002149 }
2150
2151 /**
2152 * Starts the global search activity. This code is a copied from SearchManager
2153 */
Bjorn Bringertc459e522013-06-07 19:36:01 +01002154 private void startGlobalSearch(String initialQuery,
Michael Jurkaa33411c2012-06-14 16:18:21 -07002155 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002156 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07002157 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2158 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
2159 if (globalSearchActivity == null) {
2160 Log.w(TAG, "No global search activity found.");
2161 return;
2162 }
2163 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
2164 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2165 intent.setComponent(globalSearchActivity);
2166 // Make sure that we have a Bundle to put source in
2167 if (appSearchData == null) {
2168 appSearchData = new Bundle();
2169 } else {
2170 appSearchData = new Bundle(appSearchData);
2171 }
Adam Cohen9211d422014-10-07 18:14:53 -07002172 // Set source to package name of app that starts global search if not set already.
Michael Jurkaa33411c2012-06-14 16:18:21 -07002173 if (!appSearchData.containsKey("source")) {
2174 appSearchData.putString("source", getPackageName());
2175 }
2176 intent.putExtra(SearchManager.APP_DATA, appSearchData);
2177 if (!TextUtils.isEmpty(initialQuery)) {
2178 intent.putExtra(SearchManager.QUERY, initialQuery);
2179 }
2180 if (selectInitialQuery) {
2181 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
2182 }
2183 intent.setSourceBounds(sourceBounds);
2184 try {
2185 startActivity(intent);
2186 } catch (ActivityNotFoundException ex) {
2187 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
2188 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002189 }
2190
Winson Chungbedf9232015-07-10 12:38:30 -07002191 public void startSearchFromAllApps(View v, Intent searchIntent, String searchQuery) {
2192 if (mLauncherCallbacks != null && mLauncherCallbacks.startSearchFromAllApps(searchQuery)) {
2193 return;
2194 }
2195
2196 // If not handled, then just start the provided search intent
2197 startActivitySafely(v, searchIntent, null);
2198 }
2199
Yura4f93ec62014-02-04 14:15:21 +00002200 public boolean isOnCustomContent() {
2201 return mWorkspace.isOnOrMovingToCustomContent();
2202 }
2203
Winson Chung70d72102011-08-12 11:24:35 -07002204 @Override
Winson Chung70d72102011-08-12 11:24:35 -07002205 public boolean onPrepareOptionsMenu(Menu menu) {
2206 super.onPrepareOptionsMenu(menu);
Adam Cohen9211d422014-10-07 18:14:53 -07002207 if (mLauncherCallbacks != null) {
2208 return mLauncherCallbacks.onPrepareOptionsMenu(menu);
2209 }
Michael Jurkab94f3f82013-09-11 18:08:54 +02002210 return false;
Winson Chung70d72102011-08-12 11:24:35 -07002211 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002212
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002213 @Override
2214 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07002215 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07002216 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07002217 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002218 }
2219
Joe Onorato9c1289c2009-08-17 11:03:03 -04002220 public boolean isWorkspaceLocked() {
2221 return mWorkspaceLoading || mWaitingForResult;
2222 }
2223
Adam Cohen517a7f52014-03-01 12:12:59 -08002224 public boolean isWorkspaceLoading() {
2225 return mWorkspaceLoading;
2226 }
2227
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002228 private void setWorkspaceLoading(boolean value) {
2229 boolean isLocked = isWorkspaceLocked();
2230 mWorkspaceLoading = value;
2231 if (isLocked != isWorkspaceLocked()) {
2232 onWorkspaceLockedChanged();
2233 }
2234 }
2235
2236 private void setWaitingForResult(boolean value) {
2237 boolean isLocked = isWorkspaceLocked();
2238 mWaitingForResult = value;
2239 if (isLocked != isWorkspaceLocked()) {
2240 onWorkspaceLockedChanged();
2241 }
2242 }
2243
Adam Cohen9211d422014-10-07 18:14:53 -07002244 protected void onWorkspaceLockedChanged() {
2245 if (mLauncherCallbacks != null) {
2246 mLauncherCallbacks.onWorkspaceLockedChanged();
2247 }
2248 }
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002249
Michael Jurka0280c3b2010-09-17 15:00:07 -07002250 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07002251 mPendingAddInfo.container = ItemInfo.NO_ID;
Adam Cohendcd297f2013-06-18 13:13:40 -07002252 mPendingAddInfo.screenId = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002253 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
2254 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Sunny Goyal233ee962015-08-03 13:05:01 -07002255 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = 1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002256 mPendingAddInfo.dropPos = null;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002257 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07002258
Sunny Goyale6b63a32015-01-16 16:14:29 -08002259 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info, final
Adam Cohen59400422014-03-05 18:07:04 -08002260 AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo) {
Adam Cohenad4e15c2013-10-17 16:21:35 -07002261 addAppWidgetImpl(appWidgetId, info, boundWidget, appWidgetInfo, 0);
2262 }
2263
Sunny Goyale6b63a32015-01-16 16:14:29 -08002264 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
Adam Cohen59400422014-03-05 18:07:04 -08002265 final AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo,
2266 int delay) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002267 if (appWidgetInfo.configure != null) {
2268 mPendingAddWidgetInfo = appWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -08002269 mPendingAddWidgetId = appWidgetId;
Michael Jurkaaf442092010-06-10 17:01:57 -07002270
Bjorn Bringert7984c942009-12-09 15:38:25 +00002271 // Launch over to configure widget, if needed
Sunny Goyalffe83f12014-08-14 17:39:34 -07002272 mAppWidgetManager.startConfigActivity(appWidgetInfo, appWidgetId, this,
2273 mAppWidgetHost, REQUEST_CREATE_APPWIDGET);
2274
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002275 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00002276 // Otherwise just add it
Adam Cohenad4e15c2013-10-17 16:21:35 -07002277 Runnable onComplete = new Runnable() {
2278 @Override
2279 public void run() {
2280 // Exit spring loaded mode if necessary after adding the widget
2281 exitSpringLoadedDragModeDelayed(true, EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT,
2282 null);
2283 }
2284 };
Adam Cohendcd297f2013-06-18 13:13:40 -07002285 completeAddAppWidget(appWidgetId, info.container, info.screenId, boundWidget,
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002286 appWidgetInfo);
Adam Cohen689ff162014-05-08 17:27:56 -07002287 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, delay, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002288 }
2289 }
Romain Guycbb89e42009-06-08 15:52:54 -07002290
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002291 protected void moveToCustomContentScreen(boolean animate) {
Sandeep Siddharthaf2b47f12013-09-26 19:49:27 -07002292 // Close any folders that may be open.
2293 closeFolder();
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002294 mWorkspace.moveToCustomContentScreen(animate);
2295 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002296
2297 public void addPendingItem(PendingAddItemInfo info, long container, long screenId,
2298 int[] cell, int spanX, int spanY) {
2299 switch (info.itemType) {
2300 case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET:
2301 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
2302 int span[] = new int[2];
2303 span[0] = spanX;
2304 span[1] = spanY;
2305 addAppWidgetFromDrop((PendingAddWidgetInfo) info,
2306 container, screenId, cell, span);
2307 break;
2308 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
2309 processShortcutFromDrop(info.componentName, container, screenId, cell);
2310 break;
2311 default:
2312 throw new IllegalStateException("Unknown item type: " + info.itemType);
2313 }
2314 }
2315
Adam Cohenfbba09b2011-07-18 21:43:05 -07002316 /**
2317 * Process a shortcut drop.
2318 *
2319 * @param componentName The name of the component
Adam Cohendcd297f2013-06-18 13:13:40 -07002320 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002321 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002322 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002323 private void processShortcutFromDrop(ComponentName componentName, long container, long screenId,
2324 int[] cell) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002325 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002326 mPendingAddInfo.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002327 mPendingAddInfo.screenId = screenId;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002328 mPendingAddInfo.dropPos = null;
Adam Cohenfbba09b2011-07-18 21:43:05 -07002329
2330 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002331 mPendingAddInfo.cellX = cell[0];
2332 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002333 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002334
2335 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
2336 createShortcutIntent.setComponent(componentName);
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002337 Utilities.startActivityForResultSafely(this, createShortcutIntent, REQUEST_CREATE_SHORTCUT);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002338 }
2339
Adam Cohenfbba09b2011-07-18 21:43:05 -07002340 /**
2341 * Process a widget drop.
2342 *
2343 * @param info The PendingAppWidgetInfo of the widget being added.
Adam Cohendcd297f2013-06-18 13:13:40 -07002344 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002345 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002346 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002347 private void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, long screenId,
2348 int[] cell, int[] span) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07002349 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002350 mPendingAddInfo.container = info.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002351 mPendingAddInfo.screenId = info.screenId = screenId;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002352 mPendingAddInfo.dropPos = null;
Adam Cohend41fbf52012-02-16 23:53:59 -08002353 mPendingAddInfo.minSpanX = info.minSpanX;
2354 mPendingAddInfo.minSpanY = info.minSpanY;
2355
Adam Cohenfbba09b2011-07-18 21:43:05 -07002356 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002357 mPendingAddInfo.cellX = cell[0];
2358 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002359 }
Adam Cohend41fbf52012-02-16 23:53:59 -08002360 if (span != null) {
2361 mPendingAddInfo.spanX = span[0];
2362 mPendingAddInfo.spanY = span[1];
2363 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002364
Adam Cohened66b2b2012-01-23 17:28:51 -08002365 AppWidgetHostView hostView = info.boundWidget;
2366 int appWidgetId;
2367 if (hostView != null) {
2368 appWidgetId = hostView.getAppWidgetId();
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002369 addAppWidgetImpl(appWidgetId, info, hostView, info.info);
Sunny Goyal5b9ebca2015-06-01 18:37:32 -07002370
2371 // Clear the boundWidget so that it doesn't get destroyed.
2372 info.boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -08002373 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002374 // In this case, we either need to start an activity to get permission to bind
2375 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08002376 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07002377 Bundle options = info.bindOptions;
2378
Sunny Goyalffe83f12014-08-14 17:39:34 -07002379 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
2380 appWidgetId, info.info, options);
Adam Cohendd70d662012-10-04 16:53:44 -07002381 if (success) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002382 addAppWidgetImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07002383 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002384 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07002385 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
2386 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
2387 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Sunny Goyalffe83f12014-08-14 17:39:34 -07002388 mAppWidgetManager.getUser(mPendingAddWidgetInfo)
2389 .addToIntent(intent, AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE);
Adam Cohendd70d662012-10-04 16:53:44 -07002390 // TODO: we need to make sure that this accounts for the options bundle.
2391 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07002392 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
2393 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002394 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002395 }
2396
Adam Cohendcd297f2013-06-18 13:13:40 -07002397 FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07002398 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07002399 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002400 folderInfo.title = getText(R.string.folder_name);
2401
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002402 // Update the model
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07002403 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId,
2404 cellX, cellY);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002405 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002406
2407 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07002408 FolderIcon newFolder =
2409 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07002410 mWorkspace.addInScreen(newFolder, container, screenId, cellX, cellY, 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07002411 isWorkspaceLocked());
Winson Chung5f8afe62013-08-12 16:19:28 -07002412 // Force measure the new folder icon
2413 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
2414 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07002415 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002416 }
Romain Guycbb89e42009-06-08 15:52:54 -07002417
Winsonc0b52fe2015-09-09 16:38:15 -07002418 /**
Winsonfa56b3f2015-09-14 12:01:13 -07002419 * Unbinds the view for the specified item, and removes the item and all its children.
2420 *
2421 * @param v the view being removed.
Winsonfa56b3f2015-09-14 12:01:13 -07002422 * @param itemInfo the {@link ItemInfo} for this view.
2423 * @param deleteFromDb whether or not to delete this item from the db.
Winsonc0b52fe2015-09-09 16:38:15 -07002424 */
Winson2949fb52015-09-24 09:56:11 -07002425 public boolean removeItem(View v, ItemInfo itemInfo, boolean deleteFromDb) {
Winsonc0b52fe2015-09-09 16:38:15 -07002426 if (itemInfo instanceof ShortcutInfo) {
Winsonfa56b3f2015-09-14 12:01:13 -07002427 // Remove the shortcut from the folder before removing it from launcher
Winson2949fb52015-09-24 09:56:11 -07002428 FolderInfo folderInfo = sFolders.get(itemInfo.container);
2429 if (folderInfo != null) {
2430 folderInfo.remove((ShortcutInfo) itemInfo);
Winsonfa56b3f2015-09-14 12:01:13 -07002431 } else {
2432 mWorkspace.removeWorkspaceItem(v);
2433 }
Winsonc0b52fe2015-09-09 16:38:15 -07002434 if (deleteFromDb) {
2435 LauncherModel.deleteItemFromDatabase(this, itemInfo);
2436 }
2437 } else if (itemInfo instanceof FolderInfo) {
2438 final FolderInfo folderInfo = (FolderInfo) itemInfo;
2439 unbindFolder(folderInfo);
2440 mWorkspace.removeWorkspaceItem(v);
2441 if (deleteFromDb) {
2442 LauncherModel.deleteFolderAndContentsFromDatabase(this, folderInfo);
2443 }
2444 } else if (itemInfo instanceof LauncherAppWidgetInfo) {
2445 final LauncherAppWidgetInfo widgetInfo = (LauncherAppWidgetInfo) itemInfo;
2446 unbindAppWidget(widgetInfo, deleteFromDb);
2447 if (deleteFromDb) {
2448 LauncherModel.deleteItemFromDatabase(this, widgetInfo);
2449 }
2450 } else {
2451 return false;
2452 }
2453 return true;
2454 }
2455
2456 /**
2457 * Unbinds any launcher references to the folder.
2458 */
2459 private void unbindFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002460 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002461 }
2462
Winsonc0b52fe2015-09-09 16:38:15 -07002463 /**
2464 * Unbinds any launcher references to the widget and deletes the app widget id.
2465 */
2466 private void unbindAppWidget(final LauncherAppWidgetInfo widgetInfo, boolean deleteAppWidgetId) {
2467 final LauncherAppWidgetHost appWidgetHost = getAppWidgetHost();
2468 if (deleteAppWidgetId && appWidgetHost != null &&
2469 !widgetInfo.isCustomWidget() && widgetInfo.isWidgetIdValid()) {
2470 // Deleting an app widget ID is a void call but writes to disk before returning
2471 // to the caller...
2472 new AsyncTask<Void, Void, Void>() {
2473 public Void doInBackground(Void ... args) {
2474 appWidgetHost.deleteAppWidgetId(widgetInfo.appWidgetId);
2475 return null;
2476 }
Sunny Goyalf27cb0e2015-09-23 16:12:02 -07002477 }.executeOnExecutor(Utilities.THREAD_POOL_EXECUTOR);
Winsonc0b52fe2015-09-09 16:38:15 -07002478 }
2479 removeWidgetToAutoAdvance(widgetInfo.hostView);
2480 widgetInfo.hostView = null;
2481 }
2482
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002483 @Override
2484 public boolean dispatchKeyEvent(KeyEvent event) {
2485 if (event.getAction() == KeyEvent.ACTION_DOWN) {
2486 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002487 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07002488 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08002489 case KeyEvent.KEYCODE_VOLUME_DOWN:
Sunny Goyal4bbf4192014-11-11 12:23:59 -08002490 if (Utilities.isPropertyEnabled(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08002491 dumpState();
2492 return true;
2493 }
2494 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07002495 }
2496 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2497 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07002498 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002499 return true;
2500 }
2501 }
2502
2503 return super.dispatchKeyEvent(event);
2504 }
2505
Joe Onorato88ec0992009-11-19 13:16:06 -08002506 @Override
2507 public void onBackPressed() {
Adam Cohen9211d422014-10-07 18:14:53 -07002508 if (mLauncherCallbacks != null && mLauncherCallbacks.handleBackPressed()) {
2509 return;
2510 }
2511
Sunny Goyal45478022015-06-08 16:52:41 -07002512 if (mDragController.isDragging()) {
2513 mDragController.cancelDrag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08002514 return;
2515 }
2516
Winson Chungb745afb2015-03-02 11:51:23 -08002517 if (isAppsViewVisible()) {
2518 showWorkspace(true);
2519 } else if (isWidgetsViewVisible()) {
2520 showOverviewMode(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002521 } else if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002522 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002523 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07002524 Folder openFolder = mWorkspace.getOpenFolder();
2525 if (openFolder.isEditingName()) {
2526 openFolder.dismissEditingName();
2527 } else {
2528 closeFolder();
2529 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002530 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08002531 mWorkspace.exitWidgetResizeMode();
2532
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002533 // Back button is a no-op here, but give at least some feedback for the button press
2534 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07002535 }
Joe Onorato88ec0992009-11-19 13:16:06 -08002536 }
2537
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002538 /**
Sunny Goyal383c5072015-06-12 21:18:53 -07002539 * Re-listen when widget host is reset.
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002540 */
Sunny Goyal383c5072015-06-12 21:18:53 -07002541 @Override
2542 public void onAppWidgetHostReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08002543 if (mAppWidgetHost != null) {
2544 mAppWidgetHost.startListening();
2545 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002546 }
2547
2548 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002549 * Launches the intent referred by the clicked shortcut.
2550 *
2551 * @param v The view representing the clicked shortcut.
2552 */
2553 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002554 // Make sure that rogue clicks don't get through while allapps is launching, or after the
2555 // view has detached (it's possible for this to happen if the view is removed mid touch).
2556 if (v.getWindowToken() == null) {
2557 return;
2558 }
2559
Winson Chung9b0b2fe2012-02-24 13:03:34 -08002560 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002561 return;
2562 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07002563
Adam Cohen1697b792013-09-17 19:08:21 -07002564 if (v instanceof Workspace) {
2565 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002566 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002567 }
2568 return;
2569 }
2570
2571 if (v instanceof CellLayout) {
2572 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002573 showWorkspace(mWorkspace.indexOfChild(v), true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002574 }
2575 }
2576
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002577 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002578 if (tag instanceof ShortcutInfo) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002579 onClickAppShortcut(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002580 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002581 if (v instanceof FolderIcon) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002582 onClickFolderIcon(v);
Adam Cohena9cf38f2011-05-02 15:36:58 -07002583 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002584 } else if (v == mAllAppsButton) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002585 onClickAllAppsButton(v);
Sunny Goyal508da152014-08-14 10:53:27 -07002586 } else if (tag instanceof AppInfo) {
2587 startAppShortcutOrInfoActivity(v);
Sunny Goyalff572272014-07-23 13:58:07 -07002588 } else if (tag instanceof LauncherAppWidgetInfo) {
2589 if (v instanceof PendingAppWidgetHostView) {
2590 onClickPendingWidget((PendingAppWidgetHostView) v);
2591 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002592 }
2593 }
2594
Sunny Goyal70660032015-05-14 00:07:08 -07002595 @SuppressLint("ClickableViewAccessibility")
Michael Jurka0e260592010-06-30 17:07:39 -07002596 public boolean onTouch(View v, MotionEvent event) {
Michael Jurka0e260592010-06-30 17:07:39 -07002597 return false;
2598 }
2599
Michael Jurkaaf442092010-06-10 17:01:57 -07002600 /**
Sunny Goyalff572272014-07-23 13:58:07 -07002601 * Event handler for the app widget view which has not fully restored.
2602 */
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002603 public void onClickPendingWidget(final PendingAppWidgetHostView v) {
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002604 if (mIsSafeModeEnabled) {
2605 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2606 return;
2607 }
2608
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002609 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) v.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07002610 if (v.isReadyForClickSetup()) {
Sunny Goyalff572272014-07-23 13:58:07 -07002611 int widgetId = info.appWidgetId;
2612 AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
2613 if (appWidgetInfo != null) {
Adam Cohen59400422014-03-05 18:07:04 -08002614 mPendingAddWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(
2615 this, appWidgetInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07002616 mPendingAddInfo.copyFrom(info);
2617 mPendingAddWidgetId = widgetId;
2618
Sunny Goyalffe83f12014-08-14 17:39:34 -07002619 AppWidgetManagerCompat.getInstance(this).startConfigActivity(appWidgetInfo,
2620 info.appWidgetId, this, mAppWidgetHost, REQUEST_RECONFIGURE_APPWIDGET);
Sunny Goyalff572272014-07-23 13:58:07 -07002621 }
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002622 } else if (info.installProgress < 0) {
2623 // The install has not been queued
2624 final String packageName = info.providerName.getPackageName();
2625 showBrokenAppInstallDialog(packageName,
2626 new DialogInterface.OnClickListener() {
2627 public void onClick(DialogInterface dialog, int id) {
2628 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
2629 }
2630 });
2631 } else {
2632 // Download has started.
2633 final String packageName = info.providerName.getPackageName();
2634 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
Sunny Goyalff572272014-07-23 13:58:07 -07002635 }
2636 }
2637
2638 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002639 * Event handler for the "grid" button that appears on the home screen, which
2640 * enters all apps mode.
2641 *
2642 * @param v The view that was clicked.
2643 */
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002644 protected void onClickAllAppsButton(View v) {
2645 if (LOGD) Log.d(TAG, "onClickAllAppsButton");
Winson Chung76648c52015-07-10 14:33:23 -07002646 if (!isAppsViewVisible()) {
Winson Chung4ac30062015-05-08 17:34:17 -07002647 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07002648 true /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungbedf9232015-07-10 12:38:30 -07002649
2650 if (mLauncherCallbacks != null) {
2651 mLauncherCallbacks.onClickAllAppsButton(v);
2652 }
Winson Chung76648c52015-07-10 14:33:23 -07002653 }
2654 }
2655
2656 protected void onLongClickAllAppsButton(View v) {
2657 if (LOGD) Log.d(TAG, "onLongClickAllAppsButton");
2658 if (!isAppsViewVisible()) {
2659 showAppsView(true /* animated */, false /* resetListToTop */,
2660 true /* updatePredictedApps */, true /* focusSearchBar */);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002661 }
2662 }
2663
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002664 private void showBrokenAppInstallDialog(final String packageName,
2665 DialogInterface.OnClickListener onSearchClickListener) {
Sunny Goyale03b8122014-10-08 09:55:24 -07002666 new AlertDialog.Builder(this)
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002667 .setTitle(R.string.abandoned_promises_title)
2668 .setMessage(R.string.abandoned_promise_explanation)
2669 .setPositiveButton(R.string.abandoned_search, onSearchClickListener)
2670 .setNeutralButton(R.string.abandoned_clean_this,
2671 new DialogInterface.OnClickListener() {
2672 public void onClick(DialogInterface dialog, int id) {
2673 final UserHandleCompat user = UserHandleCompat.myUserHandle();
2674 mWorkspace.removeAbandonedPromise(packageName, user);
2675 }
2676 })
2677 .create().show();
2678 return;
2679 }
2680
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002681 /**
2682 * Event handler for an app shortcut click.
2683 *
2684 * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.
2685 */
Chris Wren40c5ed32014-06-24 18:24:23 -04002686 protected void onClickAppShortcut(final View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002687 if (LOGD) Log.d(TAG, "onClickAppShortcut");
2688 Object tag = v.getTag();
2689 if (!(tag instanceof ShortcutInfo)) {
2690 throw new IllegalArgumentException("Input must be a Shortcut");
2691 }
2692
2693 // Open shortcut
2694 final ShortcutInfo shortcut = (ShortcutInfo) tag;
Sunny Goyal1a745e82014-10-02 15:58:31 -07002695
2696 if (shortcut.isDisabled != 0) {
2697 int error = R.string.activity_not_available;
2698 if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_SAFEMODE) != 0) {
2699 error = R.string.safemode_shortcut_error;
2700 }
2701 Toast.makeText(this, error, Toast.LENGTH_SHORT).show();
2702 return;
2703 }
2704
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002705 final Intent intent = shortcut.intent;
2706
2707 // Check for special shortcuts
2708 if (intent.getComponent() != null) {
2709 final String shortcutClass = intent.getComponent().getClassName();
2710
2711 if (shortcutClass.equals(MemoryDumpActivity.class.getName())) {
2712 MemoryDumpActivity.startDump(this);
2713 return;
2714 } else if (shortcutClass.equals(ToggleWeightWatcher.class.getName())) {
2715 toggleShowWeightWatcher();
2716 return;
2717 }
2718 }
2719
Chris Wren40c5ed32014-06-24 18:24:23 -04002720 // Check for abandoned promise
Sunny Goyal34942622014-08-29 17:20:55 -07002721 if ((v instanceof BubbleTextView)
2722 && shortcut.isPromise()
2723 && !shortcut.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE)) {
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002724 showBrokenAppInstallDialog(
Sunny Goyal34942622014-08-29 17:20:55 -07002725 shortcut.getTargetComponent().getPackageName(),
Chris Wren40c5ed32014-06-24 18:24:23 -04002726 new DialogInterface.OnClickListener() {
2727 public void onClick(DialogInterface dialog, int id) {
Sunny Goyal508da152014-08-14 10:53:27 -07002728 startAppShortcutOrInfoActivity(v);
Chris Wren40c5ed32014-06-24 18:24:23 -04002729 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002730 });
Chris Wren40c5ed32014-06-24 18:24:23 -04002731 return;
2732 }
2733
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002734 // Start activities
Sunny Goyal508da152014-08-14 10:53:27 -07002735 startAppShortcutOrInfoActivity(v);
Adam Cohen9211d422014-10-07 18:14:53 -07002736
2737 if (mLauncherCallbacks != null) {
2738 mLauncherCallbacks.onClickAppShortcut(v);
2739 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002740 }
2741
Adam Cohen091440a2015-03-18 14:16:05 -07002742 @Thunk void startAppShortcutOrInfoActivity(View v) {
Chris Wren40c5ed32014-06-24 18:24:23 -04002743 Object tag = v.getTag();
Sunny Goyal508da152014-08-14 10:53:27 -07002744 final ShortcutInfo shortcut;
2745 final Intent intent;
2746 if (tag instanceof ShortcutInfo) {
2747 shortcut = (ShortcutInfo) tag;
2748 intent = shortcut.intent;
2749 int[] pos = new int[2];
2750 v.getLocationOnScreen(pos);
2751 intent.setSourceBounds(new Rect(pos[0], pos[1],
2752 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Chris Wren40c5ed32014-06-24 18:24:23 -04002753
Sunny Goyal508da152014-08-14 10:53:27 -07002754 } else if (tag instanceof AppInfo) {
2755 shortcut = null;
2756 intent = ((AppInfo) tag).intent;
2757 } else {
2758 throw new IllegalArgumentException("Input must be a Shortcut or AppInfo");
2759 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002760
2761 boolean success = startActivitySafely(v, intent, tag);
Winson Chung8f1eff72015-05-28 17:33:40 -07002762 mStats.recordLaunch(v, intent, shortcut);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002763
2764 if (success && v instanceof BubbleTextView) {
2765 mWaitingForResume = (BubbleTextView) v;
2766 mWaitingForResume.setStayPressed(true);
2767 }
2768 }
2769
2770 /**
2771 * Event handler for a folder icon click.
2772 *
2773 * @param v The view that was clicked. Must be an instance of {@link FolderIcon}.
2774 */
2775 protected void onClickFolderIcon(View v) {
2776 if (LOGD) Log.d(TAG, "onClickFolder");
2777 if (!(v instanceof FolderIcon)){
2778 throw new IllegalArgumentException("Input must be a FolderIcon");
2779 }
2780
Sunny Goyal317698b2015-07-29 11:45:41 -07002781 // TODO(sunnygoyal): Re-evaluate this code.
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002782 FolderIcon folderIcon = (FolderIcon) v;
2783 final FolderInfo info = folderIcon.getFolderInfo();
2784 Folder openFolder = mWorkspace.getFolderForTag(info);
2785
2786 // If the folder info reports that the associated folder is open, then verify that
2787 // it is actually opened. There have been a few instances where this gets out of sync.
2788 if (info.opened && openFolder == null) {
2789 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2790 + info.screenId + " (" + info.cellX + ", " + info.cellY + ")");
2791 info.opened = false;
2792 }
2793
2794 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
2795 // Close any open folder
2796 closeFolder();
2797 // Open the requested folder
2798 openFolder(folderIcon);
2799 } else {
2800 // Find the open folder...
2801 int folderScreen;
2802 if (openFolder != null) {
2803 folderScreen = mWorkspace.getPageForView(openFolder);
2804 // .. and close it
2805 closeFolder(openFolder);
2806 if (folderScreen != mWorkspace.getCurrentPage()) {
2807 // Close any folder open on the current screen
2808 closeFolder();
2809 // Pull the folder onto this screen
2810 openFolder(folderIcon);
2811 }
2812 }
2813 }
Adam Cohen9211d422014-10-07 18:14:53 -07002814
2815 if (mLauncherCallbacks != null) {
2816 mLauncherCallbacks.onClickFolderIcon(v);
2817 }
Michael Jurka5130e402011-10-13 04:55:35 -07002818 }
2819
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002820 /**
2821 * Event handler for the (Add) Widgets button that appears after a long press
2822 * on the home screen.
2823 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002824 protected void onClickAddWidgetButton(View view) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002825 if (LOGD) Log.d(TAG, "onClickAddWidgetButton");
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002826 if (mIsSafeModeEnabled) {
2827 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2828 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08002829 showWidgetsView(true /* animated */, true /* resetPageToZero */);
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002830 if (mLauncherCallbacks != null) {
2831 mLauncherCallbacks.onClickAddWidgetButton(view);
2832 }
Adam Cohen9211d422014-10-07 18:14:53 -07002833 }
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002834 }
2835
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002836 /**
2837 * Event handler for the wallpaper picker button that appears after a long press
2838 * on the home screen.
2839 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002840 protected void onClickWallpaperPicker(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002841 if (LOGD) Log.d(TAG, "onClickWallpaperPicker");
Tony Wickham3e776a82015-09-09 18:21:49 -07002842 int pageScroll = mWorkspace.getScrollForPage(mWorkspace.getPageNearestToCenterOfScreen());
2843 float offset = mWorkspace.mWallpaperOffset.wallpaperOffsetForScroll(pageScroll);
2844 startActivityForResult(new Intent(Intent.ACTION_SET_WALLPAPER).setPackage(getPackageName())
2845 .putExtra(WallpaperPickerActivity.EXTRA_WALLPAPER_OFFSET, offset),
Sunny Goyal6a1e95a2015-03-20 17:26:30 -07002846 REQUEST_PICK_WALLPAPER);
Adam Cohen9211d422014-10-07 18:14:53 -07002847
2848 if (mLauncherCallbacks != null) {
2849 mLauncherCallbacks.onClickWallpaperPicker(v);
2850 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002851 }
2852
2853 /**
2854 * Event handler for a click on the settings button that appears after a long press
2855 * on the home screen.
2856 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002857 protected void onClickSettingsButton(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002858 if (LOGD) Log.d(TAG, "onClickSettingsButton");
Adam Cohen9211d422014-10-07 18:14:53 -07002859 if (mLauncherCallbacks != null) {
2860 mLauncherCallbacks.onClickSettingsButton(v);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07002861 } else {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002862 startActivity(new Intent(this, SettingsActivity.class));
Adam Cohen9211d422014-10-07 18:14:53 -07002863 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002864 }
2865
Adam Cohen61f560d2013-09-30 15:58:20 -07002866 public View.OnTouchListener getHapticFeedbackTouchListener() {
2867 if (mHapticFeedbackTouchListener == null) {
2868 mHapticFeedbackTouchListener = new View.OnTouchListener() {
Sunny Goyal70660032015-05-14 00:07:08 -07002869 @SuppressLint("ClickableViewAccessibility")
Adam Cohen61f560d2013-09-30 15:58:20 -07002870 @Override
2871 public boolean onTouch(View v, MotionEvent event) {
2872 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
2873 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2874 }
2875 return false;
2876 }
2877 };
2878 }
2879 return mHapticFeedbackTouchListener;
2880 }
2881
Adam Cohen9211d422014-10-07 18:14:53 -07002882 public void onDragStarted(View view) {
2883 if (isOnCustomContent()) {
2884 // Custom content screen doesn't participate in drag and drop. If on custom
2885 // content screen, move to default.
2886 moveWorkspaceToDefaultScreen();
2887 }
2888
2889 if (mLauncherCallbacks != null) {
2890 mLauncherCallbacks.onDragStarted(view);
2891 }
2892 }
Anjali Koppal62d18ed2014-03-10 17:04:03 -07002893
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002894 /**
2895 * Called when the user stops interacting with the launcher.
2896 * This implies that the user is now on the homescreen and is not doing housekeeping.
2897 */
Adam Cohen9211d422014-10-07 18:14:53 -07002898 protected void onInteractionEnd() {
2899 if (mLauncherCallbacks != null) {
2900 mLauncherCallbacks.onInteractionEnd();
2901 }
2902 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002903
2904 /**
2905 * Called when the user starts interacting with the launcher.
2906 * The possible interactions are:
2907 * - open all apps
2908 * - reorder an app shortcut, or a widget
2909 * - open the overview mode.
2910 * This is a good time to stop doing things that only make sense
2911 * when the user is on the homescreen and not doing housekeeping.
2912 */
Adam Cohen9211d422014-10-07 18:14:53 -07002913 protected void onInteractionBegin() {
2914 if (mLauncherCallbacks != null) {
2915 mLauncherCallbacks.onInteractionBegin();
2916 }
2917 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002918
Winson Chungcd99cd32015-04-29 11:03:24 -07002919 /** Updates the interaction state. */
2920 public void updateInteraction(Workspace.State fromState, Workspace.State toState) {
Winson Chung83f59ab2015-05-05 17:21:58 -07002921 // Only update the interacting state if we are transitioning to/from a view with an
Winson Chungcd99cd32015-04-29 11:03:24 -07002922 // overlay
Winson Chungef7f8742015-06-04 17:18:17 -07002923 boolean fromStateWithOverlay = fromState != Workspace.State.NORMAL;
2924 boolean toStateWithOverlay = toState != Workspace.State.NORMAL;
Winson Chung83f59ab2015-05-05 17:21:58 -07002925 if (toStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002926 onInteractionBegin();
Winson Chung83f59ab2015-05-05 17:21:58 -07002927 } else if (fromStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002928 onInteractionEnd();
2929 }
2930 }
2931
Kenny Guyf07af7b2014-07-31 11:39:16 +01002932 void startApplicationDetailsActivity(ComponentName componentName, UserHandleCompat user) {
Kenny Guyf07af7b2014-07-31 11:39:16 +01002933 try {
2934 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Kenny Guyf07af7b2014-07-31 11:39:16 +01002935 launcherApps.showAppDetailsForProfile(componentName, user);
2936 } catch (SecurityException e) {
2937 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2938 Log.e(TAG, "Launcher does not have permission to launch settings");
2939 } catch (ActivityNotFoundException e) {
2940 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2941 Log.e(TAG, "Unable to launch settings");
2942 }
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002943 }
2944
Michael Jurka1e2f4652013-07-08 18:03:46 -07002945 // returns true if the activity was started
Kenny Guyd31df542014-06-30 15:12:11 +01002946 boolean startApplicationUninstallActivity(ComponentName componentName, int flags,
2947 UserHandleCompat user) {
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002948 if ((flags & AppInfo.DOWNLOADED_FLAG) == 0) {
Patrick Dubroy5539af72010-09-07 15:22:01 -07002949 // System applications cannot be installed. For now, show a toast explaining that.
2950 // We may give them the option of disabling apps this way.
2951 int messageId = R.string.uninstall_system_app_text;
2952 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
Michael Jurka1e2f4652013-07-08 18:03:46 -07002953 return false;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002954 } else {
Michael Jurka1e2f4652013-07-08 18:03:46 -07002955 String packageName = componentName.getPackageName();
2956 String className = componentName.getClassName();
Patrick Dubroy5539af72010-09-07 15:22:01 -07002957 Intent intent = new Intent(
2958 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002959 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2960 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Kenny Guyd31df542014-06-30 15:12:11 +01002961 if (user != null) {
2962 user.addToIntent(intent, Intent.EXTRA_USER);
2963 }
Patrick Dubroy5539af72010-09-07 15:22:01 -07002964 startActivity(intent);
Michael Jurka1e2f4652013-07-08 18:03:46 -07002965 return true;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002966 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002967 }
2968
Winson Chung8f1eff72015-05-28 17:33:40 -07002969 private boolean startActivity(View v, Intent intent, Object tag) {
Kenny Guyb6cc40b2014-05-13 15:58:58 +01002970 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002971 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002972 // Only launch using the new animation if the shortcut has not opted out (this is a
2973 // private contract between launcher and may be ignored in the future).
2974 boolean useLaunchAnimation = (v != null) &&
2975 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
Kenny Guyed131872014-04-30 03:02:21 +01002976 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
2977 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyed131872014-04-30 03:02:21 +01002978
Kenny Guy1317e2d2014-05-08 18:52:50 +01002979 UserHandleCompat user = null;
2980 if (intent.hasExtra(AppInfo.EXTRA_PROFILE)) {
2981 long serialNumber = intent.getLongExtra(AppInfo.EXTRA_PROFILE, -1);
2982 user = userManager.getUserForSerialNumber(serialNumber);
2983 }
2984
2985 Bundle optsBundle = null;
Winson Chung2672ff92012-05-04 16:22:30 -07002986 if (useLaunchAnimation) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002987 ActivityOptions opts = null;
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002988 if (Utilities.ATLEAST_MARSHMALLOW) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002989 int left = 0, top = 0;
2990 int width = v.getMeasuredWidth(), height = v.getMeasuredHeight();
2991 if (v instanceof TextView) {
2992 // Launch from center of icon, not entire view
Winson Chungb745afb2015-03-02 11:51:23 -08002993 Drawable icon = Workspace.getTextViewIcon((TextView) v);
2994 if (icon != null) {
2995 Rect bounds = icon.getBounds();
Chet Haasea8f996d2015-02-17 12:56:04 -08002996 left = (width - bounds.width()) / 2;
Winson Chungb745afb2015-03-02 11:51:23 -08002997 top = v.getPaddingTop();
Chet Haasea8f996d2015-02-17 12:56:04 -08002998 width = bounds.width();
2999 height = bounds.height();
3000 }
3001 }
Sunny Goyal9fc953b2015-08-17 12:24:25 -07003002 opts = ActivityOptions.makeClipRevealAnimation(v, left, top, width, height);
3003 } else if (!Utilities.ATLEAST_LOLLIPOP) {
Adam Cohen947e02b2015-05-22 19:23:34 -07003004 // Below L, we use a scale up animation
Adam Cohen2e52c902015-04-06 13:11:28 -07003005 opts = ActivityOptions.makeScaleUpAnimation(v, 0, 0,
Chet Haasea8f996d2015-02-17 12:56:04 -08003006 v.getMeasuredWidth(), v.getMeasuredHeight());
Sunny Goyal9fc953b2015-08-17 12:24:25 -07003007 } else if (Utilities.ATLEAST_LOLLIPOP_MR1) {
Adam Cohen947e02b2015-05-22 19:23:34 -07003008 // On L devices, we use the device default slide-up transition.
3009 // On L MR1 devices, we a custom version of the slide-up transition which
3010 // doesn't have the delay present in the device default.
3011 opts = ActivityOptions.makeCustomAnimation(this,
3012 R.anim.task_open_enter, R.anim.no_anim);
Chet Haasea8f996d2015-02-17 12:56:04 -08003013 }
Adam Cohen2e52c902015-04-06 13:11:28 -07003014 optsBundle = opts != null ? opts.toBundle() : null;
Adam Cohen6ea3b112014-06-11 11:38:49 -07003015 }
Kenny Guy1317e2d2014-05-08 18:52:50 +01003016
3017 if (user == null || user.equals(UserHandleCompat.myUserHandle())) {
3018 // Could be launching some bookkeeping activity
3019 startActivity(intent, optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07003020 } else {
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07003021 // TODO Component can be null when shortcuts are supported for secondary user
Kenny Guyc2bd8102014-06-30 12:30:31 +01003022 launcherApps.startActivityForProfile(intent.getComponent(), user,
3023 intent.getSourceBounds(), optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07003024 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08003025 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003026 } catch (SecurityException e) {
3027 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08003028 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003029 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07003030 "or use the exported attribute for this activity. "
3031 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003032 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08003033 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003034 }
Winson Chungaafa03c2010-06-11 17:34:16 -07003035
Winson Chungbedf9232015-07-10 12:38:30 -07003036 public boolean startActivitySafely(View v, Intent intent, Object tag) {
Michael Jurka86a720e2012-05-09 11:23:23 -07003037 boolean success = false;
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07003038 if (mIsSafeModeEnabled && !Utilities.isSystemApp(this, intent)) {
3039 Toast.makeText(this, R.string.safemode_shortcut_error, Toast.LENGTH_SHORT).show();
3040 return false;
3041 }
Michael Jurka86a720e2012-05-09 11:23:23 -07003042 try {
3043 success = startActivity(v, intent, tag);
3044 } catch (ActivityNotFoundException e) {
3045 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
3046 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
3047 }
3048 return success;
3049 }
3050
Adam Cohen268c4752012-06-06 17:47:33 -07003051 /**
3052 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
3053 * in the DragLayer in the exact absolute location of the original FolderIcon.
3054 */
3055 private void copyFolderIconToImage(FolderIcon fi) {
3056 final int width = fi.getMeasuredWidth();
3057 final int height = fi.getMeasuredHeight();
3058
3059 // Lazy load ImageView, Bitmap and Canvas
3060 if (mFolderIconImageView == null) {
3061 mFolderIconImageView = new ImageView(this);
3062 }
3063 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
3064 mFolderIconBitmap.getHeight() != height) {
3065 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
3066 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
3067 }
3068
3069 DragLayer.LayoutParams lp;
3070 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
3071 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
3072 } else {
3073 lp = new DragLayer.LayoutParams(width, height);
3074 }
3075
Adam Cohen307fe232012-08-16 17:55:58 -07003076 // The layout from which the folder is being opened may be scaled, adjust the starting
3077 // view size by this scale factor.
3078 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07003079 lp.customPosition = true;
3080 lp.x = mRectForFolderAnimation.left;
3081 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07003082 lp.width = (int) (scale * width);
3083 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07003084
3085 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
3086 fi.draw(mFolderIconCanvas);
3087 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07003088 if (fi.getFolder() != null) {
3089 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
3090 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07003091 }
Adam Cohen268c4752012-06-06 17:47:33 -07003092 // Just in case this image view is still in the drag layer from a previous animation,
3093 // we remove it and re-add it.
3094 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
3095 mDragLayer.removeView(mFolderIconImageView);
3096 }
3097 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07003098 if (fi.getFolder() != null) {
3099 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07003100 }
Adam Cohen268c4752012-06-06 17:47:33 -07003101 }
3102
Adam Cohen2801caf2011-05-13 20:57:39 -07003103 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003104 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003105 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
3106 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
3107 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
3108
Adam Cohenc51934b2011-07-26 21:07:43 -07003109 FolderInfo info = (FolderInfo) fi.getTag();
3110 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3111 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07003112 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
3113 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07003114 }
3115
Adam Cohen268c4752012-06-06 17:47:33 -07003116 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
3117 copyFolderIconToImage(fi);
3118 fi.setVisibility(View.INVISIBLE);
3119
Michael Jurka2ecf9952012-06-18 12:52:28 -07003120 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003121 scaleX, scaleY);
Sunny Goyal9fc953b2015-08-17 12:24:25 -07003122 if (Utilities.ATLEAST_LOLLIPOP) {
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003123 oa.setInterpolator(new LogDecelerateInterpolator(100, 0));
3124 }
3125 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohen2801caf2011-05-13 20:57:39 -07003126 oa.start();
3127 }
3128
Adam Cohen268c4752012-06-06 17:47:33 -07003129 private void shrinkAndFadeInFolderIcon(final FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003130 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003131 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
3132 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
3133 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
3134
Adam Cohen268c4752012-06-06 17:47:33 -07003135 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07003136
Adam Cohen268c4752012-06-06 17:47:33 -07003137 // We remove and re-draw the FolderIcon in-case it has changed
3138 mDragLayer.removeView(mFolderIconImageView);
3139 copyFolderIconToImage(fi);
Michael Jurka2ecf9952012-06-18 12:52:28 -07003140 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003141 scaleX, scaleY);
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003142 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07003143 oa.addListener(new AnimatorListenerAdapter() {
3144 @Override
3145 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07003146 if (cl != null) {
3147 cl.clearFolderLeaveBehind();
3148 // Remove the ImageView copy of the FolderIcon and make the original visible.
3149 mDragLayer.removeView(mFolderIconImageView);
3150 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07003151 }
3152 }
3153 });
Adam Cohen2801caf2011-05-13 20:57:39 -07003154 oa.start();
3155 }
3156
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003157 /**
Michael Jurka774bd372010-10-22 13:40:50 -07003158 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003159 * is animated relative to the specified View. If the View is null, no animation
3160 * is played.
3161 *
3162 * @param folderInfo The FolderInfo describing the folder to open.
3163 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07003164 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07003165 Folder folder = folderIcon.getFolder();
Sunny Goyalf4066152015-04-15 09:42:19 -07003166 Folder openFolder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
3167 if (openFolder != null && openFolder != folder) {
3168 // Close any open folder before opening a folder.
3169 closeFolder();
3170 }
3171
Adam Cohena9cf38f2011-05-02 15:36:58 -07003172 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003173
Adam Cohena9cf38f2011-05-02 15:36:58 -07003174 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003175
Sunny Goyalf4066152015-04-15 09:42:19 -07003176 // While the folder is open, the position of the icon cannot change.
3177 ((CellLayout.LayoutParams) folderIcon.getLayoutParams()).canReorder = false;
3178
Adam Cohen4554ee12011-08-03 16:13:21 -07003179 // Just verify that the folder hasn't already been added to the DragLayer.
3180 // There was a one-off crash where the folder had a parent already.
3181 if (folder.getParent() == null) {
3182 mDragLayer.addView(folder);
3183 mDragController.addDropTarget((DropTarget) folder);
3184 } else {
3185 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
3186 folder.getParent() + ").");
3187 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07003188 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07003189 growAndFadeOutFolderIcon(folderIcon);
Winson Chung83ca4802013-04-12 15:10:52 -07003190
3191 // Notify the accessibility manager that this folder "window" has appeared and occluded
3192 // the workspace items
3193 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
3194 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07003195 }
3196
3197 public void closeFolder() {
Adam Cohen37c717f2013-11-26 11:50:15 -08003198 Folder folder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
Adam Cohen4554ee12011-08-03 16:13:21 -07003199 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07003200 if (folder.isEditingName()) {
3201 folder.dismissEditingName();
3202 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003203 closeFolder(folder);
3204 }
3205 }
3206
Sunny Goyal83a8f042015-05-19 12:52:12 -07003207 public void closeFolder(Folder folder) {
Adam Cohen4554ee12011-08-03 16:13:21 -07003208 folder.getInfo().opened = false;
3209
3210 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
3211 if (parent != null) {
3212 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
3213 shrinkAndFadeInFolderIcon(fi);
Sunny Goyalf4066152015-04-15 09:42:19 -07003214 if (fi != null) {
3215 ((CellLayout.LayoutParams) fi.getLayoutParams()).canReorder = true;
3216 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003217 }
3218 folder.animateClosed();
Winson Chung83ca4802013-04-12 15:10:52 -07003219
3220 // Notify the accessibility manager that this folder "window" has disappeard and no
3221 // longer occludeds the workspace items
3222 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003223 }
3224
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003225 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07003226 if (!isDraggingEnabled()) return false;
3227 if (isWorkspaceLocked()) return false;
3228 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003229
Winson Chung76648c52015-07-10 14:33:23 -07003230 if (v == mAllAppsButton) {
3231 onLongClickAllAppsButton(v);
3232 return true;
3233 }
3234
Adam Cohen1697b792013-09-17 19:08:21 -07003235 if (v instanceof Workspace) {
3236 if (!mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003237 if (!mWorkspace.isTouchActive()) {
3238 showOverviewMode(true);
Adam Cohen93c97562013-09-26 13:48:01 -07003239 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3240 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
3241 return true;
3242 } else {
3243 return false;
3244 }
Adam Cohenaa4c8c12014-06-06 11:52:52 -07003245 } else {
3246 return false;
Adam Cohen1697b792013-09-17 19:08:21 -07003247 }
Adam Cohen1697b792013-09-17 19:08:21 -07003248 }
3249
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003250 CellLayout.CellInfo longClickCellInfo = null;
3251 View itemUnderLongClick = null;
3252 if (v.getTag() instanceof ItemInfo) {
3253 ItemInfo info = (ItemInfo) v.getTag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08003254 longClickCellInfo = new CellLayout.CellInfo(v, info);
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003255 itemUnderLongClick = longClickCellInfo.cell;
3256 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003257 }
3258
Winson Chung3d503fb2011-07-13 17:25:49 -07003259 // The hotseat touch handling does not go through Workspace, and we always allow long press
3260 // on hotseat items.
Dan Sandlere26d0942014-01-13 14:30:14 -05003261 final boolean inHotseat = isHotseatLayout(v);
Sunny Goyal8e2133b2015-05-06 13:39:07 -07003262 if (!mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07003263 if (itemUnderLongClick == null) {
Adam Cohend3ecce92013-09-16 14:58:00 -07003264 // User long pressed on empty space
3265 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3266 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Adam Cohend3ecce92013-09-16 14:58:00 -07003267 if (mWorkspace.isInOverviewMode()) {
3268 mWorkspace.startReordering(v);
3269 } else {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003270 showOverviewMode(true);
Adam Cohendedbd962013-07-11 14:21:49 -07003271 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003272 } else {
Dan Sandlere26d0942014-01-13 14:30:14 -05003273 final boolean isAllAppsButton = inHotseat && isAllAppsButtonRank(
3274 mHotseat.getOrderInHotseat(
3275 longClickCellInfo.cellX,
3276 longClickCellInfo.cellY));
3277 if (!(itemUnderLongClick instanceof Folder || isAllAppsButton)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003278 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07003279 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003280 }
3281 }
3282 }
3283 return true;
3284 }
3285
Winson Chung3d503fb2011-07-13 17:25:49 -07003286 boolean isHotseatLayout(View layout) {
3287 return mHotseat != null && layout != null &&
3288 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
3289 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08003290
Winson Chung3d503fb2011-07-13 17:25:49 -07003291 /**
3292 * Returns the CellLayout of the specified container at the specified screen.
3293 */
Sunny Goyal92820592015-03-02 11:31:35 -08003294 public CellLayout getCellLayout(long container, long screenId) {
Winson Chung3d503fb2011-07-13 17:25:49 -07003295 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3296 if (mHotseat != null) {
3297 return mHotseat.getLayout();
3298 } else {
3299 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08003300 }
Winson Chung3d503fb2011-07-13 17:25:49 -07003301 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08003302 return mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08003303 }
3304 }
3305
Winson Chungb745afb2015-03-02 11:51:23 -08003306 /**
3307 * For overridden classes.
3308 */
Daniel Sandler843e8602010-06-07 14:59:01 -04003309 public boolean isAllAppsVisible() {
Winson Chungb745afb2015-03-02 11:51:23 -08003310 return isAppsViewVisible();
3311 }
3312
3313 public boolean isAppsViewVisible() {
3314 return (mState == State.APPS) || (mOnResumeState == State.APPS);
3315 }
3316
3317 public boolean isWidgetsViewVisible() {
3318 return (mState == State.WIDGETS) || (mOnResumeState == State.WIDGETS);
Joe Onoratofb0ca672009-09-14 17:55:46 -04003319 }
3320
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003321 private void setWorkspaceBackground(int background) {
3322 switch (background) {
3323 case WORKSPACE_BACKGROUND_TRANSPARENT:
3324 getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
3325 break;
3326 case WORKSPACE_BACKGROUND_BLACK:
3327 getWindow().setBackgroundDrawable(null);
3328 break;
3329 default:
3330 getWindow().setBackgroundDrawable(mWorkspaceBackgroundDrawable);
3331 }
Craig Mautner360310b2012-10-26 15:13:08 -07003332 }
3333
Selim Cinek3a8a8f72014-01-16 10:38:38 -08003334 protected void changeWallpaperVisiblity(boolean visible) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003335 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
3336 int curflags = getWindow().getAttributes().flags
3337 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
3338 if (wpflags != curflags) {
3339 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
3340 }
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003341 setWorkspaceBackground(visible ? WORKSPACE_BACKGROUND_GRADIENT : WORKSPACE_BACKGROUND_BLACK);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003342 }
3343
Michael Jurkae326f182011-11-21 14:05:46 -08003344 @Override
3345 public void onTrimMemory(int level) {
3346 super.onTrimMemory(level);
Adam Cohen3f9c9712014-10-31 11:48:25 -07003347 if (level >= ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
3348 // The widget preview db can result in holding onto over
3349 // 3MB of memory for caching which isn't necessary.
3350 SQLiteDatabase.releaseMemory();
3351
Adam Cohenc8f4e1b2014-11-19 16:03:20 -08003352 // This clears all widget bitmaps from the widget tray
Hyunyoung Song3f471442015-04-08 19:01:34 -07003353 // TODO(hyunyoungs)
Michael Jurkae326f182011-11-21 14:05:46 -08003354 }
Robert Kozikowski67c30862015-03-30 23:46:46 +01003355 if (mLauncherCallbacks != null) {
3356 mLauncherCallbacks.onTrimMemory(level);
3357 }
Michael Jurkae326f182011-11-21 14:05:46 -08003358 }
3359
Winson5c6bdbb2015-09-03 11:36:19 -07003360 /**
3361 * @return whether or not the Launcher state changed.
3362 */
3363 public boolean showWorkspace(boolean animated) {
3364 return showWorkspace(WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated, null);
Adam Cohened307df2013-10-02 09:37:31 -07003365 }
3366
Winson5c6bdbb2015-09-03 11:36:19 -07003367 /**
3368 * @return whether or not the Launcher state changed.
3369 */
3370 public boolean showWorkspace(boolean animated, Runnable onCompleteRunnable) {
3371 return showWorkspace(WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated,
Winson Chungef7f8742015-06-04 17:18:17 -07003372 onCompleteRunnable);
Winson Chungdc61c4d2015-04-20 18:26:57 -07003373 }
3374
Winson5c6bdbb2015-09-03 11:36:19 -07003375 /**
3376 * @return whether or not the Launcher state changed.
3377 */
3378 protected boolean showWorkspace(int snapToPage, boolean animated) {
3379 return showWorkspace(snapToPage, animated, null);
Winson Chungdc61c4d2015-04-20 18:26:57 -07003380 }
3381
Winson5c6bdbb2015-09-03 11:36:19 -07003382 /**
3383 * @return whether or not the Launcher state changed.
3384 */
3385 boolean showWorkspace(int snapToPage, boolean animated, Runnable onCompleteRunnable) {
Winson Chung0f785722015-04-08 10:27:49 -07003386 boolean changed = mState != State.WORKSPACE ||
3387 mWorkspace.getState() != Workspace.State.NORMAL;
3388 if (changed) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003389 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003390 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3391 Workspace.State.NORMAL, snapToPage, animated, onCompleteRunnable);
Winson Chungc7d2b602012-05-16 17:02:20 -07003392
Michael Jurkab3e22d92011-10-31 15:58:33 -07003393 // Set focus to the AppsCustomize button
3394 if (mAllAppsButton != null) {
3395 mAllAppsButton.requestFocus();
3396 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003397 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07003398
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003399 // Change the state *after* we've called all the transition code
3400 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08003401
Winson Chung5fb63472011-02-02 17:03:37 -08003402 // Resume the auto-advance of widgets
3403 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08003404 updateAutoAdvanceState();
Winson Chung5fb63472011-02-02 17:03:37 -08003405
Winson Chung0f785722015-04-08 10:27:49 -07003406 if (changed) {
3407 // Send an accessibility event to announce the context change
3408 getWindow().getDecorView()
3409 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Winson Chung0f785722015-04-08 10:27:49 -07003410 }
Winson5c6bdbb2015-09-03 11:36:19 -07003411 return changed;
Bjorn Bringertc459e522013-06-07 19:36:01 +01003412 }
3413
Adam Cohened307df2013-10-02 09:37:31 -07003414 void showOverviewMode(boolean animated) {
3415 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003416 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3417 Workspace.State.OVERVIEW,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003418 WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated,
3419 null /* onCompleteRunnable */);
Adam Cohened307df2013-10-02 09:37:31 -07003420 mState = State.WORKSPACE;
Joe Onorato00acb122009-08-04 16:04:30 -04003421 }
3422
Winson Chungb745afb2015-03-02 11:51:23 -08003423 /**
3424 * Shows the apps view.
3425 */
Winson Chung76648c52015-07-10 14:33:23 -07003426 void showAppsView(boolean animated, boolean resetListToTop, boolean updatePredictedApps,
3427 boolean focusSearchBar) {
Winson Chungb745afb2015-03-02 11:51:23 -08003428 if (resetListToTop) {
3429 mAppsView.scrollToTop();
3430 }
Winson Chung4ac30062015-05-08 17:34:17 -07003431 if (updatePredictedApps) {
3432 tryAndUpdatePredictedApps();
3433 }
Winson Chung76648c52015-07-10 14:33:23 -07003434 showAppsOrWidgets(State.APPS, animated, focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003435 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003436
Winson Chungb745afb2015-03-02 11:51:23 -08003437 /**
3438 * Shows the widgets view.
3439 */
3440 void showWidgetsView(boolean animated, boolean resetPageToZero) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003441 if (LOGD) Log.d(TAG, "showWidgetsView:" + animated + " resetPageToZero:" + resetPageToZero);
Winson Chung82963d52013-10-09 11:20:57 -07003442 if (resetPageToZero) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003443 mWidgetsView.scrollToTop();
Winson Chung82963d52013-10-09 11:20:57 -07003444 }
Winson Chung76648c52015-07-10 14:33:23 -07003445 showAppsOrWidgets(State.WIDGETS, animated, false);
Hyunyoung Song3f471442015-04-08 19:01:34 -07003446
3447 mWidgetsView.post(new Runnable() {
Adam Cohendcc5e712014-06-23 15:38:55 -04003448 @Override
3449 public void run() {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003450 mWidgetsView.requestFocus();
Adam Cohendcc5e712014-06-23 15:38:55 -04003451 }
3452 });
Winson Chungb745afb2015-03-02 11:51:23 -08003453 }
3454
3455 /**
3456 * Sets up the transition to show the apps/widgets view.
Hyunyoung Songb7900832015-05-15 16:29:45 -07003457 *
3458 * @return whether the current from and to state allowed this operation
Winson Chungb745afb2015-03-02 11:51:23 -08003459 */
Hyunyoung Songb7900832015-05-15 16:29:45 -07003460 // TODO: calling method should use the return value so that when {@code false} is returned
3461 // the workspace transition doesn't fall into invalid state.
Winson Chung76648c52015-07-10 14:33:23 -07003462 private boolean showAppsOrWidgets(State toState, boolean animated, boolean focusSearchBar) {
Hyunyoung Songb7900832015-05-15 16:29:45 -07003463 if (mState != State.WORKSPACE && mState != State.APPS_SPRING_LOADED &&
3464 mState != State.WIDGETS_SPRING_LOADED) {
3465 return false;
3466 }
3467 if (toState != State.APPS && toState != State.WIDGETS) {
3468 return false;
3469 }
Winson Chungb745afb2015-03-02 11:51:23 -08003470
3471 if (toState == State.APPS) {
Winson Chung006ee262015-08-03 14:40:11 -07003472 mStateTransitionAnimation.startAnimationToAllApps(mWorkspace.getState(), animated,
3473 focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003474 } else {
Winson Chung006ee262015-08-03 14:40:11 -07003475 mStateTransitionAnimation.startAnimationToWidgets(mWorkspace.getState(), animated);
Winson Chungb745afb2015-03-02 11:51:23 -08003476 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003477
Michael Jurkab3e22d92011-10-31 15:58:33 -07003478 // Change the state *after* we've called all the transition code
Winson Chungb745afb2015-03-02 11:51:23 -08003479 mState = toState;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003480
3481 // Pause the auto-advance of widgets until we are out of AllApps
3482 mUserPresent = false;
Winson Chungb745afb2015-03-02 11:51:23 -08003483 updateAutoAdvanceState();
Michael Jurkab3e22d92011-10-31 15:58:33 -07003484 closeFolder();
3485
3486 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07003487 getWindow().getDecorView()
3488 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Hyunyoung Songb7900832015-05-15 16:29:45 -07003489 return true;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003490 }
3491
Winson Chungcd99cd32015-04-29 11:03:24 -07003492 /**
3493 * Updates the workspace and interaction state on state change, and return the animation to this
3494 * new state.
3495 */
3496 public Animator startWorkspaceStateChangeAnimation(Workspace.State toState, int toPage,
Winson Chung006ee262015-08-03 14:40:11 -07003497 boolean animated, HashMap<View, Integer> layerViews) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003498 Workspace.State fromState = mWorkspace.getState();
Winson Chung006ee262015-08-03 14:40:11 -07003499 Animator anim = mWorkspace.setStateWithAnimation(toState, toPage, animated, layerViews);
Winson Chungcd99cd32015-04-29 11:03:24 -07003500 updateInteraction(fromState, toState);
3501 return anim;
3502 }
3503
Hyunyoung Song3f471442015-04-08 19:01:34 -07003504 public void enterSpringLoadedDragMode() {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003505 if (LOGD) Log.d(TAG, String.format("enterSpringLoadedDragMode [mState=%s", mState.name()));
Winson Chungb745afb2015-03-02 11:51:23 -08003506 if (mState == State.WORKSPACE || mState == State.APPS_SPRING_LOADED ||
3507 mState == State.WIDGETS_SPRING_LOADED) {
3508 return;
Winson Chungb26f3d62011-06-02 10:49:29 -07003509 }
Winson Chungb745afb2015-03-02 11:51:23 -08003510
Winson Chung006ee262015-08-03 14:40:11 -07003511 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3512 Workspace.State.SPRING_LOADED,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003513 WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, true /* animated */,
3514 null /* onCompleteRunnable */);
Winson Chungb745afb2015-03-02 11:51:23 -08003515 mState = isAppsViewVisible() ? State.APPS_SPRING_LOADED : State.WIDGETS_SPRING_LOADED;
Michael Jurkad3ef3062010-11-23 16:23:58 -08003516 }
Adam Cohen7777d962011-08-18 18:58:38 -07003517
Hyunyoung Song3f471442015-04-08 19:01:34 -07003518 public void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, int delay,
Adam Cohened66b2b2012-01-23 17:28:51 -08003519 final Runnable onCompleteRunnable) {
Winson Chungb745afb2015-03-02 11:51:23 -08003520 if (mState != State.APPS_SPRING_LOADED && mState != State.WIDGETS_SPRING_LOADED) return;
Winson Chung09bfc452011-09-09 11:30:20 -07003521
Winson Chunge7a03942011-08-05 15:05:12 -07003522 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07003523 @Override
3524 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003525 if (successfulDrop) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003526 // TODO(hyunyoungs): verify if this hack is still needed, if not, delete.
3527 //
Michael Jurka7bdb25a2011-08-03 15:16:44 -07003528 // Before we show workspace, hide all apps again because
3529 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
3530 // clean up our state transition functions
Hyunyoung Song3f471442015-04-08 19:01:34 -07003531 mWidgetsView.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003532 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07003533 } else {
3534 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003535 }
Winson Chung557d6ed2011-07-08 15:34:52 -07003536 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07003537 }, delay);
Winson Chung557d6ed2011-07-08 15:34:52 -07003538 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003539
Michael Jurkad3ef3062010-11-23 16:23:58 -08003540 void exitSpringLoadedDragMode() {
Winson Chungb745afb2015-03-02 11:51:23 -08003541 if (mState == State.APPS_SPRING_LOADED) {
Winson Chung4ac30062015-05-08 17:34:17 -07003542 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07003543 false /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -08003544 } else if (mState == State.WIDGETS_SPRING_LOADED) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003545 showWidgetsView(true, false);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003546 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003547 }
3548
Winson Chung4ac30062015-05-08 17:34:17 -07003549 /**
3550 * Updates the set of predicted apps if it hasn't been updated since the last time Launcher was
3551 * resumed.
3552 */
3553 private void tryAndUpdatePredictedApps() {
3554 if (mLauncherCallbacks != null) {
Winson Chung6b1c73f2015-06-18 11:38:42 -07003555 List<ComponentKey> apps = mLauncherCallbacks.getPredictedApps();
Winson Chung91c05952015-06-25 12:17:30 -07003556 if (apps != null) {
Winson Chung4ac30062015-05-08 17:34:17 -07003557 mAppsView.setPredictedApps(apps);
3558 }
3559 }
3560 }
3561
Michael Jurkab3e22d92011-10-31 15:58:33 -07003562 void lockAllApps() {
3563 // TODO
3564 }
3565
3566 void unlockAllApps() {
3567 // TODO
3568 }
3569
Sunny Goyal594d76d2014-11-06 10:12:54 -08003570 protected void disableVoiceButtonProxy(boolean disable) {
3571 // NO-OP
Winson Chungbb185bd2011-11-21 12:31:42 -08003572 }
3573
Winsonf768d932015-09-25 16:12:35 -07003574 public boolean launcherCallbacksProvidesSearch() {
3575 return (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch());
3576 }
3577
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003578 public View getOrCreateQsbBar() {
Winsonf768d932015-09-25 16:12:35 -07003579 if (launcherCallbacksProvidesSearch()) {
Adam Cohenc2d6e892014-10-16 09:49:24 -07003580 return mLauncherCallbacks.getQsbBar();
Adam Cohen9211d422014-10-07 18:14:53 -07003581 }
3582
Adam Cohen24ce0b32014-01-14 16:18:14 -08003583 if (mQsb == null) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003584 AppWidgetProviderInfo searchProvider = Utilities.getSearchWidgetProvider(this);
3585 if (searchProvider == null) {
3586 return null;
3587 }
3588
3589 Bundle opts = new Bundle();
3590 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_HOST_CATEGORY,
Adam Coheneb8e2822015-02-20 16:38:48 +00003591 AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003592
3593 SharedPreferences sp = getSharedPreferences(
3594 LauncherAppState.getSharedPreferencesKey(), MODE_PRIVATE);
3595 int widgetId = sp.getInt(QSB_WIDGET_ID, -1);
Sunny Goyal416541c2014-11-14 11:59:57 -08003596 AppWidgetProviderInfo widgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003597 if (!searchProvider.provider.flattenToString().equals(
3598 sp.getString(QSB_WIDGET_PROVIDER, null))
Sunny Goyal416541c2014-11-14 11:59:57 -08003599 || (widgetInfo == null)
3600 || !widgetInfo.provider.equals(searchProvider.provider)) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003601 // A valid widget is not already bound.
3602 if (widgetId > -1) {
3603 mAppWidgetHost.deleteAppWidgetId(widgetId);
3604 widgetId = -1;
3605 }
3606
3607 // Try to bind a new widget
3608 widgetId = mAppWidgetHost.allocateAppWidgetId();
3609
3610 if (!AppWidgetManagerCompat.getInstance(this)
3611 .bindAppWidgetIdIfAllowed(widgetId, searchProvider, opts)) {
3612 mAppWidgetHost.deleteAppWidgetId(widgetId);
3613 widgetId = -1;
3614 }
3615
3616 sp.edit()
3617 .putInt(QSB_WIDGET_ID, widgetId)
3618 .putString(QSB_WIDGET_PROVIDER, searchProvider.provider.flattenToString())
3619 .commit();
3620 }
3621
Sunny Goyal8d595092015-07-06 12:22:14 -07003622 mAppWidgetHost.setQsbWidgetId(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003623 if (widgetId != -1) {
3624 mQsb = mAppWidgetHost.createView(this, widgetId, searchProvider);
Sunny Goyalebfae6e2015-08-27 15:30:25 -07003625 mQsb.setId(R.id.qsb_widget);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003626 mQsb.updateAppWidgetOptions(opts);
3627 mQsb.setPadding(0, 0, 0, 0);
3628 mSearchDropTargetBar.addView(mQsb);
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003629 mSearchDropTargetBar.setQsbSearchBar(mQsb);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003630 }
Cristina Stancu476493b2013-08-07 17:20:14 +01003631 }
Adam Cohen24ce0b32014-01-14 16:18:14 -08003632 return mQsb;
Cristina Stancu476493b2013-08-07 17:20:14 +01003633 }
3634
Sunny Goyal22235bc2015-04-03 09:23:43 -07003635 private void reinflateQSBIfNecessary() {
3636 if (mQsb instanceof LauncherAppWidgetHostView &&
3637 ((LauncherAppWidgetHostView) mQsb).isReinflateRequired()) {
3638 mSearchDropTargetBar.removeView(mQsb);
3639 mQsb = null;
3640 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
3641 }
3642 }
3643
Michael Jurkad7c28052012-04-27 15:43:36 -07003644 @Override
3645 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07003646 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07003647 final List<CharSequence> text = event.getText();
3648 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07003649 // Populate event with a fake title based on the current state.
Winson Chungb745afb2015-03-02 11:51:23 -08003650 if (mState == State.APPS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003651 text.add(getString(R.string.all_apps_button_label));
Winson Chungb745afb2015-03-02 11:51:23 -08003652 } else if (mState == State.WIDGETS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003653 text.add(getString(R.string.widget_button_text));
Hyunyoung Song166e6482015-06-25 21:06:07 -07003654 } else if (mWorkspace != null) {
3655 text.add(mWorkspace.getCurrentPageDescription());
alanv1d4fde62012-10-17 13:15:47 -07003656 } else {
3657 text.add(getString(R.string.all_apps_home_button_label));
3658 }
Michael Jurkad7c28052012-04-27 15:43:36 -07003659 return result;
3660 }
3661
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003662 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003663 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003664 */
Adam Cohen091440a2015-03-18 14:16:05 -07003665 @Thunk class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003666 @Override
3667 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003668 closeSystemDialogs();
3669 }
3670 }
3671
3672 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07003673 * If the activity is currently paused, signal that we need to run the passed Runnable
3674 * in onResume.
3675 *
3676 * This needs to be called from incoming places where resources might have been loaded
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003677 * while the activity is paused. That is because the Configuration (e.g., rotation) might be
3678 * wrong when we're not running, and if the activity comes back to what the configuration was
3679 * when we were paused, activity is not restarted.
Michael Jurka7607c2f2013-04-03 14:33:19 -07003680 *
3681 * Implementation of the method from LauncherModel.Callbacks.
3682 *
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003683 * @return {@code true} if we are currently paused. The caller might be able to skip some work
Michael Jurka7607c2f2013-04-03 14:33:19 -07003684 */
Rahul Chaturvedi799aa042015-06-01 21:26:41 -04003685 @Thunk boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003686 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003687 if (LOGD) Log.d(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02003688 if (deletePreviousRunnables) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07003689 while (mBindOnResumeCallbacks.remove(run)) {
Michael Jurkac402cd92013-05-20 15:49:32 +02003690 }
3691 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07003692 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07003693 return true;
3694 } else {
3695 return false;
3696 }
3697 }
3698
Michael Jurkac402cd92013-05-20 15:49:32 +02003699 private boolean waitUntilResume(Runnable run) {
3700 return waitUntilResume(run, false);
3701 }
3702
Michael Jurka1e2f4652013-07-08 18:03:46 -07003703 public void addOnResumeCallback(Runnable run) {
Michael Jurka54554252013-08-01 12:52:23 +02003704 mOnResumeCallbacks.add(run);
Michael Jurka1e2f4652013-07-08 18:03:46 -07003705 }
3706
Michael Jurka7607c2f2013-04-03 14:33:19 -07003707 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003708 * If the activity is currently paused, signal that we need to re-run the loader
3709 * in onResume.
3710 *
3711 * This needs to be called from incoming places where resources might have been loaded
3712 * while we are paused. That is becaues the Configuration might be wrong
3713 * when we're not running, and if it comes back to what it was when we
3714 * were paused, we are not restarted.
3715 *
3716 * Implementation of the method from LauncherModel.Callbacks.
3717 *
3718 * @return true if we are currently paused. The caller might be able to
3719 * skip some work in that case since we will come back again.
3720 */
3721 public boolean setLoadOnResume() {
3722 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003723 if (LOGD) Log.d(TAG, "setLoadOnResume");
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003724 mOnResumeNeedsLoad = true;
3725 return true;
3726 } else {
3727 return false;
3728 }
3729 }
3730
3731 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003732 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003733 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003734 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003735 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003736 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003737 } else {
3738 return SCREEN_COUNT / 2;
3739 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003740 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003741
Joe Onorato9c1289c2009-08-17 11:03:03 -04003742 /**
3743 * Refreshes the shortcuts shown on the workspace.
3744 *
3745 * Implementation of the method from LauncherModel.Callbacks.
3746 */
3747 public void startBinding() {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07003748 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08003749
Michael Jurka7607c2f2013-04-03 14:33:19 -07003750 // If we're starting binding all over again, clear any bind calls we'd postponed in
3751 // the past (see waitUntilResume) -- we don't need them since we're starting binding
3752 // from scratch again
Michael Jurka1e2f4652013-07-08 18:03:46 -07003753 mBindOnResumeCallbacks.clear();
Adam Cohendf035382011-04-11 17:22:04 -07003754
Winson Chungd64d1762013-08-20 14:37:16 -07003755 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07003756 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07003757 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07003758
Michael Jurka05bf644e2011-11-30 20:28:53 -08003759 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003760 if (mHotseat != null) {
3761 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003762 }
3763 }
3764
Adam Cohendcd297f2013-06-18 13:13:40 -07003765 @Override
3766 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Winson Chung64359a52013-07-08 17:17:08 -07003767 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07003768
Adam Cohen5084cba2013-09-03 12:01:16 -07003769 // If there are no screens, we need to have an empty screen
3770 if (orderedScreenIds.size() == 0) {
3771 mWorkspace.addExtraEmptyScreen();
3772 }
Winson Chung0e6a7132013-08-23 12:55:10 -07003773
3774 // Create the custom content page (this call updates mDefaultScreen which calls
Dave Hawkeya8881582013-09-17 15:55:33 -06003775 // setCurrentPage() so ensure that all pages are added before calling this).
Derek Prothrodadd9842014-01-17 13:43:50 -05003776 if (hasCustomContentToLeft()) {
3777 mWorkspace.createCustomContentContainer();
3778 populateCustomContentContainer();
Winson Chung0e6a7132013-08-23 12:55:10 -07003779 }
Winson Chung64359a52013-07-08 17:17:08 -07003780 }
3781
3782 @Override
3783 public void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Adam Cohendcd297f2013-06-18 13:13:40 -07003784 int count = orderedScreenIds.size();
3785 for (int i = 0; i < count; i++) {
Adam Cohen89bddfa2013-08-20 11:57:13 -07003786 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(orderedScreenIds.get(i));
Adam Cohendcd297f2013-06-18 13:13:40 -07003787 }
Adam Cohendcd297f2013-06-18 13:13:40 -07003788 }
3789
Adam Cohen39a06042013-07-19 14:30:12 -07003790 private boolean shouldShowWeightWatcher() {
3791 String spKey = LauncherAppState.getSharedPreferencesKey();
3792 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
Daniel Sandler6053b8002013-08-15 15:44:26 -07003793 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, SHOW_WEIGHT_WATCHER_DEFAULT);
Adam Cohen39a06042013-07-19 14:30:12 -07003794
3795 return show;
3796 }
3797
3798 private void toggleShowWeightWatcher() {
3799 String spKey = LauncherAppState.getSharedPreferencesKey();
3800 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
3801 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, true);
3802
3803 show = !show;
3804
3805 SharedPreferences.Editor editor = sp.edit();
3806 editor.putBoolean(SHOW_WEIGHT_WATCHER, show);
3807 editor.commit();
3808
3809 if (mWeightWatcher != null) {
3810 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
3811 }
3812 }
3813
Winson Chungd64d1762013-08-20 14:37:16 -07003814 public void bindAppsAdded(final ArrayList<Long> newScreens,
3815 final ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -07003816 final ArrayList<ItemInfo> addAnimated,
3817 final ArrayList<AppInfo> addedApps) {
Winson Chungd64d1762013-08-20 14:37:16 -07003818 Runnable r = new Runnable() {
3819 public void run() {
Winson Chungc58497e2013-09-03 17:48:37 -07003820 bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps);
Winson Chungd64d1762013-08-20 14:37:16 -07003821 }
3822 };
3823 if (waitUntilResume(r)) {
3824 return;
3825 }
3826
Winson Chungd64d1762013-08-20 14:37:16 -07003827 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08003828 if (newScreens != null) {
3829 bindAddScreens(newScreens);
3830 }
Winson Chungd64d1762013-08-20 14:37:16 -07003831
3832 // We add the items without animation on non-visible pages, and with
3833 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08003834 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003835 bindItems(addNotAnimated, 0,
3836 addNotAnimated.size(), false);
3837 }
Adam Cohen76a47a12014-02-05 11:47:43 -08003838 if (addAnimated != null && !addAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003839 bindItems(addAnimated, 0,
3840 addAnimated.size(), true);
3841 }
Winson Chungc58497e2013-09-03 17:48:37 -07003842
Winson Chung87412982013-10-03 18:34:14 -07003843 // Remove the extra empty screen
Adam Cohen689ff162014-05-08 17:27:56 -07003844 mWorkspace.removeExtraEmptyScreen(false, false);
Winson Chung87412982013-10-03 18:34:14 -07003845
Winson Chungb745afb2015-03-02 11:51:23 -08003846 if (addedApps != null && mAppsView != null) {
3847 mAppsView.addApps(addedApps);
Winson Chungc58497e2013-09-03 17:48:37 -07003848 }
Winson Chungd64d1762013-08-20 14:37:16 -07003849 }
3850
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003851 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003852 * Bind the items start-end from the list.
3853 *
3854 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003855 */
Winson Chung64359a52013-07-08 17:17:08 -07003856 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end,
3857 final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07003858 Runnable r = new Runnable() {
3859 public void run() {
3860 bindItems(shortcuts, start, end, forceAnimateIcons);
3861 }
3862 };
3863 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003864 return;
3865 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003866
Winson Chungf0c6ae02012-03-21 16:10:31 -07003867 // Get the list of added shortcuts and intersect them with the set of shortcuts here
Winson Chung64359a52013-07-08 17:17:08 -07003868 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
3869 final Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chung997a9232013-07-24 15:33:46 -07003870 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07003871 Workspace workspace = mWorkspace;
Winson Chung997a9232013-07-24 15:33:46 -07003872 long newShortcutsScreenId = -1;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003873 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003874 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003875
3876 // Short circuit if we are loading dock items for a configuration which has no dock
3877 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3878 mHotseat == null) {
3879 continue;
3880 }
3881
Sunny Goyal639e9062015-08-19 19:17:06 -07003882 final View view;
Joe Onorato9c1289c2009-08-17 11:03:03 -04003883 switch (item.itemType) {
3884 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3885 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07003886 ShortcutInfo info = (ShortcutInfo) item;
Sunny Goyal639e9062015-08-19 19:17:06 -07003887 view = createShortcut(info);
Adam Cohendcd297f2013-06-18 13:13:40 -07003888
Winson Chung64359a52013-07-08 17:17:08 -07003889 /*
3890 * TODO: FIX collision case
3891 */
Winson Chungce376632013-07-11 16:12:41 -07003892 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
3893 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
3894 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07003895 View v = cl.getChildAt(item.cellX, item.cellY);
3896 Object tag = v.getTag();
3897 String desc = "Collision while binding workspace item: " + item
3898 + ". Collides with " + tag;
3899 if (LauncherAppState.isDogfoodBuild()) {
3900 throw (new RuntimeException(desc));
3901 } else {
3902 Log.d(TAG, desc);
3903 }
Winson Chungce376632013-07-11 16:12:41 -07003904 }
Winson Chung64359a52013-07-08 17:17:08 -07003905 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003906 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003907 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Sunny Goyal639e9062015-08-19 19:17:06 -07003908 view = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003909 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003910 (FolderInfo) item, mIconCache);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003911 break;
Winson Chungc763c4e2013-07-19 13:49:06 -07003912 default:
3913 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04003914 }
Sunny Goyal639e9062015-08-19 19:17:06 -07003915
3916 workspace.addInScreenFromBind(view, item.container, item.screenId, item.cellX,
3917 item.cellY, 1, 1);
3918 if (animateIcons) {
3919 // Animate all the applications up now
3920 view.setAlpha(0f);
3921 view.setScaleX(0f);
3922 view.setScaleY(0f);
3923 bounceAnims.add(createNewAppBounceAnimation(view, i));
3924 newShortcutsScreenId = item.screenId;
3925 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003926 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003927
Winson Chung997a9232013-07-24 15:33:46 -07003928 if (animateIcons) {
3929 // Animate to the correct page
3930 if (newShortcutsScreenId > -1) {
3931 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Winson Chung94d67682013-09-25 16:29:40 -07003932 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId);
Winson Chungb2323832013-10-03 15:22:09 -07003933 final Runnable startBounceAnimRunnable = new Runnable() {
3934 public void run() {
3935 anim.playTogether(bounceAnims);
3936 anim.start();
3937 }
3938 };
Winson Chung997a9232013-07-24 15:33:46 -07003939 if (newShortcutsScreenId != currentScreenId) {
Winson Chung94d67682013-09-25 16:29:40 -07003940 // We post the animation slightly delayed to prevent slowdowns
3941 // when we are loading right after we return to launcher.
3942 mWorkspace.postDelayed(new Runnable() {
3943 public void run() {
Ian Parkinson94449152014-01-21 13:09:59 +00003944 if (mWorkspace != null) {
3945 mWorkspace.snapToPage(newScreenIndex);
3946 mWorkspace.postDelayed(startBounceAnimRunnable,
3947 NEW_APPS_ANIMATION_DELAY);
3948 }
Winson Chung94d67682013-09-25 16:29:40 -07003949 }
3950 }, NEW_APPS_PAGE_MOVE_DELAY);
Winson Chungb2323832013-10-03 15:22:09 -07003951 } else {
3952 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07003953 }
3954 }
Winson Chung64359a52013-07-08 17:17:08 -07003955 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003956 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003957 }
3958
Joe Onorato9c1289c2009-08-17 11:03:03 -04003959 /**
3960 * Implementation of the method from LauncherModel.Callbacks.
3961 */
Sunny Goyale2df0622015-04-24 11:27:00 -07003962 public void bindFolders(final LongArrayMap<FolderInfo> folders) {
Winson Chungd64d1762013-08-20 14:37:16 -07003963 Runnable r = new Runnable() {
3964 public void run() {
3965 bindFolders(folders);
3966 }
3967 };
3968 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003969 return;
3970 }
Sunny Goyale2df0622015-04-24 11:27:00 -07003971 sFolders = folders.clone();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003972 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003973
3974 /**
3975 * Add the views for a widget to the workspace.
3976 *
3977 * Implementation of the method from LauncherModel.Callbacks.
3978 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07003979 public void bindAppWidget(final LauncherAppWidgetInfo item) {
Winson Chungd64d1762013-08-20 14:37:16 -07003980 Runnable r = new Runnable() {
3981 public void run() {
3982 bindAppWidget(item);
3983 }
3984 };
3985 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003986 return;
3987 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003988
Daniel Sandler843e8602010-06-07 14:59:01 -04003989 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
3990 if (DEBUG_WIDGETS) {
3991 Log.d(TAG, "bindAppWidget: " + item);
3992 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003993 final Workspace workspace = mWorkspace;
3994
Adam Cohen59400422014-03-05 18:07:04 -08003995 LauncherAppWidgetProviderInfo appWidgetInfo =
Robin Lee26ace122015-03-16 19:41:43 +00003996 LauncherModel.getProviderInfo(this, item.providerName, item.user);
Adam Cohen59400422014-03-05 18:07:04 -08003997
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003998 if (!mIsSafeModeEnabled
3999 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY) == 0)
Sunny Goyal84b4adc2015-08-12 15:12:16 -07004000 && (item.restoreStatus != LauncherAppWidgetInfo.RESTORE_COMPLETED)) {
4001
Sunny Goyalff572272014-07-23 13:58:07 -07004002 if (appWidgetInfo == null) {
4003 if (DEBUG_WIDGETS) {
4004 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
4005 + " belongs to component " + item.providerName
4006 + ", as the povider is null");
4007 }
4008 LauncherModel.deleteItemFromDatabase(this, item);
4009 return;
4010 }
Sunny Goyalff572272014-07-23 13:58:07 -07004011
Sunny Goyal84b4adc2015-08-12 15:12:16 -07004012 // If we do not have a valid id, try to bind an id.
4013 if ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_ID_NOT_VALID) != 0) {
4014 // Note: This assumes that the id remap broadcast is received before this step.
4015 // If that is not the case, the id remap will be ignored and user may see the
4016 // click to setup view.
4017 PendingAddWidgetInfo pendingInfo = new PendingAddWidgetInfo(this, appWidgetInfo, null);
4018 pendingInfo.spanX = item.spanX;
4019 pendingInfo.spanY = item.spanY;
4020 pendingInfo.minSpanX = item.minSpanX;
4021 pendingInfo.minSpanY = item.minSpanY;
4022 Bundle options = null;
4023 WidgetHostViewLoader.getDefaultOptionsForWidget(this, pendingInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07004024
Sunny Goyal84b4adc2015-08-12 15:12:16 -07004025 int newWidgetId = mAppWidgetHost.allocateAppWidgetId();
4026 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
4027 newWidgetId, appWidgetInfo, options);
4028
4029 // TODO consider showing a permission dialog when the widget is clicked.
4030 if (!success) {
4031 mAppWidgetHost.deleteAppWidgetId(newWidgetId);
4032 if (DEBUG_WIDGETS) {
4033 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
4034 + " belongs to component " + item.providerName
4035 + ", as the launcher is unable to bing a new widget id");
4036 }
4037 LauncherModel.deleteItemFromDatabase(this, item);
4038 return;
Sunny Goyalff572272014-07-23 13:58:07 -07004039 }
Sunny Goyal84b4adc2015-08-12 15:12:16 -07004040
4041 item.appWidgetId = newWidgetId;
4042
4043 // If the widget has a configure activity, it is still needs to set it up, otherwise
4044 // the widget is ready to go.
4045 item.restoreStatus = (appWidgetInfo.configure == null)
4046 ? LauncherAppWidgetInfo.RESTORE_COMPLETED
4047 : LauncherAppWidgetInfo.FLAG_UI_NOT_READY;
4048
4049 LauncherModel.updateItemInDatabase(this, item);
4050 } else if (((item.restoreStatus & LauncherAppWidgetInfo.FLAG_UI_NOT_READY) != 0)
4051 && (appWidgetInfo.configure == null)) {
4052 // If the ID is already valid, verify if we need to configure or not.
4053 item.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
4054 LauncherModel.updateItemInDatabase(this, item);
Sunny Goyalff572272014-07-23 13:58:07 -07004055 }
Sunny Goyalff572272014-07-23 13:58:07 -07004056 }
4057
Sunny Goyal9b4b0812014-10-08 10:47:28 -07004058 if (!mIsSafeModeEnabled && item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
Sunny Goyal651077b2014-06-30 14:15:31 -07004059 final int appWidgetId = item.appWidgetId;
Sunny Goyal651077b2014-06-30 14:15:31 -07004060 if (DEBUG_WIDGETS) {
Adam Cohen59400422014-03-05 18:07:04 -08004061 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component "
4062 + appWidgetInfo.provider);
Sunny Goyal651077b2014-06-30 14:15:31 -07004063 }
Daniel Sandler843e8602010-06-07 14:59:01 -04004064
Sunny Goyal651077b2014-06-30 14:15:31 -07004065 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
Sunny Goyal233ee962015-08-03 13:05:01 -07004066 item.minSpanX = appWidgetInfo.minSpanX;
4067 item.minSpanY = appWidgetInfo.minSpanY;
Sunny Goyal651077b2014-06-30 14:15:31 -07004068 } else {
4069 appWidgetInfo = null;
Sunny Goyal9b4b0812014-10-08 10:47:28 -07004070 PendingAppWidgetHostView view = new PendingAppWidgetHostView(this, item,
4071 mIsSafeModeEnabled);
Sunny Goyal0fc1be12014-08-11 17:05:23 -07004072 view.updateIcon(mIconCache);
4073 item.hostView = view;
Sunny Goyal651077b2014-06-30 14:15:31 -07004074 item.hostView.updateAppWidget(null);
Sunny Goyalff572272014-07-23 13:58:07 -07004075 item.hostView.setOnClickListener(this);
Sunny Goyal651077b2014-06-30 14:15:31 -07004076 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004077
Joe Onorato9c1289c2009-08-17 11:03:03 -04004078 item.hostView.setTag(item);
Winson Chung211bac32012-05-15 13:43:57 -07004079 item.onBindAppWidget(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04004080
Adam Cohendcd297f2013-06-18 13:13:40 -07004081 workspace.addInScreen(item.hostView, item.container, item.screenId, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04004082 item.cellY, item.spanX, item.spanY, false);
Adam Cohen59400422014-03-05 18:07:04 -08004083 if (!item.isCustomWidget()) {
4084 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
4085 }
Adam Cohended9f8d2010-11-03 13:25:16 -07004086
Joe Onorato9c1289c2009-08-17 11:03:03 -04004087 workspace.requestLayout();
4088
Daniel Sandler843e8602010-06-07 14:59:01 -04004089 if (DEBUG_WIDGETS) {
4090 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
4091 + (SystemClock.uptimeMillis()-start) + "ms");
4092 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004093 }
4094
Sunny Goyalff572272014-07-23 13:58:07 -07004095 /**
4096 * Restores a pending widget.
4097 *
4098 * @param appWidgetId The app widget id
4099 * @param cellInfo The position on screen where to create the widget.
4100 */
4101 private void completeRestoreAppWidget(final int appWidgetId) {
4102 LauncherAppWidgetHostView view = mWorkspace.getWidgetForAppWidgetId(appWidgetId);
4103 if ((view == null) || !(view instanceof PendingAppWidgetHostView)) {
4104 Log.e(TAG, "Widget update called, when the widget no longer exists.");
4105 return;
4106 }
4107
Sunny Goyal0fc1be12014-08-11 17:05:23 -07004108 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) view.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07004109 info.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
4110
4111 mWorkspace.reinflateWidgetsIfNecessary();
4112 LauncherModel.updateItemInDatabase(this, info);
4113 }
4114
Adam Cohen1462de32012-07-24 22:34:36 -07004115 public void onPageBoundSynchronously(int page) {
4116 mSynchronouslyBoundPages.add(page);
4117 }
4118
Joe Onorato9c1289c2009-08-17 11:03:03 -04004119 /**
4120 * Callback saying that there aren't any more items to bind.
4121 *
4122 * Implementation of the method from LauncherModel.Callbacks.
4123 */
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004124 public void finishBindingItems() {
Winson Chungd64d1762013-08-20 14:37:16 -07004125 Runnable r = new Runnable() {
4126 public void run() {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004127 finishBindingItems();
Winson Chungd64d1762013-08-20 14:37:16 -07004128 }
4129 };
4130 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004131 return;
4132 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004133 if (mSavedState != null) {
4134 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07004135 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004136 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004137 mSavedState = null;
4138 }
4139
Adam Cohen1462de32012-07-24 22:34:36 -07004140 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004141
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004142 setWorkspaceLoading(false);
Adam Cohen3ed316a2014-07-23 18:21:20 -07004143 sendLoadingCompleteBroadcastIfNecessary();
Adam Cohendb364c32014-05-20 14:23:40 -07004144
4145 // If we received the result of any pending adds while the loader was running (e.g. the
4146 // widget configuration forced an orientation change), process them now.
4147 if (sPendingAddItem != null) {
4148 final long screenId = completeAdd(sPendingAddItem);
4149
4150 // TODO: this moves the user to the page where the pending item was added. Ideally,
4151 // the screen would be guaranteed to exist after bind, and the page would be set through
4152 // the workspace restore process.
4153 mWorkspace.post(new Runnable() {
4154 @Override
4155 public void run() {
4156 mWorkspace.snapToScreenId(screenId);
4157 }
4158 });
4159 sPendingAddItem = null;
4160 }
4161
Sunny Goyal756adbc2015-04-16 15:20:51 -07004162 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
Adam Cohen9211d422014-10-07 18:14:53 -07004163
4164 if (mLauncherCallbacks != null) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004165 mLauncherCallbacks.finishBindingItems(false);
Adam Cohen9211d422014-10-07 18:14:53 -07004166 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004167 }
4168
Adam Cohen3ed316a2014-07-23 18:21:20 -07004169 private void sendLoadingCompleteBroadcastIfNecessary() {
4170 if (!mSharedPrefs.getBoolean(FIRST_LOAD_COMPLETE, false)) {
4171 String permission =
4172 getResources().getString(R.string.receive_first_load_broadcast_permission);
4173 Intent intent = new Intent(ACTION_FIRST_LOAD_COMPLETE);
4174 sendBroadcast(intent, permission);
4175 SharedPreferences.Editor editor = mSharedPrefs.edit();
4176 editor.putBoolean(FIRST_LOAD_COMPLETE, true);
4177 editor.apply();
4178 }
4179 }
4180
Winson Chunga0b7e862013-09-05 16:03:15 -07004181 public boolean isAllAppsButtonRank(int rank) {
4182 if (mHotseat != null) {
4183 return mHotseat.isAllAppsButtonRank(rank);
4184 }
4185 return false;
4186 }
4187
Winson Chunga2413752012-04-03 14:22:34 -07004188 private boolean canRunNewAppsAnimation() {
4189 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
Sunny Goyal639e9062015-08-19 19:17:06 -07004190 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000)
4191 && (mClings == null || !mClings.isVisible());
Winson Chunga2413752012-04-03 14:22:34 -07004192 }
4193
Winson Chungc9168342013-06-26 14:54:55 -07004194 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
4195 ValueAnimator bounceAnim = LauncherAnimUtils.ofPropertyValuesHolder(v,
4196 PropertyValuesHolder.ofFloat("alpha", 1f),
4197 PropertyValuesHolder.ofFloat("scaleX", 1f),
4198 PropertyValuesHolder.ofFloat("scaleY", 1f));
4199 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
4200 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
Sunny Goyal5a1f53b2015-05-27 10:24:24 -07004201 bounceAnim.setInterpolator(new OvershootInterpolator(BOUNCE_ANIMATION_TENSION));
Winson Chungc9168342013-06-26 14:54:55 -07004202 return bounceAnim;
4203 }
4204
Adam Cohen27772732013-11-11 14:00:56 +00004205 public boolean useVerticalBarLayout() {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07004206 return mDeviceProfile.isVerticalBarLayout();
Adam Cohen27772732013-11-11 14:00:56 +00004207 }
4208
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004209 protected Rect getSearchBarBounds() {
Sunny Goyalc6205602015-05-21 20:46:33 -07004210 return mDeviceProfile.getSearchBarBounds(Utilities.isRtl(getResources()));
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004211 }
4212
Winson Chung88fa7412015-08-03 14:25:28 -07004213 public void bindSearchProviderChanged() {
Sunny Goyal594d76d2014-11-06 10:12:54 -08004214 if (mSearchDropTargetBar == null) {
4215 return;
Winson Chungadf0c182012-08-23 14:59:07 -07004216 }
Sunny Goyal594d76d2014-11-06 10:12:54 -08004217 if (mQsb != null) {
4218 mSearchDropTargetBar.removeView(mQsb);
4219 mQsb = null;
4220 }
Adam Cohenb0df1b02015-03-18 22:21:40 -07004221 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004222 }
4223
Amith Yamasani6d7fe502010-11-16 09:05:07 -08004224 /**
Winson Chungbb785c62015-05-05 10:05:08 -07004225 * A runnable that we can dequeue and re-enqueue when all applications are bound (to prevent
4226 * multiple calls to bind the same list.)
4227 */
4228 @Thunk ArrayList<AppInfo> mTmpAppsList;
4229 private Runnable mBindAllApplicationsRunnable = new Runnable() {
4230 public void run() {
4231 bindAllApplications(mTmpAppsList);
4232 mTmpAppsList = null;
4233 }
4234 };
4235
4236 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004237 * Add the icons for all apps.
4238 *
4239 * Implementation of the method from LauncherModel.Callbacks.
4240 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004241 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Winson Chungbb785c62015-05-05 10:05:08 -07004242 if (waitUntilResume(mBindAllApplicationsRunnable, true)) {
4243 mTmpAppsList = apps;
4244 return;
4245 }
4246
Winson Chungb745afb2015-03-02 11:51:23 -08004247 if (mAppsView != null) {
4248 mAppsView.setApps(apps);
4249 }
Adam Cohen9211d422014-10-07 18:14:53 -07004250 if (mLauncherCallbacks != null) {
4251 mLauncherCallbacks.bindAllApplications(apps);
4252 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004253 }
4254
4255 /**
4256 * A package was updated.
4257 *
4258 * Implementation of the method from LauncherModel.Callbacks.
4259 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004260 public void bindAppsUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004261 Runnable r = new Runnable() {
4262 public void run() {
4263 bindAppsUpdated(apps);
4264 }
4265 };
4266 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004267 return;
4268 }
4269
Winson Chungb745afb2015-03-02 11:51:23 -08004270 if (mAppsView != null) {
4271 mAppsView.updateApps(apps);
Winson Chungc58497e2013-09-03 17:48:37 -07004272 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004273 }
4274
Sunny Goyal4390ace2014-10-13 11:33:11 -07004275 @Override
4276 public void bindWidgetsRestored(final ArrayList<LauncherAppWidgetInfo> widgets) {
4277 Runnable r = new Runnable() {
4278 public void run() {
4279 bindWidgetsRestored(widgets);
4280 }
4281 };
4282 if (waitUntilResume(r)) {
4283 return;
4284 }
4285 mWorkspace.widgetsRestored(widgets);
4286 }
4287
Joe Onorato9c1289c2009-08-17 11:03:03 -04004288 /**
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004289 * Some shortcuts were updated in the background.
4290 *
4291 * Implementation of the method from LauncherModel.Callbacks.
4292 */
Sunny Goyal4390ace2014-10-13 11:33:11 -07004293 @Override
4294 public void bindShortcutsChanged(final ArrayList<ShortcutInfo> updated,
4295 final ArrayList<ShortcutInfo> removed, final UserHandleCompat user) {
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004296 Runnable r = new Runnable() {
4297 public void run() {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004298 bindShortcutsChanged(updated, removed, user);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004299 }
4300 };
4301 if (waitUntilResume(r)) {
4302 return;
4303 }
4304
Sunny Goyal4390ace2014-10-13 11:33:11 -07004305 if (!updated.isEmpty()) {
4306 mWorkspace.updateShortcuts(updated);
4307 }
4308
4309 if (!removed.isEmpty()) {
4310 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4311 for (ShortcutInfo si : removed) {
4312 removedComponents.add(si.getTargetComponent());
4313 }
4314 mWorkspace.removeItemsByComponentName(removedComponents, user);
4315 // Notify the drag controller
4316 mDragController.onAppsRemoved(new ArrayList<String>(), removedComponents);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004317 }
4318 }
4319
4320 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004321 * Update the state of a package, typically related to install state.
4322 *
4323 * Implementation of the method from LauncherModel.Callbacks.
4324 */
Sunny Goyale755d462014-07-22 13:48:29 -07004325 @Override
Sunny Goyal756adbc2015-04-16 15:20:51 -07004326 public void bindRestoreItemsChange(final HashSet<ItemInfo> updates) {
4327 Runnable r = new Runnable() {
4328 public void run() {
4329 bindRestoreItemsChange(updates);
4330 }
4331 };
4332 if (waitUntilResume(r)) {
4333 return;
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004334 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004335
Sunny Goyal756adbc2015-04-16 15:20:51 -07004336 mWorkspace.updateRestoreItems(updates);
Sunny Goyala22666f2014-09-18 13:25:15 -07004337 }
4338
4339 /**
Winson Chung83892cc2013-05-01 16:53:33 -07004340 * A package was uninstalled. We take both the super set of packageNames
4341 * in addition to specific applications to remove, the reason being that
4342 * this can be called when a package is updated as well. In that scenario,
4343 * we only remove specific components from the workspace, where as
4344 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004345 *
Sunny Goyal1a745e82014-10-02 15:58:31 -07004346 * @param reason if non-zero, the icons are not permanently removed, rather marked as disabled.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004347 * Implementation of the method from LauncherModel.Callbacks.
4348 */
Sunny Goyal1a745e82014-10-02 15:58:31 -07004349 @Override
Winson Chung83892cc2013-05-01 16:53:33 -07004350 public void bindComponentsRemoved(final ArrayList<String> packageNames,
Sunny Goyal1a745e82014-10-02 15:58:31 -07004351 final ArrayList<AppInfo> appInfos, final UserHandleCompat user, final int reason) {
Winson Chungd64d1762013-08-20 14:37:16 -07004352 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004353 public void run() {
Sunny Goyal1a745e82014-10-02 15:58:31 -07004354 bindComponentsRemoved(packageNames, appInfos, user, reason);
Winson Chung83892cc2013-05-01 16:53:33 -07004355 }
Winson Chungd64d1762013-08-20 14:37:16 -07004356 };
4357 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07004358 return;
4359 }
4360
Sunny Goyal1a745e82014-10-02 15:58:31 -07004361 if (reason == 0) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004362 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4363 for (AppInfo info : appInfos) {
4364 removedComponents.add(info.componentName);
4365 }
Sunny Goyal1a745e82014-10-02 15:58:31 -07004366 if (!packageNames.isEmpty()) {
4367 mWorkspace.removeItemsByPackageName(packageNames, user);
4368 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004369 if (!removedComponents.isEmpty()) {
4370 mWorkspace.removeItemsByComponentName(removedComponents, user);
Sunny Goyal1a745e82014-10-02 15:58:31 -07004371 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004372 // Notify the drag controller
4373 mDragController.onAppsRemoved(packageNames, removedComponents);
4374
Sunny Goyal1a745e82014-10-02 15:58:31 -07004375 } else {
4376 mWorkspace.disableShortcutsByPackageName(packageNames, user, reason);
Joe Onorato36115782010-06-17 13:28:48 -04004377 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07004378
Winson Chungdf95eb12013-10-16 14:57:07 -07004379 // Update AllApps
Winson Chungb745afb2015-03-02 11:51:23 -08004380 if (mAppsView != null) {
4381 mAppsView.removeApps(appInfos);
Winson Chungc58497e2013-09-03 17:48:37 -07004382 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004383 }
Joe Onoratobe386092009-11-17 17:32:16 -08004384
Michael Jurkac402cd92013-05-20 15:49:32 +02004385 private Runnable mBindPackagesUpdatedRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004386 public void run() {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004387 bindAllPackages(mWidgetsModel);
Winson Chung83892cc2013-05-01 16:53:33 -07004388 }
Michael Jurkac402cd92013-05-20 15:49:32 +02004389 };
Hyunyoung Song3f471442015-04-08 19:01:34 -07004390
Hyunyoung Song8821ca92015-05-04 16:28:20 -07004391 @Override
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004392 public void bindAllPackages(final WidgetsModel model) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004393 if (waitUntilResume(mBindPackagesUpdatedRunnable, true)) {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004394 mWidgetsModel = model;
Winson Chung83892cc2013-05-01 16:53:33 -07004395 return;
4396 }
4397
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004398 if (mWidgetsView != null && model != null) {
4399 mWidgetsView.addWidgets(model);
4400 mWidgetsModel = null;
Winson Chung785d2eb2011-04-14 16:08:02 -07004401 }
Winson Chung80baf5a2010-08-09 16:03:15 -07004402 }
4403
Winson Chung400438b2011-01-16 17:53:48 -08004404 private int mapConfigurationOriActivityInfoOri(int configOri) {
4405 final Display d = getWindowManager().getDefaultDisplay();
4406 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
4407 switch (d.getRotation()) {
4408 case Surface.ROTATION_0:
4409 case Surface.ROTATION_180:
4410 // We are currently in the same basic orientation as the natural orientation
4411 naturalOri = configOri;
4412 break;
4413 case Surface.ROTATION_90:
4414 case Surface.ROTATION_270:
4415 // We are currently in the other basic orientation to the natural orientation
4416 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
4417 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
4418 break;
4419 }
4420
4421 int[] oriMap = {
4422 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
4423 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
4424 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
4425 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
4426 };
4427 // Since the map starts at portrait, we need to offset if this device's natural orientation
4428 // is landscape.
4429 int indexOffset = 0;
4430 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
4431 indexOffset = 1;
4432 }
4433 return oriMap[(d.getRotation() + indexOffset) % 4];
4434 }
Adam Cohen446e9402011-09-15 18:21:21 -07004435
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004436 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR2)
Winson Chung4b919f82012-05-01 10:44:08 -07004437 public void lockScreenOrientation() {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004438 if (mRotationEnabled) {
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004439 if (Utilities.ATLEAST_JB_MR2) {
4440 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LOCKED);
4441 } else {
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004442 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
4443 .getConfiguration().orientation));
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004444 }
Winson Chung4b919f82012-05-01 10:44:08 -07004445 }
4446 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004447
Winson Chung4b919f82012-05-01 10:44:08 -07004448 public void unlockScreenOrientation(boolean immediate) {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004449 if (mRotationEnabled) {
Winson Chung4b919f82012-05-01 10:44:08 -07004450 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07004451 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07004452 } else {
4453 mHandler.postDelayed(new Runnable() {
4454 public void run() {
4455 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4456 }
4457 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07004458 }
Winson Chung4b919f82012-05-01 10:44:08 -07004459 }
Winson Chung400438b2011-01-16 17:53:48 -08004460 }
4461
Winson Chunge43a1e72014-01-15 10:33:02 -08004462 protected boolean isLauncherPreinstalled() {
Adam Cohen9211d422014-10-07 18:14:53 -07004463 if (mLauncherCallbacks != null) {
4464 return mLauncherCallbacks.isLauncherPreinstalled();
4465 }
Winson Chunge43a1e72014-01-15 10:33:02 -08004466 PackageManager pm = getPackageManager();
4467 try {
4468 ApplicationInfo ai = pm.getApplicationInfo(getComponentName().getPackageName(), 0);
4469 if ((ai.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
4470 return true;
4471 } else {
4472 return false;
4473 }
4474 } catch (NameNotFoundException e) {
4475 e.printStackTrace();
4476 return false;
4477 }
4478 }
4479
Adam Cohenea90f832014-05-21 15:03:34 -07004480 /**
4481 * This method indicates whether or not we should suggest default wallpaper dimensions
4482 * when our wallpaper cropper was not yet used to set a wallpaper.
4483 */
4484 protected boolean overrideWallpaperDimensions() {
Adam Cohen9211d422014-10-07 18:14:53 -07004485 if (mLauncherCallbacks != null) {
4486 return mLauncherCallbacks.overrideWallpaperDimensions();
4487 }
Adam Cohenea90f832014-05-21 15:03:34 -07004488 return true;
4489 }
4490
Adam Cohen432609a2014-03-13 17:03:22 -07004491 /**
4492 * To be overridden by subclasses to indicate that there is an activity to launch
4493 * before showing the standard launcher experience.
4494 */
4495 protected boolean hasFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004496 if (mLauncherCallbacks != null) {
4497 return mLauncherCallbacks.hasFirstRunActivity();
4498 }
Adam Cohen432609a2014-03-13 17:03:22 -07004499 return false;
4500 }
4501
4502 /**
4503 * To be overridden by subclasses to launch any first run activity
4504 */
4505 protected Intent getFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004506 if (mLauncherCallbacks != null) {
4507 return mLauncherCallbacks.getFirstRunActivity();
4508 }
Adam Cohen432609a2014-03-13 17:03:22 -07004509 return null;
4510 }
4511
Winson Chunga6945242014-01-08 14:04:34 -08004512 private boolean shouldRunFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004513 return !ActivityManager.isRunningInTestHarness() &&
4514 !mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
Winson Chunga6945242014-01-08 14:04:34 -08004515 }
4516
Adam Cohen4a9423d2014-03-28 14:22:31 -07004517 protected boolean hasRunFirstRunActivity() {
4518 return mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
4519 }
4520
Adam Cohen432609a2014-03-13 17:03:22 -07004521 public boolean showFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004522 if (shouldRunFirstRunActivity() &&
4523 hasFirstRunActivity()) {
Winson Chunga6945242014-01-08 14:04:34 -08004524 Intent firstRunIntent = getFirstRunActivity();
4525 if (firstRunIntent != null) {
4526 startActivity(firstRunIntent);
4527 markFirstRunActivityShown();
Adam Cohen432609a2014-03-13 17:03:22 -07004528 return true;
Winson Chunga6945242014-01-08 14:04:34 -08004529 }
4530 }
Adam Cohen432609a2014-03-13 17:03:22 -07004531 return false;
Winson Chunga6945242014-01-08 14:04:34 -08004532 }
4533
4534 private void markFirstRunActivityShown() {
4535 SharedPreferences.Editor editor = mSharedPrefs.edit();
4536 editor.putBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, true);
4537 editor.apply();
4538 }
4539
Adam Cohen432609a2014-03-13 17:03:22 -07004540 /**
4541 * To be overridden by subclasses to indicate that there is an in-activity full-screen intro
4542 * screen that must be displayed and dismissed.
4543 */
4544 protected boolean hasDismissableIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004545 if (mLauncherCallbacks != null) {
4546 return mLauncherCallbacks.hasDismissableIntroScreen();
4547 }
Adam Cohen432609a2014-03-13 17:03:22 -07004548 return false;
4549 }
4550
4551 /**
4552 * Full screen intro screen to be shown and dismissed before the launcher can be used.
4553 */
4554 protected View getIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004555 if (mLauncherCallbacks != null) {
4556 return mLauncherCallbacks.getIntroScreen();
4557 }
Adam Cohen432609a2014-03-13 17:03:22 -07004558 return null;
4559 }
4560
4561 /**
4562 * To be overriden by subclasses to indicate whether the in-activity intro screen has been
4563 * dismissed. This method is ignored if #hasDismissableIntroScreen returns false.
4564 */
4565 private boolean shouldShowIntroScreen() {
4566 return hasDismissableIntroScreen() &&
4567 !mSharedPrefs.getBoolean(INTRO_SCREEN_DISMISSED, false);
4568 }
4569
4570 protected void showIntroScreen() {
4571 View introScreen = getIntroScreen();
4572 changeWallpaperVisiblity(false);
4573 if (introScreen != null) {
4574 mDragLayer.showOverlayView(introScreen);
4575 }
Adam Cohenc3e12c72014-10-31 16:15:36 -07004576 if (mLauncherOverlayContainer != null) {
4577 mLauncherOverlayContainer.setVisibility(View.INVISIBLE);
4578 }
Adam Cohen432609a2014-03-13 17:03:22 -07004579 }
4580
4581 public void dismissIntroScreen() {
4582 markIntroScreenDismissed();
4583 if (showFirstRunActivity()) {
4584 // We delay hiding the intro view until the first run activity is showing. This
4585 // avoids a blip.
4586 mWorkspace.postDelayed(new Runnable() {
4587 @Override
4588 public void run() {
4589 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004590 if (mLauncherOverlayContainer != null) {
4591 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4592 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004593 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004594 }
4595 }, ACTIVITY_START_DELAY);
4596 } else {
4597 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004598 if (mLauncherOverlayContainer != null) {
4599 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4600 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004601 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004602 }
4603 changeWallpaperVisiblity(true);
4604 }
4605
4606 private void markIntroScreenDismissed() {
4607 SharedPreferences.Editor editor = mSharedPrefs.edit();
4608 editor.putBoolean(INTRO_SCREEN_DISMISSED, true);
4609 editor.apply();
4610 }
4611
Adam Cohen091440a2015-03-18 14:16:05 -07004612 @Thunk void showFirstRunClings() {
Sunny Goyal88d60f12014-09-08 03:47:29 -07004613 // The two first run cling paths are mutually exclusive, if the launcher is preinstalled
4614 // on the device, then we always show the first run cling experience (or if there is no
4615 // launcher2). Otherwise, we prompt the user upon started for migration
4616 LauncherClings launcherClings = new LauncherClings(this);
4617 if (launcherClings.shouldShowFirstRunOrMigrationClings()) {
Sunny Goyal639e9062015-08-19 19:17:06 -07004618 mClings = launcherClings;
Sunny Goyal88d60f12014-09-08 03:47:29 -07004619 if (mModel.canMigrateFromOldLauncherDb(this)) {
4620 launcherClings.showMigrationCling();
4621 } else {
Sunny Goyalaf0628f2014-09-19 10:14:48 -07004622 launcherClings.showLongPressCling(true);
Sunny Goyal88d60f12014-09-08 03:47:29 -07004623 }
4624 }
4625 }
4626
Winson Chunga6945242014-01-08 14:04:34 -08004627 void showWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004628 if (mWorkspace != null) mWorkspace.setAlpha(1f);
4629 if (mHotseat != null) mHotseat.setAlpha(1f);
4630 if (mPageIndicators != null) mPageIndicators.setAlpha(1f);
Winson Chung006ee262015-08-03 14:40:11 -07004631 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4632 SearchDropTargetBar.State.SEARCH_BAR, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004633 }
4634
4635 void hideWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004636 if (mWorkspace != null) mWorkspace.setAlpha(0f);
4637 if (mHotseat != null) mHotseat.setAlpha(0f);
4638 if (mPageIndicators != null) mPageIndicators.setAlpha(0f);
Winson Chung006ee262015-08-03 14:40:11 -07004639 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4640 SearchDropTargetBar.State.INVISIBLE, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004641 }
4642
Winson Chung5ffd51d2015-06-25 11:36:50 -07004643 // TODO: These method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004644 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Mathew Inwood72fbec12013-11-19 15:45:07 +00004645 public ItemInfo createAppDragInfo(Intent appLaunchIntent) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004646 // Called from search suggestion
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004647 UserHandleCompat user = null;
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004648 if (Utilities.ATLEAST_LOLLIPOP) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004649 UserHandle userHandle = appLaunchIntent.getParcelableExtra(Intent.EXTRA_USER);
4650 if (userHandle != null) {
4651 user = UserHandleCompat.fromUser(userHandle);
4652 }
4653 }
4654 return createAppDragInfo(appLaunchIntent, user);
Winson Chung5ffd51d2015-06-25 11:36:50 -07004655 }
4656
4657 // TODO: This method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004658 public ItemInfo createAppDragInfo(Intent intent, UserHandleCompat user) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004659 if (user == null) {
4660 user = UserHandleCompat.myUserHandle();
4661 }
4662
4663 // Called from search suggestion, add the profile extra to the intent to ensure that we
4664 // can launch it correctly
Kenny Guyed131872014-04-30 03:02:21 +01004665 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004666 LauncherActivityInfoCompat activityInfo = launcherApps.resolveActivity(intent, user);
Kenny Guyed131872014-04-30 03:02:21 +01004667 if (activityInfo == null) {
Mathew Inwood72fbec12013-11-19 15:45:07 +00004668 return null;
4669 }
Winson Chung5ffd51d2015-06-25 11:36:50 -07004670 return new AppInfo(this, activityInfo, user, mIconCache);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004671 }
4672
Winson Chung5ffd51d2015-06-25 11:36:50 -07004673 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004674 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4675 Bitmap icon) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004676 return new ShortcutInfo(shortcutIntent, caption, caption, icon,
Kenny Guyed131872014-04-30 03:02:21 +01004677 UserHandleCompat.myUserHandle());
4678 }
4679
Winson Chung5ffd51d2015-06-25 11:36:50 -07004680 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004681 public void startDrag(View dragView, ItemInfo dragInfo, DragSource source) {
4682 dragView.setTag(dragInfo);
Winson Chungbabb53e2014-04-14 17:12:49 -07004683 mWorkspace.onExternalDragStartedWithItem(dragView);
4684 mWorkspace.beginExternalDragShared(dragView, source);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004685 }
4686
Winson Chung5ffd51d2015-06-25 11:36:50 -07004687 protected void moveWorkspaceToDefaultScreen() {
4688 mWorkspace.moveToDefaultScreen(false);
4689 }
4690
Anjali Koppalf5d29132014-02-28 13:33:27 -08004691 @Override
4692 public void onPageSwitch(View newPage, int newPageIndex) {
Adam Cohen9211d422014-10-07 18:14:53 -07004693 if (mLauncherCallbacks != null) {
4694 mLauncherCallbacks.onPageSwitch(newPage, newPageIndex);
4695 }
Anjali Koppalf5d29132014-02-28 13:33:27 -08004696 }
4697
Winson Chung80baf5a2010-08-09 16:03:15 -07004698 /**
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004699 * Returns a FastBitmapDrawable with the icon, accurately sized.
4700 */
4701 public FastBitmapDrawable createIconDrawable(Bitmap icon) {
4702 FastBitmapDrawable d = new FastBitmapDrawable(icon);
4703 d.setFilterBitmap(true);
4704 resizeIconDrawable(d);
4705 return d;
4706 }
4707
4708 /**
4709 * Resizes an icon drawable to the correct icon size.
4710 */
4711 public void resizeIconDrawable(Drawable icon) {
4712 icon.setBounds(0, 0, mDeviceProfile.iconSizePx, mDeviceProfile.iconSizePx);
4713 }
4714
4715 /**
Joe Onoratobe386092009-11-17 17:32:16 -08004716 * Prints out out state for debugging.
4717 */
4718 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04004719 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08004720 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08004721 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
4722 Log.d(TAG, "mRestoring=" + mRestoring);
4723 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
4724 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004725 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08004726 mModel.dumpState();
Hyunyoung Song3f471442015-04-08 19:01:34 -07004727 // TODO(hyunyoungs): add mWidgetsView.dumpState(); or mWidgetsModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07004728
Daniel Sandler325dc232013-06-05 22:57:57 -04004729 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08004730 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004731
4732 @Override
4733 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
4734 super.dump(prefix, fd, writer, args);
Adam Cohen4caf2982013-08-20 18:54:31 -07004735 synchronized (sDumpLogs) {
4736 writer.println(" ");
4737 writer.println("Debug logs: ");
4738 for (int i = 0; i < sDumpLogs.size(); i++) {
4739 writer.println(" " + sDumpLogs.get(i));
4740 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004741 }
Adam Cohen9211d422014-10-07 18:14:53 -07004742 if (mLauncherCallbacks != null) {
4743 mLauncherCallbacks.dump(prefix, fd, writer, args);
4744 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004745 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004746
4747 public static void dumpDebugLogsToConsole() {
Winson Chungede41292013-09-19 16:27:36 -07004748 if (DEBUG_DUMP_LOG) {
4749 synchronized (sDumpLogs) {
4750 Log.d(TAG, "");
4751 Log.d(TAG, "*********************");
4752 Log.d(TAG, "Launcher debug logs: ");
4753 for (int i = 0; i < sDumpLogs.size(); i++) {
4754 Log.d(TAG, " " + sDumpLogs.get(i));
4755 }
4756 Log.d(TAG, "*********************");
4757 Log.d(TAG, "");
Adam Cohen4caf2982013-08-20 18:54:31 -07004758 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004759 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004760 }
4761
4762 public static void addDumpLog(String tag, String log, boolean debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004763 addDumpLog(tag, log, null, debugLog);
4764 }
4765
4766 public static void addDumpLog(String tag, String log, Exception e, boolean debugLog) {
Adam Cohen4caf2982013-08-20 18:54:31 -07004767 if (debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004768 if (e != null) {
4769 Log.d(tag, log, e);
4770 } else {
4771 Log.d(tag, log);
4772 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004773 }
Winson Chungede41292013-09-19 16:27:36 -07004774 if (DEBUG_DUMP_LOG) {
4775 sDateStamp.setTime(System.currentTimeMillis());
4776 synchronized (sDumpLogs) {
Dan Sandler295ae182013-12-10 16:05:47 -05004777 sDumpLogs.add(sDateFormat.format(sDateStamp) + ": " + tag + ", " + log
4778 + (e == null ? "" : (", Exception: " + e)));
Adam Cohen4caf2982013-08-20 18:54:31 -07004779 }
Winson Chungede41292013-09-19 16:27:36 -07004780 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004781 }
4782
Adam Cohen59400422014-03-05 18:07:04 -08004783 public static CustomAppWidget getCustomAppWidget(String name) {
4784 return sCustomAppWidgets.get(name);
4785 }
4786
4787 public static HashMap<String, CustomAppWidget> getCustomAppWidgets() {
4788 return sCustomAppWidgets;
4789 }
4790
Winson Chungede41292013-09-19 16:27:36 -07004791 public void dumpLogsToLocalData() {
4792 if (DEBUG_DUMP_LOG) {
Michael Jurka43467462013-11-14 12:03:58 +01004793 new AsyncTask<Void, Void, Void>() {
4794 public Void doInBackground(Void ... args) {
Winson Chungede41292013-09-19 16:27:36 -07004795 boolean success = false;
4796 sDateStamp.setTime(sRunStart);
4797 String FILENAME = sDateStamp.getMonth() + "-"
4798 + sDateStamp.getDay() + "_"
4799 + sDateStamp.getHours() + "-"
4800 + sDateStamp.getMinutes() + "_"
4801 + sDateStamp.getSeconds() + ".txt";
4802
4803 FileOutputStream fos = null;
4804 File outFile = null;
4805 try {
4806 outFile = new File(getFilesDir(), FILENAME);
4807 outFile.createNewFile();
4808 fos = new FileOutputStream(outFile);
4809 } catch (Exception e) {
4810 e.printStackTrace();
4811 }
4812 if (fos != null) {
4813 PrintWriter writer = new PrintWriter(fos);
4814
4815 writer.println(" ");
4816 writer.println("Debug logs: ");
4817 synchronized (sDumpLogs) {
4818 for (int i = 0; i < sDumpLogs.size(); i++) {
4819 writer.println(" " + sDumpLogs.get(i));
4820 }
4821 }
4822 writer.close();
4823 }
4824 try {
4825 if (fos != null) {
4826 fos.close();
4827 success = true;
4828 }
4829 } catch (IOException e) {
4830 e.printStackTrace();
4831 }
Michael Jurka43467462013-11-14 12:03:58 +01004832 return null;
Winson Chungede41292013-09-19 16:27:36 -07004833 }
Sunny Goyal8ac727b2015-09-23 15:38:09 -07004834 }.executeOnExecutor(Utilities.THREAD_POOL_EXECUTOR);
Adam Cohen4caf2982013-08-20 18:54:31 -07004835 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004836 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004837}
Michael Jurka2763be32011-02-24 11:19:57 -08004838
Dan Sandlerd5024042014-01-09 15:01:33 -05004839interface DebugIntents {
4840 static final String DELETE_DATABASE = "com.android.launcher3.action.DELETE_DATABASE";
4841 static final String MIGRATE_DATABASE = "com.android.launcher3.action.MIGRATE_DATABASE";
Adam Cohen8b5b05b2014-01-10 21:42:39 +00004842}