blob: edb7c14bc9b78c854b69ff7d507934f23db8cb16 [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;
Sunny Goyal29538332016-02-18 09:10:19 -0800123import java.util.Collections;
Adam Cohen4caf2982013-08-20 18:54:31 -0700124import java.util.Date;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700125import java.util.HashMap;
Sunny Goyal4390ace2014-10-13 11:33:11 -0700126import java.util.HashSet;
Michael Jurkad7c28052012-04-27 15:43:36 -0700127import java.util.List;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700128
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800129/**
130 * Default launcher application.
131 */
Bjorn Bringertc459e522013-06-07 19:36:01 +0100132public class Launcher extends Activity
Michael Jurka0e260592010-06-30 17:07:39 -0700133 implements View.OnClickListener, OnLongClickListener, LauncherModel.Callbacks,
Winson Chung006ee262015-08-03 14:40:11 -0700134 View.OnTouchListener, PageSwitchListener, LauncherProviderChangeListener {
Hyunyoung Song4e8fb912015-04-11 15:44:32 -0700135 static final String TAG = "Launcher";
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700136 static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800137
Daniel Sandlerf061f822013-06-27 13:59:36 -0400138 static final boolean PROFILE_STARTUP = false;
Sunny Goyalc84e6e12015-10-02 12:48:37 -0700139 static final boolean DEBUG_WIDGETS = false;
Winson Chunga2413752012-04-03 14:22:34 -0700140 static final boolean DEBUG_STRICT_MODE = false;
Daniel Sandlerf061f822013-06-27 13:59:36 -0400141 static final boolean DEBUG_RESUME_TIME = false;
Winson Chungede41292013-09-19 16:27:36 -0700142 static final boolean DEBUG_DUMP_LOG = false;
Romain Guy6fefcf12009-06-11 13:07:43 -0700143
Dan Sandlerd5024042014-01-09 15:01:33 -0500144 static final boolean ENABLE_DEBUG_INTENTS = false; // allow DebugIntents to run
145
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800146 private static final int REQUEST_CREATE_SHORTCUT = 1;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700147 private static final int REQUEST_CREATE_APPWIDGET = 5;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700148 private static final int REQUEST_PICK_APPWIDGET = 9;
Mike Clerona0618e42009-10-22 13:55:21 -0700149 private static final int REQUEST_PICK_WALLPAPER = 10;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800150
Michael Jurka8b805b12012-04-18 14:23:14 -0700151 private static final int REQUEST_BIND_APPWIDGET = 11;
Sunny Goyalff572272014-07-23 13:58:07 -0700152 private static final int REQUEST_RECONFIGURE_APPWIDGET = 12;
Michael Jurka8b805b12012-04-18 14:23:14 -0700153
Sunny Goyal28c6b962015-10-12 11:42:05 -0700154 private static final int REQUEST_PERMISSION_CALL_PHONE = 13;
155
Sunny Goyal4a6c6f32015-05-19 12:36:46 -0700156 private static final int WORKSPACE_BACKGROUND_GRADIENT = 0;
157 private static final int WORKSPACE_BACKGROUND_TRANSPARENT = 1;
158 private static final int WORKSPACE_BACKGROUND_BLACK = 2;
159
Sunny Goyal5a1f53b2015-05-27 10:24:24 -0700160 private static final float BOUNCE_ANIMATION_TENSION = 1.3f;
161
Mathew Inwood876a8462013-06-14 14:12:41 +0100162 /**
163 * IntentStarter uses request codes starting with this. This must be greater than all activity
164 * request codes used internally.
165 */
166 protected static final int REQUEST_LAST = 100;
167
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800168 static final int SCREEN_COUNT = 5;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800169
Michael Jurka0a457bf2012-11-19 14:05:05 -0800170 // To turn on these properties, type
171 // adb shell setprop log.tag.PROPERTY_NAME [VERBOSE | SUPPRESS]
Michael Jurka0a457bf2012-11-19 14:05:05 -0800172 static final String DUMP_STATE_PROPERTY = "launcher_dump_state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800173
Winson Chung2672ff92012-05-04 16:22:30 -0700174 // The Intent extra that defines whether to ignore the launch animation
175 static final String INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION =
Daniel Sandler325dc232013-06-05 22:57:57 -0400176 "com.android.launcher3.intent.extra.shortcut.INGORE_LAUNCH_ANIMATION";
Winson Chung2672ff92012-05-04 16:22:30 -0700177
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800178 // Type: int
179 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
Michael Jurka883f55b2010-10-21 15:47:14 -0700180 // Type: int
181 private static final String RUNTIME_STATE = "launcher.state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800182 // Type: int
Winson Chung3d503fb2011-07-13 17:25:49 -0700183 private static final String RUNTIME_STATE_PENDING_ADD_CONTAINER = "launcher.add_container";
184 // Type: int
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800185 private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
186 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700187 private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cell_x";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800188 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700189 private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cell_y";
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700190 // Type: int
191 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_X = "launcher.add_span_x";
192 // Type: int
193 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_Y = "launcher.add_span_y";
194 // Type: parcelable
195 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_INFO = "launcher.add_widget_info";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000196 // Type: parcelable
Adam Cohen4637b5a2013-11-04 18:21:24 -0800197 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_ID = "launcher.add_widget_id";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800198
Adam Cohen432609a2014-03-13 17:03:22 -0700199 static final String INTRO_SCREEN_DISMISSED = "launcher.intro_screen_dismissed";
Adam Cohenb54a5982014-01-08 15:21:04 -0800200 static final String FIRST_RUN_ACTIVITY_DISPLAYED = "launcher.first_run_activity_displayed";
201
Adam Cohen3ed316a2014-07-23 18:21:20 -0700202 static final String FIRST_LOAD_COMPLETE = "launcher.first_load_complete";
203 static final String ACTION_FIRST_LOAD_COMPLETE =
204 "com.android.launcher3.action.FIRST_LOAD_COMPLETE";
205
Sunny Goyal594d76d2014-11-06 10:12:54 -0800206 private static final String QSB_WIDGET_ID = "qsb_widget_id";
207 private static final String QSB_WIDGET_PROVIDER = "qsb_widget_provider";
208
Winson Chunga6945242014-01-08 14:04:34 -0800209 public static final String USER_HAS_MIGRATED = "launcher.user_migrated_from_old_data";
210
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700211 /** The different states that Launcher can be in. */
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700212 enum State { NONE, WORKSPACE, APPS, APPS_SPRING_LOADED, WIDGETS, WIDGETS_SPRING_LOADED }
213
Adam Cohen091440a2015-03-18 14:16:05 -0700214 @Thunk State mState = State.WORKSPACE;
Adam Cohen091440a2015-03-18 14:16:05 -0700215 @Thunk LauncherStateTransitionAnimation mStateTransitionAnimation;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700216
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700217 private boolean mIsSafeModeEnabled;
218
Adam Cohenc2d6e892014-10-16 09:49:24 -0700219 LauncherOverlayCallbacks mLauncherOverlayCallbacks = new LauncherOverlayCallbacksImpl();
220 LauncherOverlay mLauncherOverlay;
Adam Cohena6d04922014-10-23 17:28:30 -0700221 InsettableFrameLayout mLauncherOverlayContainer;
Adam Cohenc2d6e892014-10-16 09:49:24 -0700222
Joe Onorato9c1289c2009-08-17 11:03:03 -0400223 static final int APPWIDGET_HOST_ID = 1024;
Adam Cohenad4e15c2013-10-17 16:21:35 -0700224 public static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
225 private static final int ON_ACTIVITY_RESULT_ANIMATION_DELAY = 500;
Adam Cohen646fdf72014-04-08 16:59:36 -0700226 private static final int ACTIVITY_START_DELAY = 1000;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800227
Winson Chunga2413752012-04-03 14:22:34 -0700228 // How long to wait before the new-shortcut animation automatically pans the workspace
Winson Chung94d67682013-09-25 16:29:40 -0700229 private static int NEW_APPS_PAGE_MOVE_DELAY = 500;
230 private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 5;
Adam Cohen091440a2015-03-18 14:16:05 -0700231 @Thunk static int NEW_APPS_ANIMATION_DELAY = 500;
Winson Chunga2413752012-04-03 14:22:34 -0700232
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800233 private final BroadcastReceiver mCloseSystemDialogsReceiver
234 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800235
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800236 private LayoutInflater mInflater;
237
Adam Cohen091440a2015-03-18 14:16:05 -0700238 @Thunk Workspace mWorkspace;
Craig Mautner360310b2012-10-26 15:13:08 -0700239 private View mLauncherView;
Winson Chunga6945242014-01-08 14:04:34 -0800240 private View mPageIndicators;
Adam Cohen091440a2015-03-18 14:16:05 -0700241 @Thunk DragLayer mDragLayer;
Michael Jurkab737ee62011-11-15 15:57:22 -0800242 private DragController mDragController;
Sunny Goyald3060552015-06-25 19:35:49 -0700243
244 public View mWeightWatcher;
Romain Guycbb89e42009-06-08 15:52:54 -0700245
Sunny Goyalffe83f12014-08-14 17:39:34 -0700246 private AppWidgetManagerCompat mAppWidgetManager;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700247 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700248
Adam Cohen091440a2015-03-18 14:16:05 -0700249 @Thunk ItemInfo mPendingAddInfo = new ItemInfo();
Adam Cohen59400422014-03-05 18:07:04 -0800250 private LauncherAppWidgetProviderInfo mPendingAddWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800251 private int mPendingAddWidgetId = -1;
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700252
Michael Jurka0280c3b2010-09-17 15:00:07 -0700253 private int[] mTmpAddItemCellCoordinates = new int[2];
254
Sunny Goyal316490e2015-06-02 09:38:28 -0700255 @Thunk Hotseat mHotseat;
Jorim Jaggid017f882014-01-14 17:08:48 -0800256 private ViewGroup mOverviewPanel;
Adam Cohenf358a4b2013-07-23 16:47:31 -0700257
Michael Jurka838a4ca2011-02-07 13:33:06 -0800258 private View mAllAppsButton;
Hyunyoung Song98ff38a2015-07-10 17:50:13 -0700259 private View mWidgetsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700260
Winson Chungc51db6a2011-10-05 11:44:49 -0700261 private SearchDropTargetBar mSearchDropTargetBar;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700262
263 // Main container view for the all apps screen.
Winson Chung5f4e0fd2015-05-22 11:12:27 -0700264 @Thunk AllAppsContainerView mAppsView;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700265
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700266 // Main container view and the model for the widget tray screen.
267 @Thunk WidgetsContainerView mWidgetsView;
268 @Thunk WidgetsModel mWidgetsModel;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700269
Winson Chungf0ea4d32011-06-06 14:27:16 -0700270 private boolean mAutoAdvanceRunning = false;
Sunny Goyal594d76d2014-11-06 10:12:54 -0800271 private AppWidgetHostView mQsb;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800272
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800273 private Bundle mSavedState;
Winson Chung4a2afa32012-07-19 14:53:05 -0700274 // We set the state in both onCreate and then onNewIntent in some cases, which causes both
275 // scroll issues (because the workspace may not have been measured yet) and extra work.
276 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
277 private State mOnResumeState = State.NONE;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800278
279 private SpannableStringBuilder mDefaultKeySsb = null;
280
Adam Cohen091440a2015-03-18 14:16:05 -0700281 @Thunk boolean mWorkspaceLoading = true;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400282
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800283 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800284 private boolean mRestoring;
285 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700286 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800287
Michael Jurka1e2f4652013-07-08 18:03:46 -0700288 private ArrayList<Runnable> mBindOnResumeCallbacks = new ArrayList<Runnable>();
Michael Jurka7607c2f2013-04-03 14:33:19 -0700289 private ArrayList<Runnable> mOnResumeCallbacks = new ArrayList<Runnable>();
290
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800291 private Bundle mSavedInstanceState;
292
Joe Onorato9c1289c2009-08-17 11:03:03 -0400293 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800294 private IconCache mIconCache;
Adam Cohen091440a2015-03-18 14:16:05 -0700295 @Thunk boolean mUserPresent = true;
Adam Cohend113e0c2010-11-11 10:48:05 -0800296 private boolean mVisible = false;
Adam Cohened307df2013-10-02 09:37:31 -0700297 private boolean mHasFocus = false;
Adam Cohend113e0c2010-11-11 10:48:05 -0800298 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400299
Sunny Goyal639e9062015-08-19 19:17:06 -0700300 private LauncherClings mClings;
301
Sunny Goyale2df0622015-04-24 11:27:00 -0700302 private static LongArrayMap<FolderInfo> sFolders = new LongArrayMap<>();
Romain Guycbb89e42009-06-08 15:52:54 -0700303
Adam Cohen61f560d2013-09-30 15:58:20 -0700304 private View.OnTouchListener mHapticFeedbackTouchListener;
305
Adam Cohended9f8d2010-11-03 13:25:16 -0700306 // Related to the auto-advancing of widgets
307 private final int ADVANCE_MSG = 1;
308 private final int mAdvanceInterval = 20000;
309 private final int mAdvanceStagger = 250;
310 private long mAutoAdvanceSentTime;
311 private long mAutoAdvanceTimeLeft = -1;
Adam Cohen091440a2015-03-18 14:16:05 -0700312 @Thunk HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
Adam Cohended9f8d2010-11-03 13:25:16 -0700313 new HashMap<View, AppWidgetProviderInfo>();
314
Winson Chung400438b2011-01-16 17:53:48 -0800315 // Determines how long to wait after a rotation before restoring the screen orientation to
316 // match the sensor state.
317 private final int mRestoreScreenOrientationDelay = 500;
318
Adam Cohen091440a2015-03-18 14:16:05 -0700319 @Thunk Drawable mWorkspaceBackgroundDrawable;
Craig Mautner360310b2012-10-26 15:13:08 -0700320
Adam Cohen1462de32012-07-24 22:34:36 -0700321 private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700322 private static final boolean DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE = false;
Adam Cohen1462de32012-07-24 22:34:36 -0700323
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700324 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
Adam Cohen4caf2982013-08-20 18:54:31 -0700325 static Date sDateStamp = new Date();
326 static DateFormat sDateFormat =
327 DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
328 static long sRunStart = System.currentTimeMillis();
329 static final String CORRUPTION_EMAIL_SENT_KEY = "corruptionEmailSent";
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700330
Winson Chung46353de2012-02-16 14:05:10 -0800331 // We only want to get the SharedPreferences once since it does an FS stat each time we get
332 // it from the context.
333 private SharedPreferences mSharedPrefs;
334
Winson Chungf0c6ae02012-03-21 16:10:31 -0700335 // Holds the page that we need to animate to, and the icon views that we need to animate up
336 // when we scroll to that page on resume.
Adam Cohen091440a2015-03-18 14:16:05 -0700337 @Thunk ImageView mFolderIconImageView;
Adam Cohen268c4752012-06-06 17:47:33 -0700338 private Bitmap mFolderIconBitmap;
339 private Canvas mFolderIconCanvas;
340 private Rect mRectForFolderAnimation = new Rect();
Adam Cohen2801caf2011-05-13 20:57:39 -0700341
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700342 private DeviceProfile mDeviceProfile;
343
Adam Cohen4b66bf32015-09-18 12:15:19 -0700344 private boolean mMoveToDefaultScreenFromNewIntent;
345
Winson Chung13eb5272015-05-11 16:30:13 -0700346 // This is set to the view that launched the activity that navigated the user away from
347 // launcher. Since there is no callback for when the activity has finished launching, enable
348 // the press state and keep this reference to reset the press state when we return to launcher.
Michael Jurkaddd62e92011-02-16 17:49:14 -0800349 private BubbleTextView mWaitingForResume;
350
Adam Cohen59400422014-03-05 18:07:04 -0800351 protected static HashMap<String, CustomAppWidget> sCustomAppWidgets =
352 new HashMap<String, CustomAppWidget>();
353
Adam Cohen59400422014-03-05 18:07:04 -0800354 static {
Sunny Goyald3060552015-06-25 19:35:49 -0700355 if (TestingUtils.ENABLE_CUSTOM_WIDGET_TEST) {
356 TestingUtils.addDummyWidget(sCustomAppWidgets);
Adam Cohen59400422014-03-05 18:07:04 -0800357 }
358 }
359
Adam Cohen091440a2015-03-18 14:16:05 -0700360 @Thunk Runnable mBuildLayersRunnable = new Runnable() {
Michael Jurkac1f5d262011-09-30 19:32:27 -0700361 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700362 if (mWorkspace != null) {
363 mWorkspace.buildPageHardwareLayers();
364 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700365 }
366 };
367
Adam Cohendb364c32014-05-20 14:23:40 -0700368 private static PendingAddArguments sPendingAddItem;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800369
Adam Cohen091440a2015-03-18 14:16:05 -0700370 @Thunk static class PendingAddArguments {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800371 int requestCode;
372 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700373 long container;
Adam Cohendcd297f2013-06-18 13:13:40 -0700374 long screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800375 int cellX;
376 int cellY;
Adam Cohendb364c32014-05-20 14:23:40 -0700377 int appWidgetId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800378 }
379
Daniel Sandlerff02d492013-08-05 02:12:05 -0400380 private Stats mStats;
Sunny Goyaldcbcc862014-08-12 15:58:36 -0700381 FocusIndicatorView mFocusHandler;
Sunny Goyal7779d622015-06-11 16:18:39 -0700382 private boolean mRotationEnabled = false;
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400383
384 @Thunk void setOrientation() {
385 if (mRotationEnabled) {
386 unlockScreenOrientation(true);
387 } else {
388 setRequestedOrientation(
389 ActivityInfo.SCREEN_ORIENTATION_NOSENSOR);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700390 }
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400391 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700392
Sunny Goyal7779d622015-06-11 16:18:39 -0700393 private Runnable mUpdateOrientationRunnable = new Runnable() {
394 public void run() {
395 setOrientation();
396 }
397 };
398
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800399 @Override
400 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700401 if (DEBUG_STRICT_MODE) {
402 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
403 .detectDiskReads()
404 .detectDiskWrites()
405 .detectNetwork() // or .detectAll() for all detectable problems
406 .penaltyLog()
407 .build());
408 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
409 .detectLeakedSqlLiteObjects()
410 .detectLeakedClosableObjects()
411 .penaltyLog()
412 .penaltyDeath()
413 .build());
414 }
415
Adam Cohen9211d422014-10-07 18:14:53 -0700416 if (mLauncherCallbacks != null) {
417 mLauncherCallbacks.preOnCreate();
418 }
419
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800420 super.onCreate(savedInstanceState);
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400421
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400422 LauncherAppState app = LauncherAppState.getInstance();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700423
Adam Cohen2e6da152015-05-06 11:42:25 -0700424 // Load configuration-specific DeviceProfile
Sunny Goyalc6205602015-05-21 20:46:33 -0700425 mDeviceProfile = getResources().getConfiguration().orientation
426 == Configuration.ORIENTATION_LANDSCAPE ?
Tony Wickham3a3517f2015-10-06 11:27:04 -0700427 app.getInvariantDeviceProfile().landscapeProfile
428 : app.getInvariantDeviceProfile().portraitProfile;
Sunny Goyalc6205602015-05-21 20:46:33 -0700429
Sunny Goyalf7258242015-10-19 16:59:07 -0700430 mSharedPrefs = Utilities.getPrefs(this);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700431 mIsSafeModeEnabled = getPackageManager().isSafeMode();
Joe Onorato0589f0f2010-02-08 13:44:00 -0800432 mModel = app.setLauncher(this);
433 mIconCache = app.getIconCache();
Adam Cohen2e6da152015-05-06 11:42:25 -0700434
Joe Onorato41a12d22009-10-31 18:30:00 -0400435 mDragController = new DragController(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800436 mInflater = getLayoutInflater();
Winson Chung006ee262015-08-03 14:40:11 -0700437 mStateTransitionAnimation = new LauncherStateTransitionAnimation(this);
Romain Guycbb89e42009-06-08 15:52:54 -0700438
Daniel Sandlerff02d492013-08-05 02:12:05 -0400439 mStats = new Stats(this);
440
Sunny Goyalffe83f12014-08-14 17:39:34 -0700441 mAppWidgetManager = AppWidgetManagerCompat.getInstance(this);
Adam Cohen53805212013-10-01 10:39:23 -0700442
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700443 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
444 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700445
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700446 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
447 // this also ensures that any synchronous binding below doesn't re-trigger another
448 // LauncherModel load.
449 mPaused = false;
450
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800451 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200452 android.os.Debug.startMethodTracing(
453 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800454 }
455
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800456 setContentView(R.layout.launcher);
Michael Jurka7267fa52013-09-26 15:29:57 -0700457
Tony Wickhameef44322015-10-20 13:24:36 -0700458 app.getInvariantDeviceProfile().landscapeProfile.setSearchBarHeight(getSearchBarHeight());
459 app.getInvariantDeviceProfile().portraitProfile.setSearchBarHeight(getSearchBarHeight());
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800460 setupViews();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700461 mDeviceProfile.layout(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800462
Joe Onorato7c312c12009-08-13 21:36:53 -0700463 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700464
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800465 mSavedState = savedInstanceState;
466 restoreState(mSavedState);
467
468 if (PROFILE_STARTUP) {
469 android.os.Debug.stopMethodTracing();
470 }
471
472 if (!mRestoring) {
Adam Cohendb78dc82014-06-19 14:50:51 -0700473 if (DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700474 // If the user leaves launcher, then we should just load items asynchronously when
475 // they return.
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700476 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Winson Chung4a2afa32012-07-19 14:53:05 -0700477 } else {
478 // We only load the page synchronously if the user rotates (or triggers a
479 // configuration change) while launcher is in the foreground
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700480 mModel.startLoader(mWorkspace.getRestorePage());
Winson Chung4a2afa32012-07-19 14:53:05 -0700481 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800482 }
483
484 // For handling default keys
485 mDefaultKeySsb = new SpannableStringBuilder();
486 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800487
488 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
489 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800490
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700491 mRotationEnabled = Utilities.isRotationAllowedForDevice(getApplicationContext());
492 // In case we are on a device with locked rotation, we should look at preferences to check
493 // if the user has specifically allowed rotation.
494 if (!mRotationEnabled) {
Rahul Chaturvedie863fed2015-06-15 14:09:42 -0400495 mRotationEnabled = Utilities.isAllowRotationPrefEnabled(getApplicationContext(), false);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700496 }
497
498 // On large interfaces, or on devices that a user has specifically enabled screen rotation,
499 // we want the screen to auto-rotate based on the current orientation
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400500 setOrientation();
Winson Chungaf40f202013-09-18 18:26:31 -0700501
Adam Cohen9211d422014-10-07 18:14:53 -0700502 if (mLauncherCallbacks != null) {
503 mLauncherCallbacks.onCreate(savedInstanceState);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700504 if (mLauncherCallbacks.hasLauncherOverlay()) {
505 ViewStub stub = (ViewStub) findViewById(R.id.launcher_overlay_stub);
Adam Cohena6d04922014-10-23 17:28:30 -0700506 mLauncherOverlayContainer = (InsettableFrameLayout) stub.inflate();
507 mLauncherOverlay = mLauncherCallbacks.setLauncherOverlayView(
508 mLauncherOverlayContainer, mLauncherOverlayCallbacks);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700509 mWorkspace.setLauncherOverlay(mLauncherOverlay);
510 }
Adam Cohen9211d422014-10-07 18:14:53 -0700511 }
Adam Cohenc3e12c72014-10-31 16:15:36 -0700512
513 if (shouldShowIntroScreen()) {
514 showIntroScreen();
515 } else {
516 showFirstRunActivity();
517 showFirstRunClings();
518 }
Adam Cohen9211d422014-10-07 18:14:53 -0700519 }
520
Sunny Goyal7779d622015-06-11 16:18:39 -0700521 @Override
522 public void onSettingsChanged(String settings, boolean value) {
523 if (Utilities.ALLOW_ROTATION_PREFERENCE_KEY.equals(settings)) {
524 mRotationEnabled = value;
525 if (!waitUntilResume(mUpdateOrientationRunnable, true)) {
526 mUpdateOrientationRunnable.run();
527 }
528 }
529 }
530
Adam Cohen9211d422014-10-07 18:14:53 -0700531 private LauncherCallbacks mLauncherCallbacks;
532
533 public void onPostCreate(Bundle savedInstanceState) {
534 super.onPostCreate(savedInstanceState);
535 if (mLauncherCallbacks != null) {
536 mLauncherCallbacks.onPostCreate(savedInstanceState);
537 }
538 }
539
540 public boolean setLauncherCallbacks(LauncherCallbacks callbacks) {
541 mLauncherCallbacks = callbacks;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700542 mLauncherCallbacks.setLauncherSearchCallback(new Launcher.LauncherSearchCallbacks() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700543 private boolean mWorkspaceImportanceStored = false;
544 private boolean mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700545 private int mWorkspaceImportanceForAccessibility =
546 View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
547 private int mHotseatImportanceForAccessibility = View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
548
549 @Override
550 public void onSearchOverlayOpened() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700551 if (mWorkspaceImportanceStored || mHotseatImportanceStored) {
Jun Mukai8af0cd82015-05-12 12:32:12 -0700552 return;
553 }
554 // The underlying workspace and hotseat are temporarily suppressed by the search
555 // overlay. So they sholudn't be accessible.
Jun Mukaie9819e62015-06-17 10:58:59 -0700556 if (mWorkspace != null) {
557 mWorkspaceImportanceForAccessibility =
558 mWorkspace.getImportantForAccessibility();
559 mWorkspace.setImportantForAccessibility(
560 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
561 mWorkspaceImportanceStored = true;
562 }
563 if (mHotseat != null) {
564 mHotseatImportanceForAccessibility = mHotseat.getImportantForAccessibility();
565 mHotseat.setImportantForAccessibility(
566 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
567 mHotseatImportanceStored = true;
568 }
Jun Mukai8af0cd82015-05-12 12:32:12 -0700569 }
570
571 @Override
572 public void onSearchOverlayClosed() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700573 if (mWorkspaceImportanceStored && mWorkspace != null) {
574 mWorkspace.setImportantForAccessibility(mWorkspaceImportanceForAccessibility);
575 }
576 if (mHotseatImportanceStored && mHotseat != null) {
577 mHotseat.setImportantForAccessibility(mHotseatImportanceForAccessibility);
578 }
579 mWorkspaceImportanceStored = false;
580 mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700581 }
582 });
Adam Cohen9211d422014-10-07 18:14:53 -0700583 return true;
Adam Cohenf9426d52012-06-04 17:26:21 -0700584 }
585
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700586 @Override
Adam Cohen9211d422014-10-07 18:14:53 -0700587 public void onLauncherProviderChange() {
588 if (mLauncherCallbacks != null) {
589 mLauncherCallbacks.onLauncherProviderChange();
590 }
591 }
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700592
Winson Chungef7f8742015-06-04 17:18:17 -0700593 /**
594 * Updates the bounds of all the overlays to match the new fixed bounds.
595 */
596 public void updateOverlayBounds(Rect newBounds) {
597 mAppsView.setSearchBarBounds(newBounds);
598 mWidgetsView.setSearchBarBounds(newBounds);
599 }
600
Adam Cohen9211d422014-10-07 18:14:53 -0700601 /** To be overridden by subclasses to hint to Launcher that we have custom content */
Winson Chung98ca0f72013-07-29 12:58:51 -0700602 protected boolean hasCustomContentToLeft() {
Adam Cohen9211d422014-10-07 18:14:53 -0700603 if (mLauncherCallbacks != null) {
604 return mLauncherCallbacks.hasCustomContentToLeft();
605 }
Winson Chung98ca0f72013-07-29 12:58:51 -0700606 return false;
607 }
608
Dave Hawkeya8881582013-09-17 15:55:33 -0600609 /**
Derek Prothrodadd9842014-01-17 13:43:50 -0500610 * To be overridden by subclasses to populate the custom content container and call
Dave Hawkeya8881582013-09-17 15:55:33 -0600611 * {@link #addToCustomContentPage}. This will only be invoked if
612 * {@link #hasCustomContentToLeft()} is {@code true}.
613 */
Derek Prothrodadd9842014-01-17 13:43:50 -0500614 protected void populateCustomContentContainer() {
Adam Cohen9211d422014-10-07 18:14:53 -0700615 if (mLauncherCallbacks != null) {
616 mLauncherCallbacks.populateCustomContentContainer();
617 }
Dave Hawkeya8881582013-09-17 15:55:33 -0600618 }
619
620 /**
621 * Invoked by subclasses to signal a change to the {@link #addCustomContentToLeft} value to
622 * ensure the custom content page is added or removed if necessary.
623 */
624 protected void invalidateHasCustomContentToLeft() {
Dave Hawkey3a733a72013-09-30 11:52:21 -0600625 if (mWorkspace == null || mWorkspace.getScreenOrder().isEmpty()) {
Dave Hawkeya8881582013-09-17 15:55:33 -0600626 // Not bound yet, wait for bindScreens to be called.
627 return;
628 }
629
630 if (!mWorkspace.hasCustomContent() && hasCustomContentToLeft()) {
631 // Create the custom content page and call the subclass to populate it.
Derek Prothrodadd9842014-01-17 13:43:50 -0500632 mWorkspace.createCustomContentContainer();
633 populateCustomContentContainer();
Dave Hawkeya8881582013-09-17 15:55:33 -0600634 } else if (mWorkspace.hasCustomContent() && !hasCustomContentToLeft()) {
635 mWorkspace.removeCustomContentPage();
636 }
637 }
638
Anton Hanssona2f665f2013-09-26 12:18:32 +0100639 public Stats getStats() {
640 return mStats;
641 }
642
Bjorn Bringertc459e522013-06-07 19:36:01 +0100643 public LayoutInflater getInflater() {
644 return mInflater;
645 }
646
Hyunyoung Song3f471442015-04-08 19:01:34 -0700647 public boolean isDraggingEnabled() {
Winson Chung36a62fe2012-05-06 18:04:42 -0700648 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
649 // that is subsequently removed from the workspace in startBinding().
Sunny Goyal639e9062015-08-19 19:17:06 -0700650 return !isWorkspaceLoading();
Winson Chung36a62fe2012-05-06 18:04:42 -0700651 }
652
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000653 public int getViewIdForItem(ItemInfo info) {
Sunny Goyald1a0e8b2015-08-27 17:45:46 -0700654 // aapt-generated IDs have the high byte nonzero; clamp to the range under that.
655 // This cast is safe as long as the id < 0x00FFFFFF
656 // Since we jail all the dynamically generated views, there should be no clashes
657 // with any other views.
658 return (int) info.id;
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000659 }
660
661 /**
Winson Chung557d6ed2011-07-08 15:34:52 -0700662 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
663 * a configuration step, this allows the proper animations to run after other transitions.
664 */
Adam Cohendb364c32014-05-20 14:23:40 -0700665 private long completeAdd(PendingAddArguments args) {
Adam Cohen83079e42014-09-19 17:43:08 -0700666 long screenId = args.screenId;
667 if (args.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
668 // When the screen id represents an actual screen (as opposed to a rank) we make sure
669 // that the drop page actually exists.
670 screenId = ensurePendingDropLayoutExists(args.screenId);
671 }
Adam Cohendb364c32014-05-20 14:23:40 -0700672
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800673 switch (args.requestCode) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800674 case REQUEST_CREATE_SHORTCUT:
Adam Cohendb364c32014-05-20 14:23:40 -0700675 completeAddShortcut(args.intent, args.container, screenId, args.cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -0700676 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700677 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800678 case REQUEST_CREATE_APPWIDGET:
Adam Cohendb364c32014-05-20 14:23:40 -0700679 completeAddAppWidget(args.appWidgetId, args.container, screenId, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700680 break;
Sunny Goyalff572272014-07-23 13:58:07 -0700681 case REQUEST_RECONFIGURE_APPWIDGET:
682 completeRestoreAppWidget(args.appWidgetId);
683 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800684 }
Michael Jurka27614d22012-04-02 06:40:22 -0700685 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
686 // if you turned the screen off and then back while in All Apps, Launcher would not
687 // return to the workspace. Clearing mAddInfo.container here fixes this issue
688 resetAddInfo();
Adam Cohendb364c32014-05-20 14:23:40 -0700689 return screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800690 }
691
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800692 private void handleActivityResult(
Michael Jurka8b805b12012-04-18 14:23:14 -0700693 final int requestCode, final int resultCode, final Intent data) {
Winson Chunge341d302013-08-16 14:31:00 -0700694 // Reset the startActivity waiting flag
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700695 setWaitingForResult(false);
Adam Cohendb364c32014-05-20 14:23:40 -0700696 final int pendingAddWidgetId = mPendingAddWidgetId;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800697 mPendingAddWidgetId = -1;
Winson Chunge341d302013-08-16 14:31:00 -0700698
Adam Cohenad4e15c2013-10-17 16:21:35 -0700699 Runnable exitSpringLoaded = new Runnable() {
700 @Override
701 public void run() {
702 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
703 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
704 }
705 };
706
Michael Jurka8b805b12012-04-18 14:23:14 -0700707 if (requestCode == REQUEST_BIND_APPWIDGET) {
Winsona1f79d32015-08-05 14:00:45 -0700708 // This is called only if the user did not previously have permissions to bind widgets
Adam Cohenad4e15c2013-10-17 16:21:35 -0700709 final int appWidgetId = data != null ?
Michael Jurka8b805b12012-04-18 14:23:14 -0700710 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
711 if (resultCode == RESULT_CANCELED) {
712 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
Adam Cohen689ff162014-05-08 17:27:56 -0700713 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700714 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
Michael Jurka8b805b12012-04-18 14:23:14 -0700715 } else if (resultCode == RESULT_OK) {
Sunny Goyale6b63a32015-01-16 16:14:29 -0800716 addAppWidgetImpl(appWidgetId, mPendingAddInfo, null,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700717 mPendingAddWidgetInfo, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
Winsona1f79d32015-08-05 14:00:45 -0700718
719 // When the user has granted permission to bind widgets, we should check to see if
720 // we can inflate the default search bar widget.
721 getOrCreateQsbBar();
Michael Jurka8b805b12012-04-18 14:23:14 -0700722 }
723 return;
Michael Jurka336fd4f2013-09-12 00:05:02 +0200724 } else if (requestCode == REQUEST_PICK_WALLPAPER) {
725 if (resultCode == RESULT_OK && mWorkspace.isInOverviewMode()) {
Tony Wickham6ed058c2015-09-09 18:21:49 -0700726 // User could have free-scrolled between pages before picking a wallpaper; make sure
727 // we move to the closest one now to avoid visual jump.
728 mWorkspace.setCurrentPage(mWorkspace.getPageNearestToCenterOfScreen());
Winson Chungdc61c4d2015-04-20 18:26:57 -0700729 showWorkspace(false);
Michael Jurka336fd4f2013-09-12 00:05:02 +0200730 }
731 return;
Michael Jurka8b805b12012-04-18 14:23:14 -0700732 }
Michael Jurka336fd4f2013-09-12 00:05:02 +0200733
Adam Cohened66b2b2012-01-23 17:28:51 -0800734 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
Sunny Goyal5c97f512015-05-19 16:03:28 -0700735 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700736
Adam Cohendb364c32014-05-20 14:23:40 -0700737 final boolean workspaceLocked = isWorkspaceLocked();
Adam Cohened66b2b2012-01-23 17:28:51 -0800738 // We have special handling for widgets
739 if (isWidgetDrop) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800740 final int appWidgetId;
741 int widgetId = data != null ? data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1)
742 : -1;
743 if (widgetId < 0) {
744 appWidgetId = pendingAddWidgetId;
745 } else {
746 appWidgetId = widgetId;
747 }
748
Adam Cohenad4e15c2013-10-17 16:21:35 -0700749 final int result;
Adam Cohenf0129b12013-11-04 17:57:36 -0800750 if (appWidgetId < 0 || resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700751 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not " +
752 "returned from the widget configuration activity.");
Adam Cohenad4e15c2013-10-17 16:21:35 -0700753 result = RESULT_CANCELED;
754 completeTwoStageWidgetDrop(result, appWidgetId);
Adam Cohendb364c32014-05-20 14:23:40 -0700755 final Runnable onComplete = new Runnable() {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700756 @Override
757 public void run() {
758 exitSpringLoadedDragModeDelayed(false, 0, null);
759 }
760 };
Adam Cohendb364c32014-05-20 14:23:40 -0700761 if (workspaceLocked) {
762 // No need to remove the empty screen if we're mid-binding, as the
763 // the bind will not add the empty screen.
764 mWorkspace.postDelayed(onComplete, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
765 } else {
766 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
767 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
768 }
Winson Chung5aaab772012-04-27 15:24:02 -0700769 } else {
Adam Cohendb364c32014-05-20 14:23:40 -0700770 if (!workspaceLocked) {
Adam Cohen83079e42014-09-19 17:43:08 -0700771 if (mPendingAddInfo.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
772 // When the screen id represents an actual screen (as opposed to a rank)
773 // we make sure that the drop page actually exists.
774 mPendingAddInfo.screenId =
775 ensurePendingDropLayoutExists(mPendingAddInfo.screenId);
776 }
Adam Cohendb364c32014-05-20 14:23:40 -0700777 final CellLayout dropLayout = mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
778
779 dropLayout.setDropPending(true);
780 final Runnable onComplete = new Runnable() {
781 @Override
782 public void run() {
783 completeTwoStageWidgetDrop(resultCode, appWidgetId);
784 dropLayout.setDropPending(false);
785 }
786 };
787 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
788 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
789 } else {
790 PendingAddArguments args = preparePendingAddArgs(requestCode, data, appWidgetId,
791 mPendingAddInfo);
792 sPendingAddItem = args;
793 }
Winson Chung5aaab772012-04-27 15:24:02 -0700794 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800795 return;
796 }
797
Sunny Goyalff572272014-07-23 13:58:07 -0700798 if (requestCode == REQUEST_RECONFIGURE_APPWIDGET) {
799 if (resultCode == RESULT_OK) {
800 // Update the widget view.
801 PendingAddArguments args = preparePendingAddArgs(requestCode, data,
802 pendingAddWidgetId, mPendingAddInfo);
803 if (workspaceLocked) {
804 sPendingAddItem = args;
805 } else {
806 completeAdd(args);
807 }
808 }
809 // Leave the widget in the pending state if the user canceled the configure.
810 return;
811 }
812
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800813 // The pattern used here is that a user PICKs a specific application,
814 // which, depending on the target, might need to CREATE the actual target.
Romain Guycbb89e42009-06-08 15:52:54 -0700815
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800816 // For example, the user would PICK_SHORTCUT for "Music playlist", and we
817 // launch over to the Music app to actually CREATE_SHORTCUT.
Winson Chungc7da5552011-08-10 15:28:45 -0700818 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
Adam Cohendb364c32014-05-20 14:23:40 -0700819 final PendingAddArguments args = preparePendingAddArgs(requestCode, data, -1,
820 mPendingAddInfo);
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800821 if (isWorkspaceLocked()) {
Adam Cohendb364c32014-05-20 14:23:40 -0700822 sPendingAddItem = args;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800823 } else {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700824 completeAdd(args);
Adam Cohendb364c32014-05-20 14:23:40 -0700825 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
826 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800827 }
Adam Cohen00074722013-10-11 17:46:09 -0700828 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen689ff162014-05-08 17:27:56 -0700829 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700830 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800831 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800832 mDragLayer.clearAnimatedView();
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800833
834 }
835
836 @Override
837 protected void onActivityResult(
838 final int requestCode, final int resultCode, final Intent data) {
839 handleActivityResult(requestCode, resultCode, data);
840 if (mLauncherCallbacks != null) {
841 mLauncherCallbacks.onActivityResult(requestCode, resultCode, data);
842 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800843 }
844
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600845 /** @Override for MNC */
Sunny Goyaldd2e6df2015-07-07 10:57:57 -0700846 public void onRequestPermissionsResult(int requestCode, String[] permissions,
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600847 int[] grantResults) {
Sunny Goyal28c6b962015-10-12 11:42:05 -0700848 if (requestCode == REQUEST_PERMISSION_CALL_PHONE && sPendingAddItem != null
849 && sPendingAddItem.requestCode == REQUEST_PERMISSION_CALL_PHONE) {
850 View v = null;
851 CellLayout layout = getCellLayout(sPendingAddItem.container, sPendingAddItem.screenId);
852 if (layout != null) {
853 v = layout.getChildAt(sPendingAddItem.cellX, sPendingAddItem.cellY);
854 }
855 Intent intent = sPendingAddItem.intent;
856 sPendingAddItem = null;
857 if (grantResults.length > 0
858 && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
859 startActivity(v, intent, null);
860 } else {
861 // TODO: Show a snack bar with link to settings
862 Toast.makeText(this, getString(R.string.msg_no_phone_permission,
863 getString(R.string.app_name)), Toast.LENGTH_SHORT).show();
864 }
865 }
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600866 if (mLauncherCallbacks != null) {
867 mLauncherCallbacks.onRequestPermissionsResult(requestCode, permissions,
868 grantResults);
869 }
870 }
871
Adam Cohendb364c32014-05-20 14:23:40 -0700872 private PendingAddArguments preparePendingAddArgs(int requestCode, Intent data, int
873 appWidgetId, ItemInfo info) {
874 PendingAddArguments args = new PendingAddArguments();
875 args.requestCode = requestCode;
876 args.intent = data;
877 args.container = info.container;
878 args.screenId = info.screenId;
879 args.cellX = info.cellX;
880 args.cellY = info.cellY;
881 args.appWidgetId = appWidgetId;
882 return args;
883 }
884
885 /**
886 * Check to see if a given screen id exists. If not, create it at the end, return the new id.
887 *
888 * @param screenId the screen id to check
889 * @return the new screen, or screenId if it exists
890 */
891 private long ensurePendingDropLayoutExists(long screenId) {
892 CellLayout dropLayout =
893 (CellLayout) mWorkspace.getScreenWithId(screenId);
894 if (dropLayout == null) {
895 // it's possible that the add screen was removed because it was
896 // empty and a re-bind occurred
897 mWorkspace.addExtraEmptyScreen();
898 return mWorkspace.commitExtraEmptyScreen();
899 } else {
900 return screenId;
901 }
902 }
903
Adam Cohen091440a2015-03-18 14:16:05 -0700904 @Thunk void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
Tony Wickhama501d492015-11-03 18:05:01 -0800905 CellLayout cellLayout = mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800906 Runnable onCompleteRunnable = null;
907 int animationType = 0;
908
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700909 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800910 if (resultCode == RESULT_OK) {
911 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
912 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700913 mPendingAddWidgetInfo);
914 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800915 onCompleteRunnable = new Runnable() {
916 @Override
917 public void run() {
918 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700919 mPendingAddInfo.screenId, layout, null);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700920 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
921 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
Adam Cohened66b2b2012-01-23 17:28:51 -0800922 }
923 };
924 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800925 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800926 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
Adam Cohened66b2b2012-01-23 17:28:51 -0800927 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700928 if (mDragLayer.getAnimatedView() != null) {
929 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
930 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
931 animationType, boundWidget, true);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700932 } else if (onCompleteRunnable != null) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700933 // The animated view may be null in the case of a rotation during widget configuration
934 onCompleteRunnable.run();
935 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800936 }
937
938 @Override
Michael Jurkacd496d72013-04-11 11:32:45 -0700939 protected void onStop() {
940 super.onStop();
941 FirstFrameAnimatorHelper.setIsVisible(false);
Adam Cohen9211d422014-10-07 18:14:53 -0700942
943 if (mLauncherCallbacks != null) {
944 mLauncherCallbacks.onStop();
945 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700946 }
947
948 @Override
949 protected void onStart() {
950 super.onStart();
951 FirstFrameAnimatorHelper.setIsVisible(true);
Adam Cohen9211d422014-10-07 18:14:53 -0700952
953 if (mLauncherCallbacks != null) {
954 mLauncherCallbacks.onStart();
955 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700956 }
957
958 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800959 protected void onResume() {
Michael Jurka447bf842013-05-15 14:52:15 +0200960 long startTime = 0;
961 if (DEBUG_RESUME_TIME) {
962 startTime = System.currentTimeMillis();
Daniel Sandler924b9932013-06-12 00:38:25 -0400963 Log.v(TAG, "Launcher.onResume()");
Michael Jurka447bf842013-05-15 14:52:15 +0200964 }
Adam Cohen9211d422014-10-07 18:14:53 -0700965
966 if (mLauncherCallbacks != null) {
967 mLauncherCallbacks.preOnResume();
968 }
969
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800970 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700971
Winson Chung4a2afa32012-07-19 14:53:05 -0700972 // Restore the previous launcher state
Winson Chung75cc8252015-04-10 10:19:58 -0700973 if (mOnResumeState == State.WORKSPACE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700974 showWorkspace(false);
Winson Chungb745afb2015-03-02 11:51:23 -0800975 } else if (mOnResumeState == State.APPS) {
Winson Chung13eb5272015-05-11 16:30:13 -0700976 boolean launchedFromApp = (mWaitingForResume != null);
Winson Chung4ac30062015-05-08 17:34:17 -0700977 // Don't update the predicted apps if the user is returning to launcher in the apps
Winson Chung13eb5272015-05-11 16:30:13 -0700978 // view after launching an app, as they may be depending on the UI to be static to
979 // switch to another app, otherwise, if it was
Winson Chung4ac30062015-05-08 17:34:17 -0700980 showAppsView(false /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -0700981 !launchedFromApp /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -0800982 } else if (mOnResumeState == State.WIDGETS) {
983 showWidgetsView(false, false);
Winson Chung4a2afa32012-07-19 14:53:05 -0700984 }
985 mOnResumeState = State.NONE;
986
Sunny Goyal4a6c6f32015-05-19 12:36:46 -0700987 // Background was set to gradient in onPause(), restore to transparent if in all apps.
Sunny Goyald70ad0d2015-05-26 17:20:07 -0700988 setWorkspaceBackground(mState == State.WORKSPACE ? WORKSPACE_BACKGROUND_GRADIENT
989 : WORKSPACE_BACKGROUND_TRANSPARENT);
Craig Mautner360310b2012-10-26 15:13:08 -0700990
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800991 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700992 if (mRestoring || mOnResumeNeedsLoad) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700993 setWorkspaceLoading(true);
Sunny Goyal22aa3812015-08-19 16:24:27 -0700994
995 // If we're starting binding all over again, clear any bind calls we'd postponed in
996 // the past (see waitUntilResume) -- we don't need them since we're starting binding
997 // from scratch again
998 mBindOnResumeCallbacks.clear();
999
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001000 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001001 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001002 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001003 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001004 if (mBindOnResumeCallbacks.size() > 0) {
Michael Jurkac402cd92013-05-20 15:49:32 +02001005 // We might have postponed some bind calls until onResume (see waitUntilResume) --
1006 // execute them here
1007 long startTimeCallbacks = 0;
1008 if (DEBUG_RESUME_TIME) {
1009 startTimeCallbacks = System.currentTimeMillis();
1010 }
1011
Michael Jurka1e2f4652013-07-08 18:03:46 -07001012 for (int i = 0; i < mBindOnResumeCallbacks.size(); i++) {
1013 mBindOnResumeCallbacks.get(i).run();
Michael Jurkac402cd92013-05-20 15:49:32 +02001014 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001015 mBindOnResumeCallbacks.clear();
Michael Jurkac402cd92013-05-20 15:49:32 +02001016 if (DEBUG_RESUME_TIME) {
1017 Log.d(TAG, "Time spent processing callbacks in onResume: " +
1018 (System.currentTimeMillis() - startTimeCallbacks));
1019 }
Michael Jurka447bf842013-05-15 14:52:15 +02001020 }
Michael Jurka54554252013-08-01 12:52:23 +02001021 if (mOnResumeCallbacks.size() > 0) {
1022 for (int i = 0; i < mOnResumeCallbacks.size(); i++) {
1023 mOnResumeCallbacks.get(i).run();
1024 }
1025 mOnResumeCallbacks.clear();
1026 }
Winson Chunge4e50662012-01-23 14:45:13 -08001027
1028 // Reset the pressed state of icons that were locked in the press state while activities
1029 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -08001030 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -08001031 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -08001032 mWaitingForResume.setStayPressed(false);
1033 }
Winson Chung82963d52013-10-09 11:20:57 -07001034
Adam Cohen06dff352012-06-01 17:17:08 -07001035 // It is possible that widgets can receive updates while launcher is not in the foreground.
1036 // Consequently, the widgets will be inflated in the orientation of the foreground activity
1037 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
1038 // orientation.
Sunny Goyal6bec75f2015-10-01 18:50:48 -07001039 if (!isWorkspaceLoading()) {
1040 getWorkspace().reinflateWidgetsIfNecessary();
1041 }
Sunny Goyal22235bc2015-04-03 09:23:43 -07001042 reinflateQSBIfNecessary();
Adam Cohenf9426d52012-06-04 17:26:21 -07001043
Michael Jurka447bf842013-05-15 14:52:15 +02001044 if (DEBUG_RESUME_TIME) {
1045 Log.d(TAG, "Time spent in onResume: " + (System.currentTimeMillis() - startTime));
1046 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001047
Adam Cohen4b66bf32015-09-18 12:15:19 -07001048 // We want to suppress callbacks about CustomContent being shown if we have just received
1049 // onNewIntent while the user was present within launcher. In that case, we post a call
1050 // to move the user to the main screen (which will occur after onResume). We don't want to
1051 // have onHide (from onPause), then onShow, then onHide again, which we get if we don't
1052 // suppress here.
1053 if (mWorkspace.getCustomContentCallbacks() != null
1054 && !mMoveToDefaultScreenFromNewIntent) {
Adam Cohen6fecd412013-10-02 17:41:50 -07001055 // If we are resuming and the custom content is the current page, we call onShow().
Adam Cohen4b66bf32015-09-18 12:15:19 -07001056 // It is also possible that onShow will instead be called slightly after first layout
Adam Cohen6fecd412013-10-02 17:41:50 -07001057 // if PagedView#setRestorePage was set to the custom content page in onCreate().
1058 if (mWorkspace.isOnOrMovingToCustomContent()) {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001059 mWorkspace.getCustomContentCallbacks().onShow(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001060 }
1061 }
Adam Cohen4b66bf32015-09-18 12:15:19 -07001062 mMoveToDefaultScreenFromNewIntent = false;
Winson Chungcd99cd32015-04-29 11:03:24 -07001063 updateInteraction(Workspace.State.NORMAL, mWorkspace.getState());
Adam Cohen53805212013-10-01 10:39:23 -07001064 mWorkspace.onResume();
Sunny Goyale755d462014-07-22 13:48:29 -07001065
Sunny Goyal756adbc2015-04-16 15:20:51 -07001066 if (!isWorkspaceLoading()) {
1067 // Process any items that were added while Launcher was away.
1068 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
1069 }
Adam Cohen9211d422014-10-07 18:14:53 -07001070
1071 if (mLauncherCallbacks != null) {
1072 mLauncherCallbacks.onResume();
1073 }
Adam Cohen06dff352012-06-01 17:17:08 -07001074 }
1075
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001076 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001077 protected void onPause() {
Winson Chung997a9232013-07-24 15:33:46 -07001078 // Ensure that items added to Launcher are queued until Launcher returns
1079 InstallShortcutReceiver.enableInstallQueue();
1080
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001081 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001082 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -08001083 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -07001084 mDragController.resetLastGestureUpTime();
Adam Cohen6fecd412013-10-02 17:41:50 -07001085
1086 // We call onHide() aggressively. The custom content callbacks should be able to
1087 // debounce excess onHide calls.
1088 if (mWorkspace.getCustomContentCallbacks() != null) {
1089 mWorkspace.getCustomContentCallbacks().onHide();
1090 }
Romain Guycbb89e42009-06-08 15:52:54 -07001091
Adam Cohen9211d422014-10-07 18:14:53 -07001092 if (mLauncherCallbacks != null) {
1093 mLauncherCallbacks.onPause();
Adam Cohenbffe7452013-07-22 18:21:45 -07001094 }
Adam Cohenbffe7452013-07-22 18:21:45 -07001095 }
1096
1097 public interface CustomContentCallbacks {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001098 // Custom content is completely shown. {@code fromResume} indicates whether this was caused
1099 // by a onResume or by scrolling otherwise.
1100 public void onShow(boolean fromResume);
Adam Cohenbffe7452013-07-22 18:21:45 -07001101
1102 // Custom content is completely hidden
1103 public void onHide();
Adam Cohenc36fa5c2013-08-29 11:54:42 -07001104
1105 // Custom content scroll progress changed. From 0 (not showing) to 1 (fully showing).
1106 public void onScrollProgressChanged(float progress);
Jan-Willem Maarse2ff91c42014-07-10 15:58:12 -07001107
1108 // Indicates whether the user is allowed to scroll away from the custom content.
1109 boolean isScrollingAllowed();
Adam Cohenbffe7452013-07-22 18:21:45 -07001110 }
1111
Adam Cohenc2d6e892014-10-16 09:49:24 -07001112 public interface LauncherOverlay {
1113
1114 /**
1115 * Touch interaction leading to overscroll has begun
1116 */
1117 public void onScrollInteractionBegin();
1118
1119 /**
1120 * Touch interaction related to overscroll has ended
1121 */
1122 public void onScrollInteractionEnd();
1123
1124 /**
1125 * Scroll progress, between 0 and 100, when the user scrolls beyond the leftmost
1126 * screen (or in the case of RTL, the rightmost screen).
1127 */
1128 public void onScrollChange(int progress, boolean rtl);
1129
1130 /**
1131 * Screen has stopped scrolling
1132 */
1133 public void onScrollSettled();
1134
1135 /**
1136 * This method can be called by the Launcher in order to force the LauncherOverlay
1137 * to exit fully immersive mode.
1138 */
1139 public void forceExitFullImmersion();
1140 }
1141
Jun Mukai8af0cd82015-05-12 12:32:12 -07001142 public interface LauncherSearchCallbacks {
1143 /**
1144 * Called when the search overlay is shown.
1145 */
1146 public void onSearchOverlayOpened();
1147
1148 /**
1149 * Called when the search overlay is dismissed.
1150 */
1151 public void onSearchOverlayClosed();
1152 }
1153
Adam Cohenc2d6e892014-10-16 09:49:24 -07001154 public interface LauncherOverlayCallbacks {
1155 /**
1156 * This method indicates whether a call to {@link #enterFullImmersion()} will succeed,
1157 * however it doesn't modify any state within the launcher.
1158 */
1159 public boolean canEnterFullImmersion();
1160
1161 /**
1162 * Should be called to tell Launcher that the LauncherOverlay will take over interaction,
1163 * eg. by occupying the full screen and handling all touch events.
1164 *
1165 * @return true if Launcher allows the LauncherOverlay to become fully immersive. In this
1166 * case, Launcher will modify any necessary state and assumes the overlay is
1167 * handling all interaction. If false, the LauncherOverlay should cancel any
1168 *
1169 */
1170 public boolean enterFullImmersion();
1171
1172 /**
1173 * Must be called when exiting fully immersive mode. Indicates to Launcher that it has
1174 * full control over UI and state.
1175 */
1176 public void exitFullImmersion();
1177 }
1178
1179 class LauncherOverlayCallbacksImpl implements LauncherOverlayCallbacks {
1180
1181 @Override
1182 public boolean canEnterFullImmersion() {
1183 return mState == State.WORKSPACE;
1184 }
1185
1186 @Override
1187 public boolean enterFullImmersion() {
1188 if (mState == State.WORKSPACE) {
1189 // When fully immersed, disregard any touches which fall through.
1190 mDragLayer.setBlockTouch(true);
1191 return true;
1192 }
1193 return false;
1194 }
1195
1196 @Override
1197 public void exitFullImmersion() {
1198 mDragLayer.setBlockTouch(false);
1199 }
1200 }
1201
Jorim Jaggid017f882014-01-14 17:08:48 -08001202 protected boolean hasSettings() {
Adam Cohen9211d422014-10-07 18:14:53 -07001203 if (mLauncherCallbacks != null) {
1204 return mLauncherCallbacks.hasSettings();
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07001205 } else {
1206 // On devices with a locked orientation, we will at least have the allow rotation
1207 // setting.
1208 return !Utilities.isRotationAllowedForDevice(this);
Adam Cohen9211d422014-10-07 18:14:53 -07001209 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001210 }
1211
Adam Cohen9211d422014-10-07 18:14:53 -07001212 public void addToCustomContentPage(View customContent,
Adam Cohen53805212013-10-01 10:39:23 -07001213 CustomContentCallbacks callbacks, String description) {
1214 mWorkspace.addToCustomContentPage(customContent, callbacks, description);
Adam Cohen66a01fd2013-06-11 12:48:00 -07001215 }
1216
Adam Cohenedb40762013-07-18 16:45:45 -07001217 // The custom content needs to offset its content to account for the QSB
1218 public int getTopOffsetForCustomContent() {
1219 return mWorkspace.getPaddingTop();
1220 }
1221
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001222 @Override
1223 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001224 // Flag the loader to stop early before switching
Adam Cohen1a85c582014-09-30 09:48:49 -07001225 if (mModel.isCurrentCallbacks(this)) {
1226 mModel.stopLoader();
1227 }
Hyunyoung Song3f471442015-04-08 19:01:34 -07001228 //TODO(hyunyoungs): stop the widgets loader when there is a rotation.
1229
Romain Guy13c2e7b2010-03-10 19:45:00 -08001230 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001231 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001232
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001233 // We can't hide the IME if it was forced open. So don't bother
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001234 @Override
1235 public void onWindowFocusChanged(boolean hasFocus) {
1236 super.onWindowFocusChanged(hasFocus);
Adam Cohened307df2013-10-02 09:37:31 -07001237 mHasFocus = hasFocus;
Adam Cohen9211d422014-10-07 18:14:53 -07001238
1239 if (mLauncherCallbacks != null) {
1240 mLauncherCallbacks.onWindowFocusChanged(hasFocus);
1241 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001242 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001243
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001244 private boolean acceptFilter() {
1245 final InputMethodManager inputManager = (InputMethodManager)
1246 getSystemService(Context.INPUT_METHOD_SERVICE);
1247 return !inputManager.isFullscreenMode();
1248 }
1249
1250 @Override
1251 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -07001252 final int uniChar = event.getUnicodeChar();
1253 final boolean handled = super.onKeyDown(keyCode, event);
1254 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
1255 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001256 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
1257 keyCode, event);
1258 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001259 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -07001260 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -07001261 // showSearchDialog()
1262 // If there are multiple keystrokes before the search dialog takes focus,
1263 // onSearchRequested() will be called for every keystroke,
1264 // but it is idempotent, so it's fine.
1265 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001266 }
1267 }
1268
Joe Onorato8a9625e2010-01-28 15:55:35 -08001269 // Eat the long press event so the keyboard doesn't come up.
1270 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
1271 return true;
1272 }
1273
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001274 return handled;
1275 }
1276
Winson46163472015-09-22 17:31:56 -07001277 @Override
1278 public boolean onKeyUp(int keyCode, KeyEvent event) {
1279 if (keyCode == KeyEvent.KEYCODE_MENU) {
1280 // Ignore the menu key if we are currently dragging or are on the custom content screen
1281 if (!isOnCustomContent() && !mDragController.isDragging()) {
1282 // Close any open folders
1283 closeFolder();
1284
1285 // Stop resizing any widgets
1286 mWorkspace.exitWidgetResizeMode();
1287
1288 // Show the overview mode if we are on the workspace
1289 if (mState == State.WORKSPACE && !mWorkspace.isInOverviewMode() &&
1290 !mWorkspace.isSwitchingState()) {
1291 mOverviewPanel.requestFocus();
Winsone9f27272015-10-13 10:47:51 -07001292 showOverviewMode(true, true /* requestButtonFocus */);
Winson46163472015-09-22 17:31:56 -07001293 }
1294 }
1295 return true;
1296 }
1297 return super.onKeyUp(keyCode, event);
1298 }
1299
Karl Rosaen138a0412009-04-23 19:00:21 -07001300 private String getTypedText() {
1301 return mDefaultKeySsb.toString();
1302 }
1303
1304 private void clearTypedText() {
1305 mDefaultKeySsb.clear();
1306 mDefaultKeySsb.clearSpans();
1307 Selection.setSelection(mDefaultKeySsb, 0);
1308 }
1309
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001310 /**
Michael Jurka883f55b2010-10-21 15:47:14 -07001311 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
1312 * State
1313 */
1314 private static State intToState(int stateOrdinal) {
1315 State state = State.WORKSPACE;
1316 final State[] stateValues = State.values();
1317 for (int i = 0; i < stateValues.length; i++) {
1318 if (stateValues[i].ordinal() == stateOrdinal) {
1319 state = stateValues[i];
1320 break;
1321 }
1322 }
1323 return state;
1324 }
1325
1326 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001327 * Restores the previous state, if it exists.
1328 *
1329 * @param savedState The previous state.
1330 */
1331 private void restoreState(Bundle savedState) {
1332 if (savedState == null) {
1333 return;
1334 }
1335
Michael Jurka883f55b2010-10-21 15:47:14 -07001336 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungb745afb2015-03-02 11:51:23 -08001337 if (state == State.APPS || state == State.WIDGETS) {
1338 mOnResumeState = state;
Joe Onorato3a8820b2009-11-10 15:06:42 -08001339 }
1340
Adam Cohen21cd0022013-10-09 18:57:02 -07001341 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN,
1342 PagedView.INVALID_RESTORE_PAGE);
1343 if (currentScreen != PagedView.INVALID_RESTORE_PAGE) {
Winson Chung8c87cd82013-07-23 16:20:10 -07001344 mWorkspace.setRestorePage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001345 }
1346
Winson Chung3d503fb2011-07-13 17:25:49 -07001347 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
Adam Cohendcd297f2013-06-18 13:13:40 -07001348 final long pendingAddScreen = savedState.getLong(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001349
Winson Chung3d503fb2011-07-13 17:25:49 -07001350 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
1351 mPendingAddInfo.container = pendingAddContainer;
Adam Cohendcd297f2013-06-18 13:13:40 -07001352 mPendingAddInfo.screenId = pendingAddScreen;
Winson Chung3d503fb2011-07-13 17:25:49 -07001353 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
1354 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001355 mPendingAddInfo.spanX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_X);
1356 mPendingAddInfo.spanY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y);
Adam Cohenb823ae42015-03-27 18:07:52 -07001357 AppWidgetProviderInfo info = savedState.getParcelable(
1358 RUNTIME_STATE_PENDING_ADD_WIDGET_INFO);
Sunny Goyalf044bb12015-05-12 13:30:07 -07001359 mPendingAddWidgetInfo = info == null ?
1360 null : LauncherAppWidgetProviderInfo.fromProviderInfo(this, info);
1361
Adam Cohen4637b5a2013-11-04 18:21:24 -08001362 mPendingAddWidgetId = savedState.getInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID);
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001363 setWaitingForResult(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001364 mRestoring = true;
1365 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001366 }
1367
1368 /**
1369 * Finds all the views we need and configure them properly.
1370 */
1371 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -07001372 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -04001373
Craig Mautner360310b2012-10-26 15:13:08 -07001374 mLauncherView = findViewById(R.id.launcher);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001375 mFocusHandler = (FocusIndicatorView) findViewById(R.id.focus_indicator);
Winson Chung4c98d922011-05-31 16:50:48 -07001376 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
1377 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Anjali Koppalf5d29132014-02-28 13:33:27 -08001378 mWorkspace.setPageSwitchListener(this);
Winson Chunga6945242014-01-08 14:04:34 -08001379 mPageIndicators = mDragLayer.findViewById(R.id.page_indicator);
Craig Mautner360310b2012-10-26 15:13:08 -07001380
John Spurlock77e1f472013-09-11 10:09:51 -04001381 mLauncherView.setSystemUiVisibility(
1382 View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
Craig Mautner360310b2012-10-26 15:13:08 -07001383 mWorkspaceBackgroundDrawable = getResources().getDrawable(R.drawable.workspace_bg);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001384
Winson Chung4c98d922011-05-31 16:50:48 -07001385 // Setup the drag layer
1386 mDragLayer.setup(this, dragController);
1387
Winson Chung3d503fb2011-07-13 17:25:49 -07001388 // Setup the hotseat
1389 mHotseat = (Hotseat) findViewById(R.id.hotseat);
1390 if (mHotseat != null) {
Winson Chung11a1a532013-09-13 11:14:45 -07001391 mHotseat.setOnLongClickListener(this);
Winson Chung3d503fb2011-07-13 17:25:49 -07001392 }
1393
Winsone9f27272015-10-13 10:47:51 -07001394 // Setup the overview panel
1395 setupOverviewPanel();
Adam Cohenf358a4b2013-07-23 16:47:31 -07001396
Winson Chung4c98d922011-05-31 16:50:48 -07001397 // Setup the workspace
1398 mWorkspace.setHapticFeedbackEnabled(false);
1399 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -07001400 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -07001401 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001402
Winson Chungf0ea4d32011-06-06 14:27:16 -07001403 // Get the search/delete bar
Adam Cohen24ce0b32014-01-14 16:18:14 -08001404 mSearchDropTargetBar = (SearchDropTargetBar)
1405 mDragLayer.findViewById(R.id.search_drop_target_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001406
Winson Chungef7f8742015-06-04 17:18:17 -07001407 // Setup Apps and Widgets
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001408 mAppsView = (AllAppsContainerView) findViewById(R.id.apps_view);
Hyunyoung Song3f471442015-04-08 19:01:34 -07001409 mWidgetsView = (WidgetsContainerView) findViewById(R.id.widgets_view);
Winson Chungef7f8742015-06-04 17:18:17 -07001410 if (mLauncherCallbacks != null && mLauncherCallbacks.getAllAppsSearchBarController() != null) {
1411 mAppsView.setSearchBarController(mLauncherCallbacks.getAllAppsSearchBarController());
1412 } else {
Sunny Goyal0ac7ede2016-01-29 13:14:14 -08001413 mAppsView.setSearchBarController(new DefaultAppSearchController());
Winson Chungef7f8742015-06-04 17:18:17 -07001414 }
Craig Mautner360310b2012-10-26 15:13:08 -07001415
Winson Chung3d503fb2011-07-13 17:25:49 -07001416 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -07001417 dragController.setDragScoller(mWorkspace);
1418 dragController.setScrollView(mDragLayer);
1419 dragController.setMoveTarget(mWorkspace);
1420 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -07001421 if (mSearchDropTargetBar != null) {
1422 mSearchDropTargetBar.setup(this, dragController);
Adam Cohenb0df1b02015-03-18 22:21:40 -07001423 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Michael Jurkae0f5a612011-02-07 16:45:41 -08001424 }
Daniel Sandler924b9932013-06-12 00:38:25 -04001425
Sunny Goyald3060552015-06-25 19:35:49 -07001426 if (TestingUtils.MEMORY_DUMP_ENABLED) {
1427 TestingUtils.addWeightWatcher(this);
Daniel Sandler924b9932013-06-12 00:38:25 -04001428 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001429 }
1430
Winsone9f27272015-10-13 10:47:51 -07001431 private void setupOverviewPanel() {
1432 mOverviewPanel = (ViewGroup) findViewById(R.id.overview_panel);
1433
1434 // Long-clicking buttons in the overview panel does the same thing as clicking them.
1435 OnLongClickListener performClickOnLongClick = new OnLongClickListener() {
1436 @Override
1437 public boolean onLongClick(View v) {
1438 return v.performClick();
1439 }
1440 };
1441
1442 // Bind wallpaper button actions
1443 View wallpaperButton = findViewById(R.id.wallpaper_button);
1444 wallpaperButton.setOnClickListener(new OnClickListener() {
1445 @Override
1446 public void onClick(View view) {
1447 if (!mWorkspace.isSwitchingState()) {
1448 onClickWallpaperPicker(view);
1449 }
1450 }
1451 });
1452 wallpaperButton.setOnLongClickListener(performClickOnLongClick);
1453 wallpaperButton.setOnTouchListener(getHapticFeedbackTouchListener());
1454
1455 // Bind widget button actions
1456 mWidgetsButton = findViewById(R.id.widget_button);
1457 mWidgetsButton.setOnClickListener(new OnClickListener() {
1458 @Override
1459 public void onClick(View view) {
1460 if (!mWorkspace.isSwitchingState()) {
1461 onClickAddWidgetButton(view);
1462 }
1463 }
1464 });
1465 mWidgetsButton.setOnLongClickListener(performClickOnLongClick);
1466 mWidgetsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1467
1468 // Bind settings actions
1469 View settingsButton = findViewById(R.id.settings_button);
1470 boolean hasSettings = hasSettings();
1471 if (hasSettings) {
1472 settingsButton.setOnClickListener(new OnClickListener() {
1473 @Override
1474 public void onClick(View view) {
1475 if (!mWorkspace.isSwitchingState()) {
1476 onClickSettingsButton(view);
1477 }
1478 }
1479 });
1480 settingsButton.setOnLongClickListener(performClickOnLongClick);
1481 settingsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1482 } else {
1483 settingsButton.setVisibility(View.GONE);
1484 }
1485
1486 mOverviewPanel.setAlpha(0f);
1487 }
1488
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001489 /**
Anjali Koppal5ad44842014-03-10 20:34:39 -07001490 * Sets the all apps button. This method is called from {@link Hotseat}.
1491 */
1492 public void setAllAppsButton(View allAppsButton) {
1493 mAllAppsButton = allAppsButton;
1494 }
1495
1496 public View getAllAppsButton() {
1497 return mAllAppsButton;
1498 }
1499
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001500 public View getWidgetsButton() {
1501 return mWidgetsButton;
1502 }
1503
Anjali Koppal5ad44842014-03-10 20:34:39 -07001504 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001505 * Creates a view representing a shortcut.
1506 *
1507 * @param info The data structure describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001508 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001509 View createShortcut(ShortcutInfo info) {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001510 return createShortcut((ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001511 }
1512
1513 /**
1514 * Creates a view representing a shortcut inflated from the specified resource.
1515 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001516 * @param parent The group the shortcut belongs to.
1517 * @param info The data structure describing the shortcut.
1518 *
1519 * @return A View inflated from layoutResId.
1520 */
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001521 public View createShortcut(ViewGroup parent, ShortcutInfo info) {
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001522 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(R.layout.app_icon,
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001523 parent, false);
1524 favorite.applyFromShortcutInfo(info, mIconCache);
1525 favorite.setCompoundDrawablePadding(mDeviceProfile.iconDrawablePaddingPx);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001526 favorite.setOnClickListener(this);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001527 favorite.setOnFocusChangeListener(mFocusHandler);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001528 return favorite;
1529 }
1530
1531 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001532 * Add a shortcut to the workspace.
1533 *
1534 * @param data The intent describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001535 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001536 private void completeAddShortcut(Intent data, long container, long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07001537 int cellY) {
1538 int[] cellXY = mTmpAddItemCellCoordinates;
1539 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohendcd297f2013-06-18 13:13:40 -07001540 CellLayout layout = getCellLayout(container, screenId);
Romain Guycbb89e42009-06-08 15:52:54 -07001541
Sunny Goyal5c97f512015-05-19 16:03:28 -07001542 ShortcutInfo info = InstallShortcutReceiver.fromShortcutIntent(this, data);
Adam Cohend9198822011-11-22 16:42:47 -08001543 if (info == null) {
1544 return;
1545 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001546 final View view = createShortcut(info);
1547
Sunny Goyal5c97f512015-05-19 16:03:28 -07001548 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001549 // First we check if we already know the exact location where we want to add this item.
1550 if (cellX >= 0 && cellY >= 0) {
1551 cellXY[0] = cellX;
1552 cellXY[1] = cellY;
1553 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001554
1555 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001556 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001557 true, null,null)) {
1558 return;
1559 }
1560 DragObject dragObject = new DragObject();
1561 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001562 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1563 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001564 return;
1565 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001566 } else if (touchXY != null) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08001567 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001568 int[] result = layout.findNearestVacantArea(touchXY[0], touchXY[1], 1, 1, cellXY);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001569 foundCellSpan = (result != null);
1570 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001571 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001572 }
1573
1574 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001575 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001576 return;
1577 }
1578
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001579 LauncherModel.addItemToDatabase(this, info, container, screenId, cellXY[0], cellXY[1]);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001580
1581 if (!mRestoring) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001582 mWorkspace.addInScreen(view, container, screenId, cellXY[0], cellXY[1], 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07001583 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001584 }
1585 }
1586
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001587 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001588 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001589 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001590 * @param appWidgetId The app widget id
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001591 */
Adam Cohen091440a2015-03-18 14:16:05 -07001592 @Thunk void completeAddAppWidget(int appWidgetId, long container, long screenId,
Adam Cohen59400422014-03-05 18:07:04 -08001593 AppWidgetHostView hostView, LauncherAppWidgetProviderInfo appWidgetInfo) {
1594
1595 ItemInfo info = mPendingAddInfo;
Adam Cohened66b2b2012-01-23 17:28:51 -08001596 if (appWidgetInfo == null) {
Adam Cohen59400422014-03-05 18:07:04 -08001597 appWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(this,
1598 mAppWidgetManager.getAppWidgetInfo(appWidgetId));
Adam Cohened66b2b2012-01-23 17:28:51 -08001599 }
Romain Guycbb89e42009-06-08 15:52:54 -07001600
Adam Cohen59400422014-03-05 18:07:04 -08001601 if (appWidgetInfo.isCustomWidget) {
1602 appWidgetId = LauncherAppWidgetInfo.CUSTOM_WIDGET_ID;
Michael Jurkaa63c4522010-08-19 13:52:27 -07001603 }
1604
Adam Cohen59400422014-03-05 18:07:04 -08001605 LauncherAppWidgetInfo launcherInfo;
1606 launcherInfo = new LauncherAppWidgetInfo(appWidgetId, appWidgetInfo.provider);
1607 launcherInfo.spanX = info.spanX;
1608 launcherInfo.spanY = info.spanY;
1609 launcherInfo.minSpanX = info.minSpanX;
1610 launcherInfo.minSpanY = info.minSpanY;
Sunny Goyalffe83f12014-08-14 17:39:34 -07001611 launcherInfo.user = mAppWidgetManager.getUser(appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001612
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001613 LauncherModel.addItemToDatabase(this, launcherInfo,
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001614 container, screenId, info.cellX, info.cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001615
1616 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001617 if (hostView == null) {
1618 // Perform actual inflation because we're live
Adam Cohen59400422014-03-05 18:07:04 -08001619 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId,
1620 appWidgetInfo);
Adam Cohened66b2b2012-01-23 17:28:51 -08001621 } else {
1622 // The AppWidgetHostView has already been inflated and instantiated
1623 launcherInfo.hostView = hostView;
1624 }
Adam Cohend41fbf52012-02-16 23:53:59 -08001625 launcherInfo.hostView.setVisibility(View.VISIBLE);
Sunny Goyal25c2e3e2015-10-28 23:28:21 -07001626 addAppWidgetToWorkspace(launcherInfo, appWidgetInfo, isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001627 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001628 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001629 }
Romain Guycbb89e42009-06-08 15:52:54 -07001630
Sunny Goyal25c2e3e2015-10-28 23:28:21 -07001631 private void addAppWidgetToWorkspace(LauncherAppWidgetInfo item,
1632 LauncherAppWidgetProviderInfo appWidgetInfo, boolean insert) {
1633 item.hostView.setTag(item);
1634 item.onBindAppWidget(this);
1635
1636 item.hostView.setFocusable(true);
1637 item.hostView.setOnFocusChangeListener(mFocusHandler);
1638
1639 mWorkspace.addInScreen(item.hostView, item.container, item.screenId,
1640 item.cellX, item.cellY, item.spanX, item.spanY, insert);
1641
1642 if (!item.isCustomWidget()) {
1643 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
1644 }
1645 }
1646
Adam Cohended9f8d2010-11-03 13:25:16 -07001647 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1648 @Override
1649 public void onReceive(Context context, Intent intent) {
1650 final String action = intent.getAction();
1651 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1652 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001653 mDragLayer.clearAllResizeFrames();
Winson Chungb745afb2015-03-02 11:51:23 -08001654 updateAutoAdvanceState();
Winson Chung337cd9d2011-03-30 10:39:30 -07001655
Winson Chungc100e8e2011-08-09 16:02:43 -07001656 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001657 // processing a multi-step drop
Hyunyoung Song3f471442015-04-08 19:01:34 -07001658 if (mAppsView != null && mWidgetsView != null &&
Winson Chungb745afb2015-03-02 11:51:23 -08001659 mPendingAddInfo.container == ItemInfo.NO_ID) {
Winson5c6bdbb2015-09-03 11:36:19 -07001660 if (!showWorkspace(false)) {
1661 // If we are already on the workspace, then manually reset all apps
1662 mAppsView.reset();
1663 }
Winson Chung785d2eb2011-04-14 16:08:02 -07001664 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001665 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1666 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08001667 updateAutoAdvanceState();
Dan Sandlerd5024042014-01-09 15:01:33 -05001668 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.DELETE_DATABASE.equals(action)) {
1669 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001670 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001671 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE);
1672 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.MIGRATE_DATABASE.equals(action)) {
1673 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001674 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001675 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE
1676 | LauncherModel.LOADER_FLAG_MIGRATE_SHORTCUTS);
Adam Cohended9f8d2010-11-03 13:25:16 -07001677 }
1678 }
1679 };
1680
1681 @Override
1682 public void onAttachedToWindow() {
1683 super.onAttachedToWindow();
1684
1685 // Listen for broadcasts related to user-presence
1686 final IntentFilter filter = new IntentFilter();
1687 filter.addAction(Intent.ACTION_SCREEN_OFF);
1688 filter.addAction(Intent.ACTION_USER_PRESENT);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001689 // For handling managed profiles
Dan Sandlerd5024042014-01-09 15:01:33 -05001690 if (ENABLE_DEBUG_INTENTS) {
1691 filter.addAction(DebugIntents.DELETE_DATABASE);
1692 filter.addAction(DebugIntents.MIGRATE_DATABASE);
1693 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001694 registerReceiver(mReceiver, filter);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001695 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Adam Cohend113e0c2010-11-11 10:48:05 -08001696 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001697 mVisible = true;
1698 }
1699
1700 @Override
1701 public void onDetachedFromWindow() {
1702 super.onDetachedFromWindow();
1703 mVisible = false;
1704
Adam Cohend113e0c2010-11-11 10:48:05 -08001705 if (mAttached) {
1706 unregisterReceiver(mReceiver);
1707 mAttached = false;
1708 }
Winson Chungb745afb2015-03-02 11:51:23 -08001709 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001710 }
1711
1712 public void onWindowVisibilityChanged(int visibility) {
1713 mVisible = visibility == View.VISIBLE;
Winson Chungb745afb2015-03-02 11:51:23 -08001714 updateAutoAdvanceState();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001715 // The following code used to be in onResume, but it turns out onResume is called when
1716 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1717 // is a more appropriate event to handle
1718 if (mVisible) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001719 if (!mWorkspaceLoading) {
1720 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001721 // We want to let Launcher draw itself at least once before we force it to build
1722 // layers on all the workspace pages, so that transitioning to Launcher from other
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001723 // apps is nice and speedy.
1724 observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001725 private boolean mStarted = false;
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001726 public void onDraw() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001727 if (mStarted) return;
1728 mStarted = true;
Michael Jurka6ee21d22012-02-21 18:20:27 -08001729 // We delay the layer building a bit in order to give
1730 // other message processing a time to run. In particular
1731 // this avoids a delay in hiding the IME if it was
1732 // currently shown, because doing that may involve
1733 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001734 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurkadf96add2013-04-03 16:25:02 -07001735 final ViewTreeObserver.OnDrawListener listener = this;
1736 mWorkspace.post(new Runnable() {
Tony Wickhama0628cc2015-10-14 15:23:04 -07001737 public void run() {
1738 if (mWorkspace != null &&
1739 mWorkspace.getViewTreeObserver() != null) {
1740 mWorkspace.getViewTreeObserver().
1741 removeOnDrawListener(listener);
Michael Jurkadf96add2013-04-03 16:25:02 -07001742 }
Tony Wickhama0628cc2015-10-14 15:23:04 -07001743 }
1744 });
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001745 return;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001746 }
1747 });
1748 }
1749 clearTypedText();
1750 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001751 }
1752
Adam Cohen091440a2015-03-18 14:16:05 -07001753 @Thunk void sendAdvanceMessage(long delay) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001754 mHandler.removeMessages(ADVANCE_MSG);
1755 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1756 mHandler.sendMessageDelayed(msg, delay);
1757 mAutoAdvanceSentTime = System.currentTimeMillis();
1758 }
1759
Adam Cohen091440a2015-03-18 14:16:05 -07001760 @Thunk void updateAutoAdvanceState() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001761 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1762 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1763 mAutoAdvanceRunning = autoAdvanceRunning;
1764 if (autoAdvanceRunning) {
1765 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1766 sendAdvanceMessage(delay);
1767 } else {
1768 if (!mWidgetsToAdvance.isEmpty()) {
1769 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1770 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1771 }
1772 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001773 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001774 }
1775 }
1776 }
1777
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001778 @Thunk final Handler mHandler = new Handler(new Handler.Callback() {
1779
Adam Cohended9f8d2010-11-03 13:25:16 -07001780 @Override
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001781 public boolean handleMessage(Message msg) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001782 if (msg.what == ADVANCE_MSG) {
1783 int i = 0;
1784 for (View key: mWidgetsToAdvance.keySet()) {
1785 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1786 final int delay = mAdvanceStagger * i;
1787 if (v instanceof Advanceable) {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001788 mHandler.postDelayed(new Runnable() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001789 public void run() {
1790 ((Advanceable) v).advance();
1791 }
1792 }, delay);
1793 }
1794 i++;
1795 }
1796 sendAdvanceMessage(mAdvanceInterval);
1797 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001798 return true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001799 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001800 });
Adam Cohended9f8d2010-11-03 13:25:16 -07001801
Winsonc0b52fe2015-09-09 16:38:15 -07001802 private void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001803 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001804 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1805 if (v instanceof Advanceable) {
1806 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001807 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Winson Chungb745afb2015-03-02 11:51:23 -08001808 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001809 }
1810 }
1811
Winsonc0b52fe2015-09-09 16:38:15 -07001812 private void removeWidgetToAutoAdvance(View hostView) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001813 if (mWidgetsToAdvance.containsKey(hostView)) {
1814 mWidgetsToAdvance.remove(hostView);
Winson Chungb745afb2015-03-02 11:51:23 -08001815 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001816 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001817 }
1818
Hyunyoung Song3f471442015-04-08 19:01:34 -07001819 public void showOutOfSpaceMessage(boolean isHotseatLayout) {
Winson Chung93eef082012-03-23 15:59:27 -07001820 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1821 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001822 }
1823
Winson Chunga6945242014-01-08 14:04:34 -08001824 public DragLayer getDragLayer() {
1825 return mDragLayer;
1826 }
1827
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001828 public AllAppsContainerView getAppsView() {
Winson Chungb745afb2015-03-02 11:51:23 -08001829 return mAppsView;
1830 }
1831
Hyunyoung Song3f471442015-04-08 19:01:34 -07001832 public WidgetsContainerView getWidgetsView() {
1833 return mWidgetsView;
Winson Chungb745afb2015-03-02 11:51:23 -08001834 }
1835
Winson Chunga6945242014-01-08 14:04:34 -08001836 public Workspace getWorkspace() {
1837 return mWorkspace;
1838 }
1839
1840 public Hotseat getHotseat() {
1841 return mHotseat;
1842 }
1843
Jorim Jaggid017f882014-01-14 17:08:48 -08001844 public ViewGroup getOverviewPanel() {
Winson Chunga6945242014-01-08 14:04:34 -08001845 return mOverviewPanel;
1846 }
1847
Winson Chung006ee262015-08-03 14:40:11 -07001848 public SearchDropTargetBar getSearchDropTargetBar() {
Winson Chunga6945242014-01-08 14:04:34 -08001849 return mSearchDropTargetBar;
1850 }
1851
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001852 public LauncherAppWidgetHost getAppWidgetHost() {
1853 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001854 }
Romain Guycbb89e42009-06-08 15:52:54 -07001855
Winson Chunga9abd0e2010-10-27 17:18:37 -07001856 public LauncherModel getModel() {
1857 return mModel;
1858 }
1859
Winson Chunga6945242014-01-08 14:04:34 -08001860 protected SharedPreferences getSharedPrefs() {
1861 return mSharedPrefs;
1862 }
1863
Adam Cohen2e6da152015-05-06 11:42:25 -07001864 public DeviceProfile getDeviceProfile() {
1865 return mDeviceProfile;
1866 }
1867
Bjorn Bringertc459e522013-06-07 19:36:01 +01001868 public void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001869 getWindow().closeAllPanels();
1870
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001871 // Whatever we were doing is hereby canceled.
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001872 setWaitingForResult(false);
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001873 }
1874
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001875 @Override
1876 protected void onNewIntent(Intent intent) {
Michael Jurka447bf842013-05-15 14:52:15 +02001877 long startTime = 0;
1878 if (DEBUG_RESUME_TIME) {
1879 startTime = System.currentTimeMillis();
1880 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001881 super.onNewIntent(intent);
1882
1883 // Close the menu
Winson15f8b172015-08-19 11:02:39 -07001884 Folder openFolder = mWorkspace.getOpenFolder();
1885 boolean alreadyOnHome = mHasFocus && ((intent.getFlags() &
1886 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1887 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
1888 boolean isActionMain = Intent.ACTION_MAIN.equals(intent.getAction());
1889 if (isActionMain) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001890 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001891 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001892
Adam Cohen6fecd412013-10-02 17:41:50 -07001893 if (mWorkspace == null) {
1894 // Can be cases where mWorkspace is null, this prevents a NPE
1895 return;
1896 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001897 // In all these cases, only animate if we're already on home
1898 mWorkspace.exitWidgetResizeMode();
Adam Cohen9211d422014-10-07 18:14:53 -07001899
Sunny Goyal935fca12015-10-13 10:19:01 -07001900 closeFolder(alreadyOnHome);
Adam Cohen6fecd412013-10-02 17:41:50 -07001901 exitSpringLoadedDragMode();
1902
1903 // If we are already on home, then just animate back to the workspace,
1904 // otherwise, just wait until onResume to set the state back to Workspace
1905 if (alreadyOnHome) {
Adam Cohened307df2013-10-02 09:37:31 -07001906 showWorkspace(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001907 } else {
1908 mOnResumeState = State.WORKSPACE;
1909 }
1910
1911 final View v = getWindow().peekDecorView();
1912 if (v != null && v.getWindowToken() != null) {
Tonyc17390962015-10-25 17:39:37 -07001913 InputMethodManager imm = (InputMethodManager) getSystemService(
Adam Cohen6fecd412013-10-02 17:41:50 -07001914 INPUT_METHOD_SERVICE);
1915 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1916 }
1917
Winson Chungb745afb2015-03-02 11:51:23 -08001918 // Reset the apps view
1919 if (!alreadyOnHome && mAppsView != null) {
1920 mAppsView.scrollToTop();
1921 }
1922
Hyunyoung Song3f471442015-04-08 19:01:34 -07001923 // Reset the widgets view
1924 if (!alreadyOnHome && mWidgetsView != null) {
1925 mWidgetsView.scrollToTop();
Adam Cohen6fecd412013-10-02 17:41:50 -07001926 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001927
Adam Cohen9211d422014-10-07 18:14:53 -07001928 if (mLauncherCallbacks != null) {
1929 mLauncherCallbacks.onHomeIntent();
1930 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001931 }
Adam Cohened307df2013-10-02 09:37:31 -07001932
Adam Cohen9211d422014-10-07 18:14:53 -07001933 if (mLauncherCallbacks != null) {
1934 mLauncherCallbacks.onNewIntent(intent);
1935 }
Winson15f8b172015-08-19 11:02:39 -07001936
1937 // Defer moving to the default screen until after we callback to the LauncherCallbacks
1938 // as slow logic in the callbacks eat into the time the scroller expects for the snapToPage
1939 // animation.
1940 if (isActionMain) {
Ivan Lee667d6882015-09-03 10:16:07 -06001941 boolean moveToDefaultScreen = mLauncherCallbacks != null ?
1942 mLauncherCallbacks.shouldMoveToDefaultScreenOnHomeIntent() : true;
Winson15f8b172015-08-19 11:02:39 -07001943 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
1944 openFolder == null && moveToDefaultScreen) {
Adam Cohen4b66bf32015-09-18 12:15:19 -07001945
1946 // We use this flag to suppress noisy callbacks above custom content state
1947 // from onResume.
1948 mMoveToDefaultScreenFromNewIntent = true;
Winson15f8b172015-08-19 11:02:39 -07001949 mWorkspace.post(new Runnable() {
1950 @Override
1951 public void run() {
Tonyc17390962015-10-25 17:39:37 -07001952 if (mWorkspace != null) {
1953 mWorkspace.moveToDefaultScreen(true);
1954 }
Winson15f8b172015-08-19 11:02:39 -07001955 }
1956 });
1957 }
1958 }
1959
1960 if (DEBUG_RESUME_TIME) {
1961 Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime));
1962 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001963 }
1964
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001965 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001966 public void onRestoreInstanceState(Bundle state) {
1967 super.onRestoreInstanceState(state);
1968 for (int page: mSynchronouslyBoundPages) {
1969 mWorkspace.restoreInstanceStateForChild(page);
1970 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001971 }
1972
1973 @Override
1974 protected void onSaveInstanceState(Bundle outState) {
Adam Cohen21cd0022013-10-09 18:57:02 -07001975 if (mWorkspace.getChildCount() > 0) {
Winson Chung9b9fb962013-11-15 15:39:34 -08001976 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN,
1977 mWorkspace.getCurrentPageOffsetFromCustomContent());
Adam Cohen21cd0022013-10-09 18:57:02 -07001978 }
Adam Cohen95bb8002011-07-03 23:40:28 -07001979 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001980
Michael Jurka883f55b2010-10-21 15:47:14 -07001981 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001982 // We close any open folder since it will not be re-opened, and we need to make sure
1983 // this state is reflected.
Sunny Goyal935fca12015-10-13 10:19:01 -07001984 closeFolder(false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001985
Adam Cohendcd297f2013-06-18 13:13:40 -07001986 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screenId > -1 &&
Winson Chung3d503fb2011-07-13 17:25:49 -07001987 mWaitingForResult) {
1988 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
Adam Cohendcd297f2013-06-18 13:13:40 -07001989 outState.putLong(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screenId);
Winson Chung3d503fb2011-07-13 17:25:49 -07001990 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1991 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001992 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_X, mPendingAddInfo.spanX);
1993 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y, mPendingAddInfo.spanY);
1994 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
Adam Cohen4637b5a2013-11-04 18:21:24 -08001995 outState.putInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID, mPendingAddWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001996 }
1997
Hyunyoung Song3f471442015-04-08 19:01:34 -07001998 // Save the current widgets tray?
1999 // TODO(hyunyoungs)
Adam Cohen9211d422014-10-07 18:14:53 -07002000
2001 if (mLauncherCallbacks != null) {
2002 mLauncherCallbacks.onSaveInstanceState(outState);
2003 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002004 }
2005
2006 @Override
2007 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002008 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07002009
Winson Chunge7a03942011-08-05 15:05:12 -07002010 // Remove all pending runnables
2011 mHandler.removeMessages(ADVANCE_MSG);
2012 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07002013 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07002014
Winson Chungcd2b0142011-06-08 16:02:26 -07002015 // Stop callbacks from LauncherModel
Daniel Sandlercc8befa2013-06-11 14:45:48 -04002016 LauncherAppState app = (LauncherAppState.getInstance());
Adam Cohen1a85c582014-09-30 09:48:49 -07002017
2018 // It's possible to receive onDestroy after a new Launcher activity has
2019 // been created. In this case, don't interfere with the new Launcher.
2020 if (mModel.isCurrentCallbacks(this)) {
2021 mModel.stopLoader();
2022 app.setLauncher(null);
2023 }
Winson Chungcd2b0142011-06-08 16:02:26 -07002024
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002025 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07002026 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002027 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002028 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002029 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002030 mAppWidgetHost = null;
2031
2032 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002033
2034 TextKeyListener.getInstance().release();
2035
Joe Onorato34a0e1b2009-12-14 17:44:51 -08002036 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002037
Adam Cohenaccf3bf2012-04-30 16:07:43 -07002038 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002039 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
Adam Cohend552dd92013-11-26 12:13:11 -08002040 mWorkspace.removeAllWorkspaceScreens();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002041 mWorkspace = null;
2042 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08002043
Michael Jurka2ecf9952012-06-18 12:52:28 -07002044 LauncherAnimUtils.onDestroyActivity();
Adam Cohen9211d422014-10-07 18:14:53 -07002045
2046 if (mLauncherCallbacks != null) {
2047 mLauncherCallbacks.onDestroy();
2048 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002049 }
2050
Adam Cohena9cf38f2011-05-02 15:36:58 -07002051 public DragController getDragController() {
2052 return mDragController;
2053 }
2054
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002055 @Override
2056 public void startActivityForResult(Intent intent, int requestCode) {
Adam Cohen173f7112015-03-27 15:14:00 -07002057 onStartForResult(requestCode);
2058 super.startActivityForResult(intent, requestCode);
2059 }
2060
2061 @Override
2062 public void startIntentSenderForResult (IntentSender intent, int requestCode,
2063 Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) {
2064 onStartForResult(requestCode);
2065 try {
2066 super.startIntentSenderForResult(intent, requestCode,
2067 fillInIntent, flagsMask, flagsValues, extraFlags, options);
2068 } catch (IntentSender.SendIntentException e) {
2069 throw new ActivityNotFoundException();
2070 }
2071 }
2072
2073 private void onStartForResult(int requestCode) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002074 if (requestCode >= 0) {
2075 setWaitingForResult(true);
2076 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002077 }
2078
Winson Chung70d72102011-08-12 11:24:35 -07002079 /**
2080 * Indicates that we want global search for this activity by setting the globalSearch
2081 * argument for {@link #startSearch} to true.
2082 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002083 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07002084 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002085 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002086
Karl Rosaen138a0412009-04-23 19:00:21 -07002087 if (initialQuery == null) {
2088 // Use any text typed in the launcher as the initial query
2089 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07002090 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002091 if (appSearchData == null) {
2092 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01002093 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002094 }
Winson Chungadf0c182012-08-23 14:59:07 -07002095 Rect sourceBounds = new Rect();
2096 if (mSearchDropTargetBar != null) {
2097 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
2098 }
Romain Guycbb89e42009-06-08 15:52:54 -07002099
Ian Parkinson047036e2014-09-01 15:40:53 +01002100 boolean clearTextImmediately = startSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002101 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002102 if (clearTextImmediately) {
2103 clearTypedText();
2104 }
Winson Chungcd99cd32015-04-29 11:03:24 -07002105
2106 // We need to show the workspace after starting the search
2107 showWorkspace(true);
Bjorn Bringertc459e522013-06-07 19:36:01 +01002108 }
2109
Ian Parkinson047036e2014-09-01 15:40:53 +01002110 /**
2111 * Start a text search.
2112 *
2113 * @return {@code true} if the search will start immediately, so any further keypresses
2114 * will be handled directly by the search UI. {@code false} if {@link Launcher} should continue
2115 * to buffer keypresses.
2116 */
2117 public boolean startSearch(String initialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002118 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Adam Cohen9211d422014-10-07 18:14:53 -07002119 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
2120 return mLauncherCallbacks.startSearch(initialQuery, selectInitialQuery, appSearchData,
2121 sourceBounds);
2122 }
2123
Michael Jurkaa33411c2012-06-14 16:18:21 -07002124 startGlobalSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002125 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002126 return false;
Michael Jurkaa33411c2012-06-14 16:18:21 -07002127 }
2128
2129 /**
2130 * Starts the global search activity. This code is a copied from SearchManager
2131 */
Bjorn Bringertc459e522013-06-07 19:36:01 +01002132 private void startGlobalSearch(String initialQuery,
Michael Jurkaa33411c2012-06-14 16:18:21 -07002133 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002134 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07002135 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2136 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
2137 if (globalSearchActivity == null) {
2138 Log.w(TAG, "No global search activity found.");
2139 return;
2140 }
2141 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
2142 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2143 intent.setComponent(globalSearchActivity);
2144 // Make sure that we have a Bundle to put source in
2145 if (appSearchData == null) {
2146 appSearchData = new Bundle();
2147 } else {
2148 appSearchData = new Bundle(appSearchData);
2149 }
Adam Cohen9211d422014-10-07 18:14:53 -07002150 // Set source to package name of app that starts global search if not set already.
Michael Jurkaa33411c2012-06-14 16:18:21 -07002151 if (!appSearchData.containsKey("source")) {
2152 appSearchData.putString("source", getPackageName());
2153 }
2154 intent.putExtra(SearchManager.APP_DATA, appSearchData);
2155 if (!TextUtils.isEmpty(initialQuery)) {
2156 intent.putExtra(SearchManager.QUERY, initialQuery);
2157 }
2158 if (selectInitialQuery) {
2159 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
2160 }
2161 intent.setSourceBounds(sourceBounds);
2162 try {
2163 startActivity(intent);
2164 } catch (ActivityNotFoundException ex) {
2165 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
2166 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002167 }
2168
Winson Chungbedf9232015-07-10 12:38:30 -07002169 public void startSearchFromAllApps(View v, Intent searchIntent, String searchQuery) {
2170 if (mLauncherCallbacks != null && mLauncherCallbacks.startSearchFromAllApps(searchQuery)) {
2171 return;
2172 }
2173
2174 // If not handled, then just start the provided search intent
2175 startActivitySafely(v, searchIntent, null);
2176 }
2177
Yura4f93ec62014-02-04 14:15:21 +00002178 public boolean isOnCustomContent() {
2179 return mWorkspace.isOnOrMovingToCustomContent();
2180 }
2181
Winson Chung70d72102011-08-12 11:24:35 -07002182 @Override
Winson Chung70d72102011-08-12 11:24:35 -07002183 public boolean onPrepareOptionsMenu(Menu menu) {
2184 super.onPrepareOptionsMenu(menu);
Adam Cohen9211d422014-10-07 18:14:53 -07002185 if (mLauncherCallbacks != null) {
2186 return mLauncherCallbacks.onPrepareOptionsMenu(menu);
2187 }
Michael Jurkab94f3f82013-09-11 18:08:54 +02002188 return false;
Winson Chung70d72102011-08-12 11:24:35 -07002189 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002190
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002191 @Override
2192 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07002193 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07002194 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07002195 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002196 }
2197
Joe Onorato9c1289c2009-08-17 11:03:03 -04002198 public boolean isWorkspaceLocked() {
2199 return mWorkspaceLoading || mWaitingForResult;
2200 }
2201
Adam Cohen517a7f52014-03-01 12:12:59 -08002202 public boolean isWorkspaceLoading() {
2203 return mWorkspaceLoading;
2204 }
2205
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002206 private void setWorkspaceLoading(boolean value) {
2207 boolean isLocked = isWorkspaceLocked();
2208 mWorkspaceLoading = value;
2209 if (isLocked != isWorkspaceLocked()) {
2210 onWorkspaceLockedChanged();
2211 }
2212 }
2213
2214 private void setWaitingForResult(boolean value) {
2215 boolean isLocked = isWorkspaceLocked();
2216 mWaitingForResult = value;
2217 if (isLocked != isWorkspaceLocked()) {
2218 onWorkspaceLockedChanged();
2219 }
2220 }
2221
Adam Cohen9211d422014-10-07 18:14:53 -07002222 protected void onWorkspaceLockedChanged() {
2223 if (mLauncherCallbacks != null) {
2224 mLauncherCallbacks.onWorkspaceLockedChanged();
2225 }
2226 }
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002227
Michael Jurka0280c3b2010-09-17 15:00:07 -07002228 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07002229 mPendingAddInfo.container = ItemInfo.NO_ID;
Adam Cohendcd297f2013-06-18 13:13:40 -07002230 mPendingAddInfo.screenId = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002231 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
2232 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Sunny Goyal233ee962015-08-03 13:05:01 -07002233 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = 1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002234 mPendingAddInfo.dropPos = null;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002235 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07002236
Tony Wickhama0628cc2015-10-14 15:23:04 -07002237 void addAppWidgetFromDropImpl(final int appWidgetId, final ItemInfo info, final
Adam Cohen59400422014-03-05 18:07:04 -08002238 AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo) {
Tony Wickhama0628cc2015-10-14 15:23:04 -07002239 if (LOGD) {
2240 Log.d(TAG, "Adding widget from drop");
2241 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07002242 addAppWidgetImpl(appWidgetId, info, boundWidget, appWidgetInfo, 0);
2243 }
2244
Sunny Goyale6b63a32015-01-16 16:14:29 -08002245 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
Adam Cohen59400422014-03-05 18:07:04 -08002246 final AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo,
2247 int delay) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002248 if (appWidgetInfo.configure != null) {
2249 mPendingAddWidgetInfo = appWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -08002250 mPendingAddWidgetId = appWidgetId;
Michael Jurkaaf442092010-06-10 17:01:57 -07002251
Bjorn Bringert7984c942009-12-09 15:38:25 +00002252 // Launch over to configure widget, if needed
Sunny Goyalffe83f12014-08-14 17:39:34 -07002253 mAppWidgetManager.startConfigActivity(appWidgetInfo, appWidgetId, this,
2254 mAppWidgetHost, REQUEST_CREATE_APPWIDGET);
2255
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002256 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00002257 // Otherwise just add it
Adam Cohenad4e15c2013-10-17 16:21:35 -07002258 Runnable onComplete = new Runnable() {
2259 @Override
2260 public void run() {
2261 // Exit spring loaded mode if necessary after adding the widget
2262 exitSpringLoadedDragModeDelayed(true, EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT,
2263 null);
2264 }
2265 };
Adam Cohendcd297f2013-06-18 13:13:40 -07002266 completeAddAppWidget(appWidgetId, info.container, info.screenId, boundWidget,
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002267 appWidgetInfo);
Adam Cohen689ff162014-05-08 17:27:56 -07002268 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, delay, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002269 }
2270 }
Romain Guycbb89e42009-06-08 15:52:54 -07002271
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002272 protected void moveToCustomContentScreen(boolean animate) {
Sandeep Siddharthaf2b47f12013-09-26 19:49:27 -07002273 // Close any folders that may be open.
2274 closeFolder();
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002275 mWorkspace.moveToCustomContentScreen(animate);
2276 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002277
2278 public void addPendingItem(PendingAddItemInfo info, long container, long screenId,
2279 int[] cell, int spanX, int spanY) {
2280 switch (info.itemType) {
2281 case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET:
2282 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
2283 int span[] = new int[2];
2284 span[0] = spanX;
2285 span[1] = spanY;
2286 addAppWidgetFromDrop((PendingAddWidgetInfo) info,
2287 container, screenId, cell, span);
2288 break;
2289 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
2290 processShortcutFromDrop(info.componentName, container, screenId, cell);
2291 break;
2292 default:
2293 throw new IllegalStateException("Unknown item type: " + info.itemType);
2294 }
2295 }
2296
Adam Cohenfbba09b2011-07-18 21:43:05 -07002297 /**
2298 * Process a shortcut drop.
2299 *
2300 * @param componentName The name of the component
Adam Cohendcd297f2013-06-18 13:13:40 -07002301 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002302 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002303 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002304 private void processShortcutFromDrop(ComponentName componentName, long container, long screenId,
2305 int[] cell) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002306 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002307 mPendingAddInfo.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002308 mPendingAddInfo.screenId = screenId;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002309 mPendingAddInfo.dropPos = null;
Adam Cohenfbba09b2011-07-18 21:43:05 -07002310
2311 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002312 mPendingAddInfo.cellX = cell[0];
2313 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002314 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002315
2316 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
2317 createShortcutIntent.setComponent(componentName);
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002318 Utilities.startActivityForResultSafely(this, createShortcutIntent, REQUEST_CREATE_SHORTCUT);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002319 }
2320
Adam Cohenfbba09b2011-07-18 21:43:05 -07002321 /**
2322 * Process a widget drop.
2323 *
2324 * @param info The PendingAppWidgetInfo of the widget being added.
Adam Cohendcd297f2013-06-18 13:13:40 -07002325 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002326 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002327 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002328 private void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, long screenId,
2329 int[] cell, int[] span) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07002330 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002331 mPendingAddInfo.container = info.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002332 mPendingAddInfo.screenId = info.screenId = screenId;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002333 mPendingAddInfo.dropPos = null;
Adam Cohend41fbf52012-02-16 23:53:59 -08002334 mPendingAddInfo.minSpanX = info.minSpanX;
2335 mPendingAddInfo.minSpanY = info.minSpanY;
2336
Adam Cohenfbba09b2011-07-18 21:43:05 -07002337 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002338 mPendingAddInfo.cellX = cell[0];
2339 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002340 }
Adam Cohend41fbf52012-02-16 23:53:59 -08002341 if (span != null) {
2342 mPendingAddInfo.spanX = span[0];
2343 mPendingAddInfo.spanY = span[1];
2344 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002345
Adam Cohened66b2b2012-01-23 17:28:51 -08002346 AppWidgetHostView hostView = info.boundWidget;
2347 int appWidgetId;
2348 if (hostView != null) {
Tony Wickhama0628cc2015-10-14 15:23:04 -07002349 // In the case where we've prebound the widget, we remove it from the DragLayer
2350 if (LOGD) {
2351 Log.d(TAG, "Removing widget view from drag layer and setting boundWidget to null");
2352 }
2353 getDragLayer().removeView(hostView);
2354
Adam Cohened66b2b2012-01-23 17:28:51 -08002355 appWidgetId = hostView.getAppWidgetId();
Tony Wickhama0628cc2015-10-14 15:23:04 -07002356 addAppWidgetFromDropImpl(appWidgetId, info, hostView, info.info);
Sunny Goyal5b9ebca2015-06-01 18:37:32 -07002357
2358 // Clear the boundWidget so that it doesn't get destroyed.
2359 info.boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -08002360 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002361 // In this case, we either need to start an activity to get permission to bind
2362 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08002363 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07002364 Bundle options = info.bindOptions;
2365
Sunny Goyalffe83f12014-08-14 17:39:34 -07002366 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
2367 appWidgetId, info.info, options);
Adam Cohendd70d662012-10-04 16:53:44 -07002368 if (success) {
Tony Wickhama0628cc2015-10-14 15:23:04 -07002369 addAppWidgetFromDropImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07002370 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002371 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07002372 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
2373 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
2374 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Sunny Goyalffe83f12014-08-14 17:39:34 -07002375 mAppWidgetManager.getUser(mPendingAddWidgetInfo)
2376 .addToIntent(intent, AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE);
Adam Cohendd70d662012-10-04 16:53:44 -07002377 // TODO: we need to make sure that this accounts for the options bundle.
2378 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07002379 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
2380 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002381 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002382 }
2383
Adam Cohendcd297f2013-06-18 13:13:40 -07002384 FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07002385 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07002386 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002387 folderInfo.title = getText(R.string.folder_name);
2388
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002389 // Update the model
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07002390 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId,
2391 cellX, cellY);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002392 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002393
2394 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07002395 FolderIcon newFolder =
2396 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07002397 mWorkspace.addInScreen(newFolder, container, screenId, cellX, cellY, 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07002398 isWorkspaceLocked());
Winson Chung5f8afe62013-08-12 16:19:28 -07002399 // Force measure the new folder icon
2400 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
2401 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07002402 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002403 }
Romain Guycbb89e42009-06-08 15:52:54 -07002404
Winsonc0b52fe2015-09-09 16:38:15 -07002405 /**
Winsonfa56b3f2015-09-14 12:01:13 -07002406 * Unbinds the view for the specified item, and removes the item and all its children.
2407 *
2408 * @param v the view being removed.
Winsonfa56b3f2015-09-14 12:01:13 -07002409 * @param itemInfo the {@link ItemInfo} for this view.
2410 * @param deleteFromDb whether or not to delete this item from the db.
Winsonc0b52fe2015-09-09 16:38:15 -07002411 */
Winson2949fb52015-09-24 09:56:11 -07002412 public boolean removeItem(View v, ItemInfo itemInfo, boolean deleteFromDb) {
Winsonc0b52fe2015-09-09 16:38:15 -07002413 if (itemInfo instanceof ShortcutInfo) {
Winsonfa56b3f2015-09-14 12:01:13 -07002414 // Remove the shortcut from the folder before removing it from launcher
Winson2949fb52015-09-24 09:56:11 -07002415 FolderInfo folderInfo = sFolders.get(itemInfo.container);
2416 if (folderInfo != null) {
2417 folderInfo.remove((ShortcutInfo) itemInfo);
Winsonfa56b3f2015-09-14 12:01:13 -07002418 } else {
2419 mWorkspace.removeWorkspaceItem(v);
2420 }
Winsonc0b52fe2015-09-09 16:38:15 -07002421 if (deleteFromDb) {
2422 LauncherModel.deleteItemFromDatabase(this, itemInfo);
2423 }
2424 } else if (itemInfo instanceof FolderInfo) {
2425 final FolderInfo folderInfo = (FolderInfo) itemInfo;
2426 unbindFolder(folderInfo);
2427 mWorkspace.removeWorkspaceItem(v);
2428 if (deleteFromDb) {
2429 LauncherModel.deleteFolderAndContentsFromDatabase(this, folderInfo);
2430 }
2431 } else if (itemInfo instanceof LauncherAppWidgetInfo) {
2432 final LauncherAppWidgetInfo widgetInfo = (LauncherAppWidgetInfo) itemInfo;
Winson44818e02015-10-02 11:25:46 -07002433 mWorkspace.removeWorkspaceItem(v);
Sunny Goyal56c73602015-09-25 12:55:01 -07002434 removeWidgetToAutoAdvance(widgetInfo.hostView);
2435 widgetInfo.hostView = null;
Winsonc0b52fe2015-09-09 16:38:15 -07002436 if (deleteFromDb) {
Sunny Goyal56c73602015-09-25 12:55:01 -07002437 deleteWidgetInfo(widgetInfo);
Winsonc0b52fe2015-09-09 16:38:15 -07002438 }
Sunny Goyal56c73602015-09-25 12:55:01 -07002439
Winsonc0b52fe2015-09-09 16:38:15 -07002440 } else {
2441 return false;
2442 }
2443 return true;
2444 }
2445
2446 /**
2447 * Unbinds any launcher references to the folder.
2448 */
2449 private void unbindFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002450 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002451 }
2452
Winsonc0b52fe2015-09-09 16:38:15 -07002453 /**
Sunny Goyal56c73602015-09-25 12:55:01 -07002454 * Deletes the widget info and the widget id.
Winsonc0b52fe2015-09-09 16:38:15 -07002455 */
Sunny Goyal56c73602015-09-25 12:55:01 -07002456 private void deleteWidgetInfo(final LauncherAppWidgetInfo widgetInfo) {
Winsonc0b52fe2015-09-09 16:38:15 -07002457 final LauncherAppWidgetHost appWidgetHost = getAppWidgetHost();
Sunny Goyal56c73602015-09-25 12:55:01 -07002458 if (appWidgetHost != null && !widgetInfo.isCustomWidget() && widgetInfo.isWidgetIdValid()) {
Winsonc0b52fe2015-09-09 16:38:15 -07002459 // Deleting an app widget ID is a void call but writes to disk before returning
2460 // to the caller...
2461 new AsyncTask<Void, Void, Void>() {
2462 public Void doInBackground(Void ... args) {
2463 appWidgetHost.deleteAppWidgetId(widgetInfo.appWidgetId);
2464 return null;
2465 }
Sunny Goyalf27cb0e2015-09-23 16:12:02 -07002466 }.executeOnExecutor(Utilities.THREAD_POOL_EXECUTOR);
Winsonc0b52fe2015-09-09 16:38:15 -07002467 }
Sunny Goyal56c73602015-09-25 12:55:01 -07002468 LauncherModel.deleteItemFromDatabase(this, widgetInfo);
Winsonc0b52fe2015-09-09 16:38:15 -07002469 }
2470
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002471 @Override
2472 public boolean dispatchKeyEvent(KeyEvent event) {
2473 if (event.getAction() == KeyEvent.ACTION_DOWN) {
2474 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002475 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07002476 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08002477 case KeyEvent.KEYCODE_VOLUME_DOWN:
Sunny Goyal4bbf4192014-11-11 12:23:59 -08002478 if (Utilities.isPropertyEnabled(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08002479 dumpState();
2480 return true;
2481 }
2482 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07002483 }
2484 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2485 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07002486 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002487 return true;
2488 }
2489 }
2490
2491 return super.dispatchKeyEvent(event);
2492 }
2493
Joe Onorato88ec0992009-11-19 13:16:06 -08002494 @Override
2495 public void onBackPressed() {
Adam Cohen9211d422014-10-07 18:14:53 -07002496 if (mLauncherCallbacks != null && mLauncherCallbacks.handleBackPressed()) {
2497 return;
2498 }
2499
Sunny Goyal45478022015-06-08 16:52:41 -07002500 if (mDragController.isDragging()) {
2501 mDragController.cancelDrag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08002502 return;
2503 }
2504
Winson Chungb745afb2015-03-02 11:51:23 -08002505 if (isAppsViewVisible()) {
2506 showWorkspace(true);
2507 } else if (isWidgetsViewVisible()) {
2508 showOverviewMode(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002509 } else if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002510 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002511 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07002512 Folder openFolder = mWorkspace.getOpenFolder();
2513 if (openFolder.isEditingName()) {
2514 openFolder.dismissEditingName();
2515 } else {
2516 closeFolder();
2517 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002518 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08002519 mWorkspace.exitWidgetResizeMode();
2520
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002521 // Back button is a no-op here, but give at least some feedback for the button press
2522 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07002523 }
Joe Onorato88ec0992009-11-19 13:16:06 -08002524 }
2525
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002526 /**
Sunny Goyal383c5072015-06-12 21:18:53 -07002527 * Re-listen when widget host is reset.
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002528 */
Sunny Goyal383c5072015-06-12 21:18:53 -07002529 @Override
2530 public void onAppWidgetHostReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08002531 if (mAppWidgetHost != null) {
2532 mAppWidgetHost.startListening();
2533 }
Sunny Goyal655daae2015-12-08 09:28:23 -08002534
2535 // Recreate the QSB, as the widget has been reset.
2536 bindSearchProviderChanged();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002537 }
2538
2539 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002540 * Launches the intent referred by the clicked shortcut.
2541 *
2542 * @param v The view representing the clicked shortcut.
2543 */
2544 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002545 // Make sure that rogue clicks don't get through while allapps is launching, or after the
2546 // view has detached (it's possible for this to happen if the view is removed mid touch).
2547 if (v.getWindowToken() == null) {
2548 return;
2549 }
2550
Winson Chung9b0b2fe2012-02-24 13:03:34 -08002551 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002552 return;
2553 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07002554
Adam Cohen1697b792013-09-17 19:08:21 -07002555 if (v instanceof Workspace) {
2556 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002557 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002558 }
2559 return;
2560 }
2561
2562 if (v instanceof CellLayout) {
2563 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002564 showWorkspace(mWorkspace.indexOfChild(v), true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002565 }
2566 }
2567
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002568 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002569 if (tag instanceof ShortcutInfo) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002570 onClickAppShortcut(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002571 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002572 if (v instanceof FolderIcon) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002573 onClickFolderIcon(v);
Adam Cohena9cf38f2011-05-02 15:36:58 -07002574 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002575 } else if (v == mAllAppsButton) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002576 onClickAllAppsButton(v);
Sunny Goyal508da152014-08-14 10:53:27 -07002577 } else if (tag instanceof AppInfo) {
2578 startAppShortcutOrInfoActivity(v);
Sunny Goyalff572272014-07-23 13:58:07 -07002579 } else if (tag instanceof LauncherAppWidgetInfo) {
2580 if (v instanceof PendingAppWidgetHostView) {
2581 onClickPendingWidget((PendingAppWidgetHostView) v);
2582 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002583 }
2584 }
2585
Sunny Goyal70660032015-05-14 00:07:08 -07002586 @SuppressLint("ClickableViewAccessibility")
Michael Jurka0e260592010-06-30 17:07:39 -07002587 public boolean onTouch(View v, MotionEvent event) {
Michael Jurka0e260592010-06-30 17:07:39 -07002588 return false;
2589 }
2590
Michael Jurkaaf442092010-06-10 17:01:57 -07002591 /**
Sunny Goyalff572272014-07-23 13:58:07 -07002592 * Event handler for the app widget view which has not fully restored.
2593 */
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002594 public void onClickPendingWidget(final PendingAppWidgetHostView v) {
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002595 if (mIsSafeModeEnabled) {
2596 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2597 return;
2598 }
2599
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002600 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) v.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07002601 if (v.isReadyForClickSetup()) {
Sunny Goyalff572272014-07-23 13:58:07 -07002602 int widgetId = info.appWidgetId;
2603 AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
2604 if (appWidgetInfo != null) {
Adam Cohen59400422014-03-05 18:07:04 -08002605 mPendingAddWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(
2606 this, appWidgetInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07002607 mPendingAddInfo.copyFrom(info);
2608 mPendingAddWidgetId = widgetId;
2609
Sunny Goyalffe83f12014-08-14 17:39:34 -07002610 AppWidgetManagerCompat.getInstance(this).startConfigActivity(appWidgetInfo,
2611 info.appWidgetId, this, mAppWidgetHost, REQUEST_RECONFIGURE_APPWIDGET);
Sunny Goyalff572272014-07-23 13:58:07 -07002612 }
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002613 } else if (info.installProgress < 0) {
2614 // The install has not been queued
2615 final String packageName = info.providerName.getPackageName();
2616 showBrokenAppInstallDialog(packageName,
2617 new DialogInterface.OnClickListener() {
2618 public void onClick(DialogInterface dialog, int id) {
2619 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
2620 }
2621 });
2622 } else {
2623 // Download has started.
2624 final String packageName = info.providerName.getPackageName();
2625 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
Sunny Goyalff572272014-07-23 13:58:07 -07002626 }
2627 }
2628
2629 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002630 * Event handler for the "grid" button that appears on the home screen, which
2631 * enters all apps mode.
2632 *
2633 * @param v The view that was clicked.
2634 */
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002635 protected void onClickAllAppsButton(View v) {
2636 if (LOGD) Log.d(TAG, "onClickAllAppsButton");
Winson Chung76648c52015-07-10 14:33:23 -07002637 if (!isAppsViewVisible()) {
Winson Chung4ac30062015-05-08 17:34:17 -07002638 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07002639 true /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungbedf9232015-07-10 12:38:30 -07002640
2641 if (mLauncherCallbacks != null) {
2642 mLauncherCallbacks.onClickAllAppsButton(v);
2643 }
Winson Chung76648c52015-07-10 14:33:23 -07002644 }
2645 }
2646
2647 protected void onLongClickAllAppsButton(View v) {
2648 if (LOGD) Log.d(TAG, "onLongClickAllAppsButton");
2649 if (!isAppsViewVisible()) {
2650 showAppsView(true /* animated */, false /* resetListToTop */,
2651 true /* updatePredictedApps */, true /* focusSearchBar */);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002652 }
2653 }
2654
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002655 private void showBrokenAppInstallDialog(final String packageName,
2656 DialogInterface.OnClickListener onSearchClickListener) {
Sunny Goyale03b8122014-10-08 09:55:24 -07002657 new AlertDialog.Builder(this)
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002658 .setTitle(R.string.abandoned_promises_title)
2659 .setMessage(R.string.abandoned_promise_explanation)
2660 .setPositiveButton(R.string.abandoned_search, onSearchClickListener)
2661 .setNeutralButton(R.string.abandoned_clean_this,
2662 new DialogInterface.OnClickListener() {
2663 public void onClick(DialogInterface dialog, int id) {
2664 final UserHandleCompat user = UserHandleCompat.myUserHandle();
2665 mWorkspace.removeAbandonedPromise(packageName, user);
2666 }
2667 })
2668 .create().show();
2669 return;
2670 }
2671
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002672 /**
2673 * Event handler for an app shortcut click.
2674 *
2675 * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.
2676 */
Chris Wren40c5ed32014-06-24 18:24:23 -04002677 protected void onClickAppShortcut(final View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002678 if (LOGD) Log.d(TAG, "onClickAppShortcut");
2679 Object tag = v.getTag();
2680 if (!(tag instanceof ShortcutInfo)) {
2681 throw new IllegalArgumentException("Input must be a Shortcut");
2682 }
2683
2684 // Open shortcut
2685 final ShortcutInfo shortcut = (ShortcutInfo) tag;
Sunny Goyal1a745e82014-10-02 15:58:31 -07002686
2687 if (shortcut.isDisabled != 0) {
2688 int error = R.string.activity_not_available;
2689 if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_SAFEMODE) != 0) {
2690 error = R.string.safemode_shortcut_error;
2691 }
2692 Toast.makeText(this, error, Toast.LENGTH_SHORT).show();
2693 return;
2694 }
2695
Chris Wren40c5ed32014-06-24 18:24:23 -04002696 // Check for abandoned promise
Sunny Goyal34942622014-08-29 17:20:55 -07002697 if ((v instanceof BubbleTextView)
2698 && shortcut.isPromise()
2699 && !shortcut.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE)) {
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002700 showBrokenAppInstallDialog(
Sunny Goyal34942622014-08-29 17:20:55 -07002701 shortcut.getTargetComponent().getPackageName(),
Chris Wren40c5ed32014-06-24 18:24:23 -04002702 new DialogInterface.OnClickListener() {
2703 public void onClick(DialogInterface dialog, int id) {
Sunny Goyal508da152014-08-14 10:53:27 -07002704 startAppShortcutOrInfoActivity(v);
Chris Wren40c5ed32014-06-24 18:24:23 -04002705 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002706 });
Chris Wren40c5ed32014-06-24 18:24:23 -04002707 return;
2708 }
2709
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002710 // Start activities
Sunny Goyal508da152014-08-14 10:53:27 -07002711 startAppShortcutOrInfoActivity(v);
Adam Cohen9211d422014-10-07 18:14:53 -07002712
2713 if (mLauncherCallbacks != null) {
2714 mLauncherCallbacks.onClickAppShortcut(v);
2715 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002716 }
2717
Adam Cohen091440a2015-03-18 14:16:05 -07002718 @Thunk void startAppShortcutOrInfoActivity(View v) {
Chris Wren40c5ed32014-06-24 18:24:23 -04002719 Object tag = v.getTag();
Sunny Goyal508da152014-08-14 10:53:27 -07002720 final ShortcutInfo shortcut;
2721 final Intent intent;
2722 if (tag instanceof ShortcutInfo) {
2723 shortcut = (ShortcutInfo) tag;
2724 intent = shortcut.intent;
2725 int[] pos = new int[2];
2726 v.getLocationOnScreen(pos);
2727 intent.setSourceBounds(new Rect(pos[0], pos[1],
2728 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Chris Wren40c5ed32014-06-24 18:24:23 -04002729
Sunny Goyal508da152014-08-14 10:53:27 -07002730 } else if (tag instanceof AppInfo) {
2731 shortcut = null;
2732 intent = ((AppInfo) tag).intent;
2733 } else {
2734 throw new IllegalArgumentException("Input must be a Shortcut or AppInfo");
2735 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002736
2737 boolean success = startActivitySafely(v, intent, tag);
Winson Chung8f1eff72015-05-28 17:33:40 -07002738 mStats.recordLaunch(v, intent, shortcut);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002739
2740 if (success && v instanceof BubbleTextView) {
2741 mWaitingForResume = (BubbleTextView) v;
2742 mWaitingForResume.setStayPressed(true);
2743 }
2744 }
2745
2746 /**
2747 * Event handler for a folder icon click.
2748 *
2749 * @param v The view that was clicked. Must be an instance of {@link FolderIcon}.
2750 */
2751 protected void onClickFolderIcon(View v) {
2752 if (LOGD) Log.d(TAG, "onClickFolder");
2753 if (!(v instanceof FolderIcon)){
2754 throw new IllegalArgumentException("Input must be a FolderIcon");
2755 }
2756
Sunny Goyal317698b2015-07-29 11:45:41 -07002757 // TODO(sunnygoyal): Re-evaluate this code.
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002758 FolderIcon folderIcon = (FolderIcon) v;
2759 final FolderInfo info = folderIcon.getFolderInfo();
2760 Folder openFolder = mWorkspace.getFolderForTag(info);
2761
2762 // If the folder info reports that the associated folder is open, then verify that
2763 // it is actually opened. There have been a few instances where this gets out of sync.
2764 if (info.opened && openFolder == null) {
2765 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2766 + info.screenId + " (" + info.cellX + ", " + info.cellY + ")");
2767 info.opened = false;
2768 }
2769
2770 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
2771 // Close any open folder
2772 closeFolder();
2773 // Open the requested folder
2774 openFolder(folderIcon);
2775 } else {
2776 // Find the open folder...
2777 int folderScreen;
2778 if (openFolder != null) {
2779 folderScreen = mWorkspace.getPageForView(openFolder);
2780 // .. and close it
Sunny Goyal935fca12015-10-13 10:19:01 -07002781 closeFolder(openFolder, true);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002782 if (folderScreen != mWorkspace.getCurrentPage()) {
2783 // Close any folder open on the current screen
2784 closeFolder();
2785 // Pull the folder onto this screen
2786 openFolder(folderIcon);
2787 }
2788 }
2789 }
Adam Cohen9211d422014-10-07 18:14:53 -07002790
2791 if (mLauncherCallbacks != null) {
2792 mLauncherCallbacks.onClickFolderIcon(v);
2793 }
Michael Jurka5130e402011-10-13 04:55:35 -07002794 }
2795
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002796 /**
2797 * Event handler for the (Add) Widgets button that appears after a long press
2798 * on the home screen.
2799 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002800 protected void onClickAddWidgetButton(View view) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002801 if (LOGD) Log.d(TAG, "onClickAddWidgetButton");
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002802 if (mIsSafeModeEnabled) {
2803 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2804 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08002805 showWidgetsView(true /* animated */, true /* resetPageToZero */);
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002806 if (mLauncherCallbacks != null) {
2807 mLauncherCallbacks.onClickAddWidgetButton(view);
2808 }
Adam Cohen9211d422014-10-07 18:14:53 -07002809 }
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002810 }
2811
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002812 /**
2813 * Event handler for the wallpaper picker button that appears after a long press
2814 * on the home screen.
2815 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002816 protected void onClickWallpaperPicker(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002817 if (LOGD) Log.d(TAG, "onClickWallpaperPicker");
Tony Wickham3e776a82015-09-09 18:21:49 -07002818 int pageScroll = mWorkspace.getScrollForPage(mWorkspace.getPageNearestToCenterOfScreen());
2819 float offset = mWorkspace.mWallpaperOffset.wallpaperOffsetForScroll(pageScroll);
2820 startActivityForResult(new Intent(Intent.ACTION_SET_WALLPAPER).setPackage(getPackageName())
2821 .putExtra(WallpaperPickerActivity.EXTRA_WALLPAPER_OFFSET, offset),
Sunny Goyal6a1e95a2015-03-20 17:26:30 -07002822 REQUEST_PICK_WALLPAPER);
Adam Cohen9211d422014-10-07 18:14:53 -07002823
2824 if (mLauncherCallbacks != null) {
2825 mLauncherCallbacks.onClickWallpaperPicker(v);
2826 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002827 }
2828
2829 /**
2830 * Event handler for a click on the settings button that appears after a long press
2831 * on the home screen.
2832 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002833 protected void onClickSettingsButton(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002834 if (LOGD) Log.d(TAG, "onClickSettingsButton");
Adam Cohen9211d422014-10-07 18:14:53 -07002835 if (mLauncherCallbacks != null) {
2836 mLauncherCallbacks.onClickSettingsButton(v);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07002837 } else {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002838 startActivity(new Intent(this, SettingsActivity.class));
Adam Cohen9211d422014-10-07 18:14:53 -07002839 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002840 }
2841
Adam Cohen61f560d2013-09-30 15:58:20 -07002842 public View.OnTouchListener getHapticFeedbackTouchListener() {
2843 if (mHapticFeedbackTouchListener == null) {
2844 mHapticFeedbackTouchListener = new View.OnTouchListener() {
Sunny Goyal70660032015-05-14 00:07:08 -07002845 @SuppressLint("ClickableViewAccessibility")
Adam Cohen61f560d2013-09-30 15:58:20 -07002846 @Override
2847 public boolean onTouch(View v, MotionEvent event) {
2848 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
2849 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2850 }
2851 return false;
2852 }
2853 };
2854 }
2855 return mHapticFeedbackTouchListener;
2856 }
2857
Adam Cohen9211d422014-10-07 18:14:53 -07002858 public void onDragStarted(View view) {
2859 if (isOnCustomContent()) {
2860 // Custom content screen doesn't participate in drag and drop. If on custom
2861 // content screen, move to default.
2862 moveWorkspaceToDefaultScreen();
2863 }
2864
2865 if (mLauncherCallbacks != null) {
2866 mLauncherCallbacks.onDragStarted(view);
2867 }
2868 }
Anjali Koppal62d18ed2014-03-10 17:04:03 -07002869
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002870 /**
2871 * Called when the user stops interacting with the launcher.
2872 * This implies that the user is now on the homescreen and is not doing housekeeping.
2873 */
Adam Cohen9211d422014-10-07 18:14:53 -07002874 protected void onInteractionEnd() {
2875 if (mLauncherCallbacks != null) {
2876 mLauncherCallbacks.onInteractionEnd();
2877 }
2878 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002879
2880 /**
2881 * Called when the user starts interacting with the launcher.
2882 * The possible interactions are:
2883 * - open all apps
2884 * - reorder an app shortcut, or a widget
2885 * - open the overview mode.
2886 * This is a good time to stop doing things that only make sense
2887 * when the user is on the homescreen and not doing housekeeping.
2888 */
Adam Cohen9211d422014-10-07 18:14:53 -07002889 protected void onInteractionBegin() {
2890 if (mLauncherCallbacks != null) {
2891 mLauncherCallbacks.onInteractionBegin();
2892 }
2893 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002894
Winson Chungcd99cd32015-04-29 11:03:24 -07002895 /** Updates the interaction state. */
2896 public void updateInteraction(Workspace.State fromState, Workspace.State toState) {
Winson Chung83f59ab2015-05-05 17:21:58 -07002897 // Only update the interacting state if we are transitioning to/from a view with an
Winson Chungcd99cd32015-04-29 11:03:24 -07002898 // overlay
Winson Chungef7f8742015-06-04 17:18:17 -07002899 boolean fromStateWithOverlay = fromState != Workspace.State.NORMAL;
2900 boolean toStateWithOverlay = toState != Workspace.State.NORMAL;
Winson Chung83f59ab2015-05-05 17:21:58 -07002901 if (toStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002902 onInteractionBegin();
Winson Chung83f59ab2015-05-05 17:21:58 -07002903 } else if (fromStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002904 onInteractionEnd();
2905 }
2906 }
2907
Kenny Guyf07af7b2014-07-31 11:39:16 +01002908 void startApplicationDetailsActivity(ComponentName componentName, UserHandleCompat user) {
Kenny Guyf07af7b2014-07-31 11:39:16 +01002909 try {
2910 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Kenny Guyf07af7b2014-07-31 11:39:16 +01002911 launcherApps.showAppDetailsForProfile(componentName, user);
2912 } catch (SecurityException e) {
2913 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2914 Log.e(TAG, "Launcher does not have permission to launch settings");
2915 } catch (ActivityNotFoundException e) {
2916 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2917 Log.e(TAG, "Unable to launch settings");
2918 }
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002919 }
2920
Michael Jurka1e2f4652013-07-08 18:03:46 -07002921 // returns true if the activity was started
Kenny Guyd31df542014-06-30 15:12:11 +01002922 boolean startApplicationUninstallActivity(ComponentName componentName, int flags,
2923 UserHandleCompat user) {
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002924 if ((flags & AppInfo.DOWNLOADED_FLAG) == 0) {
Patrick Dubroy5539af72010-09-07 15:22:01 -07002925 // System applications cannot be installed. For now, show a toast explaining that.
2926 // We may give them the option of disabling apps this way.
2927 int messageId = R.string.uninstall_system_app_text;
2928 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
Michael Jurka1e2f4652013-07-08 18:03:46 -07002929 return false;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002930 } else {
Michael Jurka1e2f4652013-07-08 18:03:46 -07002931 String packageName = componentName.getPackageName();
2932 String className = componentName.getClassName();
Patrick Dubroy5539af72010-09-07 15:22:01 -07002933 Intent intent = new Intent(
2934 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002935 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2936 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Kenny Guyd31df542014-06-30 15:12:11 +01002937 if (user != null) {
2938 user.addToIntent(intent, Intent.EXTRA_USER);
2939 }
Patrick Dubroy5539af72010-09-07 15:22:01 -07002940 startActivity(intent);
Michael Jurka1e2f4652013-07-08 18:03:46 -07002941 return true;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002942 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002943 }
2944
Winson Chung8f1eff72015-05-28 17:33:40 -07002945 private boolean startActivity(View v, Intent intent, Object tag) {
Kenny Guyb6cc40b2014-05-13 15:58:58 +01002946 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002947 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002948 // Only launch using the new animation if the shortcut has not opted out (this is a
2949 // private contract between launcher and may be ignored in the future).
2950 boolean useLaunchAnimation = (v != null) &&
2951 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
Kenny Guyed131872014-04-30 03:02:21 +01002952 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
2953 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyed131872014-04-30 03:02:21 +01002954
Kenny Guy1317e2d2014-05-08 18:52:50 +01002955 UserHandleCompat user = null;
2956 if (intent.hasExtra(AppInfo.EXTRA_PROFILE)) {
2957 long serialNumber = intent.getLongExtra(AppInfo.EXTRA_PROFILE, -1);
2958 user = userManager.getUserForSerialNumber(serialNumber);
2959 }
2960
2961 Bundle optsBundle = null;
Winson Chung2672ff92012-05-04 16:22:30 -07002962 if (useLaunchAnimation) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002963 ActivityOptions opts = null;
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002964 if (Utilities.ATLEAST_MARSHMALLOW) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002965 int left = 0, top = 0;
2966 int width = v.getMeasuredWidth(), height = v.getMeasuredHeight();
2967 if (v instanceof TextView) {
2968 // Launch from center of icon, not entire view
Winson Chungb745afb2015-03-02 11:51:23 -08002969 Drawable icon = Workspace.getTextViewIcon((TextView) v);
2970 if (icon != null) {
2971 Rect bounds = icon.getBounds();
Chet Haasea8f996d2015-02-17 12:56:04 -08002972 left = (width - bounds.width()) / 2;
Winson Chungb745afb2015-03-02 11:51:23 -08002973 top = v.getPaddingTop();
Chet Haasea8f996d2015-02-17 12:56:04 -08002974 width = bounds.width();
2975 height = bounds.height();
2976 }
2977 }
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002978 opts = ActivityOptions.makeClipRevealAnimation(v, left, top, width, height);
2979 } else if (!Utilities.ATLEAST_LOLLIPOP) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002980 // Below L, we use a scale up animation
Adam Cohen2e52c902015-04-06 13:11:28 -07002981 opts = ActivityOptions.makeScaleUpAnimation(v, 0, 0,
Chet Haasea8f996d2015-02-17 12:56:04 -08002982 v.getMeasuredWidth(), v.getMeasuredHeight());
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002983 } else if (Utilities.ATLEAST_LOLLIPOP_MR1) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002984 // On L devices, we use the device default slide-up transition.
2985 // On L MR1 devices, we a custom version of the slide-up transition which
2986 // doesn't have the delay present in the device default.
2987 opts = ActivityOptions.makeCustomAnimation(this,
2988 R.anim.task_open_enter, R.anim.no_anim);
Chet Haasea8f996d2015-02-17 12:56:04 -08002989 }
Adam Cohen2e52c902015-04-06 13:11:28 -07002990 optsBundle = opts != null ? opts.toBundle() : null;
Adam Cohen6ea3b112014-06-11 11:38:49 -07002991 }
Kenny Guy1317e2d2014-05-08 18:52:50 +01002992
2993 if (user == null || user.equals(UserHandleCompat.myUserHandle())) {
2994 // Could be launching some bookkeeping activity
2995 startActivity(intent, optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002996 } else {
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002997 // TODO Component can be null when shortcuts are supported for secondary user
Kenny Guyc2bd8102014-06-30 12:30:31 +01002998 launcherApps.startActivityForProfile(intent.getComponent(), user,
2999 intent.getSourceBounds(), optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07003000 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08003001 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003002 } catch (SecurityException e) {
Sunny Goyal28c6b962015-10-12 11:42:05 -07003003 if (Utilities.ATLEAST_MARSHMALLOW && tag instanceof ItemInfo) {
3004 // Due to legacy reasons, direct call shortcuts require Launchers to have the
3005 // corresponding permission. Show the appropriate permission prompt if that
3006 // is the case.
3007 if (intent.getComponent() == null
3008 && Intent.ACTION_CALL.equals(intent.getAction())
3009 && checkSelfPermission(Manifest.permission.CALL_PHONE) !=
3010 PackageManager.PERMISSION_GRANTED) {
3011 // TODO: Rename sPendingAddItem to a generic name.
3012 sPendingAddItem = preparePendingAddArgs(REQUEST_PERMISSION_CALL_PHONE, intent,
3013 0, (ItemInfo) tag);
3014 requestPermissions(new String[]{Manifest.permission.CALL_PHONE},
3015 REQUEST_PERMISSION_CALL_PHONE);
3016 return false;
3017 }
3018 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003019 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08003020 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003021 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07003022 "or use the exported attribute for this activity. "
3023 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003024 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08003025 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003026 }
Winson Chungaafa03c2010-06-11 17:34:16 -07003027
Winson Chungbedf9232015-07-10 12:38:30 -07003028 public boolean startActivitySafely(View v, Intent intent, Object tag) {
Michael Jurka86a720e2012-05-09 11:23:23 -07003029 boolean success = false;
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07003030 if (mIsSafeModeEnabled && !Utilities.isSystemApp(this, intent)) {
3031 Toast.makeText(this, R.string.safemode_shortcut_error, Toast.LENGTH_SHORT).show();
3032 return false;
3033 }
Michael Jurka86a720e2012-05-09 11:23:23 -07003034 try {
3035 success = startActivity(v, intent, tag);
3036 } catch (ActivityNotFoundException e) {
3037 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
3038 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
3039 }
3040 return success;
3041 }
3042
Adam Cohen268c4752012-06-06 17:47:33 -07003043 /**
3044 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
3045 * in the DragLayer in the exact absolute location of the original FolderIcon.
3046 */
3047 private void copyFolderIconToImage(FolderIcon fi) {
3048 final int width = fi.getMeasuredWidth();
3049 final int height = fi.getMeasuredHeight();
3050
3051 // Lazy load ImageView, Bitmap and Canvas
3052 if (mFolderIconImageView == null) {
3053 mFolderIconImageView = new ImageView(this);
3054 }
3055 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
3056 mFolderIconBitmap.getHeight() != height) {
3057 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
3058 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
3059 }
3060
3061 DragLayer.LayoutParams lp;
3062 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
3063 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
3064 } else {
3065 lp = new DragLayer.LayoutParams(width, height);
3066 }
3067
Adam Cohen307fe232012-08-16 17:55:58 -07003068 // The layout from which the folder is being opened may be scaled, adjust the starting
3069 // view size by this scale factor.
3070 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07003071 lp.customPosition = true;
3072 lp.x = mRectForFolderAnimation.left;
3073 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07003074 lp.width = (int) (scale * width);
3075 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07003076
3077 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
3078 fi.draw(mFolderIconCanvas);
3079 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07003080 if (fi.getFolder() != null) {
3081 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
3082 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07003083 }
Adam Cohen268c4752012-06-06 17:47:33 -07003084 // Just in case this image view is still in the drag layer from a previous animation,
3085 // we remove it and re-add it.
3086 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
3087 mDragLayer.removeView(mFolderIconImageView);
3088 }
3089 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07003090 if (fi.getFolder() != null) {
3091 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07003092 }
Adam Cohen268c4752012-06-06 17:47:33 -07003093 }
3094
Adam Cohen2801caf2011-05-13 20:57:39 -07003095 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003096 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003097 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
3098 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
3099 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
3100
Adam Cohenc51934b2011-07-26 21:07:43 -07003101 FolderInfo info = (FolderInfo) fi.getTag();
3102 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3103 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07003104 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
3105 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07003106 }
3107
Adam Cohen268c4752012-06-06 17:47:33 -07003108 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
3109 copyFolderIconToImage(fi);
3110 fi.setVisibility(View.INVISIBLE);
3111
Michael Jurka2ecf9952012-06-18 12:52:28 -07003112 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003113 scaleX, scaleY);
Sunny Goyal9fc953b2015-08-17 12:24:25 -07003114 if (Utilities.ATLEAST_LOLLIPOP) {
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003115 oa.setInterpolator(new LogDecelerateInterpolator(100, 0));
3116 }
3117 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohen2801caf2011-05-13 20:57:39 -07003118 oa.start();
Tony Wickham112ac952015-11-12 12:31:50 -08003119 if (Utilities.isPowerSaverOn(this)) {
3120 // Animations are disabled in battery saver mode, so just skip to the end state.
3121 oa.end();
3122 }
Adam Cohen2801caf2011-05-13 20:57:39 -07003123 }
3124
Sunny Goyal935fca12015-10-13 10:19:01 -07003125 private void shrinkAndFadeInFolderIcon(final FolderIcon fi, boolean animate) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003126 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003127 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
3128 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
3129 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
3130
Adam Cohen268c4752012-06-06 17:47:33 -07003131 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07003132
Adam Cohen268c4752012-06-06 17:47:33 -07003133 // We remove and re-draw the FolderIcon in-case it has changed
3134 mDragLayer.removeView(mFolderIconImageView);
3135 copyFolderIconToImage(fi);
Michael Jurka2ecf9952012-06-18 12:52:28 -07003136 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003137 scaleX, scaleY);
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003138 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07003139 oa.addListener(new AnimatorListenerAdapter() {
3140 @Override
3141 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07003142 if (cl != null) {
3143 cl.clearFolderLeaveBehind();
3144 // Remove the ImageView copy of the FolderIcon and make the original visible.
3145 mDragLayer.removeView(mFolderIconImageView);
3146 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07003147 }
3148 }
3149 });
Adam Cohen2801caf2011-05-13 20:57:39 -07003150 oa.start();
Sunny Goyal935fca12015-10-13 10:19:01 -07003151 if (!animate) {
3152 oa.end();
3153 }
Adam Cohen2801caf2011-05-13 20:57:39 -07003154 }
3155
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003156 /**
Michael Jurka774bd372010-10-22 13:40:50 -07003157 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003158 * is animated relative to the specified View. If the View is null, no animation
3159 * is played.
3160 *
3161 * @param folderInfo The FolderInfo describing the folder to open.
3162 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07003163 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07003164 Folder folder = folderIcon.getFolder();
Sunny Goyalf4066152015-04-15 09:42:19 -07003165 Folder openFolder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
3166 if (openFolder != null && openFolder != folder) {
3167 // Close any open folder before opening a folder.
3168 closeFolder();
3169 }
3170
Adam Cohena9cf38f2011-05-02 15:36:58 -07003171 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003172
Adam Cohena9cf38f2011-05-02 15:36:58 -07003173 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003174
Sunny Goyalf4066152015-04-15 09:42:19 -07003175 // While the folder is open, the position of the icon cannot change.
3176 ((CellLayout.LayoutParams) folderIcon.getLayoutParams()).canReorder = false;
3177
Adam Cohen4554ee12011-08-03 16:13:21 -07003178 // Just verify that the folder hasn't already been added to the DragLayer.
3179 // There was a one-off crash where the folder had a parent already.
3180 if (folder.getParent() == null) {
3181 mDragLayer.addView(folder);
3182 mDragController.addDropTarget((DropTarget) folder);
3183 } else {
3184 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
3185 folder.getParent() + ").");
3186 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07003187 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07003188 growAndFadeOutFolderIcon(folderIcon);
Winson Chung83ca4802013-04-12 15:10:52 -07003189
3190 // Notify the accessibility manager that this folder "window" has appeared and occluded
3191 // the workspace items
3192 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
3193 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07003194 }
3195
3196 public void closeFolder() {
Sunny Goyal935fca12015-10-13 10:19:01 -07003197 closeFolder(true);
3198 }
3199
3200 public void closeFolder(boolean animate) {
Adam Cohen37c717f2013-11-26 11:50:15 -08003201 Folder folder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
Adam Cohen4554ee12011-08-03 16:13:21 -07003202 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07003203 if (folder.isEditingName()) {
3204 folder.dismissEditingName();
3205 }
Sunny Goyal935fca12015-10-13 10:19:01 -07003206 closeFolder(folder, animate);
Adam Cohen4554ee12011-08-03 16:13:21 -07003207 }
3208 }
3209
Sunny Goyal935fca12015-10-13 10:19:01 -07003210 public void closeFolder(Folder folder, boolean animate) {
Adam Cohen4554ee12011-08-03 16:13:21 -07003211 folder.getInfo().opened = false;
3212
3213 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
3214 if (parent != null) {
3215 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
Sunny Goyal935fca12015-10-13 10:19:01 -07003216 shrinkAndFadeInFolderIcon(fi, animate);
Sunny Goyalf4066152015-04-15 09:42:19 -07003217 if (fi != null) {
3218 ((CellLayout.LayoutParams) fi.getLayoutParams()).canReorder = true;
3219 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003220 }
Sunny Goyal935fca12015-10-13 10:19:01 -07003221 if (animate) {
3222 folder.animateClosed();
3223 } else {
Tony Wickham30bdd6e2015-11-17 17:59:26 -08003224 folder.close(false);
Sunny Goyal935fca12015-10-13 10:19:01 -07003225 }
Winson Chung83ca4802013-04-12 15:10:52 -07003226
Sunny Goyal935fca12015-10-13 10:19:01 -07003227 // Notify the accessibility manager that this folder "window" has disappeared and no
3228 // longer occludes the workspace items
Winson Chung83ca4802013-04-12 15:10:52 -07003229 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003230 }
3231
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003232 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07003233 if (!isDraggingEnabled()) return false;
3234 if (isWorkspaceLocked()) return false;
3235 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003236
Winson Chung76648c52015-07-10 14:33:23 -07003237 if (v == mAllAppsButton) {
3238 onLongClickAllAppsButton(v);
3239 return true;
3240 }
3241
Adam Cohen1697b792013-09-17 19:08:21 -07003242 if (v instanceof Workspace) {
3243 if (!mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003244 if (!mWorkspace.isTouchActive()) {
3245 showOverviewMode(true);
Adam Cohen93c97562013-09-26 13:48:01 -07003246 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3247 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
3248 return true;
3249 } else {
3250 return false;
3251 }
Adam Cohenaa4c8c12014-06-06 11:52:52 -07003252 } else {
3253 return false;
Adam Cohen1697b792013-09-17 19:08:21 -07003254 }
Adam Cohen1697b792013-09-17 19:08:21 -07003255 }
3256
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003257 CellLayout.CellInfo longClickCellInfo = null;
3258 View itemUnderLongClick = null;
3259 if (v.getTag() instanceof ItemInfo) {
3260 ItemInfo info = (ItemInfo) v.getTag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08003261 longClickCellInfo = new CellLayout.CellInfo(v, info);
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003262 itemUnderLongClick = longClickCellInfo.cell;
3263 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003264 }
3265
Winson Chung3d503fb2011-07-13 17:25:49 -07003266 // The hotseat touch handling does not go through Workspace, and we always allow long press
3267 // on hotseat items.
Dan Sandlere26d0942014-01-13 14:30:14 -05003268 final boolean inHotseat = isHotseatLayout(v);
Sunny Goyal8e2133b2015-05-06 13:39:07 -07003269 if (!mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07003270 if (itemUnderLongClick == null) {
Adam Cohend3ecce92013-09-16 14:58:00 -07003271 // User long pressed on empty space
3272 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3273 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Adam Cohend3ecce92013-09-16 14:58:00 -07003274 if (mWorkspace.isInOverviewMode()) {
3275 mWorkspace.startReordering(v);
3276 } else {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003277 showOverviewMode(true);
Adam Cohendedbd962013-07-11 14:21:49 -07003278 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003279 } else {
Dan Sandlere26d0942014-01-13 14:30:14 -05003280 final boolean isAllAppsButton = inHotseat && isAllAppsButtonRank(
3281 mHotseat.getOrderInHotseat(
3282 longClickCellInfo.cellX,
3283 longClickCellInfo.cellY));
3284 if (!(itemUnderLongClick instanceof Folder || isAllAppsButton)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003285 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07003286 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003287 }
3288 }
3289 }
3290 return true;
3291 }
3292
Winson Chung3d503fb2011-07-13 17:25:49 -07003293 boolean isHotseatLayout(View layout) {
3294 return mHotseat != null && layout != null &&
3295 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
3296 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08003297
Winson Chung3d503fb2011-07-13 17:25:49 -07003298 /**
3299 * Returns the CellLayout of the specified container at the specified screen.
3300 */
Sunny Goyal92820592015-03-02 11:31:35 -08003301 public CellLayout getCellLayout(long container, long screenId) {
Winson Chung3d503fb2011-07-13 17:25:49 -07003302 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3303 if (mHotseat != null) {
3304 return mHotseat.getLayout();
3305 } else {
3306 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08003307 }
Winson Chung3d503fb2011-07-13 17:25:49 -07003308 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08003309 return mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08003310 }
3311 }
3312
Winson Chungb745afb2015-03-02 11:51:23 -08003313 /**
3314 * For overridden classes.
3315 */
Daniel Sandler843e8602010-06-07 14:59:01 -04003316 public boolean isAllAppsVisible() {
Winson Chungb745afb2015-03-02 11:51:23 -08003317 return isAppsViewVisible();
3318 }
3319
3320 public boolean isAppsViewVisible() {
3321 return (mState == State.APPS) || (mOnResumeState == State.APPS);
3322 }
3323
3324 public boolean isWidgetsViewVisible() {
3325 return (mState == State.WIDGETS) || (mOnResumeState == State.WIDGETS);
Joe Onoratofb0ca672009-09-14 17:55:46 -04003326 }
3327
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003328 private void setWorkspaceBackground(int background) {
3329 switch (background) {
3330 case WORKSPACE_BACKGROUND_TRANSPARENT:
3331 getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
3332 break;
3333 case WORKSPACE_BACKGROUND_BLACK:
3334 getWindow().setBackgroundDrawable(null);
3335 break;
3336 default:
3337 getWindow().setBackgroundDrawable(mWorkspaceBackgroundDrawable);
3338 }
Craig Mautner360310b2012-10-26 15:13:08 -07003339 }
3340
Selim Cinek3a8a8f72014-01-16 10:38:38 -08003341 protected void changeWallpaperVisiblity(boolean visible) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003342 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
3343 int curflags = getWindow().getAttributes().flags
3344 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
3345 if (wpflags != curflags) {
3346 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
3347 }
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003348 setWorkspaceBackground(visible ? WORKSPACE_BACKGROUND_GRADIENT : WORKSPACE_BACKGROUND_BLACK);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003349 }
3350
Michael Jurkae326f182011-11-21 14:05:46 -08003351 @Override
3352 public void onTrimMemory(int level) {
3353 super.onTrimMemory(level);
Adam Cohen3f9c9712014-10-31 11:48:25 -07003354 if (level >= ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
3355 // The widget preview db can result in holding onto over
3356 // 3MB of memory for caching which isn't necessary.
3357 SQLiteDatabase.releaseMemory();
3358
Adam Cohenc8f4e1b2014-11-19 16:03:20 -08003359 // This clears all widget bitmaps from the widget tray
Hyunyoung Song3f471442015-04-08 19:01:34 -07003360 // TODO(hyunyoungs)
Michael Jurkae326f182011-11-21 14:05:46 -08003361 }
Robert Kozikowski67c30862015-03-30 23:46:46 +01003362 if (mLauncherCallbacks != null) {
3363 mLauncherCallbacks.onTrimMemory(level);
3364 }
Michael Jurkae326f182011-11-21 14:05:46 -08003365 }
3366
Winson5c6bdbb2015-09-03 11:36:19 -07003367 /**
3368 * @return whether or not the Launcher state changed.
3369 */
3370 public boolean showWorkspace(boolean animated) {
3371 return showWorkspace(WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated, null);
Adam Cohened307df2013-10-02 09:37:31 -07003372 }
3373
Winson5c6bdbb2015-09-03 11:36:19 -07003374 /**
3375 * @return whether or not the Launcher state changed.
3376 */
3377 public boolean showWorkspace(boolean animated, Runnable onCompleteRunnable) {
3378 return showWorkspace(WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated,
Winson Chungef7f8742015-06-04 17:18:17 -07003379 onCompleteRunnable);
Winson Chungdc61c4d2015-04-20 18:26:57 -07003380 }
3381
Winson5c6bdbb2015-09-03 11:36:19 -07003382 /**
3383 * @return whether or not the Launcher state changed.
3384 */
3385 protected boolean showWorkspace(int snapToPage, boolean animated) {
3386 return showWorkspace(snapToPage, animated, null);
Winson Chungdc61c4d2015-04-20 18:26:57 -07003387 }
3388
Winson5c6bdbb2015-09-03 11:36:19 -07003389 /**
3390 * @return whether or not the Launcher state changed.
3391 */
3392 boolean showWorkspace(int snapToPage, boolean animated, Runnable onCompleteRunnable) {
Winson Chung0f785722015-04-08 10:27:49 -07003393 boolean changed = mState != State.WORKSPACE ||
3394 mWorkspace.getState() != Workspace.State.NORMAL;
3395 if (changed) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003396 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003397 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3398 Workspace.State.NORMAL, snapToPage, animated, onCompleteRunnable);
Winson Chungc7d2b602012-05-16 17:02:20 -07003399
Michael Jurkab3e22d92011-10-31 15:58:33 -07003400 // Set focus to the AppsCustomize button
3401 if (mAllAppsButton != null) {
3402 mAllAppsButton.requestFocus();
3403 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003404 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07003405
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003406 // Change the state *after* we've called all the transition code
3407 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08003408
Winson Chung5fb63472011-02-02 17:03:37 -08003409 // Resume the auto-advance of widgets
3410 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08003411 updateAutoAdvanceState();
Winson Chung5fb63472011-02-02 17:03:37 -08003412
Winson Chung0f785722015-04-08 10:27:49 -07003413 if (changed) {
3414 // Send an accessibility event to announce the context change
3415 getWindow().getDecorView()
3416 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Winson Chung0f785722015-04-08 10:27:49 -07003417 }
Winson5c6bdbb2015-09-03 11:36:19 -07003418 return changed;
Bjorn Bringertc459e522013-06-07 19:36:01 +01003419 }
3420
Winsone9f27272015-10-13 10:47:51 -07003421 /**
3422 * Shows the overview button.
3423 */
Adam Cohened307df2013-10-02 09:37:31 -07003424 void showOverviewMode(boolean animated) {
Winsone9f27272015-10-13 10:47:51 -07003425 showOverviewMode(animated, false);
3426 }
3427
3428 /**
3429 * Shows the overview button, and if {@param requestButtonFocus} is set, will force the focus
3430 * onto one of the overview panel buttons.
3431 */
3432 void showOverviewMode(boolean animated, boolean requestButtonFocus) {
3433 Runnable postAnimRunnable = null;
3434 if (requestButtonFocus) {
3435 postAnimRunnable = new Runnable() {
3436 @Override
3437 public void run() {
3438 // Hitting the menu button when in touch mode does not trigger touch mode to
3439 // be disabled, so if requested, force focus on one of the overview panel
3440 // buttons.
3441 mOverviewPanel.requestFocusFromTouch();
3442 }
3443 };
3444 }
Adam Cohened307df2013-10-02 09:37:31 -07003445 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003446 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3447 Workspace.State.OVERVIEW,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003448 WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated,
Winsone9f27272015-10-13 10:47:51 -07003449 postAnimRunnable);
Adam Cohened307df2013-10-02 09:37:31 -07003450 mState = State.WORKSPACE;
Joe Onorato00acb122009-08-04 16:04:30 -04003451 }
3452
Winson Chungb745afb2015-03-02 11:51:23 -08003453 /**
3454 * Shows the apps view.
3455 */
Winson Chung76648c52015-07-10 14:33:23 -07003456 void showAppsView(boolean animated, boolean resetListToTop, boolean updatePredictedApps,
3457 boolean focusSearchBar) {
Winson Chungb745afb2015-03-02 11:51:23 -08003458 if (resetListToTop) {
3459 mAppsView.scrollToTop();
3460 }
Winson Chung4ac30062015-05-08 17:34:17 -07003461 if (updatePredictedApps) {
3462 tryAndUpdatePredictedApps();
3463 }
Winson Chung76648c52015-07-10 14:33:23 -07003464 showAppsOrWidgets(State.APPS, animated, focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003465 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003466
Winson Chungb745afb2015-03-02 11:51:23 -08003467 /**
3468 * Shows the widgets view.
3469 */
3470 void showWidgetsView(boolean animated, boolean resetPageToZero) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003471 if (LOGD) Log.d(TAG, "showWidgetsView:" + animated + " resetPageToZero:" + resetPageToZero);
Winson Chung82963d52013-10-09 11:20:57 -07003472 if (resetPageToZero) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003473 mWidgetsView.scrollToTop();
Winson Chung82963d52013-10-09 11:20:57 -07003474 }
Winson Chung76648c52015-07-10 14:33:23 -07003475 showAppsOrWidgets(State.WIDGETS, animated, false);
Hyunyoung Song3f471442015-04-08 19:01:34 -07003476
3477 mWidgetsView.post(new Runnable() {
Adam Cohendcc5e712014-06-23 15:38:55 -04003478 @Override
3479 public void run() {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003480 mWidgetsView.requestFocus();
Adam Cohendcc5e712014-06-23 15:38:55 -04003481 }
3482 });
Winson Chungb745afb2015-03-02 11:51:23 -08003483 }
3484
3485 /**
3486 * Sets up the transition to show the apps/widgets view.
Hyunyoung Songb7900832015-05-15 16:29:45 -07003487 *
3488 * @return whether the current from and to state allowed this operation
Winson Chungb745afb2015-03-02 11:51:23 -08003489 */
Hyunyoung Songb7900832015-05-15 16:29:45 -07003490 // TODO: calling method should use the return value so that when {@code false} is returned
3491 // the workspace transition doesn't fall into invalid state.
Winson Chung76648c52015-07-10 14:33:23 -07003492 private boolean showAppsOrWidgets(State toState, boolean animated, boolean focusSearchBar) {
Hyunyoung Songb7900832015-05-15 16:29:45 -07003493 if (mState != State.WORKSPACE && mState != State.APPS_SPRING_LOADED &&
3494 mState != State.WIDGETS_SPRING_LOADED) {
3495 return false;
3496 }
3497 if (toState != State.APPS && toState != State.WIDGETS) {
3498 return false;
3499 }
Winson Chungb745afb2015-03-02 11:51:23 -08003500
3501 if (toState == State.APPS) {
Winson Chung006ee262015-08-03 14:40:11 -07003502 mStateTransitionAnimation.startAnimationToAllApps(mWorkspace.getState(), animated,
3503 focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003504 } else {
Winson Chung006ee262015-08-03 14:40:11 -07003505 mStateTransitionAnimation.startAnimationToWidgets(mWorkspace.getState(), animated);
Winson Chungb745afb2015-03-02 11:51:23 -08003506 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003507
Michael Jurkab3e22d92011-10-31 15:58:33 -07003508 // Change the state *after* we've called all the transition code
Winson Chungb745afb2015-03-02 11:51:23 -08003509 mState = toState;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003510
3511 // Pause the auto-advance of widgets until we are out of AllApps
3512 mUserPresent = false;
Winson Chungb745afb2015-03-02 11:51:23 -08003513 updateAutoAdvanceState();
Michael Jurkab3e22d92011-10-31 15:58:33 -07003514 closeFolder();
3515
3516 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07003517 getWindow().getDecorView()
3518 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Hyunyoung Songb7900832015-05-15 16:29:45 -07003519 return true;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003520 }
3521
Winson Chungcd99cd32015-04-29 11:03:24 -07003522 /**
3523 * Updates the workspace and interaction state on state change, and return the animation to this
3524 * new state.
3525 */
3526 public Animator startWorkspaceStateChangeAnimation(Workspace.State toState, int toPage,
Winson Chung006ee262015-08-03 14:40:11 -07003527 boolean animated, HashMap<View, Integer> layerViews) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003528 Workspace.State fromState = mWorkspace.getState();
Winson Chung006ee262015-08-03 14:40:11 -07003529 Animator anim = mWorkspace.setStateWithAnimation(toState, toPage, animated, layerViews);
Winson Chungcd99cd32015-04-29 11:03:24 -07003530 updateInteraction(fromState, toState);
3531 return anim;
3532 }
3533
Hyunyoung Song3f471442015-04-08 19:01:34 -07003534 public void enterSpringLoadedDragMode() {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003535 if (LOGD) Log.d(TAG, String.format("enterSpringLoadedDragMode [mState=%s", mState.name()));
Winson Chungb745afb2015-03-02 11:51:23 -08003536 if (mState == State.WORKSPACE || mState == State.APPS_SPRING_LOADED ||
3537 mState == State.WIDGETS_SPRING_LOADED) {
3538 return;
Winson Chungb26f3d62011-06-02 10:49:29 -07003539 }
Winson Chungb745afb2015-03-02 11:51:23 -08003540
Winson Chung006ee262015-08-03 14:40:11 -07003541 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3542 Workspace.State.SPRING_LOADED,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003543 WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, true /* animated */,
3544 null /* onCompleteRunnable */);
Winson Chungb745afb2015-03-02 11:51:23 -08003545 mState = isAppsViewVisible() ? State.APPS_SPRING_LOADED : State.WIDGETS_SPRING_LOADED;
Michael Jurkad3ef3062010-11-23 16:23:58 -08003546 }
Adam Cohen7777d962011-08-18 18:58:38 -07003547
Hyunyoung Song3f471442015-04-08 19:01:34 -07003548 public void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, int delay,
Adam Cohened66b2b2012-01-23 17:28:51 -08003549 final Runnable onCompleteRunnable) {
Winson Chungb745afb2015-03-02 11:51:23 -08003550 if (mState != State.APPS_SPRING_LOADED && mState != State.WIDGETS_SPRING_LOADED) return;
Winson Chung09bfc452011-09-09 11:30:20 -07003551
Winson Chunge7a03942011-08-05 15:05:12 -07003552 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07003553 @Override
3554 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003555 if (successfulDrop) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003556 // TODO(hyunyoungs): verify if this hack is still needed, if not, delete.
3557 //
Michael Jurka7bdb25a2011-08-03 15:16:44 -07003558 // Before we show workspace, hide all apps again because
3559 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
3560 // clean up our state transition functions
Hyunyoung Song3f471442015-04-08 19:01:34 -07003561 mWidgetsView.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003562 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07003563 } else {
3564 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003565 }
Winson Chung557d6ed2011-07-08 15:34:52 -07003566 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07003567 }, delay);
Winson Chung557d6ed2011-07-08 15:34:52 -07003568 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003569
Michael Jurkad3ef3062010-11-23 16:23:58 -08003570 void exitSpringLoadedDragMode() {
Winson Chungb745afb2015-03-02 11:51:23 -08003571 if (mState == State.APPS_SPRING_LOADED) {
Winson Chung4ac30062015-05-08 17:34:17 -07003572 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07003573 false /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -08003574 } else if (mState == State.WIDGETS_SPRING_LOADED) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003575 showWidgetsView(true, false);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003576 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003577 }
3578
Winson Chung4ac30062015-05-08 17:34:17 -07003579 /**
3580 * Updates the set of predicted apps if it hasn't been updated since the last time Launcher was
3581 * resumed.
3582 */
3583 private void tryAndUpdatePredictedApps() {
3584 if (mLauncherCallbacks != null) {
Winson Chung6b1c73f2015-06-18 11:38:42 -07003585 List<ComponentKey> apps = mLauncherCallbacks.getPredictedApps();
Winson Chung91c05952015-06-25 12:17:30 -07003586 if (apps != null) {
Winson Chung4ac30062015-05-08 17:34:17 -07003587 mAppsView.setPredictedApps(apps);
3588 }
3589 }
3590 }
3591
Michael Jurkab3e22d92011-10-31 15:58:33 -07003592 void lockAllApps() {
3593 // TODO
3594 }
3595
3596 void unlockAllApps() {
3597 // TODO
3598 }
3599
Sunny Goyal594d76d2014-11-06 10:12:54 -08003600 protected void disableVoiceButtonProxy(boolean disable) {
3601 // NO-OP
Winson Chungbb185bd2011-11-21 12:31:42 -08003602 }
3603
Winsonf768d932015-09-25 16:12:35 -07003604 public boolean launcherCallbacksProvidesSearch() {
3605 return (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch());
3606 }
3607
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003608 public View getOrCreateQsbBar() {
Winsonf768d932015-09-25 16:12:35 -07003609 if (launcherCallbacksProvidesSearch()) {
Adam Cohenc2d6e892014-10-16 09:49:24 -07003610 return mLauncherCallbacks.getQsbBar();
Adam Cohen9211d422014-10-07 18:14:53 -07003611 }
3612
Adam Cohen24ce0b32014-01-14 16:18:14 -08003613 if (mQsb == null) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003614 AppWidgetProviderInfo searchProvider = Utilities.getSearchWidgetProvider(this);
3615 if (searchProvider == null) {
3616 return null;
3617 }
3618
3619 Bundle opts = new Bundle();
3620 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_HOST_CATEGORY,
Adam Coheneb8e2822015-02-20 16:38:48 +00003621 AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003622
Tony Wickham3a3517f2015-10-06 11:27:04 -07003623 // Determine the min and max dimensions of the widget.
3624 LauncherAppState app = LauncherAppState.getInstance();
3625 DeviceProfile portraitProfile = app.getInvariantDeviceProfile().portraitProfile;
3626 DeviceProfile landscapeProfile = app.getInvariantDeviceProfile().landscapeProfile;
3627 float density = getResources().getDisplayMetrics().density;
Tony Wickhama3c74d12015-10-23 11:43:47 -07003628 Point searchDimens = portraitProfile.getSearchBarDimensForWidgetOpts(getResources());
3629 int maxHeight = (int) (searchDimens.y / density);
Tony Wickham3a3517f2015-10-06 11:27:04 -07003630 int minHeight = maxHeight;
Tony Wickhama3c74d12015-10-23 11:43:47 -07003631 int maxWidth = (int) (searchDimens.x / density);
Tony Wickham3a3517f2015-10-06 11:27:04 -07003632 int minWidth = maxWidth;
3633 if (!landscapeProfile.isVerticalBarLayout()) {
Tony Wickhama3c74d12015-10-23 11:43:47 -07003634 searchDimens = landscapeProfile.getSearchBarDimensForWidgetOpts(getResources());
3635 maxHeight = (int) Math.max(maxHeight, searchDimens.y / density);
3636 minHeight = (int) Math.min(minHeight, searchDimens.y / density);
3637 maxWidth = (int) Math.max(maxWidth, searchDimens.x / density);
3638 minWidth = (int) Math.min(minWidth, searchDimens.x / density);
Tony Wickham3a3517f2015-10-06 11:27:04 -07003639 }
3640 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_MAX_HEIGHT, maxHeight);
3641 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_MIN_HEIGHT, minHeight);
3642 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_MAX_WIDTH, maxWidth);
3643 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_MIN_WIDTH, minWidth);
Tony Wickhameef44322015-10-20 13:24:36 -07003644 if (LOGD) {
3645 Log.d(TAG, "QSB widget options: maxHeight=" + maxHeight + " minHeight=" + minHeight
3646 + " maxWidth=" + maxWidth + " minWidth=" + minWidth);
3647 }
Tony Wickham3a3517f2015-10-06 11:27:04 -07003648
Tony Wickham775455c2015-10-16 09:49:32 -07003649 if (mLauncherCallbacks != null) {
3650 opts.putAll(mLauncherCallbacks.getAdditionalSearchWidgetOptions());
3651 }
3652
Sunny Goyalf7258242015-10-19 16:59:07 -07003653 int widgetId = mSharedPrefs.getInt(QSB_WIDGET_ID, -1);
Sunny Goyal416541c2014-11-14 11:59:57 -08003654 AppWidgetProviderInfo widgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003655 if (!searchProvider.provider.flattenToString().equals(
Sunny Goyalf7258242015-10-19 16:59:07 -07003656 mSharedPrefs.getString(QSB_WIDGET_PROVIDER, null))
Sunny Goyal416541c2014-11-14 11:59:57 -08003657 || (widgetInfo == null)
3658 || !widgetInfo.provider.equals(searchProvider.provider)) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003659 // A valid widget is not already bound.
3660 if (widgetId > -1) {
3661 mAppWidgetHost.deleteAppWidgetId(widgetId);
3662 widgetId = -1;
3663 }
3664
3665 // Try to bind a new widget
3666 widgetId = mAppWidgetHost.allocateAppWidgetId();
3667
3668 if (!AppWidgetManagerCompat.getInstance(this)
3669 .bindAppWidgetIdIfAllowed(widgetId, searchProvider, opts)) {
3670 mAppWidgetHost.deleteAppWidgetId(widgetId);
3671 widgetId = -1;
3672 }
3673
Sunny Goyalf7258242015-10-19 16:59:07 -07003674 mSharedPrefs.edit()
Sunny Goyal594d76d2014-11-06 10:12:54 -08003675 .putInt(QSB_WIDGET_ID, widgetId)
3676 .putString(QSB_WIDGET_PROVIDER, searchProvider.provider.flattenToString())
Sunny Goyald8043982015-12-17 22:23:02 -08003677 .apply();
Sunny Goyal594d76d2014-11-06 10:12:54 -08003678 }
3679
Sunny Goyal8d595092015-07-06 12:22:14 -07003680 mAppWidgetHost.setQsbWidgetId(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003681 if (widgetId != -1) {
3682 mQsb = mAppWidgetHost.createView(this, widgetId, searchProvider);
Sunny Goyalebfae6e2015-08-27 15:30:25 -07003683 mQsb.setId(R.id.qsb_widget);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003684 mQsb.updateAppWidgetOptions(opts);
3685 mQsb.setPadding(0, 0, 0, 0);
3686 mSearchDropTargetBar.addView(mQsb);
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003687 mSearchDropTargetBar.setQsbSearchBar(mQsb);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003688 }
Cristina Stancu476493b2013-08-07 17:20:14 +01003689 }
Adam Cohen24ce0b32014-01-14 16:18:14 -08003690 return mQsb;
Cristina Stancu476493b2013-08-07 17:20:14 +01003691 }
3692
Sunny Goyal22235bc2015-04-03 09:23:43 -07003693 private void reinflateQSBIfNecessary() {
3694 if (mQsb instanceof LauncherAppWidgetHostView &&
3695 ((LauncherAppWidgetHostView) mQsb).isReinflateRequired()) {
3696 mSearchDropTargetBar.removeView(mQsb);
3697 mQsb = null;
3698 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
3699 }
3700 }
3701
Michael Jurkad7c28052012-04-27 15:43:36 -07003702 @Override
3703 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07003704 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07003705 final List<CharSequence> text = event.getText();
3706 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07003707 // Populate event with a fake title based on the current state.
Winson Chungb745afb2015-03-02 11:51:23 -08003708 if (mState == State.APPS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003709 text.add(getString(R.string.all_apps_button_label));
Winson Chungb745afb2015-03-02 11:51:23 -08003710 } else if (mState == State.WIDGETS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003711 text.add(getString(R.string.widget_button_text));
Hyunyoung Song166e6482015-06-25 21:06:07 -07003712 } else if (mWorkspace != null) {
3713 text.add(mWorkspace.getCurrentPageDescription());
alanv1d4fde62012-10-17 13:15:47 -07003714 } else {
3715 text.add(getString(R.string.all_apps_home_button_label));
3716 }
Michael Jurkad7c28052012-04-27 15:43:36 -07003717 return result;
3718 }
3719
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003720 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003721 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003722 */
Adam Cohen091440a2015-03-18 14:16:05 -07003723 @Thunk class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003724 @Override
3725 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003726 closeSystemDialogs();
3727 }
3728 }
3729
3730 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07003731 * If the activity is currently paused, signal that we need to run the passed Runnable
3732 * in onResume.
3733 *
3734 * This needs to be called from incoming places where resources might have been loaded
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003735 * while the activity is paused. That is because the Configuration (e.g., rotation) might be
3736 * wrong when we're not running, and if the activity comes back to what the configuration was
3737 * when we were paused, activity is not restarted.
Michael Jurka7607c2f2013-04-03 14:33:19 -07003738 *
3739 * Implementation of the method from LauncherModel.Callbacks.
3740 *
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003741 * @return {@code true} if we are currently paused. The caller might be able to skip some work
Michael Jurka7607c2f2013-04-03 14:33:19 -07003742 */
Rahul Chaturvedi799aa042015-06-01 21:26:41 -04003743 @Thunk boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003744 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003745 if (LOGD) Log.d(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02003746 if (deletePreviousRunnables) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07003747 while (mBindOnResumeCallbacks.remove(run)) {
Michael Jurkac402cd92013-05-20 15:49:32 +02003748 }
3749 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07003750 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07003751 return true;
3752 } else {
3753 return false;
3754 }
3755 }
3756
Michael Jurkac402cd92013-05-20 15:49:32 +02003757 private boolean waitUntilResume(Runnable run) {
3758 return waitUntilResume(run, false);
3759 }
3760
Michael Jurka1e2f4652013-07-08 18:03:46 -07003761 public void addOnResumeCallback(Runnable run) {
Michael Jurka54554252013-08-01 12:52:23 +02003762 mOnResumeCallbacks.add(run);
Michael Jurka1e2f4652013-07-08 18:03:46 -07003763 }
3764
Michael Jurka7607c2f2013-04-03 14:33:19 -07003765 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003766 * If the activity is currently paused, signal that we need to re-run the loader
3767 * in onResume.
3768 *
3769 * This needs to be called from incoming places where resources might have been loaded
3770 * while we are paused. That is becaues the Configuration might be wrong
3771 * when we're not running, and if it comes back to what it was when we
3772 * were paused, we are not restarted.
3773 *
3774 * Implementation of the method from LauncherModel.Callbacks.
3775 *
3776 * @return true if we are currently paused. The caller might be able to
3777 * skip some work in that case since we will come back again.
3778 */
3779 public boolean setLoadOnResume() {
3780 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003781 if (LOGD) Log.d(TAG, "setLoadOnResume");
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003782 mOnResumeNeedsLoad = true;
3783 return true;
3784 } else {
3785 return false;
3786 }
3787 }
3788
3789 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003790 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003791 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003792 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003793 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003794 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003795 } else {
3796 return SCREEN_COUNT / 2;
3797 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003798 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003799
Joe Onorato9c1289c2009-08-17 11:03:03 -04003800 /**
3801 * Refreshes the shortcuts shown on the workspace.
3802 *
3803 * Implementation of the method from LauncherModel.Callbacks.
3804 */
3805 public void startBinding() {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07003806 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08003807
Michael Jurka7607c2f2013-04-03 14:33:19 -07003808 // If we're starting binding all over again, clear any bind calls we'd postponed in
3809 // the past (see waitUntilResume) -- we don't need them since we're starting binding
3810 // from scratch again
Michael Jurka1e2f4652013-07-08 18:03:46 -07003811 mBindOnResumeCallbacks.clear();
Adam Cohendf035382011-04-11 17:22:04 -07003812
Winson Chungd64d1762013-08-20 14:37:16 -07003813 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07003814 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07003815 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07003816
Michael Jurka05bf644e2011-11-30 20:28:53 -08003817 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003818 if (mHotseat != null) {
3819 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003820 }
3821 }
3822
Adam Cohendcd297f2013-06-18 13:13:40 -07003823 @Override
3824 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Winson Chung64359a52013-07-08 17:17:08 -07003825 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07003826
Adam Cohen5084cba2013-09-03 12:01:16 -07003827 // If there are no screens, we need to have an empty screen
3828 if (orderedScreenIds.size() == 0) {
3829 mWorkspace.addExtraEmptyScreen();
3830 }
Winson Chung0e6a7132013-08-23 12:55:10 -07003831
3832 // Create the custom content page (this call updates mDefaultScreen which calls
Dave Hawkeya8881582013-09-17 15:55:33 -06003833 // setCurrentPage() so ensure that all pages are added before calling this).
Derek Prothrodadd9842014-01-17 13:43:50 -05003834 if (hasCustomContentToLeft()) {
3835 mWorkspace.createCustomContentContainer();
3836 populateCustomContentContainer();
Winson Chung0e6a7132013-08-23 12:55:10 -07003837 }
Winson Chung64359a52013-07-08 17:17:08 -07003838 }
3839
3840 @Override
3841 public void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Adam Cohendcd297f2013-06-18 13:13:40 -07003842 int count = orderedScreenIds.size();
3843 for (int i = 0; i < count; i++) {
Adam Cohen89bddfa2013-08-20 11:57:13 -07003844 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(orderedScreenIds.get(i));
Adam Cohendcd297f2013-06-18 13:13:40 -07003845 }
Adam Cohendcd297f2013-06-18 13:13:40 -07003846 }
3847
Winson Chungd64d1762013-08-20 14:37:16 -07003848 public void bindAppsAdded(final ArrayList<Long> newScreens,
3849 final ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -07003850 final ArrayList<ItemInfo> addAnimated,
3851 final ArrayList<AppInfo> addedApps) {
Winson Chungd64d1762013-08-20 14:37:16 -07003852 Runnable r = new Runnable() {
3853 public void run() {
Winson Chungc58497e2013-09-03 17:48:37 -07003854 bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps);
Winson Chungd64d1762013-08-20 14:37:16 -07003855 }
3856 };
3857 if (waitUntilResume(r)) {
3858 return;
3859 }
3860
Winson Chungd64d1762013-08-20 14:37:16 -07003861 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08003862 if (newScreens != null) {
3863 bindAddScreens(newScreens);
3864 }
Winson Chungd64d1762013-08-20 14:37:16 -07003865
3866 // We add the items without animation on non-visible pages, and with
3867 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08003868 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003869 bindItems(addNotAnimated, 0,
3870 addNotAnimated.size(), false);
3871 }
Adam Cohen76a47a12014-02-05 11:47:43 -08003872 if (addAnimated != null && !addAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003873 bindItems(addAnimated, 0,
3874 addAnimated.size(), true);
3875 }
Winson Chungc58497e2013-09-03 17:48:37 -07003876
Winson Chung87412982013-10-03 18:34:14 -07003877 // Remove the extra empty screen
Adam Cohen689ff162014-05-08 17:27:56 -07003878 mWorkspace.removeExtraEmptyScreen(false, false);
Winson Chung87412982013-10-03 18:34:14 -07003879
Winson Chungb745afb2015-03-02 11:51:23 -08003880 if (addedApps != null && mAppsView != null) {
3881 mAppsView.addApps(addedApps);
Winson Chungc58497e2013-09-03 17:48:37 -07003882 }
Winson Chungd64d1762013-08-20 14:37:16 -07003883 }
3884
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003885 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003886 * Bind the items start-end from the list.
3887 *
3888 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003889 */
Tony Wickham0bb211a2015-10-02 16:22:08 -07003890 @Override
Winson Chung64359a52013-07-08 17:17:08 -07003891 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end,
3892 final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07003893 Runnable r = new Runnable() {
3894 public void run() {
3895 bindItems(shortcuts, start, end, forceAnimateIcons);
3896 }
3897 };
3898 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003899 return;
3900 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003901
Winson Chungf0c6ae02012-03-21 16:10:31 -07003902 // Get the list of added shortcuts and intersect them with the set of shortcuts here
Winson Chung64359a52013-07-08 17:17:08 -07003903 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
3904 final Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chung997a9232013-07-24 15:33:46 -07003905 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07003906 Workspace workspace = mWorkspace;
Winson Chung997a9232013-07-24 15:33:46 -07003907 long newShortcutsScreenId = -1;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003908 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003909 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003910
3911 // Short circuit if we are loading dock items for a configuration which has no dock
3912 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3913 mHotseat == null) {
3914 continue;
3915 }
3916
Sunny Goyal639e9062015-08-19 19:17:06 -07003917 final View view;
Joe Onorato9c1289c2009-08-17 11:03:03 -04003918 switch (item.itemType) {
3919 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3920 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07003921 ShortcutInfo info = (ShortcutInfo) item;
Sunny Goyal639e9062015-08-19 19:17:06 -07003922 view = createShortcut(info);
Adam Cohendcd297f2013-06-18 13:13:40 -07003923
Winson Chung64359a52013-07-08 17:17:08 -07003924 /*
3925 * TODO: FIX collision case
3926 */
Winson Chungce376632013-07-11 16:12:41 -07003927 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
3928 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
3929 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07003930 View v = cl.getChildAt(item.cellX, item.cellY);
3931 Object tag = v.getTag();
3932 String desc = "Collision while binding workspace item: " + item
3933 + ". Collides with " + tag;
3934 if (LauncherAppState.isDogfoodBuild()) {
3935 throw (new RuntimeException(desc));
3936 } else {
3937 Log.d(TAG, desc);
3938 }
Winson Chungce376632013-07-11 16:12:41 -07003939 }
Winson Chung64359a52013-07-08 17:17:08 -07003940 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003941 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003942 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Sunny Goyal639e9062015-08-19 19:17:06 -07003943 view = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003944 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003945 (FolderInfo) item, mIconCache);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003946 break;
Winson Chungc763c4e2013-07-19 13:49:06 -07003947 default:
3948 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04003949 }
Sunny Goyal639e9062015-08-19 19:17:06 -07003950
3951 workspace.addInScreenFromBind(view, item.container, item.screenId, item.cellX,
3952 item.cellY, 1, 1);
3953 if (animateIcons) {
3954 // Animate all the applications up now
3955 view.setAlpha(0f);
3956 view.setScaleX(0f);
3957 view.setScaleY(0f);
3958 bounceAnims.add(createNewAppBounceAnimation(view, i));
3959 newShortcutsScreenId = item.screenId;
3960 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003961 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003962
Winson Chung997a9232013-07-24 15:33:46 -07003963 if (animateIcons) {
3964 // Animate to the correct page
3965 if (newShortcutsScreenId > -1) {
3966 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Winson Chung94d67682013-09-25 16:29:40 -07003967 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId);
Winson Chungb2323832013-10-03 15:22:09 -07003968 final Runnable startBounceAnimRunnable = new Runnable() {
3969 public void run() {
3970 anim.playTogether(bounceAnims);
3971 anim.start();
3972 }
3973 };
Winson Chung997a9232013-07-24 15:33:46 -07003974 if (newShortcutsScreenId != currentScreenId) {
Winson Chung94d67682013-09-25 16:29:40 -07003975 // We post the animation slightly delayed to prevent slowdowns
3976 // when we are loading right after we return to launcher.
3977 mWorkspace.postDelayed(new Runnable() {
3978 public void run() {
Ian Parkinson94449152014-01-21 13:09:59 +00003979 if (mWorkspace != null) {
3980 mWorkspace.snapToPage(newScreenIndex);
3981 mWorkspace.postDelayed(startBounceAnimRunnable,
3982 NEW_APPS_ANIMATION_DELAY);
3983 }
Winson Chung94d67682013-09-25 16:29:40 -07003984 }
3985 }, NEW_APPS_PAGE_MOVE_DELAY);
Winson Chungb2323832013-10-03 15:22:09 -07003986 } else {
3987 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07003988 }
3989 }
Winson Chung64359a52013-07-08 17:17:08 -07003990 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003991 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003992 }
3993
Joe Onorato9c1289c2009-08-17 11:03:03 -04003994 /**
3995 * Implementation of the method from LauncherModel.Callbacks.
3996 */
Sunny Goyale2df0622015-04-24 11:27:00 -07003997 public void bindFolders(final LongArrayMap<FolderInfo> folders) {
Winson Chungd64d1762013-08-20 14:37:16 -07003998 Runnable r = new Runnable() {
3999 public void run() {
4000 bindFolders(folders);
4001 }
4002 };
4003 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004004 return;
4005 }
Sunny Goyale2df0622015-04-24 11:27:00 -07004006 sFolders = folders.clone();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004007 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004008
4009 /**
4010 * Add the views for a widget to the workspace.
4011 *
4012 * Implementation of the method from LauncherModel.Callbacks.
4013 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07004014 public void bindAppWidget(final LauncherAppWidgetInfo item) {
Winson Chungd64d1762013-08-20 14:37:16 -07004015 Runnable r = new Runnable() {
4016 public void run() {
4017 bindAppWidget(item);
4018 }
4019 };
4020 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004021 return;
4022 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07004023
Daniel Sandler843e8602010-06-07 14:59:01 -04004024 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
4025 if (DEBUG_WIDGETS) {
4026 Log.d(TAG, "bindAppWidget: " + item);
4027 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004028 final Workspace workspace = mWorkspace;
4029
Adam Cohen59400422014-03-05 18:07:04 -08004030 LauncherAppWidgetProviderInfo appWidgetInfo =
Robin Lee26ace122015-03-16 19:41:43 +00004031 LauncherModel.getProviderInfo(this, item.providerName, item.user);
Adam Cohen59400422014-03-05 18:07:04 -08004032
Sunny Goyal9b4b0812014-10-08 10:47:28 -07004033 if (!mIsSafeModeEnabled
4034 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY) == 0)
Sunny Goyal84b4adc2015-08-12 15:12:16 -07004035 && (item.restoreStatus != LauncherAppWidgetInfo.RESTORE_COMPLETED)) {
4036
Sunny Goyalff572272014-07-23 13:58:07 -07004037 if (appWidgetInfo == null) {
4038 if (DEBUG_WIDGETS) {
4039 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
4040 + " belongs to component " + item.providerName
4041 + ", as the povider is null");
4042 }
4043 LauncherModel.deleteItemFromDatabase(this, item);
4044 return;
4045 }
Sunny Goyalff572272014-07-23 13:58:07 -07004046
Sunny Goyal84b4adc2015-08-12 15:12:16 -07004047 // If we do not have a valid id, try to bind an id.
4048 if ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_ID_NOT_VALID) != 0) {
4049 // Note: This assumes that the id remap broadcast is received before this step.
4050 // If that is not the case, the id remap will be ignored and user may see the
4051 // click to setup view.
4052 PendingAddWidgetInfo pendingInfo = new PendingAddWidgetInfo(this, appWidgetInfo, null);
4053 pendingInfo.spanX = item.spanX;
4054 pendingInfo.spanY = item.spanY;
4055 pendingInfo.minSpanX = item.minSpanX;
4056 pendingInfo.minSpanY = item.minSpanY;
Sunny Goyalb740f592015-12-17 23:22:42 -08004057 Bundle options = WidgetHostViewLoader.getDefaultOptionsForWidget(this, pendingInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07004058
Sunny Goyal84b4adc2015-08-12 15:12:16 -07004059 int newWidgetId = mAppWidgetHost.allocateAppWidgetId();
4060 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
4061 newWidgetId, appWidgetInfo, options);
4062
4063 // TODO consider showing a permission dialog when the widget is clicked.
4064 if (!success) {
4065 mAppWidgetHost.deleteAppWidgetId(newWidgetId);
4066 if (DEBUG_WIDGETS) {
4067 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
4068 + " belongs to component " + item.providerName
4069 + ", as the launcher is unable to bing a new widget id");
4070 }
4071 LauncherModel.deleteItemFromDatabase(this, item);
4072 return;
Sunny Goyalff572272014-07-23 13:58:07 -07004073 }
Sunny Goyal84b4adc2015-08-12 15:12:16 -07004074
4075 item.appWidgetId = newWidgetId;
4076
4077 // If the widget has a configure activity, it is still needs to set it up, otherwise
4078 // the widget is ready to go.
4079 item.restoreStatus = (appWidgetInfo.configure == null)
4080 ? LauncherAppWidgetInfo.RESTORE_COMPLETED
4081 : LauncherAppWidgetInfo.FLAG_UI_NOT_READY;
4082
4083 LauncherModel.updateItemInDatabase(this, item);
4084 } else if (((item.restoreStatus & LauncherAppWidgetInfo.FLAG_UI_NOT_READY) != 0)
4085 && (appWidgetInfo.configure == null)) {
4086 // If the ID is already valid, verify if we need to configure or not.
4087 item.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
4088 LauncherModel.updateItemInDatabase(this, item);
Sunny Goyalff572272014-07-23 13:58:07 -07004089 }
Sunny Goyalff572272014-07-23 13:58:07 -07004090 }
4091
Sunny Goyal9b4b0812014-10-08 10:47:28 -07004092 if (!mIsSafeModeEnabled && item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
Sunny Goyal651077b2014-06-30 14:15:31 -07004093 final int appWidgetId = item.appWidgetId;
Sunny Goyal651077b2014-06-30 14:15:31 -07004094 if (DEBUG_WIDGETS) {
Adam Cohen59400422014-03-05 18:07:04 -08004095 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component "
4096 + appWidgetInfo.provider);
Sunny Goyal651077b2014-06-30 14:15:31 -07004097 }
Daniel Sandler843e8602010-06-07 14:59:01 -04004098
Sunny Goyal56c73602015-09-25 12:55:01 -07004099 // Verify that we own the widget
4100 AppWidgetProviderInfo info = mAppWidgetManager.getAppWidgetInfo(appWidgetId);
4101 if (info == null || appWidgetInfo == null ||
4102 !info.provider.equals(appWidgetInfo.provider)) {
Hyunyoung Songa27d7a52016-02-03 15:28:47 -08004103 Log.e(TAG, "Removing invalid widget: id=" + item.appWidgetId + " info=" + info
4104 + " appWidgetInfo=" + appWidgetInfo);
Sunny Goyal56c73602015-09-25 12:55:01 -07004105 deleteWidgetInfo(item);
4106 return;
4107 }
4108
Sunny Goyal651077b2014-06-30 14:15:31 -07004109 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
Sunny Goyal233ee962015-08-03 13:05:01 -07004110 item.minSpanX = appWidgetInfo.minSpanX;
4111 item.minSpanY = appWidgetInfo.minSpanY;
Sunny Goyal651077b2014-06-30 14:15:31 -07004112 } else {
4113 appWidgetInfo = null;
Sunny Goyal9b4b0812014-10-08 10:47:28 -07004114 PendingAppWidgetHostView view = new PendingAppWidgetHostView(this, item,
4115 mIsSafeModeEnabled);
Sunny Goyal0fc1be12014-08-11 17:05:23 -07004116 view.updateIcon(mIconCache);
4117 item.hostView = view;
Sunny Goyal651077b2014-06-30 14:15:31 -07004118 item.hostView.updateAppWidget(null);
Sunny Goyalff572272014-07-23 13:58:07 -07004119 item.hostView.setOnClickListener(this);
Sunny Goyal651077b2014-06-30 14:15:31 -07004120 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004121
Sunny Goyal25c2e3e2015-10-28 23:28:21 -07004122 addAppWidgetToWorkspace(item, appWidgetInfo, false);
Joe Onorato9c1289c2009-08-17 11:03:03 -04004123 workspace.requestLayout();
4124
Daniel Sandler843e8602010-06-07 14:59:01 -04004125 if (DEBUG_WIDGETS) {
4126 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
4127 + (SystemClock.uptimeMillis()-start) + "ms");
4128 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004129 }
4130
Sunny Goyalff572272014-07-23 13:58:07 -07004131 /**
4132 * Restores a pending widget.
4133 *
4134 * @param appWidgetId The app widget id
4135 * @param cellInfo The position on screen where to create the widget.
4136 */
4137 private void completeRestoreAppWidget(final int appWidgetId) {
4138 LauncherAppWidgetHostView view = mWorkspace.getWidgetForAppWidgetId(appWidgetId);
4139 if ((view == null) || !(view instanceof PendingAppWidgetHostView)) {
4140 Log.e(TAG, "Widget update called, when the widget no longer exists.");
4141 return;
4142 }
4143
Sunny Goyal0fc1be12014-08-11 17:05:23 -07004144 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) view.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07004145 info.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
4146
4147 mWorkspace.reinflateWidgetsIfNecessary();
4148 LauncherModel.updateItemInDatabase(this, info);
4149 }
4150
Adam Cohen1462de32012-07-24 22:34:36 -07004151 public void onPageBoundSynchronously(int page) {
4152 mSynchronouslyBoundPages.add(page);
4153 }
4154
Joe Onorato9c1289c2009-08-17 11:03:03 -04004155 /**
4156 * Callback saying that there aren't any more items to bind.
4157 *
4158 * Implementation of the method from LauncherModel.Callbacks.
4159 */
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004160 public void finishBindingItems() {
Winson Chungd64d1762013-08-20 14:37:16 -07004161 Runnable r = new Runnable() {
4162 public void run() {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004163 finishBindingItems();
Winson Chungd64d1762013-08-20 14:37:16 -07004164 }
4165 };
4166 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004167 return;
4168 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004169 if (mSavedState != null) {
4170 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07004171 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004172 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004173 mSavedState = null;
4174 }
4175
Adam Cohen1462de32012-07-24 22:34:36 -07004176 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004177
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004178 setWorkspaceLoading(false);
Adam Cohen3ed316a2014-07-23 18:21:20 -07004179 sendLoadingCompleteBroadcastIfNecessary();
Adam Cohendb364c32014-05-20 14:23:40 -07004180
4181 // If we received the result of any pending adds while the loader was running (e.g. the
4182 // widget configuration forced an orientation change), process them now.
4183 if (sPendingAddItem != null) {
4184 final long screenId = completeAdd(sPendingAddItem);
4185
4186 // TODO: this moves the user to the page where the pending item was added. Ideally,
4187 // the screen would be guaranteed to exist after bind, and the page would be set through
4188 // the workspace restore process.
4189 mWorkspace.post(new Runnable() {
4190 @Override
4191 public void run() {
4192 mWorkspace.snapToScreenId(screenId);
4193 }
4194 });
4195 sPendingAddItem = null;
4196 }
4197
Sunny Goyal756adbc2015-04-16 15:20:51 -07004198 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
Adam Cohen9211d422014-10-07 18:14:53 -07004199
4200 if (mLauncherCallbacks != null) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004201 mLauncherCallbacks.finishBindingItems(false);
Adam Cohen9211d422014-10-07 18:14:53 -07004202 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004203 }
4204
Adam Cohen3ed316a2014-07-23 18:21:20 -07004205 private void sendLoadingCompleteBroadcastIfNecessary() {
4206 if (!mSharedPrefs.getBoolean(FIRST_LOAD_COMPLETE, false)) {
4207 String permission =
4208 getResources().getString(R.string.receive_first_load_broadcast_permission);
4209 Intent intent = new Intent(ACTION_FIRST_LOAD_COMPLETE);
4210 sendBroadcast(intent, permission);
4211 SharedPreferences.Editor editor = mSharedPrefs.edit();
4212 editor.putBoolean(FIRST_LOAD_COMPLETE, true);
4213 editor.apply();
4214 }
4215 }
4216
Winson Chunga0b7e862013-09-05 16:03:15 -07004217 public boolean isAllAppsButtonRank(int rank) {
4218 if (mHotseat != null) {
4219 return mHotseat.isAllAppsButtonRank(rank);
4220 }
4221 return false;
4222 }
4223
Winson Chunga2413752012-04-03 14:22:34 -07004224 private boolean canRunNewAppsAnimation() {
4225 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
Sunny Goyal639e9062015-08-19 19:17:06 -07004226 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000)
4227 && (mClings == null || !mClings.isVisible());
Winson Chunga2413752012-04-03 14:22:34 -07004228 }
4229
Winson Chungc9168342013-06-26 14:54:55 -07004230 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
4231 ValueAnimator bounceAnim = LauncherAnimUtils.ofPropertyValuesHolder(v,
4232 PropertyValuesHolder.ofFloat("alpha", 1f),
4233 PropertyValuesHolder.ofFloat("scaleX", 1f),
4234 PropertyValuesHolder.ofFloat("scaleY", 1f));
4235 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
4236 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
Sunny Goyal5a1f53b2015-05-27 10:24:24 -07004237 bounceAnim.setInterpolator(new OvershootInterpolator(BOUNCE_ANIMATION_TENSION));
Winson Chungc9168342013-06-26 14:54:55 -07004238 return bounceAnim;
4239 }
4240
Adam Cohen27772732013-11-11 14:00:56 +00004241 public boolean useVerticalBarLayout() {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07004242 return mDeviceProfile.isVerticalBarLayout();
Adam Cohen27772732013-11-11 14:00:56 +00004243 }
4244
Tony Wickham3a3517f2015-10-06 11:27:04 -07004245 /** Returns the search bar bounds in pixels. */
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004246 protected Rect getSearchBarBounds() {
Sunny Goyalc6205602015-05-21 20:46:33 -07004247 return mDeviceProfile.getSearchBarBounds(Utilities.isRtl(getResources()));
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004248 }
4249
Tony Wickham55616cd2015-09-23 14:55:17 -07004250 public int getSearchBarHeight() {
4251 if (mLauncherCallbacks != null) {
4252 return mLauncherCallbacks.getSearchBarHeight();
4253 }
4254 return LauncherCallbacks.SEARCH_BAR_HEIGHT_NORMAL;
4255 }
4256
Winson Chung88fa7412015-08-03 14:25:28 -07004257 public void bindSearchProviderChanged() {
Sunny Goyal594d76d2014-11-06 10:12:54 -08004258 if (mSearchDropTargetBar == null) {
4259 return;
Winson Chungadf0c182012-08-23 14:59:07 -07004260 }
Sunny Goyal594d76d2014-11-06 10:12:54 -08004261 if (mQsb != null) {
4262 mSearchDropTargetBar.removeView(mQsb);
4263 mQsb = null;
4264 }
Adam Cohenb0df1b02015-03-18 22:21:40 -07004265 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004266 }
4267
Amith Yamasani6d7fe502010-11-16 09:05:07 -08004268 /**
Winson Chungbb785c62015-05-05 10:05:08 -07004269 * A runnable that we can dequeue and re-enqueue when all applications are bound (to prevent
4270 * multiple calls to bind the same list.)
4271 */
4272 @Thunk ArrayList<AppInfo> mTmpAppsList;
4273 private Runnable mBindAllApplicationsRunnable = new Runnable() {
4274 public void run() {
4275 bindAllApplications(mTmpAppsList);
4276 mTmpAppsList = null;
4277 }
4278 };
4279
4280 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004281 * Add the icons for all apps.
4282 *
4283 * Implementation of the method from LauncherModel.Callbacks.
4284 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004285 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Winson Chungbb785c62015-05-05 10:05:08 -07004286 if (waitUntilResume(mBindAllApplicationsRunnable, true)) {
4287 mTmpAppsList = apps;
4288 return;
4289 }
4290
Winson Chungb745afb2015-03-02 11:51:23 -08004291 if (mAppsView != null) {
4292 mAppsView.setApps(apps);
4293 }
Adam Cohen9211d422014-10-07 18:14:53 -07004294 if (mLauncherCallbacks != null) {
4295 mLauncherCallbacks.bindAllApplications(apps);
4296 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004297 }
4298
4299 /**
4300 * A package was updated.
4301 *
4302 * Implementation of the method from LauncherModel.Callbacks.
4303 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004304 public void bindAppsUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004305 Runnable r = new Runnable() {
4306 public void run() {
4307 bindAppsUpdated(apps);
4308 }
4309 };
4310 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004311 return;
4312 }
4313
Winson Chungb745afb2015-03-02 11:51:23 -08004314 if (mAppsView != null) {
4315 mAppsView.updateApps(apps);
Winson Chungc58497e2013-09-03 17:48:37 -07004316 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004317 }
4318
Sunny Goyal4390ace2014-10-13 11:33:11 -07004319 @Override
4320 public void bindWidgetsRestored(final ArrayList<LauncherAppWidgetInfo> widgets) {
4321 Runnable r = new Runnable() {
4322 public void run() {
4323 bindWidgetsRestored(widgets);
4324 }
4325 };
4326 if (waitUntilResume(r)) {
4327 return;
4328 }
4329 mWorkspace.widgetsRestored(widgets);
4330 }
4331
Joe Onorato9c1289c2009-08-17 11:03:03 -04004332 /**
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004333 * Some shortcuts were updated in the background.
4334 *
4335 * Implementation of the method from LauncherModel.Callbacks.
4336 */
Sunny Goyal4390ace2014-10-13 11:33:11 -07004337 @Override
4338 public void bindShortcutsChanged(final ArrayList<ShortcutInfo> updated,
4339 final ArrayList<ShortcutInfo> removed, final UserHandleCompat user) {
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004340 Runnable r = new Runnable() {
4341 public void run() {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004342 bindShortcutsChanged(updated, removed, user);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004343 }
4344 };
4345 if (waitUntilResume(r)) {
4346 return;
4347 }
4348
Sunny Goyal4390ace2014-10-13 11:33:11 -07004349 if (!updated.isEmpty()) {
4350 mWorkspace.updateShortcuts(updated);
4351 }
4352
4353 if (!removed.isEmpty()) {
4354 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4355 for (ShortcutInfo si : removed) {
4356 removedComponents.add(si.getTargetComponent());
4357 }
4358 mWorkspace.removeItemsByComponentName(removedComponents, user);
4359 // Notify the drag controller
4360 mDragController.onAppsRemoved(new ArrayList<String>(), removedComponents);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004361 }
4362 }
4363
4364 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004365 * Update the state of a package, typically related to install state.
4366 *
4367 * Implementation of the method from LauncherModel.Callbacks.
4368 */
Sunny Goyale755d462014-07-22 13:48:29 -07004369 @Override
Sunny Goyal756adbc2015-04-16 15:20:51 -07004370 public void bindRestoreItemsChange(final HashSet<ItemInfo> updates) {
4371 Runnable r = new Runnable() {
4372 public void run() {
4373 bindRestoreItemsChange(updates);
4374 }
4375 };
4376 if (waitUntilResume(r)) {
4377 return;
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004378 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004379
Sunny Goyal756adbc2015-04-16 15:20:51 -07004380 mWorkspace.updateRestoreItems(updates);
Sunny Goyala22666f2014-09-18 13:25:15 -07004381 }
4382
4383 /**
Winson Chung83892cc2013-05-01 16:53:33 -07004384 * A package was uninstalled. We take both the super set of packageNames
4385 * in addition to specific applications to remove, the reason being that
4386 * this can be called when a package is updated as well. In that scenario,
4387 * we only remove specific components from the workspace, where as
4388 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004389 *
Sunny Goyal1a745e82014-10-02 15:58:31 -07004390 * @param reason if non-zero, the icons are not permanently removed, rather marked as disabled.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004391 * Implementation of the method from LauncherModel.Callbacks.
4392 */
Sunny Goyal1a745e82014-10-02 15:58:31 -07004393 @Override
Winson Chung83892cc2013-05-01 16:53:33 -07004394 public void bindComponentsRemoved(final ArrayList<String> packageNames,
Sunny Goyal1a745e82014-10-02 15:58:31 -07004395 final ArrayList<AppInfo> appInfos, final UserHandleCompat user, final int reason) {
Winson Chungd64d1762013-08-20 14:37:16 -07004396 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004397 public void run() {
Sunny Goyal1a745e82014-10-02 15:58:31 -07004398 bindComponentsRemoved(packageNames, appInfos, user, reason);
Winson Chung83892cc2013-05-01 16:53:33 -07004399 }
Winson Chungd64d1762013-08-20 14:37:16 -07004400 };
4401 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07004402 return;
4403 }
4404
Sunny Goyal1a745e82014-10-02 15:58:31 -07004405 if (reason == 0) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004406 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4407 for (AppInfo info : appInfos) {
4408 removedComponents.add(info.componentName);
4409 }
Sunny Goyal1a745e82014-10-02 15:58:31 -07004410 if (!packageNames.isEmpty()) {
4411 mWorkspace.removeItemsByPackageName(packageNames, user);
4412 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004413 if (!removedComponents.isEmpty()) {
4414 mWorkspace.removeItemsByComponentName(removedComponents, user);
Sunny Goyal1a745e82014-10-02 15:58:31 -07004415 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004416 // Notify the drag controller
4417 mDragController.onAppsRemoved(packageNames, removedComponents);
4418
Sunny Goyal1a745e82014-10-02 15:58:31 -07004419 } else {
4420 mWorkspace.disableShortcutsByPackageName(packageNames, user, reason);
Joe Onorato36115782010-06-17 13:28:48 -04004421 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07004422
Winson Chungdf95eb12013-10-16 14:57:07 -07004423 // Update AllApps
Winson Chungb745afb2015-03-02 11:51:23 -08004424 if (mAppsView != null) {
4425 mAppsView.removeApps(appInfos);
Winson Chungc58497e2013-09-03 17:48:37 -07004426 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004427 }
Joe Onoratobe386092009-11-17 17:32:16 -08004428
Michael Jurkac402cd92013-05-20 15:49:32 +02004429 private Runnable mBindPackagesUpdatedRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004430 public void run() {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004431 bindAllPackages(mWidgetsModel);
Winson Chung83892cc2013-05-01 16:53:33 -07004432 }
Michael Jurkac402cd92013-05-20 15:49:32 +02004433 };
Hyunyoung Song3f471442015-04-08 19:01:34 -07004434
Hyunyoung Song8821ca92015-05-04 16:28:20 -07004435 @Override
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004436 public void bindAllPackages(final WidgetsModel model) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004437 if (waitUntilResume(mBindPackagesUpdatedRunnable, true)) {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004438 mWidgetsModel = model;
Winson Chung83892cc2013-05-01 16:53:33 -07004439 return;
4440 }
4441
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004442 if (mWidgetsView != null && model != null) {
4443 mWidgetsView.addWidgets(model);
4444 mWidgetsModel = null;
Winson Chung785d2eb2011-04-14 16:08:02 -07004445 }
Winson Chung80baf5a2010-08-09 16:03:15 -07004446 }
4447
Winson Chung400438b2011-01-16 17:53:48 -08004448 private int mapConfigurationOriActivityInfoOri(int configOri) {
4449 final Display d = getWindowManager().getDefaultDisplay();
4450 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
4451 switch (d.getRotation()) {
4452 case Surface.ROTATION_0:
4453 case Surface.ROTATION_180:
4454 // We are currently in the same basic orientation as the natural orientation
4455 naturalOri = configOri;
4456 break;
4457 case Surface.ROTATION_90:
4458 case Surface.ROTATION_270:
4459 // We are currently in the other basic orientation to the natural orientation
4460 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
4461 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
4462 break;
4463 }
4464
4465 int[] oriMap = {
4466 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
4467 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
4468 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
4469 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
4470 };
4471 // Since the map starts at portrait, we need to offset if this device's natural orientation
4472 // is landscape.
4473 int indexOffset = 0;
4474 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
4475 indexOffset = 1;
4476 }
4477 return oriMap[(d.getRotation() + indexOffset) % 4];
4478 }
Adam Cohen446e9402011-09-15 18:21:21 -07004479
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004480 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR2)
Winson Chung4b919f82012-05-01 10:44:08 -07004481 public void lockScreenOrientation() {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004482 if (mRotationEnabled) {
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004483 if (Utilities.ATLEAST_JB_MR2) {
4484 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LOCKED);
4485 } else {
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004486 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
4487 .getConfiguration().orientation));
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004488 }
Winson Chung4b919f82012-05-01 10:44:08 -07004489 }
4490 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004491
Winson Chung4b919f82012-05-01 10:44:08 -07004492 public void unlockScreenOrientation(boolean immediate) {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004493 if (mRotationEnabled) {
Winson Chung4b919f82012-05-01 10:44:08 -07004494 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07004495 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07004496 } else {
4497 mHandler.postDelayed(new Runnable() {
4498 public void run() {
4499 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4500 }
4501 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07004502 }
Winson Chung4b919f82012-05-01 10:44:08 -07004503 }
Winson Chung400438b2011-01-16 17:53:48 -08004504 }
4505
Winson Chunge43a1e72014-01-15 10:33:02 -08004506 protected boolean isLauncherPreinstalled() {
Adam Cohen9211d422014-10-07 18:14:53 -07004507 if (mLauncherCallbacks != null) {
4508 return mLauncherCallbacks.isLauncherPreinstalled();
4509 }
Winson Chunge43a1e72014-01-15 10:33:02 -08004510 PackageManager pm = getPackageManager();
4511 try {
4512 ApplicationInfo ai = pm.getApplicationInfo(getComponentName().getPackageName(), 0);
4513 if ((ai.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
4514 return true;
4515 } else {
4516 return false;
4517 }
4518 } catch (NameNotFoundException e) {
4519 e.printStackTrace();
4520 return false;
4521 }
4522 }
4523
Adam Cohenea90f832014-05-21 15:03:34 -07004524 /**
4525 * This method indicates whether or not we should suggest default wallpaper dimensions
4526 * when our wallpaper cropper was not yet used to set a wallpaper.
4527 */
4528 protected boolean overrideWallpaperDimensions() {
Adam Cohen9211d422014-10-07 18:14:53 -07004529 if (mLauncherCallbacks != null) {
4530 return mLauncherCallbacks.overrideWallpaperDimensions();
4531 }
Adam Cohenea90f832014-05-21 15:03:34 -07004532 return true;
4533 }
4534
Adam Cohen432609a2014-03-13 17:03:22 -07004535 /**
4536 * To be overridden by subclasses to indicate that there is an activity to launch
4537 * before showing the standard launcher experience.
4538 */
4539 protected boolean hasFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004540 if (mLauncherCallbacks != null) {
4541 return mLauncherCallbacks.hasFirstRunActivity();
4542 }
Adam Cohen432609a2014-03-13 17:03:22 -07004543 return false;
4544 }
4545
4546 /**
4547 * To be overridden by subclasses to launch any first run activity
4548 */
4549 protected Intent getFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004550 if (mLauncherCallbacks != null) {
4551 return mLauncherCallbacks.getFirstRunActivity();
4552 }
Adam Cohen432609a2014-03-13 17:03:22 -07004553 return null;
4554 }
4555
Winson Chunga6945242014-01-08 14:04:34 -08004556 private boolean shouldRunFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004557 return !ActivityManager.isRunningInTestHarness() &&
4558 !mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
Winson Chunga6945242014-01-08 14:04:34 -08004559 }
4560
Adam Cohen4a9423d2014-03-28 14:22:31 -07004561 protected boolean hasRunFirstRunActivity() {
4562 return mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
4563 }
4564
Adam Cohen432609a2014-03-13 17:03:22 -07004565 public boolean showFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004566 if (shouldRunFirstRunActivity() &&
4567 hasFirstRunActivity()) {
Winson Chunga6945242014-01-08 14:04:34 -08004568 Intent firstRunIntent = getFirstRunActivity();
4569 if (firstRunIntent != null) {
4570 startActivity(firstRunIntent);
4571 markFirstRunActivityShown();
Adam Cohen432609a2014-03-13 17:03:22 -07004572 return true;
Winson Chunga6945242014-01-08 14:04:34 -08004573 }
4574 }
Adam Cohen432609a2014-03-13 17:03:22 -07004575 return false;
Winson Chunga6945242014-01-08 14:04:34 -08004576 }
4577
4578 private void markFirstRunActivityShown() {
4579 SharedPreferences.Editor editor = mSharedPrefs.edit();
4580 editor.putBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, true);
4581 editor.apply();
4582 }
4583
Adam Cohen432609a2014-03-13 17:03:22 -07004584 /**
4585 * To be overridden by subclasses to indicate that there is an in-activity full-screen intro
4586 * screen that must be displayed and dismissed.
4587 */
4588 protected boolean hasDismissableIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004589 if (mLauncherCallbacks != null) {
4590 return mLauncherCallbacks.hasDismissableIntroScreen();
4591 }
Adam Cohen432609a2014-03-13 17:03:22 -07004592 return false;
4593 }
4594
4595 /**
4596 * Full screen intro screen to be shown and dismissed before the launcher can be used.
4597 */
4598 protected View getIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004599 if (mLauncherCallbacks != null) {
4600 return mLauncherCallbacks.getIntroScreen();
4601 }
Adam Cohen432609a2014-03-13 17:03:22 -07004602 return null;
4603 }
4604
4605 /**
4606 * To be overriden by subclasses to indicate whether the in-activity intro screen has been
4607 * dismissed. This method is ignored if #hasDismissableIntroScreen returns false.
4608 */
4609 private boolean shouldShowIntroScreen() {
4610 return hasDismissableIntroScreen() &&
4611 !mSharedPrefs.getBoolean(INTRO_SCREEN_DISMISSED, false);
4612 }
4613
4614 protected void showIntroScreen() {
4615 View introScreen = getIntroScreen();
4616 changeWallpaperVisiblity(false);
4617 if (introScreen != null) {
4618 mDragLayer.showOverlayView(introScreen);
4619 }
Adam Cohenc3e12c72014-10-31 16:15:36 -07004620 if (mLauncherOverlayContainer != null) {
4621 mLauncherOverlayContainer.setVisibility(View.INVISIBLE);
4622 }
Adam Cohen432609a2014-03-13 17:03:22 -07004623 }
4624
4625 public void dismissIntroScreen() {
4626 markIntroScreenDismissed();
4627 if (showFirstRunActivity()) {
4628 // We delay hiding the intro view until the first run activity is showing. This
4629 // avoids a blip.
4630 mWorkspace.postDelayed(new Runnable() {
4631 @Override
4632 public void run() {
4633 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004634 if (mLauncherOverlayContainer != null) {
4635 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4636 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004637 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004638 }
4639 }, ACTIVITY_START_DELAY);
4640 } else {
4641 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004642 if (mLauncherOverlayContainer != null) {
4643 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4644 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004645 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004646 }
4647 changeWallpaperVisiblity(true);
4648 }
4649
4650 private void markIntroScreenDismissed() {
4651 SharedPreferences.Editor editor = mSharedPrefs.edit();
4652 editor.putBoolean(INTRO_SCREEN_DISMISSED, true);
4653 editor.apply();
4654 }
4655
Adam Cohen091440a2015-03-18 14:16:05 -07004656 @Thunk void showFirstRunClings() {
Sunny Goyal88d60f12014-09-08 03:47:29 -07004657 // The two first run cling paths are mutually exclusive, if the launcher is preinstalled
4658 // on the device, then we always show the first run cling experience (or if there is no
4659 // launcher2). Otherwise, we prompt the user upon started for migration
4660 LauncherClings launcherClings = new LauncherClings(this);
4661 if (launcherClings.shouldShowFirstRunOrMigrationClings()) {
Sunny Goyal639e9062015-08-19 19:17:06 -07004662 mClings = launcherClings;
Sunny Goyal88d60f12014-09-08 03:47:29 -07004663 if (mModel.canMigrateFromOldLauncherDb(this)) {
4664 launcherClings.showMigrationCling();
4665 } else {
Sunny Goyalaf0628f2014-09-19 10:14:48 -07004666 launcherClings.showLongPressCling(true);
Sunny Goyal88d60f12014-09-08 03:47:29 -07004667 }
4668 }
4669 }
4670
Winson Chunga6945242014-01-08 14:04:34 -08004671 void showWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004672 if (mWorkspace != null) mWorkspace.setAlpha(1f);
4673 if (mHotseat != null) mHotseat.setAlpha(1f);
4674 if (mPageIndicators != null) mPageIndicators.setAlpha(1f);
Winson Chung006ee262015-08-03 14:40:11 -07004675 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4676 SearchDropTargetBar.State.SEARCH_BAR, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004677 }
4678
4679 void hideWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004680 if (mWorkspace != null) mWorkspace.setAlpha(0f);
4681 if (mHotseat != null) mHotseat.setAlpha(0f);
4682 if (mPageIndicators != null) mPageIndicators.setAlpha(0f);
Winson Chung006ee262015-08-03 14:40:11 -07004683 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4684 SearchDropTargetBar.State.INVISIBLE, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004685 }
4686
Winson Chung5ffd51d2015-06-25 11:36:50 -07004687 // TODO: These method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004688 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Mathew Inwood72fbec12013-11-19 15:45:07 +00004689 public ItemInfo createAppDragInfo(Intent appLaunchIntent) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004690 // Called from search suggestion
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004691 UserHandleCompat user = null;
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004692 if (Utilities.ATLEAST_LOLLIPOP) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004693 UserHandle userHandle = appLaunchIntent.getParcelableExtra(Intent.EXTRA_USER);
4694 if (userHandle != null) {
4695 user = UserHandleCompat.fromUser(userHandle);
4696 }
4697 }
4698 return createAppDragInfo(appLaunchIntent, user);
Winson Chung5ffd51d2015-06-25 11:36:50 -07004699 }
4700
4701 // TODO: This method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004702 public ItemInfo createAppDragInfo(Intent intent, UserHandleCompat user) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004703 if (user == null) {
4704 user = UserHandleCompat.myUserHandle();
4705 }
4706
4707 // Called from search suggestion, add the profile extra to the intent to ensure that we
4708 // can launch it correctly
Kenny Guyed131872014-04-30 03:02:21 +01004709 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004710 LauncherActivityInfoCompat activityInfo = launcherApps.resolveActivity(intent, user);
Kenny Guyed131872014-04-30 03:02:21 +01004711 if (activityInfo == null) {
Mathew Inwood72fbec12013-11-19 15:45:07 +00004712 return null;
4713 }
Winson Chung5ffd51d2015-06-25 11:36:50 -07004714 return new AppInfo(this, activityInfo, user, mIconCache);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004715 }
4716
Winson Chung5ffd51d2015-06-25 11:36:50 -07004717 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004718 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4719 Bitmap icon) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004720 return new ShortcutInfo(shortcutIntent, caption, caption, icon,
Kenny Guyed131872014-04-30 03:02:21 +01004721 UserHandleCompat.myUserHandle());
4722 }
4723
Winson Chung5ffd51d2015-06-25 11:36:50 -07004724 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004725 public void startDrag(View dragView, ItemInfo dragInfo, DragSource source) {
4726 dragView.setTag(dragInfo);
Winson Chungbabb53e2014-04-14 17:12:49 -07004727 mWorkspace.onExternalDragStartedWithItem(dragView);
4728 mWorkspace.beginExternalDragShared(dragView, source);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004729 }
4730
Winson Chung5ffd51d2015-06-25 11:36:50 -07004731 protected void moveWorkspaceToDefaultScreen() {
4732 mWorkspace.moveToDefaultScreen(false);
4733 }
4734
Anjali Koppalf5d29132014-02-28 13:33:27 -08004735 @Override
4736 public void onPageSwitch(View newPage, int newPageIndex) {
Adam Cohen9211d422014-10-07 18:14:53 -07004737 if (mLauncherCallbacks != null) {
4738 mLauncherCallbacks.onPageSwitch(newPage, newPageIndex);
4739 }
Anjali Koppalf5d29132014-02-28 13:33:27 -08004740 }
4741
Winson Chung80baf5a2010-08-09 16:03:15 -07004742 /**
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004743 * Returns a FastBitmapDrawable with the icon, accurately sized.
4744 */
4745 public FastBitmapDrawable createIconDrawable(Bitmap icon) {
4746 FastBitmapDrawable d = new FastBitmapDrawable(icon);
4747 d.setFilterBitmap(true);
4748 resizeIconDrawable(d);
4749 return d;
4750 }
4751
4752 /**
4753 * Resizes an icon drawable to the correct icon size.
4754 */
Winson5fbe0742015-09-30 15:33:00 -07004755 public Drawable resizeIconDrawable(Drawable icon) {
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004756 icon.setBounds(0, 0, mDeviceProfile.iconSizePx, mDeviceProfile.iconSizePx);
Winson5fbe0742015-09-30 15:33:00 -07004757 return icon;
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004758 }
4759
4760 /**
Joe Onoratobe386092009-11-17 17:32:16 -08004761 * Prints out out state for debugging.
4762 */
4763 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04004764 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08004765 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08004766 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
4767 Log.d(TAG, "mRestoring=" + mRestoring);
4768 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
4769 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004770 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08004771 mModel.dumpState();
Hyunyoung Song3f471442015-04-08 19:01:34 -07004772 // TODO(hyunyoungs): add mWidgetsView.dumpState(); or mWidgetsModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07004773
Daniel Sandler325dc232013-06-05 22:57:57 -04004774 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08004775 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004776
4777 @Override
4778 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
4779 super.dump(prefix, fd, writer, args);
Adam Cohen4caf2982013-08-20 18:54:31 -07004780 synchronized (sDumpLogs) {
4781 writer.println(" ");
4782 writer.println("Debug logs: ");
4783 for (int i = 0; i < sDumpLogs.size(); i++) {
4784 writer.println(" " + sDumpLogs.get(i));
4785 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004786 }
Adam Cohen9211d422014-10-07 18:14:53 -07004787 if (mLauncherCallbacks != null) {
4788 mLauncherCallbacks.dump(prefix, fd, writer, args);
4789 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004790 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004791
4792 public static void dumpDebugLogsToConsole() {
Winson Chungede41292013-09-19 16:27:36 -07004793 if (DEBUG_DUMP_LOG) {
4794 synchronized (sDumpLogs) {
4795 Log.d(TAG, "");
4796 Log.d(TAG, "*********************");
4797 Log.d(TAG, "Launcher debug logs: ");
4798 for (int i = 0; i < sDumpLogs.size(); i++) {
4799 Log.d(TAG, " " + sDumpLogs.get(i));
4800 }
4801 Log.d(TAG, "*********************");
4802 Log.d(TAG, "");
Adam Cohen4caf2982013-08-20 18:54:31 -07004803 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004804 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004805 }
4806
4807 public static void addDumpLog(String tag, String log, boolean debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004808 addDumpLog(tag, log, null, debugLog);
4809 }
4810
4811 public static void addDumpLog(String tag, String log, Exception e, boolean debugLog) {
Adam Cohen4caf2982013-08-20 18:54:31 -07004812 if (debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004813 if (e != null) {
4814 Log.d(tag, log, e);
4815 } else {
4816 Log.d(tag, log);
4817 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004818 }
Winson Chungede41292013-09-19 16:27:36 -07004819 if (DEBUG_DUMP_LOG) {
4820 sDateStamp.setTime(System.currentTimeMillis());
4821 synchronized (sDumpLogs) {
Dan Sandler295ae182013-12-10 16:05:47 -05004822 sDumpLogs.add(sDateFormat.format(sDateStamp) + ": " + tag + ", " + log
4823 + (e == null ? "" : (", Exception: " + e)));
Adam Cohen4caf2982013-08-20 18:54:31 -07004824 }
Winson Chungede41292013-09-19 16:27:36 -07004825 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004826 }
4827
Adam Cohen59400422014-03-05 18:07:04 -08004828 public static CustomAppWidget getCustomAppWidget(String name) {
4829 return sCustomAppWidgets.get(name);
4830 }
4831
4832 public static HashMap<String, CustomAppWidget> getCustomAppWidgets() {
4833 return sCustomAppWidgets;
4834 }
4835
Winson Chungede41292013-09-19 16:27:36 -07004836 public void dumpLogsToLocalData() {
4837 if (DEBUG_DUMP_LOG) {
Michael Jurka43467462013-11-14 12:03:58 +01004838 new AsyncTask<Void, Void, Void>() {
4839 public Void doInBackground(Void ... args) {
Winson Chungede41292013-09-19 16:27:36 -07004840 boolean success = false;
4841 sDateStamp.setTime(sRunStart);
4842 String FILENAME = sDateStamp.getMonth() + "-"
4843 + sDateStamp.getDay() + "_"
4844 + sDateStamp.getHours() + "-"
4845 + sDateStamp.getMinutes() + "_"
4846 + sDateStamp.getSeconds() + ".txt";
4847
4848 FileOutputStream fos = null;
4849 File outFile = null;
4850 try {
4851 outFile = new File(getFilesDir(), FILENAME);
4852 outFile.createNewFile();
4853 fos = new FileOutputStream(outFile);
4854 } catch (Exception e) {
4855 e.printStackTrace();
4856 }
4857 if (fos != null) {
4858 PrintWriter writer = new PrintWriter(fos);
4859
4860 writer.println(" ");
4861 writer.println("Debug logs: ");
4862 synchronized (sDumpLogs) {
4863 for (int i = 0; i < sDumpLogs.size(); i++) {
4864 writer.println(" " + sDumpLogs.get(i));
4865 }
4866 }
4867 writer.close();
4868 }
4869 try {
4870 if (fos != null) {
4871 fos.close();
4872 success = true;
4873 }
4874 } catch (IOException e) {
4875 e.printStackTrace();
4876 }
Michael Jurka43467462013-11-14 12:03:58 +01004877 return null;
Winson Chungede41292013-09-19 16:27:36 -07004878 }
Sunny Goyal8ac727b2015-09-23 15:38:09 -07004879 }.executeOnExecutor(Utilities.THREAD_POOL_EXECUTOR);
Adam Cohen4caf2982013-08-20 18:54:31 -07004880 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004881 }
Sunny Goyal29538332016-02-18 09:10:19 -08004882
4883 public static List<View> getFolderContents(View icon) {
4884 if (icon instanceof FolderIcon) {
4885 return ((FolderIcon) icon).getFolder().getItemsInReadingOrder();
4886 } else {
4887 return Collections.EMPTY_LIST;
4888 }
4889 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004890}
Michael Jurka2763be32011-02-24 11:19:57 -08004891
Dan Sandlerd5024042014-01-09 15:01:33 -05004892interface DebugIntents {
4893 static final String DELETE_DATABASE = "com.android.launcher3.action.DELETE_DATABASE";
4894 static final String MIGRATE_DATABASE = "com.android.launcher3.action.MIGRATE_DATABASE";
Adam Cohen8b5b05b2014-01-10 21:42:39 +00004895}