blob: 987698e2359f54c456a860e1ad41eb46290096f7 [file] [log] [blame]
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Daniel Sandler325dc232013-06-05 22:57:57 -040017package com.android.launcher3;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080018
Sunny Goyal28c6b962015-10-12 11:42:05 -070019import android.Manifest;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070020import android.animation.Animator;
Michael Jurka8edd75c2010-12-17 20:15:06 -080021import android.animation.AnimatorListenerAdapter;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070022import android.animation.AnimatorSet;
Adam Cohen2801caf2011-05-13 20:57:39 -070023import android.animation.ObjectAnimator;
24import android.animation.PropertyValuesHolder;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070025import android.animation.ValueAnimator;
Sunny Goyal70660032015-05-14 00:07:08 -070026import android.annotation.SuppressLint;
Adam Cohen0b395352014-06-09 22:54:36 +000027import android.annotation.TargetApi;
Michael Jurka946ad472010-07-09 18:05:18 -070028import android.app.Activity;
Brett Chabot2a9e2282011-08-23 15:03:13 -070029import android.app.ActivityManager;
Winson Chungc7450e32012-04-17 17:34:08 -070030import android.app.ActivityOptions;
Chris Wren40c5ed32014-06-24 18:24:23 -040031import android.app.AlertDialog;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080032import android.app.SearchManager;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080033import android.appwidget.AppWidgetHostView;
Michael Jurkaaf442092010-06-10 17:01:57 -070034import android.appwidget.AppWidgetManager;
35import android.appwidget.AppWidgetProviderInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080036import android.content.ActivityNotFoundException;
Joe Onorato2ca0ae72009-11-10 13:14:13 -080037import android.content.BroadcastReceiver;
Michael Jurkae326f182011-11-21 14:05:46 -080038import android.content.ComponentCallbacks2;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040039import android.content.ComponentName;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080040import android.content.Context;
Chris Wren40c5ed32014-06-24 18:24:23 -040041import android.content.DialogInterface;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080042import android.content.Intent;
Winson Chungf0ea4d32011-06-06 14:27:16 -070043import android.content.IntentFilter;
Adam Cohen173f7112015-03-27 15:14:00 -070044import android.content.IntentSender;
Winson Chung82f55532011-08-09 14:14:23 -070045import android.content.SharedPreferences;
Winson Chungaafa03c2010-06-11 17:34:16 -070046import android.content.pm.ActivityInfo;
Winson Chunge43a1e72014-01-15 10:33:02 -080047import android.content.pm.ApplicationInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080048import android.content.pm.PackageManager;
Adam Cohen716b51e2011-06-30 12:09:54 -070049import android.content.pm.PackageManager.NameNotFoundException;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080050import android.content.res.Configuration;
Adam Cohen3f9c9712014-10-31 11:48:25 -070051import android.database.sqlite.SQLiteDatabase;
Adam Cohen268c4752012-06-06 17:47:33 -070052import android.graphics.Bitmap;
53import android.graphics.Canvas;
Sandeep Siddhartha2efc7d92014-05-16 17:21:15 -070054import android.graphics.Color;
Tony Wickhama3c74d12015-10-23 11:43:47 -070055import android.graphics.Point;
Adam Cohen268c4752012-06-06 17:47:33 -070056import android.graphics.PorterDuff;
Michael Jurkaaf442092010-06-10 17:01:57 -070057import android.graphics.Rect;
Sunny Goyal4a6c6f32015-05-19 12:36:46 -070058import android.graphics.drawable.ColorDrawable;
Michael Jurkaaf442092010-06-10 17:01:57 -070059import android.graphics.drawable.Drawable;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040060import android.net.Uri;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -070061import android.os.AsyncTask;
Adam Cohen0f668f32014-09-08 19:54:17 +020062import android.os.Build;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080063import android.os.Bundle;
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +020064import android.os.Environment;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080065import android.os.Handler;
Adam Cohended9f8d2010-11-03 13:25:16 -070066import android.os.Message;
Winson Chunga2413752012-04-03 14:22:34 -070067import android.os.StrictMode;
Daniel Sandler843e8602010-06-07 14:59:01 -040068import android.os.SystemClock;
Sunny Goyala1d1bf32015-06-26 13:24:53 -070069import android.os.UserHandle;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080070import android.text.Selection;
71import android.text.SpannableStringBuilder;
Michael Jurkaa33411c2012-06-14 16:18:21 -070072import android.text.TextUtils;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080073import android.text.method.TextKeyListener;
Joe Onorato7c312c12009-08-13 21:36:53 -070074import android.util.Log;
Adam Cohen96d30a12013-07-16 18:13:21 -070075import android.view.Display;
Adam Cohen96d30a12013-07-16 18:13:21 -070076import android.view.HapticFeedbackConstants;
77import android.view.KeyEvent;
78import android.view.LayoutInflater;
79import android.view.Menu;
Adam Cohen96d30a12013-07-16 18:13:21 -070080import android.view.MotionEvent;
81import android.view.Surface;
82import android.view.View;
Adam Cohenf358a4b2013-07-23 16:47:31 -070083import android.view.View.OnClickListener;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080084import android.view.View.OnLongClickListener;
Adam Cohen96d30a12013-07-16 18:13:21 -070085import android.view.ViewGroup;
Adam Cohenc2d6e892014-10-16 09:49:24 -070086import android.view.ViewStub;
Adam Cohen96d30a12013-07-16 18:13:21 -070087import android.view.ViewTreeObserver;
Adam Cohen96d30a12013-07-16 18:13:21 -070088import android.view.WindowManager;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -080089import android.view.accessibility.AccessibilityEvent;
Sunny Goyal5a1f53b2015-05-27 10:24:24 -070090import android.view.animation.OvershootInterpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080091import android.view.inputmethod.InputMethodManager;
Adam Cohen96d30a12013-07-16 18:13:21 -070092import android.widget.Advanceable;
Adam Cohen96d30a12013-07-16 18:13:21 -070093import android.widget.ImageView;
Chet Haasea8f996d2015-02-17 12:56:04 -080094import android.widget.TextView;
Adam Cohen96d30a12013-07-16 18:13:21 -070095import android.widget.Toast;
Sunny Goyala1d1bf32015-06-26 13:24:53 -070096
Sunny Goyal651077b2014-06-30 14:15:31 -070097import com.android.launcher3.DropTarget.DragObject;
98import com.android.launcher3.PagedView.PageSwitchListener;
Winson Chung5f4e0fd2015-05-22 11:12:27 -070099import com.android.launcher3.allapps.AllAppsContainerView;
Sunny Goyal0ac7ede2016-01-29 13:14:14 -0800100import com.android.launcher3.allapps.DefaultAppSearchController;
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;
Sunny Goyald3060552015-06-25 19:35:49 -0700109import com.android.launcher3.util.TestingUtils;
Adam Cohen091440a2015-03-18 14:16:05 -0700110import com.android.launcher3.util.Thunk;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700111import com.android.launcher3.widget.PendingAddWidgetInfo;
Hyunyoung Songb99ff3e2015-04-23 15:17:50 -0700112import com.android.launcher3.widget.WidgetHostViewLoader;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700113import com.android.launcher3.widget.WidgetsContainerView;
Adam Cohen6c5891a2014-07-09 23:53:15 -0700114
Adam Cohen4caf2982013-08-20 18:54:31 -0700115import java.io.File;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700116import java.io.FileDescriptor;
Adam Cohen4caf2982013-08-20 18:54:31 -0700117import java.io.FileOutputStream;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700118import java.io.IOException;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700119import java.io.PrintWriter;
Adam Cohen4caf2982013-08-20 18:54:31 -0700120import java.text.DateFormat;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700121import java.util.ArrayList;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700122import java.util.Collection;
Adam Cohen4caf2982013-08-20 18:54:31 -0700123import java.util.Date;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700124import java.util.HashMap;
Sunny Goyal4390ace2014-10-13 11:33:11 -0700125import java.util.HashSet;
Michael Jurkad7c28052012-04-27 15:43:36 -0700126import java.util.List;
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;
Sunny Goyalc84e6e12015-10-02 12:48:37 -0700138 static final boolean DEBUG_WIDGETS = false;
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 Goyal28c6b962015-10-12 11:42:05 -0700153 private static final int REQUEST_PERMISSION_CALL_PHONE = 13;
154
Sunny Goyal4a6c6f32015-05-19 12:36:46 -0700155 private static final int WORKSPACE_BACKGROUND_GRADIENT = 0;
156 private static final int WORKSPACE_BACKGROUND_TRANSPARENT = 1;
157 private static final int WORKSPACE_BACKGROUND_BLACK = 2;
158
Sunny Goyal5a1f53b2015-05-27 10:24:24 -0700159 private static final float BOUNCE_ANIMATION_TENSION = 1.3f;
160
Mathew Inwood876a8462013-06-14 14:12:41 +0100161 /**
162 * IntentStarter uses request codes starting with this. This must be greater than all activity
163 * request codes used internally.
164 */
165 protected static final int REQUEST_LAST = 100;
166
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800167 static final int SCREEN_COUNT = 5;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800168
Michael Jurka0a457bf2012-11-19 14:05:05 -0800169 // To turn on these properties, type
170 // adb shell setprop log.tag.PROPERTY_NAME [VERBOSE | SUPPRESS]
Michael Jurka0a457bf2012-11-19 14:05:05 -0800171 static final String DUMP_STATE_PROPERTY = "launcher_dump_state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800172
Winson Chung2672ff92012-05-04 16:22:30 -0700173 // The Intent extra that defines whether to ignore the launch animation
174 static final String INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION =
Daniel Sandler325dc232013-06-05 22:57:57 -0400175 "com.android.launcher3.intent.extra.shortcut.INGORE_LAUNCH_ANIMATION";
Winson Chung2672ff92012-05-04 16:22:30 -0700176
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800177 // Type: int
178 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
Michael Jurka883f55b2010-10-21 15:47:14 -0700179 // Type: int
180 private static final String RUNTIME_STATE = "launcher.state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800181 // Type: int
Winson Chung3d503fb2011-07-13 17:25:49 -0700182 private static final String RUNTIME_STATE_PENDING_ADD_CONTAINER = "launcher.add_container";
183 // Type: int
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800184 private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
185 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700186 private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cell_x";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800187 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700188 private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cell_y";
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700189 // Type: int
190 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_X = "launcher.add_span_x";
191 // Type: int
192 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_Y = "launcher.add_span_y";
193 // Type: parcelable
194 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_INFO = "launcher.add_widget_info";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000195 // Type: parcelable
Adam Cohen4637b5a2013-11-04 18:21:24 -0800196 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_ID = "launcher.add_widget_id";
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
Sunny Goyal594d76d2014-11-06 10:12:54 -0800205 private static final String QSB_WIDGET_ID = "qsb_widget_id";
206 private static final String QSB_WIDGET_PROVIDER = "qsb_widget_provider";
207
Winson Chunga6945242014-01-08 14:04:34 -0800208 public static final String USER_HAS_MIGRATED = "launcher.user_migrated_from_old_data";
209
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700210 /** The different states that Launcher can be in. */
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700211 enum State { NONE, WORKSPACE, APPS, APPS_SPRING_LOADED, WIDGETS, WIDGETS_SPRING_LOADED }
212
Adam Cohen091440a2015-03-18 14:16:05 -0700213 @Thunk State mState = State.WORKSPACE;
Adam Cohen091440a2015-03-18 14:16:05 -0700214 @Thunk LauncherStateTransitionAnimation mStateTransitionAnimation;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700215
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700216 private boolean mIsSafeModeEnabled;
217
Adam Cohenc2d6e892014-10-16 09:49:24 -0700218 LauncherOverlayCallbacks mLauncherOverlayCallbacks = new LauncherOverlayCallbacksImpl();
219 LauncherOverlay mLauncherOverlay;
Adam Cohena6d04922014-10-23 17:28:30 -0700220 InsettableFrameLayout mLauncherOverlayContainer;
Adam Cohenc2d6e892014-10-16 09:49:24 -0700221
Joe Onorato9c1289c2009-08-17 11:03:03 -0400222 static final int APPWIDGET_HOST_ID = 1024;
Adam Cohenad4e15c2013-10-17 16:21:35 -0700223 public static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
224 private static final int ON_ACTIVITY_RESULT_ANIMATION_DELAY = 500;
Adam Cohen646fdf72014-04-08 16:59:36 -0700225 private static final int ACTIVITY_START_DELAY = 1000;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800226
Winson Chunga2413752012-04-03 14:22:34 -0700227 // How long to wait before the new-shortcut animation automatically pans the workspace
Winson Chung94d67682013-09-25 16:29:40 -0700228 private static int NEW_APPS_PAGE_MOVE_DELAY = 500;
229 private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 5;
Adam Cohen091440a2015-03-18 14:16:05 -0700230 @Thunk static int NEW_APPS_ANIMATION_DELAY = 500;
Winson Chunga2413752012-04-03 14:22:34 -0700231
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800232 private final BroadcastReceiver mCloseSystemDialogsReceiver
233 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800234
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800235 private LayoutInflater mInflater;
236
Adam Cohen091440a2015-03-18 14:16:05 -0700237 @Thunk Workspace mWorkspace;
Craig Mautner360310b2012-10-26 15:13:08 -0700238 private View mLauncherView;
Winson Chunga6945242014-01-08 14:04:34 -0800239 private View mPageIndicators;
Adam Cohen091440a2015-03-18 14:16:05 -0700240 @Thunk DragLayer mDragLayer;
Michael Jurkab737ee62011-11-15 15:57:22 -0800241 private DragController mDragController;
Sunny Goyald3060552015-06-25 19:35:49 -0700242
243 public View mWeightWatcher;
Romain Guycbb89e42009-06-08 15:52:54 -0700244
Sunny Goyalffe83f12014-08-14 17:39:34 -0700245 private AppWidgetManagerCompat mAppWidgetManager;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700246 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700247
Adam Cohen091440a2015-03-18 14:16:05 -0700248 @Thunk ItemInfo mPendingAddInfo = new ItemInfo();
Adam Cohen59400422014-03-05 18:07:04 -0800249 private LauncherAppWidgetProviderInfo mPendingAddWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800250 private int mPendingAddWidgetId = -1;
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700251
Michael Jurka0280c3b2010-09-17 15:00:07 -0700252 private int[] mTmpAddItemCellCoordinates = new int[2];
253
Sunny Goyal316490e2015-06-02 09:38:28 -0700254 @Thunk Hotseat mHotseat;
Jorim Jaggid017f882014-01-14 17:08:48 -0800255 private ViewGroup mOverviewPanel;
Adam Cohenf358a4b2013-07-23 16:47:31 -0700256
Michael Jurka838a4ca2011-02-07 13:33:06 -0800257 private View mAllAppsButton;
Hyunyoung Song98ff38a2015-07-10 17:50:13 -0700258 private View mWidgetsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700259
Winson Chungc51db6a2011-10-05 11:44:49 -0700260 private SearchDropTargetBar mSearchDropTargetBar;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700261
262 // Main container view for the all apps screen.
Winson Chung5f4e0fd2015-05-22 11:12:27 -0700263 @Thunk AllAppsContainerView mAppsView;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700264
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700265 // Main container view and the model for the widget tray screen.
266 @Thunk WidgetsContainerView mWidgetsView;
267 @Thunk WidgetsModel mWidgetsModel;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700268
Winson Chungf0ea4d32011-06-06 14:27:16 -0700269 private boolean mAutoAdvanceRunning = false;
Sunny Goyal594d76d2014-11-06 10:12:54 -0800270 private AppWidgetHostView mQsb;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800271
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800272 private Bundle mSavedState;
Winson Chung4a2afa32012-07-19 14:53:05 -0700273 // We set the state in both onCreate and then onNewIntent in some cases, which causes both
274 // scroll issues (because the workspace may not have been measured yet) and extra work.
275 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
276 private State mOnResumeState = State.NONE;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800277
278 private SpannableStringBuilder mDefaultKeySsb = null;
279
Adam Cohen091440a2015-03-18 14:16:05 -0700280 @Thunk boolean mWorkspaceLoading = true;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400281
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800282 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800283 private boolean mRestoring;
284 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700285 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800286
Michael Jurka1e2f4652013-07-08 18:03:46 -0700287 private ArrayList<Runnable> mBindOnResumeCallbacks = new ArrayList<Runnable>();
Michael Jurka7607c2f2013-04-03 14:33:19 -0700288 private ArrayList<Runnable> mOnResumeCallbacks = new ArrayList<Runnable>();
289
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800290 private Bundle mSavedInstanceState;
291
Joe Onorato9c1289c2009-08-17 11:03:03 -0400292 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800293 private IconCache mIconCache;
Adam Cohen091440a2015-03-18 14:16:05 -0700294 @Thunk boolean mUserPresent = true;
Adam Cohend113e0c2010-11-11 10:48:05 -0800295 private boolean mVisible = false;
Adam Cohened307df2013-10-02 09:37:31 -0700296 private boolean mHasFocus = false;
Adam Cohend113e0c2010-11-11 10:48:05 -0800297 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400298
Sunny Goyal639e9062015-08-19 19:17:06 -0700299 private LauncherClings mClings;
300
Sunny Goyale2df0622015-04-24 11:27:00 -0700301 private static LongArrayMap<FolderInfo> sFolders = new LongArrayMap<>();
Romain Guycbb89e42009-06-08 15:52:54 -0700302
Adam Cohen61f560d2013-09-30 15:58:20 -0700303 private View.OnTouchListener mHapticFeedbackTouchListener;
304
Adam Cohended9f8d2010-11-03 13:25:16 -0700305 // Related to the auto-advancing of widgets
306 private final int ADVANCE_MSG = 1;
307 private final int mAdvanceInterval = 20000;
308 private final int mAdvanceStagger = 250;
309 private long mAutoAdvanceSentTime;
310 private long mAutoAdvanceTimeLeft = -1;
Adam Cohen091440a2015-03-18 14:16:05 -0700311 @Thunk HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
Adam Cohended9f8d2010-11-03 13:25:16 -0700312 new HashMap<View, AppWidgetProviderInfo>();
313
Winson Chung400438b2011-01-16 17:53:48 -0800314 // Determines how long to wait after a rotation before restoring the screen orientation to
315 // match the sensor state.
316 private final int mRestoreScreenOrientationDelay = 500;
317
Adam Cohen091440a2015-03-18 14:16:05 -0700318 @Thunk Drawable mWorkspaceBackgroundDrawable;
Craig Mautner360310b2012-10-26 15:13:08 -0700319
Adam Cohen1462de32012-07-24 22:34:36 -0700320 private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700321 private static final boolean DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE = false;
Adam Cohen1462de32012-07-24 22:34:36 -0700322
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700323 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
Adam Cohen4caf2982013-08-20 18:54:31 -0700324 static Date sDateStamp = new Date();
325 static DateFormat sDateFormat =
326 DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
327 static long sRunStart = System.currentTimeMillis();
328 static final String CORRUPTION_EMAIL_SENT_KEY = "corruptionEmailSent";
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700329
Winson Chung46353de2012-02-16 14:05:10 -0800330 // We only want to get the SharedPreferences once since it does an FS stat each time we get
331 // it from the context.
332 private SharedPreferences mSharedPrefs;
333
Winson Chungf0c6ae02012-03-21 16:10:31 -0700334 // Holds the page that we need to animate to, and the icon views that we need to animate up
335 // when we scroll to that page on resume.
Adam Cohen091440a2015-03-18 14:16:05 -0700336 @Thunk ImageView mFolderIconImageView;
Adam Cohen268c4752012-06-06 17:47:33 -0700337 private Bitmap mFolderIconBitmap;
338 private Canvas mFolderIconCanvas;
339 private Rect mRectForFolderAnimation = new Rect();
Adam Cohen2801caf2011-05-13 20:57:39 -0700340
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700341 private DeviceProfile mDeviceProfile;
342
Adam Cohen4b66bf32015-09-18 12:15:19 -0700343 private boolean mMoveToDefaultScreenFromNewIntent;
344
Winson Chung13eb5272015-05-11 16:30:13 -0700345 // This is set to the view that launched the activity that navigated the user away from
346 // launcher. Since there is no callback for when the activity has finished launching, enable
347 // the press state and keep this reference to reset the press state when we return to launcher.
Michael Jurkaddd62e92011-02-16 17:49:14 -0800348 private BubbleTextView mWaitingForResume;
349
Adam Cohen59400422014-03-05 18:07:04 -0800350 protected static HashMap<String, CustomAppWidget> sCustomAppWidgets =
351 new HashMap<String, CustomAppWidget>();
352
Adam Cohen59400422014-03-05 18:07:04 -0800353 static {
Sunny Goyald3060552015-06-25 19:35:49 -0700354 if (TestingUtils.ENABLE_CUSTOM_WIDGET_TEST) {
355 TestingUtils.addDummyWidget(sCustomAppWidgets);
Adam Cohen59400422014-03-05 18:07:04 -0800356 }
357 }
358
Adam Cohen091440a2015-03-18 14:16:05 -0700359 @Thunk Runnable mBuildLayersRunnable = new Runnable() {
Michael Jurkac1f5d262011-09-30 19:32:27 -0700360 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700361 if (mWorkspace != null) {
362 mWorkspace.buildPageHardwareLayers();
363 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700364 }
365 };
366
Adam Cohendb364c32014-05-20 14:23:40 -0700367 private static PendingAddArguments sPendingAddItem;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800368
Adam Cohen091440a2015-03-18 14:16:05 -0700369 @Thunk static class PendingAddArguments {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800370 int requestCode;
371 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700372 long container;
Adam Cohendcd297f2013-06-18 13:13:40 -0700373 long screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800374 int cellX;
375 int cellY;
Adam Cohendb364c32014-05-20 14:23:40 -0700376 int appWidgetId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800377 }
378
Daniel Sandlerff02d492013-08-05 02:12:05 -0400379 private Stats mStats;
Sunny Goyaldcbcc862014-08-12 15:58:36 -0700380 FocusIndicatorView mFocusHandler;
Sunny Goyal7779d622015-06-11 16:18:39 -0700381 private boolean mRotationEnabled = false;
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400382
383 @Thunk void setOrientation() {
384 if (mRotationEnabled) {
385 unlockScreenOrientation(true);
386 } else {
387 setRequestedOrientation(
388 ActivityInfo.SCREEN_ORIENTATION_NOSENSOR);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700389 }
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400390 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700391
Sunny Goyal7779d622015-06-11 16:18:39 -0700392 private Runnable mUpdateOrientationRunnable = new Runnable() {
393 public void run() {
394 setOrientation();
395 }
396 };
397
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800398 @Override
399 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700400 if (DEBUG_STRICT_MODE) {
401 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
402 .detectDiskReads()
403 .detectDiskWrites()
404 .detectNetwork() // or .detectAll() for all detectable problems
405 .penaltyLog()
406 .build());
407 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
408 .detectLeakedSqlLiteObjects()
409 .detectLeakedClosableObjects()
410 .penaltyLog()
411 .penaltyDeath()
412 .build());
413 }
414
Adam Cohen9211d422014-10-07 18:14:53 -0700415 if (mLauncherCallbacks != null) {
416 mLauncherCallbacks.preOnCreate();
417 }
418
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800419 super.onCreate(savedInstanceState);
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400420
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400421 LauncherAppState app = LauncherAppState.getInstance();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700422
Adam Cohen2e6da152015-05-06 11:42:25 -0700423 // Load configuration-specific DeviceProfile
Sunny Goyalc6205602015-05-21 20:46:33 -0700424 mDeviceProfile = getResources().getConfiguration().orientation
425 == Configuration.ORIENTATION_LANDSCAPE ?
Tony Wickham3a3517f2015-10-06 11:27:04 -0700426 app.getInvariantDeviceProfile().landscapeProfile
427 : app.getInvariantDeviceProfile().portraitProfile;
Sunny Goyalc6205602015-05-21 20:46:33 -0700428
Sunny Goyalf7258242015-10-19 16:59:07 -0700429 mSharedPrefs = Utilities.getPrefs(this);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700430 mIsSafeModeEnabled = getPackageManager().isSafeMode();
Joe Onorato0589f0f2010-02-08 13:44:00 -0800431 mModel = app.setLauncher(this);
432 mIconCache = app.getIconCache();
Adam Cohen2e6da152015-05-06 11:42:25 -0700433
Joe Onorato41a12d22009-10-31 18:30:00 -0400434 mDragController = new DragController(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800435 mInflater = getLayoutInflater();
Winson Chung006ee262015-08-03 14:40:11 -0700436 mStateTransitionAnimation = new LauncherStateTransitionAnimation(this);
Romain Guycbb89e42009-06-08 15:52:54 -0700437
Daniel Sandlerff02d492013-08-05 02:12:05 -0400438 mStats = new Stats(this);
439
Sunny Goyalffe83f12014-08-14 17:39:34 -0700440 mAppWidgetManager = AppWidgetManagerCompat.getInstance(this);
Adam Cohen53805212013-10-01 10:39:23 -0700441
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700442 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
443 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700444
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700445 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
446 // this also ensures that any synchronous binding below doesn't re-trigger another
447 // LauncherModel load.
448 mPaused = false;
449
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800450 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200451 android.os.Debug.startMethodTracing(
452 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800453 }
454
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800455 setContentView(R.layout.launcher);
Michael Jurka7267fa52013-09-26 15:29:57 -0700456
Tony Wickhameef44322015-10-20 13:24:36 -0700457 app.getInvariantDeviceProfile().landscapeProfile.setSearchBarHeight(getSearchBarHeight());
458 app.getInvariantDeviceProfile().portraitProfile.setSearchBarHeight(getSearchBarHeight());
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800459 setupViews();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700460 mDeviceProfile.layout(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800461
Joe Onorato7c312c12009-08-13 21:36:53 -0700462 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700463
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800464 mSavedState = savedInstanceState;
465 restoreState(mSavedState);
466
467 if (PROFILE_STARTUP) {
468 android.os.Debug.stopMethodTracing();
469 }
470
471 if (!mRestoring) {
Adam Cohendb78dc82014-06-19 14:50:51 -0700472 if (DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700473 // If the user leaves launcher, then we should just load items asynchronously when
474 // they return.
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700475 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Winson Chung4a2afa32012-07-19 14:53:05 -0700476 } else {
477 // We only load the page synchronously if the user rotates (or triggers a
478 // configuration change) while launcher is in the foreground
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700479 mModel.startLoader(mWorkspace.getRestorePage());
Winson Chung4a2afa32012-07-19 14:53:05 -0700480 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800481 }
482
483 // For handling default keys
484 mDefaultKeySsb = new SpannableStringBuilder();
485 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800486
487 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
488 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800489
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700490 mRotationEnabled = Utilities.isRotationAllowedForDevice(getApplicationContext());
491 // In case we are on a device with locked rotation, we should look at preferences to check
492 // if the user has specifically allowed rotation.
493 if (!mRotationEnabled) {
Rahul Chaturvedie863fed2015-06-15 14:09:42 -0400494 mRotationEnabled = Utilities.isAllowRotationPrefEnabled(getApplicationContext(), false);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700495 }
496
497 // On large interfaces, or on devices that a user has specifically enabled screen rotation,
498 // we want the screen to auto-rotate based on the current orientation
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400499 setOrientation();
Winson Chungaf40f202013-09-18 18:26:31 -0700500
Adam Cohen9211d422014-10-07 18:14:53 -0700501 if (mLauncherCallbacks != null) {
502 mLauncherCallbacks.onCreate(savedInstanceState);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700503 if (mLauncherCallbacks.hasLauncherOverlay()) {
504 ViewStub stub = (ViewStub) findViewById(R.id.launcher_overlay_stub);
Adam Cohena6d04922014-10-23 17:28:30 -0700505 mLauncherOverlayContainer = (InsettableFrameLayout) stub.inflate();
506 mLauncherOverlay = mLauncherCallbacks.setLauncherOverlayView(
507 mLauncherOverlayContainer, mLauncherOverlayCallbacks);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700508 mWorkspace.setLauncherOverlay(mLauncherOverlay);
509 }
Adam Cohen9211d422014-10-07 18:14:53 -0700510 }
Adam Cohenc3e12c72014-10-31 16:15:36 -0700511
512 if (shouldShowIntroScreen()) {
513 showIntroScreen();
514 } else {
515 showFirstRunActivity();
516 showFirstRunClings();
517 }
Adam Cohen9211d422014-10-07 18:14:53 -0700518 }
519
Sunny Goyal7779d622015-06-11 16:18:39 -0700520 @Override
521 public void onSettingsChanged(String settings, boolean value) {
522 if (Utilities.ALLOW_ROTATION_PREFERENCE_KEY.equals(settings)) {
523 mRotationEnabled = value;
524 if (!waitUntilResume(mUpdateOrientationRunnable, true)) {
525 mUpdateOrientationRunnable.run();
526 }
527 }
528 }
529
Adam Cohen9211d422014-10-07 18:14:53 -0700530 private LauncherCallbacks mLauncherCallbacks;
531
532 public void onPostCreate(Bundle savedInstanceState) {
533 super.onPostCreate(savedInstanceState);
534 if (mLauncherCallbacks != null) {
535 mLauncherCallbacks.onPostCreate(savedInstanceState);
536 }
537 }
538
539 public boolean setLauncherCallbacks(LauncherCallbacks callbacks) {
540 mLauncherCallbacks = callbacks;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700541 mLauncherCallbacks.setLauncherSearchCallback(new Launcher.LauncherSearchCallbacks() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700542 private boolean mWorkspaceImportanceStored = false;
543 private boolean mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700544 private int mWorkspaceImportanceForAccessibility =
545 View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
546 private int mHotseatImportanceForAccessibility = View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
547
548 @Override
549 public void onSearchOverlayOpened() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700550 if (mWorkspaceImportanceStored || mHotseatImportanceStored) {
Jun Mukai8af0cd82015-05-12 12:32:12 -0700551 return;
552 }
553 // The underlying workspace and hotseat are temporarily suppressed by the search
554 // overlay. So they sholudn't be accessible.
Jun Mukaie9819e62015-06-17 10:58:59 -0700555 if (mWorkspace != null) {
556 mWorkspaceImportanceForAccessibility =
557 mWorkspace.getImportantForAccessibility();
558 mWorkspace.setImportantForAccessibility(
559 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
560 mWorkspaceImportanceStored = true;
561 }
562 if (mHotseat != null) {
563 mHotseatImportanceForAccessibility = mHotseat.getImportantForAccessibility();
564 mHotseat.setImportantForAccessibility(
565 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
566 mHotseatImportanceStored = true;
567 }
Jun Mukai8af0cd82015-05-12 12:32:12 -0700568 }
569
570 @Override
571 public void onSearchOverlayClosed() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700572 if (mWorkspaceImportanceStored && mWorkspace != null) {
573 mWorkspace.setImportantForAccessibility(mWorkspaceImportanceForAccessibility);
574 }
575 if (mHotseatImportanceStored && mHotseat != null) {
576 mHotseat.setImportantForAccessibility(mHotseatImportanceForAccessibility);
577 }
578 mWorkspaceImportanceStored = false;
579 mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700580 }
581 });
Adam Cohen9211d422014-10-07 18:14:53 -0700582 return true;
Adam Cohenf9426d52012-06-04 17:26:21 -0700583 }
584
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700585 @Override
Adam Cohen9211d422014-10-07 18:14:53 -0700586 public void onLauncherProviderChange() {
587 if (mLauncherCallbacks != null) {
588 mLauncherCallbacks.onLauncherProviderChange();
589 }
590 }
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700591
Winson Chungef7f8742015-06-04 17:18:17 -0700592 /**
593 * Updates the bounds of all the overlays to match the new fixed bounds.
594 */
595 public void updateOverlayBounds(Rect newBounds) {
596 mAppsView.setSearchBarBounds(newBounds);
597 mWidgetsView.setSearchBarBounds(newBounds);
598 }
599
Adam Cohen9211d422014-10-07 18:14:53 -0700600 /** To be overridden by subclasses to hint to Launcher that we have custom content */
Winson Chung98ca0f72013-07-29 12:58:51 -0700601 protected boolean hasCustomContentToLeft() {
Adam Cohen9211d422014-10-07 18:14:53 -0700602 if (mLauncherCallbacks != null) {
603 return mLauncherCallbacks.hasCustomContentToLeft();
604 }
Winson Chung98ca0f72013-07-29 12:58:51 -0700605 return false;
606 }
607
Dave Hawkeya8881582013-09-17 15:55:33 -0600608 /**
Derek Prothrodadd9842014-01-17 13:43:50 -0500609 * To be overridden by subclasses to populate the custom content container and call
Dave Hawkeya8881582013-09-17 15:55:33 -0600610 * {@link #addToCustomContentPage}. This will only be invoked if
611 * {@link #hasCustomContentToLeft()} is {@code true}.
612 */
Derek Prothrodadd9842014-01-17 13:43:50 -0500613 protected void populateCustomContentContainer() {
Adam Cohen9211d422014-10-07 18:14:53 -0700614 if (mLauncherCallbacks != null) {
615 mLauncherCallbacks.populateCustomContentContainer();
616 }
Dave Hawkeya8881582013-09-17 15:55:33 -0600617 }
618
619 /**
620 * Invoked by subclasses to signal a change to the {@link #addCustomContentToLeft} value to
621 * ensure the custom content page is added or removed if necessary.
622 */
623 protected void invalidateHasCustomContentToLeft() {
Dave Hawkey3a733a72013-09-30 11:52:21 -0600624 if (mWorkspace == null || mWorkspace.getScreenOrder().isEmpty()) {
Dave Hawkeya8881582013-09-17 15:55:33 -0600625 // Not bound yet, wait for bindScreens to be called.
626 return;
627 }
628
629 if (!mWorkspace.hasCustomContent() && hasCustomContentToLeft()) {
630 // Create the custom content page and call the subclass to populate it.
Derek Prothrodadd9842014-01-17 13:43:50 -0500631 mWorkspace.createCustomContentContainer();
632 populateCustomContentContainer();
Dave Hawkeya8881582013-09-17 15:55:33 -0600633 } else if (mWorkspace.hasCustomContent() && !hasCustomContentToLeft()) {
634 mWorkspace.removeCustomContentPage();
635 }
636 }
637
Anton Hanssona2f665f2013-09-26 12:18:32 +0100638 public Stats getStats() {
639 return mStats;
640 }
641
Bjorn Bringertc459e522013-06-07 19:36:01 +0100642 public LayoutInflater getInflater() {
643 return mInflater;
644 }
645
Hyunyoung Song3f471442015-04-08 19:01:34 -0700646 public boolean isDraggingEnabled() {
Winson Chung36a62fe2012-05-06 18:04:42 -0700647 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
648 // that is subsequently removed from the workspace in startBinding().
Sunny Goyal639e9062015-08-19 19:17:06 -0700649 return !isWorkspaceLoading();
Winson Chung36a62fe2012-05-06 18:04:42 -0700650 }
651
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000652 public int getViewIdForItem(ItemInfo info) {
Sunny Goyald1a0e8b2015-08-27 17:45:46 -0700653 // aapt-generated IDs have the high byte nonzero; clamp to the range under that.
654 // This cast is safe as long as the id < 0x00FFFFFF
655 // Since we jail all the dynamically generated views, there should be no clashes
656 // with any other views.
657 return (int) info.id;
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000658 }
659
660 /**
Winson Chung557d6ed2011-07-08 15:34:52 -0700661 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
662 * a configuration step, this allows the proper animations to run after other transitions.
663 */
Adam Cohendb364c32014-05-20 14:23:40 -0700664 private long completeAdd(PendingAddArguments args) {
Adam Cohen83079e42014-09-19 17:43:08 -0700665 long screenId = args.screenId;
666 if (args.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
667 // When the screen id represents an actual screen (as opposed to a rank) we make sure
668 // that the drop page actually exists.
669 screenId = ensurePendingDropLayoutExists(args.screenId);
670 }
Adam Cohendb364c32014-05-20 14:23:40 -0700671
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800672 switch (args.requestCode) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800673 case REQUEST_CREATE_SHORTCUT:
Adam Cohendb364c32014-05-20 14:23:40 -0700674 completeAddShortcut(args.intent, args.container, screenId, args.cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -0700675 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700676 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800677 case REQUEST_CREATE_APPWIDGET:
Adam Cohendb364c32014-05-20 14:23:40 -0700678 completeAddAppWidget(args.appWidgetId, args.container, screenId, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700679 break;
Sunny Goyalff572272014-07-23 13:58:07 -0700680 case REQUEST_RECONFIGURE_APPWIDGET:
681 completeRestoreAppWidget(args.appWidgetId);
682 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800683 }
Michael Jurka27614d22012-04-02 06:40:22 -0700684 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
685 // if you turned the screen off and then back while in All Apps, Launcher would not
686 // return to the workspace. Clearing mAddInfo.container here fixes this issue
687 resetAddInfo();
Adam Cohendb364c32014-05-20 14:23:40 -0700688 return screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800689 }
690
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800691 private void handleActivityResult(
Michael Jurka8b805b12012-04-18 14:23:14 -0700692 final int requestCode, final int resultCode, final Intent data) {
Winson Chunge341d302013-08-16 14:31:00 -0700693 // Reset the startActivity waiting flag
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700694 setWaitingForResult(false);
Adam Cohendb364c32014-05-20 14:23:40 -0700695 final int pendingAddWidgetId = mPendingAddWidgetId;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800696 mPendingAddWidgetId = -1;
Winson Chunge341d302013-08-16 14:31:00 -0700697
Adam Cohenad4e15c2013-10-17 16:21:35 -0700698 Runnable exitSpringLoaded = new Runnable() {
699 @Override
700 public void run() {
701 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
702 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
703 }
704 };
705
Michael Jurka8b805b12012-04-18 14:23:14 -0700706 if (requestCode == REQUEST_BIND_APPWIDGET) {
Winsona1f79d32015-08-05 14:00:45 -0700707 // This is called only if the user did not previously have permissions to bind widgets
Adam Cohenad4e15c2013-10-17 16:21:35 -0700708 final int appWidgetId = data != null ?
Michael Jurka8b805b12012-04-18 14:23:14 -0700709 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
710 if (resultCode == RESULT_CANCELED) {
711 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
Adam Cohen689ff162014-05-08 17:27:56 -0700712 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700713 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
Michael Jurka8b805b12012-04-18 14:23:14 -0700714 } else if (resultCode == RESULT_OK) {
Sunny Goyale6b63a32015-01-16 16:14:29 -0800715 addAppWidgetImpl(appWidgetId, mPendingAddInfo, null,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700716 mPendingAddWidgetInfo, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
Winsona1f79d32015-08-05 14:00:45 -0700717
718 // When the user has granted permission to bind widgets, we should check to see if
719 // we can inflate the default search bar widget.
720 getOrCreateQsbBar();
Michael Jurka8b805b12012-04-18 14:23:14 -0700721 }
722 return;
Michael Jurka336fd4f2013-09-12 00:05:02 +0200723 } else if (requestCode == REQUEST_PICK_WALLPAPER) {
724 if (resultCode == RESULT_OK && mWorkspace.isInOverviewMode()) {
Tony Wickham6ed058c2015-09-09 18:21:49 -0700725 // User could have free-scrolled between pages before picking a wallpaper; make sure
726 // we move to the closest one now to avoid visual jump.
727 mWorkspace.setCurrentPage(mWorkspace.getPageNearestToCenterOfScreen());
Winson Chungdc61c4d2015-04-20 18:26:57 -0700728 showWorkspace(false);
Michael Jurka336fd4f2013-09-12 00:05:02 +0200729 }
730 return;
Michael Jurka8b805b12012-04-18 14:23:14 -0700731 }
Michael Jurka336fd4f2013-09-12 00:05:02 +0200732
Adam Cohened66b2b2012-01-23 17:28:51 -0800733 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
Sunny Goyal5c97f512015-05-19 16:03:28 -0700734 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700735
Adam Cohendb364c32014-05-20 14:23:40 -0700736 final boolean workspaceLocked = isWorkspaceLocked();
Adam Cohened66b2b2012-01-23 17:28:51 -0800737 // We have special handling for widgets
738 if (isWidgetDrop) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800739 final int appWidgetId;
740 int widgetId = data != null ? data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1)
741 : -1;
742 if (widgetId < 0) {
743 appWidgetId = pendingAddWidgetId;
744 } else {
745 appWidgetId = widgetId;
746 }
747
Adam Cohenad4e15c2013-10-17 16:21:35 -0700748 final int result;
Adam Cohenf0129b12013-11-04 17:57:36 -0800749 if (appWidgetId < 0 || resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700750 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not " +
751 "returned from the widget configuration activity.");
Adam Cohenad4e15c2013-10-17 16:21:35 -0700752 result = RESULT_CANCELED;
753 completeTwoStageWidgetDrop(result, appWidgetId);
Adam Cohendb364c32014-05-20 14:23:40 -0700754 final Runnable onComplete = new Runnable() {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700755 @Override
756 public void run() {
757 exitSpringLoadedDragModeDelayed(false, 0, null);
758 }
759 };
Adam Cohendb364c32014-05-20 14:23:40 -0700760 if (workspaceLocked) {
761 // No need to remove the empty screen if we're mid-binding, as the
762 // the bind will not add the empty screen.
763 mWorkspace.postDelayed(onComplete, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
764 } else {
765 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
766 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
767 }
Winson Chung5aaab772012-04-27 15:24:02 -0700768 } else {
Adam Cohendb364c32014-05-20 14:23:40 -0700769 if (!workspaceLocked) {
Adam Cohen83079e42014-09-19 17:43:08 -0700770 if (mPendingAddInfo.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
771 // When the screen id represents an actual screen (as opposed to a rank)
772 // we make sure that the drop page actually exists.
773 mPendingAddInfo.screenId =
774 ensurePendingDropLayoutExists(mPendingAddInfo.screenId);
775 }
Adam Cohendb364c32014-05-20 14:23:40 -0700776 final CellLayout dropLayout = mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
777
778 dropLayout.setDropPending(true);
779 final Runnable onComplete = new Runnable() {
780 @Override
781 public void run() {
782 completeTwoStageWidgetDrop(resultCode, appWidgetId);
783 dropLayout.setDropPending(false);
784 }
785 };
786 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
787 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
788 } else {
789 PendingAddArguments args = preparePendingAddArgs(requestCode, data, appWidgetId,
790 mPendingAddInfo);
791 sPendingAddItem = args;
792 }
Winson Chung5aaab772012-04-27 15:24:02 -0700793 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800794 return;
795 }
796
Sunny Goyalff572272014-07-23 13:58:07 -0700797 if (requestCode == REQUEST_RECONFIGURE_APPWIDGET) {
798 if (resultCode == RESULT_OK) {
799 // Update the widget view.
800 PendingAddArguments args = preparePendingAddArgs(requestCode, data,
801 pendingAddWidgetId, mPendingAddInfo);
802 if (workspaceLocked) {
803 sPendingAddItem = args;
804 } else {
805 completeAdd(args);
806 }
807 }
808 // Leave the widget in the pending state if the user canceled the configure.
809 return;
810 }
811
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800812 // The pattern used here is that a user PICKs a specific application,
813 // which, depending on the target, might need to CREATE the actual target.
Romain Guycbb89e42009-06-08 15:52:54 -0700814
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800815 // For example, the user would PICK_SHORTCUT for "Music playlist", and we
816 // launch over to the Music app to actually CREATE_SHORTCUT.
Winson Chungc7da5552011-08-10 15:28:45 -0700817 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
Adam Cohendb364c32014-05-20 14:23:40 -0700818 final PendingAddArguments args = preparePendingAddArgs(requestCode, data, -1,
819 mPendingAddInfo);
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800820 if (isWorkspaceLocked()) {
Adam Cohendb364c32014-05-20 14:23:40 -0700821 sPendingAddItem = args;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800822 } else {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700823 completeAdd(args);
Adam Cohendb364c32014-05-20 14:23:40 -0700824 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
825 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800826 }
Adam Cohen00074722013-10-11 17:46:09 -0700827 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen689ff162014-05-08 17:27:56 -0700828 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700829 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800830 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800831 mDragLayer.clearAnimatedView();
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800832
833 }
834
835 @Override
836 protected void onActivityResult(
837 final int requestCode, final int resultCode, final Intent data) {
838 handleActivityResult(requestCode, resultCode, data);
839 if (mLauncherCallbacks != null) {
840 mLauncherCallbacks.onActivityResult(requestCode, resultCode, data);
841 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800842 }
843
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600844 /** @Override for MNC */
Sunny Goyaldd2e6df2015-07-07 10:57:57 -0700845 public void onRequestPermissionsResult(int requestCode, String[] permissions,
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600846 int[] grantResults) {
Sunny Goyal28c6b962015-10-12 11:42:05 -0700847 if (requestCode == REQUEST_PERMISSION_CALL_PHONE && sPendingAddItem != null
848 && sPendingAddItem.requestCode == REQUEST_PERMISSION_CALL_PHONE) {
849 View v = null;
850 CellLayout layout = getCellLayout(sPendingAddItem.container, sPendingAddItem.screenId);
851 if (layout != null) {
852 v = layout.getChildAt(sPendingAddItem.cellX, sPendingAddItem.cellY);
853 }
854 Intent intent = sPendingAddItem.intent;
855 sPendingAddItem = null;
856 if (grantResults.length > 0
857 && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
858 startActivity(v, intent, null);
859 } else {
860 // TODO: Show a snack bar with link to settings
861 Toast.makeText(this, getString(R.string.msg_no_phone_permission,
862 getString(R.string.app_name)), Toast.LENGTH_SHORT).show();
863 }
864 }
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600865 if (mLauncherCallbacks != null) {
866 mLauncherCallbacks.onRequestPermissionsResult(requestCode, permissions,
867 grantResults);
868 }
869 }
870
Adam Cohendb364c32014-05-20 14:23:40 -0700871 private PendingAddArguments preparePendingAddArgs(int requestCode, Intent data, int
872 appWidgetId, ItemInfo info) {
873 PendingAddArguments args = new PendingAddArguments();
874 args.requestCode = requestCode;
875 args.intent = data;
876 args.container = info.container;
877 args.screenId = info.screenId;
878 args.cellX = info.cellX;
879 args.cellY = info.cellY;
880 args.appWidgetId = appWidgetId;
881 return args;
882 }
883
884 /**
885 * Check to see if a given screen id exists. If not, create it at the end, return the new id.
886 *
887 * @param screenId the screen id to check
888 * @return the new screen, or screenId if it exists
889 */
890 private long ensurePendingDropLayoutExists(long screenId) {
891 CellLayout dropLayout =
892 (CellLayout) mWorkspace.getScreenWithId(screenId);
893 if (dropLayout == null) {
894 // it's possible that the add screen was removed because it was
895 // empty and a re-bind occurred
896 mWorkspace.addExtraEmptyScreen();
897 return mWorkspace.commitExtraEmptyScreen();
898 } else {
899 return screenId;
900 }
901 }
902
Adam Cohen091440a2015-03-18 14:16:05 -0700903 @Thunk void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
Tony Wickhama501d492015-11-03 18:05:01 -0800904 CellLayout cellLayout = mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800905 Runnable onCompleteRunnable = null;
906 int animationType = 0;
907
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700908 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800909 if (resultCode == RESULT_OK) {
910 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
911 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700912 mPendingAddWidgetInfo);
913 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800914 onCompleteRunnable = new Runnable() {
915 @Override
916 public void run() {
917 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700918 mPendingAddInfo.screenId, layout, null);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700919 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
920 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
Adam Cohened66b2b2012-01-23 17:28:51 -0800921 }
922 };
923 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800924 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800925 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
Adam Cohened66b2b2012-01-23 17:28:51 -0800926 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700927 if (mDragLayer.getAnimatedView() != null) {
928 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
929 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
930 animationType, boundWidget, true);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700931 } else if (onCompleteRunnable != null) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700932 // The animated view may be null in the case of a rotation during widget configuration
933 onCompleteRunnable.run();
934 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800935 }
936
937 @Override
Michael Jurkacd496d72013-04-11 11:32:45 -0700938 protected void onStop() {
939 super.onStop();
940 FirstFrameAnimatorHelper.setIsVisible(false);
Adam Cohen9211d422014-10-07 18:14:53 -0700941
942 if (mLauncherCallbacks != null) {
943 mLauncherCallbacks.onStop();
944 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700945 }
946
947 @Override
948 protected void onStart() {
949 super.onStart();
950 FirstFrameAnimatorHelper.setIsVisible(true);
Adam Cohen9211d422014-10-07 18:14:53 -0700951
952 if (mLauncherCallbacks != null) {
953 mLauncherCallbacks.onStart();
954 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700955 }
956
957 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800958 protected void onResume() {
Michael Jurka447bf842013-05-15 14:52:15 +0200959 long startTime = 0;
960 if (DEBUG_RESUME_TIME) {
961 startTime = System.currentTimeMillis();
Daniel Sandler924b9932013-06-12 00:38:25 -0400962 Log.v(TAG, "Launcher.onResume()");
Michael Jurka447bf842013-05-15 14:52:15 +0200963 }
Adam Cohen9211d422014-10-07 18:14:53 -0700964
965 if (mLauncherCallbacks != null) {
966 mLauncherCallbacks.preOnResume();
967 }
968
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800969 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700970
Winson Chung4a2afa32012-07-19 14:53:05 -0700971 // Restore the previous launcher state
Winson Chung75cc8252015-04-10 10:19:58 -0700972 if (mOnResumeState == State.WORKSPACE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700973 showWorkspace(false);
Winson Chungb745afb2015-03-02 11:51:23 -0800974 } else if (mOnResumeState == State.APPS) {
Winson Chung13eb5272015-05-11 16:30:13 -0700975 boolean launchedFromApp = (mWaitingForResume != null);
Winson Chung4ac30062015-05-08 17:34:17 -0700976 // Don't update the predicted apps if the user is returning to launcher in the apps
Winson Chung13eb5272015-05-11 16:30:13 -0700977 // view after launching an app, as they may be depending on the UI to be static to
978 // switch to another app, otherwise, if it was
Winson Chung4ac30062015-05-08 17:34:17 -0700979 showAppsView(false /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -0700980 !launchedFromApp /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -0800981 } else if (mOnResumeState == State.WIDGETS) {
982 showWidgetsView(false, false);
Winson Chung4a2afa32012-07-19 14:53:05 -0700983 }
984 mOnResumeState = State.NONE;
985
Sunny Goyal4a6c6f32015-05-19 12:36:46 -0700986 // Background was set to gradient in onPause(), restore to transparent if in all apps.
Sunny Goyald70ad0d2015-05-26 17:20:07 -0700987 setWorkspaceBackground(mState == State.WORKSPACE ? WORKSPACE_BACKGROUND_GRADIENT
988 : WORKSPACE_BACKGROUND_TRANSPARENT);
Craig Mautner360310b2012-10-26 15:13:08 -0700989
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800990 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700991 if (mRestoring || mOnResumeNeedsLoad) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700992 setWorkspaceLoading(true);
Sunny Goyal22aa3812015-08-19 16:24:27 -0700993
994 // If we're starting binding all over again, clear any bind calls we'd postponed in
995 // the past (see waitUntilResume) -- we don't need them since we're starting binding
996 // from scratch again
997 mBindOnResumeCallbacks.clear();
998
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700999 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001000 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001001 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001002 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001003 if (mBindOnResumeCallbacks.size() > 0) {
Michael Jurkac402cd92013-05-20 15:49:32 +02001004 // We might have postponed some bind calls until onResume (see waitUntilResume) --
1005 // execute them here
1006 long startTimeCallbacks = 0;
1007 if (DEBUG_RESUME_TIME) {
1008 startTimeCallbacks = System.currentTimeMillis();
1009 }
1010
Michael Jurka1e2f4652013-07-08 18:03:46 -07001011 for (int i = 0; i < mBindOnResumeCallbacks.size(); i++) {
1012 mBindOnResumeCallbacks.get(i).run();
Michael Jurkac402cd92013-05-20 15:49:32 +02001013 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001014 mBindOnResumeCallbacks.clear();
Michael Jurkac402cd92013-05-20 15:49:32 +02001015 if (DEBUG_RESUME_TIME) {
1016 Log.d(TAG, "Time spent processing callbacks in onResume: " +
1017 (System.currentTimeMillis() - startTimeCallbacks));
1018 }
Michael Jurka447bf842013-05-15 14:52:15 +02001019 }
Michael Jurka54554252013-08-01 12:52:23 +02001020 if (mOnResumeCallbacks.size() > 0) {
1021 for (int i = 0; i < mOnResumeCallbacks.size(); i++) {
1022 mOnResumeCallbacks.get(i).run();
1023 }
1024 mOnResumeCallbacks.clear();
1025 }
Winson Chunge4e50662012-01-23 14:45:13 -08001026
1027 // Reset the pressed state of icons that were locked in the press state while activities
1028 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -08001029 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -08001030 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -08001031 mWaitingForResume.setStayPressed(false);
1032 }
Winson Chung82963d52013-10-09 11:20:57 -07001033
Adam Cohen06dff352012-06-01 17:17:08 -07001034 // It is possible that widgets can receive updates while launcher is not in the foreground.
1035 // Consequently, the widgets will be inflated in the orientation of the foreground activity
1036 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
1037 // orientation.
Sunny Goyal6bec75f2015-10-01 18:50:48 -07001038 if (!isWorkspaceLoading()) {
1039 getWorkspace().reinflateWidgetsIfNecessary();
1040 }
Sunny Goyal22235bc2015-04-03 09:23:43 -07001041 reinflateQSBIfNecessary();
Adam Cohenf9426d52012-06-04 17:26:21 -07001042
Michael Jurka447bf842013-05-15 14:52:15 +02001043 if (DEBUG_RESUME_TIME) {
1044 Log.d(TAG, "Time spent in onResume: " + (System.currentTimeMillis() - startTime));
1045 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001046
Adam Cohen4b66bf32015-09-18 12:15:19 -07001047 // We want to suppress callbacks about CustomContent being shown if we have just received
1048 // onNewIntent while the user was present within launcher. In that case, we post a call
1049 // to move the user to the main screen (which will occur after onResume). We don't want to
1050 // have onHide (from onPause), then onShow, then onHide again, which we get if we don't
1051 // suppress here.
1052 if (mWorkspace.getCustomContentCallbacks() != null
1053 && !mMoveToDefaultScreenFromNewIntent) {
Adam Cohen6fecd412013-10-02 17:41:50 -07001054 // If we are resuming and the custom content is the current page, we call onShow().
Adam Cohen4b66bf32015-09-18 12:15:19 -07001055 // It is also possible that onShow will instead be called slightly after first layout
Adam Cohen6fecd412013-10-02 17:41:50 -07001056 // if PagedView#setRestorePage was set to the custom content page in onCreate().
1057 if (mWorkspace.isOnOrMovingToCustomContent()) {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001058 mWorkspace.getCustomContentCallbacks().onShow(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001059 }
1060 }
Adam Cohen4b66bf32015-09-18 12:15:19 -07001061 mMoveToDefaultScreenFromNewIntent = false;
Winson Chungcd99cd32015-04-29 11:03:24 -07001062 updateInteraction(Workspace.State.NORMAL, mWorkspace.getState());
Adam Cohen53805212013-10-01 10:39:23 -07001063 mWorkspace.onResume();
Sunny Goyale755d462014-07-22 13:48:29 -07001064
Sunny Goyal756adbc2015-04-16 15:20:51 -07001065 if (!isWorkspaceLoading()) {
1066 // Process any items that were added while Launcher was away.
1067 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
1068 }
Adam Cohen9211d422014-10-07 18:14:53 -07001069
1070 if (mLauncherCallbacks != null) {
1071 mLauncherCallbacks.onResume();
1072 }
Adam Cohen06dff352012-06-01 17:17:08 -07001073 }
1074
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001075 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001076 protected void onPause() {
Winson Chung997a9232013-07-24 15:33:46 -07001077 // Ensure that items added to Launcher are queued until Launcher returns
1078 InstallShortcutReceiver.enableInstallQueue();
1079
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001080 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001081 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -08001082 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -07001083 mDragController.resetLastGestureUpTime();
Adam Cohen6fecd412013-10-02 17:41:50 -07001084
1085 // We call onHide() aggressively. The custom content callbacks should be able to
1086 // debounce excess onHide calls.
1087 if (mWorkspace.getCustomContentCallbacks() != null) {
1088 mWorkspace.getCustomContentCallbacks().onHide();
1089 }
Romain Guycbb89e42009-06-08 15:52:54 -07001090
Adam Cohen9211d422014-10-07 18:14:53 -07001091 if (mLauncherCallbacks != null) {
1092 mLauncherCallbacks.onPause();
Adam Cohenbffe7452013-07-22 18:21:45 -07001093 }
Adam Cohenbffe7452013-07-22 18:21:45 -07001094 }
1095
1096 public interface CustomContentCallbacks {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001097 // Custom content is completely shown. {@code fromResume} indicates whether this was caused
1098 // by a onResume or by scrolling otherwise.
1099 public void onShow(boolean fromResume);
Adam Cohenbffe7452013-07-22 18:21:45 -07001100
1101 // Custom content is completely hidden
1102 public void onHide();
Adam Cohenc36fa5c2013-08-29 11:54:42 -07001103
1104 // Custom content scroll progress changed. From 0 (not showing) to 1 (fully showing).
1105 public void onScrollProgressChanged(float progress);
Jan-Willem Maarse2ff91c42014-07-10 15:58:12 -07001106
1107 // Indicates whether the user is allowed to scroll away from the custom content.
1108 boolean isScrollingAllowed();
Adam Cohenbffe7452013-07-22 18:21:45 -07001109 }
1110
Adam Cohenc2d6e892014-10-16 09:49:24 -07001111 public interface LauncherOverlay {
1112
1113 /**
1114 * Touch interaction leading to overscroll has begun
1115 */
1116 public void onScrollInteractionBegin();
1117
1118 /**
1119 * Touch interaction related to overscroll has ended
1120 */
1121 public void onScrollInteractionEnd();
1122
1123 /**
1124 * Scroll progress, between 0 and 100, when the user scrolls beyond the leftmost
1125 * screen (or in the case of RTL, the rightmost screen).
1126 */
1127 public void onScrollChange(int progress, boolean rtl);
1128
1129 /**
1130 * Screen has stopped scrolling
1131 */
1132 public void onScrollSettled();
1133
1134 /**
1135 * This method can be called by the Launcher in order to force the LauncherOverlay
1136 * to exit fully immersive mode.
1137 */
1138 public void forceExitFullImmersion();
1139 }
1140
Jun Mukai8af0cd82015-05-12 12:32:12 -07001141 public interface LauncherSearchCallbacks {
1142 /**
1143 * Called when the search overlay is shown.
1144 */
1145 public void onSearchOverlayOpened();
1146
1147 /**
1148 * Called when the search overlay is dismissed.
1149 */
1150 public void onSearchOverlayClosed();
1151 }
1152
Adam Cohenc2d6e892014-10-16 09:49:24 -07001153 public interface LauncherOverlayCallbacks {
1154 /**
1155 * This method indicates whether a call to {@link #enterFullImmersion()} will succeed,
1156 * however it doesn't modify any state within the launcher.
1157 */
1158 public boolean canEnterFullImmersion();
1159
1160 /**
1161 * Should be called to tell Launcher that the LauncherOverlay will take over interaction,
1162 * eg. by occupying the full screen and handling all touch events.
1163 *
1164 * @return true if Launcher allows the LauncherOverlay to become fully immersive. In this
1165 * case, Launcher will modify any necessary state and assumes the overlay is
1166 * handling all interaction. If false, the LauncherOverlay should cancel any
1167 *
1168 */
1169 public boolean enterFullImmersion();
1170
1171 /**
1172 * Must be called when exiting fully immersive mode. Indicates to Launcher that it has
1173 * full control over UI and state.
1174 */
1175 public void exitFullImmersion();
1176 }
1177
1178 class LauncherOverlayCallbacksImpl implements LauncherOverlayCallbacks {
1179
1180 @Override
1181 public boolean canEnterFullImmersion() {
1182 return mState == State.WORKSPACE;
1183 }
1184
1185 @Override
1186 public boolean enterFullImmersion() {
1187 if (mState == State.WORKSPACE) {
1188 // When fully immersed, disregard any touches which fall through.
1189 mDragLayer.setBlockTouch(true);
1190 return true;
1191 }
1192 return false;
1193 }
1194
1195 @Override
1196 public void exitFullImmersion() {
1197 mDragLayer.setBlockTouch(false);
1198 }
1199 }
1200
Jorim Jaggid017f882014-01-14 17:08:48 -08001201 protected boolean hasSettings() {
Adam Cohen9211d422014-10-07 18:14:53 -07001202 if (mLauncherCallbacks != null) {
1203 return mLauncherCallbacks.hasSettings();
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07001204 } else {
1205 // On devices with a locked orientation, we will at least have the allow rotation
1206 // setting.
1207 return !Utilities.isRotationAllowedForDevice(this);
Adam Cohen9211d422014-10-07 18:14:53 -07001208 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001209 }
1210
Adam Cohen9211d422014-10-07 18:14:53 -07001211 public void addToCustomContentPage(View customContent,
Adam Cohen53805212013-10-01 10:39:23 -07001212 CustomContentCallbacks callbacks, String description) {
1213 mWorkspace.addToCustomContentPage(customContent, callbacks, description);
Adam Cohen66a01fd2013-06-11 12:48:00 -07001214 }
1215
Adam Cohenedb40762013-07-18 16:45:45 -07001216 // The custom content needs to offset its content to account for the QSB
1217 public int getTopOffsetForCustomContent() {
1218 return mWorkspace.getPaddingTop();
1219 }
1220
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001221 @Override
1222 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001223 // Flag the loader to stop early before switching
Adam Cohen1a85c582014-09-30 09:48:49 -07001224 if (mModel.isCurrentCallbacks(this)) {
1225 mModel.stopLoader();
1226 }
Hyunyoung Song3f471442015-04-08 19:01:34 -07001227 //TODO(hyunyoungs): stop the widgets loader when there is a rotation.
1228
Romain Guy13c2e7b2010-03-10 19:45:00 -08001229 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001230 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001231
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001232 // We can't hide the IME if it was forced open. So don't bother
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001233 @Override
1234 public void onWindowFocusChanged(boolean hasFocus) {
1235 super.onWindowFocusChanged(hasFocus);
Adam Cohened307df2013-10-02 09:37:31 -07001236 mHasFocus = hasFocus;
Adam Cohen9211d422014-10-07 18:14:53 -07001237
1238 if (mLauncherCallbacks != null) {
1239 mLauncherCallbacks.onWindowFocusChanged(hasFocus);
1240 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001241 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001242
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001243 private boolean acceptFilter() {
1244 final InputMethodManager inputManager = (InputMethodManager)
1245 getSystemService(Context.INPUT_METHOD_SERVICE);
1246 return !inputManager.isFullscreenMode();
1247 }
1248
1249 @Override
1250 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -07001251 final int uniChar = event.getUnicodeChar();
1252 final boolean handled = super.onKeyDown(keyCode, event);
1253 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
1254 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001255 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
1256 keyCode, event);
1257 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001258 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -07001259 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -07001260 // showSearchDialog()
1261 // If there are multiple keystrokes before the search dialog takes focus,
1262 // onSearchRequested() will be called for every keystroke,
1263 // but it is idempotent, so it's fine.
1264 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001265 }
1266 }
1267
Joe Onorato8a9625e2010-01-28 15:55:35 -08001268 // Eat the long press event so the keyboard doesn't come up.
1269 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
1270 return true;
1271 }
1272
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001273 return handled;
1274 }
1275
Winson46163472015-09-22 17:31:56 -07001276 @Override
1277 public boolean onKeyUp(int keyCode, KeyEvent event) {
1278 if (keyCode == KeyEvent.KEYCODE_MENU) {
1279 // Ignore the menu key if we are currently dragging or are on the custom content screen
1280 if (!isOnCustomContent() && !mDragController.isDragging()) {
1281 // Close any open folders
1282 closeFolder();
1283
1284 // Stop resizing any widgets
1285 mWorkspace.exitWidgetResizeMode();
1286
1287 // Show the overview mode if we are on the workspace
1288 if (mState == State.WORKSPACE && !mWorkspace.isInOverviewMode() &&
1289 !mWorkspace.isSwitchingState()) {
1290 mOverviewPanel.requestFocus();
Winsone9f27272015-10-13 10:47:51 -07001291 showOverviewMode(true, true /* requestButtonFocus */);
Winson46163472015-09-22 17:31:56 -07001292 }
1293 }
1294 return true;
1295 }
1296 return super.onKeyUp(keyCode, event);
1297 }
1298
Karl Rosaen138a0412009-04-23 19:00:21 -07001299 private String getTypedText() {
1300 return mDefaultKeySsb.toString();
1301 }
1302
1303 private void clearTypedText() {
1304 mDefaultKeySsb.clear();
1305 mDefaultKeySsb.clearSpans();
1306 Selection.setSelection(mDefaultKeySsb, 0);
1307 }
1308
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001309 /**
Michael Jurka883f55b2010-10-21 15:47:14 -07001310 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
1311 * State
1312 */
1313 private static State intToState(int stateOrdinal) {
1314 State state = State.WORKSPACE;
1315 final State[] stateValues = State.values();
1316 for (int i = 0; i < stateValues.length; i++) {
1317 if (stateValues[i].ordinal() == stateOrdinal) {
1318 state = stateValues[i];
1319 break;
1320 }
1321 }
1322 return state;
1323 }
1324
1325 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001326 * Restores the previous state, if it exists.
1327 *
1328 * @param savedState The previous state.
1329 */
1330 private void restoreState(Bundle savedState) {
1331 if (savedState == null) {
1332 return;
1333 }
1334
Michael Jurka883f55b2010-10-21 15:47:14 -07001335 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungb745afb2015-03-02 11:51:23 -08001336 if (state == State.APPS || state == State.WIDGETS) {
1337 mOnResumeState = state;
Joe Onorato3a8820b2009-11-10 15:06:42 -08001338 }
1339
Adam Cohen21cd0022013-10-09 18:57:02 -07001340 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN,
1341 PagedView.INVALID_RESTORE_PAGE);
1342 if (currentScreen != PagedView.INVALID_RESTORE_PAGE) {
Winson Chung8c87cd82013-07-23 16:20:10 -07001343 mWorkspace.setRestorePage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001344 }
1345
Winson Chung3d503fb2011-07-13 17:25:49 -07001346 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
Adam Cohendcd297f2013-06-18 13:13:40 -07001347 final long pendingAddScreen = savedState.getLong(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001348
Winson Chung3d503fb2011-07-13 17:25:49 -07001349 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
1350 mPendingAddInfo.container = pendingAddContainer;
Adam Cohendcd297f2013-06-18 13:13:40 -07001351 mPendingAddInfo.screenId = pendingAddScreen;
Winson Chung3d503fb2011-07-13 17:25:49 -07001352 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
1353 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001354 mPendingAddInfo.spanX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_X);
1355 mPendingAddInfo.spanY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y);
Adam Cohenb823ae42015-03-27 18:07:52 -07001356 AppWidgetProviderInfo info = savedState.getParcelable(
1357 RUNTIME_STATE_PENDING_ADD_WIDGET_INFO);
Sunny Goyalf044bb12015-05-12 13:30:07 -07001358 mPendingAddWidgetInfo = info == null ?
1359 null : LauncherAppWidgetProviderInfo.fromProviderInfo(this, info);
1360
Adam Cohen4637b5a2013-11-04 18:21:24 -08001361 mPendingAddWidgetId = savedState.getInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID);
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001362 setWaitingForResult(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001363 mRestoring = true;
1364 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001365 }
1366
1367 /**
1368 * Finds all the views we need and configure them properly.
1369 */
1370 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -07001371 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -04001372
Craig Mautner360310b2012-10-26 15:13:08 -07001373 mLauncherView = findViewById(R.id.launcher);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001374 mFocusHandler = (FocusIndicatorView) findViewById(R.id.focus_indicator);
Winson Chung4c98d922011-05-31 16:50:48 -07001375 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
1376 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Anjali Koppalf5d29132014-02-28 13:33:27 -08001377 mWorkspace.setPageSwitchListener(this);
Winson Chunga6945242014-01-08 14:04:34 -08001378 mPageIndicators = mDragLayer.findViewById(R.id.page_indicator);
Craig Mautner360310b2012-10-26 15:13:08 -07001379
John Spurlock77e1f472013-09-11 10:09:51 -04001380 mLauncherView.setSystemUiVisibility(
1381 View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
Craig Mautner360310b2012-10-26 15:13:08 -07001382 mWorkspaceBackgroundDrawable = getResources().getDrawable(R.drawable.workspace_bg);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001383
Winson Chung4c98d922011-05-31 16:50:48 -07001384 // Setup the drag layer
1385 mDragLayer.setup(this, dragController);
1386
Winson Chung3d503fb2011-07-13 17:25:49 -07001387 // Setup the hotseat
1388 mHotseat = (Hotseat) findViewById(R.id.hotseat);
1389 if (mHotseat != null) {
Winson Chung11a1a532013-09-13 11:14:45 -07001390 mHotseat.setOnLongClickListener(this);
Winson Chung3d503fb2011-07-13 17:25:49 -07001391 }
1392
Winsone9f27272015-10-13 10:47:51 -07001393 // Setup the overview panel
1394 setupOverviewPanel();
Adam Cohenf358a4b2013-07-23 16:47:31 -07001395
Winson Chung4c98d922011-05-31 16:50:48 -07001396 // Setup the workspace
1397 mWorkspace.setHapticFeedbackEnabled(false);
1398 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -07001399 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -07001400 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001401
Winson Chungf0ea4d32011-06-06 14:27:16 -07001402 // Get the search/delete bar
Adam Cohen24ce0b32014-01-14 16:18:14 -08001403 mSearchDropTargetBar = (SearchDropTargetBar)
1404 mDragLayer.findViewById(R.id.search_drop_target_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001405
Winson Chungef7f8742015-06-04 17:18:17 -07001406 // Setup Apps and Widgets
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001407 mAppsView = (AllAppsContainerView) findViewById(R.id.apps_view);
Hyunyoung Song3f471442015-04-08 19:01:34 -07001408 mWidgetsView = (WidgetsContainerView) findViewById(R.id.widgets_view);
Winson Chungef7f8742015-06-04 17:18:17 -07001409 if (mLauncherCallbacks != null && mLauncherCallbacks.getAllAppsSearchBarController() != null) {
1410 mAppsView.setSearchBarController(mLauncherCallbacks.getAllAppsSearchBarController());
1411 } else {
Sunny Goyal0ac7ede2016-01-29 13:14:14 -08001412 mAppsView.setSearchBarController(new DefaultAppSearchController());
Winson Chungef7f8742015-06-04 17:18:17 -07001413 }
Craig Mautner360310b2012-10-26 15:13:08 -07001414
Winson Chung3d503fb2011-07-13 17:25:49 -07001415 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -07001416 dragController.setDragScoller(mWorkspace);
1417 dragController.setScrollView(mDragLayer);
1418 dragController.setMoveTarget(mWorkspace);
1419 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -07001420 if (mSearchDropTargetBar != null) {
1421 mSearchDropTargetBar.setup(this, dragController);
Adam Cohenb0df1b02015-03-18 22:21:40 -07001422 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Michael Jurkae0f5a612011-02-07 16:45:41 -08001423 }
Daniel Sandler924b9932013-06-12 00:38:25 -04001424
Sunny Goyald3060552015-06-25 19:35:49 -07001425 if (TestingUtils.MEMORY_DUMP_ENABLED) {
1426 TestingUtils.addWeightWatcher(this);
Daniel Sandler924b9932013-06-12 00:38:25 -04001427 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001428 }
1429
Winsone9f27272015-10-13 10:47:51 -07001430 private void setupOverviewPanel() {
1431 mOverviewPanel = (ViewGroup) findViewById(R.id.overview_panel);
1432
1433 // Long-clicking buttons in the overview panel does the same thing as clicking them.
1434 OnLongClickListener performClickOnLongClick = new OnLongClickListener() {
1435 @Override
1436 public boolean onLongClick(View v) {
1437 return v.performClick();
1438 }
1439 };
1440
1441 // Bind wallpaper button actions
1442 View wallpaperButton = findViewById(R.id.wallpaper_button);
1443 wallpaperButton.setOnClickListener(new OnClickListener() {
1444 @Override
1445 public void onClick(View view) {
1446 if (!mWorkspace.isSwitchingState()) {
1447 onClickWallpaperPicker(view);
1448 }
1449 }
1450 });
1451 wallpaperButton.setOnLongClickListener(performClickOnLongClick);
1452 wallpaperButton.setOnTouchListener(getHapticFeedbackTouchListener());
1453
1454 // Bind widget button actions
1455 mWidgetsButton = findViewById(R.id.widget_button);
1456 mWidgetsButton.setOnClickListener(new OnClickListener() {
1457 @Override
1458 public void onClick(View view) {
1459 if (!mWorkspace.isSwitchingState()) {
1460 onClickAddWidgetButton(view);
1461 }
1462 }
1463 });
1464 mWidgetsButton.setOnLongClickListener(performClickOnLongClick);
1465 mWidgetsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1466
1467 // Bind settings actions
1468 View settingsButton = findViewById(R.id.settings_button);
1469 boolean hasSettings = hasSettings();
1470 if (hasSettings) {
1471 settingsButton.setOnClickListener(new OnClickListener() {
1472 @Override
1473 public void onClick(View view) {
1474 if (!mWorkspace.isSwitchingState()) {
1475 onClickSettingsButton(view);
1476 }
1477 }
1478 });
1479 settingsButton.setOnLongClickListener(performClickOnLongClick);
1480 settingsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1481 } else {
1482 settingsButton.setVisibility(View.GONE);
1483 }
1484
1485 mOverviewPanel.setAlpha(0f);
1486 }
1487
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001488 /**
Anjali Koppal5ad44842014-03-10 20:34:39 -07001489 * Sets the all apps button. This method is called from {@link Hotseat}.
1490 */
1491 public void setAllAppsButton(View allAppsButton) {
1492 mAllAppsButton = allAppsButton;
1493 }
1494
1495 public View getAllAppsButton() {
1496 return mAllAppsButton;
1497 }
1498
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001499 public View getWidgetsButton() {
1500 return mWidgetsButton;
1501 }
1502
Anjali Koppal5ad44842014-03-10 20:34:39 -07001503 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001504 * Creates a view representing a shortcut.
1505 *
1506 * @param info The data structure describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001507 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001508 View createShortcut(ShortcutInfo info) {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001509 return createShortcut((ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001510 }
1511
1512 /**
1513 * Creates a view representing a shortcut inflated from the specified resource.
1514 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001515 * @param parent The group the shortcut belongs to.
1516 * @param info The data structure describing the shortcut.
1517 *
1518 * @return A View inflated from layoutResId.
1519 */
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001520 public View createShortcut(ViewGroup parent, ShortcutInfo info) {
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001521 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(R.layout.app_icon,
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001522 parent, false);
1523 favorite.applyFromShortcutInfo(info, mIconCache);
1524 favorite.setCompoundDrawablePadding(mDeviceProfile.iconDrawablePaddingPx);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001525 favorite.setOnClickListener(this);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001526 favorite.setOnFocusChangeListener(mFocusHandler);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001527 return favorite;
1528 }
1529
1530 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001531 * Add a shortcut to the workspace.
1532 *
1533 * @param data The intent describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001534 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001535 private void completeAddShortcut(Intent data, long container, long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07001536 int cellY) {
1537 int[] cellXY = mTmpAddItemCellCoordinates;
1538 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohendcd297f2013-06-18 13:13:40 -07001539 CellLayout layout = getCellLayout(container, screenId);
Romain Guycbb89e42009-06-08 15:52:54 -07001540
Sunny Goyal5c97f512015-05-19 16:03:28 -07001541 ShortcutInfo info = InstallShortcutReceiver.fromShortcutIntent(this, data);
Adam Cohend9198822011-11-22 16:42:47 -08001542 if (info == null) {
1543 return;
1544 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001545 final View view = createShortcut(info);
1546
Sunny Goyal5c97f512015-05-19 16:03:28 -07001547 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001548 // First we check if we already know the exact location where we want to add this item.
1549 if (cellX >= 0 && cellY >= 0) {
1550 cellXY[0] = cellX;
1551 cellXY[1] = cellY;
1552 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001553
1554 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001555 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001556 true, null,null)) {
1557 return;
1558 }
1559 DragObject dragObject = new DragObject();
1560 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001561 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1562 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001563 return;
1564 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001565 } else if (touchXY != null) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08001566 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001567 int[] result = layout.findNearestVacantArea(touchXY[0], touchXY[1], 1, 1, cellXY);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001568 foundCellSpan = (result != null);
1569 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001570 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001571 }
1572
1573 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001574 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001575 return;
1576 }
1577
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001578 LauncherModel.addItemToDatabase(this, info, container, screenId, cellXY[0], cellXY[1]);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001579
1580 if (!mRestoring) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001581 mWorkspace.addInScreen(view, container, screenId, cellXY[0], cellXY[1], 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07001582 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001583 }
1584 }
1585
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001586 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001587 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001588 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001589 * @param appWidgetId The app widget id
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001590 */
Adam Cohen091440a2015-03-18 14:16:05 -07001591 @Thunk void completeAddAppWidget(int appWidgetId, long container, long screenId,
Adam Cohen59400422014-03-05 18:07:04 -08001592 AppWidgetHostView hostView, LauncherAppWidgetProviderInfo appWidgetInfo) {
1593
1594 ItemInfo info = mPendingAddInfo;
Adam Cohened66b2b2012-01-23 17:28:51 -08001595 if (appWidgetInfo == null) {
Adam Cohen59400422014-03-05 18:07:04 -08001596 appWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(this,
1597 mAppWidgetManager.getAppWidgetInfo(appWidgetId));
Adam Cohened66b2b2012-01-23 17:28:51 -08001598 }
Romain Guycbb89e42009-06-08 15:52:54 -07001599
Adam Cohen59400422014-03-05 18:07:04 -08001600 if (appWidgetInfo.isCustomWidget) {
1601 appWidgetId = LauncherAppWidgetInfo.CUSTOM_WIDGET_ID;
Michael Jurkaa63c4522010-08-19 13:52:27 -07001602 }
1603
Adam Cohen59400422014-03-05 18:07:04 -08001604 LauncherAppWidgetInfo launcherInfo;
1605 launcherInfo = new LauncherAppWidgetInfo(appWidgetId, appWidgetInfo.provider);
1606 launcherInfo.spanX = info.spanX;
1607 launcherInfo.spanY = info.spanY;
1608 launcherInfo.minSpanX = info.minSpanX;
1609 launcherInfo.minSpanY = info.minSpanY;
Sunny Goyalffe83f12014-08-14 17:39:34 -07001610 launcherInfo.user = mAppWidgetManager.getUser(appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001611
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001612 LauncherModel.addItemToDatabase(this, launcherInfo,
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001613 container, screenId, info.cellX, info.cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001614
1615 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001616 if (hostView == null) {
1617 // Perform actual inflation because we're live
Adam Cohen59400422014-03-05 18:07:04 -08001618 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId,
1619 appWidgetInfo);
Adam Cohened66b2b2012-01-23 17:28:51 -08001620 } else {
1621 // The AppWidgetHostView has already been inflated and instantiated
1622 launcherInfo.hostView = hostView;
1623 }
Adam Cohend41fbf52012-02-16 23:53:59 -08001624 launcherInfo.hostView.setVisibility(View.VISIBLE);
Sunny Goyal25c2e3e2015-10-28 23:28:21 -07001625 addAppWidgetToWorkspace(launcherInfo, appWidgetInfo, isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001626 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001627 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001628 }
Romain Guycbb89e42009-06-08 15:52:54 -07001629
Sunny Goyal25c2e3e2015-10-28 23:28:21 -07001630 private void addAppWidgetToWorkspace(LauncherAppWidgetInfo item,
1631 LauncherAppWidgetProviderInfo appWidgetInfo, boolean insert) {
1632 item.hostView.setTag(item);
1633 item.onBindAppWidget(this);
1634
1635 item.hostView.setFocusable(true);
1636 item.hostView.setOnFocusChangeListener(mFocusHandler);
1637
1638 mWorkspace.addInScreen(item.hostView, item.container, item.screenId,
1639 item.cellX, item.cellY, item.spanX, item.spanY, insert);
1640
1641 if (!item.isCustomWidget()) {
1642 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
1643 }
1644 }
1645
Adam Cohended9f8d2010-11-03 13:25:16 -07001646 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1647 @Override
1648 public void onReceive(Context context, Intent intent) {
1649 final String action = intent.getAction();
1650 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1651 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001652 mDragLayer.clearAllResizeFrames();
Winson Chungb745afb2015-03-02 11:51:23 -08001653 updateAutoAdvanceState();
Winson Chung337cd9d2011-03-30 10:39:30 -07001654
Winson Chungc100e8e2011-08-09 16:02:43 -07001655 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001656 // processing a multi-step drop
Hyunyoung Song3f471442015-04-08 19:01:34 -07001657 if (mAppsView != null && mWidgetsView != null &&
Winson Chungb745afb2015-03-02 11:51:23 -08001658 mPendingAddInfo.container == ItemInfo.NO_ID) {
Winson5c6bdbb2015-09-03 11:36:19 -07001659 if (!showWorkspace(false)) {
1660 // If we are already on the workspace, then manually reset all apps
1661 mAppsView.reset();
1662 }
Winson Chung785d2eb2011-04-14 16:08:02 -07001663 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001664 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1665 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08001666 updateAutoAdvanceState();
Dan Sandlerd5024042014-01-09 15:01:33 -05001667 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.DELETE_DATABASE.equals(action)) {
1668 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001669 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001670 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE);
1671 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.MIGRATE_DATABASE.equals(action)) {
1672 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001673 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001674 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE
1675 | LauncherModel.LOADER_FLAG_MIGRATE_SHORTCUTS);
Adam Cohended9f8d2010-11-03 13:25:16 -07001676 }
1677 }
1678 };
1679
1680 @Override
1681 public void onAttachedToWindow() {
1682 super.onAttachedToWindow();
1683
1684 // Listen for broadcasts related to user-presence
1685 final IntentFilter filter = new IntentFilter();
1686 filter.addAction(Intent.ACTION_SCREEN_OFF);
1687 filter.addAction(Intent.ACTION_USER_PRESENT);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001688 // For handling managed profiles
Dan Sandlerd5024042014-01-09 15:01:33 -05001689 if (ENABLE_DEBUG_INTENTS) {
1690 filter.addAction(DebugIntents.DELETE_DATABASE);
1691 filter.addAction(DebugIntents.MIGRATE_DATABASE);
1692 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001693 registerReceiver(mReceiver, filter);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001694 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Adam Cohend113e0c2010-11-11 10:48:05 -08001695 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001696 mVisible = true;
1697 }
1698
1699 @Override
1700 public void onDetachedFromWindow() {
1701 super.onDetachedFromWindow();
1702 mVisible = false;
1703
Adam Cohend113e0c2010-11-11 10:48:05 -08001704 if (mAttached) {
1705 unregisterReceiver(mReceiver);
1706 mAttached = false;
1707 }
Winson Chungb745afb2015-03-02 11:51:23 -08001708 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001709 }
1710
1711 public void onWindowVisibilityChanged(int visibility) {
1712 mVisible = visibility == View.VISIBLE;
Winson Chungb745afb2015-03-02 11:51:23 -08001713 updateAutoAdvanceState();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001714 // The following code used to be in onResume, but it turns out onResume is called when
1715 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1716 // is a more appropriate event to handle
1717 if (mVisible) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001718 if (!mWorkspaceLoading) {
1719 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001720 // We want to let Launcher draw itself at least once before we force it to build
1721 // layers on all the workspace pages, so that transitioning to Launcher from other
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001722 // apps is nice and speedy.
1723 observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001724 private boolean mStarted = false;
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001725 public void onDraw() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001726 if (mStarted) return;
1727 mStarted = true;
Michael Jurka6ee21d22012-02-21 18:20:27 -08001728 // We delay the layer building a bit in order to give
1729 // other message processing a time to run. In particular
1730 // this avoids a delay in hiding the IME if it was
1731 // currently shown, because doing that may involve
1732 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001733 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurkadf96add2013-04-03 16:25:02 -07001734 final ViewTreeObserver.OnDrawListener listener = this;
1735 mWorkspace.post(new Runnable() {
Tony Wickhama0628cc2015-10-14 15:23:04 -07001736 public void run() {
1737 if (mWorkspace != null &&
1738 mWorkspace.getViewTreeObserver() != null) {
1739 mWorkspace.getViewTreeObserver().
1740 removeOnDrawListener(listener);
Michael Jurkadf96add2013-04-03 16:25:02 -07001741 }
Tony Wickhama0628cc2015-10-14 15:23:04 -07001742 }
1743 });
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001744 return;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001745 }
1746 });
1747 }
1748 clearTypedText();
1749 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001750 }
1751
Adam Cohen091440a2015-03-18 14:16:05 -07001752 @Thunk void sendAdvanceMessage(long delay) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001753 mHandler.removeMessages(ADVANCE_MSG);
1754 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1755 mHandler.sendMessageDelayed(msg, delay);
1756 mAutoAdvanceSentTime = System.currentTimeMillis();
1757 }
1758
Adam Cohen091440a2015-03-18 14:16:05 -07001759 @Thunk void updateAutoAdvanceState() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001760 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1761 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1762 mAutoAdvanceRunning = autoAdvanceRunning;
1763 if (autoAdvanceRunning) {
1764 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1765 sendAdvanceMessage(delay);
1766 } else {
1767 if (!mWidgetsToAdvance.isEmpty()) {
1768 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1769 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1770 }
1771 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001772 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001773 }
1774 }
1775 }
1776
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001777 @Thunk final Handler mHandler = new Handler(new Handler.Callback() {
1778
Adam Cohended9f8d2010-11-03 13:25:16 -07001779 @Override
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001780 public boolean handleMessage(Message msg) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001781 if (msg.what == ADVANCE_MSG) {
1782 int i = 0;
1783 for (View key: mWidgetsToAdvance.keySet()) {
1784 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1785 final int delay = mAdvanceStagger * i;
1786 if (v instanceof Advanceable) {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001787 mHandler.postDelayed(new Runnable() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001788 public void run() {
1789 ((Advanceable) v).advance();
1790 }
1791 }, delay);
1792 }
1793 i++;
1794 }
1795 sendAdvanceMessage(mAdvanceInterval);
1796 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001797 return true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001798 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001799 });
Adam Cohended9f8d2010-11-03 13:25:16 -07001800
Winsonc0b52fe2015-09-09 16:38:15 -07001801 private void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001802 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001803 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1804 if (v instanceof Advanceable) {
1805 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001806 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Winson Chungb745afb2015-03-02 11:51:23 -08001807 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001808 }
1809 }
1810
Winsonc0b52fe2015-09-09 16:38:15 -07001811 private void removeWidgetToAutoAdvance(View hostView) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001812 if (mWidgetsToAdvance.containsKey(hostView)) {
1813 mWidgetsToAdvance.remove(hostView);
Winson Chungb745afb2015-03-02 11:51:23 -08001814 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001815 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001816 }
1817
Hyunyoung Song3f471442015-04-08 19:01:34 -07001818 public void showOutOfSpaceMessage(boolean isHotseatLayout) {
Winson Chung93eef082012-03-23 15:59:27 -07001819 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1820 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001821 }
1822
Winson Chunga6945242014-01-08 14:04:34 -08001823 public DragLayer getDragLayer() {
1824 return mDragLayer;
1825 }
1826
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001827 public AllAppsContainerView getAppsView() {
Winson Chungb745afb2015-03-02 11:51:23 -08001828 return mAppsView;
1829 }
1830
Hyunyoung Song3f471442015-04-08 19:01:34 -07001831 public WidgetsContainerView getWidgetsView() {
1832 return mWidgetsView;
Winson Chungb745afb2015-03-02 11:51:23 -08001833 }
1834
Winson Chunga6945242014-01-08 14:04:34 -08001835 public Workspace getWorkspace() {
1836 return mWorkspace;
1837 }
1838
1839 public Hotseat getHotseat() {
1840 return mHotseat;
1841 }
1842
Jorim Jaggid017f882014-01-14 17:08:48 -08001843 public ViewGroup getOverviewPanel() {
Winson Chunga6945242014-01-08 14:04:34 -08001844 return mOverviewPanel;
1845 }
1846
Winson Chung006ee262015-08-03 14:40:11 -07001847 public SearchDropTargetBar getSearchDropTargetBar() {
Winson Chunga6945242014-01-08 14:04:34 -08001848 return mSearchDropTargetBar;
1849 }
1850
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001851 public LauncherAppWidgetHost getAppWidgetHost() {
1852 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001853 }
Romain Guycbb89e42009-06-08 15:52:54 -07001854
Winson Chunga9abd0e2010-10-27 17:18:37 -07001855 public LauncherModel getModel() {
1856 return mModel;
1857 }
1858
Winson Chunga6945242014-01-08 14:04:34 -08001859 protected SharedPreferences getSharedPrefs() {
1860 return mSharedPrefs;
1861 }
1862
Adam Cohen2e6da152015-05-06 11:42:25 -07001863 public DeviceProfile getDeviceProfile() {
1864 return mDeviceProfile;
1865 }
1866
Bjorn Bringertc459e522013-06-07 19:36:01 +01001867 public void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001868 getWindow().closeAllPanels();
1869
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001870 // Whatever we were doing is hereby canceled.
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001871 setWaitingForResult(false);
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001872 }
1873
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001874 @Override
1875 protected void onNewIntent(Intent intent) {
Michael Jurka447bf842013-05-15 14:52:15 +02001876 long startTime = 0;
1877 if (DEBUG_RESUME_TIME) {
1878 startTime = System.currentTimeMillis();
1879 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001880 super.onNewIntent(intent);
1881
1882 // Close the menu
Winson15f8b172015-08-19 11:02:39 -07001883 Folder openFolder = mWorkspace.getOpenFolder();
1884 boolean alreadyOnHome = mHasFocus && ((intent.getFlags() &
1885 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1886 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
1887 boolean isActionMain = Intent.ACTION_MAIN.equals(intent.getAction());
1888 if (isActionMain) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001889 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001890 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001891
Adam Cohen6fecd412013-10-02 17:41:50 -07001892 if (mWorkspace == null) {
1893 // Can be cases where mWorkspace is null, this prevents a NPE
1894 return;
1895 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001896 // In all these cases, only animate if we're already on home
1897 mWorkspace.exitWidgetResizeMode();
Adam Cohen9211d422014-10-07 18:14:53 -07001898
Sunny Goyal935fca12015-10-13 10:19:01 -07001899 closeFolder(alreadyOnHome);
Adam Cohen6fecd412013-10-02 17:41:50 -07001900 exitSpringLoadedDragMode();
1901
1902 // If we are already on home, then just animate back to the workspace,
1903 // otherwise, just wait until onResume to set the state back to Workspace
1904 if (alreadyOnHome) {
Adam Cohened307df2013-10-02 09:37:31 -07001905 showWorkspace(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001906 } else {
1907 mOnResumeState = State.WORKSPACE;
1908 }
1909
1910 final View v = getWindow().peekDecorView();
1911 if (v != null && v.getWindowToken() != null) {
Tonyc17390962015-10-25 17:39:37 -07001912 InputMethodManager imm = (InputMethodManager) getSystemService(
Adam Cohen6fecd412013-10-02 17:41:50 -07001913 INPUT_METHOD_SERVICE);
1914 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1915 }
1916
Winson Chungb745afb2015-03-02 11:51:23 -08001917 // Reset the apps view
1918 if (!alreadyOnHome && mAppsView != null) {
1919 mAppsView.scrollToTop();
1920 }
1921
Hyunyoung Song3f471442015-04-08 19:01:34 -07001922 // Reset the widgets view
1923 if (!alreadyOnHome && mWidgetsView != null) {
1924 mWidgetsView.scrollToTop();
Adam Cohen6fecd412013-10-02 17:41:50 -07001925 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001926
Adam Cohen9211d422014-10-07 18:14:53 -07001927 if (mLauncherCallbacks != null) {
1928 mLauncherCallbacks.onHomeIntent();
1929 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001930 }
Adam Cohened307df2013-10-02 09:37:31 -07001931
Adam Cohen9211d422014-10-07 18:14:53 -07001932 if (mLauncherCallbacks != null) {
1933 mLauncherCallbacks.onNewIntent(intent);
1934 }
Winson15f8b172015-08-19 11:02:39 -07001935
1936 // Defer moving to the default screen until after we callback to the LauncherCallbacks
1937 // as slow logic in the callbacks eat into the time the scroller expects for the snapToPage
1938 // animation.
1939 if (isActionMain) {
Ivan Lee667d6882015-09-03 10:16:07 -06001940 boolean moveToDefaultScreen = mLauncherCallbacks != null ?
1941 mLauncherCallbacks.shouldMoveToDefaultScreenOnHomeIntent() : true;
Winson15f8b172015-08-19 11:02:39 -07001942 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
1943 openFolder == null && moveToDefaultScreen) {
Adam Cohen4b66bf32015-09-18 12:15:19 -07001944
1945 // We use this flag to suppress noisy callbacks above custom content state
1946 // from onResume.
1947 mMoveToDefaultScreenFromNewIntent = true;
Winson15f8b172015-08-19 11:02:39 -07001948 mWorkspace.post(new Runnable() {
1949 @Override
1950 public void run() {
Tonyc17390962015-10-25 17:39:37 -07001951 if (mWorkspace != null) {
1952 mWorkspace.moveToDefaultScreen(true);
1953 }
Winson15f8b172015-08-19 11:02:39 -07001954 }
1955 });
1956 }
1957 }
1958
1959 if (DEBUG_RESUME_TIME) {
1960 Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime));
1961 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001962 }
1963
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001964 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001965 public void onRestoreInstanceState(Bundle state) {
1966 super.onRestoreInstanceState(state);
1967 for (int page: mSynchronouslyBoundPages) {
1968 mWorkspace.restoreInstanceStateForChild(page);
1969 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001970 }
1971
1972 @Override
1973 protected void onSaveInstanceState(Bundle outState) {
Adam Cohen21cd0022013-10-09 18:57:02 -07001974 if (mWorkspace.getChildCount() > 0) {
Winson Chung9b9fb962013-11-15 15:39:34 -08001975 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN,
1976 mWorkspace.getCurrentPageOffsetFromCustomContent());
Adam Cohen21cd0022013-10-09 18:57:02 -07001977 }
Adam Cohen95bb8002011-07-03 23:40:28 -07001978 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001979
Michael Jurka883f55b2010-10-21 15:47:14 -07001980 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001981 // We close any open folder since it will not be re-opened, and we need to make sure
1982 // this state is reflected.
Sunny Goyal935fca12015-10-13 10:19:01 -07001983 closeFolder(false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001984
Adam Cohendcd297f2013-06-18 13:13:40 -07001985 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screenId > -1 &&
Winson Chung3d503fb2011-07-13 17:25:49 -07001986 mWaitingForResult) {
1987 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
Adam Cohendcd297f2013-06-18 13:13:40 -07001988 outState.putLong(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screenId);
Winson Chung3d503fb2011-07-13 17:25:49 -07001989 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1990 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001991 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_X, mPendingAddInfo.spanX);
1992 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y, mPendingAddInfo.spanY);
1993 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
Adam Cohen4637b5a2013-11-04 18:21:24 -08001994 outState.putInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID, mPendingAddWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001995 }
1996
Hyunyoung Song3f471442015-04-08 19:01:34 -07001997 // Save the current widgets tray?
1998 // TODO(hyunyoungs)
Adam Cohen9211d422014-10-07 18:14:53 -07001999
2000 if (mLauncherCallbacks != null) {
2001 mLauncherCallbacks.onSaveInstanceState(outState);
2002 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002003 }
2004
2005 @Override
2006 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002007 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07002008
Winson Chunge7a03942011-08-05 15:05:12 -07002009 // Remove all pending runnables
2010 mHandler.removeMessages(ADVANCE_MSG);
2011 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07002012 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07002013
Winson Chungcd2b0142011-06-08 16:02:26 -07002014 // Stop callbacks from LauncherModel
Daniel Sandlercc8befa2013-06-11 14:45:48 -04002015 LauncherAppState app = (LauncherAppState.getInstance());
Adam Cohen1a85c582014-09-30 09:48:49 -07002016
2017 // It's possible to receive onDestroy after a new Launcher activity has
2018 // been created. In this case, don't interfere with the new Launcher.
2019 if (mModel.isCurrentCallbacks(this)) {
2020 mModel.stopLoader();
2021 app.setLauncher(null);
2022 }
Winson Chungcd2b0142011-06-08 16:02:26 -07002023
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002024 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07002025 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002026 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002027 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002028 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002029 mAppWidgetHost = null;
2030
2031 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002032
2033 TextKeyListener.getInstance().release();
2034
Joe Onorato34a0e1b2009-12-14 17:44:51 -08002035 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002036
Adam Cohenaccf3bf2012-04-30 16:07:43 -07002037 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002038 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
Adam Cohend552dd92013-11-26 12:13:11 -08002039 mWorkspace.removeAllWorkspaceScreens();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002040 mWorkspace = null;
2041 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08002042
Michael Jurka2ecf9952012-06-18 12:52:28 -07002043 LauncherAnimUtils.onDestroyActivity();
Adam Cohen9211d422014-10-07 18:14:53 -07002044
2045 if (mLauncherCallbacks != null) {
2046 mLauncherCallbacks.onDestroy();
2047 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002048 }
2049
Adam Cohena9cf38f2011-05-02 15:36:58 -07002050 public DragController getDragController() {
2051 return mDragController;
2052 }
2053
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002054 @Override
2055 public void startActivityForResult(Intent intent, int requestCode) {
Adam Cohen173f7112015-03-27 15:14:00 -07002056 onStartForResult(requestCode);
2057 super.startActivityForResult(intent, requestCode);
2058 }
2059
2060 @Override
2061 public void startIntentSenderForResult (IntentSender intent, int requestCode,
2062 Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) {
2063 onStartForResult(requestCode);
2064 try {
2065 super.startIntentSenderForResult(intent, requestCode,
2066 fillInIntent, flagsMask, flagsValues, extraFlags, options);
2067 } catch (IntentSender.SendIntentException e) {
2068 throw new ActivityNotFoundException();
2069 }
2070 }
2071
2072 private void onStartForResult(int requestCode) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002073 if (requestCode >= 0) {
2074 setWaitingForResult(true);
2075 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002076 }
2077
Winson Chung70d72102011-08-12 11:24:35 -07002078 /**
2079 * Indicates that we want global search for this activity by setting the globalSearch
2080 * argument for {@link #startSearch} to true.
2081 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002082 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07002083 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002084 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002085
Karl Rosaen138a0412009-04-23 19:00:21 -07002086 if (initialQuery == null) {
2087 // Use any text typed in the launcher as the initial query
2088 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07002089 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002090 if (appSearchData == null) {
2091 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01002092 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002093 }
Winson Chungadf0c182012-08-23 14:59:07 -07002094 Rect sourceBounds = new Rect();
2095 if (mSearchDropTargetBar != null) {
2096 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
2097 }
Romain Guycbb89e42009-06-08 15:52:54 -07002098
Ian Parkinson047036e2014-09-01 15:40:53 +01002099 boolean clearTextImmediately = startSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002100 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002101 if (clearTextImmediately) {
2102 clearTypedText();
2103 }
Winson Chungcd99cd32015-04-29 11:03:24 -07002104
2105 // We need to show the workspace after starting the search
2106 showWorkspace(true);
Bjorn Bringertc459e522013-06-07 19:36:01 +01002107 }
2108
Ian Parkinson047036e2014-09-01 15:40:53 +01002109 /**
2110 * Start a text search.
2111 *
2112 * @return {@code true} if the search will start immediately, so any further keypresses
2113 * will be handled directly by the search UI. {@code false} if {@link Launcher} should continue
2114 * to buffer keypresses.
2115 */
2116 public boolean startSearch(String initialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002117 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Adam Cohen9211d422014-10-07 18:14:53 -07002118 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
2119 return mLauncherCallbacks.startSearch(initialQuery, selectInitialQuery, appSearchData,
2120 sourceBounds);
2121 }
2122
Michael Jurkaa33411c2012-06-14 16:18:21 -07002123 startGlobalSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002124 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002125 return false;
Michael Jurkaa33411c2012-06-14 16:18:21 -07002126 }
2127
2128 /**
2129 * Starts the global search activity. This code is a copied from SearchManager
2130 */
Bjorn Bringertc459e522013-06-07 19:36:01 +01002131 private void startGlobalSearch(String initialQuery,
Michael Jurkaa33411c2012-06-14 16:18:21 -07002132 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002133 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07002134 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2135 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
2136 if (globalSearchActivity == null) {
2137 Log.w(TAG, "No global search activity found.");
2138 return;
2139 }
2140 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
2141 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2142 intent.setComponent(globalSearchActivity);
2143 // Make sure that we have a Bundle to put source in
2144 if (appSearchData == null) {
2145 appSearchData = new Bundle();
2146 } else {
2147 appSearchData = new Bundle(appSearchData);
2148 }
Adam Cohen9211d422014-10-07 18:14:53 -07002149 // Set source to package name of app that starts global search if not set already.
Michael Jurkaa33411c2012-06-14 16:18:21 -07002150 if (!appSearchData.containsKey("source")) {
2151 appSearchData.putString("source", getPackageName());
2152 }
2153 intent.putExtra(SearchManager.APP_DATA, appSearchData);
2154 if (!TextUtils.isEmpty(initialQuery)) {
2155 intent.putExtra(SearchManager.QUERY, initialQuery);
2156 }
2157 if (selectInitialQuery) {
2158 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
2159 }
2160 intent.setSourceBounds(sourceBounds);
2161 try {
2162 startActivity(intent);
2163 } catch (ActivityNotFoundException ex) {
2164 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
2165 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002166 }
2167
Winson Chungbedf9232015-07-10 12:38:30 -07002168 public void startSearchFromAllApps(View v, Intent searchIntent, String searchQuery) {
2169 if (mLauncherCallbacks != null && mLauncherCallbacks.startSearchFromAllApps(searchQuery)) {
2170 return;
2171 }
2172
2173 // If not handled, then just start the provided search intent
2174 startActivitySafely(v, searchIntent, null);
2175 }
2176
Yura4f93ec62014-02-04 14:15:21 +00002177 public boolean isOnCustomContent() {
2178 return mWorkspace.isOnOrMovingToCustomContent();
2179 }
2180
Winson Chung70d72102011-08-12 11:24:35 -07002181 @Override
Winson Chung70d72102011-08-12 11:24:35 -07002182 public boolean onPrepareOptionsMenu(Menu menu) {
2183 super.onPrepareOptionsMenu(menu);
Adam Cohen9211d422014-10-07 18:14:53 -07002184 if (mLauncherCallbacks != null) {
2185 return mLauncherCallbacks.onPrepareOptionsMenu(menu);
2186 }
Michael Jurkab94f3f82013-09-11 18:08:54 +02002187 return false;
Winson Chung70d72102011-08-12 11:24:35 -07002188 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002189
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002190 @Override
2191 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07002192 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07002193 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07002194 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002195 }
2196
Joe Onorato9c1289c2009-08-17 11:03:03 -04002197 public boolean isWorkspaceLocked() {
2198 return mWorkspaceLoading || mWaitingForResult;
2199 }
2200
Adam Cohen517a7f52014-03-01 12:12:59 -08002201 public boolean isWorkspaceLoading() {
2202 return mWorkspaceLoading;
2203 }
2204
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002205 private void setWorkspaceLoading(boolean value) {
2206 boolean isLocked = isWorkspaceLocked();
2207 mWorkspaceLoading = value;
2208 if (isLocked != isWorkspaceLocked()) {
2209 onWorkspaceLockedChanged();
2210 }
2211 }
2212
2213 private void setWaitingForResult(boolean value) {
2214 boolean isLocked = isWorkspaceLocked();
2215 mWaitingForResult = value;
2216 if (isLocked != isWorkspaceLocked()) {
2217 onWorkspaceLockedChanged();
2218 }
2219 }
2220
Adam Cohen9211d422014-10-07 18:14:53 -07002221 protected void onWorkspaceLockedChanged() {
2222 if (mLauncherCallbacks != null) {
2223 mLauncherCallbacks.onWorkspaceLockedChanged();
2224 }
2225 }
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002226
Michael Jurka0280c3b2010-09-17 15:00:07 -07002227 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07002228 mPendingAddInfo.container = ItemInfo.NO_ID;
Adam Cohendcd297f2013-06-18 13:13:40 -07002229 mPendingAddInfo.screenId = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002230 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
2231 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Sunny Goyal233ee962015-08-03 13:05:01 -07002232 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = 1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002233 mPendingAddInfo.dropPos = null;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002234 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07002235
Tony Wickhama0628cc2015-10-14 15:23:04 -07002236 void addAppWidgetFromDropImpl(final int appWidgetId, final ItemInfo info, final
Adam Cohen59400422014-03-05 18:07:04 -08002237 AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo) {
Tony Wickhama0628cc2015-10-14 15:23:04 -07002238 if (LOGD) {
2239 Log.d(TAG, "Adding widget from drop");
2240 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07002241 addAppWidgetImpl(appWidgetId, info, boundWidget, appWidgetInfo, 0);
2242 }
2243
Sunny Goyale6b63a32015-01-16 16:14:29 -08002244 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
Adam Cohen59400422014-03-05 18:07:04 -08002245 final AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo,
2246 int delay) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002247 if (appWidgetInfo.configure != null) {
2248 mPendingAddWidgetInfo = appWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -08002249 mPendingAddWidgetId = appWidgetId;
Michael Jurkaaf442092010-06-10 17:01:57 -07002250
Bjorn Bringert7984c942009-12-09 15:38:25 +00002251 // Launch over to configure widget, if needed
Sunny Goyalffe83f12014-08-14 17:39:34 -07002252 mAppWidgetManager.startConfigActivity(appWidgetInfo, appWidgetId, this,
2253 mAppWidgetHost, REQUEST_CREATE_APPWIDGET);
2254
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002255 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00002256 // Otherwise just add it
Adam Cohenad4e15c2013-10-17 16:21:35 -07002257 Runnable onComplete = new Runnable() {
2258 @Override
2259 public void run() {
2260 // Exit spring loaded mode if necessary after adding the widget
2261 exitSpringLoadedDragModeDelayed(true, EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT,
2262 null);
2263 }
2264 };
Adam Cohendcd297f2013-06-18 13:13:40 -07002265 completeAddAppWidget(appWidgetId, info.container, info.screenId, boundWidget,
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002266 appWidgetInfo);
Adam Cohen689ff162014-05-08 17:27:56 -07002267 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, delay, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002268 }
2269 }
Romain Guycbb89e42009-06-08 15:52:54 -07002270
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002271 protected void moveToCustomContentScreen(boolean animate) {
Sandeep Siddharthaf2b47f12013-09-26 19:49:27 -07002272 // Close any folders that may be open.
2273 closeFolder();
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002274 mWorkspace.moveToCustomContentScreen(animate);
2275 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002276
2277 public void addPendingItem(PendingAddItemInfo info, long container, long screenId,
2278 int[] cell, int spanX, int spanY) {
2279 switch (info.itemType) {
2280 case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET:
2281 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
2282 int span[] = new int[2];
2283 span[0] = spanX;
2284 span[1] = spanY;
2285 addAppWidgetFromDrop((PendingAddWidgetInfo) info,
2286 container, screenId, cell, span);
2287 break;
2288 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
2289 processShortcutFromDrop(info.componentName, container, screenId, cell);
2290 break;
2291 default:
2292 throw new IllegalStateException("Unknown item type: " + info.itemType);
2293 }
2294 }
2295
Adam Cohenfbba09b2011-07-18 21:43:05 -07002296 /**
2297 * Process a shortcut drop.
2298 *
2299 * @param componentName The name of the component
Adam Cohendcd297f2013-06-18 13:13:40 -07002300 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002301 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002302 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002303 private void processShortcutFromDrop(ComponentName componentName, long container, long screenId,
2304 int[] cell) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002305 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002306 mPendingAddInfo.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002307 mPendingAddInfo.screenId = screenId;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002308 mPendingAddInfo.dropPos = null;
Adam Cohenfbba09b2011-07-18 21:43:05 -07002309
2310 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002311 mPendingAddInfo.cellX = cell[0];
2312 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002313 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002314
2315 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
2316 createShortcutIntent.setComponent(componentName);
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002317 Utilities.startActivityForResultSafely(this, createShortcutIntent, REQUEST_CREATE_SHORTCUT);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002318 }
2319
Adam Cohenfbba09b2011-07-18 21:43:05 -07002320 /**
2321 * Process a widget drop.
2322 *
2323 * @param info The PendingAppWidgetInfo of the widget being added.
Adam Cohendcd297f2013-06-18 13:13:40 -07002324 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002325 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002326 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002327 private void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, long screenId,
2328 int[] cell, int[] span) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07002329 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002330 mPendingAddInfo.container = info.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002331 mPendingAddInfo.screenId = info.screenId = screenId;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002332 mPendingAddInfo.dropPos = null;
Adam Cohend41fbf52012-02-16 23:53:59 -08002333 mPendingAddInfo.minSpanX = info.minSpanX;
2334 mPendingAddInfo.minSpanY = info.minSpanY;
2335
Adam Cohenfbba09b2011-07-18 21:43:05 -07002336 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002337 mPendingAddInfo.cellX = cell[0];
2338 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002339 }
Adam Cohend41fbf52012-02-16 23:53:59 -08002340 if (span != null) {
2341 mPendingAddInfo.spanX = span[0];
2342 mPendingAddInfo.spanY = span[1];
2343 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002344
Adam Cohened66b2b2012-01-23 17:28:51 -08002345 AppWidgetHostView hostView = info.boundWidget;
2346 int appWidgetId;
2347 if (hostView != null) {
Tony Wickhama0628cc2015-10-14 15:23:04 -07002348 // In the case where we've prebound the widget, we remove it from the DragLayer
2349 if (LOGD) {
2350 Log.d(TAG, "Removing widget view from drag layer and setting boundWidget to null");
2351 }
2352 getDragLayer().removeView(hostView);
2353
Adam Cohened66b2b2012-01-23 17:28:51 -08002354 appWidgetId = hostView.getAppWidgetId();
Tony Wickhama0628cc2015-10-14 15:23:04 -07002355 addAppWidgetFromDropImpl(appWidgetId, info, hostView, info.info);
Sunny Goyal5b9ebca2015-06-01 18:37:32 -07002356
2357 // Clear the boundWidget so that it doesn't get destroyed.
2358 info.boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -08002359 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002360 // In this case, we either need to start an activity to get permission to bind
2361 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08002362 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07002363 Bundle options = info.bindOptions;
2364
Sunny Goyalffe83f12014-08-14 17:39:34 -07002365 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
2366 appWidgetId, info.info, options);
Adam Cohendd70d662012-10-04 16:53:44 -07002367 if (success) {
Tony Wickhama0628cc2015-10-14 15:23:04 -07002368 addAppWidgetFromDropImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07002369 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002370 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07002371 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
2372 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
2373 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Sunny Goyalffe83f12014-08-14 17:39:34 -07002374 mAppWidgetManager.getUser(mPendingAddWidgetInfo)
2375 .addToIntent(intent, AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE);
Adam Cohendd70d662012-10-04 16:53:44 -07002376 // TODO: we need to make sure that this accounts for the options bundle.
2377 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07002378 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
2379 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002380 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002381 }
2382
Adam Cohendcd297f2013-06-18 13:13:40 -07002383 FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07002384 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07002385 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002386 folderInfo.title = getText(R.string.folder_name);
2387
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002388 // Update the model
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07002389 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId,
2390 cellX, cellY);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002391 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002392
2393 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07002394 FolderIcon newFolder =
2395 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07002396 mWorkspace.addInScreen(newFolder, container, screenId, cellX, cellY, 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07002397 isWorkspaceLocked());
Winson Chung5f8afe62013-08-12 16:19:28 -07002398 // Force measure the new folder icon
2399 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
2400 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07002401 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002402 }
Romain Guycbb89e42009-06-08 15:52:54 -07002403
Winsonc0b52fe2015-09-09 16:38:15 -07002404 /**
Winsonfa56b3f2015-09-14 12:01:13 -07002405 * Unbinds the view for the specified item, and removes the item and all its children.
2406 *
2407 * @param v the view being removed.
Winsonfa56b3f2015-09-14 12:01:13 -07002408 * @param itemInfo the {@link ItemInfo} for this view.
2409 * @param deleteFromDb whether or not to delete this item from the db.
Winsonc0b52fe2015-09-09 16:38:15 -07002410 */
Winson2949fb52015-09-24 09:56:11 -07002411 public boolean removeItem(View v, ItemInfo itemInfo, boolean deleteFromDb) {
Winsonc0b52fe2015-09-09 16:38:15 -07002412 if (itemInfo instanceof ShortcutInfo) {
Winsonfa56b3f2015-09-14 12:01:13 -07002413 // Remove the shortcut from the folder before removing it from launcher
Winson2949fb52015-09-24 09:56:11 -07002414 FolderInfo folderInfo = sFolders.get(itemInfo.container);
2415 if (folderInfo != null) {
2416 folderInfo.remove((ShortcutInfo) itemInfo);
Winsonfa56b3f2015-09-14 12:01:13 -07002417 } else {
2418 mWorkspace.removeWorkspaceItem(v);
2419 }
Winsonc0b52fe2015-09-09 16:38:15 -07002420 if (deleteFromDb) {
2421 LauncherModel.deleteItemFromDatabase(this, itemInfo);
2422 }
2423 } else if (itemInfo instanceof FolderInfo) {
2424 final FolderInfo folderInfo = (FolderInfo) itemInfo;
2425 unbindFolder(folderInfo);
2426 mWorkspace.removeWorkspaceItem(v);
2427 if (deleteFromDb) {
2428 LauncherModel.deleteFolderAndContentsFromDatabase(this, folderInfo);
2429 }
2430 } else if (itemInfo instanceof LauncherAppWidgetInfo) {
2431 final LauncherAppWidgetInfo widgetInfo = (LauncherAppWidgetInfo) itemInfo;
Winson44818e02015-10-02 11:25:46 -07002432 mWorkspace.removeWorkspaceItem(v);
Sunny Goyal56c73602015-09-25 12:55:01 -07002433 removeWidgetToAutoAdvance(widgetInfo.hostView);
2434 widgetInfo.hostView = null;
Winsonc0b52fe2015-09-09 16:38:15 -07002435 if (deleteFromDb) {
Sunny Goyal56c73602015-09-25 12:55:01 -07002436 deleteWidgetInfo(widgetInfo);
Winsonc0b52fe2015-09-09 16:38:15 -07002437 }
Sunny Goyal56c73602015-09-25 12:55:01 -07002438
Winsonc0b52fe2015-09-09 16:38:15 -07002439 } else {
2440 return false;
2441 }
2442 return true;
2443 }
2444
2445 /**
2446 * Unbinds any launcher references to the folder.
2447 */
2448 private void unbindFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002449 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002450 }
2451
Winsonc0b52fe2015-09-09 16:38:15 -07002452 /**
Sunny Goyal56c73602015-09-25 12:55:01 -07002453 * Deletes the widget info and the widget id.
Winsonc0b52fe2015-09-09 16:38:15 -07002454 */
Sunny Goyal56c73602015-09-25 12:55:01 -07002455 private void deleteWidgetInfo(final LauncherAppWidgetInfo widgetInfo) {
Winsonc0b52fe2015-09-09 16:38:15 -07002456 final LauncherAppWidgetHost appWidgetHost = getAppWidgetHost();
Sunny Goyal56c73602015-09-25 12:55:01 -07002457 if (appWidgetHost != null && !widgetInfo.isCustomWidget() && widgetInfo.isWidgetIdValid()) {
Winsonc0b52fe2015-09-09 16:38:15 -07002458 // Deleting an app widget ID is a void call but writes to disk before returning
2459 // to the caller...
2460 new AsyncTask<Void, Void, Void>() {
2461 public Void doInBackground(Void ... args) {
2462 appWidgetHost.deleteAppWidgetId(widgetInfo.appWidgetId);
2463 return null;
2464 }
Sunny Goyalf27cb0e2015-09-23 16:12:02 -07002465 }.executeOnExecutor(Utilities.THREAD_POOL_EXECUTOR);
Winsonc0b52fe2015-09-09 16:38:15 -07002466 }
Sunny Goyal56c73602015-09-25 12:55:01 -07002467 LauncherModel.deleteItemFromDatabase(this, widgetInfo);
Winsonc0b52fe2015-09-09 16:38:15 -07002468 }
2469
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002470 @Override
2471 public boolean dispatchKeyEvent(KeyEvent event) {
2472 if (event.getAction() == KeyEvent.ACTION_DOWN) {
2473 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002474 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07002475 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08002476 case KeyEvent.KEYCODE_VOLUME_DOWN:
Sunny Goyal4bbf4192014-11-11 12:23:59 -08002477 if (Utilities.isPropertyEnabled(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08002478 dumpState();
2479 return true;
2480 }
2481 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07002482 }
2483 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2484 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07002485 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002486 return true;
2487 }
2488 }
2489
2490 return super.dispatchKeyEvent(event);
2491 }
2492
Joe Onorato88ec0992009-11-19 13:16:06 -08002493 @Override
2494 public void onBackPressed() {
Adam Cohen9211d422014-10-07 18:14:53 -07002495 if (mLauncherCallbacks != null && mLauncherCallbacks.handleBackPressed()) {
2496 return;
2497 }
2498
Sunny Goyal45478022015-06-08 16:52:41 -07002499 if (mDragController.isDragging()) {
2500 mDragController.cancelDrag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08002501 return;
2502 }
2503
Winson Chungb745afb2015-03-02 11:51:23 -08002504 if (isAppsViewVisible()) {
2505 showWorkspace(true);
2506 } else if (isWidgetsViewVisible()) {
2507 showOverviewMode(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002508 } else if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002509 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002510 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07002511 Folder openFolder = mWorkspace.getOpenFolder();
2512 if (openFolder.isEditingName()) {
2513 openFolder.dismissEditingName();
2514 } else {
2515 closeFolder();
2516 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002517 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08002518 mWorkspace.exitWidgetResizeMode();
2519
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002520 // Back button is a no-op here, but give at least some feedback for the button press
2521 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07002522 }
Joe Onorato88ec0992009-11-19 13:16:06 -08002523 }
2524
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002525 /**
Sunny Goyal383c5072015-06-12 21:18:53 -07002526 * Re-listen when widget host is reset.
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002527 */
Sunny Goyal383c5072015-06-12 21:18:53 -07002528 @Override
2529 public void onAppWidgetHostReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08002530 if (mAppWidgetHost != null) {
2531 mAppWidgetHost.startListening();
2532 }
Sunny Goyal655daae2015-12-08 09:28:23 -08002533
2534 // Recreate the QSB, as the widget has been reset.
2535 bindSearchProviderChanged();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002536 }
2537
2538 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002539 * Launches the intent referred by the clicked shortcut.
2540 *
2541 * @param v The view representing the clicked shortcut.
2542 */
2543 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002544 // Make sure that rogue clicks don't get through while allapps is launching, or after the
2545 // view has detached (it's possible for this to happen if the view is removed mid touch).
2546 if (v.getWindowToken() == null) {
2547 return;
2548 }
2549
Winson Chung9b0b2fe2012-02-24 13:03:34 -08002550 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002551 return;
2552 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07002553
Adam Cohen1697b792013-09-17 19:08:21 -07002554 if (v instanceof Workspace) {
2555 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002556 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002557 }
2558 return;
2559 }
2560
2561 if (v instanceof CellLayout) {
2562 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002563 showWorkspace(mWorkspace.indexOfChild(v), true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002564 }
2565 }
2566
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002567 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002568 if (tag instanceof ShortcutInfo) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002569 onClickAppShortcut(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002570 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002571 if (v instanceof FolderIcon) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002572 onClickFolderIcon(v);
Adam Cohena9cf38f2011-05-02 15:36:58 -07002573 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002574 } else if (v == mAllAppsButton) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002575 onClickAllAppsButton(v);
Sunny Goyal508da152014-08-14 10:53:27 -07002576 } else if (tag instanceof AppInfo) {
2577 startAppShortcutOrInfoActivity(v);
Sunny Goyalff572272014-07-23 13:58:07 -07002578 } else if (tag instanceof LauncherAppWidgetInfo) {
2579 if (v instanceof PendingAppWidgetHostView) {
2580 onClickPendingWidget((PendingAppWidgetHostView) v);
2581 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002582 }
2583 }
2584
Sunny Goyal70660032015-05-14 00:07:08 -07002585 @SuppressLint("ClickableViewAccessibility")
Michael Jurka0e260592010-06-30 17:07:39 -07002586 public boolean onTouch(View v, MotionEvent event) {
Michael Jurka0e260592010-06-30 17:07:39 -07002587 return false;
2588 }
2589
Michael Jurkaaf442092010-06-10 17:01:57 -07002590 /**
Sunny Goyalff572272014-07-23 13:58:07 -07002591 * Event handler for the app widget view which has not fully restored.
2592 */
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002593 public void onClickPendingWidget(final PendingAppWidgetHostView v) {
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002594 if (mIsSafeModeEnabled) {
2595 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2596 return;
2597 }
2598
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002599 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) v.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07002600 if (v.isReadyForClickSetup()) {
Sunny Goyalff572272014-07-23 13:58:07 -07002601 int widgetId = info.appWidgetId;
2602 AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
2603 if (appWidgetInfo != null) {
Adam Cohen59400422014-03-05 18:07:04 -08002604 mPendingAddWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(
2605 this, appWidgetInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07002606 mPendingAddInfo.copyFrom(info);
2607 mPendingAddWidgetId = widgetId;
2608
Sunny Goyalffe83f12014-08-14 17:39:34 -07002609 AppWidgetManagerCompat.getInstance(this).startConfigActivity(appWidgetInfo,
2610 info.appWidgetId, this, mAppWidgetHost, REQUEST_RECONFIGURE_APPWIDGET);
Sunny Goyalff572272014-07-23 13:58:07 -07002611 }
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002612 } else if (info.installProgress < 0) {
2613 // The install has not been queued
2614 final String packageName = info.providerName.getPackageName();
2615 showBrokenAppInstallDialog(packageName,
2616 new DialogInterface.OnClickListener() {
2617 public void onClick(DialogInterface dialog, int id) {
2618 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
2619 }
2620 });
2621 } else {
2622 // Download has started.
2623 final String packageName = info.providerName.getPackageName();
2624 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
Sunny Goyalff572272014-07-23 13:58:07 -07002625 }
2626 }
2627
2628 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002629 * Event handler for the "grid" button that appears on the home screen, which
2630 * enters all apps mode.
2631 *
2632 * @param v The view that was clicked.
2633 */
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002634 protected void onClickAllAppsButton(View v) {
2635 if (LOGD) Log.d(TAG, "onClickAllAppsButton");
Winson Chung76648c52015-07-10 14:33:23 -07002636 if (!isAppsViewVisible()) {
Winson Chung4ac30062015-05-08 17:34:17 -07002637 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07002638 true /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungbedf9232015-07-10 12:38:30 -07002639
2640 if (mLauncherCallbacks != null) {
2641 mLauncherCallbacks.onClickAllAppsButton(v);
2642 }
Winson Chung76648c52015-07-10 14:33:23 -07002643 }
2644 }
2645
2646 protected void onLongClickAllAppsButton(View v) {
2647 if (LOGD) Log.d(TAG, "onLongClickAllAppsButton");
2648 if (!isAppsViewVisible()) {
2649 showAppsView(true /* animated */, false /* resetListToTop */,
2650 true /* updatePredictedApps */, true /* focusSearchBar */);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002651 }
2652 }
2653
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002654 private void showBrokenAppInstallDialog(final String packageName,
2655 DialogInterface.OnClickListener onSearchClickListener) {
Sunny Goyale03b8122014-10-08 09:55:24 -07002656 new AlertDialog.Builder(this)
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002657 .setTitle(R.string.abandoned_promises_title)
2658 .setMessage(R.string.abandoned_promise_explanation)
2659 .setPositiveButton(R.string.abandoned_search, onSearchClickListener)
2660 .setNeutralButton(R.string.abandoned_clean_this,
2661 new DialogInterface.OnClickListener() {
2662 public void onClick(DialogInterface dialog, int id) {
2663 final UserHandleCompat user = UserHandleCompat.myUserHandle();
2664 mWorkspace.removeAbandonedPromise(packageName, user);
2665 }
2666 })
2667 .create().show();
2668 return;
2669 }
2670
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002671 /**
2672 * Event handler for an app shortcut click.
2673 *
2674 * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.
2675 */
Chris Wren40c5ed32014-06-24 18:24:23 -04002676 protected void onClickAppShortcut(final View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002677 if (LOGD) Log.d(TAG, "onClickAppShortcut");
2678 Object tag = v.getTag();
2679 if (!(tag instanceof ShortcutInfo)) {
2680 throw new IllegalArgumentException("Input must be a Shortcut");
2681 }
2682
2683 // Open shortcut
2684 final ShortcutInfo shortcut = (ShortcutInfo) tag;
Sunny Goyal1a745e82014-10-02 15:58:31 -07002685
2686 if (shortcut.isDisabled != 0) {
2687 int error = R.string.activity_not_available;
2688 if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_SAFEMODE) != 0) {
2689 error = R.string.safemode_shortcut_error;
2690 }
2691 Toast.makeText(this, error, Toast.LENGTH_SHORT).show();
2692 return;
2693 }
2694
Chris Wren40c5ed32014-06-24 18:24:23 -04002695 // Check for abandoned promise
Sunny Goyal34942622014-08-29 17:20:55 -07002696 if ((v instanceof BubbleTextView)
2697 && shortcut.isPromise()
2698 && !shortcut.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE)) {
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002699 showBrokenAppInstallDialog(
Sunny Goyal34942622014-08-29 17:20:55 -07002700 shortcut.getTargetComponent().getPackageName(),
Chris Wren40c5ed32014-06-24 18:24:23 -04002701 new DialogInterface.OnClickListener() {
2702 public void onClick(DialogInterface dialog, int id) {
Sunny Goyal508da152014-08-14 10:53:27 -07002703 startAppShortcutOrInfoActivity(v);
Chris Wren40c5ed32014-06-24 18:24:23 -04002704 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002705 });
Chris Wren40c5ed32014-06-24 18:24:23 -04002706 return;
2707 }
2708
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002709 // Start activities
Sunny Goyal508da152014-08-14 10:53:27 -07002710 startAppShortcutOrInfoActivity(v);
Adam Cohen9211d422014-10-07 18:14:53 -07002711
2712 if (mLauncherCallbacks != null) {
2713 mLauncherCallbacks.onClickAppShortcut(v);
2714 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002715 }
2716
Adam Cohen091440a2015-03-18 14:16:05 -07002717 @Thunk void startAppShortcutOrInfoActivity(View v) {
Chris Wren40c5ed32014-06-24 18:24:23 -04002718 Object tag = v.getTag();
Sunny Goyal508da152014-08-14 10:53:27 -07002719 final ShortcutInfo shortcut;
2720 final Intent intent;
2721 if (tag instanceof ShortcutInfo) {
2722 shortcut = (ShortcutInfo) tag;
2723 intent = shortcut.intent;
2724 int[] pos = new int[2];
2725 v.getLocationOnScreen(pos);
2726 intent.setSourceBounds(new Rect(pos[0], pos[1],
2727 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Chris Wren40c5ed32014-06-24 18:24:23 -04002728
Sunny Goyal508da152014-08-14 10:53:27 -07002729 } else if (tag instanceof AppInfo) {
2730 shortcut = null;
2731 intent = ((AppInfo) tag).intent;
2732 } else {
2733 throw new IllegalArgumentException("Input must be a Shortcut or AppInfo");
2734 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002735
2736 boolean success = startActivitySafely(v, intent, tag);
Winson Chung8f1eff72015-05-28 17:33:40 -07002737 mStats.recordLaunch(v, intent, shortcut);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002738
2739 if (success && v instanceof BubbleTextView) {
2740 mWaitingForResume = (BubbleTextView) v;
2741 mWaitingForResume.setStayPressed(true);
2742 }
2743 }
2744
2745 /**
2746 * Event handler for a folder icon click.
2747 *
2748 * @param v The view that was clicked. Must be an instance of {@link FolderIcon}.
2749 */
2750 protected void onClickFolderIcon(View v) {
2751 if (LOGD) Log.d(TAG, "onClickFolder");
2752 if (!(v instanceof FolderIcon)){
2753 throw new IllegalArgumentException("Input must be a FolderIcon");
2754 }
2755
Sunny Goyal317698b2015-07-29 11:45:41 -07002756 // TODO(sunnygoyal): Re-evaluate this code.
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002757 FolderIcon folderIcon = (FolderIcon) v;
2758 final FolderInfo info = folderIcon.getFolderInfo();
2759 Folder openFolder = mWorkspace.getFolderForTag(info);
2760
2761 // If the folder info reports that the associated folder is open, then verify that
2762 // it is actually opened. There have been a few instances where this gets out of sync.
2763 if (info.opened && openFolder == null) {
2764 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2765 + info.screenId + " (" + info.cellX + ", " + info.cellY + ")");
2766 info.opened = false;
2767 }
2768
2769 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
2770 // Close any open folder
2771 closeFolder();
2772 // Open the requested folder
2773 openFolder(folderIcon);
2774 } else {
2775 // Find the open folder...
2776 int folderScreen;
2777 if (openFolder != null) {
2778 folderScreen = mWorkspace.getPageForView(openFolder);
2779 // .. and close it
Sunny Goyal935fca12015-10-13 10:19:01 -07002780 closeFolder(openFolder, true);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002781 if (folderScreen != mWorkspace.getCurrentPage()) {
2782 // Close any folder open on the current screen
2783 closeFolder();
2784 // Pull the folder onto this screen
2785 openFolder(folderIcon);
2786 }
2787 }
2788 }
Adam Cohen9211d422014-10-07 18:14:53 -07002789
2790 if (mLauncherCallbacks != null) {
2791 mLauncherCallbacks.onClickFolderIcon(v);
2792 }
Michael Jurka5130e402011-10-13 04:55:35 -07002793 }
2794
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002795 /**
2796 * Event handler for the (Add) Widgets button that appears after a long press
2797 * on the home screen.
2798 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002799 protected void onClickAddWidgetButton(View view) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002800 if (LOGD) Log.d(TAG, "onClickAddWidgetButton");
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002801 if (mIsSafeModeEnabled) {
2802 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2803 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08002804 showWidgetsView(true /* animated */, true /* resetPageToZero */);
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002805 if (mLauncherCallbacks != null) {
2806 mLauncherCallbacks.onClickAddWidgetButton(view);
2807 }
Adam Cohen9211d422014-10-07 18:14:53 -07002808 }
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002809 }
2810
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002811 /**
2812 * Event handler for the wallpaper picker button that appears after a long press
2813 * on the home screen.
2814 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002815 protected void onClickWallpaperPicker(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002816 if (LOGD) Log.d(TAG, "onClickWallpaperPicker");
Tony Wickham3e776a82015-09-09 18:21:49 -07002817 int pageScroll = mWorkspace.getScrollForPage(mWorkspace.getPageNearestToCenterOfScreen());
2818 float offset = mWorkspace.mWallpaperOffset.wallpaperOffsetForScroll(pageScroll);
2819 startActivityForResult(new Intent(Intent.ACTION_SET_WALLPAPER).setPackage(getPackageName())
2820 .putExtra(WallpaperPickerActivity.EXTRA_WALLPAPER_OFFSET, offset),
Sunny Goyal6a1e95a2015-03-20 17:26:30 -07002821 REQUEST_PICK_WALLPAPER);
Adam Cohen9211d422014-10-07 18:14:53 -07002822
2823 if (mLauncherCallbacks != null) {
2824 mLauncherCallbacks.onClickWallpaperPicker(v);
2825 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002826 }
2827
2828 /**
2829 * Event handler for a click on the settings button that appears after a long press
2830 * on the home screen.
2831 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002832 protected void onClickSettingsButton(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002833 if (LOGD) Log.d(TAG, "onClickSettingsButton");
Adam Cohen9211d422014-10-07 18:14:53 -07002834 if (mLauncherCallbacks != null) {
2835 mLauncherCallbacks.onClickSettingsButton(v);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07002836 } else {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002837 startActivity(new Intent(this, SettingsActivity.class));
Adam Cohen9211d422014-10-07 18:14:53 -07002838 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002839 }
2840
Adam Cohen61f560d2013-09-30 15:58:20 -07002841 public View.OnTouchListener getHapticFeedbackTouchListener() {
2842 if (mHapticFeedbackTouchListener == null) {
2843 mHapticFeedbackTouchListener = new View.OnTouchListener() {
Sunny Goyal70660032015-05-14 00:07:08 -07002844 @SuppressLint("ClickableViewAccessibility")
Adam Cohen61f560d2013-09-30 15:58:20 -07002845 @Override
2846 public boolean onTouch(View v, MotionEvent event) {
2847 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
2848 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2849 }
2850 return false;
2851 }
2852 };
2853 }
2854 return mHapticFeedbackTouchListener;
2855 }
2856
Adam Cohen9211d422014-10-07 18:14:53 -07002857 public void onDragStarted(View view) {
2858 if (isOnCustomContent()) {
2859 // Custom content screen doesn't participate in drag and drop. If on custom
2860 // content screen, move to default.
2861 moveWorkspaceToDefaultScreen();
2862 }
2863
2864 if (mLauncherCallbacks != null) {
2865 mLauncherCallbacks.onDragStarted(view);
2866 }
2867 }
Anjali Koppal62d18ed2014-03-10 17:04:03 -07002868
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002869 /**
2870 * Called when the user stops interacting with the launcher.
2871 * This implies that the user is now on the homescreen and is not doing housekeeping.
2872 */
Adam Cohen9211d422014-10-07 18:14:53 -07002873 protected void onInteractionEnd() {
2874 if (mLauncherCallbacks != null) {
2875 mLauncherCallbacks.onInteractionEnd();
2876 }
2877 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002878
2879 /**
2880 * Called when the user starts interacting with the launcher.
2881 * The possible interactions are:
2882 * - open all apps
2883 * - reorder an app shortcut, or a widget
2884 * - open the overview mode.
2885 * This is a good time to stop doing things that only make sense
2886 * when the user is on the homescreen and not doing housekeeping.
2887 */
Adam Cohen9211d422014-10-07 18:14:53 -07002888 protected void onInteractionBegin() {
2889 if (mLauncherCallbacks != null) {
2890 mLauncherCallbacks.onInteractionBegin();
2891 }
2892 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002893
Winson Chungcd99cd32015-04-29 11:03:24 -07002894 /** Updates the interaction state. */
2895 public void updateInteraction(Workspace.State fromState, Workspace.State toState) {
Winson Chung83f59ab2015-05-05 17:21:58 -07002896 // Only update the interacting state if we are transitioning to/from a view with an
Winson Chungcd99cd32015-04-29 11:03:24 -07002897 // overlay
Winson Chungef7f8742015-06-04 17:18:17 -07002898 boolean fromStateWithOverlay = fromState != Workspace.State.NORMAL;
2899 boolean toStateWithOverlay = toState != Workspace.State.NORMAL;
Winson Chung83f59ab2015-05-05 17:21:58 -07002900 if (toStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002901 onInteractionBegin();
Winson Chung83f59ab2015-05-05 17:21:58 -07002902 } else if (fromStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002903 onInteractionEnd();
2904 }
2905 }
2906
Kenny Guyf07af7b2014-07-31 11:39:16 +01002907 void startApplicationDetailsActivity(ComponentName componentName, UserHandleCompat user) {
Kenny Guyf07af7b2014-07-31 11:39:16 +01002908 try {
2909 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Kenny Guyf07af7b2014-07-31 11:39:16 +01002910 launcherApps.showAppDetailsForProfile(componentName, user);
2911 } catch (SecurityException e) {
2912 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2913 Log.e(TAG, "Launcher does not have permission to launch settings");
2914 } catch (ActivityNotFoundException e) {
2915 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2916 Log.e(TAG, "Unable to launch settings");
2917 }
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002918 }
2919
Michael Jurka1e2f4652013-07-08 18:03:46 -07002920 // returns true if the activity was started
Kenny Guyd31df542014-06-30 15:12:11 +01002921 boolean startApplicationUninstallActivity(ComponentName componentName, int flags,
2922 UserHandleCompat user) {
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002923 if ((flags & AppInfo.DOWNLOADED_FLAG) == 0) {
Patrick Dubroy5539af72010-09-07 15:22:01 -07002924 // System applications cannot be installed. For now, show a toast explaining that.
2925 // We may give them the option of disabling apps this way.
2926 int messageId = R.string.uninstall_system_app_text;
2927 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
Michael Jurka1e2f4652013-07-08 18:03:46 -07002928 return false;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002929 } else {
Michael Jurka1e2f4652013-07-08 18:03:46 -07002930 String packageName = componentName.getPackageName();
2931 String className = componentName.getClassName();
Patrick Dubroy5539af72010-09-07 15:22:01 -07002932 Intent intent = new Intent(
2933 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002934 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2935 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Kenny Guyd31df542014-06-30 15:12:11 +01002936 if (user != null) {
2937 user.addToIntent(intent, Intent.EXTRA_USER);
2938 }
Patrick Dubroy5539af72010-09-07 15:22:01 -07002939 startActivity(intent);
Michael Jurka1e2f4652013-07-08 18:03:46 -07002940 return true;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002941 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002942 }
2943
Winson Chung8f1eff72015-05-28 17:33:40 -07002944 private boolean startActivity(View v, Intent intent, Object tag) {
Kenny Guyb6cc40b2014-05-13 15:58:58 +01002945 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002946 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002947 // Only launch using the new animation if the shortcut has not opted out (this is a
2948 // private contract between launcher and may be ignored in the future).
2949 boolean useLaunchAnimation = (v != null) &&
2950 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
Kenny Guyed131872014-04-30 03:02:21 +01002951 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
2952 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyed131872014-04-30 03:02:21 +01002953
Kenny Guy1317e2d2014-05-08 18:52:50 +01002954 UserHandleCompat user = null;
2955 if (intent.hasExtra(AppInfo.EXTRA_PROFILE)) {
2956 long serialNumber = intent.getLongExtra(AppInfo.EXTRA_PROFILE, -1);
2957 user = userManager.getUserForSerialNumber(serialNumber);
2958 }
2959
2960 Bundle optsBundle = null;
Winson Chung2672ff92012-05-04 16:22:30 -07002961 if (useLaunchAnimation) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002962 ActivityOptions opts = null;
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002963 if (Utilities.ATLEAST_MARSHMALLOW) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002964 int left = 0, top = 0;
2965 int width = v.getMeasuredWidth(), height = v.getMeasuredHeight();
2966 if (v instanceof TextView) {
2967 // Launch from center of icon, not entire view
Winson Chungb745afb2015-03-02 11:51:23 -08002968 Drawable icon = Workspace.getTextViewIcon((TextView) v);
2969 if (icon != null) {
2970 Rect bounds = icon.getBounds();
Chet Haasea8f996d2015-02-17 12:56:04 -08002971 left = (width - bounds.width()) / 2;
Winson Chungb745afb2015-03-02 11:51:23 -08002972 top = v.getPaddingTop();
Chet Haasea8f996d2015-02-17 12:56:04 -08002973 width = bounds.width();
2974 height = bounds.height();
2975 }
2976 }
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002977 opts = ActivityOptions.makeClipRevealAnimation(v, left, top, width, height);
2978 } else if (!Utilities.ATLEAST_LOLLIPOP) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002979 // Below L, we use a scale up animation
Adam Cohen2e52c902015-04-06 13:11:28 -07002980 opts = ActivityOptions.makeScaleUpAnimation(v, 0, 0,
Chet Haasea8f996d2015-02-17 12:56:04 -08002981 v.getMeasuredWidth(), v.getMeasuredHeight());
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002982 } else if (Utilities.ATLEAST_LOLLIPOP_MR1) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002983 // On L devices, we use the device default slide-up transition.
2984 // On L MR1 devices, we a custom version of the slide-up transition which
2985 // doesn't have the delay present in the device default.
2986 opts = ActivityOptions.makeCustomAnimation(this,
2987 R.anim.task_open_enter, R.anim.no_anim);
Chet Haasea8f996d2015-02-17 12:56:04 -08002988 }
Adam Cohen2e52c902015-04-06 13:11:28 -07002989 optsBundle = opts != null ? opts.toBundle() : null;
Adam Cohen6ea3b112014-06-11 11:38:49 -07002990 }
Kenny Guy1317e2d2014-05-08 18:52:50 +01002991
2992 if (user == null || user.equals(UserHandleCompat.myUserHandle())) {
2993 // Could be launching some bookkeeping activity
2994 startActivity(intent, optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002995 } else {
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002996 // TODO Component can be null when shortcuts are supported for secondary user
Kenny Guyc2bd8102014-06-30 12:30:31 +01002997 launcherApps.startActivityForProfile(intent.getComponent(), user,
2998 intent.getSourceBounds(), optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002999 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08003000 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003001 } catch (SecurityException e) {
Sunny Goyal28c6b962015-10-12 11:42:05 -07003002 if (Utilities.ATLEAST_MARSHMALLOW && tag instanceof ItemInfo) {
3003 // Due to legacy reasons, direct call shortcuts require Launchers to have the
3004 // corresponding permission. Show the appropriate permission prompt if that
3005 // is the case.
3006 if (intent.getComponent() == null
3007 && Intent.ACTION_CALL.equals(intent.getAction())
3008 && checkSelfPermission(Manifest.permission.CALL_PHONE) !=
3009 PackageManager.PERMISSION_GRANTED) {
3010 // TODO: Rename sPendingAddItem to a generic name.
3011 sPendingAddItem = preparePendingAddArgs(REQUEST_PERMISSION_CALL_PHONE, intent,
3012 0, (ItemInfo) tag);
3013 requestPermissions(new String[]{Manifest.permission.CALL_PHONE},
3014 REQUEST_PERMISSION_CALL_PHONE);
3015 return false;
3016 }
3017 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003018 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08003019 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003020 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07003021 "or use the exported attribute for this activity. "
3022 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003023 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08003024 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003025 }
Winson Chungaafa03c2010-06-11 17:34:16 -07003026
Winson Chungbedf9232015-07-10 12:38:30 -07003027 public boolean startActivitySafely(View v, Intent intent, Object tag) {
Michael Jurka86a720e2012-05-09 11:23:23 -07003028 boolean success = false;
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07003029 if (mIsSafeModeEnabled && !Utilities.isSystemApp(this, intent)) {
3030 Toast.makeText(this, R.string.safemode_shortcut_error, Toast.LENGTH_SHORT).show();
3031 return false;
3032 }
Michael Jurka86a720e2012-05-09 11:23:23 -07003033 try {
3034 success = startActivity(v, intent, tag);
3035 } catch (ActivityNotFoundException e) {
3036 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
3037 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
3038 }
3039 return success;
3040 }
3041
Adam Cohen268c4752012-06-06 17:47:33 -07003042 /**
3043 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
3044 * in the DragLayer in the exact absolute location of the original FolderIcon.
3045 */
3046 private void copyFolderIconToImage(FolderIcon fi) {
3047 final int width = fi.getMeasuredWidth();
3048 final int height = fi.getMeasuredHeight();
3049
3050 // Lazy load ImageView, Bitmap and Canvas
3051 if (mFolderIconImageView == null) {
3052 mFolderIconImageView = new ImageView(this);
3053 }
3054 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
3055 mFolderIconBitmap.getHeight() != height) {
3056 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
3057 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
3058 }
3059
3060 DragLayer.LayoutParams lp;
3061 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
3062 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
3063 } else {
3064 lp = new DragLayer.LayoutParams(width, height);
3065 }
3066
Adam Cohen307fe232012-08-16 17:55:58 -07003067 // The layout from which the folder is being opened may be scaled, adjust the starting
3068 // view size by this scale factor.
3069 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07003070 lp.customPosition = true;
3071 lp.x = mRectForFolderAnimation.left;
3072 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07003073 lp.width = (int) (scale * width);
3074 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07003075
3076 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
3077 fi.draw(mFolderIconCanvas);
3078 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07003079 if (fi.getFolder() != null) {
3080 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
3081 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07003082 }
Adam Cohen268c4752012-06-06 17:47:33 -07003083 // Just in case this image view is still in the drag layer from a previous animation,
3084 // we remove it and re-add it.
3085 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
3086 mDragLayer.removeView(mFolderIconImageView);
3087 }
3088 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07003089 if (fi.getFolder() != null) {
3090 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07003091 }
Adam Cohen268c4752012-06-06 17:47:33 -07003092 }
3093
Adam Cohen2801caf2011-05-13 20:57:39 -07003094 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003095 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003096 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
3097 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
3098 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
3099
Adam Cohenc51934b2011-07-26 21:07:43 -07003100 FolderInfo info = (FolderInfo) fi.getTag();
3101 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3102 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07003103 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
3104 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07003105 }
3106
Adam Cohen268c4752012-06-06 17:47:33 -07003107 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
3108 copyFolderIconToImage(fi);
3109 fi.setVisibility(View.INVISIBLE);
3110
Michael Jurka2ecf9952012-06-18 12:52:28 -07003111 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003112 scaleX, scaleY);
Sunny Goyal9fc953b2015-08-17 12:24:25 -07003113 if (Utilities.ATLEAST_LOLLIPOP) {
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003114 oa.setInterpolator(new LogDecelerateInterpolator(100, 0));
3115 }
3116 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohen2801caf2011-05-13 20:57:39 -07003117 oa.start();
Tony Wickham112ac952015-11-12 12:31:50 -08003118 if (Utilities.isPowerSaverOn(this)) {
3119 // Animations are disabled in battery saver mode, so just skip to the end state.
3120 oa.end();
3121 }
Adam Cohen2801caf2011-05-13 20:57:39 -07003122 }
3123
Sunny Goyal935fca12015-10-13 10:19:01 -07003124 private void shrinkAndFadeInFolderIcon(final FolderIcon fi, boolean animate) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003125 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003126 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
3127 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
3128 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
3129
Adam Cohen268c4752012-06-06 17:47:33 -07003130 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07003131
Adam Cohen268c4752012-06-06 17:47:33 -07003132 // We remove and re-draw the FolderIcon in-case it has changed
3133 mDragLayer.removeView(mFolderIconImageView);
3134 copyFolderIconToImage(fi);
Michael Jurka2ecf9952012-06-18 12:52:28 -07003135 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003136 scaleX, scaleY);
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003137 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07003138 oa.addListener(new AnimatorListenerAdapter() {
3139 @Override
3140 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07003141 if (cl != null) {
3142 cl.clearFolderLeaveBehind();
3143 // Remove the ImageView copy of the FolderIcon and make the original visible.
3144 mDragLayer.removeView(mFolderIconImageView);
3145 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07003146 }
3147 }
3148 });
Adam Cohen2801caf2011-05-13 20:57:39 -07003149 oa.start();
Sunny Goyal935fca12015-10-13 10:19:01 -07003150 if (!animate) {
3151 oa.end();
3152 }
Adam Cohen2801caf2011-05-13 20:57:39 -07003153 }
3154
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003155 /**
Michael Jurka774bd372010-10-22 13:40:50 -07003156 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003157 * is animated relative to the specified View. If the View is null, no animation
3158 * is played.
3159 *
3160 * @param folderInfo The FolderInfo describing the folder to open.
3161 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07003162 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07003163 Folder folder = folderIcon.getFolder();
Sunny Goyalf4066152015-04-15 09:42:19 -07003164 Folder openFolder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
3165 if (openFolder != null && openFolder != folder) {
3166 // Close any open folder before opening a folder.
3167 closeFolder();
3168 }
3169
Adam Cohena9cf38f2011-05-02 15:36:58 -07003170 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003171
Adam Cohena9cf38f2011-05-02 15:36:58 -07003172 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003173
Sunny Goyalf4066152015-04-15 09:42:19 -07003174 // While the folder is open, the position of the icon cannot change.
3175 ((CellLayout.LayoutParams) folderIcon.getLayoutParams()).canReorder = false;
3176
Adam Cohen4554ee12011-08-03 16:13:21 -07003177 // Just verify that the folder hasn't already been added to the DragLayer.
3178 // There was a one-off crash where the folder had a parent already.
3179 if (folder.getParent() == null) {
3180 mDragLayer.addView(folder);
3181 mDragController.addDropTarget((DropTarget) folder);
3182 } else {
3183 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
3184 folder.getParent() + ").");
3185 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07003186 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07003187 growAndFadeOutFolderIcon(folderIcon);
Winson Chung83ca4802013-04-12 15:10:52 -07003188
3189 // Notify the accessibility manager that this folder "window" has appeared and occluded
3190 // the workspace items
3191 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
3192 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07003193 }
3194
3195 public void closeFolder() {
Sunny Goyal935fca12015-10-13 10:19:01 -07003196 closeFolder(true);
3197 }
3198
3199 public void closeFolder(boolean animate) {
Adam Cohen37c717f2013-11-26 11:50:15 -08003200 Folder folder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
Adam Cohen4554ee12011-08-03 16:13:21 -07003201 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07003202 if (folder.isEditingName()) {
3203 folder.dismissEditingName();
3204 }
Sunny Goyal935fca12015-10-13 10:19:01 -07003205 closeFolder(folder, animate);
Adam Cohen4554ee12011-08-03 16:13:21 -07003206 }
3207 }
3208
Sunny Goyal935fca12015-10-13 10:19:01 -07003209 public void closeFolder(Folder folder, boolean animate) {
Adam Cohen4554ee12011-08-03 16:13:21 -07003210 folder.getInfo().opened = false;
3211
3212 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
3213 if (parent != null) {
3214 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
Sunny Goyal935fca12015-10-13 10:19:01 -07003215 shrinkAndFadeInFolderIcon(fi, animate);
Sunny Goyalf4066152015-04-15 09:42:19 -07003216 if (fi != null) {
3217 ((CellLayout.LayoutParams) fi.getLayoutParams()).canReorder = true;
3218 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003219 }
Sunny Goyal935fca12015-10-13 10:19:01 -07003220 if (animate) {
3221 folder.animateClosed();
3222 } else {
Tony Wickham30bdd6e2015-11-17 17:59:26 -08003223 folder.close(false);
Sunny Goyal935fca12015-10-13 10:19:01 -07003224 }
Winson Chung83ca4802013-04-12 15:10:52 -07003225
Sunny Goyal935fca12015-10-13 10:19:01 -07003226 // Notify the accessibility manager that this folder "window" has disappeared and no
3227 // longer occludes the workspace items
Winson Chung83ca4802013-04-12 15:10:52 -07003228 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003229 }
3230
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003231 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07003232 if (!isDraggingEnabled()) return false;
3233 if (isWorkspaceLocked()) return false;
3234 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003235
Winson Chung76648c52015-07-10 14:33:23 -07003236 if (v == mAllAppsButton) {
3237 onLongClickAllAppsButton(v);
3238 return true;
3239 }
3240
Adam Cohen1697b792013-09-17 19:08:21 -07003241 if (v instanceof Workspace) {
3242 if (!mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003243 if (!mWorkspace.isTouchActive()) {
3244 showOverviewMode(true);
Adam Cohen93c97562013-09-26 13:48:01 -07003245 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3246 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
3247 return true;
3248 } else {
3249 return false;
3250 }
Adam Cohenaa4c8c12014-06-06 11:52:52 -07003251 } else {
3252 return false;
Adam Cohen1697b792013-09-17 19:08:21 -07003253 }
Adam Cohen1697b792013-09-17 19:08:21 -07003254 }
3255
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003256 CellLayout.CellInfo longClickCellInfo = null;
3257 View itemUnderLongClick = null;
3258 if (v.getTag() instanceof ItemInfo) {
3259 ItemInfo info = (ItemInfo) v.getTag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08003260 longClickCellInfo = new CellLayout.CellInfo(v, info);
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003261 itemUnderLongClick = longClickCellInfo.cell;
3262 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003263 }
3264
Winson Chung3d503fb2011-07-13 17:25:49 -07003265 // The hotseat touch handling does not go through Workspace, and we always allow long press
3266 // on hotseat items.
Dan Sandlere26d0942014-01-13 14:30:14 -05003267 final boolean inHotseat = isHotseatLayout(v);
Sunny Goyal8e2133b2015-05-06 13:39:07 -07003268 if (!mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07003269 if (itemUnderLongClick == null) {
Adam Cohend3ecce92013-09-16 14:58:00 -07003270 // User long pressed on empty space
3271 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3272 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Adam Cohend3ecce92013-09-16 14:58:00 -07003273 if (mWorkspace.isInOverviewMode()) {
3274 mWorkspace.startReordering(v);
3275 } else {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003276 showOverviewMode(true);
Adam Cohendedbd962013-07-11 14:21:49 -07003277 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003278 } else {
Dan Sandlere26d0942014-01-13 14:30:14 -05003279 final boolean isAllAppsButton = inHotseat && isAllAppsButtonRank(
3280 mHotseat.getOrderInHotseat(
3281 longClickCellInfo.cellX,
3282 longClickCellInfo.cellY));
3283 if (!(itemUnderLongClick instanceof Folder || isAllAppsButton)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003284 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07003285 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003286 }
3287 }
3288 }
3289 return true;
3290 }
3291
Winson Chung3d503fb2011-07-13 17:25:49 -07003292 boolean isHotseatLayout(View layout) {
3293 return mHotseat != null && layout != null &&
3294 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
3295 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08003296
Winson Chung3d503fb2011-07-13 17:25:49 -07003297 /**
3298 * Returns the CellLayout of the specified container at the specified screen.
3299 */
Sunny Goyal92820592015-03-02 11:31:35 -08003300 public CellLayout getCellLayout(long container, long screenId) {
Winson Chung3d503fb2011-07-13 17:25:49 -07003301 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3302 if (mHotseat != null) {
3303 return mHotseat.getLayout();
3304 } else {
3305 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08003306 }
Winson Chung3d503fb2011-07-13 17:25:49 -07003307 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08003308 return mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08003309 }
3310 }
3311
Winson Chungb745afb2015-03-02 11:51:23 -08003312 /**
3313 * For overridden classes.
3314 */
Daniel Sandler843e8602010-06-07 14:59:01 -04003315 public boolean isAllAppsVisible() {
Winson Chungb745afb2015-03-02 11:51:23 -08003316 return isAppsViewVisible();
3317 }
3318
3319 public boolean isAppsViewVisible() {
3320 return (mState == State.APPS) || (mOnResumeState == State.APPS);
3321 }
3322
3323 public boolean isWidgetsViewVisible() {
3324 return (mState == State.WIDGETS) || (mOnResumeState == State.WIDGETS);
Joe Onoratofb0ca672009-09-14 17:55:46 -04003325 }
3326
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003327 private void setWorkspaceBackground(int background) {
3328 switch (background) {
3329 case WORKSPACE_BACKGROUND_TRANSPARENT:
3330 getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
3331 break;
3332 case WORKSPACE_BACKGROUND_BLACK:
3333 getWindow().setBackgroundDrawable(null);
3334 break;
3335 default:
3336 getWindow().setBackgroundDrawable(mWorkspaceBackgroundDrawable);
3337 }
Craig Mautner360310b2012-10-26 15:13:08 -07003338 }
3339
Selim Cinek3a8a8f72014-01-16 10:38:38 -08003340 protected void changeWallpaperVisiblity(boolean visible) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003341 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
3342 int curflags = getWindow().getAttributes().flags
3343 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
3344 if (wpflags != curflags) {
3345 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
3346 }
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003347 setWorkspaceBackground(visible ? WORKSPACE_BACKGROUND_GRADIENT : WORKSPACE_BACKGROUND_BLACK);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003348 }
3349
Michael Jurkae326f182011-11-21 14:05:46 -08003350 @Override
3351 public void onTrimMemory(int level) {
3352 super.onTrimMemory(level);
Adam Cohen3f9c9712014-10-31 11:48:25 -07003353 if (level >= ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
3354 // The widget preview db can result in holding onto over
3355 // 3MB of memory for caching which isn't necessary.
3356 SQLiteDatabase.releaseMemory();
3357
Adam Cohenc8f4e1b2014-11-19 16:03:20 -08003358 // This clears all widget bitmaps from the widget tray
Hyunyoung Song3f471442015-04-08 19:01:34 -07003359 // TODO(hyunyoungs)
Michael Jurkae326f182011-11-21 14:05:46 -08003360 }
Robert Kozikowski67c30862015-03-30 23:46:46 +01003361 if (mLauncherCallbacks != null) {
3362 mLauncherCallbacks.onTrimMemory(level);
3363 }
Michael Jurkae326f182011-11-21 14:05:46 -08003364 }
3365
Winson5c6bdbb2015-09-03 11:36:19 -07003366 /**
3367 * @return whether or not the Launcher state changed.
3368 */
3369 public boolean showWorkspace(boolean animated) {
3370 return showWorkspace(WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated, null);
Adam Cohened307df2013-10-02 09:37:31 -07003371 }
3372
Winson5c6bdbb2015-09-03 11:36:19 -07003373 /**
3374 * @return whether or not the Launcher state changed.
3375 */
3376 public boolean showWorkspace(boolean animated, Runnable onCompleteRunnable) {
3377 return showWorkspace(WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated,
Winson Chungef7f8742015-06-04 17:18:17 -07003378 onCompleteRunnable);
Winson Chungdc61c4d2015-04-20 18:26:57 -07003379 }
3380
Winson5c6bdbb2015-09-03 11:36:19 -07003381 /**
3382 * @return whether or not the Launcher state changed.
3383 */
3384 protected boolean showWorkspace(int snapToPage, boolean animated) {
3385 return showWorkspace(snapToPage, animated, null);
Winson Chungdc61c4d2015-04-20 18:26:57 -07003386 }
3387
Winson5c6bdbb2015-09-03 11:36:19 -07003388 /**
3389 * @return whether or not the Launcher state changed.
3390 */
3391 boolean showWorkspace(int snapToPage, boolean animated, Runnable onCompleteRunnable) {
Winson Chung0f785722015-04-08 10:27:49 -07003392 boolean changed = mState != State.WORKSPACE ||
3393 mWorkspace.getState() != Workspace.State.NORMAL;
3394 if (changed) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003395 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003396 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3397 Workspace.State.NORMAL, snapToPage, animated, onCompleteRunnable);
Winson Chungc7d2b602012-05-16 17:02:20 -07003398
Michael Jurkab3e22d92011-10-31 15:58:33 -07003399 // Set focus to the AppsCustomize button
3400 if (mAllAppsButton != null) {
3401 mAllAppsButton.requestFocus();
3402 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003403 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07003404
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003405 // Change the state *after* we've called all the transition code
3406 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08003407
Winson Chung5fb63472011-02-02 17:03:37 -08003408 // Resume the auto-advance of widgets
3409 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08003410 updateAutoAdvanceState();
Winson Chung5fb63472011-02-02 17:03:37 -08003411
Winson Chung0f785722015-04-08 10:27:49 -07003412 if (changed) {
3413 // Send an accessibility event to announce the context change
3414 getWindow().getDecorView()
3415 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Winson Chung0f785722015-04-08 10:27:49 -07003416 }
Winson5c6bdbb2015-09-03 11:36:19 -07003417 return changed;
Bjorn Bringertc459e522013-06-07 19:36:01 +01003418 }
3419
Winsone9f27272015-10-13 10:47:51 -07003420 /**
3421 * Shows the overview button.
3422 */
Adam Cohened307df2013-10-02 09:37:31 -07003423 void showOverviewMode(boolean animated) {
Winsone9f27272015-10-13 10:47:51 -07003424 showOverviewMode(animated, false);
3425 }
3426
3427 /**
3428 * Shows the overview button, and if {@param requestButtonFocus} is set, will force the focus
3429 * onto one of the overview panel buttons.
3430 */
3431 void showOverviewMode(boolean animated, boolean requestButtonFocus) {
3432 Runnable postAnimRunnable = null;
3433 if (requestButtonFocus) {
3434 postAnimRunnable = new Runnable() {
3435 @Override
3436 public void run() {
3437 // Hitting the menu button when in touch mode does not trigger touch mode to
3438 // be disabled, so if requested, force focus on one of the overview panel
3439 // buttons.
3440 mOverviewPanel.requestFocusFromTouch();
3441 }
3442 };
3443 }
Adam Cohened307df2013-10-02 09:37:31 -07003444 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003445 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3446 Workspace.State.OVERVIEW,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003447 WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated,
Winsone9f27272015-10-13 10:47:51 -07003448 postAnimRunnable);
Adam Cohened307df2013-10-02 09:37:31 -07003449 mState = State.WORKSPACE;
Joe Onorato00acb122009-08-04 16:04:30 -04003450 }
3451
Winson Chungb745afb2015-03-02 11:51:23 -08003452 /**
3453 * Shows the apps view.
3454 */
Winson Chung76648c52015-07-10 14:33:23 -07003455 void showAppsView(boolean animated, boolean resetListToTop, boolean updatePredictedApps,
3456 boolean focusSearchBar) {
Winson Chungb745afb2015-03-02 11:51:23 -08003457 if (resetListToTop) {
3458 mAppsView.scrollToTop();
3459 }
Winson Chung4ac30062015-05-08 17:34:17 -07003460 if (updatePredictedApps) {
3461 tryAndUpdatePredictedApps();
3462 }
Winson Chung76648c52015-07-10 14:33:23 -07003463 showAppsOrWidgets(State.APPS, animated, focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003464 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003465
Winson Chungb745afb2015-03-02 11:51:23 -08003466 /**
3467 * Shows the widgets view.
3468 */
3469 void showWidgetsView(boolean animated, boolean resetPageToZero) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003470 if (LOGD) Log.d(TAG, "showWidgetsView:" + animated + " resetPageToZero:" + resetPageToZero);
Winson Chung82963d52013-10-09 11:20:57 -07003471 if (resetPageToZero) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003472 mWidgetsView.scrollToTop();
Winson Chung82963d52013-10-09 11:20:57 -07003473 }
Winson Chung76648c52015-07-10 14:33:23 -07003474 showAppsOrWidgets(State.WIDGETS, animated, false);
Hyunyoung Song3f471442015-04-08 19:01:34 -07003475
3476 mWidgetsView.post(new Runnable() {
Adam Cohendcc5e712014-06-23 15:38:55 -04003477 @Override
3478 public void run() {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003479 mWidgetsView.requestFocus();
Adam Cohendcc5e712014-06-23 15:38:55 -04003480 }
3481 });
Winson Chungb745afb2015-03-02 11:51:23 -08003482 }
3483
3484 /**
3485 * Sets up the transition to show the apps/widgets view.
Hyunyoung Songb7900832015-05-15 16:29:45 -07003486 *
3487 * @return whether the current from and to state allowed this operation
Winson Chungb745afb2015-03-02 11:51:23 -08003488 */
Hyunyoung Songb7900832015-05-15 16:29:45 -07003489 // TODO: calling method should use the return value so that when {@code false} is returned
3490 // the workspace transition doesn't fall into invalid state.
Winson Chung76648c52015-07-10 14:33:23 -07003491 private boolean showAppsOrWidgets(State toState, boolean animated, boolean focusSearchBar) {
Hyunyoung Songb7900832015-05-15 16:29:45 -07003492 if (mState != State.WORKSPACE && mState != State.APPS_SPRING_LOADED &&
3493 mState != State.WIDGETS_SPRING_LOADED) {
3494 return false;
3495 }
3496 if (toState != State.APPS && toState != State.WIDGETS) {
3497 return false;
3498 }
Winson Chungb745afb2015-03-02 11:51:23 -08003499
3500 if (toState == State.APPS) {
Winson Chung006ee262015-08-03 14:40:11 -07003501 mStateTransitionAnimation.startAnimationToAllApps(mWorkspace.getState(), animated,
3502 focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003503 } else {
Winson Chung006ee262015-08-03 14:40:11 -07003504 mStateTransitionAnimation.startAnimationToWidgets(mWorkspace.getState(), animated);
Winson Chungb745afb2015-03-02 11:51:23 -08003505 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003506
Michael Jurkab3e22d92011-10-31 15:58:33 -07003507 // Change the state *after* we've called all the transition code
Winson Chungb745afb2015-03-02 11:51:23 -08003508 mState = toState;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003509
3510 // Pause the auto-advance of widgets until we are out of AllApps
3511 mUserPresent = false;
Winson Chungb745afb2015-03-02 11:51:23 -08003512 updateAutoAdvanceState();
Michael Jurkab3e22d92011-10-31 15:58:33 -07003513 closeFolder();
3514
3515 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07003516 getWindow().getDecorView()
3517 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Hyunyoung Songb7900832015-05-15 16:29:45 -07003518 return true;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003519 }
3520
Winson Chungcd99cd32015-04-29 11:03:24 -07003521 /**
3522 * Updates the workspace and interaction state on state change, and return the animation to this
3523 * new state.
3524 */
3525 public Animator startWorkspaceStateChangeAnimation(Workspace.State toState, int toPage,
Winson Chung006ee262015-08-03 14:40:11 -07003526 boolean animated, HashMap<View, Integer> layerViews) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003527 Workspace.State fromState = mWorkspace.getState();
Winson Chung006ee262015-08-03 14:40:11 -07003528 Animator anim = mWorkspace.setStateWithAnimation(toState, toPage, animated, layerViews);
Winson Chungcd99cd32015-04-29 11:03:24 -07003529 updateInteraction(fromState, toState);
3530 return anim;
3531 }
3532
Hyunyoung Song3f471442015-04-08 19:01:34 -07003533 public void enterSpringLoadedDragMode() {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003534 if (LOGD) Log.d(TAG, String.format("enterSpringLoadedDragMode [mState=%s", mState.name()));
Winson Chungb745afb2015-03-02 11:51:23 -08003535 if (mState == State.WORKSPACE || mState == State.APPS_SPRING_LOADED ||
3536 mState == State.WIDGETS_SPRING_LOADED) {
3537 return;
Winson Chungb26f3d62011-06-02 10:49:29 -07003538 }
Winson Chungb745afb2015-03-02 11:51:23 -08003539
Winson Chung006ee262015-08-03 14:40:11 -07003540 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3541 Workspace.State.SPRING_LOADED,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003542 WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, true /* animated */,
3543 null /* onCompleteRunnable */);
Winson Chungb745afb2015-03-02 11:51:23 -08003544 mState = isAppsViewVisible() ? State.APPS_SPRING_LOADED : State.WIDGETS_SPRING_LOADED;
Michael Jurkad3ef3062010-11-23 16:23:58 -08003545 }
Adam Cohen7777d962011-08-18 18:58:38 -07003546
Hyunyoung Song3f471442015-04-08 19:01:34 -07003547 public void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, int delay,
Adam Cohened66b2b2012-01-23 17:28:51 -08003548 final Runnable onCompleteRunnable) {
Winson Chungb745afb2015-03-02 11:51:23 -08003549 if (mState != State.APPS_SPRING_LOADED && mState != State.WIDGETS_SPRING_LOADED) return;
Winson Chung09bfc452011-09-09 11:30:20 -07003550
Winson Chunge7a03942011-08-05 15:05:12 -07003551 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07003552 @Override
3553 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003554 if (successfulDrop) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003555 // TODO(hyunyoungs): verify if this hack is still needed, if not, delete.
3556 //
Michael Jurka7bdb25a2011-08-03 15:16:44 -07003557 // Before we show workspace, hide all apps again because
3558 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
3559 // clean up our state transition functions
Hyunyoung Song3f471442015-04-08 19:01:34 -07003560 mWidgetsView.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003561 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07003562 } else {
3563 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003564 }
Winson Chung557d6ed2011-07-08 15:34:52 -07003565 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07003566 }, delay);
Winson Chung557d6ed2011-07-08 15:34:52 -07003567 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003568
Michael Jurkad3ef3062010-11-23 16:23:58 -08003569 void exitSpringLoadedDragMode() {
Winson Chungb745afb2015-03-02 11:51:23 -08003570 if (mState == State.APPS_SPRING_LOADED) {
Winson Chung4ac30062015-05-08 17:34:17 -07003571 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07003572 false /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -08003573 } else if (mState == State.WIDGETS_SPRING_LOADED) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003574 showWidgetsView(true, false);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003575 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003576 }
3577
Winson Chung4ac30062015-05-08 17:34:17 -07003578 /**
3579 * Updates the set of predicted apps if it hasn't been updated since the last time Launcher was
3580 * resumed.
3581 */
3582 private void tryAndUpdatePredictedApps() {
3583 if (mLauncherCallbacks != null) {
Winson Chung6b1c73f2015-06-18 11:38:42 -07003584 List<ComponentKey> apps = mLauncherCallbacks.getPredictedApps();
Winson Chung91c05952015-06-25 12:17:30 -07003585 if (apps != null) {
Winson Chung4ac30062015-05-08 17:34:17 -07003586 mAppsView.setPredictedApps(apps);
3587 }
3588 }
3589 }
3590
Michael Jurkab3e22d92011-10-31 15:58:33 -07003591 void lockAllApps() {
3592 // TODO
3593 }
3594
3595 void unlockAllApps() {
3596 // TODO
3597 }
3598
Sunny Goyal594d76d2014-11-06 10:12:54 -08003599 protected void disableVoiceButtonProxy(boolean disable) {
3600 // NO-OP
Winson Chungbb185bd2011-11-21 12:31:42 -08003601 }
3602
Winsonf768d932015-09-25 16:12:35 -07003603 public boolean launcherCallbacksProvidesSearch() {
3604 return (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch());
3605 }
3606
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003607 public View getOrCreateQsbBar() {
Winsonf768d932015-09-25 16:12:35 -07003608 if (launcherCallbacksProvidesSearch()) {
Adam Cohenc2d6e892014-10-16 09:49:24 -07003609 return mLauncherCallbacks.getQsbBar();
Adam Cohen9211d422014-10-07 18:14:53 -07003610 }
3611
Adam Cohen24ce0b32014-01-14 16:18:14 -08003612 if (mQsb == null) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003613 AppWidgetProviderInfo searchProvider = Utilities.getSearchWidgetProvider(this);
3614 if (searchProvider == null) {
3615 return null;
3616 }
3617
3618 Bundle opts = new Bundle();
3619 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_HOST_CATEGORY,
Adam Coheneb8e2822015-02-20 16:38:48 +00003620 AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003621
Tony Wickham3a3517f2015-10-06 11:27:04 -07003622 // Determine the min and max dimensions of the widget.
3623 LauncherAppState app = LauncherAppState.getInstance();
3624 DeviceProfile portraitProfile = app.getInvariantDeviceProfile().portraitProfile;
3625 DeviceProfile landscapeProfile = app.getInvariantDeviceProfile().landscapeProfile;
3626 float density = getResources().getDisplayMetrics().density;
Tony Wickhama3c74d12015-10-23 11:43:47 -07003627 Point searchDimens = portraitProfile.getSearchBarDimensForWidgetOpts(getResources());
3628 int maxHeight = (int) (searchDimens.y / density);
Tony Wickham3a3517f2015-10-06 11:27:04 -07003629 int minHeight = maxHeight;
Tony Wickhama3c74d12015-10-23 11:43:47 -07003630 int maxWidth = (int) (searchDimens.x / density);
Tony Wickham3a3517f2015-10-06 11:27:04 -07003631 int minWidth = maxWidth;
3632 if (!landscapeProfile.isVerticalBarLayout()) {
Tony Wickhama3c74d12015-10-23 11:43:47 -07003633 searchDimens = landscapeProfile.getSearchBarDimensForWidgetOpts(getResources());
3634 maxHeight = (int) Math.max(maxHeight, searchDimens.y / density);
3635 minHeight = (int) Math.min(minHeight, searchDimens.y / density);
3636 maxWidth = (int) Math.max(maxWidth, searchDimens.x / density);
3637 minWidth = (int) Math.min(minWidth, searchDimens.x / density);
Tony Wickham3a3517f2015-10-06 11:27:04 -07003638 }
3639 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_MAX_HEIGHT, maxHeight);
3640 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_MIN_HEIGHT, minHeight);
3641 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_MAX_WIDTH, maxWidth);
3642 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_MIN_WIDTH, minWidth);
Tony Wickhameef44322015-10-20 13:24:36 -07003643 if (LOGD) {
3644 Log.d(TAG, "QSB widget options: maxHeight=" + maxHeight + " minHeight=" + minHeight
3645 + " maxWidth=" + maxWidth + " minWidth=" + minWidth);
3646 }
Tony Wickham3a3517f2015-10-06 11:27:04 -07003647
Tony Wickham775455c2015-10-16 09:49:32 -07003648 if (mLauncherCallbacks != null) {
3649 opts.putAll(mLauncherCallbacks.getAdditionalSearchWidgetOptions());
3650 }
3651
Sunny Goyalf7258242015-10-19 16:59:07 -07003652 int widgetId = mSharedPrefs.getInt(QSB_WIDGET_ID, -1);
Sunny Goyal416541c2014-11-14 11:59:57 -08003653 AppWidgetProviderInfo widgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003654 if (!searchProvider.provider.flattenToString().equals(
Sunny Goyalf7258242015-10-19 16:59:07 -07003655 mSharedPrefs.getString(QSB_WIDGET_PROVIDER, null))
Sunny Goyal416541c2014-11-14 11:59:57 -08003656 || (widgetInfo == null)
3657 || !widgetInfo.provider.equals(searchProvider.provider)) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003658 // A valid widget is not already bound.
3659 if (widgetId > -1) {
3660 mAppWidgetHost.deleteAppWidgetId(widgetId);
3661 widgetId = -1;
3662 }
3663
3664 // Try to bind a new widget
3665 widgetId = mAppWidgetHost.allocateAppWidgetId();
3666
3667 if (!AppWidgetManagerCompat.getInstance(this)
3668 .bindAppWidgetIdIfAllowed(widgetId, searchProvider, opts)) {
3669 mAppWidgetHost.deleteAppWidgetId(widgetId);
3670 widgetId = -1;
3671 }
3672
Sunny Goyalf7258242015-10-19 16:59:07 -07003673 mSharedPrefs.edit()
Sunny Goyal594d76d2014-11-06 10:12:54 -08003674 .putInt(QSB_WIDGET_ID, widgetId)
3675 .putString(QSB_WIDGET_PROVIDER, searchProvider.provider.flattenToString())
Sunny Goyald8043982015-12-17 22:23:02 -08003676 .apply();
Sunny Goyal594d76d2014-11-06 10:12:54 -08003677 }
3678
Sunny Goyal8d595092015-07-06 12:22:14 -07003679 mAppWidgetHost.setQsbWidgetId(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003680 if (widgetId != -1) {
3681 mQsb = mAppWidgetHost.createView(this, widgetId, searchProvider);
Sunny Goyalebfae6e2015-08-27 15:30:25 -07003682 mQsb.setId(R.id.qsb_widget);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003683 mQsb.updateAppWidgetOptions(opts);
3684 mQsb.setPadding(0, 0, 0, 0);
3685 mSearchDropTargetBar.addView(mQsb);
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003686 mSearchDropTargetBar.setQsbSearchBar(mQsb);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003687 }
Cristina Stancu476493b2013-08-07 17:20:14 +01003688 }
Adam Cohen24ce0b32014-01-14 16:18:14 -08003689 return mQsb;
Cristina Stancu476493b2013-08-07 17:20:14 +01003690 }
3691
Sunny Goyal22235bc2015-04-03 09:23:43 -07003692 private void reinflateQSBIfNecessary() {
3693 if (mQsb instanceof LauncherAppWidgetHostView &&
3694 ((LauncherAppWidgetHostView) mQsb).isReinflateRequired()) {
3695 mSearchDropTargetBar.removeView(mQsb);
3696 mQsb = null;
3697 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
3698 }
3699 }
3700
Michael Jurkad7c28052012-04-27 15:43:36 -07003701 @Override
3702 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07003703 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07003704 final List<CharSequence> text = event.getText();
3705 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07003706 // Populate event with a fake title based on the current state.
Winson Chungb745afb2015-03-02 11:51:23 -08003707 if (mState == State.APPS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003708 text.add(getString(R.string.all_apps_button_label));
Winson Chungb745afb2015-03-02 11:51:23 -08003709 } else if (mState == State.WIDGETS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003710 text.add(getString(R.string.widget_button_text));
Hyunyoung Song166e6482015-06-25 21:06:07 -07003711 } else if (mWorkspace != null) {
3712 text.add(mWorkspace.getCurrentPageDescription());
alanv1d4fde62012-10-17 13:15:47 -07003713 } else {
3714 text.add(getString(R.string.all_apps_home_button_label));
3715 }
Michael Jurkad7c28052012-04-27 15:43:36 -07003716 return result;
3717 }
3718
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003719 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003720 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003721 */
Adam Cohen091440a2015-03-18 14:16:05 -07003722 @Thunk class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003723 @Override
3724 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003725 closeSystemDialogs();
3726 }
3727 }
3728
3729 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07003730 * If the activity is currently paused, signal that we need to run the passed Runnable
3731 * in onResume.
3732 *
3733 * This needs to be called from incoming places where resources might have been loaded
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003734 * while the activity is paused. That is because the Configuration (e.g., rotation) might be
3735 * wrong when we're not running, and if the activity comes back to what the configuration was
3736 * when we were paused, activity is not restarted.
Michael Jurka7607c2f2013-04-03 14:33:19 -07003737 *
3738 * Implementation of the method from LauncherModel.Callbacks.
3739 *
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003740 * @return {@code true} if we are currently paused. The caller might be able to skip some work
Michael Jurka7607c2f2013-04-03 14:33:19 -07003741 */
Rahul Chaturvedi799aa042015-06-01 21:26:41 -04003742 @Thunk boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003743 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003744 if (LOGD) Log.d(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02003745 if (deletePreviousRunnables) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07003746 while (mBindOnResumeCallbacks.remove(run)) {
Michael Jurkac402cd92013-05-20 15:49:32 +02003747 }
3748 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07003749 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07003750 return true;
3751 } else {
3752 return false;
3753 }
3754 }
3755
Michael Jurkac402cd92013-05-20 15:49:32 +02003756 private boolean waitUntilResume(Runnable run) {
3757 return waitUntilResume(run, false);
3758 }
3759
Michael Jurka1e2f4652013-07-08 18:03:46 -07003760 public void addOnResumeCallback(Runnable run) {
Michael Jurka54554252013-08-01 12:52:23 +02003761 mOnResumeCallbacks.add(run);
Michael Jurka1e2f4652013-07-08 18:03:46 -07003762 }
3763
Michael Jurka7607c2f2013-04-03 14:33:19 -07003764 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003765 * If the activity is currently paused, signal that we need to re-run the loader
3766 * in onResume.
3767 *
3768 * This needs to be called from incoming places where resources might have been loaded
3769 * while we are paused. That is becaues the Configuration might be wrong
3770 * when we're not running, and if it comes back to what it was when we
3771 * were paused, we are not restarted.
3772 *
3773 * Implementation of the method from LauncherModel.Callbacks.
3774 *
3775 * @return true if we are currently paused. The caller might be able to
3776 * skip some work in that case since we will come back again.
3777 */
3778 public boolean setLoadOnResume() {
3779 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003780 if (LOGD) Log.d(TAG, "setLoadOnResume");
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003781 mOnResumeNeedsLoad = true;
3782 return true;
3783 } else {
3784 return false;
3785 }
3786 }
3787
3788 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003789 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003790 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003791 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003792 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003793 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003794 } else {
3795 return SCREEN_COUNT / 2;
3796 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003797 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003798
Joe Onorato9c1289c2009-08-17 11:03:03 -04003799 /**
3800 * Refreshes the shortcuts shown on the workspace.
3801 *
3802 * Implementation of the method from LauncherModel.Callbacks.
3803 */
3804 public void startBinding() {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07003805 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08003806
Michael Jurka7607c2f2013-04-03 14:33:19 -07003807 // If we're starting binding all over again, clear any bind calls we'd postponed in
3808 // the past (see waitUntilResume) -- we don't need them since we're starting binding
3809 // from scratch again
Michael Jurka1e2f4652013-07-08 18:03:46 -07003810 mBindOnResumeCallbacks.clear();
Adam Cohendf035382011-04-11 17:22:04 -07003811
Winson Chungd64d1762013-08-20 14:37:16 -07003812 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07003813 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07003814 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07003815
Michael Jurka05bf644e2011-11-30 20:28:53 -08003816 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003817 if (mHotseat != null) {
3818 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003819 }
3820 }
3821
Adam Cohendcd297f2013-06-18 13:13:40 -07003822 @Override
3823 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Winson Chung64359a52013-07-08 17:17:08 -07003824 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07003825
Adam Cohen5084cba2013-09-03 12:01:16 -07003826 // If there are no screens, we need to have an empty screen
3827 if (orderedScreenIds.size() == 0) {
3828 mWorkspace.addExtraEmptyScreen();
3829 }
Winson Chung0e6a7132013-08-23 12:55:10 -07003830
3831 // Create the custom content page (this call updates mDefaultScreen which calls
Dave Hawkeya8881582013-09-17 15:55:33 -06003832 // setCurrentPage() so ensure that all pages are added before calling this).
Derek Prothrodadd9842014-01-17 13:43:50 -05003833 if (hasCustomContentToLeft()) {
3834 mWorkspace.createCustomContentContainer();
3835 populateCustomContentContainer();
Winson Chung0e6a7132013-08-23 12:55:10 -07003836 }
Winson Chung64359a52013-07-08 17:17:08 -07003837 }
3838
3839 @Override
3840 public void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Adam Cohendcd297f2013-06-18 13:13:40 -07003841 int count = orderedScreenIds.size();
3842 for (int i = 0; i < count; i++) {
Adam Cohen89bddfa2013-08-20 11:57:13 -07003843 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(orderedScreenIds.get(i));
Adam Cohendcd297f2013-06-18 13:13:40 -07003844 }
Adam Cohendcd297f2013-06-18 13:13:40 -07003845 }
3846
Winson Chungd64d1762013-08-20 14:37:16 -07003847 public void bindAppsAdded(final ArrayList<Long> newScreens,
3848 final ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -07003849 final ArrayList<ItemInfo> addAnimated,
3850 final ArrayList<AppInfo> addedApps) {
Winson Chungd64d1762013-08-20 14:37:16 -07003851 Runnable r = new Runnable() {
3852 public void run() {
Winson Chungc58497e2013-09-03 17:48:37 -07003853 bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps);
Winson Chungd64d1762013-08-20 14:37:16 -07003854 }
3855 };
3856 if (waitUntilResume(r)) {
3857 return;
3858 }
3859
Winson Chungd64d1762013-08-20 14:37:16 -07003860 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08003861 if (newScreens != null) {
3862 bindAddScreens(newScreens);
3863 }
Winson Chungd64d1762013-08-20 14:37:16 -07003864
3865 // We add the items without animation on non-visible pages, and with
3866 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08003867 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003868 bindItems(addNotAnimated, 0,
3869 addNotAnimated.size(), false);
3870 }
Adam Cohen76a47a12014-02-05 11:47:43 -08003871 if (addAnimated != null && !addAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003872 bindItems(addAnimated, 0,
3873 addAnimated.size(), true);
3874 }
Winson Chungc58497e2013-09-03 17:48:37 -07003875
Winson Chung87412982013-10-03 18:34:14 -07003876 // Remove the extra empty screen
Adam Cohen689ff162014-05-08 17:27:56 -07003877 mWorkspace.removeExtraEmptyScreen(false, false);
Winson Chung87412982013-10-03 18:34:14 -07003878
Winson Chungb745afb2015-03-02 11:51:23 -08003879 if (addedApps != null && mAppsView != null) {
3880 mAppsView.addApps(addedApps);
Winson Chungc58497e2013-09-03 17:48:37 -07003881 }
Winson Chungd64d1762013-08-20 14:37:16 -07003882 }
3883
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003884 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003885 * Bind the items start-end from the list.
3886 *
3887 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003888 */
Tony Wickham0bb211a2015-10-02 16:22:08 -07003889 @Override
Winson Chung64359a52013-07-08 17:17:08 -07003890 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end,
3891 final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07003892 Runnable r = new Runnable() {
3893 public void run() {
3894 bindItems(shortcuts, start, end, forceAnimateIcons);
3895 }
3896 };
3897 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003898 return;
3899 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003900
Winson Chungf0c6ae02012-03-21 16:10:31 -07003901 // Get the list of added shortcuts and intersect them with the set of shortcuts here
Winson Chung64359a52013-07-08 17:17:08 -07003902 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
3903 final Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chung997a9232013-07-24 15:33:46 -07003904 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07003905 Workspace workspace = mWorkspace;
Winson Chung997a9232013-07-24 15:33:46 -07003906 long newShortcutsScreenId = -1;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003907 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003908 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003909
3910 // Short circuit if we are loading dock items for a configuration which has no dock
3911 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3912 mHotseat == null) {
3913 continue;
3914 }
3915
Sunny Goyal639e9062015-08-19 19:17:06 -07003916 final View view;
Joe Onorato9c1289c2009-08-17 11:03:03 -04003917 switch (item.itemType) {
3918 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3919 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07003920 ShortcutInfo info = (ShortcutInfo) item;
Sunny Goyal639e9062015-08-19 19:17:06 -07003921 view = createShortcut(info);
Adam Cohendcd297f2013-06-18 13:13:40 -07003922
Winson Chung64359a52013-07-08 17:17:08 -07003923 /*
3924 * TODO: FIX collision case
3925 */
Winson Chungce376632013-07-11 16:12:41 -07003926 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
3927 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
3928 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07003929 View v = cl.getChildAt(item.cellX, item.cellY);
3930 Object tag = v.getTag();
3931 String desc = "Collision while binding workspace item: " + item
3932 + ". Collides with " + tag;
3933 if (LauncherAppState.isDogfoodBuild()) {
3934 throw (new RuntimeException(desc));
3935 } else {
3936 Log.d(TAG, desc);
3937 }
Winson Chungce376632013-07-11 16:12:41 -07003938 }
Winson Chung64359a52013-07-08 17:17:08 -07003939 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003940 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003941 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Sunny Goyal639e9062015-08-19 19:17:06 -07003942 view = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003943 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003944 (FolderInfo) item, mIconCache);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003945 break;
Winson Chungc763c4e2013-07-19 13:49:06 -07003946 default:
3947 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04003948 }
Sunny Goyal639e9062015-08-19 19:17:06 -07003949
3950 workspace.addInScreenFromBind(view, item.container, item.screenId, item.cellX,
3951 item.cellY, 1, 1);
3952 if (animateIcons) {
3953 // Animate all the applications up now
3954 view.setAlpha(0f);
3955 view.setScaleX(0f);
3956 view.setScaleY(0f);
3957 bounceAnims.add(createNewAppBounceAnimation(view, i));
3958 newShortcutsScreenId = item.screenId;
3959 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003960 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003961
Winson Chung997a9232013-07-24 15:33:46 -07003962 if (animateIcons) {
3963 // Animate to the correct page
3964 if (newShortcutsScreenId > -1) {
3965 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Winson Chung94d67682013-09-25 16:29:40 -07003966 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId);
Winson Chungb2323832013-10-03 15:22:09 -07003967 final Runnable startBounceAnimRunnable = new Runnable() {
3968 public void run() {
3969 anim.playTogether(bounceAnims);
3970 anim.start();
3971 }
3972 };
Winson Chung997a9232013-07-24 15:33:46 -07003973 if (newShortcutsScreenId != currentScreenId) {
Winson Chung94d67682013-09-25 16:29:40 -07003974 // We post the animation slightly delayed to prevent slowdowns
3975 // when we are loading right after we return to launcher.
3976 mWorkspace.postDelayed(new Runnable() {
3977 public void run() {
Ian Parkinson94449152014-01-21 13:09:59 +00003978 if (mWorkspace != null) {
3979 mWorkspace.snapToPage(newScreenIndex);
3980 mWorkspace.postDelayed(startBounceAnimRunnable,
3981 NEW_APPS_ANIMATION_DELAY);
3982 }
Winson Chung94d67682013-09-25 16:29:40 -07003983 }
3984 }, NEW_APPS_PAGE_MOVE_DELAY);
Winson Chungb2323832013-10-03 15:22:09 -07003985 } else {
3986 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07003987 }
3988 }
Winson Chung64359a52013-07-08 17:17:08 -07003989 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003990 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003991 }
3992
Joe Onorato9c1289c2009-08-17 11:03:03 -04003993 /**
3994 * Implementation of the method from LauncherModel.Callbacks.
3995 */
Sunny Goyale2df0622015-04-24 11:27:00 -07003996 public void bindFolders(final LongArrayMap<FolderInfo> folders) {
Winson Chungd64d1762013-08-20 14:37:16 -07003997 Runnable r = new Runnable() {
3998 public void run() {
3999 bindFolders(folders);
4000 }
4001 };
4002 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004003 return;
4004 }
Sunny Goyale2df0622015-04-24 11:27:00 -07004005 sFolders = folders.clone();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004006 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004007
4008 /**
4009 * Add the views for a widget to the workspace.
4010 *
4011 * Implementation of the method from LauncherModel.Callbacks.
4012 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07004013 public void bindAppWidget(final LauncherAppWidgetInfo item) {
Winson Chungd64d1762013-08-20 14:37:16 -07004014 Runnable r = new Runnable() {
4015 public void run() {
4016 bindAppWidget(item);
4017 }
4018 };
4019 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004020 return;
4021 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07004022
Daniel Sandler843e8602010-06-07 14:59:01 -04004023 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
4024 if (DEBUG_WIDGETS) {
4025 Log.d(TAG, "bindAppWidget: " + item);
4026 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004027 final Workspace workspace = mWorkspace;
4028
Adam Cohen59400422014-03-05 18:07:04 -08004029 LauncherAppWidgetProviderInfo appWidgetInfo =
Robin Lee26ace122015-03-16 19:41:43 +00004030 LauncherModel.getProviderInfo(this, item.providerName, item.user);
Adam Cohen59400422014-03-05 18:07:04 -08004031
Sunny Goyal9b4b0812014-10-08 10:47:28 -07004032 if (!mIsSafeModeEnabled
4033 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY) == 0)
Sunny Goyal84b4adc2015-08-12 15:12:16 -07004034 && (item.restoreStatus != LauncherAppWidgetInfo.RESTORE_COMPLETED)) {
4035
Sunny Goyalff572272014-07-23 13:58:07 -07004036 if (appWidgetInfo == null) {
4037 if (DEBUG_WIDGETS) {
4038 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
4039 + " belongs to component " + item.providerName
4040 + ", as the povider is null");
4041 }
4042 LauncherModel.deleteItemFromDatabase(this, item);
4043 return;
4044 }
Sunny Goyalff572272014-07-23 13:58:07 -07004045
Sunny Goyal84b4adc2015-08-12 15:12:16 -07004046 // If we do not have a valid id, try to bind an id.
4047 if ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_ID_NOT_VALID) != 0) {
4048 // Note: This assumes that the id remap broadcast is received before this step.
4049 // If that is not the case, the id remap will be ignored and user may see the
4050 // click to setup view.
4051 PendingAddWidgetInfo pendingInfo = new PendingAddWidgetInfo(this, appWidgetInfo, null);
4052 pendingInfo.spanX = item.spanX;
4053 pendingInfo.spanY = item.spanY;
4054 pendingInfo.minSpanX = item.minSpanX;
4055 pendingInfo.minSpanY = item.minSpanY;
Sunny Goyalb740f592015-12-17 23:22:42 -08004056 Bundle options = WidgetHostViewLoader.getDefaultOptionsForWidget(this, pendingInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07004057
Sunny Goyal84b4adc2015-08-12 15:12:16 -07004058 int newWidgetId = mAppWidgetHost.allocateAppWidgetId();
4059 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
4060 newWidgetId, appWidgetInfo, options);
4061
4062 // TODO consider showing a permission dialog when the widget is clicked.
4063 if (!success) {
4064 mAppWidgetHost.deleteAppWidgetId(newWidgetId);
4065 if (DEBUG_WIDGETS) {
4066 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
4067 + " belongs to component " + item.providerName
4068 + ", as the launcher is unable to bing a new widget id");
4069 }
4070 LauncherModel.deleteItemFromDatabase(this, item);
4071 return;
Sunny Goyalff572272014-07-23 13:58:07 -07004072 }
Sunny Goyal84b4adc2015-08-12 15:12:16 -07004073
4074 item.appWidgetId = newWidgetId;
4075
4076 // If the widget has a configure activity, it is still needs to set it up, otherwise
4077 // the widget is ready to go.
4078 item.restoreStatus = (appWidgetInfo.configure == null)
4079 ? LauncherAppWidgetInfo.RESTORE_COMPLETED
4080 : LauncherAppWidgetInfo.FLAG_UI_NOT_READY;
4081
4082 LauncherModel.updateItemInDatabase(this, item);
4083 } else if (((item.restoreStatus & LauncherAppWidgetInfo.FLAG_UI_NOT_READY) != 0)
4084 && (appWidgetInfo.configure == null)) {
4085 // If the ID is already valid, verify if we need to configure or not.
4086 item.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
4087 LauncherModel.updateItemInDatabase(this, item);
Sunny Goyalff572272014-07-23 13:58:07 -07004088 }
Sunny Goyalff572272014-07-23 13:58:07 -07004089 }
4090
Sunny Goyal9b4b0812014-10-08 10:47:28 -07004091 if (!mIsSafeModeEnabled && item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
Sunny Goyal651077b2014-06-30 14:15:31 -07004092 final int appWidgetId = item.appWidgetId;
Sunny Goyal651077b2014-06-30 14:15:31 -07004093 if (DEBUG_WIDGETS) {
Adam Cohen59400422014-03-05 18:07:04 -08004094 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component "
4095 + appWidgetInfo.provider);
Sunny Goyal651077b2014-06-30 14:15:31 -07004096 }
Daniel Sandler843e8602010-06-07 14:59:01 -04004097
Sunny Goyal56c73602015-09-25 12:55:01 -07004098 // Verify that we own the widget
4099 AppWidgetProviderInfo info = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
4100 if (info == null || appWidgetInfo == null ||
4101 !info.provider.equals(appWidgetInfo.provider)) {
4102 Log.e(TAG, "Removing invalid widget: id=" + item.appWidgetId);
4103 deleteWidgetInfo(item);
4104 return;
4105 }
4106
Sunny Goyal651077b2014-06-30 14:15:31 -07004107 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
Sunny Goyal233ee962015-08-03 13:05:01 -07004108 item.minSpanX = appWidgetInfo.minSpanX;
4109 item.minSpanY = appWidgetInfo.minSpanY;
Sunny Goyal651077b2014-06-30 14:15:31 -07004110 } else {
4111 appWidgetInfo = null;
Sunny Goyal9b4b0812014-10-08 10:47:28 -07004112 PendingAppWidgetHostView view = new PendingAppWidgetHostView(this, item,
4113 mIsSafeModeEnabled);
Sunny Goyal0fc1be12014-08-11 17:05:23 -07004114 view.updateIcon(mIconCache);
4115 item.hostView = view;
Sunny Goyal651077b2014-06-30 14:15:31 -07004116 item.hostView.updateAppWidget(null);
Sunny Goyalff572272014-07-23 13:58:07 -07004117 item.hostView.setOnClickListener(this);
Sunny Goyal651077b2014-06-30 14:15:31 -07004118 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004119
Sunny Goyal25c2e3e2015-10-28 23:28:21 -07004120 addAppWidgetToWorkspace(item, appWidgetInfo, false);
Joe Onorato9c1289c2009-08-17 11:03:03 -04004121 workspace.requestLayout();
4122
Daniel Sandler843e8602010-06-07 14:59:01 -04004123 if (DEBUG_WIDGETS) {
4124 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
4125 + (SystemClock.uptimeMillis()-start) + "ms");
4126 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004127 }
4128
Sunny Goyalff572272014-07-23 13:58:07 -07004129 /**
4130 * Restores a pending widget.
4131 *
4132 * @param appWidgetId The app widget id
4133 * @param cellInfo The position on screen where to create the widget.
4134 */
4135 private void completeRestoreAppWidget(final int appWidgetId) {
4136 LauncherAppWidgetHostView view = mWorkspace.getWidgetForAppWidgetId(appWidgetId);
4137 if ((view == null) || !(view instanceof PendingAppWidgetHostView)) {
4138 Log.e(TAG, "Widget update called, when the widget no longer exists.");
4139 return;
4140 }
4141
Sunny Goyal0fc1be12014-08-11 17:05:23 -07004142 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) view.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07004143 info.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
4144
4145 mWorkspace.reinflateWidgetsIfNecessary();
4146 LauncherModel.updateItemInDatabase(this, info);
4147 }
4148
Adam Cohen1462de32012-07-24 22:34:36 -07004149 public void onPageBoundSynchronously(int page) {
4150 mSynchronouslyBoundPages.add(page);
4151 }
4152
Joe Onorato9c1289c2009-08-17 11:03:03 -04004153 /**
4154 * Callback saying that there aren't any more items to bind.
4155 *
4156 * Implementation of the method from LauncherModel.Callbacks.
4157 */
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004158 public void finishBindingItems() {
Winson Chungd64d1762013-08-20 14:37:16 -07004159 Runnable r = new Runnable() {
4160 public void run() {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004161 finishBindingItems();
Winson Chungd64d1762013-08-20 14:37:16 -07004162 }
4163 };
4164 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004165 return;
4166 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004167 if (mSavedState != null) {
4168 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07004169 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004170 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004171 mSavedState = null;
4172 }
4173
Adam Cohen1462de32012-07-24 22:34:36 -07004174 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004175
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004176 setWorkspaceLoading(false);
Adam Cohen3ed316a2014-07-23 18:21:20 -07004177 sendLoadingCompleteBroadcastIfNecessary();
Adam Cohendb364c32014-05-20 14:23:40 -07004178
4179 // If we received the result of any pending adds while the loader was running (e.g. the
4180 // widget configuration forced an orientation change), process them now.
4181 if (sPendingAddItem != null) {
4182 final long screenId = completeAdd(sPendingAddItem);
4183
4184 // TODO: this moves the user to the page where the pending item was added. Ideally,
4185 // the screen would be guaranteed to exist after bind, and the page would be set through
4186 // the workspace restore process.
4187 mWorkspace.post(new Runnable() {
4188 @Override
4189 public void run() {
4190 mWorkspace.snapToScreenId(screenId);
4191 }
4192 });
4193 sPendingAddItem = null;
4194 }
4195
Sunny Goyal756adbc2015-04-16 15:20:51 -07004196 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
Adam Cohen9211d422014-10-07 18:14:53 -07004197
4198 if (mLauncherCallbacks != null) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004199 mLauncherCallbacks.finishBindingItems(false);
Adam Cohen9211d422014-10-07 18:14:53 -07004200 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004201 }
4202
Adam Cohen3ed316a2014-07-23 18:21:20 -07004203 private void sendLoadingCompleteBroadcastIfNecessary() {
4204 if (!mSharedPrefs.getBoolean(FIRST_LOAD_COMPLETE, false)) {
4205 String permission =
4206 getResources().getString(R.string.receive_first_load_broadcast_permission);
4207 Intent intent = new Intent(ACTION_FIRST_LOAD_COMPLETE);
4208 sendBroadcast(intent, permission);
4209 SharedPreferences.Editor editor = mSharedPrefs.edit();
4210 editor.putBoolean(FIRST_LOAD_COMPLETE, true);
4211 editor.apply();
4212 }
4213 }
4214
Winson Chunga0b7e862013-09-05 16:03:15 -07004215 public boolean isAllAppsButtonRank(int rank) {
4216 if (mHotseat != null) {
4217 return mHotseat.isAllAppsButtonRank(rank);
4218 }
4219 return false;
4220 }
4221
Winson Chunga2413752012-04-03 14:22:34 -07004222 private boolean canRunNewAppsAnimation() {
4223 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
Sunny Goyal639e9062015-08-19 19:17:06 -07004224 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000)
4225 && (mClings == null || !mClings.isVisible());
Winson Chunga2413752012-04-03 14:22:34 -07004226 }
4227
Winson Chungc9168342013-06-26 14:54:55 -07004228 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
4229 ValueAnimator bounceAnim = LauncherAnimUtils.ofPropertyValuesHolder(v,
4230 PropertyValuesHolder.ofFloat("alpha", 1f),
4231 PropertyValuesHolder.ofFloat("scaleX", 1f),
4232 PropertyValuesHolder.ofFloat("scaleY", 1f));
4233 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
4234 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
Sunny Goyal5a1f53b2015-05-27 10:24:24 -07004235 bounceAnim.setInterpolator(new OvershootInterpolator(BOUNCE_ANIMATION_TENSION));
Winson Chungc9168342013-06-26 14:54:55 -07004236 return bounceAnim;
4237 }
4238
Adam Cohen27772732013-11-11 14:00:56 +00004239 public boolean useVerticalBarLayout() {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07004240 return mDeviceProfile.isVerticalBarLayout();
Adam Cohen27772732013-11-11 14:00:56 +00004241 }
4242
Tony Wickham3a3517f2015-10-06 11:27:04 -07004243 /** Returns the search bar bounds in pixels. */
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004244 protected Rect getSearchBarBounds() {
Sunny Goyalc6205602015-05-21 20:46:33 -07004245 return mDeviceProfile.getSearchBarBounds(Utilities.isRtl(getResources()));
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004246 }
4247
Tony Wickham55616cd2015-09-23 14:55:17 -07004248 public int getSearchBarHeight() {
4249 if (mLauncherCallbacks != null) {
4250 return mLauncherCallbacks.getSearchBarHeight();
4251 }
4252 return LauncherCallbacks.SEARCH_BAR_HEIGHT_NORMAL;
4253 }
4254
Winson Chung88fa7412015-08-03 14:25:28 -07004255 public void bindSearchProviderChanged() {
Sunny Goyal594d76d2014-11-06 10:12:54 -08004256 if (mSearchDropTargetBar == null) {
4257 return;
Winson Chungadf0c182012-08-23 14:59:07 -07004258 }
Sunny Goyal594d76d2014-11-06 10:12:54 -08004259 if (mQsb != null) {
4260 mSearchDropTargetBar.removeView(mQsb);
4261 mQsb = null;
4262 }
Adam Cohenb0df1b02015-03-18 22:21:40 -07004263 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004264 }
4265
Amith Yamasani6d7fe502010-11-16 09:05:07 -08004266 /**
Winson Chungbb785c62015-05-05 10:05:08 -07004267 * A runnable that we can dequeue and re-enqueue when all applications are bound (to prevent
4268 * multiple calls to bind the same list.)
4269 */
4270 @Thunk ArrayList<AppInfo> mTmpAppsList;
4271 private Runnable mBindAllApplicationsRunnable = new Runnable() {
4272 public void run() {
4273 bindAllApplications(mTmpAppsList);
4274 mTmpAppsList = null;
4275 }
4276 };
4277
4278 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004279 * Add the icons for all apps.
4280 *
4281 * Implementation of the method from LauncherModel.Callbacks.
4282 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004283 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Winson Chungbb785c62015-05-05 10:05:08 -07004284 if (waitUntilResume(mBindAllApplicationsRunnable, true)) {
4285 mTmpAppsList = apps;
4286 return;
4287 }
4288
Winson Chungb745afb2015-03-02 11:51:23 -08004289 if (mAppsView != null) {
4290 mAppsView.setApps(apps);
4291 }
Adam Cohen9211d422014-10-07 18:14:53 -07004292 if (mLauncherCallbacks != null) {
4293 mLauncherCallbacks.bindAllApplications(apps);
4294 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004295 }
4296
4297 /**
4298 * A package was updated.
4299 *
4300 * Implementation of the method from LauncherModel.Callbacks.
4301 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004302 public void bindAppsUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004303 Runnable r = new Runnable() {
4304 public void run() {
4305 bindAppsUpdated(apps);
4306 }
4307 };
4308 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004309 return;
4310 }
4311
Winson Chungb745afb2015-03-02 11:51:23 -08004312 if (mAppsView != null) {
4313 mAppsView.updateApps(apps);
Winson Chungc58497e2013-09-03 17:48:37 -07004314 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004315 }
4316
Sunny Goyal4390ace2014-10-13 11:33:11 -07004317 @Override
4318 public void bindWidgetsRestored(final ArrayList<LauncherAppWidgetInfo> widgets) {
4319 Runnable r = new Runnable() {
4320 public void run() {
4321 bindWidgetsRestored(widgets);
4322 }
4323 };
4324 if (waitUntilResume(r)) {
4325 return;
4326 }
4327 mWorkspace.widgetsRestored(widgets);
4328 }
4329
Joe Onorato9c1289c2009-08-17 11:03:03 -04004330 /**
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004331 * Some shortcuts were updated in the background.
4332 *
4333 * Implementation of the method from LauncherModel.Callbacks.
4334 */
Sunny Goyal4390ace2014-10-13 11:33:11 -07004335 @Override
4336 public void bindShortcutsChanged(final ArrayList<ShortcutInfo> updated,
4337 final ArrayList<ShortcutInfo> removed, final UserHandleCompat user) {
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004338 Runnable r = new Runnable() {
4339 public void run() {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004340 bindShortcutsChanged(updated, removed, user);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004341 }
4342 };
4343 if (waitUntilResume(r)) {
4344 return;
4345 }
4346
Sunny Goyal4390ace2014-10-13 11:33:11 -07004347 if (!updated.isEmpty()) {
4348 mWorkspace.updateShortcuts(updated);
4349 }
4350
4351 if (!removed.isEmpty()) {
4352 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4353 for (ShortcutInfo si : removed) {
4354 removedComponents.add(si.getTargetComponent());
4355 }
4356 mWorkspace.removeItemsByComponentName(removedComponents, user);
4357 // Notify the drag controller
4358 mDragController.onAppsRemoved(new ArrayList<String>(), removedComponents);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004359 }
4360 }
4361
4362 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004363 * Update the state of a package, typically related to install state.
4364 *
4365 * Implementation of the method from LauncherModel.Callbacks.
4366 */
Sunny Goyale755d462014-07-22 13:48:29 -07004367 @Override
Sunny Goyal756adbc2015-04-16 15:20:51 -07004368 public void bindRestoreItemsChange(final HashSet<ItemInfo> updates) {
4369 Runnable r = new Runnable() {
4370 public void run() {
4371 bindRestoreItemsChange(updates);
4372 }
4373 };
4374 if (waitUntilResume(r)) {
4375 return;
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004376 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004377
Sunny Goyal756adbc2015-04-16 15:20:51 -07004378 mWorkspace.updateRestoreItems(updates);
Sunny Goyala22666f2014-09-18 13:25:15 -07004379 }
4380
4381 /**
Winson Chung83892cc2013-05-01 16:53:33 -07004382 * A package was uninstalled. We take both the super set of packageNames
4383 * in addition to specific applications to remove, the reason being that
4384 * this can be called when a package is updated as well. In that scenario,
4385 * we only remove specific components from the workspace, where as
4386 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004387 *
Sunny Goyal1a745e82014-10-02 15:58:31 -07004388 * @param reason if non-zero, the icons are not permanently removed, rather marked as disabled.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004389 * Implementation of the method from LauncherModel.Callbacks.
4390 */
Sunny Goyal1a745e82014-10-02 15:58:31 -07004391 @Override
Winson Chung83892cc2013-05-01 16:53:33 -07004392 public void bindComponentsRemoved(final ArrayList<String> packageNames,
Sunny Goyal1a745e82014-10-02 15:58:31 -07004393 final ArrayList<AppInfo> appInfos, final UserHandleCompat user, final int reason) {
Winson Chungd64d1762013-08-20 14:37:16 -07004394 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004395 public void run() {
Sunny Goyal1a745e82014-10-02 15:58:31 -07004396 bindComponentsRemoved(packageNames, appInfos, user, reason);
Winson Chung83892cc2013-05-01 16:53:33 -07004397 }
Winson Chungd64d1762013-08-20 14:37:16 -07004398 };
4399 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07004400 return;
4401 }
4402
Sunny Goyal1a745e82014-10-02 15:58:31 -07004403 if (reason == 0) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004404 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4405 for (AppInfo info : appInfos) {
4406 removedComponents.add(info.componentName);
4407 }
Sunny Goyal1a745e82014-10-02 15:58:31 -07004408 if (!packageNames.isEmpty()) {
4409 mWorkspace.removeItemsByPackageName(packageNames, user);
4410 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004411 if (!removedComponents.isEmpty()) {
4412 mWorkspace.removeItemsByComponentName(removedComponents, user);
Sunny Goyal1a745e82014-10-02 15:58:31 -07004413 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004414 // Notify the drag controller
4415 mDragController.onAppsRemoved(packageNames, removedComponents);
4416
Sunny Goyal1a745e82014-10-02 15:58:31 -07004417 } else {
4418 mWorkspace.disableShortcutsByPackageName(packageNames, user, reason);
Joe Onorato36115782010-06-17 13:28:48 -04004419 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07004420
Winson Chungdf95eb12013-10-16 14:57:07 -07004421 // Update AllApps
Winson Chungb745afb2015-03-02 11:51:23 -08004422 if (mAppsView != null) {
4423 mAppsView.removeApps(appInfos);
Winson Chungc58497e2013-09-03 17:48:37 -07004424 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004425 }
Joe Onoratobe386092009-11-17 17:32:16 -08004426
Michael Jurkac402cd92013-05-20 15:49:32 +02004427 private Runnable mBindPackagesUpdatedRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004428 public void run() {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004429 bindAllPackages(mWidgetsModel);
Winson Chung83892cc2013-05-01 16:53:33 -07004430 }
Michael Jurkac402cd92013-05-20 15:49:32 +02004431 };
Hyunyoung Song3f471442015-04-08 19:01:34 -07004432
Hyunyoung Song8821ca92015-05-04 16:28:20 -07004433 @Override
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004434 public void bindAllPackages(final WidgetsModel model) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004435 if (waitUntilResume(mBindPackagesUpdatedRunnable, true)) {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004436 mWidgetsModel = model;
Winson Chung83892cc2013-05-01 16:53:33 -07004437 return;
4438 }
4439
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004440 if (mWidgetsView != null && model != null) {
4441 mWidgetsView.addWidgets(model);
4442 mWidgetsModel = null;
Winson Chung785d2eb2011-04-14 16:08:02 -07004443 }
Winson Chung80baf5a2010-08-09 16:03:15 -07004444 }
4445
Winson Chung400438b2011-01-16 17:53:48 -08004446 private int mapConfigurationOriActivityInfoOri(int configOri) {
4447 final Display d = getWindowManager().getDefaultDisplay();
4448 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
4449 switch (d.getRotation()) {
4450 case Surface.ROTATION_0:
4451 case Surface.ROTATION_180:
4452 // We are currently in the same basic orientation as the natural orientation
4453 naturalOri = configOri;
4454 break;
4455 case Surface.ROTATION_90:
4456 case Surface.ROTATION_270:
4457 // We are currently in the other basic orientation to the natural orientation
4458 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
4459 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
4460 break;
4461 }
4462
4463 int[] oriMap = {
4464 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
4465 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
4466 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
4467 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
4468 };
4469 // Since the map starts at portrait, we need to offset if this device's natural orientation
4470 // is landscape.
4471 int indexOffset = 0;
4472 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
4473 indexOffset = 1;
4474 }
4475 return oriMap[(d.getRotation() + indexOffset) % 4];
4476 }
Adam Cohen446e9402011-09-15 18:21:21 -07004477
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004478 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR2)
Winson Chung4b919f82012-05-01 10:44:08 -07004479 public void lockScreenOrientation() {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004480 if (mRotationEnabled) {
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004481 if (Utilities.ATLEAST_JB_MR2) {
4482 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LOCKED);
4483 } else {
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004484 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
4485 .getConfiguration().orientation));
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004486 }
Winson Chung4b919f82012-05-01 10:44:08 -07004487 }
4488 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004489
Winson Chung4b919f82012-05-01 10:44:08 -07004490 public void unlockScreenOrientation(boolean immediate) {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004491 if (mRotationEnabled) {
Winson Chung4b919f82012-05-01 10:44:08 -07004492 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07004493 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07004494 } else {
4495 mHandler.postDelayed(new Runnable() {
4496 public void run() {
4497 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4498 }
4499 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07004500 }
Winson Chung4b919f82012-05-01 10:44:08 -07004501 }
Winson Chung400438b2011-01-16 17:53:48 -08004502 }
4503
Winson Chunge43a1e72014-01-15 10:33:02 -08004504 protected boolean isLauncherPreinstalled() {
Adam Cohen9211d422014-10-07 18:14:53 -07004505 if (mLauncherCallbacks != null) {
4506 return mLauncherCallbacks.isLauncherPreinstalled();
4507 }
Winson Chunge43a1e72014-01-15 10:33:02 -08004508 PackageManager pm = getPackageManager();
4509 try {
4510 ApplicationInfo ai = pm.getApplicationInfo(getComponentName().getPackageName(), 0);
4511 if ((ai.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
4512 return true;
4513 } else {
4514 return false;
4515 }
4516 } catch (NameNotFoundException e) {
4517 e.printStackTrace();
4518 return false;
4519 }
4520 }
4521
Adam Cohenea90f832014-05-21 15:03:34 -07004522 /**
4523 * This method indicates whether or not we should suggest default wallpaper dimensions
4524 * when our wallpaper cropper was not yet used to set a wallpaper.
4525 */
4526 protected boolean overrideWallpaperDimensions() {
Adam Cohen9211d422014-10-07 18:14:53 -07004527 if (mLauncherCallbacks != null) {
4528 return mLauncherCallbacks.overrideWallpaperDimensions();
4529 }
Adam Cohenea90f832014-05-21 15:03:34 -07004530 return true;
4531 }
4532
Adam Cohen432609a2014-03-13 17:03:22 -07004533 /**
4534 * To be overridden by subclasses to indicate that there is an activity to launch
4535 * before showing the standard launcher experience.
4536 */
4537 protected boolean hasFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004538 if (mLauncherCallbacks != null) {
4539 return mLauncherCallbacks.hasFirstRunActivity();
4540 }
Adam Cohen432609a2014-03-13 17:03:22 -07004541 return false;
4542 }
4543
4544 /**
4545 * To be overridden by subclasses to launch any first run activity
4546 */
4547 protected Intent getFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004548 if (mLauncherCallbacks != null) {
4549 return mLauncherCallbacks.getFirstRunActivity();
4550 }
Adam Cohen432609a2014-03-13 17:03:22 -07004551 return null;
4552 }
4553
Winson Chunga6945242014-01-08 14:04:34 -08004554 private boolean shouldRunFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004555 return !ActivityManager.isRunningInTestHarness() &&
4556 !mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
Winson Chunga6945242014-01-08 14:04:34 -08004557 }
4558
Adam Cohen4a9423d2014-03-28 14:22:31 -07004559 protected boolean hasRunFirstRunActivity() {
4560 return mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
4561 }
4562
Adam Cohen432609a2014-03-13 17:03:22 -07004563 public boolean showFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004564 if (shouldRunFirstRunActivity() &&
4565 hasFirstRunActivity()) {
Winson Chunga6945242014-01-08 14:04:34 -08004566 Intent firstRunIntent = getFirstRunActivity();
4567 if (firstRunIntent != null) {
4568 startActivity(firstRunIntent);
4569 markFirstRunActivityShown();
Adam Cohen432609a2014-03-13 17:03:22 -07004570 return true;
Winson Chunga6945242014-01-08 14:04:34 -08004571 }
4572 }
Adam Cohen432609a2014-03-13 17:03:22 -07004573 return false;
Winson Chunga6945242014-01-08 14:04:34 -08004574 }
4575
4576 private void markFirstRunActivityShown() {
4577 SharedPreferences.Editor editor = mSharedPrefs.edit();
4578 editor.putBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, true);
4579 editor.apply();
4580 }
4581
Adam Cohen432609a2014-03-13 17:03:22 -07004582 /**
4583 * To be overridden by subclasses to indicate that there is an in-activity full-screen intro
4584 * screen that must be displayed and dismissed.
4585 */
4586 protected boolean hasDismissableIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004587 if (mLauncherCallbacks != null) {
4588 return mLauncherCallbacks.hasDismissableIntroScreen();
4589 }
Adam Cohen432609a2014-03-13 17:03:22 -07004590 return false;
4591 }
4592
4593 /**
4594 * Full screen intro screen to be shown and dismissed before the launcher can be used.
4595 */
4596 protected View getIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004597 if (mLauncherCallbacks != null) {
4598 return mLauncherCallbacks.getIntroScreen();
4599 }
Adam Cohen432609a2014-03-13 17:03:22 -07004600 return null;
4601 }
4602
4603 /**
4604 * To be overriden by subclasses to indicate whether the in-activity intro screen has been
4605 * dismissed. This method is ignored if #hasDismissableIntroScreen returns false.
4606 */
4607 private boolean shouldShowIntroScreen() {
4608 return hasDismissableIntroScreen() &&
4609 !mSharedPrefs.getBoolean(INTRO_SCREEN_DISMISSED, false);
4610 }
4611
4612 protected void showIntroScreen() {
4613 View introScreen = getIntroScreen();
4614 changeWallpaperVisiblity(false);
4615 if (introScreen != null) {
4616 mDragLayer.showOverlayView(introScreen);
4617 }
Adam Cohenc3e12c72014-10-31 16:15:36 -07004618 if (mLauncherOverlayContainer != null) {
4619 mLauncherOverlayContainer.setVisibility(View.INVISIBLE);
4620 }
Adam Cohen432609a2014-03-13 17:03:22 -07004621 }
4622
4623 public void dismissIntroScreen() {
4624 markIntroScreenDismissed();
4625 if (showFirstRunActivity()) {
4626 // We delay hiding the intro view until the first run activity is showing. This
4627 // avoids a blip.
4628 mWorkspace.postDelayed(new Runnable() {
4629 @Override
4630 public void run() {
4631 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004632 if (mLauncherOverlayContainer != null) {
4633 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4634 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004635 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004636 }
4637 }, ACTIVITY_START_DELAY);
4638 } else {
4639 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004640 if (mLauncherOverlayContainer != null) {
4641 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4642 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004643 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004644 }
4645 changeWallpaperVisiblity(true);
4646 }
4647
4648 private void markIntroScreenDismissed() {
4649 SharedPreferences.Editor editor = mSharedPrefs.edit();
4650 editor.putBoolean(INTRO_SCREEN_DISMISSED, true);
4651 editor.apply();
4652 }
4653
Adam Cohen091440a2015-03-18 14:16:05 -07004654 @Thunk void showFirstRunClings() {
Sunny Goyal88d60f12014-09-08 03:47:29 -07004655 // The two first run cling paths are mutually exclusive, if the launcher is preinstalled
4656 // on the device, then we always show the first run cling experience (or if there is no
4657 // launcher2). Otherwise, we prompt the user upon started for migration
4658 LauncherClings launcherClings = new LauncherClings(this);
4659 if (launcherClings.shouldShowFirstRunOrMigrationClings()) {
Sunny Goyal639e9062015-08-19 19:17:06 -07004660 mClings = launcherClings;
Sunny Goyal88d60f12014-09-08 03:47:29 -07004661 if (mModel.canMigrateFromOldLauncherDb(this)) {
4662 launcherClings.showMigrationCling();
4663 } else {
Sunny Goyalaf0628f2014-09-19 10:14:48 -07004664 launcherClings.showLongPressCling(true);
Sunny Goyal88d60f12014-09-08 03:47:29 -07004665 }
4666 }
4667 }
4668
Winson Chunga6945242014-01-08 14:04:34 -08004669 void showWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004670 if (mWorkspace != null) mWorkspace.setAlpha(1f);
4671 if (mHotseat != null) mHotseat.setAlpha(1f);
4672 if (mPageIndicators != null) mPageIndicators.setAlpha(1f);
Winson Chung006ee262015-08-03 14:40:11 -07004673 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4674 SearchDropTargetBar.State.SEARCH_BAR, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004675 }
4676
4677 void hideWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004678 if (mWorkspace != null) mWorkspace.setAlpha(0f);
4679 if (mHotseat != null) mHotseat.setAlpha(0f);
4680 if (mPageIndicators != null) mPageIndicators.setAlpha(0f);
Winson Chung006ee262015-08-03 14:40:11 -07004681 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4682 SearchDropTargetBar.State.INVISIBLE, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004683 }
4684
Winson Chung5ffd51d2015-06-25 11:36:50 -07004685 // TODO: These method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004686 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Mathew Inwood72fbec12013-11-19 15:45:07 +00004687 public ItemInfo createAppDragInfo(Intent appLaunchIntent) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004688 // Called from search suggestion
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004689 UserHandleCompat user = null;
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004690 if (Utilities.ATLEAST_LOLLIPOP) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004691 UserHandle userHandle = appLaunchIntent.getParcelableExtra(Intent.EXTRA_USER);
4692 if (userHandle != null) {
4693 user = UserHandleCompat.fromUser(userHandle);
4694 }
4695 }
4696 return createAppDragInfo(appLaunchIntent, user);
Winson Chung5ffd51d2015-06-25 11:36:50 -07004697 }
4698
4699 // TODO: This method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004700 public ItemInfo createAppDragInfo(Intent intent, UserHandleCompat user) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004701 if (user == null) {
4702 user = UserHandleCompat.myUserHandle();
4703 }
4704
4705 // Called from search suggestion, add the profile extra to the intent to ensure that we
4706 // can launch it correctly
Kenny Guyed131872014-04-30 03:02:21 +01004707 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004708 LauncherActivityInfoCompat activityInfo = launcherApps.resolveActivity(intent, user);
Kenny Guyed131872014-04-30 03:02:21 +01004709 if (activityInfo == null) {
Mathew Inwood72fbec12013-11-19 15:45:07 +00004710 return null;
4711 }
Winson Chung5ffd51d2015-06-25 11:36:50 -07004712 return new AppInfo(this, activityInfo, user, mIconCache);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004713 }
4714
Winson Chung5ffd51d2015-06-25 11:36:50 -07004715 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004716 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4717 Bitmap icon) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004718 return new ShortcutInfo(shortcutIntent, caption, caption, icon,
Kenny Guyed131872014-04-30 03:02:21 +01004719 UserHandleCompat.myUserHandle());
4720 }
4721
Winson Chung5ffd51d2015-06-25 11:36:50 -07004722 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004723 public void startDrag(View dragView, ItemInfo dragInfo, DragSource source) {
4724 dragView.setTag(dragInfo);
Winson Chungbabb53e2014-04-14 17:12:49 -07004725 mWorkspace.onExternalDragStartedWithItem(dragView);
4726 mWorkspace.beginExternalDragShared(dragView, source);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004727 }
4728
Winson Chung5ffd51d2015-06-25 11:36:50 -07004729 protected void moveWorkspaceToDefaultScreen() {
4730 mWorkspace.moveToDefaultScreen(false);
4731 }
4732
Anjali Koppalf5d29132014-02-28 13:33:27 -08004733 @Override
4734 public void onPageSwitch(View newPage, int newPageIndex) {
Adam Cohen9211d422014-10-07 18:14:53 -07004735 if (mLauncherCallbacks != null) {
4736 mLauncherCallbacks.onPageSwitch(newPage, newPageIndex);
4737 }
Anjali Koppalf5d29132014-02-28 13:33:27 -08004738 }
4739
Winson Chung80baf5a2010-08-09 16:03:15 -07004740 /**
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004741 * Returns a FastBitmapDrawable with the icon, accurately sized.
4742 */
4743 public FastBitmapDrawable createIconDrawable(Bitmap icon) {
4744 FastBitmapDrawable d = new FastBitmapDrawable(icon);
4745 d.setFilterBitmap(true);
4746 resizeIconDrawable(d);
4747 return d;
4748 }
4749
4750 /**
4751 * Resizes an icon drawable to the correct icon size.
4752 */
Winson5fbe0742015-09-30 15:33:00 -07004753 public Drawable resizeIconDrawable(Drawable icon) {
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004754 icon.setBounds(0, 0, mDeviceProfile.iconSizePx, mDeviceProfile.iconSizePx);
Winson5fbe0742015-09-30 15:33:00 -07004755 return icon;
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004756 }
4757
4758 /**
Joe Onoratobe386092009-11-17 17:32:16 -08004759 * Prints out out state for debugging.
4760 */
4761 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04004762 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08004763 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08004764 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
4765 Log.d(TAG, "mRestoring=" + mRestoring);
4766 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
4767 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004768 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08004769 mModel.dumpState();
Hyunyoung Song3f471442015-04-08 19:01:34 -07004770 // TODO(hyunyoungs): add mWidgetsView.dumpState(); or mWidgetsModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07004771
Daniel Sandler325dc232013-06-05 22:57:57 -04004772 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08004773 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004774
4775 @Override
4776 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
4777 super.dump(prefix, fd, writer, args);
Adam Cohen4caf2982013-08-20 18:54:31 -07004778 synchronized (sDumpLogs) {
4779 writer.println(" ");
4780 writer.println("Debug logs: ");
4781 for (int i = 0; i < sDumpLogs.size(); i++) {
4782 writer.println(" " + sDumpLogs.get(i));
4783 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004784 }
Adam Cohen9211d422014-10-07 18:14:53 -07004785 if (mLauncherCallbacks != null) {
4786 mLauncherCallbacks.dump(prefix, fd, writer, args);
4787 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004788 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004789
4790 public static void dumpDebugLogsToConsole() {
Winson Chungede41292013-09-19 16:27:36 -07004791 if (DEBUG_DUMP_LOG) {
4792 synchronized (sDumpLogs) {
4793 Log.d(TAG, "");
4794 Log.d(TAG, "*********************");
4795 Log.d(TAG, "Launcher debug logs: ");
4796 for (int i = 0; i < sDumpLogs.size(); i++) {
4797 Log.d(TAG, " " + sDumpLogs.get(i));
4798 }
4799 Log.d(TAG, "*********************");
4800 Log.d(TAG, "");
Adam Cohen4caf2982013-08-20 18:54:31 -07004801 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004802 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004803 }
4804
4805 public static void addDumpLog(String tag, String log, boolean debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004806 addDumpLog(tag, log, null, debugLog);
4807 }
4808
4809 public static void addDumpLog(String tag, String log, Exception e, boolean debugLog) {
Adam Cohen4caf2982013-08-20 18:54:31 -07004810 if (debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004811 if (e != null) {
4812 Log.d(tag, log, e);
4813 } else {
4814 Log.d(tag, log);
4815 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004816 }
Winson Chungede41292013-09-19 16:27:36 -07004817 if (DEBUG_DUMP_LOG) {
4818 sDateStamp.setTime(System.currentTimeMillis());
4819 synchronized (sDumpLogs) {
Dan Sandler295ae182013-12-10 16:05:47 -05004820 sDumpLogs.add(sDateFormat.format(sDateStamp) + ": " + tag + ", " + log
4821 + (e == null ? "" : (", Exception: " + e)));
Adam Cohen4caf2982013-08-20 18:54:31 -07004822 }
Winson Chungede41292013-09-19 16:27:36 -07004823 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004824 }
4825
Adam Cohen59400422014-03-05 18:07:04 -08004826 public static CustomAppWidget getCustomAppWidget(String name) {
4827 return sCustomAppWidgets.get(name);
4828 }
4829
4830 public static HashMap<String, CustomAppWidget> getCustomAppWidgets() {
4831 return sCustomAppWidgets;
4832 }
4833
Winson Chungede41292013-09-19 16:27:36 -07004834 public void dumpLogsToLocalData() {
4835 if (DEBUG_DUMP_LOG) {
Michael Jurka43467462013-11-14 12:03:58 +01004836 new AsyncTask<Void, Void, Void>() {
4837 public Void doInBackground(Void ... args) {
Winson Chungede41292013-09-19 16:27:36 -07004838 boolean success = false;
4839 sDateStamp.setTime(sRunStart);
4840 String FILENAME = sDateStamp.getMonth() + "-"
4841 + sDateStamp.getDay() + "_"
4842 + sDateStamp.getHours() + "-"
4843 + sDateStamp.getMinutes() + "_"
4844 + sDateStamp.getSeconds() + ".txt";
4845
4846 FileOutputStream fos = null;
4847 File outFile = null;
4848 try {
4849 outFile = new File(getFilesDir(), FILENAME);
4850 outFile.createNewFile();
4851 fos = new FileOutputStream(outFile);
4852 } catch (Exception e) {
4853 e.printStackTrace();
4854 }
4855 if (fos != null) {
4856 PrintWriter writer = new PrintWriter(fos);
4857
4858 writer.println(" ");
4859 writer.println("Debug logs: ");
4860 synchronized (sDumpLogs) {
4861 for (int i = 0; i < sDumpLogs.size(); i++) {
4862 writer.println(" " + sDumpLogs.get(i));
4863 }
4864 }
4865 writer.close();
4866 }
4867 try {
4868 if (fos != null) {
4869 fos.close();
4870 success = true;
4871 }
4872 } catch (IOException e) {
4873 e.printStackTrace();
4874 }
Michael Jurka43467462013-11-14 12:03:58 +01004875 return null;
Winson Chungede41292013-09-19 16:27:36 -07004876 }
Sunny Goyal8ac727b2015-09-23 15:38:09 -07004877 }.executeOnExecutor(Utilities.THREAD_POOL_EXECUTOR);
Adam Cohen4caf2982013-08-20 18:54:31 -07004878 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004879 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004880}
Michael Jurka2763be32011-02-24 11:19:57 -08004881
Dan Sandlerd5024042014-01-09 15:01:33 -05004882interface DebugIntents {
4883 static final String DELETE_DATABASE = "com.android.launcher3.action.DELETE_DATABASE";
4884 static final String MIGRATE_DATABASE = "com.android.launcher3.action.MIGRATE_DATABASE";
Adam Cohen8b5b05b2014-01-10 21:42:39 +00004885}