blob: c317da4e9524b43494c6da4aa8e33132d7cb1cb7 [file] [log] [blame]
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Daniel Sandler325dc232013-06-05 22:57:57 -040017package com.android.launcher3;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080018
Gilles Debunnedd6c9922010-10-25 11:23:41 -070019import android.animation.Animator;
Michael Jurka8edd75c2010-12-17 20:15:06 -080020import android.animation.AnimatorListenerAdapter;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070021import android.animation.AnimatorSet;
Adam Cohen2801caf2011-05-13 20:57:39 -070022import android.animation.ObjectAnimator;
23import android.animation.PropertyValuesHolder;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070024import android.animation.ValueAnimator;
Sunny Goyal70660032015-05-14 00:07:08 -070025import android.annotation.SuppressLint;
Adam Cohen0b395352014-06-09 22:54:36 +000026import android.annotation.TargetApi;
Michael Jurka946ad472010-07-09 18:05:18 -070027import android.app.Activity;
Brett Chabot2a9e2282011-08-23 15:03:13 -070028import android.app.ActivityManager;
Winson Chungc7450e32012-04-17 17:34:08 -070029import android.app.ActivityOptions;
Chris Wren40c5ed32014-06-24 18:24:23 -040030import android.app.AlertDialog;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080031import android.app.SearchManager;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080032import android.appwidget.AppWidgetHostView;
Michael Jurkaaf442092010-06-10 17:01:57 -070033import android.appwidget.AppWidgetManager;
34import android.appwidget.AppWidgetProviderInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080035import android.content.ActivityNotFoundException;
Joe Onorato2ca0ae72009-11-10 13:14:13 -080036import android.content.BroadcastReceiver;
Michael Jurkae326f182011-11-21 14:05:46 -080037import android.content.ComponentCallbacks2;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040038import android.content.ComponentName;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080039import android.content.Context;
Chris Wren40c5ed32014-06-24 18:24:23 -040040import android.content.DialogInterface;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080041import android.content.Intent;
Winson Chungf0ea4d32011-06-06 14:27:16 -070042import android.content.IntentFilter;
Adam Cohen173f7112015-03-27 15:14:00 -070043import android.content.IntentSender;
Winson Chung82f55532011-08-09 14:14:23 -070044import android.content.SharedPreferences;
Winson Chungaafa03c2010-06-11 17:34:16 -070045import android.content.pm.ActivityInfo;
Winson Chunge43a1e72014-01-15 10:33:02 -080046import android.content.pm.ApplicationInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080047import android.content.pm.PackageManager;
Adam Cohen716b51e2011-06-30 12:09:54 -070048import android.content.pm.PackageManager.NameNotFoundException;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080049import android.content.res.Configuration;
Adam Cohen3f9c9712014-10-31 11:48:25 -070050import android.database.sqlite.SQLiteDatabase;
Adam Cohen268c4752012-06-06 17:47:33 -070051import android.graphics.Bitmap;
52import android.graphics.Canvas;
Sandeep Siddhartha2efc7d92014-05-16 17:21:15 -070053import android.graphics.Color;
Adam Cohen268c4752012-06-06 17:47:33 -070054import android.graphics.PorterDuff;
Michael Jurkaaf442092010-06-10 17:01:57 -070055import android.graphics.Rect;
Sunny Goyal4a6c6f32015-05-19 12:36:46 -070056import android.graphics.drawable.ColorDrawable;
Michael Jurkaaf442092010-06-10 17:01:57 -070057import android.graphics.drawable.Drawable;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040058import android.net.Uri;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -070059import android.os.AsyncTask;
Adam Cohen0f668f32014-09-08 19:54:17 +020060import android.os.Build;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080061import android.os.Bundle;
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +020062import android.os.Environment;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080063import android.os.Handler;
Adam Cohended9f8d2010-11-03 13:25:16 -070064import android.os.Message;
Winson Chunga2413752012-04-03 14:22:34 -070065import android.os.StrictMode;
Daniel Sandler843e8602010-06-07 14:59:01 -040066import android.os.SystemClock;
Sunny Goyala1d1bf32015-06-26 13:24:53 -070067import android.os.UserHandle;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080068import android.text.Selection;
69import android.text.SpannableStringBuilder;
Michael Jurkaa33411c2012-06-14 16:18:21 -070070import android.text.TextUtils;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080071import android.text.method.TextKeyListener;
Joe Onorato7c312c12009-08-13 21:36:53 -070072import android.util.Log;
Adam Cohen96d30a12013-07-16 18:13:21 -070073import android.view.Display;
74import android.view.Gravity;
75import android.view.HapticFeedbackConstants;
76import android.view.KeyEvent;
77import android.view.LayoutInflater;
78import android.view.Menu;
Adam Cohen96d30a12013-07-16 18:13:21 -070079import android.view.MotionEvent;
80import android.view.Surface;
81import android.view.View;
Adam Cohenf358a4b2013-07-23 16:47:31 -070082import android.view.View.OnClickListener;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080083import android.view.View.OnLongClickListener;
Adam Cohen96d30a12013-07-16 18:13:21 -070084import android.view.ViewGroup;
Adam Cohenc2d6e892014-10-16 09:49:24 -070085import android.view.ViewStub;
Adam Cohen96d30a12013-07-16 18:13:21 -070086import android.view.ViewTreeObserver;
Sunny Goyal651077b2014-06-30 14:15:31 -070087import android.view.Window;
Adam Cohen96d30a12013-07-16 18:13:21 -070088import android.view.WindowManager;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -080089import android.view.accessibility.AccessibilityEvent;
Sunny Goyal5a1f53b2015-05-27 10:24:24 -070090import android.view.animation.OvershootInterpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080091import android.view.inputmethod.InputMethodManager;
Adam Cohen96d30a12013-07-16 18:13:21 -070092import android.widget.Advanceable;
93import android.widget.FrameLayout;
94import android.widget.ImageView;
Chet Haasea8f996d2015-02-17 12:56:04 -080095import android.widget.TextView;
Adam Cohen96d30a12013-07-16 18:13:21 -070096import android.widget.Toast;
Sunny Goyala1d1bf32015-06-26 13:24:53 -070097
Sunny Goyal651077b2014-06-30 14:15:31 -070098import com.android.launcher3.DropTarget.DragObject;
99import com.android.launcher3.PagedView.PageSwitchListener;
Winson Chung5f4e0fd2015-05-22 11:12:27 -0700100import com.android.launcher3.allapps.AllAppsContainerView;
Sunny Goyalffe83f12014-08-14 17:39:34 -0700101import com.android.launcher3.compat.AppWidgetManagerCompat;
Kenny Guyed131872014-04-30 03:02:21 +0100102import com.android.launcher3.compat.LauncherActivityInfoCompat;
103import com.android.launcher3.compat.LauncherAppsCompat;
104import com.android.launcher3.compat.UserHandleCompat;
105import com.android.launcher3.compat.UserManagerCompat;
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700106import com.android.launcher3.model.WidgetsModel;
Winson Chung6b1c73f2015-06-18 11:38:42 -0700107import com.android.launcher3.util.ComponentKey;
Sunny Goyale2df0622015-04-24 11:27:00 -0700108import com.android.launcher3.util.LongArrayMap;
Adam Cohen091440a2015-03-18 14:16:05 -0700109import com.android.launcher3.util.Thunk;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700110import com.android.launcher3.widget.PendingAddWidgetInfo;
Hyunyoung Songb99ff3e2015-04-23 15:17:50 -0700111import com.android.launcher3.widget.WidgetHostViewLoader;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700112import com.android.launcher3.widget.WidgetsContainerView;
Adam Cohen6c5891a2014-07-09 23:53:15 -0700113
Adam Cohen4caf2982013-08-20 18:54:31 -0700114import java.io.File;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700115import java.io.FileDescriptor;
Adam Cohen4caf2982013-08-20 18:54:31 -0700116import java.io.FileOutputStream;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700117import java.io.IOException;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700118import java.io.PrintWriter;
Adam Cohen4caf2982013-08-20 18:54:31 -0700119import java.text.DateFormat;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700120import java.util.ArrayList;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700121import java.util.Collection;
Adam Cohen4caf2982013-08-20 18:54:31 -0700122import java.util.Date;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700123import java.util.HashMap;
Sunny Goyal4390ace2014-10-13 11:33:11 -0700124import java.util.HashSet;
Michael Jurkad7c28052012-04-27 15:43:36 -0700125import java.util.List;
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000126import java.util.concurrent.atomic.AtomicInteger;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700127
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800128/**
129 * Default launcher application.
130 */
Bjorn Bringertc459e522013-06-07 19:36:01 +0100131public class Launcher extends Activity
Michael Jurka0e260592010-06-30 17:07:39 -0700132 implements View.OnClickListener, OnLongClickListener, LauncherModel.Callbacks,
Winson Chung006ee262015-08-03 14:40:11 -0700133 View.OnTouchListener, PageSwitchListener, LauncherProviderChangeListener {
Hyunyoung Song4e8fb912015-04-11 15:44:32 -0700134 static final String TAG = "Launcher";
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700135 static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800136
Daniel Sandlerf061f822013-06-27 13:59:36 -0400137 static final boolean PROFILE_STARTUP = false;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700138 static final boolean DEBUG_WIDGETS = true;
Winson Chunga2413752012-04-03 14:22:34 -0700139 static final boolean DEBUG_STRICT_MODE = false;
Daniel Sandlerf061f822013-06-27 13:59:36 -0400140 static final boolean DEBUG_RESUME_TIME = false;
Winson Chungede41292013-09-19 16:27:36 -0700141 static final boolean DEBUG_DUMP_LOG = false;
Romain Guy6fefcf12009-06-11 13:07:43 -0700142
Dan Sandlerd5024042014-01-09 15:01:33 -0500143 static final boolean ENABLE_DEBUG_INTENTS = false; // allow DebugIntents to run
144
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800145 private static final int REQUEST_CREATE_SHORTCUT = 1;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700146 private static final int REQUEST_CREATE_APPWIDGET = 5;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700147 private static final int REQUEST_PICK_APPWIDGET = 9;
Mike Clerona0618e42009-10-22 13:55:21 -0700148 private static final int REQUEST_PICK_WALLPAPER = 10;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800149
Michael Jurka8b805b12012-04-18 14:23:14 -0700150 private static final int REQUEST_BIND_APPWIDGET = 11;
Sunny Goyalff572272014-07-23 13:58:07 -0700151 private static final int REQUEST_RECONFIGURE_APPWIDGET = 12;
Michael Jurka8b805b12012-04-18 14:23:14 -0700152
Sunny Goyal4a6c6f32015-05-19 12:36:46 -0700153 private static final int WORKSPACE_BACKGROUND_GRADIENT = 0;
154 private static final int WORKSPACE_BACKGROUND_TRANSPARENT = 1;
155 private static final int WORKSPACE_BACKGROUND_BLACK = 2;
156
Sunny Goyal5a1f53b2015-05-27 10:24:24 -0700157 private static final float BOUNCE_ANIMATION_TENSION = 1.3f;
158
Mathew Inwood876a8462013-06-14 14:12:41 +0100159 /**
160 * IntentStarter uses request codes starting with this. This must be greater than all activity
161 * request codes used internally.
162 */
163 protected static final int REQUEST_LAST = 100;
164
Mike Cleron3a2b3f22009-11-05 17:17:42 -0800165 static final int SCREEN_COUNT = 5;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800166
Michael Jurka0a457bf2012-11-19 14:05:05 -0800167 // To turn on these properties, type
168 // adb shell setprop log.tag.PROPERTY_NAME [VERBOSE | SUPPRESS]
Michael Jurka0a457bf2012-11-19 14:05:05 -0800169 static final String DUMP_STATE_PROPERTY = "launcher_dump_state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800170
Winson Chung2672ff92012-05-04 16:22:30 -0700171 // The Intent extra that defines whether to ignore the launch animation
172 static final String INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION =
Daniel Sandler325dc232013-06-05 22:57:57 -0400173 "com.android.launcher3.intent.extra.shortcut.INGORE_LAUNCH_ANIMATION";
Winson Chung2672ff92012-05-04 16:22:30 -0700174
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800175 // Type: int
176 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
Michael Jurka883f55b2010-10-21 15:47:14 -0700177 // Type: int
178 private static final String RUNTIME_STATE = "launcher.state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800179 // Type: int
Winson Chung3d503fb2011-07-13 17:25:49 -0700180 private static final String RUNTIME_STATE_PENDING_ADD_CONTAINER = "launcher.add_container";
181 // Type: int
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800182 private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
183 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700184 private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cell_x";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800185 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700186 private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cell_y";
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700187 // Type: int
188 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_X = "launcher.add_span_x";
189 // Type: int
190 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_Y = "launcher.add_span_y";
191 // Type: parcelable
192 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_INFO = "launcher.add_widget_info";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000193 // Type: parcelable
Adam Cohen4637b5a2013-11-04 18:21:24 -0800194 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_ID = "launcher.add_widget_id";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000195 // Type: int[]
196 private static final String RUNTIME_STATE_VIEW_IDS = "launcher.view_ids";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800197
Adam Cohen432609a2014-03-13 17:03:22 -0700198 static final String INTRO_SCREEN_DISMISSED = "launcher.intro_screen_dismissed";
Adam Cohenb54a5982014-01-08 15:21:04 -0800199 static final String FIRST_RUN_ACTIVITY_DISPLAYED = "launcher.first_run_activity_displayed";
200
Adam Cohen3ed316a2014-07-23 18:21:20 -0700201 static final String FIRST_LOAD_COMPLETE = "launcher.first_load_complete";
202 static final String ACTION_FIRST_LOAD_COMPLETE =
203 "com.android.launcher3.action.FIRST_LOAD_COMPLETE";
204
Adam Cohen39a06042013-07-19 14:30:12 -0700205 public static final String SHOW_WEIGHT_WATCHER = "debug.show_mem";
Daniel Sandler6053b8002013-08-15 15:44:26 -0700206 public static final boolean SHOW_WEIGHT_WATCHER_DEFAULT = false;
Adam Cohen39a06042013-07-19 14:30:12 -0700207
Sunny Goyal594d76d2014-11-06 10:12:54 -0800208 private static final String QSB_WIDGET_ID = "qsb_widget_id";
209 private static final String QSB_WIDGET_PROVIDER = "qsb_widget_provider";
Sunny Goyal99568592015-08-27 13:48:11 -0700210 // Item id to use for QSB widget.
211 private static final int QSB_ITEM_ID = -1;
Sunny Goyal594d76d2014-11-06 10:12:54 -0800212
Winson Chunga6945242014-01-08 14:04:34 -0800213 public static final String USER_HAS_MIGRATED = "launcher.user_migrated_from_old_data";
214
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700215 /** The different states that Launcher can be in. */
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700216 enum State { NONE, WORKSPACE, APPS, APPS_SPRING_LOADED, WIDGETS, WIDGETS_SPRING_LOADED }
217
Adam Cohen091440a2015-03-18 14:16:05 -0700218 @Thunk State mState = State.WORKSPACE;
Adam Cohen091440a2015-03-18 14:16:05 -0700219 @Thunk LauncherStateTransitionAnimation mStateTransitionAnimation;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700220
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700221 private boolean mIsSafeModeEnabled;
222
Adam Cohenc2d6e892014-10-16 09:49:24 -0700223 LauncherOverlayCallbacks mLauncherOverlayCallbacks = new LauncherOverlayCallbacksImpl();
224 LauncherOverlay mLauncherOverlay;
Adam Cohena6d04922014-10-23 17:28:30 -0700225 InsettableFrameLayout mLauncherOverlayContainer;
Adam Cohenc2d6e892014-10-16 09:49:24 -0700226
Joe Onorato9c1289c2009-08-17 11:03:03 -0400227 static final int APPWIDGET_HOST_ID = 1024;
Adam Cohenad4e15c2013-10-17 16:21:35 -0700228 public static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
229 private static final int ON_ACTIVITY_RESULT_ANIMATION_DELAY = 500;
Adam Cohen646fdf72014-04-08 16:59:36 -0700230 private static final int ACTIVITY_START_DELAY = 1000;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800231
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000232 private HashMap<Integer, Integer> mItemIdToViewId = new HashMap<Integer, Integer>();
233 private static final AtomicInteger sNextGeneratedId = new AtomicInteger(1);
234
Winson Chunga2413752012-04-03 14:22:34 -0700235 // How long to wait before the new-shortcut animation automatically pans the workspace
Winson Chung94d67682013-09-25 16:29:40 -0700236 private static int NEW_APPS_PAGE_MOVE_DELAY = 500;
237 private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 5;
Adam Cohen091440a2015-03-18 14:16:05 -0700238 @Thunk static int NEW_APPS_ANIMATION_DELAY = 500;
Winson Chunga2413752012-04-03 14:22:34 -0700239
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800240 private final BroadcastReceiver mCloseSystemDialogsReceiver
241 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800242
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800243 private LayoutInflater mInflater;
244
Adam Cohen091440a2015-03-18 14:16:05 -0700245 @Thunk Workspace mWorkspace;
Craig Mautner360310b2012-10-26 15:13:08 -0700246 private View mLauncherView;
Winson Chunga6945242014-01-08 14:04:34 -0800247 private View mPageIndicators;
Adam Cohen091440a2015-03-18 14:16:05 -0700248 @Thunk DragLayer mDragLayer;
Michael Jurkab737ee62011-11-15 15:57:22 -0800249 private DragController mDragController;
Adam Cohen39a06042013-07-19 14:30:12 -0700250 private View mWeightWatcher;
Romain Guycbb89e42009-06-08 15:52:54 -0700251
Sunny Goyalffe83f12014-08-14 17:39:34 -0700252 private AppWidgetManagerCompat mAppWidgetManager;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700253 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700254
Adam Cohen091440a2015-03-18 14:16:05 -0700255 @Thunk ItemInfo mPendingAddInfo = new ItemInfo();
Adam Cohen59400422014-03-05 18:07:04 -0800256 private LauncherAppWidgetProviderInfo mPendingAddWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800257 private int mPendingAddWidgetId = -1;
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700258
Michael Jurka0280c3b2010-09-17 15:00:07 -0700259 private int[] mTmpAddItemCellCoordinates = new int[2];
260
Sunny Goyal316490e2015-06-02 09:38:28 -0700261 @Thunk Hotseat mHotseat;
Jorim Jaggid017f882014-01-14 17:08:48 -0800262 private ViewGroup mOverviewPanel;
Adam Cohenf358a4b2013-07-23 16:47:31 -0700263
Michael Jurka838a4ca2011-02-07 13:33:06 -0800264 private View mAllAppsButton;
Hyunyoung Song98ff38a2015-07-10 17:50:13 -0700265 private View mWidgetsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700266
Winson Chungc51db6a2011-10-05 11:44:49 -0700267 private SearchDropTargetBar mSearchDropTargetBar;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700268
269 // Main container view for the all apps screen.
Winson Chung5f4e0fd2015-05-22 11:12:27 -0700270 @Thunk AllAppsContainerView mAppsView;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700271
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700272 // Main container view and the model for the widget tray screen.
273 @Thunk WidgetsContainerView mWidgetsView;
274 @Thunk WidgetsModel mWidgetsModel;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700275
Winson Chungf0ea4d32011-06-06 14:27:16 -0700276 private boolean mAutoAdvanceRunning = false;
Sunny Goyal594d76d2014-11-06 10:12:54 -0800277 private AppWidgetHostView mQsb;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800278
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800279 private Bundle mSavedState;
Winson Chung4a2afa32012-07-19 14:53:05 -0700280 // We set the state in both onCreate and then onNewIntent in some cases, which causes both
281 // scroll issues (because the workspace may not have been measured yet) and extra work.
282 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
283 private State mOnResumeState = State.NONE;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800284
285 private SpannableStringBuilder mDefaultKeySsb = null;
286
Adam Cohen091440a2015-03-18 14:16:05 -0700287 @Thunk boolean mWorkspaceLoading = true;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400288
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800289 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800290 private boolean mRestoring;
291 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700292 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800293
Michael Jurka1e2f4652013-07-08 18:03:46 -0700294 private ArrayList<Runnable> mBindOnResumeCallbacks = new ArrayList<Runnable>();
Michael Jurka7607c2f2013-04-03 14:33:19 -0700295 private ArrayList<Runnable> mOnResumeCallbacks = new ArrayList<Runnable>();
296
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800297 private Bundle mSavedInstanceState;
298
Joe Onorato9c1289c2009-08-17 11:03:03 -0400299 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800300 private IconCache mIconCache;
Adam Cohen091440a2015-03-18 14:16:05 -0700301 @Thunk boolean mUserPresent = true;
Adam Cohend113e0c2010-11-11 10:48:05 -0800302 private boolean mVisible = false;
Adam Cohened307df2013-10-02 09:37:31 -0700303 private boolean mHasFocus = false;
Adam Cohend113e0c2010-11-11 10:48:05 -0800304 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400305
Sunny Goyal639e9062015-08-19 19:17:06 -0700306 private LauncherClings mClings;
307
Sunny Goyale2df0622015-04-24 11:27:00 -0700308 private static LongArrayMap<FolderInfo> sFolders = new LongArrayMap<>();
Romain Guycbb89e42009-06-08 15:52:54 -0700309
Adam Cohen61f560d2013-09-30 15:58:20 -0700310 private View.OnTouchListener mHapticFeedbackTouchListener;
311
Adam Cohended9f8d2010-11-03 13:25:16 -0700312 // Related to the auto-advancing of widgets
313 private final int ADVANCE_MSG = 1;
314 private final int mAdvanceInterval = 20000;
315 private final int mAdvanceStagger = 250;
316 private long mAutoAdvanceSentTime;
317 private long mAutoAdvanceTimeLeft = -1;
Adam Cohen091440a2015-03-18 14:16:05 -0700318 @Thunk HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
Adam Cohended9f8d2010-11-03 13:25:16 -0700319 new HashMap<View, AppWidgetProviderInfo>();
320
Winson Chung400438b2011-01-16 17:53:48 -0800321 // Determines how long to wait after a rotation before restoring the screen orientation to
322 // match the sensor state.
323 private final int mRestoreScreenOrientationDelay = 500;
324
Adam Cohen091440a2015-03-18 14:16:05 -0700325 @Thunk Drawable mWorkspaceBackgroundDrawable;
Craig Mautner360310b2012-10-26 15:13:08 -0700326
Adam Cohen1462de32012-07-24 22:34:36 -0700327 private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700328 private static final boolean DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE = false;
Adam Cohen1462de32012-07-24 22:34:36 -0700329
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700330 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
Adam Cohen4caf2982013-08-20 18:54:31 -0700331 static Date sDateStamp = new Date();
332 static DateFormat sDateFormat =
333 DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
334 static long sRunStart = System.currentTimeMillis();
335 static final String CORRUPTION_EMAIL_SENT_KEY = "corruptionEmailSent";
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700336
Winson Chung46353de2012-02-16 14:05:10 -0800337 // We only want to get the SharedPreferences once since it does an FS stat each time we get
338 // it from the context.
339 private SharedPreferences mSharedPrefs;
340
Winson Chungf0c6ae02012-03-21 16:10:31 -0700341 // Holds the page that we need to animate to, and the icon views that we need to animate up
342 // when we scroll to that page on resume.
Adam Cohen091440a2015-03-18 14:16:05 -0700343 @Thunk ImageView mFolderIconImageView;
Adam Cohen268c4752012-06-06 17:47:33 -0700344 private Bitmap mFolderIconBitmap;
345 private Canvas mFolderIconCanvas;
346 private Rect mRectForFolderAnimation = new Rect();
Adam Cohen2801caf2011-05-13 20:57:39 -0700347
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700348 private DeviceProfile mDeviceProfile;
349
Winson Chung13eb5272015-05-11 16:30:13 -0700350 // This is set to the view that launched the activity that navigated the user away from
351 // launcher. Since there is no callback for when the activity has finished launching, enable
352 // the press state and keep this reference to reset the press state when we return to launcher.
Michael Jurkaddd62e92011-02-16 17:49:14 -0800353 private BubbleTextView mWaitingForResume;
354
Adam Cohen59400422014-03-05 18:07:04 -0800355 protected static HashMap<String, CustomAppWidget> sCustomAppWidgets =
356 new HashMap<String, CustomAppWidget>();
357
358 private static final boolean ENABLE_CUSTOM_WIDGET_TEST = false;
359 static {
360 if (ENABLE_CUSTOM_WIDGET_TEST) {
361 sCustomAppWidgets.put(DummyWidget.class.getName(), new DummyWidget());
362 }
363 }
364
Adam Cohen091440a2015-03-18 14:16:05 -0700365 @Thunk Runnable mBuildLayersRunnable = new Runnable() {
Michael Jurkac1f5d262011-09-30 19:32:27 -0700366 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700367 if (mWorkspace != null) {
368 mWorkspace.buildPageHardwareLayers();
369 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700370 }
371 };
372
Adam Cohendb364c32014-05-20 14:23:40 -0700373 private static PendingAddArguments sPendingAddItem;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800374
Adam Cohen091440a2015-03-18 14:16:05 -0700375 @Thunk static class PendingAddArguments {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800376 int requestCode;
377 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700378 long container;
Adam Cohendcd297f2013-06-18 13:13:40 -0700379 long screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800380 int cellX;
381 int cellY;
Adam Cohendb364c32014-05-20 14:23:40 -0700382 int appWidgetId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800383 }
384
Daniel Sandlerff02d492013-08-05 02:12:05 -0400385 private Stats mStats;
Sunny Goyaldcbcc862014-08-12 15:58:36 -0700386 FocusIndicatorView mFocusHandler;
Sunny Goyal7779d622015-06-11 16:18:39 -0700387 private boolean mRotationEnabled = false;
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400388
389 @Thunk void setOrientation() {
390 if (mRotationEnabled) {
391 unlockScreenOrientation(true);
392 } else {
393 setRequestedOrientation(
394 ActivityInfo.SCREEN_ORIENTATION_NOSENSOR);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700395 }
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400396 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700397
Sunny Goyal7779d622015-06-11 16:18:39 -0700398 private Runnable mUpdateOrientationRunnable = new Runnable() {
399 public void run() {
400 setOrientation();
401 }
402 };
403
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800404 @Override
405 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700406 if (DEBUG_STRICT_MODE) {
407 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
408 .detectDiskReads()
409 .detectDiskWrites()
410 .detectNetwork() // or .detectAll() for all detectable problems
411 .penaltyLog()
412 .build());
413 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
414 .detectLeakedSqlLiteObjects()
415 .detectLeakedClosableObjects()
416 .penaltyLog()
417 .penaltyDeath()
418 .build());
419 }
420
Adam Cohen9211d422014-10-07 18:14:53 -0700421 if (mLauncherCallbacks != null) {
422 mLauncherCallbacks.preOnCreate();
423 }
424
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800425 super.onCreate(savedInstanceState);
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400426
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400427 LauncherAppState.setApplicationContext(getApplicationContext());
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400428 LauncherAppState app = LauncherAppState.getInstance();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700429
Adam Cohen2e6da152015-05-06 11:42:25 -0700430 // Load configuration-specific DeviceProfile
Sunny Goyalc6205602015-05-21 20:46:33 -0700431 mDeviceProfile = getResources().getConfiguration().orientation
432 == Configuration.ORIENTATION_LANDSCAPE ?
433 app.getInvariantDeviceProfile().landscapeProfile
434 : app.getInvariantDeviceProfile().portraitProfile;
435
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400436 mSharedPrefs = getSharedPreferences(LauncherAppState.getSharedPreferencesKey(),
Winson Chungf0c6ae02012-03-21 16:10:31 -0700437 Context.MODE_PRIVATE);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700438 mIsSafeModeEnabled = getPackageManager().isSafeMode();
Joe Onorato0589f0f2010-02-08 13:44:00 -0800439 mModel = app.setLauncher(this);
440 mIconCache = app.getIconCache();
Adam Cohen2e6da152015-05-06 11:42:25 -0700441
Joe Onorato41a12d22009-10-31 18:30:00 -0400442 mDragController = new DragController(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800443 mInflater = getLayoutInflater();
Winson Chung006ee262015-08-03 14:40:11 -0700444 mStateTransitionAnimation = new LauncherStateTransitionAnimation(this);
Romain Guycbb89e42009-06-08 15:52:54 -0700445
Daniel Sandlerff02d492013-08-05 02:12:05 -0400446 mStats = new Stats(this);
447
Sunny Goyalffe83f12014-08-14 17:39:34 -0700448 mAppWidgetManager = AppWidgetManagerCompat.getInstance(this);
Adam Cohen53805212013-10-01 10:39:23 -0700449
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700450 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
451 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700452
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700453 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
454 // this also ensures that any synchronous binding below doesn't re-trigger another
455 // LauncherModel load.
456 mPaused = false;
457
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800458 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200459 android.os.Debug.startMethodTracing(
460 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800461 }
462
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800463 setContentView(R.layout.launcher);
Michael Jurka7267fa52013-09-26 15:29:57 -0700464
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800465 setupViews();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700466 mDeviceProfile.layout(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800467
Joe Onorato7c312c12009-08-13 21:36:53 -0700468 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700469
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800470 mSavedState = savedInstanceState;
471 restoreState(mSavedState);
472
473 if (PROFILE_STARTUP) {
474 android.os.Debug.stopMethodTracing();
475 }
476
477 if (!mRestoring) {
Adam Cohendb78dc82014-06-19 14:50:51 -0700478 if (DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700479 // If the user leaves launcher, then we should just load items asynchronously when
480 // they return.
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700481 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Winson Chung4a2afa32012-07-19 14:53:05 -0700482 } else {
483 // We only load the page synchronously if the user rotates (or triggers a
484 // configuration change) while launcher is in the foreground
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700485 mModel.startLoader(mWorkspace.getRestorePage());
Winson Chung4a2afa32012-07-19 14:53:05 -0700486 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800487 }
488
489 // For handling default keys
490 mDefaultKeySsb = new SpannableStringBuilder();
491 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800492
493 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
494 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800495
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700496 mRotationEnabled = Utilities.isRotationAllowedForDevice(getApplicationContext());
497 // In case we are on a device with locked rotation, we should look at preferences to check
498 // if the user has specifically allowed rotation.
499 if (!mRotationEnabled) {
Rahul Chaturvedie863fed2015-06-15 14:09:42 -0400500 mRotationEnabled = Utilities.isAllowRotationPrefEnabled(getApplicationContext(), false);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700501 }
502
503 // On large interfaces, or on devices that a user has specifically enabled screen rotation,
504 // we want the screen to auto-rotate based on the current orientation
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400505 setOrientation();
Winson Chungaf40f202013-09-18 18:26:31 -0700506
Adam Cohen9211d422014-10-07 18:14:53 -0700507 if (mLauncherCallbacks != null) {
508 mLauncherCallbacks.onCreate(savedInstanceState);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700509 if (mLauncherCallbacks.hasLauncherOverlay()) {
510 ViewStub stub = (ViewStub) findViewById(R.id.launcher_overlay_stub);
Adam Cohena6d04922014-10-23 17:28:30 -0700511 mLauncherOverlayContainer = (InsettableFrameLayout) stub.inflate();
512 mLauncherOverlay = mLauncherCallbacks.setLauncherOverlayView(
513 mLauncherOverlayContainer, mLauncherOverlayCallbacks);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700514 mWorkspace.setLauncherOverlay(mLauncherOverlay);
515 }
Adam Cohen9211d422014-10-07 18:14:53 -0700516 }
Adam Cohenc3e12c72014-10-31 16:15:36 -0700517
518 if (shouldShowIntroScreen()) {
519 showIntroScreen();
520 } else {
521 showFirstRunActivity();
522 showFirstRunClings();
523 }
Adam Cohen9211d422014-10-07 18:14:53 -0700524 }
525
Sunny Goyal7779d622015-06-11 16:18:39 -0700526 @Override
527 public void onSettingsChanged(String settings, boolean value) {
528 if (Utilities.ALLOW_ROTATION_PREFERENCE_KEY.equals(settings)) {
529 mRotationEnabled = value;
530 if (!waitUntilResume(mUpdateOrientationRunnable, true)) {
531 mUpdateOrientationRunnable.run();
532 }
533 }
534 }
535
Adam Cohen9211d422014-10-07 18:14:53 -0700536 private LauncherCallbacks mLauncherCallbacks;
537
538 public void onPostCreate(Bundle savedInstanceState) {
539 super.onPostCreate(savedInstanceState);
540 if (mLauncherCallbacks != null) {
541 mLauncherCallbacks.onPostCreate(savedInstanceState);
542 }
543 }
544
545 public boolean setLauncherCallbacks(LauncherCallbacks callbacks) {
546 mLauncherCallbacks = callbacks;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700547 mLauncherCallbacks.setLauncherSearchCallback(new Launcher.LauncherSearchCallbacks() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700548 private boolean mWorkspaceImportanceStored = false;
549 private boolean mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700550 private int mWorkspaceImportanceForAccessibility =
551 View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
552 private int mHotseatImportanceForAccessibility = View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
553
554 @Override
555 public void onSearchOverlayOpened() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700556 if (mWorkspaceImportanceStored || mHotseatImportanceStored) {
Jun Mukai8af0cd82015-05-12 12:32:12 -0700557 return;
558 }
559 // The underlying workspace and hotseat are temporarily suppressed by the search
560 // overlay. So they sholudn't be accessible.
Jun Mukaie9819e62015-06-17 10:58:59 -0700561 if (mWorkspace != null) {
562 mWorkspaceImportanceForAccessibility =
563 mWorkspace.getImportantForAccessibility();
564 mWorkspace.setImportantForAccessibility(
565 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
566 mWorkspaceImportanceStored = true;
567 }
568 if (mHotseat != null) {
569 mHotseatImportanceForAccessibility = mHotseat.getImportantForAccessibility();
570 mHotseat.setImportantForAccessibility(
571 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
572 mHotseatImportanceStored = true;
573 }
Jun Mukai8af0cd82015-05-12 12:32:12 -0700574 }
575
576 @Override
577 public void onSearchOverlayClosed() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700578 if (mWorkspaceImportanceStored && mWorkspace != null) {
579 mWorkspace.setImportantForAccessibility(mWorkspaceImportanceForAccessibility);
580 }
581 if (mHotseatImportanceStored && mHotseat != null) {
582 mHotseat.setImportantForAccessibility(mHotseatImportanceForAccessibility);
583 }
584 mWorkspaceImportanceStored = false;
585 mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700586 }
587 });
Adam Cohen9211d422014-10-07 18:14:53 -0700588 return true;
Adam Cohenf9426d52012-06-04 17:26:21 -0700589 }
590
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700591 @Override
Adam Cohen9211d422014-10-07 18:14:53 -0700592 public void onLauncherProviderChange() {
593 if (mLauncherCallbacks != null) {
594 mLauncherCallbacks.onLauncherProviderChange();
595 }
596 }
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700597
Winson Chungef7f8742015-06-04 17:18:17 -0700598 /**
599 * Updates the bounds of all the overlays to match the new fixed bounds.
600 */
601 public void updateOverlayBounds(Rect newBounds) {
602 mAppsView.setSearchBarBounds(newBounds);
603 mWidgetsView.setSearchBarBounds(newBounds);
604 }
605
Adam Cohen9211d422014-10-07 18:14:53 -0700606 /** To be overridden by subclasses to hint to Launcher that we have custom content */
Winson Chung98ca0f72013-07-29 12:58:51 -0700607 protected boolean hasCustomContentToLeft() {
Adam Cohen9211d422014-10-07 18:14:53 -0700608 if (mLauncherCallbacks != null) {
609 return mLauncherCallbacks.hasCustomContentToLeft();
610 }
Winson Chung98ca0f72013-07-29 12:58:51 -0700611 return false;
612 }
613
Dave Hawkeya8881582013-09-17 15:55:33 -0600614 /**
Derek Prothrodadd9842014-01-17 13:43:50 -0500615 * To be overridden by subclasses to populate the custom content container and call
Dave Hawkeya8881582013-09-17 15:55:33 -0600616 * {@link #addToCustomContentPage}. This will only be invoked if
617 * {@link #hasCustomContentToLeft()} is {@code true}.
618 */
Derek Prothrodadd9842014-01-17 13:43:50 -0500619 protected void populateCustomContentContainer() {
Adam Cohen9211d422014-10-07 18:14:53 -0700620 if (mLauncherCallbacks != null) {
621 mLauncherCallbacks.populateCustomContentContainer();
622 }
Dave Hawkeya8881582013-09-17 15:55:33 -0600623 }
624
625 /**
626 * Invoked by subclasses to signal a change to the {@link #addCustomContentToLeft} value to
627 * ensure the custom content page is added or removed if necessary.
628 */
629 protected void invalidateHasCustomContentToLeft() {
Dave Hawkey3a733a72013-09-30 11:52:21 -0600630 if (mWorkspace == null || mWorkspace.getScreenOrder().isEmpty()) {
Dave Hawkeya8881582013-09-17 15:55:33 -0600631 // Not bound yet, wait for bindScreens to be called.
632 return;
633 }
634
635 if (!mWorkspace.hasCustomContent() && hasCustomContentToLeft()) {
636 // Create the custom content page and call the subclass to populate it.
Derek Prothrodadd9842014-01-17 13:43:50 -0500637 mWorkspace.createCustomContentContainer();
638 populateCustomContentContainer();
Dave Hawkeya8881582013-09-17 15:55:33 -0600639 } else if (mWorkspace.hasCustomContent() && !hasCustomContentToLeft()) {
640 mWorkspace.removeCustomContentPage();
641 }
642 }
643
Anton Hanssona2f665f2013-09-26 12:18:32 +0100644 public Stats getStats() {
645 return mStats;
646 }
647
Bjorn Bringertc459e522013-06-07 19:36:01 +0100648 public LayoutInflater getInflater() {
649 return mInflater;
650 }
651
Hyunyoung Song3f471442015-04-08 19:01:34 -0700652 public boolean isDraggingEnabled() {
Winson Chung36a62fe2012-05-06 18:04:42 -0700653 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
654 // that is subsequently removed from the workspace in startBinding().
Sunny Goyal639e9062015-08-19 19:17:06 -0700655 return !isWorkspaceLoading();
Winson Chung36a62fe2012-05-06 18:04:42 -0700656 }
657
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800658 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000659 public static int generateViewId() {
Sunny Goyal9fc953b2015-08-17 12:24:25 -0700660 if (Utilities.ATLEAST_JB_MR1) {
Ian Parkinson0c2918f2014-10-06 14:24:31 +0100661 return View.generateViewId();
662 } else {
663 // View.generateViewId() is not available. The following fallback logic is a copy
664 // of its implementation.
665 for (;;) {
666 final int result = sNextGeneratedId.get();
667 // aapt-generated IDs have the high byte nonzero; clamp to the range under that.
668 int newValue = result + 1;
669 if (newValue > 0x00FFFFFF) newValue = 1; // Roll over to 1, not 0.
670 if (sNextGeneratedId.compareAndSet(result, newValue)) {
671 return result;
672 }
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000673 }
674 }
675 }
676
677 public int getViewIdForItem(ItemInfo info) {
678 // This cast is safe given the > 2B range for int.
Sunny Goyal99568592015-08-27 13:48:11 -0700679 return getViewIdForItemId((int) info.id);
680 }
681
682 public int getViewIdForItemId(int itemId) {
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000683 if (mItemIdToViewId.containsKey(itemId)) {
684 return mItemIdToViewId.get(itemId);
685 }
686 int viewId = generateViewId();
687 mItemIdToViewId.put(itemId, viewId);
688 return viewId;
689 }
690
691 /**
Winson Chung557d6ed2011-07-08 15:34:52 -0700692 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
693 * a configuration step, this allows the proper animations to run after other transitions.
694 */
Adam Cohendb364c32014-05-20 14:23:40 -0700695 private long completeAdd(PendingAddArguments args) {
Adam Cohen83079e42014-09-19 17:43:08 -0700696 long screenId = args.screenId;
697 if (args.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
698 // When the screen id represents an actual screen (as opposed to a rank) we make sure
699 // that the drop page actually exists.
700 screenId = ensurePendingDropLayoutExists(args.screenId);
701 }
Adam Cohendb364c32014-05-20 14:23:40 -0700702
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800703 switch (args.requestCode) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800704 case REQUEST_CREATE_SHORTCUT:
Adam Cohendb364c32014-05-20 14:23:40 -0700705 completeAddShortcut(args.intent, args.container, screenId, args.cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -0700706 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700707 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800708 case REQUEST_CREATE_APPWIDGET:
Adam Cohendb364c32014-05-20 14:23:40 -0700709 completeAddAppWidget(args.appWidgetId, args.container, screenId, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700710 break;
Sunny Goyalff572272014-07-23 13:58:07 -0700711 case REQUEST_RECONFIGURE_APPWIDGET:
712 completeRestoreAppWidget(args.appWidgetId);
713 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800714 }
Michael Jurka27614d22012-04-02 06:40:22 -0700715 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
716 // if you turned the screen off and then back while in All Apps, Launcher would not
717 // return to the workspace. Clearing mAddInfo.container here fixes this issue
718 resetAddInfo();
Adam Cohendb364c32014-05-20 14:23:40 -0700719 return screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800720 }
721
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800722 private void handleActivityResult(
Michael Jurka8b805b12012-04-18 14:23:14 -0700723 final int requestCode, final int resultCode, final Intent data) {
Winson Chunge341d302013-08-16 14:31:00 -0700724 // Reset the startActivity waiting flag
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700725 setWaitingForResult(false);
Adam Cohendb364c32014-05-20 14:23:40 -0700726 final int pendingAddWidgetId = mPendingAddWidgetId;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800727 mPendingAddWidgetId = -1;
Winson Chunge341d302013-08-16 14:31:00 -0700728
Adam Cohenad4e15c2013-10-17 16:21:35 -0700729 Runnable exitSpringLoaded = new Runnable() {
730 @Override
731 public void run() {
732 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
733 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
734 }
735 };
736
Michael Jurka8b805b12012-04-18 14:23:14 -0700737 if (requestCode == REQUEST_BIND_APPWIDGET) {
Winsona1f79d32015-08-05 14:00:45 -0700738 // This is called only if the user did not previously have permissions to bind widgets
Adam Cohenad4e15c2013-10-17 16:21:35 -0700739 final int appWidgetId = data != null ?
Michael Jurka8b805b12012-04-18 14:23:14 -0700740 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
741 if (resultCode == RESULT_CANCELED) {
742 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
Adam Cohen689ff162014-05-08 17:27:56 -0700743 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700744 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
Michael Jurka8b805b12012-04-18 14:23:14 -0700745 } else if (resultCode == RESULT_OK) {
Sunny Goyale6b63a32015-01-16 16:14:29 -0800746 addAppWidgetImpl(appWidgetId, mPendingAddInfo, null,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700747 mPendingAddWidgetInfo, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
Winsona1f79d32015-08-05 14:00:45 -0700748
749 // When the user has granted permission to bind widgets, we should check to see if
750 // we can inflate the default search bar widget.
751 getOrCreateQsbBar();
Michael Jurka8b805b12012-04-18 14:23:14 -0700752 }
753 return;
Michael Jurka336fd4f2013-09-12 00:05:02 +0200754 } else if (requestCode == REQUEST_PICK_WALLPAPER) {
755 if (resultCode == RESULT_OK && mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -0700756 showWorkspace(false);
Michael Jurka336fd4f2013-09-12 00:05:02 +0200757 }
758 return;
Michael Jurka8b805b12012-04-18 14:23:14 -0700759 }
Michael Jurka336fd4f2013-09-12 00:05:02 +0200760
Adam Cohened66b2b2012-01-23 17:28:51 -0800761 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
Sunny Goyal5c97f512015-05-19 16:03:28 -0700762 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700763
Adam Cohendb364c32014-05-20 14:23:40 -0700764 final boolean workspaceLocked = isWorkspaceLocked();
Adam Cohened66b2b2012-01-23 17:28:51 -0800765 // We have special handling for widgets
766 if (isWidgetDrop) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800767 final int appWidgetId;
768 int widgetId = data != null ? data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1)
769 : -1;
770 if (widgetId < 0) {
771 appWidgetId = pendingAddWidgetId;
772 } else {
773 appWidgetId = widgetId;
774 }
775
Adam Cohenad4e15c2013-10-17 16:21:35 -0700776 final int result;
Adam Cohenf0129b12013-11-04 17:57:36 -0800777 if (appWidgetId < 0 || resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700778 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not " +
779 "returned from the widget configuration activity.");
Adam Cohenad4e15c2013-10-17 16:21:35 -0700780 result = RESULT_CANCELED;
781 completeTwoStageWidgetDrop(result, appWidgetId);
Adam Cohendb364c32014-05-20 14:23:40 -0700782 final Runnable onComplete = new Runnable() {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700783 @Override
784 public void run() {
785 exitSpringLoadedDragModeDelayed(false, 0, null);
786 }
787 };
Adam Cohendb364c32014-05-20 14:23:40 -0700788 if (workspaceLocked) {
789 // No need to remove the empty screen if we're mid-binding, as the
790 // the bind will not add the empty screen.
791 mWorkspace.postDelayed(onComplete, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
792 } else {
793 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
794 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
795 }
Winson Chung5aaab772012-04-27 15:24:02 -0700796 } else {
Adam Cohendb364c32014-05-20 14:23:40 -0700797 if (!workspaceLocked) {
Adam Cohen83079e42014-09-19 17:43:08 -0700798 if (mPendingAddInfo.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
799 // When the screen id represents an actual screen (as opposed to a rank)
800 // we make sure that the drop page actually exists.
801 mPendingAddInfo.screenId =
802 ensurePendingDropLayoutExists(mPendingAddInfo.screenId);
803 }
Adam Cohendb364c32014-05-20 14:23:40 -0700804 final CellLayout dropLayout = mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
805
806 dropLayout.setDropPending(true);
807 final Runnable onComplete = new Runnable() {
808 @Override
809 public void run() {
810 completeTwoStageWidgetDrop(resultCode, appWidgetId);
811 dropLayout.setDropPending(false);
812 }
813 };
814 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
815 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
816 } else {
817 PendingAddArguments args = preparePendingAddArgs(requestCode, data, appWidgetId,
818 mPendingAddInfo);
819 sPendingAddItem = args;
820 }
Winson Chung5aaab772012-04-27 15:24:02 -0700821 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800822 return;
823 }
824
Sunny Goyalff572272014-07-23 13:58:07 -0700825 if (requestCode == REQUEST_RECONFIGURE_APPWIDGET) {
826 if (resultCode == RESULT_OK) {
827 // Update the widget view.
828 PendingAddArguments args = preparePendingAddArgs(requestCode, data,
829 pendingAddWidgetId, mPendingAddInfo);
830 if (workspaceLocked) {
831 sPendingAddItem = args;
832 } else {
833 completeAdd(args);
834 }
835 }
836 // Leave the widget in the pending state if the user canceled the configure.
837 return;
838 }
839
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800840 // The pattern used here is that a user PICKs a specific application,
841 // which, depending on the target, might need to CREATE the actual target.
Romain Guycbb89e42009-06-08 15:52:54 -0700842
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800843 // For example, the user would PICK_SHORTCUT for "Music playlist", and we
844 // launch over to the Music app to actually CREATE_SHORTCUT.
Winson Chungc7da5552011-08-10 15:28:45 -0700845 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
Adam Cohendb364c32014-05-20 14:23:40 -0700846 final PendingAddArguments args = preparePendingAddArgs(requestCode, data, -1,
847 mPendingAddInfo);
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800848 if (isWorkspaceLocked()) {
Adam Cohendb364c32014-05-20 14:23:40 -0700849 sPendingAddItem = args;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800850 } else {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700851 completeAdd(args);
Adam Cohendb364c32014-05-20 14:23:40 -0700852 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
853 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800854 }
Adam Cohen00074722013-10-11 17:46:09 -0700855 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen689ff162014-05-08 17:27:56 -0700856 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700857 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800858 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800859 mDragLayer.clearAnimatedView();
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800860
861 }
862
863 @Override
864 protected void onActivityResult(
865 final int requestCode, final int resultCode, final Intent data) {
866 handleActivityResult(requestCode, resultCode, data);
867 if (mLauncherCallbacks != null) {
868 mLauncherCallbacks.onActivityResult(requestCode, resultCode, data);
869 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800870 }
871
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600872 /** @Override for MNC */
Sunny Goyaldd2e6df2015-07-07 10:57:57 -0700873 public void onRequestPermissionsResult(int requestCode, String[] permissions,
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600874 int[] grantResults) {
875 if (mLauncherCallbacks != null) {
876 mLauncherCallbacks.onRequestPermissionsResult(requestCode, permissions,
877 grantResults);
878 }
879 }
880
Adam Cohendb364c32014-05-20 14:23:40 -0700881 private PendingAddArguments preparePendingAddArgs(int requestCode, Intent data, int
882 appWidgetId, ItemInfo info) {
883 PendingAddArguments args = new PendingAddArguments();
884 args.requestCode = requestCode;
885 args.intent = data;
886 args.container = info.container;
887 args.screenId = info.screenId;
888 args.cellX = info.cellX;
889 args.cellY = info.cellY;
890 args.appWidgetId = appWidgetId;
891 return args;
892 }
893
894 /**
895 * Check to see if a given screen id exists. If not, create it at the end, return the new id.
896 *
897 * @param screenId the screen id to check
898 * @return the new screen, or screenId if it exists
899 */
900 private long ensurePendingDropLayoutExists(long screenId) {
901 CellLayout dropLayout =
902 (CellLayout) mWorkspace.getScreenWithId(screenId);
903 if (dropLayout == null) {
904 // it's possible that the add screen was removed because it was
905 // empty and a re-bind occurred
906 mWorkspace.addExtraEmptyScreen();
907 return mWorkspace.commitExtraEmptyScreen();
908 } else {
909 return screenId;
910 }
911 }
912
Adam Cohen091440a2015-03-18 14:16:05 -0700913 @Thunk void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700914 CellLayout cellLayout =
Adam Cohendcd297f2013-06-18 13:13:40 -0700915 (CellLayout) mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800916 Runnable onCompleteRunnable = null;
917 int animationType = 0;
918
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700919 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800920 if (resultCode == RESULT_OK) {
921 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
922 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700923 mPendingAddWidgetInfo);
924 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800925 onCompleteRunnable = new Runnable() {
926 @Override
927 public void run() {
928 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700929 mPendingAddInfo.screenId, layout, null);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700930 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
931 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
Adam Cohened66b2b2012-01-23 17:28:51 -0800932 }
933 };
934 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800935 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800936 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
Adam Cohened66b2b2012-01-23 17:28:51 -0800937 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700938 if (mDragLayer.getAnimatedView() != null) {
939 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
940 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
941 animationType, boundWidget, true);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700942 } else if (onCompleteRunnable != null) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700943 // The animated view may be null in the case of a rotation during widget configuration
944 onCompleteRunnable.run();
945 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800946 }
947
948 @Override
Michael Jurkacd496d72013-04-11 11:32:45 -0700949 protected void onStop() {
950 super.onStop();
951 FirstFrameAnimatorHelper.setIsVisible(false);
Adam Cohen9211d422014-10-07 18:14:53 -0700952
953 if (mLauncherCallbacks != null) {
954 mLauncherCallbacks.onStop();
955 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700956 }
957
958 @Override
959 protected void onStart() {
960 super.onStart();
961 FirstFrameAnimatorHelper.setIsVisible(true);
Adam Cohen9211d422014-10-07 18:14:53 -0700962
963 if (mLauncherCallbacks != null) {
964 mLauncherCallbacks.onStart();
965 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700966 }
967
968 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800969 protected void onResume() {
Michael Jurka447bf842013-05-15 14:52:15 +0200970 long startTime = 0;
971 if (DEBUG_RESUME_TIME) {
972 startTime = System.currentTimeMillis();
Daniel Sandler924b9932013-06-12 00:38:25 -0400973 Log.v(TAG, "Launcher.onResume()");
Michael Jurka447bf842013-05-15 14:52:15 +0200974 }
Adam Cohen9211d422014-10-07 18:14:53 -0700975
976 if (mLauncherCallbacks != null) {
977 mLauncherCallbacks.preOnResume();
978 }
979
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800980 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700981
Winson Chung4a2afa32012-07-19 14:53:05 -0700982 // Restore the previous launcher state
Winson Chung75cc8252015-04-10 10:19:58 -0700983 if (mOnResumeState == State.WORKSPACE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700984 showWorkspace(false);
Winson Chungb745afb2015-03-02 11:51:23 -0800985 } else if (mOnResumeState == State.APPS) {
Winson Chung13eb5272015-05-11 16:30:13 -0700986 boolean launchedFromApp = (mWaitingForResume != null);
Winson Chung4ac30062015-05-08 17:34:17 -0700987 // Don't update the predicted apps if the user is returning to launcher in the apps
Winson Chung13eb5272015-05-11 16:30:13 -0700988 // view after launching an app, as they may be depending on the UI to be static to
989 // switch to another app, otherwise, if it was
Winson Chung4ac30062015-05-08 17:34:17 -0700990 showAppsView(false /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -0700991 !launchedFromApp /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -0800992 } else if (mOnResumeState == State.WIDGETS) {
993 showWidgetsView(false, false);
Winson Chung4a2afa32012-07-19 14:53:05 -0700994 }
995 mOnResumeState = State.NONE;
996
Sunny Goyal4a6c6f32015-05-19 12:36:46 -0700997 // Background was set to gradient in onPause(), restore to transparent if in all apps.
Sunny Goyald70ad0d2015-05-26 17:20:07 -0700998 setWorkspaceBackground(mState == State.WORKSPACE ? WORKSPACE_BACKGROUND_GRADIENT
999 : WORKSPACE_BACKGROUND_TRANSPARENT);
Craig Mautner360310b2012-10-26 15:13:08 -07001000
Joe Onorato34a0e1b2009-12-14 17:44:51 -08001001 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001002 if (mRestoring || mOnResumeNeedsLoad) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001003 setWorkspaceLoading(true);
Sunny Goyal22aa3812015-08-19 16:24:27 -07001004
1005 // If we're starting binding all over again, clear any bind calls we'd postponed in
1006 // the past (see waitUntilResume) -- we don't need them since we're starting binding
1007 // from scratch again
1008 mBindOnResumeCallbacks.clear();
1009
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001010 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001011 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001012 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001013 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001014 if (mBindOnResumeCallbacks.size() > 0) {
Michael Jurkac402cd92013-05-20 15:49:32 +02001015 // We might have postponed some bind calls until onResume (see waitUntilResume) --
1016 // execute them here
1017 long startTimeCallbacks = 0;
1018 if (DEBUG_RESUME_TIME) {
1019 startTimeCallbacks = System.currentTimeMillis();
1020 }
1021
Michael Jurka1e2f4652013-07-08 18:03:46 -07001022 for (int i = 0; i < mBindOnResumeCallbacks.size(); i++) {
1023 mBindOnResumeCallbacks.get(i).run();
Michael Jurkac402cd92013-05-20 15:49:32 +02001024 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001025 mBindOnResumeCallbacks.clear();
Michael Jurkac402cd92013-05-20 15:49:32 +02001026 if (DEBUG_RESUME_TIME) {
1027 Log.d(TAG, "Time spent processing callbacks in onResume: " +
1028 (System.currentTimeMillis() - startTimeCallbacks));
1029 }
Michael Jurka447bf842013-05-15 14:52:15 +02001030 }
Michael Jurka54554252013-08-01 12:52:23 +02001031 if (mOnResumeCallbacks.size() > 0) {
1032 for (int i = 0; i < mOnResumeCallbacks.size(); i++) {
1033 mOnResumeCallbacks.get(i).run();
1034 }
1035 mOnResumeCallbacks.clear();
1036 }
Winson Chunge4e50662012-01-23 14:45:13 -08001037
1038 // Reset the pressed state of icons that were locked in the press state while activities
1039 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -08001040 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -08001041 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -08001042 mWaitingForResume.setStayPressed(false);
1043 }
Winson Chung82963d52013-10-09 11:20:57 -07001044
Adam Cohen06dff352012-06-01 17:17:08 -07001045 // It is possible that widgets can receive updates while launcher is not in the foreground.
1046 // Consequently, the widgets will be inflated in the orientation of the foreground activity
1047 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
1048 // orientation.
Adam Cohen3d509322012-06-06 14:10:04 -07001049 getWorkspace().reinflateWidgetsIfNecessary();
Sunny Goyal22235bc2015-04-03 09:23:43 -07001050 reinflateQSBIfNecessary();
Adam Cohenf9426d52012-06-04 17:26:21 -07001051
Michael Jurka447bf842013-05-15 14:52:15 +02001052 if (DEBUG_RESUME_TIME) {
1053 Log.d(TAG, "Time spent in onResume: " + (System.currentTimeMillis() - startTime));
1054 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001055
1056 if (mWorkspace.getCustomContentCallbacks() != null) {
1057 // If we are resuming and the custom content is the current page, we call onShow().
1058 // It is also poassible that onShow will instead be called slightly after first layout
1059 // if PagedView#setRestorePage was set to the custom content page in onCreate().
1060 if (mWorkspace.isOnOrMovingToCustomContent()) {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001061 mWorkspace.getCustomContentCallbacks().onShow(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001062 }
1063 }
Winson Chungcd99cd32015-04-29 11:03:24 -07001064 updateInteraction(Workspace.State.NORMAL, mWorkspace.getState());
Adam Cohen53805212013-10-01 10:39:23 -07001065 mWorkspace.onResume();
Sunny Goyale755d462014-07-22 13:48:29 -07001066
Sunny Goyal756adbc2015-04-16 15:20:51 -07001067 if (!isWorkspaceLoading()) {
1068 // Process any items that were added while Launcher was away.
1069 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
1070 }
Adam Cohen9211d422014-10-07 18:14:53 -07001071
1072 if (mLauncherCallbacks != null) {
1073 mLauncherCallbacks.onResume();
1074 }
Adam Cohen06dff352012-06-01 17:17:08 -07001075 }
1076
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001077 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001078 protected void onPause() {
Winson Chung997a9232013-07-24 15:33:46 -07001079 // Ensure that items added to Launcher are queued until Launcher returns
1080 InstallShortcutReceiver.enableInstallQueue();
1081
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001082 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001083 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -08001084 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -07001085 mDragController.resetLastGestureUpTime();
Adam Cohen6fecd412013-10-02 17:41:50 -07001086
1087 // We call onHide() aggressively. The custom content callbacks should be able to
1088 // debounce excess onHide calls.
1089 if (mWorkspace.getCustomContentCallbacks() != null) {
1090 mWorkspace.getCustomContentCallbacks().onHide();
1091 }
Romain Guycbb89e42009-06-08 15:52:54 -07001092
Adam Cohen9211d422014-10-07 18:14:53 -07001093 if (mLauncherCallbacks != null) {
1094 mLauncherCallbacks.onPause();
Adam Cohenbffe7452013-07-22 18:21:45 -07001095 }
Adam Cohenbffe7452013-07-22 18:21:45 -07001096 }
1097
1098 public interface CustomContentCallbacks {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001099 // Custom content is completely shown. {@code fromResume} indicates whether this was caused
1100 // by a onResume or by scrolling otherwise.
1101 public void onShow(boolean fromResume);
Adam Cohenbffe7452013-07-22 18:21:45 -07001102
1103 // Custom content is completely hidden
1104 public void onHide();
Adam Cohenc36fa5c2013-08-29 11:54:42 -07001105
1106 // Custom content scroll progress changed. From 0 (not showing) to 1 (fully showing).
1107 public void onScrollProgressChanged(float progress);
Jan-Willem Maarse2ff91c42014-07-10 15:58:12 -07001108
1109 // Indicates whether the user is allowed to scroll away from the custom content.
1110 boolean isScrollingAllowed();
Adam Cohenbffe7452013-07-22 18:21:45 -07001111 }
1112
Adam Cohenc2d6e892014-10-16 09:49:24 -07001113 public interface LauncherOverlay {
1114
1115 /**
1116 * Touch interaction leading to overscroll has begun
1117 */
1118 public void onScrollInteractionBegin();
1119
1120 /**
1121 * Touch interaction related to overscroll has ended
1122 */
1123 public void onScrollInteractionEnd();
1124
1125 /**
1126 * Scroll progress, between 0 and 100, when the user scrolls beyond the leftmost
1127 * screen (or in the case of RTL, the rightmost screen).
1128 */
1129 public void onScrollChange(int progress, boolean rtl);
1130
1131 /**
1132 * Screen has stopped scrolling
1133 */
1134 public void onScrollSettled();
1135
1136 /**
1137 * This method can be called by the Launcher in order to force the LauncherOverlay
1138 * to exit fully immersive mode.
1139 */
1140 public void forceExitFullImmersion();
1141 }
1142
Jun Mukai8af0cd82015-05-12 12:32:12 -07001143 public interface LauncherSearchCallbacks {
1144 /**
1145 * Called when the search overlay is shown.
1146 */
1147 public void onSearchOverlayOpened();
1148
1149 /**
1150 * Called when the search overlay is dismissed.
1151 */
1152 public void onSearchOverlayClosed();
1153 }
1154
Adam Cohenc2d6e892014-10-16 09:49:24 -07001155 public interface LauncherOverlayCallbacks {
1156 /**
1157 * This method indicates whether a call to {@link #enterFullImmersion()} will succeed,
1158 * however it doesn't modify any state within the launcher.
1159 */
1160 public boolean canEnterFullImmersion();
1161
1162 /**
1163 * Should be called to tell Launcher that the LauncherOverlay will take over interaction,
1164 * eg. by occupying the full screen and handling all touch events.
1165 *
1166 * @return true if Launcher allows the LauncherOverlay to become fully immersive. In this
1167 * case, Launcher will modify any necessary state and assumes the overlay is
1168 * handling all interaction. If false, the LauncherOverlay should cancel any
1169 *
1170 */
1171 public boolean enterFullImmersion();
1172
1173 /**
1174 * Must be called when exiting fully immersive mode. Indicates to Launcher that it has
1175 * full control over UI and state.
1176 */
1177 public void exitFullImmersion();
1178 }
1179
1180 class LauncherOverlayCallbacksImpl implements LauncherOverlayCallbacks {
1181
1182 @Override
1183 public boolean canEnterFullImmersion() {
1184 return mState == State.WORKSPACE;
1185 }
1186
1187 @Override
1188 public boolean enterFullImmersion() {
1189 if (mState == State.WORKSPACE) {
1190 // When fully immersed, disregard any touches which fall through.
1191 mDragLayer.setBlockTouch(true);
1192 return true;
1193 }
1194 return false;
1195 }
1196
1197 @Override
1198 public void exitFullImmersion() {
1199 mDragLayer.setBlockTouch(false);
1200 }
1201 }
1202
Jorim Jaggid017f882014-01-14 17:08:48 -08001203 protected boolean hasSettings() {
Adam Cohen9211d422014-10-07 18:14:53 -07001204 if (mLauncherCallbacks != null) {
1205 return mLauncherCallbacks.hasSettings();
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07001206 } else {
1207 // On devices with a locked orientation, we will at least have the allow rotation
1208 // setting.
1209 return !Utilities.isRotationAllowedForDevice(this);
Adam Cohen9211d422014-10-07 18:14:53 -07001210 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001211 }
1212
Adam Cohen9211d422014-10-07 18:14:53 -07001213 public void addToCustomContentPage(View customContent,
Adam Cohen53805212013-10-01 10:39:23 -07001214 CustomContentCallbacks callbacks, String description) {
1215 mWorkspace.addToCustomContentPage(customContent, callbacks, description);
Adam Cohen66a01fd2013-06-11 12:48:00 -07001216 }
1217
Adam Cohenedb40762013-07-18 16:45:45 -07001218 // The custom content needs to offset its content to account for the QSB
1219 public int getTopOffsetForCustomContent() {
1220 return mWorkspace.getPaddingTop();
1221 }
1222
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001223 @Override
1224 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001225 // Flag the loader to stop early before switching
Adam Cohen1a85c582014-09-30 09:48:49 -07001226 if (mModel.isCurrentCallbacks(this)) {
1227 mModel.stopLoader();
1228 }
Hyunyoung Song3f471442015-04-08 19:01:34 -07001229 //TODO(hyunyoungs): stop the widgets loader when there is a rotation.
1230
Romain Guy13c2e7b2010-03-10 19:45:00 -08001231 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001232 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001233
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001234 // We can't hide the IME if it was forced open. So don't bother
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001235 @Override
1236 public void onWindowFocusChanged(boolean hasFocus) {
1237 super.onWindowFocusChanged(hasFocus);
Adam Cohened307df2013-10-02 09:37:31 -07001238 mHasFocus = hasFocus;
Adam Cohen9211d422014-10-07 18:14:53 -07001239
1240 if (mLauncherCallbacks != null) {
1241 mLauncherCallbacks.onWindowFocusChanged(hasFocus);
1242 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001243 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001244
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001245 private boolean acceptFilter() {
1246 final InputMethodManager inputManager = (InputMethodManager)
1247 getSystemService(Context.INPUT_METHOD_SERVICE);
1248 return !inputManager.isFullscreenMode();
1249 }
1250
1251 @Override
1252 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -07001253 final int uniChar = event.getUnicodeChar();
1254 final boolean handled = super.onKeyDown(keyCode, event);
1255 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
1256 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001257 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
1258 keyCode, event);
1259 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001260 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -07001261 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -07001262 // showSearchDialog()
1263 // If there are multiple keystrokes before the search dialog takes focus,
1264 // onSearchRequested() will be called for every keystroke,
1265 // but it is idempotent, so it's fine.
1266 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001267 }
1268 }
1269
Joe Onorato8a9625e2010-01-28 15:55:35 -08001270 // Eat the long press event so the keyboard doesn't come up.
1271 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
1272 return true;
1273 }
1274
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001275 return handled;
1276 }
1277
Karl Rosaen138a0412009-04-23 19:00:21 -07001278 private String getTypedText() {
1279 return mDefaultKeySsb.toString();
1280 }
1281
1282 private void clearTypedText() {
1283 mDefaultKeySsb.clear();
1284 mDefaultKeySsb.clearSpans();
1285 Selection.setSelection(mDefaultKeySsb, 0);
1286 }
1287
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001288 /**
Michael Jurka883f55b2010-10-21 15:47:14 -07001289 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
1290 * State
1291 */
1292 private static State intToState(int stateOrdinal) {
1293 State state = State.WORKSPACE;
1294 final State[] stateValues = State.values();
1295 for (int i = 0; i < stateValues.length; i++) {
1296 if (stateValues[i].ordinal() == stateOrdinal) {
1297 state = stateValues[i];
1298 break;
1299 }
1300 }
1301 return state;
1302 }
1303
1304 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001305 * Restores the previous state, if it exists.
1306 *
1307 * @param savedState The previous state.
1308 */
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001309 @SuppressWarnings("unchecked")
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001310 private void restoreState(Bundle savedState) {
1311 if (savedState == null) {
1312 return;
1313 }
1314
Michael Jurka883f55b2010-10-21 15:47:14 -07001315 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungb745afb2015-03-02 11:51:23 -08001316 if (state == State.APPS || state == State.WIDGETS) {
1317 mOnResumeState = state;
Joe Onorato3a8820b2009-11-10 15:06:42 -08001318 }
1319
Adam Cohen21cd0022013-10-09 18:57:02 -07001320 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN,
1321 PagedView.INVALID_RESTORE_PAGE);
1322 if (currentScreen != PagedView.INVALID_RESTORE_PAGE) {
Winson Chung8c87cd82013-07-23 16:20:10 -07001323 mWorkspace.setRestorePage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001324 }
1325
Winson Chung3d503fb2011-07-13 17:25:49 -07001326 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
Adam Cohendcd297f2013-06-18 13:13:40 -07001327 final long pendingAddScreen = savedState.getLong(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001328
Winson Chung3d503fb2011-07-13 17:25:49 -07001329 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
1330 mPendingAddInfo.container = pendingAddContainer;
Adam Cohendcd297f2013-06-18 13:13:40 -07001331 mPendingAddInfo.screenId = pendingAddScreen;
Winson Chung3d503fb2011-07-13 17:25:49 -07001332 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
1333 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001334 mPendingAddInfo.spanX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_X);
1335 mPendingAddInfo.spanY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y);
Adam Cohenb823ae42015-03-27 18:07:52 -07001336 AppWidgetProviderInfo info = savedState.getParcelable(
1337 RUNTIME_STATE_PENDING_ADD_WIDGET_INFO);
Sunny Goyalf044bb12015-05-12 13:30:07 -07001338 mPendingAddWidgetInfo = info == null ?
1339 null : LauncherAppWidgetProviderInfo.fromProviderInfo(this, info);
1340
Adam Cohen4637b5a2013-11-04 18:21:24 -08001341 mPendingAddWidgetId = savedState.getInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID);
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001342 setWaitingForResult(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001343 mRestoring = true;
1344 }
1345
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001346 mItemIdToViewId = (HashMap<Integer, Integer>)
1347 savedState.getSerializable(RUNTIME_STATE_VIEW_IDS);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001348 }
1349
1350 /**
1351 * Finds all the views we need and configure them properly.
1352 */
1353 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -07001354 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -04001355
Craig Mautner360310b2012-10-26 15:13:08 -07001356 mLauncherView = findViewById(R.id.launcher);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001357 mFocusHandler = (FocusIndicatorView) findViewById(R.id.focus_indicator);
Winson Chung4c98d922011-05-31 16:50:48 -07001358 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
1359 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Anjali Koppalf5d29132014-02-28 13:33:27 -08001360 mWorkspace.setPageSwitchListener(this);
Winson Chunga6945242014-01-08 14:04:34 -08001361 mPageIndicators = mDragLayer.findViewById(R.id.page_indicator);
Craig Mautner360310b2012-10-26 15:13:08 -07001362
John Spurlock77e1f472013-09-11 10:09:51 -04001363 mLauncherView.setSystemUiVisibility(
1364 View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
Craig Mautner360310b2012-10-26 15:13:08 -07001365 mWorkspaceBackgroundDrawable = getResources().getDrawable(R.drawable.workspace_bg);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001366
Winson Chung4c98d922011-05-31 16:50:48 -07001367 // Setup the drag layer
1368 mDragLayer.setup(this, dragController);
1369
Winson Chung3d503fb2011-07-13 17:25:49 -07001370 // Setup the hotseat
1371 mHotseat = (Hotseat) findViewById(R.id.hotseat);
1372 if (mHotseat != null) {
Winson Chung11a1a532013-09-13 11:14:45 -07001373 mHotseat.setOnLongClickListener(this);
Winson Chung3d503fb2011-07-13 17:25:49 -07001374 }
1375
Jorim Jaggid017f882014-01-14 17:08:48 -08001376 mOverviewPanel = (ViewGroup) findViewById(R.id.overview_panel);
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001377 mWidgetsButton = findViewById(R.id.widget_button);
1378 mWidgetsButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001379 @Override
1380 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001381 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001382 onClickAddWidgetButton(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001383 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001384 }
1385 });
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001386 mWidgetsButton.setOnTouchListener(getHapticFeedbackTouchListener());
Adam Cohen61f560d2013-09-30 15:58:20 -07001387
1388 View wallpaperButton = findViewById(R.id.wallpaper_button);
1389 wallpaperButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001390 @Override
1391 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001392 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001393 onClickWallpaperPicker(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001394 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001395 }
1396 });
Adam Cohen61f560d2013-09-30 15:58:20 -07001397 wallpaperButton.setOnTouchListener(getHapticFeedbackTouchListener());
1398
1399 View settingsButton = findViewById(R.id.settings_button);
Jorim Jaggid017f882014-01-14 17:08:48 -08001400 if (hasSettings()) {
1401 settingsButton.setOnClickListener(new OnClickListener() {
1402 @Override
1403 public void onClick(View arg0) {
1404 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001405 onClickSettingsButton(arg0);
Jorim Jaggid017f882014-01-14 17:08:48 -08001406 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08001407 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001408 });
1409 settingsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1410 } else {
1411 settingsButton.setVisibility(View.GONE);
Jorim Jaggid017f882014-01-14 17:08:48 -08001412 }
1413
Adam Cohendbdff6b2013-09-18 19:09:15 -07001414 mOverviewPanel.setAlpha(0f);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001415
Winson Chung4c98d922011-05-31 16:50:48 -07001416 // Setup the workspace
1417 mWorkspace.setHapticFeedbackEnabled(false);
1418 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -07001419 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -07001420 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001421
Winson Chungf0ea4d32011-06-06 14:27:16 -07001422 // Get the search/delete bar
Adam Cohen24ce0b32014-01-14 16:18:14 -08001423 mSearchDropTargetBar = (SearchDropTargetBar)
1424 mDragLayer.findViewById(R.id.search_drop_target_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001425
Winson Chungef7f8742015-06-04 17:18:17 -07001426 // Setup Apps and Widgets
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001427 mAppsView = (AllAppsContainerView) findViewById(R.id.apps_view);
Hyunyoung Song3f471442015-04-08 19:01:34 -07001428 mWidgetsView = (WidgetsContainerView) findViewById(R.id.widgets_view);
Winson Chungef7f8742015-06-04 17:18:17 -07001429 if (mLauncherCallbacks != null && mLauncherCallbacks.getAllAppsSearchBarController() != null) {
1430 mAppsView.setSearchBarController(mLauncherCallbacks.getAllAppsSearchBarController());
1431 } else {
1432 mAppsView.setSearchBarController(mAppsView.newDefaultAppSearchController());
1433 }
Craig Mautner360310b2012-10-26 15:13:08 -07001434
Winson Chung3d503fb2011-07-13 17:25:49 -07001435 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -07001436 dragController.setDragScoller(mWorkspace);
1437 dragController.setScrollView(mDragLayer);
1438 dragController.setMoveTarget(mWorkspace);
1439 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -07001440 if (mSearchDropTargetBar != null) {
1441 mSearchDropTargetBar.setup(this, dragController);
Adam Cohenb0df1b02015-03-18 22:21:40 -07001442 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Michael Jurkae0f5a612011-02-07 16:45:41 -08001443 }
Daniel Sandler924b9932013-06-12 00:38:25 -04001444
Daniel Sandlera127b7a2013-06-17 14:25:46 -04001445 if (getResources().getBoolean(R.bool.debug_memory_enabled)) {
Daniel Sandler924b9932013-06-12 00:38:25 -04001446 Log.v(TAG, "adding WeightWatcher");
Adam Cohen39a06042013-07-19 14:30:12 -07001447 mWeightWatcher = new WeightWatcher(this);
1448 mWeightWatcher.setAlpha(0.5f);
1449 ((FrameLayout) mLauncherView).addView(mWeightWatcher,
Daniel Sandler924b9932013-06-12 00:38:25 -04001450 new FrameLayout.LayoutParams(
1451 FrameLayout.LayoutParams.MATCH_PARENT,
Daniel Sandlerb9eb2862013-06-14 20:17:30 -04001452 FrameLayout.LayoutParams.WRAP_CONTENT,
Daniel Sandler924b9932013-06-12 00:38:25 -04001453 Gravity.BOTTOM)
1454 );
Adam Cohen39a06042013-07-19 14:30:12 -07001455
1456 boolean show = shouldShowWeightWatcher();
1457 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
Daniel Sandler924b9932013-06-12 00:38:25 -04001458 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001459 }
1460
1461 /**
Anjali Koppal5ad44842014-03-10 20:34:39 -07001462 * Sets the all apps button. This method is called from {@link Hotseat}.
1463 */
1464 public void setAllAppsButton(View allAppsButton) {
1465 mAllAppsButton = allAppsButton;
1466 }
1467
1468 public View getAllAppsButton() {
1469 return mAllAppsButton;
1470 }
1471
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001472 public View getWidgetsButton() {
1473 return mWidgetsButton;
1474 }
1475
Anjali Koppal5ad44842014-03-10 20:34:39 -07001476 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001477 * Creates a view representing a shortcut.
1478 *
1479 * @param info The data structure describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001480 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001481 View createShortcut(ShortcutInfo info) {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001482 return createShortcut((ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001483 }
1484
1485 /**
1486 * Creates a view representing a shortcut inflated from the specified resource.
1487 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001488 * @param parent The group the shortcut belongs to.
1489 * @param info The data structure describing the shortcut.
1490 *
1491 * @return A View inflated from layoutResId.
1492 */
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001493 public View createShortcut(ViewGroup parent, ShortcutInfo info) {
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001494 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(R.layout.app_icon,
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001495 parent, false);
1496 favorite.applyFromShortcutInfo(info, mIconCache);
1497 favorite.setCompoundDrawablePadding(mDeviceProfile.iconDrawablePaddingPx);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001498 favorite.setOnClickListener(this);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001499 favorite.setOnFocusChangeListener(mFocusHandler);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001500 return favorite;
1501 }
1502
1503 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001504 * Add a shortcut to the workspace.
1505 *
1506 * @param data The intent describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001507 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001508 private void completeAddShortcut(Intent data, long container, long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07001509 int cellY) {
1510 int[] cellXY = mTmpAddItemCellCoordinates;
1511 int[] touchXY = mPendingAddInfo.dropPos;
Adam Cohendcd297f2013-06-18 13:13:40 -07001512 CellLayout layout = getCellLayout(container, screenId);
Romain Guycbb89e42009-06-08 15:52:54 -07001513
Sunny Goyal5c97f512015-05-19 16:03:28 -07001514 ShortcutInfo info = InstallShortcutReceiver.fromShortcutIntent(this, data);
Adam Cohend9198822011-11-22 16:42:47 -08001515 if (info == null) {
1516 return;
1517 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001518 final View view = createShortcut(info);
1519
Sunny Goyal5c97f512015-05-19 16:03:28 -07001520 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001521 // First we check if we already know the exact location where we want to add this item.
1522 if (cellX >= 0 && cellY >= 0) {
1523 cellXY[0] = cellX;
1524 cellXY[1] = cellY;
1525 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001526
1527 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001528 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001529 true, null,null)) {
1530 return;
1531 }
1532 DragObject dragObject = new DragObject();
1533 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001534 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1535 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001536 return;
1537 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07001538 } else if (touchXY != null) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08001539 // when dragging and dropping, just find the closest free spot
Winson Chung3d503fb2011-07-13 17:25:49 -07001540 int[] result = layout.findNearestVacantArea(touchXY[0], touchXY[1], 1, 1, cellXY);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001541 foundCellSpan = (result != null);
1542 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001543 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001544 }
1545
1546 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001547 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001548 return;
1549 }
1550
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001551 LauncherModel.addItemToDatabase(this, info, container, screenId, cellXY[0], cellXY[1]);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001552
1553 if (!mRestoring) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001554 mWorkspace.addInScreen(view, container, screenId, cellXY[0], cellXY[1], 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07001555 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001556 }
1557 }
1558
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001559 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001560 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001561 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001562 * @param appWidgetId The app widget id
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001563 */
Adam Cohen091440a2015-03-18 14:16:05 -07001564 @Thunk void completeAddAppWidget(int appWidgetId, long container, long screenId,
Adam Cohen59400422014-03-05 18:07:04 -08001565 AppWidgetHostView hostView, LauncherAppWidgetProviderInfo appWidgetInfo) {
1566
1567 ItemInfo info = mPendingAddInfo;
Adam Cohened66b2b2012-01-23 17:28:51 -08001568 if (appWidgetInfo == null) {
Adam Cohen59400422014-03-05 18:07:04 -08001569 appWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(this,
1570 mAppWidgetManager.getAppWidgetInfo(appWidgetId));
Adam Cohened66b2b2012-01-23 17:28:51 -08001571 }
Romain Guycbb89e42009-06-08 15:52:54 -07001572
Adam Cohen59400422014-03-05 18:07:04 -08001573 if (appWidgetInfo.isCustomWidget) {
1574 appWidgetId = LauncherAppWidgetInfo.CUSTOM_WIDGET_ID;
Michael Jurkaa63c4522010-08-19 13:52:27 -07001575 }
1576
Adam Cohen59400422014-03-05 18:07:04 -08001577 LauncherAppWidgetInfo launcherInfo;
1578 launcherInfo = new LauncherAppWidgetInfo(appWidgetId, appWidgetInfo.provider);
1579 launcherInfo.spanX = info.spanX;
1580 launcherInfo.spanY = info.spanY;
1581 launcherInfo.minSpanX = info.minSpanX;
1582 launcherInfo.minSpanY = info.minSpanY;
Sunny Goyalffe83f12014-08-14 17:39:34 -07001583 launcherInfo.user = mAppWidgetManager.getUser(appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001584
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001585 LauncherModel.addItemToDatabase(this, launcherInfo,
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001586 container, screenId, info.cellX, info.cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001587
1588 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001589 if (hostView == null) {
1590 // Perform actual inflation because we're live
Adam Cohen59400422014-03-05 18:07:04 -08001591 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId,
1592 appWidgetInfo);
Adam Cohened66b2b2012-01-23 17:28:51 -08001593 } else {
1594 // The AppWidgetHostView has already been inflated and instantiated
1595 launcherInfo.hostView = hostView;
1596 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001597 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001598 launcherInfo.hostView.setVisibility(View.VISIBLE);
Adam Cohenaaa5c212012-10-05 18:14:31 -07001599 launcherInfo.notifyWidgetSizeChanged(this);
1600
Adam Cohen59400422014-03-05 18:07:04 -08001601 mWorkspace.addInScreen(launcherInfo.hostView, container, screenId, info.cellX,
1602 info.cellY, launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001603
1604 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001605 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001606 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001607 }
Romain Guycbb89e42009-06-08 15:52:54 -07001608
Adam Cohended9f8d2010-11-03 13:25:16 -07001609 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1610 @Override
1611 public void onReceive(Context context, Intent intent) {
1612 final String action = intent.getAction();
1613 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1614 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001615 mDragLayer.clearAllResizeFrames();
Winson Chungb745afb2015-03-02 11:51:23 -08001616 updateAutoAdvanceState();
Winson Chung337cd9d2011-03-30 10:39:30 -07001617
Winson Chungc100e8e2011-08-09 16:02:43 -07001618 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001619 // processing a multi-step drop
Hyunyoung Song3f471442015-04-08 19:01:34 -07001620 if (mAppsView != null && mWidgetsView != null &&
Winson Chungb745afb2015-03-02 11:51:23 -08001621 mPendingAddInfo.container == ItemInfo.NO_ID) {
Adam Cohened307df2013-10-02 09:37:31 -07001622 showWorkspace(false);
Winson Chung785d2eb2011-04-14 16:08:02 -07001623 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001624 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1625 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08001626 updateAutoAdvanceState();
Dan Sandlerd5024042014-01-09 15:01:33 -05001627 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.DELETE_DATABASE.equals(action)) {
1628 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001629 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001630 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE);
1631 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.MIGRATE_DATABASE.equals(action)) {
1632 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001633 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001634 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE
1635 | LauncherModel.LOADER_FLAG_MIGRATE_SHORTCUTS);
Adam Cohended9f8d2010-11-03 13:25:16 -07001636 }
1637 }
1638 };
1639
1640 @Override
1641 public void onAttachedToWindow() {
1642 super.onAttachedToWindow();
1643
1644 // Listen for broadcasts related to user-presence
1645 final IntentFilter filter = new IntentFilter();
1646 filter.addAction(Intent.ACTION_SCREEN_OFF);
1647 filter.addAction(Intent.ACTION_USER_PRESENT);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001648 // For handling managed profiles
Dan Sandlerd5024042014-01-09 15:01:33 -05001649 if (ENABLE_DEBUG_INTENTS) {
1650 filter.addAction(DebugIntents.DELETE_DATABASE);
1651 filter.addAction(DebugIntents.MIGRATE_DATABASE);
1652 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001653 registerReceiver(mReceiver, filter);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001654 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Sunny Goyal9fc953b2015-08-17 12:24:25 -07001655 setupTransparentSystemBarsForLollipop();
Adam Cohend113e0c2010-11-11 10:48:05 -08001656 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001657 mVisible = true;
1658 }
1659
Adam Cohen0b395352014-06-09 22:54:36 +00001660 /**
Sunny Goyal9fc953b2015-08-17 12:24:25 -07001661 * Sets up transparent navigation and status bars in Lollipop.
Adam Cohen0b395352014-06-09 22:54:36 +00001662 * This method is a no-op for other platform versions.
1663 */
Sunny Goyald0091012015-01-20 15:55:34 -08001664 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Sunny Goyal9fc953b2015-08-17 12:24:25 -07001665 private void setupTransparentSystemBarsForLollipop() {
1666 if (Utilities.ATLEAST_LOLLIPOP) {
Sunny Goyald0091012015-01-20 15:55:34 -08001667 Window window = getWindow();
1668 window.getAttributes().systemUiVisibility |=
1669 (View.SYSTEM_UI_FLAG_LAYOUT_STABLE
1670 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
1671 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
1672 window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS
1673 | WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
1674 window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
1675 window.setStatusBarColor(Color.TRANSPARENT);
1676 window.setNavigationBarColor(Color.TRANSPARENT);
Adam Cohen0b395352014-06-09 22:54:36 +00001677 }
1678 }
1679
Adam Cohended9f8d2010-11-03 13:25:16 -07001680 @Override
1681 public void onDetachedFromWindow() {
1682 super.onDetachedFromWindow();
1683 mVisible = false;
1684
Adam Cohend113e0c2010-11-11 10:48:05 -08001685 if (mAttached) {
1686 unregisterReceiver(mReceiver);
1687 mAttached = false;
1688 }
Winson Chungb745afb2015-03-02 11:51:23 -08001689 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001690 }
1691
1692 public void onWindowVisibilityChanged(int visibility) {
1693 mVisible = visibility == View.VISIBLE;
Winson Chungb745afb2015-03-02 11:51:23 -08001694 updateAutoAdvanceState();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001695 // The following code used to be in onResume, but it turns out onResume is called when
1696 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1697 // is a more appropriate event to handle
1698 if (mVisible) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001699 if (!mWorkspaceLoading) {
1700 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001701 // We want to let Launcher draw itself at least once before we force it to build
1702 // layers on all the workspace pages, so that transitioning to Launcher from other
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001703 // apps is nice and speedy.
1704 observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001705 private boolean mStarted = false;
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001706 public void onDraw() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001707 if (mStarted) return;
1708 mStarted = true;
Michael Jurka6ee21d22012-02-21 18:20:27 -08001709 // We delay the layer building a bit in order to give
1710 // other message processing a time to run. In particular
1711 // this avoids a delay in hiding the IME if it was
1712 // currently shown, because doing that may involve
1713 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001714 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurkadf96add2013-04-03 16:25:02 -07001715 final ViewTreeObserver.OnDrawListener listener = this;
1716 mWorkspace.post(new Runnable() {
1717 public void run() {
Michael Jurkab68e03a2013-04-11 11:36:41 -07001718 if (mWorkspace != null &&
1719 mWorkspace.getViewTreeObserver() != null) {
1720 mWorkspace.getViewTreeObserver().
1721 removeOnDrawListener(listener);
1722 }
Michael Jurkadf96add2013-04-03 16:25:02 -07001723 }
1724 });
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001725 return;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001726 }
1727 });
1728 }
1729 clearTypedText();
1730 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001731 }
1732
Adam Cohen091440a2015-03-18 14:16:05 -07001733 @Thunk void sendAdvanceMessage(long delay) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001734 mHandler.removeMessages(ADVANCE_MSG);
1735 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1736 mHandler.sendMessageDelayed(msg, delay);
1737 mAutoAdvanceSentTime = System.currentTimeMillis();
1738 }
1739
Adam Cohen091440a2015-03-18 14:16:05 -07001740 @Thunk void updateAutoAdvanceState() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001741 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1742 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1743 mAutoAdvanceRunning = autoAdvanceRunning;
1744 if (autoAdvanceRunning) {
1745 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1746 sendAdvanceMessage(delay);
1747 } else {
1748 if (!mWidgetsToAdvance.isEmpty()) {
1749 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1750 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1751 }
1752 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001753 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001754 }
1755 }
1756 }
1757
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001758 @Thunk final Handler mHandler = new Handler(new Handler.Callback() {
1759
Adam Cohended9f8d2010-11-03 13:25:16 -07001760 @Override
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001761 public boolean handleMessage(Message msg) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001762 if (msg.what == ADVANCE_MSG) {
1763 int i = 0;
1764 for (View key: mWidgetsToAdvance.keySet()) {
1765 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1766 final int delay = mAdvanceStagger * i;
1767 if (v instanceof Advanceable) {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001768 mHandler.postDelayed(new Runnable() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001769 public void run() {
1770 ((Advanceable) v).advance();
1771 }
1772 }, delay);
1773 }
1774 i++;
1775 }
1776 sendAdvanceMessage(mAdvanceInterval);
1777 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001778 return true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001779 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001780 });
Adam Cohended9f8d2010-11-03 13:25:16 -07001781
1782 void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001783 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001784 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1785 if (v instanceof Advanceable) {
1786 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001787 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Winson Chungb745afb2015-03-02 11:51:23 -08001788 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001789 }
1790 }
1791
1792 void removeWidgetToAutoAdvance(View hostView) {
1793 if (mWidgetsToAdvance.containsKey(hostView)) {
1794 mWidgetsToAdvance.remove(hostView);
Winson Chungb745afb2015-03-02 11:51:23 -08001795 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001796 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001797 }
1798
Joe Onorato9c1289c2009-08-17 11:03:03 -04001799 public void removeAppWidget(LauncherAppWidgetInfo launcherInfo) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001800 removeWidgetToAutoAdvance(launcherInfo.hostView);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001801 launcherInfo.hostView = null;
1802 }
1803
Hyunyoung Song3f471442015-04-08 19:01:34 -07001804 public void showOutOfSpaceMessage(boolean isHotseatLayout) {
Winson Chung93eef082012-03-23 15:59:27 -07001805 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1806 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001807 }
1808
Winson Chunga6945242014-01-08 14:04:34 -08001809 public DragLayer getDragLayer() {
1810 return mDragLayer;
1811 }
1812
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001813 public AllAppsContainerView getAppsView() {
Winson Chungb745afb2015-03-02 11:51:23 -08001814 return mAppsView;
1815 }
1816
Hyunyoung Song3f471442015-04-08 19:01:34 -07001817 public WidgetsContainerView getWidgetsView() {
1818 return mWidgetsView;
Winson Chungb745afb2015-03-02 11:51:23 -08001819 }
1820
Winson Chunga6945242014-01-08 14:04:34 -08001821 public Workspace getWorkspace() {
1822 return mWorkspace;
1823 }
1824
1825 public Hotseat getHotseat() {
1826 return mHotseat;
1827 }
1828
Jorim Jaggid017f882014-01-14 17:08:48 -08001829 public ViewGroup getOverviewPanel() {
Winson Chunga6945242014-01-08 14:04:34 -08001830 return mOverviewPanel;
1831 }
1832
Winson Chung006ee262015-08-03 14:40:11 -07001833 public SearchDropTargetBar getSearchDropTargetBar() {
Winson Chunga6945242014-01-08 14:04:34 -08001834 return mSearchDropTargetBar;
1835 }
1836
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001837 public LauncherAppWidgetHost getAppWidgetHost() {
1838 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001839 }
Romain Guycbb89e42009-06-08 15:52:54 -07001840
Winson Chunga9abd0e2010-10-27 17:18:37 -07001841 public LauncherModel getModel() {
1842 return mModel;
1843 }
1844
Winson Chunga6945242014-01-08 14:04:34 -08001845 protected SharedPreferences getSharedPrefs() {
1846 return mSharedPrefs;
1847 }
1848
Adam Cohen2e6da152015-05-06 11:42:25 -07001849 public DeviceProfile getDeviceProfile() {
1850 return mDeviceProfile;
1851 }
1852
Bjorn Bringertc459e522013-06-07 19:36:01 +01001853 public void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001854 getWindow().closeAllPanels();
1855
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001856 // Whatever we were doing is hereby canceled.
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001857 setWaitingForResult(false);
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001858 }
1859
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001860 @Override
1861 protected void onNewIntent(Intent intent) {
Michael Jurka447bf842013-05-15 14:52:15 +02001862 long startTime = 0;
1863 if (DEBUG_RESUME_TIME) {
1864 startTime = System.currentTimeMillis();
1865 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001866 super.onNewIntent(intent);
1867
1868 // Close the menu
Winson15f8b172015-08-19 11:02:39 -07001869 Folder openFolder = mWorkspace.getOpenFolder();
1870 boolean alreadyOnHome = mHasFocus && ((intent.getFlags() &
1871 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1872 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
1873 boolean isActionMain = Intent.ACTION_MAIN.equals(intent.getAction());
1874 if (isActionMain) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001875 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001876 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001877
Adam Cohen6fecd412013-10-02 17:41:50 -07001878 if (mWorkspace == null) {
1879 // Can be cases where mWorkspace is null, this prevents a NPE
1880 return;
1881 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001882 // In all these cases, only animate if we're already on home
1883 mWorkspace.exitWidgetResizeMode();
Adam Cohen9211d422014-10-07 18:14:53 -07001884
Adam Cohen6fecd412013-10-02 17:41:50 -07001885 closeFolder();
1886 exitSpringLoadedDragMode();
1887
1888 // If we are already on home, then just animate back to the workspace,
1889 // otherwise, just wait until onResume to set the state back to Workspace
1890 if (alreadyOnHome) {
Adam Cohened307df2013-10-02 09:37:31 -07001891 showWorkspace(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001892 } else {
1893 mOnResumeState = State.WORKSPACE;
1894 }
1895
1896 final View v = getWindow().peekDecorView();
1897 if (v != null && v.getWindowToken() != null) {
1898 InputMethodManager imm = (InputMethodManager)getSystemService(
1899 INPUT_METHOD_SERVICE);
1900 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1901 }
1902
Winson Chungb745afb2015-03-02 11:51:23 -08001903 // Reset the apps view
1904 if (!alreadyOnHome && mAppsView != null) {
1905 mAppsView.scrollToTop();
1906 }
1907
Hyunyoung Song3f471442015-04-08 19:01:34 -07001908 // Reset the widgets view
1909 if (!alreadyOnHome && mWidgetsView != null) {
1910 mWidgetsView.scrollToTop();
Adam Cohen6fecd412013-10-02 17:41:50 -07001911 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001912
Adam Cohen9211d422014-10-07 18:14:53 -07001913 if (mLauncherCallbacks != null) {
1914 mLauncherCallbacks.onHomeIntent();
1915 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001916 }
Adam Cohened307df2013-10-02 09:37:31 -07001917
Adam Cohen9211d422014-10-07 18:14:53 -07001918 if (mLauncherCallbacks != null) {
1919 mLauncherCallbacks.onNewIntent(intent);
1920 }
Winson15f8b172015-08-19 11:02:39 -07001921
1922 // Defer moving to the default screen until after we callback to the LauncherCallbacks
1923 // as slow logic in the callbacks eat into the time the scroller expects for the snapToPage
1924 // animation.
1925 if (isActionMain) {
1926 boolean moveToDefaultScreen = mLauncherCallbacks != null ?
1927 mLauncherCallbacks.shouldMoveToDefaultScreenOnHomeIntent() : true;
1928 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
1929 openFolder == null && moveToDefaultScreen) {
1930 mWorkspace.post(new Runnable() {
1931 @Override
1932 public void run() {
1933 mWorkspace.moveToDefaultScreen(true);
1934 }
1935 });
1936 }
1937 }
1938
1939 if (DEBUG_RESUME_TIME) {
1940 Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime));
1941 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001942 }
1943
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001944 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001945 public void onRestoreInstanceState(Bundle state) {
1946 super.onRestoreInstanceState(state);
1947 for (int page: mSynchronouslyBoundPages) {
1948 mWorkspace.restoreInstanceStateForChild(page);
1949 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001950 }
1951
1952 @Override
1953 protected void onSaveInstanceState(Bundle outState) {
Adam Cohen21cd0022013-10-09 18:57:02 -07001954 if (mWorkspace.getChildCount() > 0) {
Winson Chung9b9fb962013-11-15 15:39:34 -08001955 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN,
1956 mWorkspace.getCurrentPageOffsetFromCustomContent());
Adam Cohen21cd0022013-10-09 18:57:02 -07001957 }
Adam Cohen95bb8002011-07-03 23:40:28 -07001958 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001959
Michael Jurka883f55b2010-10-21 15:47:14 -07001960 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001961 // We close any open folder since it will not be re-opened, and we need to make sure
1962 // this state is reflected.
1963 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001964
Adam Cohendcd297f2013-06-18 13:13:40 -07001965 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screenId > -1 &&
Winson Chung3d503fb2011-07-13 17:25:49 -07001966 mWaitingForResult) {
1967 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
Adam Cohendcd297f2013-06-18 13:13:40 -07001968 outState.putLong(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screenId);
Winson Chung3d503fb2011-07-13 17:25:49 -07001969 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1970 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001971 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_X, mPendingAddInfo.spanX);
1972 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y, mPendingAddInfo.spanY);
1973 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
Adam Cohen4637b5a2013-11-04 18:21:24 -08001974 outState.putInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID, mPendingAddWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001975 }
1976
Hyunyoung Song3f471442015-04-08 19:01:34 -07001977 // Save the current widgets tray?
1978 // TODO(hyunyoungs)
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001979 outState.putSerializable(RUNTIME_STATE_VIEW_IDS, mItemIdToViewId);
Adam Cohen9211d422014-10-07 18:14:53 -07001980
1981 if (mLauncherCallbacks != null) {
1982 mLauncherCallbacks.onSaveInstanceState(outState);
1983 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001984 }
1985
1986 @Override
1987 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001988 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001989
Winson Chunge7a03942011-08-05 15:05:12 -07001990 // Remove all pending runnables
1991 mHandler.removeMessages(ADVANCE_MSG);
1992 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07001993 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07001994
Winson Chungcd2b0142011-06-08 16:02:26 -07001995 // Stop callbacks from LauncherModel
Daniel Sandlercc8befa2013-06-11 14:45:48 -04001996 LauncherAppState app = (LauncherAppState.getInstance());
Adam Cohen1a85c582014-09-30 09:48:49 -07001997
1998 // It's possible to receive onDestroy after a new Launcher activity has
1999 // been created. In this case, don't interfere with the new Launcher.
2000 if (mModel.isCurrentCallbacks(this)) {
2001 mModel.stopLoader();
2002 app.setLauncher(null);
2003 }
Winson Chungcd2b0142011-06-08 16:02:26 -07002004
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002005 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07002006 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002007 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002008 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002009 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002010 mAppWidgetHost = null;
2011
2012 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002013
2014 TextKeyListener.getInstance().release();
2015
Joe Onorato34a0e1b2009-12-14 17:44:51 -08002016 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002017
Adam Cohenaccf3bf2012-04-30 16:07:43 -07002018 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002019 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
Adam Cohend552dd92013-11-26 12:13:11 -08002020 mWorkspace.removeAllWorkspaceScreens();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002021 mWorkspace = null;
2022 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08002023
Michael Jurka2ecf9952012-06-18 12:52:28 -07002024 LauncherAnimUtils.onDestroyActivity();
Adam Cohen9211d422014-10-07 18:14:53 -07002025
2026 if (mLauncherCallbacks != null) {
2027 mLauncherCallbacks.onDestroy();
2028 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002029 }
2030
Adam Cohena9cf38f2011-05-02 15:36:58 -07002031 public DragController getDragController() {
2032 return mDragController;
2033 }
2034
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002035 @Override
2036 public void startActivityForResult(Intent intent, int requestCode) {
Adam Cohen173f7112015-03-27 15:14:00 -07002037 onStartForResult(requestCode);
2038 super.startActivityForResult(intent, requestCode);
2039 }
2040
2041 @Override
2042 public void startIntentSenderForResult (IntentSender intent, int requestCode,
2043 Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) {
2044 onStartForResult(requestCode);
2045 try {
2046 super.startIntentSenderForResult(intent, requestCode,
2047 fillInIntent, flagsMask, flagsValues, extraFlags, options);
2048 } catch (IntentSender.SendIntentException e) {
2049 throw new ActivityNotFoundException();
2050 }
2051 }
2052
2053 private void onStartForResult(int requestCode) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002054 if (requestCode >= 0) {
2055 setWaitingForResult(true);
2056 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002057 }
2058
Winson Chung70d72102011-08-12 11:24:35 -07002059 /**
2060 * Indicates that we want global search for this activity by setting the globalSearch
2061 * argument for {@link #startSearch} to true.
2062 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002063 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07002064 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002065 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002066
Karl Rosaen138a0412009-04-23 19:00:21 -07002067 if (initialQuery == null) {
2068 // Use any text typed in the launcher as the initial query
2069 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07002070 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002071 if (appSearchData == null) {
2072 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01002073 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002074 }
Winson Chungadf0c182012-08-23 14:59:07 -07002075 Rect sourceBounds = new Rect();
2076 if (mSearchDropTargetBar != null) {
2077 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
2078 }
Romain Guycbb89e42009-06-08 15:52:54 -07002079
Ian Parkinson047036e2014-09-01 15:40:53 +01002080 boolean clearTextImmediately = startSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002081 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002082 if (clearTextImmediately) {
2083 clearTypedText();
2084 }
Winson Chungcd99cd32015-04-29 11:03:24 -07002085
2086 // We need to show the workspace after starting the search
2087 showWorkspace(true);
Bjorn Bringertc459e522013-06-07 19:36:01 +01002088 }
2089
Ian Parkinson047036e2014-09-01 15:40:53 +01002090 /**
2091 * Start a text search.
2092 *
2093 * @return {@code true} if the search will start immediately, so any further keypresses
2094 * will be handled directly by the search UI. {@code false} if {@link Launcher} should continue
2095 * to buffer keypresses.
2096 */
2097 public boolean startSearch(String initialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002098 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Adam Cohen9211d422014-10-07 18:14:53 -07002099 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
2100 return mLauncherCallbacks.startSearch(initialQuery, selectInitialQuery, appSearchData,
2101 sourceBounds);
2102 }
2103
Michael Jurkaa33411c2012-06-14 16:18:21 -07002104 startGlobalSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002105 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002106 return false;
Michael Jurkaa33411c2012-06-14 16:18:21 -07002107 }
2108
2109 /**
2110 * Starts the global search activity. This code is a copied from SearchManager
2111 */
Bjorn Bringertc459e522013-06-07 19:36:01 +01002112 private void startGlobalSearch(String initialQuery,
Michael Jurkaa33411c2012-06-14 16:18:21 -07002113 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002114 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07002115 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2116 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
2117 if (globalSearchActivity == null) {
2118 Log.w(TAG, "No global search activity found.");
2119 return;
2120 }
2121 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
2122 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2123 intent.setComponent(globalSearchActivity);
2124 // Make sure that we have a Bundle to put source in
2125 if (appSearchData == null) {
2126 appSearchData = new Bundle();
2127 } else {
2128 appSearchData = new Bundle(appSearchData);
2129 }
Adam Cohen9211d422014-10-07 18:14:53 -07002130 // Set source to package name of app that starts global search if not set already.
Michael Jurkaa33411c2012-06-14 16:18:21 -07002131 if (!appSearchData.containsKey("source")) {
2132 appSearchData.putString("source", getPackageName());
2133 }
2134 intent.putExtra(SearchManager.APP_DATA, appSearchData);
2135 if (!TextUtils.isEmpty(initialQuery)) {
2136 intent.putExtra(SearchManager.QUERY, initialQuery);
2137 }
2138 if (selectInitialQuery) {
2139 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
2140 }
2141 intent.setSourceBounds(sourceBounds);
2142 try {
2143 startActivity(intent);
2144 } catch (ActivityNotFoundException ex) {
2145 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
2146 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002147 }
2148
Winson Chungbedf9232015-07-10 12:38:30 -07002149 public void startSearchFromAllApps(View v, Intent searchIntent, String searchQuery) {
2150 if (mLauncherCallbacks != null && mLauncherCallbacks.startSearchFromAllApps(searchQuery)) {
2151 return;
2152 }
2153
2154 // If not handled, then just start the provided search intent
2155 startActivitySafely(v, searchIntent, null);
2156 }
2157
Yura4f93ec62014-02-04 14:15:21 +00002158 public boolean isOnCustomContent() {
2159 return mWorkspace.isOnOrMovingToCustomContent();
2160 }
2161
Winson Chung70d72102011-08-12 11:24:35 -07002162 @Override
Winson Chung70d72102011-08-12 11:24:35 -07002163 public boolean onPrepareOptionsMenu(Menu menu) {
2164 super.onPrepareOptionsMenu(menu);
Yura4f93ec62014-02-04 14:15:21 +00002165 if (!isOnCustomContent()) {
2166 // Close any open folders
2167 closeFolder();
2168 // Stop resizing any widgets
2169 mWorkspace.exitWidgetResizeMode();
2170 if (!mWorkspace.isInOverviewMode()) {
2171 // Show the overview mode
2172 showOverviewMode(true);
2173 } else {
2174 showWorkspace(true);
2175 }
Winson Chunge0298742014-01-17 12:03:00 -08002176 }
Adam Cohen9211d422014-10-07 18:14:53 -07002177 if (mLauncherCallbacks != null) {
2178 return mLauncherCallbacks.onPrepareOptionsMenu(menu);
2179 }
2180
Michael Jurkab94f3f82013-09-11 18:08:54 +02002181 return false;
Winson Chung70d72102011-08-12 11:24:35 -07002182 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002183
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002184 @Override
2185 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07002186 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07002187 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07002188 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002189 }
2190
Joe Onorato9c1289c2009-08-17 11:03:03 -04002191 public boolean isWorkspaceLocked() {
2192 return mWorkspaceLoading || mWaitingForResult;
2193 }
2194
Adam Cohen517a7f52014-03-01 12:12:59 -08002195 public boolean isWorkspaceLoading() {
2196 return mWorkspaceLoading;
2197 }
2198
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002199 private void setWorkspaceLoading(boolean value) {
2200 boolean isLocked = isWorkspaceLocked();
2201 mWorkspaceLoading = value;
2202 if (isLocked != isWorkspaceLocked()) {
2203 onWorkspaceLockedChanged();
2204 }
2205 }
2206
2207 private void setWaitingForResult(boolean value) {
2208 boolean isLocked = isWorkspaceLocked();
2209 mWaitingForResult = value;
2210 if (isLocked != isWorkspaceLocked()) {
2211 onWorkspaceLockedChanged();
2212 }
2213 }
2214
Adam Cohen9211d422014-10-07 18:14:53 -07002215 protected void onWorkspaceLockedChanged() {
2216 if (mLauncherCallbacks != null) {
2217 mLauncherCallbacks.onWorkspaceLockedChanged();
2218 }
2219 }
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002220
Michael Jurka0280c3b2010-09-17 15:00:07 -07002221 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07002222 mPendingAddInfo.container = ItemInfo.NO_ID;
Adam Cohendcd297f2013-06-18 13:13:40 -07002223 mPendingAddInfo.screenId = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002224 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
2225 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Sunny Goyal233ee962015-08-03 13:05:01 -07002226 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = 1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002227 mPendingAddInfo.dropPos = null;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002228 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07002229
Sunny Goyale6b63a32015-01-16 16:14:29 -08002230 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info, final
Adam Cohen59400422014-03-05 18:07:04 -08002231 AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo) {
Adam Cohenad4e15c2013-10-17 16:21:35 -07002232 addAppWidgetImpl(appWidgetId, info, boundWidget, appWidgetInfo, 0);
2233 }
2234
Sunny Goyale6b63a32015-01-16 16:14:29 -08002235 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
Adam Cohen59400422014-03-05 18:07:04 -08002236 final AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo,
2237 int delay) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002238 if (appWidgetInfo.configure != null) {
2239 mPendingAddWidgetInfo = appWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -08002240 mPendingAddWidgetId = appWidgetId;
Michael Jurkaaf442092010-06-10 17:01:57 -07002241
Bjorn Bringert7984c942009-12-09 15:38:25 +00002242 // Launch over to configure widget, if needed
Sunny Goyalffe83f12014-08-14 17:39:34 -07002243 mAppWidgetManager.startConfigActivity(appWidgetInfo, appWidgetId, this,
2244 mAppWidgetHost, REQUEST_CREATE_APPWIDGET);
2245
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002246 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00002247 // Otherwise just add it
Adam Cohenad4e15c2013-10-17 16:21:35 -07002248 Runnable onComplete = new Runnable() {
2249 @Override
2250 public void run() {
2251 // Exit spring loaded mode if necessary after adding the widget
2252 exitSpringLoadedDragModeDelayed(true, EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT,
2253 null);
2254 }
2255 };
Adam Cohendcd297f2013-06-18 13:13:40 -07002256 completeAddAppWidget(appWidgetId, info.container, info.screenId, boundWidget,
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002257 appWidgetInfo);
Adam Cohen689ff162014-05-08 17:27:56 -07002258 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, delay, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002259 }
2260 }
Romain Guycbb89e42009-06-08 15:52:54 -07002261
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002262 protected void moveToCustomContentScreen(boolean animate) {
Sandeep Siddharthaf2b47f12013-09-26 19:49:27 -07002263 // Close any folders that may be open.
2264 closeFolder();
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002265 mWorkspace.moveToCustomContentScreen(animate);
2266 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002267
2268 public void addPendingItem(PendingAddItemInfo info, long container, long screenId,
2269 int[] cell, int spanX, int spanY) {
2270 switch (info.itemType) {
2271 case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET:
2272 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
2273 int span[] = new int[2];
2274 span[0] = spanX;
2275 span[1] = spanY;
2276 addAppWidgetFromDrop((PendingAddWidgetInfo) info,
2277 container, screenId, cell, span);
2278 break;
2279 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
2280 processShortcutFromDrop(info.componentName, container, screenId, cell);
2281 break;
2282 default:
2283 throw new IllegalStateException("Unknown item type: " + info.itemType);
2284 }
2285 }
2286
Adam Cohenfbba09b2011-07-18 21:43:05 -07002287 /**
2288 * Process a shortcut drop.
2289 *
2290 * @param componentName The name of the component
Adam Cohendcd297f2013-06-18 13:13:40 -07002291 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002292 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002293 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002294 private void processShortcutFromDrop(ComponentName componentName, long container, long screenId,
2295 int[] cell) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002296 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002297 mPendingAddInfo.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002298 mPendingAddInfo.screenId = screenId;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002299 mPendingAddInfo.dropPos = null;
Adam Cohenfbba09b2011-07-18 21:43:05 -07002300
2301 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002302 mPendingAddInfo.cellX = cell[0];
2303 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002304 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002305
2306 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
2307 createShortcutIntent.setComponent(componentName);
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002308 Utilities.startActivityForResultSafely(this, createShortcutIntent, REQUEST_CREATE_SHORTCUT);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002309 }
2310
Adam Cohenfbba09b2011-07-18 21:43:05 -07002311 /**
2312 * Process a widget drop.
2313 *
2314 * @param info The PendingAppWidgetInfo of the widget being added.
Adam Cohendcd297f2013-06-18 13:13:40 -07002315 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002316 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002317 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002318 private void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, long screenId,
2319 int[] cell, int[] span) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07002320 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002321 mPendingAddInfo.container = info.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002322 mPendingAddInfo.screenId = info.screenId = screenId;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002323 mPendingAddInfo.dropPos = null;
Adam Cohend41fbf52012-02-16 23:53:59 -08002324 mPendingAddInfo.minSpanX = info.minSpanX;
2325 mPendingAddInfo.minSpanY = info.minSpanY;
2326
Adam Cohenfbba09b2011-07-18 21:43:05 -07002327 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002328 mPendingAddInfo.cellX = cell[0];
2329 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002330 }
Adam Cohend41fbf52012-02-16 23:53:59 -08002331 if (span != null) {
2332 mPendingAddInfo.spanX = span[0];
2333 mPendingAddInfo.spanY = span[1];
2334 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002335
Adam Cohened66b2b2012-01-23 17:28:51 -08002336 AppWidgetHostView hostView = info.boundWidget;
2337 int appWidgetId;
2338 if (hostView != null) {
2339 appWidgetId = hostView.getAppWidgetId();
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002340 addAppWidgetImpl(appWidgetId, info, hostView, info.info);
Sunny Goyal5b9ebca2015-06-01 18:37:32 -07002341
2342 // Clear the boundWidget so that it doesn't get destroyed.
2343 info.boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -08002344 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002345 // In this case, we either need to start an activity to get permission to bind
2346 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08002347 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07002348 Bundle options = info.bindOptions;
2349
Sunny Goyalffe83f12014-08-14 17:39:34 -07002350 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
2351 appWidgetId, info.info, options);
Adam Cohendd70d662012-10-04 16:53:44 -07002352 if (success) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002353 addAppWidgetImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07002354 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002355 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07002356 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
2357 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
2358 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Sunny Goyalffe83f12014-08-14 17:39:34 -07002359 mAppWidgetManager.getUser(mPendingAddWidgetInfo)
2360 .addToIntent(intent, AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE);
Adam Cohendd70d662012-10-04 16:53:44 -07002361 // TODO: we need to make sure that this accounts for the options bundle.
2362 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07002363 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
2364 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002365 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002366 }
2367
Adam Cohendcd297f2013-06-18 13:13:40 -07002368 FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07002369 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07002370 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002371 folderInfo.title = getText(R.string.folder_name);
2372
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002373 // Update the model
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07002374 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId,
2375 cellX, cellY);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002376 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002377
2378 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07002379 FolderIcon newFolder =
2380 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07002381 mWorkspace.addInScreen(newFolder, container, screenId, cellX, cellY, 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07002382 isWorkspaceLocked());
Winson Chung5f8afe62013-08-12 16:19:28 -07002383 // Force measure the new folder icon
2384 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
2385 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07002386 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002387 }
Romain Guycbb89e42009-06-08 15:52:54 -07002388
Joe Onorato9c1289c2009-08-17 11:03:03 -04002389 void removeFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002390 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002391 }
2392
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002393 @Override
2394 public boolean dispatchKeyEvent(KeyEvent event) {
2395 if (event.getAction() == KeyEvent.ACTION_DOWN) {
2396 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002397 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07002398 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08002399 case KeyEvent.KEYCODE_VOLUME_DOWN:
Sunny Goyal4bbf4192014-11-11 12:23:59 -08002400 if (Utilities.isPropertyEnabled(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08002401 dumpState();
2402 return true;
2403 }
2404 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07002405 }
2406 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2407 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07002408 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002409 return true;
2410 }
2411 }
2412
2413 return super.dispatchKeyEvent(event);
2414 }
2415
Joe Onorato88ec0992009-11-19 13:16:06 -08002416 @Override
2417 public void onBackPressed() {
Adam Cohen9211d422014-10-07 18:14:53 -07002418 if (mLauncherCallbacks != null && mLauncherCallbacks.handleBackPressed()) {
2419 return;
2420 }
2421
Sunny Goyal45478022015-06-08 16:52:41 -07002422 if (mDragController.isDragging()) {
2423 mDragController.cancelDrag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08002424 return;
2425 }
2426
Winson Chungb745afb2015-03-02 11:51:23 -08002427 if (isAppsViewVisible()) {
2428 showWorkspace(true);
2429 } else if (isWidgetsViewVisible()) {
2430 showOverviewMode(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002431 } else if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002432 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002433 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07002434 Folder openFolder = mWorkspace.getOpenFolder();
2435 if (openFolder.isEditingName()) {
2436 openFolder.dismissEditingName();
2437 } else {
2438 closeFolder();
2439 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002440 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08002441 mWorkspace.exitWidgetResizeMode();
2442
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002443 // Back button is a no-op here, but give at least some feedback for the button press
2444 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07002445 }
Joe Onorato88ec0992009-11-19 13:16:06 -08002446 }
2447
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002448 /**
Sunny Goyal383c5072015-06-12 21:18:53 -07002449 * Re-listen when widget host is reset.
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002450 */
Sunny Goyal383c5072015-06-12 21:18:53 -07002451 @Override
2452 public void onAppWidgetHostReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08002453 if (mAppWidgetHost != null) {
2454 mAppWidgetHost.startListening();
2455 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002456 }
2457
2458 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002459 * Launches the intent referred by the clicked shortcut.
2460 *
2461 * @param v The view representing the clicked shortcut.
2462 */
2463 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002464 // Make sure that rogue clicks don't get through while allapps is launching, or after the
2465 // view has detached (it's possible for this to happen if the view is removed mid touch).
2466 if (v.getWindowToken() == null) {
2467 return;
2468 }
2469
Winson Chung9b0b2fe2012-02-24 13:03:34 -08002470 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002471 return;
2472 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07002473
Adam Cohen1697b792013-09-17 19:08:21 -07002474 if (v instanceof Workspace) {
2475 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002476 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002477 }
2478 return;
2479 }
2480
2481 if (v instanceof CellLayout) {
2482 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002483 showWorkspace(mWorkspace.indexOfChild(v), true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002484 }
2485 }
2486
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002487 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002488 if (tag instanceof ShortcutInfo) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002489 onClickAppShortcut(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002490 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002491 if (v instanceof FolderIcon) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002492 onClickFolderIcon(v);
Adam Cohena9cf38f2011-05-02 15:36:58 -07002493 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002494 } else if (v == mAllAppsButton) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002495 onClickAllAppsButton(v);
Sunny Goyal508da152014-08-14 10:53:27 -07002496 } else if (tag instanceof AppInfo) {
2497 startAppShortcutOrInfoActivity(v);
Sunny Goyalff572272014-07-23 13:58:07 -07002498 } else if (tag instanceof LauncherAppWidgetInfo) {
2499 if (v instanceof PendingAppWidgetHostView) {
2500 onClickPendingWidget((PendingAppWidgetHostView) v);
2501 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002502 }
2503 }
2504
Sunny Goyal70660032015-05-14 00:07:08 -07002505 @SuppressLint("ClickableViewAccessibility")
Michael Jurka0e260592010-06-30 17:07:39 -07002506 public boolean onTouch(View v, MotionEvent event) {
Michael Jurka0e260592010-06-30 17:07:39 -07002507 return false;
2508 }
2509
Michael Jurkaaf442092010-06-10 17:01:57 -07002510 /**
Sunny Goyalff572272014-07-23 13:58:07 -07002511 * Event handler for the app widget view which has not fully restored.
2512 */
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002513 public void onClickPendingWidget(final PendingAppWidgetHostView v) {
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002514 if (mIsSafeModeEnabled) {
2515 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2516 return;
2517 }
2518
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002519 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) v.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07002520 if (v.isReadyForClickSetup()) {
Sunny Goyalff572272014-07-23 13:58:07 -07002521 int widgetId = info.appWidgetId;
2522 AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
2523 if (appWidgetInfo != null) {
Adam Cohen59400422014-03-05 18:07:04 -08002524 mPendingAddWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(
2525 this, appWidgetInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07002526 mPendingAddInfo.copyFrom(info);
2527 mPendingAddWidgetId = widgetId;
2528
Sunny Goyalffe83f12014-08-14 17:39:34 -07002529 AppWidgetManagerCompat.getInstance(this).startConfigActivity(appWidgetInfo,
2530 info.appWidgetId, this, mAppWidgetHost, REQUEST_RECONFIGURE_APPWIDGET);
Sunny Goyalff572272014-07-23 13:58:07 -07002531 }
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002532 } else if (info.installProgress < 0) {
2533 // The install has not been queued
2534 final String packageName = info.providerName.getPackageName();
2535 showBrokenAppInstallDialog(packageName,
2536 new DialogInterface.OnClickListener() {
2537 public void onClick(DialogInterface dialog, int id) {
2538 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
2539 }
2540 });
2541 } else {
2542 // Download has started.
2543 final String packageName = info.providerName.getPackageName();
2544 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
Sunny Goyalff572272014-07-23 13:58:07 -07002545 }
2546 }
2547
2548 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002549 * Event handler for the "grid" button that appears on the home screen, which
2550 * enters all apps mode.
2551 *
2552 * @param v The view that was clicked.
2553 */
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002554 protected void onClickAllAppsButton(View v) {
2555 if (LOGD) Log.d(TAG, "onClickAllAppsButton");
Winson Chung76648c52015-07-10 14:33:23 -07002556 if (!isAppsViewVisible()) {
Winson Chung4ac30062015-05-08 17:34:17 -07002557 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07002558 true /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungbedf9232015-07-10 12:38:30 -07002559
2560 if (mLauncherCallbacks != null) {
2561 mLauncherCallbacks.onClickAllAppsButton(v);
2562 }
Winson Chung76648c52015-07-10 14:33:23 -07002563 }
2564 }
2565
2566 protected void onLongClickAllAppsButton(View v) {
2567 if (LOGD) Log.d(TAG, "onLongClickAllAppsButton");
2568 if (!isAppsViewVisible()) {
2569 showAppsView(true /* animated */, false /* resetListToTop */,
2570 true /* updatePredictedApps */, true /* focusSearchBar */);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002571 }
2572 }
2573
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002574 private void showBrokenAppInstallDialog(final String packageName,
2575 DialogInterface.OnClickListener onSearchClickListener) {
Sunny Goyale03b8122014-10-08 09:55:24 -07002576 new AlertDialog.Builder(this)
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002577 .setTitle(R.string.abandoned_promises_title)
2578 .setMessage(R.string.abandoned_promise_explanation)
2579 .setPositiveButton(R.string.abandoned_search, onSearchClickListener)
2580 .setNeutralButton(R.string.abandoned_clean_this,
2581 new DialogInterface.OnClickListener() {
2582 public void onClick(DialogInterface dialog, int id) {
2583 final UserHandleCompat user = UserHandleCompat.myUserHandle();
2584 mWorkspace.removeAbandonedPromise(packageName, user);
2585 }
2586 })
2587 .create().show();
2588 return;
2589 }
2590
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002591 /**
2592 * Event handler for an app shortcut click.
2593 *
2594 * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.
2595 */
Chris Wren40c5ed32014-06-24 18:24:23 -04002596 protected void onClickAppShortcut(final View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002597 if (LOGD) Log.d(TAG, "onClickAppShortcut");
2598 Object tag = v.getTag();
2599 if (!(tag instanceof ShortcutInfo)) {
2600 throw new IllegalArgumentException("Input must be a Shortcut");
2601 }
2602
2603 // Open shortcut
2604 final ShortcutInfo shortcut = (ShortcutInfo) tag;
Sunny Goyal1a745e82014-10-02 15:58:31 -07002605
2606 if (shortcut.isDisabled != 0) {
2607 int error = R.string.activity_not_available;
2608 if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_SAFEMODE) != 0) {
2609 error = R.string.safemode_shortcut_error;
2610 }
2611 Toast.makeText(this, error, Toast.LENGTH_SHORT).show();
2612 return;
2613 }
2614
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002615 final Intent intent = shortcut.intent;
2616
2617 // Check for special shortcuts
2618 if (intent.getComponent() != null) {
2619 final String shortcutClass = intent.getComponent().getClassName();
2620
2621 if (shortcutClass.equals(MemoryDumpActivity.class.getName())) {
2622 MemoryDumpActivity.startDump(this);
2623 return;
2624 } else if (shortcutClass.equals(ToggleWeightWatcher.class.getName())) {
2625 toggleShowWeightWatcher();
2626 return;
2627 }
2628 }
2629
Chris Wren40c5ed32014-06-24 18:24:23 -04002630 // Check for abandoned promise
Sunny Goyal34942622014-08-29 17:20:55 -07002631 if ((v instanceof BubbleTextView)
2632 && shortcut.isPromise()
2633 && !shortcut.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE)) {
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002634 showBrokenAppInstallDialog(
Sunny Goyal34942622014-08-29 17:20:55 -07002635 shortcut.getTargetComponent().getPackageName(),
Chris Wren40c5ed32014-06-24 18:24:23 -04002636 new DialogInterface.OnClickListener() {
2637 public void onClick(DialogInterface dialog, int id) {
Sunny Goyal508da152014-08-14 10:53:27 -07002638 startAppShortcutOrInfoActivity(v);
Chris Wren40c5ed32014-06-24 18:24:23 -04002639 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002640 });
Chris Wren40c5ed32014-06-24 18:24:23 -04002641 return;
2642 }
2643
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002644 // Start activities
Sunny Goyal508da152014-08-14 10:53:27 -07002645 startAppShortcutOrInfoActivity(v);
Adam Cohen9211d422014-10-07 18:14:53 -07002646
2647 if (mLauncherCallbacks != null) {
2648 mLauncherCallbacks.onClickAppShortcut(v);
2649 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002650 }
2651
Adam Cohen091440a2015-03-18 14:16:05 -07002652 @Thunk void startAppShortcutOrInfoActivity(View v) {
Chris Wren40c5ed32014-06-24 18:24:23 -04002653 Object tag = v.getTag();
Sunny Goyal508da152014-08-14 10:53:27 -07002654 final ShortcutInfo shortcut;
2655 final Intent intent;
2656 if (tag instanceof ShortcutInfo) {
2657 shortcut = (ShortcutInfo) tag;
2658 intent = shortcut.intent;
2659 int[] pos = new int[2];
2660 v.getLocationOnScreen(pos);
2661 intent.setSourceBounds(new Rect(pos[0], pos[1],
2662 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Chris Wren40c5ed32014-06-24 18:24:23 -04002663
Sunny Goyal508da152014-08-14 10:53:27 -07002664 } else if (tag instanceof AppInfo) {
2665 shortcut = null;
2666 intent = ((AppInfo) tag).intent;
2667 } else {
2668 throw new IllegalArgumentException("Input must be a Shortcut or AppInfo");
2669 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002670
2671 boolean success = startActivitySafely(v, intent, tag);
Winson Chung8f1eff72015-05-28 17:33:40 -07002672 mStats.recordLaunch(v, intent, shortcut);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002673
2674 if (success && v instanceof BubbleTextView) {
2675 mWaitingForResume = (BubbleTextView) v;
2676 mWaitingForResume.setStayPressed(true);
2677 }
2678 }
2679
2680 /**
2681 * Event handler for a folder icon click.
2682 *
2683 * @param v The view that was clicked. Must be an instance of {@link FolderIcon}.
2684 */
2685 protected void onClickFolderIcon(View v) {
2686 if (LOGD) Log.d(TAG, "onClickFolder");
2687 if (!(v instanceof FolderIcon)){
2688 throw new IllegalArgumentException("Input must be a FolderIcon");
2689 }
2690
Sunny Goyal317698b2015-07-29 11:45:41 -07002691 // TODO(sunnygoyal): Re-evaluate this code.
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002692 FolderIcon folderIcon = (FolderIcon) v;
2693 final FolderInfo info = folderIcon.getFolderInfo();
2694 Folder openFolder = mWorkspace.getFolderForTag(info);
2695
2696 // If the folder info reports that the associated folder is open, then verify that
2697 // it is actually opened. There have been a few instances where this gets out of sync.
2698 if (info.opened && openFolder == null) {
2699 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2700 + info.screenId + " (" + info.cellX + ", " + info.cellY + ")");
2701 info.opened = false;
2702 }
2703
2704 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
2705 // Close any open folder
2706 closeFolder();
2707 // Open the requested folder
2708 openFolder(folderIcon);
2709 } else {
2710 // Find the open folder...
2711 int folderScreen;
2712 if (openFolder != null) {
2713 folderScreen = mWorkspace.getPageForView(openFolder);
2714 // .. and close it
2715 closeFolder(openFolder);
2716 if (folderScreen != mWorkspace.getCurrentPage()) {
2717 // Close any folder open on the current screen
2718 closeFolder();
2719 // Pull the folder onto this screen
2720 openFolder(folderIcon);
2721 }
2722 }
2723 }
Adam Cohen9211d422014-10-07 18:14:53 -07002724
2725 if (mLauncherCallbacks != null) {
2726 mLauncherCallbacks.onClickFolderIcon(v);
2727 }
Michael Jurka5130e402011-10-13 04:55:35 -07002728 }
2729
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002730 /**
2731 * Event handler for the (Add) Widgets button that appears after a long press
2732 * on the home screen.
2733 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002734 protected void onClickAddWidgetButton(View view) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002735 if (LOGD) Log.d(TAG, "onClickAddWidgetButton");
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002736 if (mIsSafeModeEnabled) {
2737 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2738 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08002739 showWidgetsView(true /* animated */, true /* resetPageToZero */);
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002740 if (mLauncherCallbacks != null) {
2741 mLauncherCallbacks.onClickAddWidgetButton(view);
2742 }
Adam Cohen9211d422014-10-07 18:14:53 -07002743 }
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002744 }
2745
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002746 /**
2747 * Event handler for the wallpaper picker button that appears after a long press
2748 * on the home screen.
2749 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002750 protected void onClickWallpaperPicker(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002751 if (LOGD) Log.d(TAG, "onClickWallpaperPicker");
Sunny Goyal6a1e95a2015-03-20 17:26:30 -07002752 startActivityForResult(new Intent(Intent.ACTION_SET_WALLPAPER).setPackage(getPackageName()),
2753 REQUEST_PICK_WALLPAPER);
Adam Cohen9211d422014-10-07 18:14:53 -07002754
2755 if (mLauncherCallbacks != null) {
2756 mLauncherCallbacks.onClickWallpaperPicker(v);
2757 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002758 }
2759
2760 /**
2761 * Event handler for a click on the settings button that appears after a long press
2762 * on the home screen.
2763 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002764 protected void onClickSettingsButton(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002765 if (LOGD) Log.d(TAG, "onClickSettingsButton");
Adam Cohen9211d422014-10-07 18:14:53 -07002766 if (mLauncherCallbacks != null) {
2767 mLauncherCallbacks.onClickSettingsButton(v);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07002768 } else {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002769 startActivity(new Intent(this, SettingsActivity.class));
Adam Cohen9211d422014-10-07 18:14:53 -07002770 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002771 }
2772
Adam Cohen61f560d2013-09-30 15:58:20 -07002773 public View.OnTouchListener getHapticFeedbackTouchListener() {
2774 if (mHapticFeedbackTouchListener == null) {
2775 mHapticFeedbackTouchListener = new View.OnTouchListener() {
Sunny Goyal70660032015-05-14 00:07:08 -07002776 @SuppressLint("ClickableViewAccessibility")
Adam Cohen61f560d2013-09-30 15:58:20 -07002777 @Override
2778 public boolean onTouch(View v, MotionEvent event) {
2779 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
2780 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2781 }
2782 return false;
2783 }
2784 };
2785 }
2786 return mHapticFeedbackTouchListener;
2787 }
2788
Adam Cohen9211d422014-10-07 18:14:53 -07002789 public void onDragStarted(View view) {
2790 if (isOnCustomContent()) {
2791 // Custom content screen doesn't participate in drag and drop. If on custom
2792 // content screen, move to default.
2793 moveWorkspaceToDefaultScreen();
2794 }
2795
2796 if (mLauncherCallbacks != null) {
2797 mLauncherCallbacks.onDragStarted(view);
2798 }
2799 }
Anjali Koppal62d18ed2014-03-10 17:04:03 -07002800
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002801 /**
2802 * Called when the user stops interacting with the launcher.
2803 * This implies that the user is now on the homescreen and is not doing housekeeping.
2804 */
Adam Cohen9211d422014-10-07 18:14:53 -07002805 protected void onInteractionEnd() {
2806 if (mLauncherCallbacks != null) {
2807 mLauncherCallbacks.onInteractionEnd();
2808 }
2809 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002810
2811 /**
2812 * Called when the user starts interacting with the launcher.
2813 * The possible interactions are:
2814 * - open all apps
2815 * - reorder an app shortcut, or a widget
2816 * - open the overview mode.
2817 * This is a good time to stop doing things that only make sense
2818 * when the user is on the homescreen and not doing housekeeping.
2819 */
Adam Cohen9211d422014-10-07 18:14:53 -07002820 protected void onInteractionBegin() {
2821 if (mLauncherCallbacks != null) {
2822 mLauncherCallbacks.onInteractionBegin();
2823 }
2824 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002825
Winson Chungcd99cd32015-04-29 11:03:24 -07002826 /** Updates the interaction state. */
2827 public void updateInteraction(Workspace.State fromState, Workspace.State toState) {
Winson Chung83f59ab2015-05-05 17:21:58 -07002828 // Only update the interacting state if we are transitioning to/from a view with an
Winson Chungcd99cd32015-04-29 11:03:24 -07002829 // overlay
Winson Chungef7f8742015-06-04 17:18:17 -07002830 boolean fromStateWithOverlay = fromState != Workspace.State.NORMAL;
2831 boolean toStateWithOverlay = toState != Workspace.State.NORMAL;
Winson Chung83f59ab2015-05-05 17:21:58 -07002832 if (toStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002833 onInteractionBegin();
Winson Chung83f59ab2015-05-05 17:21:58 -07002834 } else if (fromStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002835 onInteractionEnd();
2836 }
2837 }
2838
Kenny Guyf07af7b2014-07-31 11:39:16 +01002839 void startApplicationDetailsActivity(ComponentName componentName, UserHandleCompat user) {
Kenny Guyf07af7b2014-07-31 11:39:16 +01002840 try {
2841 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Kenny Guyf07af7b2014-07-31 11:39:16 +01002842 launcherApps.showAppDetailsForProfile(componentName, user);
2843 } catch (SecurityException e) {
2844 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2845 Log.e(TAG, "Launcher does not have permission to launch settings");
2846 } catch (ActivityNotFoundException e) {
2847 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2848 Log.e(TAG, "Unable to launch settings");
2849 }
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002850 }
2851
Michael Jurka1e2f4652013-07-08 18:03:46 -07002852 // returns true if the activity was started
Kenny Guyd31df542014-06-30 15:12:11 +01002853 boolean startApplicationUninstallActivity(ComponentName componentName, int flags,
2854 UserHandleCompat user) {
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002855 if ((flags & AppInfo.DOWNLOADED_FLAG) == 0) {
Patrick Dubroy5539af72010-09-07 15:22:01 -07002856 // System applications cannot be installed. For now, show a toast explaining that.
2857 // We may give them the option of disabling apps this way.
2858 int messageId = R.string.uninstall_system_app_text;
2859 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
Michael Jurka1e2f4652013-07-08 18:03:46 -07002860 return false;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002861 } else {
Michael Jurka1e2f4652013-07-08 18:03:46 -07002862 String packageName = componentName.getPackageName();
2863 String className = componentName.getClassName();
Patrick Dubroy5539af72010-09-07 15:22:01 -07002864 Intent intent = new Intent(
2865 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002866 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2867 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Kenny Guyd31df542014-06-30 15:12:11 +01002868 if (user != null) {
2869 user.addToIntent(intent, Intent.EXTRA_USER);
2870 }
Patrick Dubroy5539af72010-09-07 15:22:01 -07002871 startActivity(intent);
Michael Jurka1e2f4652013-07-08 18:03:46 -07002872 return true;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002873 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002874 }
2875
Winson Chung8f1eff72015-05-28 17:33:40 -07002876 private boolean startActivity(View v, Intent intent, Object tag) {
Kenny Guyb6cc40b2014-05-13 15:58:58 +01002877 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002878 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002879 // Only launch using the new animation if the shortcut has not opted out (this is a
2880 // private contract between launcher and may be ignored in the future).
2881 boolean useLaunchAnimation = (v != null) &&
2882 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
Kenny Guyed131872014-04-30 03:02:21 +01002883 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
2884 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyed131872014-04-30 03:02:21 +01002885
Kenny Guy1317e2d2014-05-08 18:52:50 +01002886 UserHandleCompat user = null;
2887 if (intent.hasExtra(AppInfo.EXTRA_PROFILE)) {
2888 long serialNumber = intent.getLongExtra(AppInfo.EXTRA_PROFILE, -1);
2889 user = userManager.getUserForSerialNumber(serialNumber);
2890 }
2891
2892 Bundle optsBundle = null;
Winson Chung2672ff92012-05-04 16:22:30 -07002893 if (useLaunchAnimation) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002894 ActivityOptions opts = null;
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002895 if (Utilities.ATLEAST_MARSHMALLOW) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002896 int left = 0, top = 0;
2897 int width = v.getMeasuredWidth(), height = v.getMeasuredHeight();
2898 if (v instanceof TextView) {
2899 // Launch from center of icon, not entire view
Winson Chungb745afb2015-03-02 11:51:23 -08002900 Drawable icon = Workspace.getTextViewIcon((TextView) v);
2901 if (icon != null) {
2902 Rect bounds = icon.getBounds();
Chet Haasea8f996d2015-02-17 12:56:04 -08002903 left = (width - bounds.width()) / 2;
Winson Chungb745afb2015-03-02 11:51:23 -08002904 top = v.getPaddingTop();
Chet Haasea8f996d2015-02-17 12:56:04 -08002905 width = bounds.width();
2906 height = bounds.height();
2907 }
2908 }
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002909 opts = ActivityOptions.makeClipRevealAnimation(v, left, top, width, height);
2910 } else if (!Utilities.ATLEAST_LOLLIPOP) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002911 // Below L, we use a scale up animation
Adam Cohen2e52c902015-04-06 13:11:28 -07002912 opts = ActivityOptions.makeScaleUpAnimation(v, 0, 0,
Chet Haasea8f996d2015-02-17 12:56:04 -08002913 v.getMeasuredWidth(), v.getMeasuredHeight());
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002914 } else if (Utilities.ATLEAST_LOLLIPOP_MR1) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002915 // On L devices, we use the device default slide-up transition.
2916 // On L MR1 devices, we a custom version of the slide-up transition which
2917 // doesn't have the delay present in the device default.
2918 opts = ActivityOptions.makeCustomAnimation(this,
2919 R.anim.task_open_enter, R.anim.no_anim);
Chet Haasea8f996d2015-02-17 12:56:04 -08002920 }
Adam Cohen2e52c902015-04-06 13:11:28 -07002921 optsBundle = opts != null ? opts.toBundle() : null;
Adam Cohen6ea3b112014-06-11 11:38:49 -07002922 }
Kenny Guy1317e2d2014-05-08 18:52:50 +01002923
2924 if (user == null || user.equals(UserHandleCompat.myUserHandle())) {
2925 // Could be launching some bookkeeping activity
2926 startActivity(intent, optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002927 } else {
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002928 // TODO Component can be null when shortcuts are supported for secondary user
Kenny Guyc2bd8102014-06-30 12:30:31 +01002929 launcherApps.startActivityForProfile(intent.getComponent(), user,
2930 intent.getSourceBounds(), optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002931 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002932 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002933 } catch (SecurityException e) {
2934 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002935 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002936 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07002937 "or use the exported attribute for this activity. "
2938 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002939 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002940 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002941 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002942
Winson Chungbedf9232015-07-10 12:38:30 -07002943 public boolean startActivitySafely(View v, Intent intent, Object tag) {
Michael Jurka86a720e2012-05-09 11:23:23 -07002944 boolean success = false;
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002945 if (mIsSafeModeEnabled && !Utilities.isSystemApp(this, intent)) {
2946 Toast.makeText(this, R.string.safemode_shortcut_error, Toast.LENGTH_SHORT).show();
2947 return false;
2948 }
Michael Jurka86a720e2012-05-09 11:23:23 -07002949 try {
2950 success = startActivity(v, intent, tag);
2951 } catch (ActivityNotFoundException e) {
2952 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2953 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
2954 }
2955 return success;
2956 }
2957
Adam Cohen268c4752012-06-06 17:47:33 -07002958 /**
2959 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
2960 * in the DragLayer in the exact absolute location of the original FolderIcon.
2961 */
2962 private void copyFolderIconToImage(FolderIcon fi) {
2963 final int width = fi.getMeasuredWidth();
2964 final int height = fi.getMeasuredHeight();
2965
2966 // Lazy load ImageView, Bitmap and Canvas
2967 if (mFolderIconImageView == null) {
2968 mFolderIconImageView = new ImageView(this);
2969 }
2970 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
2971 mFolderIconBitmap.getHeight() != height) {
2972 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
2973 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
2974 }
2975
2976 DragLayer.LayoutParams lp;
2977 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
2978 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
2979 } else {
2980 lp = new DragLayer.LayoutParams(width, height);
2981 }
2982
Adam Cohen307fe232012-08-16 17:55:58 -07002983 // The layout from which the folder is being opened may be scaled, adjust the starting
2984 // view size by this scale factor.
2985 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07002986 lp.customPosition = true;
2987 lp.x = mRectForFolderAnimation.left;
2988 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07002989 lp.width = (int) (scale * width);
2990 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07002991
2992 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
2993 fi.draw(mFolderIconCanvas);
2994 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07002995 if (fi.getFolder() != null) {
2996 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
2997 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07002998 }
Adam Cohen268c4752012-06-06 17:47:33 -07002999 // Just in case this image view is still in the drag layer from a previous animation,
3000 // we remove it and re-add it.
3001 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
3002 mDragLayer.removeView(mFolderIconImageView);
3003 }
3004 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07003005 if (fi.getFolder() != null) {
3006 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07003007 }
Adam Cohen268c4752012-06-06 17:47:33 -07003008 }
3009
Adam Cohen2801caf2011-05-13 20:57:39 -07003010 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003011 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003012 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
3013 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
3014 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
3015
Adam Cohenc51934b2011-07-26 21:07:43 -07003016 FolderInfo info = (FolderInfo) fi.getTag();
3017 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3018 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07003019 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
3020 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07003021 }
3022
Adam Cohen268c4752012-06-06 17:47:33 -07003023 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
3024 copyFolderIconToImage(fi);
3025 fi.setVisibility(View.INVISIBLE);
3026
Michael Jurka2ecf9952012-06-18 12:52:28 -07003027 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003028 scaleX, scaleY);
Sunny Goyal9fc953b2015-08-17 12:24:25 -07003029 if (Utilities.ATLEAST_LOLLIPOP) {
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003030 oa.setInterpolator(new LogDecelerateInterpolator(100, 0));
3031 }
3032 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohen2801caf2011-05-13 20:57:39 -07003033 oa.start();
3034 }
3035
Adam Cohen268c4752012-06-06 17:47:33 -07003036 private void shrinkAndFadeInFolderIcon(final FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003037 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003038 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
3039 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
3040 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
3041
Adam Cohen268c4752012-06-06 17:47:33 -07003042 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07003043
Adam Cohen268c4752012-06-06 17:47:33 -07003044 // We remove and re-draw the FolderIcon in-case it has changed
3045 mDragLayer.removeView(mFolderIconImageView);
3046 copyFolderIconToImage(fi);
Michael Jurka2ecf9952012-06-18 12:52:28 -07003047 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003048 scaleX, scaleY);
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003049 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07003050 oa.addListener(new AnimatorListenerAdapter() {
3051 @Override
3052 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07003053 if (cl != null) {
3054 cl.clearFolderLeaveBehind();
3055 // Remove the ImageView copy of the FolderIcon and make the original visible.
3056 mDragLayer.removeView(mFolderIconImageView);
3057 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07003058 }
3059 }
3060 });
Adam Cohen2801caf2011-05-13 20:57:39 -07003061 oa.start();
3062 }
3063
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003064 /**
Michael Jurka774bd372010-10-22 13:40:50 -07003065 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003066 * is animated relative to the specified View. If the View is null, no animation
3067 * is played.
3068 *
3069 * @param folderInfo The FolderInfo describing the folder to open.
3070 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07003071 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07003072 Folder folder = folderIcon.getFolder();
Sunny Goyalf4066152015-04-15 09:42:19 -07003073 Folder openFolder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
3074 if (openFolder != null && openFolder != folder) {
3075 // Close any open folder before opening a folder.
3076 closeFolder();
3077 }
3078
Adam Cohena9cf38f2011-05-02 15:36:58 -07003079 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003080
Adam Cohena9cf38f2011-05-02 15:36:58 -07003081 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003082
Sunny Goyalf4066152015-04-15 09:42:19 -07003083 // While the folder is open, the position of the icon cannot change.
3084 ((CellLayout.LayoutParams) folderIcon.getLayoutParams()).canReorder = false;
3085
Adam Cohen4554ee12011-08-03 16:13:21 -07003086 // Just verify that the folder hasn't already been added to the DragLayer.
3087 // There was a one-off crash where the folder had a parent already.
3088 if (folder.getParent() == null) {
3089 mDragLayer.addView(folder);
3090 mDragController.addDropTarget((DropTarget) folder);
3091 } else {
3092 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
3093 folder.getParent() + ").");
3094 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07003095 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07003096 growAndFadeOutFolderIcon(folderIcon);
Winson Chung83ca4802013-04-12 15:10:52 -07003097
3098 // Notify the accessibility manager that this folder "window" has appeared and occluded
3099 // the workspace items
3100 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
3101 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07003102 }
3103
3104 public void closeFolder() {
Adam Cohen37c717f2013-11-26 11:50:15 -08003105 Folder folder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
Adam Cohen4554ee12011-08-03 16:13:21 -07003106 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07003107 if (folder.isEditingName()) {
3108 folder.dismissEditingName();
3109 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003110 closeFolder(folder);
3111 }
3112 }
3113
Sunny Goyal83a8f042015-05-19 12:52:12 -07003114 public void closeFolder(Folder folder) {
Adam Cohen4554ee12011-08-03 16:13:21 -07003115 folder.getInfo().opened = false;
3116
3117 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
3118 if (parent != null) {
3119 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
3120 shrinkAndFadeInFolderIcon(fi);
Sunny Goyalf4066152015-04-15 09:42:19 -07003121 if (fi != null) {
3122 ((CellLayout.LayoutParams) fi.getLayoutParams()).canReorder = true;
3123 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003124 }
3125 folder.animateClosed();
Winson Chung83ca4802013-04-12 15:10:52 -07003126
3127 // Notify the accessibility manager that this folder "window" has disappeard and no
3128 // longer occludeds the workspace items
3129 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003130 }
3131
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003132 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07003133 if (!isDraggingEnabled()) return false;
3134 if (isWorkspaceLocked()) return false;
3135 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003136
Winson Chung76648c52015-07-10 14:33:23 -07003137 if (v == mAllAppsButton) {
3138 onLongClickAllAppsButton(v);
3139 return true;
3140 }
3141
Adam Cohen1697b792013-09-17 19:08:21 -07003142 if (v instanceof Workspace) {
3143 if (!mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003144 if (!mWorkspace.isTouchActive()) {
3145 showOverviewMode(true);
Adam Cohen93c97562013-09-26 13:48:01 -07003146 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3147 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
3148 return true;
3149 } else {
3150 return false;
3151 }
Adam Cohenaa4c8c12014-06-06 11:52:52 -07003152 } else {
3153 return false;
Adam Cohen1697b792013-09-17 19:08:21 -07003154 }
Adam Cohen1697b792013-09-17 19:08:21 -07003155 }
3156
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003157 CellLayout.CellInfo longClickCellInfo = null;
3158 View itemUnderLongClick = null;
3159 if (v.getTag() instanceof ItemInfo) {
3160 ItemInfo info = (ItemInfo) v.getTag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08003161 longClickCellInfo = new CellLayout.CellInfo(v, info);
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003162 itemUnderLongClick = longClickCellInfo.cell;
3163 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003164 }
3165
Winson Chung3d503fb2011-07-13 17:25:49 -07003166 // The hotseat touch handling does not go through Workspace, and we always allow long press
3167 // on hotseat items.
Dan Sandlere26d0942014-01-13 14:30:14 -05003168 final boolean inHotseat = isHotseatLayout(v);
Sunny Goyal8e2133b2015-05-06 13:39:07 -07003169 if (!mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07003170 if (itemUnderLongClick == null) {
Adam Cohend3ecce92013-09-16 14:58:00 -07003171 // User long pressed on empty space
3172 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3173 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Adam Cohend3ecce92013-09-16 14:58:00 -07003174 if (mWorkspace.isInOverviewMode()) {
3175 mWorkspace.startReordering(v);
3176 } else {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003177 showOverviewMode(true);
Adam Cohendedbd962013-07-11 14:21:49 -07003178 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003179 } else {
Dan Sandlere26d0942014-01-13 14:30:14 -05003180 final boolean isAllAppsButton = inHotseat && isAllAppsButtonRank(
3181 mHotseat.getOrderInHotseat(
3182 longClickCellInfo.cellX,
3183 longClickCellInfo.cellY));
3184 if (!(itemUnderLongClick instanceof Folder || isAllAppsButton)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003185 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07003186 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003187 }
3188 }
3189 }
3190 return true;
3191 }
3192
Winson Chung3d503fb2011-07-13 17:25:49 -07003193 boolean isHotseatLayout(View layout) {
3194 return mHotseat != null && layout != null &&
3195 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
3196 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08003197
Winson Chung3d503fb2011-07-13 17:25:49 -07003198 /**
3199 * Returns the CellLayout of the specified container at the specified screen.
3200 */
Sunny Goyal92820592015-03-02 11:31:35 -08003201 public CellLayout getCellLayout(long container, long screenId) {
Winson Chung3d503fb2011-07-13 17:25:49 -07003202 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3203 if (mHotseat != null) {
3204 return mHotseat.getLayout();
3205 } else {
3206 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08003207 }
Winson Chung3d503fb2011-07-13 17:25:49 -07003208 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08003209 return mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08003210 }
3211 }
3212
Winson Chungb745afb2015-03-02 11:51:23 -08003213 /**
3214 * For overridden classes.
3215 */
Daniel Sandler843e8602010-06-07 14:59:01 -04003216 public boolean isAllAppsVisible() {
Winson Chungb745afb2015-03-02 11:51:23 -08003217 return isAppsViewVisible();
3218 }
3219
3220 public boolean isAppsViewVisible() {
3221 return (mState == State.APPS) || (mOnResumeState == State.APPS);
3222 }
3223
3224 public boolean isWidgetsViewVisible() {
3225 return (mState == State.WIDGETS) || (mOnResumeState == State.WIDGETS);
Joe Onoratofb0ca672009-09-14 17:55:46 -04003226 }
3227
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003228 private void setWorkspaceBackground(int background) {
3229 switch (background) {
3230 case WORKSPACE_BACKGROUND_TRANSPARENT:
3231 getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
3232 break;
3233 case WORKSPACE_BACKGROUND_BLACK:
3234 getWindow().setBackgroundDrawable(null);
3235 break;
3236 default:
3237 getWindow().setBackgroundDrawable(mWorkspaceBackgroundDrawable);
3238 }
Craig Mautner360310b2012-10-26 15:13:08 -07003239 }
3240
Selim Cinek3a8a8f72014-01-16 10:38:38 -08003241 protected void changeWallpaperVisiblity(boolean visible) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003242 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
3243 int curflags = getWindow().getAttributes().flags
3244 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
3245 if (wpflags != curflags) {
3246 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
3247 }
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003248 setWorkspaceBackground(visible ? WORKSPACE_BACKGROUND_GRADIENT : WORKSPACE_BACKGROUND_BLACK);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003249 }
3250
Michael Jurkae326f182011-11-21 14:05:46 -08003251 @Override
3252 public void onTrimMemory(int level) {
3253 super.onTrimMemory(level);
Adam Cohen3f9c9712014-10-31 11:48:25 -07003254 if (level >= ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
3255 // The widget preview db can result in holding onto over
3256 // 3MB of memory for caching which isn't necessary.
3257 SQLiteDatabase.releaseMemory();
3258
Adam Cohenc8f4e1b2014-11-19 16:03:20 -08003259 // This clears all widget bitmaps from the widget tray
Hyunyoung Song3f471442015-04-08 19:01:34 -07003260 // TODO(hyunyoungs)
Michael Jurkae326f182011-11-21 14:05:46 -08003261 }
Robert Kozikowski67c30862015-03-30 23:46:46 +01003262 if (mLauncherCallbacks != null) {
3263 mLauncherCallbacks.onTrimMemory(level);
3264 }
Michael Jurkae326f182011-11-21 14:05:46 -08003265 }
3266
Winson Chung5f4e0fd2015-05-22 11:12:27 -07003267 public void showWorkspace(boolean animated) {
Winson Chungef7f8742015-06-04 17:18:17 -07003268 showWorkspace(WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated, null);
Adam Cohened307df2013-10-02 09:37:31 -07003269 }
3270
Sunny Goyal83a8f042015-05-19 12:52:12 -07003271 public void showWorkspace(boolean animated, Runnable onCompleteRunnable) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003272 showWorkspace(WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated,
Winson Chungef7f8742015-06-04 17:18:17 -07003273 onCompleteRunnable);
Winson Chungdc61c4d2015-04-20 18:26:57 -07003274 }
3275
3276 protected void showWorkspace(int snapToPage, boolean animated) {
Winson Chungef7f8742015-06-04 17:18:17 -07003277 showWorkspace(snapToPage, animated, null);
Winson Chungdc61c4d2015-04-20 18:26:57 -07003278 }
3279
Winson Chungef7f8742015-06-04 17:18:17 -07003280 void showWorkspace(int snapToPage, boolean animated, Runnable onCompleteRunnable) {
Winson Chung0f785722015-04-08 10:27:49 -07003281 boolean changed = mState != State.WORKSPACE ||
3282 mWorkspace.getState() != Workspace.State.NORMAL;
3283 if (changed) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003284 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003285 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3286 Workspace.State.NORMAL, snapToPage, animated, onCompleteRunnable);
Winson Chungc7d2b602012-05-16 17:02:20 -07003287
Michael Jurkab3e22d92011-10-31 15:58:33 -07003288 // Set focus to the AppsCustomize button
3289 if (mAllAppsButton != null) {
3290 mAllAppsButton.requestFocus();
3291 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003292 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07003293
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003294 // Change the state *after* we've called all the transition code
3295 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08003296
Winson Chung5fb63472011-02-02 17:03:37 -08003297 // Resume the auto-advance of widgets
3298 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08003299 updateAutoAdvanceState();
Winson Chung5fb63472011-02-02 17:03:37 -08003300
Winson Chung0f785722015-04-08 10:27:49 -07003301 if (changed) {
3302 // Send an accessibility event to announce the context change
3303 getWindow().getDecorView()
3304 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Winson Chung0f785722015-04-08 10:27:49 -07003305 }
Bjorn Bringertc459e522013-06-07 19:36:01 +01003306 }
3307
Adam Cohened307df2013-10-02 09:37:31 -07003308 void showOverviewMode(boolean animated) {
3309 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003310 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3311 Workspace.State.OVERVIEW,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003312 WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, animated,
3313 null /* onCompleteRunnable */);
Adam Cohened307df2013-10-02 09:37:31 -07003314 mState = State.WORKSPACE;
Joe Onorato00acb122009-08-04 16:04:30 -04003315 }
3316
Winson Chungb745afb2015-03-02 11:51:23 -08003317 /**
3318 * Shows the apps view.
3319 */
Winson Chung76648c52015-07-10 14:33:23 -07003320 void showAppsView(boolean animated, boolean resetListToTop, boolean updatePredictedApps,
3321 boolean focusSearchBar) {
Winson Chungb745afb2015-03-02 11:51:23 -08003322 if (resetListToTop) {
3323 mAppsView.scrollToTop();
3324 }
Winson Chung4ac30062015-05-08 17:34:17 -07003325 if (updatePredictedApps) {
3326 tryAndUpdatePredictedApps();
3327 }
Winson Chung76648c52015-07-10 14:33:23 -07003328 showAppsOrWidgets(State.APPS, animated, focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003329 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003330
Winson Chungb745afb2015-03-02 11:51:23 -08003331 /**
3332 * Shows the widgets view.
3333 */
3334 void showWidgetsView(boolean animated, boolean resetPageToZero) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003335 if (LOGD) Log.d(TAG, "showWidgetsView:" + animated + " resetPageToZero:" + resetPageToZero);
Winson Chung82963d52013-10-09 11:20:57 -07003336 if (resetPageToZero) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003337 mWidgetsView.scrollToTop();
Winson Chung82963d52013-10-09 11:20:57 -07003338 }
Winson Chung76648c52015-07-10 14:33:23 -07003339 showAppsOrWidgets(State.WIDGETS, animated, false);
Hyunyoung Song3f471442015-04-08 19:01:34 -07003340
3341 mWidgetsView.post(new Runnable() {
Adam Cohendcc5e712014-06-23 15:38:55 -04003342 @Override
3343 public void run() {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003344 mWidgetsView.requestFocus();
Adam Cohendcc5e712014-06-23 15:38:55 -04003345 }
3346 });
Winson Chungb745afb2015-03-02 11:51:23 -08003347 }
3348
3349 /**
3350 * Sets up the transition to show the apps/widgets view.
Hyunyoung Songb7900832015-05-15 16:29:45 -07003351 *
3352 * @return whether the current from and to state allowed this operation
Winson Chungb745afb2015-03-02 11:51:23 -08003353 */
Hyunyoung Songb7900832015-05-15 16:29:45 -07003354 // TODO: calling method should use the return value so that when {@code false} is returned
3355 // the workspace transition doesn't fall into invalid state.
Winson Chung76648c52015-07-10 14:33:23 -07003356 private boolean showAppsOrWidgets(State toState, boolean animated, boolean focusSearchBar) {
Hyunyoung Songb7900832015-05-15 16:29:45 -07003357 if (mState != State.WORKSPACE && mState != State.APPS_SPRING_LOADED &&
3358 mState != State.WIDGETS_SPRING_LOADED) {
3359 return false;
3360 }
3361 if (toState != State.APPS && toState != State.WIDGETS) {
3362 return false;
3363 }
Winson Chungb745afb2015-03-02 11:51:23 -08003364
3365 if (toState == State.APPS) {
Winson Chung006ee262015-08-03 14:40:11 -07003366 mStateTransitionAnimation.startAnimationToAllApps(mWorkspace.getState(), animated,
3367 focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003368 } else {
Winson Chung006ee262015-08-03 14:40:11 -07003369 mStateTransitionAnimation.startAnimationToWidgets(mWorkspace.getState(), animated);
Winson Chungb745afb2015-03-02 11:51:23 -08003370 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003371
Michael Jurkab3e22d92011-10-31 15:58:33 -07003372 // Change the state *after* we've called all the transition code
Winson Chungb745afb2015-03-02 11:51:23 -08003373 mState = toState;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003374
3375 // Pause the auto-advance of widgets until we are out of AllApps
3376 mUserPresent = false;
Winson Chungb745afb2015-03-02 11:51:23 -08003377 updateAutoAdvanceState();
Michael Jurkab3e22d92011-10-31 15:58:33 -07003378 closeFolder();
3379
3380 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07003381 getWindow().getDecorView()
3382 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Hyunyoung Songb7900832015-05-15 16:29:45 -07003383 return true;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003384 }
3385
Winson Chungcd99cd32015-04-29 11:03:24 -07003386 /**
3387 * Updates the workspace and interaction state on state change, and return the animation to this
3388 * new state.
3389 */
3390 public Animator startWorkspaceStateChangeAnimation(Workspace.State toState, int toPage,
Winson Chung006ee262015-08-03 14:40:11 -07003391 boolean animated, HashMap<View, Integer> layerViews) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003392 Workspace.State fromState = mWorkspace.getState();
Winson Chung006ee262015-08-03 14:40:11 -07003393 Animator anim = mWorkspace.setStateWithAnimation(toState, toPage, animated, layerViews);
Winson Chungcd99cd32015-04-29 11:03:24 -07003394 updateInteraction(fromState, toState);
3395 return anim;
3396 }
3397
Hyunyoung Song3f471442015-04-08 19:01:34 -07003398 public void enterSpringLoadedDragMode() {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003399 if (LOGD) Log.d(TAG, String.format("enterSpringLoadedDragMode [mState=%s", mState.name()));
Winson Chungb745afb2015-03-02 11:51:23 -08003400 if (mState == State.WORKSPACE || mState == State.APPS_SPRING_LOADED ||
3401 mState == State.WIDGETS_SPRING_LOADED) {
3402 return;
Winson Chungb26f3d62011-06-02 10:49:29 -07003403 }
Winson Chungb745afb2015-03-02 11:51:23 -08003404
Winson Chung006ee262015-08-03 14:40:11 -07003405 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
3406 Workspace.State.SPRING_LOADED,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003407 WorkspaceStateTransitionAnimation.SCROLL_TO_CURRENT_PAGE, true /* animated */,
3408 null /* onCompleteRunnable */);
Winson Chungb745afb2015-03-02 11:51:23 -08003409 mState = isAppsViewVisible() ? State.APPS_SPRING_LOADED : State.WIDGETS_SPRING_LOADED;
Michael Jurkad3ef3062010-11-23 16:23:58 -08003410 }
Adam Cohen7777d962011-08-18 18:58:38 -07003411
Hyunyoung Song3f471442015-04-08 19:01:34 -07003412 public void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, int delay,
Adam Cohened66b2b2012-01-23 17:28:51 -08003413 final Runnable onCompleteRunnable) {
Winson Chungb745afb2015-03-02 11:51:23 -08003414 if (mState != State.APPS_SPRING_LOADED && mState != State.WIDGETS_SPRING_LOADED) return;
Winson Chung09bfc452011-09-09 11:30:20 -07003415
Winson Chunge7a03942011-08-05 15:05:12 -07003416 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07003417 @Override
3418 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003419 if (successfulDrop) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003420 // TODO(hyunyoungs): verify if this hack is still needed, if not, delete.
3421 //
Michael Jurka7bdb25a2011-08-03 15:16:44 -07003422 // Before we show workspace, hide all apps again because
3423 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
3424 // clean up our state transition functions
Hyunyoung Song3f471442015-04-08 19:01:34 -07003425 mWidgetsView.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003426 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07003427 } else {
3428 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003429 }
Winson Chung557d6ed2011-07-08 15:34:52 -07003430 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07003431 }, delay);
Winson Chung557d6ed2011-07-08 15:34:52 -07003432 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003433
Michael Jurkad3ef3062010-11-23 16:23:58 -08003434 void exitSpringLoadedDragMode() {
Winson Chungb745afb2015-03-02 11:51:23 -08003435 if (mState == State.APPS_SPRING_LOADED) {
Winson Chung4ac30062015-05-08 17:34:17 -07003436 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07003437 false /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -08003438 } else if (mState == State.WIDGETS_SPRING_LOADED) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003439 showWidgetsView(true, false);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003440 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003441 }
3442
Winson Chung4ac30062015-05-08 17:34:17 -07003443 /**
3444 * Updates the set of predicted apps if it hasn't been updated since the last time Launcher was
3445 * resumed.
3446 */
3447 private void tryAndUpdatePredictedApps() {
3448 if (mLauncherCallbacks != null) {
Winson Chung6b1c73f2015-06-18 11:38:42 -07003449 List<ComponentKey> apps = mLauncherCallbacks.getPredictedApps();
Winson Chung91c05952015-06-25 12:17:30 -07003450 if (apps != null) {
Winson Chung4ac30062015-05-08 17:34:17 -07003451 mAppsView.setPredictedApps(apps);
3452 }
3453 }
3454 }
3455
Michael Jurkab3e22d92011-10-31 15:58:33 -07003456 void lockAllApps() {
3457 // TODO
3458 }
3459
3460 void unlockAllApps() {
3461 // TODO
3462 }
3463
Sunny Goyal594d76d2014-11-06 10:12:54 -08003464 protected void disableVoiceButtonProxy(boolean disable) {
3465 // NO-OP
Winson Chungbb185bd2011-11-21 12:31:42 -08003466 }
3467
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003468 public View getOrCreateQsbBar() {
Adam Cohenc2d6e892014-10-16 09:49:24 -07003469 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
3470 return mLauncherCallbacks.getQsbBar();
Adam Cohen9211d422014-10-07 18:14:53 -07003471 }
3472
Adam Cohen24ce0b32014-01-14 16:18:14 -08003473 if (mQsb == null) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003474 AppWidgetProviderInfo searchProvider = Utilities.getSearchWidgetProvider(this);
3475 if (searchProvider == null) {
3476 return null;
3477 }
3478
3479 Bundle opts = new Bundle();
3480 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_HOST_CATEGORY,
Adam Coheneb8e2822015-02-20 16:38:48 +00003481 AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003482
3483 SharedPreferences sp = getSharedPreferences(
3484 LauncherAppState.getSharedPreferencesKey(), MODE_PRIVATE);
3485 int widgetId = sp.getInt(QSB_WIDGET_ID, -1);
Sunny Goyal416541c2014-11-14 11:59:57 -08003486 AppWidgetProviderInfo widgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003487 if (!searchProvider.provider.flattenToString().equals(
3488 sp.getString(QSB_WIDGET_PROVIDER, null))
Sunny Goyal416541c2014-11-14 11:59:57 -08003489 || (widgetInfo == null)
3490 || !widgetInfo.provider.equals(searchProvider.provider)) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003491 // A valid widget is not already bound.
3492 if (widgetId > -1) {
3493 mAppWidgetHost.deleteAppWidgetId(widgetId);
3494 widgetId = -1;
3495 }
3496
3497 // Try to bind a new widget
3498 widgetId = mAppWidgetHost.allocateAppWidgetId();
3499
3500 if (!AppWidgetManagerCompat.getInstance(this)
3501 .bindAppWidgetIdIfAllowed(widgetId, searchProvider, opts)) {
3502 mAppWidgetHost.deleteAppWidgetId(widgetId);
3503 widgetId = -1;
3504 }
3505
3506 sp.edit()
3507 .putInt(QSB_WIDGET_ID, widgetId)
3508 .putString(QSB_WIDGET_PROVIDER, searchProvider.provider.flattenToString())
3509 .commit();
3510 }
3511
Sunny Goyal8d595092015-07-06 12:22:14 -07003512 mAppWidgetHost.setQsbWidgetId(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003513 if (widgetId != -1) {
3514 mQsb = mAppWidgetHost.createView(this, widgetId, searchProvider);
3515 mQsb.updateAppWidgetOptions(opts);
3516 mQsb.setPadding(0, 0, 0, 0);
Sunny Goyal99568592015-08-27 13:48:11 -07003517 mQsb.setId(getViewIdForItemId(QSB_ITEM_ID));
Sunny Goyal594d76d2014-11-06 10:12:54 -08003518 mSearchDropTargetBar.addView(mQsb);
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003519 mSearchDropTargetBar.setQsbSearchBar(mQsb);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003520 }
Cristina Stancu476493b2013-08-07 17:20:14 +01003521 }
Adam Cohen24ce0b32014-01-14 16:18:14 -08003522 return mQsb;
Cristina Stancu476493b2013-08-07 17:20:14 +01003523 }
3524
Sunny Goyal22235bc2015-04-03 09:23:43 -07003525 private void reinflateQSBIfNecessary() {
3526 if (mQsb instanceof LauncherAppWidgetHostView &&
3527 ((LauncherAppWidgetHostView) mQsb).isReinflateRequired()) {
3528 mSearchDropTargetBar.removeView(mQsb);
3529 mQsb = null;
3530 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
3531 }
3532 }
3533
Michael Jurkad7c28052012-04-27 15:43:36 -07003534 @Override
3535 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07003536 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07003537 final List<CharSequence> text = event.getText();
3538 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07003539 // Populate event with a fake title based on the current state.
Winson Chungb745afb2015-03-02 11:51:23 -08003540 if (mState == State.APPS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003541 text.add(getString(R.string.all_apps_button_label));
Winson Chungb745afb2015-03-02 11:51:23 -08003542 } else if (mState == State.WIDGETS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003543 text.add(getString(R.string.widget_button_text));
Hyunyoung Song166e6482015-06-25 21:06:07 -07003544 } else if (mWorkspace != null) {
3545 text.add(mWorkspace.getCurrentPageDescription());
alanv1d4fde62012-10-17 13:15:47 -07003546 } else {
3547 text.add(getString(R.string.all_apps_home_button_label));
3548 }
Michael Jurkad7c28052012-04-27 15:43:36 -07003549 return result;
3550 }
3551
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003552 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003553 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003554 */
Adam Cohen091440a2015-03-18 14:16:05 -07003555 @Thunk class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003556 @Override
3557 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003558 closeSystemDialogs();
3559 }
3560 }
3561
3562 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07003563 * If the activity is currently paused, signal that we need to run the passed Runnable
3564 * in onResume.
3565 *
3566 * This needs to be called from incoming places where resources might have been loaded
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003567 * while the activity is paused. That is because the Configuration (e.g., rotation) might be
3568 * wrong when we're not running, and if the activity comes back to what the configuration was
3569 * when we were paused, activity is not restarted.
Michael Jurka7607c2f2013-04-03 14:33:19 -07003570 *
3571 * Implementation of the method from LauncherModel.Callbacks.
3572 *
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003573 * @return {@code true} if we are currently paused. The caller might be able to skip some work
Michael Jurka7607c2f2013-04-03 14:33:19 -07003574 */
Rahul Chaturvedi799aa042015-06-01 21:26:41 -04003575 @Thunk boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003576 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003577 if (LOGD) Log.d(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02003578 if (deletePreviousRunnables) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07003579 while (mBindOnResumeCallbacks.remove(run)) {
Michael Jurkac402cd92013-05-20 15:49:32 +02003580 }
3581 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07003582 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07003583 return true;
3584 } else {
3585 return false;
3586 }
3587 }
3588
Michael Jurkac402cd92013-05-20 15:49:32 +02003589 private boolean waitUntilResume(Runnable run) {
3590 return waitUntilResume(run, false);
3591 }
3592
Michael Jurka1e2f4652013-07-08 18:03:46 -07003593 public void addOnResumeCallback(Runnable run) {
Michael Jurka54554252013-08-01 12:52:23 +02003594 mOnResumeCallbacks.add(run);
Michael Jurka1e2f4652013-07-08 18:03:46 -07003595 }
3596
Michael Jurka7607c2f2013-04-03 14:33:19 -07003597 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003598 * If the activity is currently paused, signal that we need to re-run the loader
3599 * in onResume.
3600 *
3601 * This needs to be called from incoming places where resources might have been loaded
3602 * while we are paused. That is becaues the Configuration might be wrong
3603 * when we're not running, and if it comes back to what it was when we
3604 * were paused, we are not restarted.
3605 *
3606 * Implementation of the method from LauncherModel.Callbacks.
3607 *
3608 * @return true if we are currently paused. The caller might be able to
3609 * skip some work in that case since we will come back again.
3610 */
3611 public boolean setLoadOnResume() {
3612 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003613 if (LOGD) Log.d(TAG, "setLoadOnResume");
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003614 mOnResumeNeedsLoad = true;
3615 return true;
3616 } else {
3617 return false;
3618 }
3619 }
3620
3621 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003622 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003623 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003624 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003625 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003626 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003627 } else {
3628 return SCREEN_COUNT / 2;
3629 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003630 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003631
Joe Onorato9c1289c2009-08-17 11:03:03 -04003632 /**
3633 * Refreshes the shortcuts shown on the workspace.
3634 *
3635 * Implementation of the method from LauncherModel.Callbacks.
3636 */
3637 public void startBinding() {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07003638 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08003639
Michael Jurka7607c2f2013-04-03 14:33:19 -07003640 // If we're starting binding all over again, clear any bind calls we'd postponed in
3641 // the past (see waitUntilResume) -- we don't need them since we're starting binding
3642 // from scratch again
Michael Jurka1e2f4652013-07-08 18:03:46 -07003643 mBindOnResumeCallbacks.clear();
Adam Cohendf035382011-04-11 17:22:04 -07003644
Winson Chungd64d1762013-08-20 14:37:16 -07003645 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07003646 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07003647 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07003648
Michael Jurka05bf644e2011-11-30 20:28:53 -08003649 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003650 if (mHotseat != null) {
3651 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003652 }
3653 }
3654
Adam Cohendcd297f2013-06-18 13:13:40 -07003655 @Override
3656 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Winson Chung64359a52013-07-08 17:17:08 -07003657 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07003658
Adam Cohen5084cba2013-09-03 12:01:16 -07003659 // If there are no screens, we need to have an empty screen
3660 if (orderedScreenIds.size() == 0) {
3661 mWorkspace.addExtraEmptyScreen();
3662 }
Winson Chung0e6a7132013-08-23 12:55:10 -07003663
3664 // Create the custom content page (this call updates mDefaultScreen which calls
Dave Hawkeya8881582013-09-17 15:55:33 -06003665 // setCurrentPage() so ensure that all pages are added before calling this).
Derek Prothrodadd9842014-01-17 13:43:50 -05003666 if (hasCustomContentToLeft()) {
3667 mWorkspace.createCustomContentContainer();
3668 populateCustomContentContainer();
Winson Chung0e6a7132013-08-23 12:55:10 -07003669 }
Winson Chung64359a52013-07-08 17:17:08 -07003670 }
3671
3672 @Override
3673 public void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Adam Cohendcd297f2013-06-18 13:13:40 -07003674 int count = orderedScreenIds.size();
3675 for (int i = 0; i < count; i++) {
Adam Cohen89bddfa2013-08-20 11:57:13 -07003676 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(orderedScreenIds.get(i));
Adam Cohendcd297f2013-06-18 13:13:40 -07003677 }
Adam Cohendcd297f2013-06-18 13:13:40 -07003678 }
3679
Adam Cohen39a06042013-07-19 14:30:12 -07003680 private boolean shouldShowWeightWatcher() {
3681 String spKey = LauncherAppState.getSharedPreferencesKey();
3682 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
Daniel Sandler6053b8002013-08-15 15:44:26 -07003683 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, SHOW_WEIGHT_WATCHER_DEFAULT);
Adam Cohen39a06042013-07-19 14:30:12 -07003684
3685 return show;
3686 }
3687
3688 private void toggleShowWeightWatcher() {
3689 String spKey = LauncherAppState.getSharedPreferencesKey();
3690 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
3691 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, true);
3692
3693 show = !show;
3694
3695 SharedPreferences.Editor editor = sp.edit();
3696 editor.putBoolean(SHOW_WEIGHT_WATCHER, show);
3697 editor.commit();
3698
3699 if (mWeightWatcher != null) {
3700 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
3701 }
3702 }
3703
Winson Chungd64d1762013-08-20 14:37:16 -07003704 public void bindAppsAdded(final ArrayList<Long> newScreens,
3705 final ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -07003706 final ArrayList<ItemInfo> addAnimated,
3707 final ArrayList<AppInfo> addedApps) {
Winson Chungd64d1762013-08-20 14:37:16 -07003708 Runnable r = new Runnable() {
3709 public void run() {
Winson Chungc58497e2013-09-03 17:48:37 -07003710 bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps);
Winson Chungd64d1762013-08-20 14:37:16 -07003711 }
3712 };
3713 if (waitUntilResume(r)) {
3714 return;
3715 }
3716
Winson Chungd64d1762013-08-20 14:37:16 -07003717 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08003718 if (newScreens != null) {
3719 bindAddScreens(newScreens);
3720 }
Winson Chungd64d1762013-08-20 14:37:16 -07003721
3722 // We add the items without animation on non-visible pages, and with
3723 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08003724 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003725 bindItems(addNotAnimated, 0,
3726 addNotAnimated.size(), false);
3727 }
Adam Cohen76a47a12014-02-05 11:47:43 -08003728 if (addAnimated != null && !addAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003729 bindItems(addAnimated, 0,
3730 addAnimated.size(), true);
3731 }
Winson Chungc58497e2013-09-03 17:48:37 -07003732
Winson Chung87412982013-10-03 18:34:14 -07003733 // Remove the extra empty screen
Adam Cohen689ff162014-05-08 17:27:56 -07003734 mWorkspace.removeExtraEmptyScreen(false, false);
Winson Chung87412982013-10-03 18:34:14 -07003735
Winson Chungb745afb2015-03-02 11:51:23 -08003736 if (addedApps != null && mAppsView != null) {
3737 mAppsView.addApps(addedApps);
Winson Chungc58497e2013-09-03 17:48:37 -07003738 }
Winson Chungd64d1762013-08-20 14:37:16 -07003739 }
3740
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003741 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003742 * Bind the items start-end from the list.
3743 *
3744 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003745 */
Winson Chung64359a52013-07-08 17:17:08 -07003746 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end,
3747 final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07003748 Runnable r = new Runnable() {
3749 public void run() {
3750 bindItems(shortcuts, start, end, forceAnimateIcons);
3751 }
3752 };
3753 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003754 return;
3755 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003756
Winson Chungf0c6ae02012-03-21 16:10:31 -07003757 // Get the list of added shortcuts and intersect them with the set of shortcuts here
Winson Chung64359a52013-07-08 17:17:08 -07003758 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
3759 final Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chung997a9232013-07-24 15:33:46 -07003760 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07003761 Workspace workspace = mWorkspace;
Winson Chung997a9232013-07-24 15:33:46 -07003762 long newShortcutsScreenId = -1;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003763 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003764 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003765
3766 // Short circuit if we are loading dock items for a configuration which has no dock
3767 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3768 mHotseat == null) {
3769 continue;
3770 }
3771
Sunny Goyal639e9062015-08-19 19:17:06 -07003772 final View view;
Joe Onorato9c1289c2009-08-17 11:03:03 -04003773 switch (item.itemType) {
3774 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3775 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07003776 ShortcutInfo info = (ShortcutInfo) item;
Sunny Goyal639e9062015-08-19 19:17:06 -07003777 view = createShortcut(info);
Adam Cohendcd297f2013-06-18 13:13:40 -07003778
Winson Chung64359a52013-07-08 17:17:08 -07003779 /*
3780 * TODO: FIX collision case
3781 */
Winson Chungce376632013-07-11 16:12:41 -07003782 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
3783 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
3784 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07003785 View v = cl.getChildAt(item.cellX, item.cellY);
3786 Object tag = v.getTag();
3787 String desc = "Collision while binding workspace item: " + item
3788 + ". Collides with " + tag;
3789 if (LauncherAppState.isDogfoodBuild()) {
3790 throw (new RuntimeException(desc));
3791 } else {
3792 Log.d(TAG, desc);
3793 }
Winson Chungce376632013-07-11 16:12:41 -07003794 }
Winson Chung64359a52013-07-08 17:17:08 -07003795 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003796 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003797 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Sunny Goyal639e9062015-08-19 19:17:06 -07003798 view = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003799 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003800 (FolderInfo) item, mIconCache);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003801 break;
Winson Chungc763c4e2013-07-19 13:49:06 -07003802 default:
3803 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04003804 }
Sunny Goyal639e9062015-08-19 19:17:06 -07003805
3806 workspace.addInScreenFromBind(view, item.container, item.screenId, item.cellX,
3807 item.cellY, 1, 1);
3808 if (animateIcons) {
3809 // Animate all the applications up now
3810 view.setAlpha(0f);
3811 view.setScaleX(0f);
3812 view.setScaleY(0f);
3813 bounceAnims.add(createNewAppBounceAnimation(view, i));
3814 newShortcutsScreenId = item.screenId;
3815 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003816 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003817
Winson Chung997a9232013-07-24 15:33:46 -07003818 if (animateIcons) {
3819 // Animate to the correct page
3820 if (newShortcutsScreenId > -1) {
3821 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Winson Chung94d67682013-09-25 16:29:40 -07003822 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId);
Winson Chungb2323832013-10-03 15:22:09 -07003823 final Runnable startBounceAnimRunnable = new Runnable() {
3824 public void run() {
3825 anim.playTogether(bounceAnims);
3826 anim.start();
3827 }
3828 };
Winson Chung997a9232013-07-24 15:33:46 -07003829 if (newShortcutsScreenId != currentScreenId) {
Winson Chung94d67682013-09-25 16:29:40 -07003830 // We post the animation slightly delayed to prevent slowdowns
3831 // when we are loading right after we return to launcher.
3832 mWorkspace.postDelayed(new Runnable() {
3833 public void run() {
Ian Parkinson94449152014-01-21 13:09:59 +00003834 if (mWorkspace != null) {
3835 mWorkspace.snapToPage(newScreenIndex);
3836 mWorkspace.postDelayed(startBounceAnimRunnable,
3837 NEW_APPS_ANIMATION_DELAY);
3838 }
Winson Chung94d67682013-09-25 16:29:40 -07003839 }
3840 }, NEW_APPS_PAGE_MOVE_DELAY);
Winson Chungb2323832013-10-03 15:22:09 -07003841 } else {
3842 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07003843 }
3844 }
Winson Chung64359a52013-07-08 17:17:08 -07003845 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003846 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003847 }
3848
Joe Onorato9c1289c2009-08-17 11:03:03 -04003849 /**
3850 * Implementation of the method from LauncherModel.Callbacks.
3851 */
Sunny Goyale2df0622015-04-24 11:27:00 -07003852 public void bindFolders(final LongArrayMap<FolderInfo> folders) {
Winson Chungd64d1762013-08-20 14:37:16 -07003853 Runnable r = new Runnable() {
3854 public void run() {
3855 bindFolders(folders);
3856 }
3857 };
3858 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003859 return;
3860 }
Sunny Goyale2df0622015-04-24 11:27:00 -07003861 sFolders = folders.clone();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003862 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003863
3864 /**
3865 * Add the views for a widget to the workspace.
3866 *
3867 * Implementation of the method from LauncherModel.Callbacks.
3868 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07003869 public void bindAppWidget(final LauncherAppWidgetInfo item) {
Winson Chungd64d1762013-08-20 14:37:16 -07003870 Runnable r = new Runnable() {
3871 public void run() {
3872 bindAppWidget(item);
3873 }
3874 };
3875 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003876 return;
3877 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003878
Daniel Sandler843e8602010-06-07 14:59:01 -04003879 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
3880 if (DEBUG_WIDGETS) {
3881 Log.d(TAG, "bindAppWidget: " + item);
3882 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003883 final Workspace workspace = mWorkspace;
3884
Adam Cohen59400422014-03-05 18:07:04 -08003885 LauncherAppWidgetProviderInfo appWidgetInfo =
Robin Lee26ace122015-03-16 19:41:43 +00003886 LauncherModel.getProviderInfo(this, item.providerName, item.user);
Adam Cohen59400422014-03-05 18:07:04 -08003887
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003888 if (!mIsSafeModeEnabled
3889 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY) == 0)
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003890 && (item.restoreStatus != LauncherAppWidgetInfo.RESTORE_COMPLETED)) {
3891
Sunny Goyalff572272014-07-23 13:58:07 -07003892 if (appWidgetInfo == null) {
3893 if (DEBUG_WIDGETS) {
3894 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3895 + " belongs to component " + item.providerName
3896 + ", as the povider is null");
3897 }
3898 LauncherModel.deleteItemFromDatabase(this, item);
3899 return;
3900 }
Sunny Goyalff572272014-07-23 13:58:07 -07003901
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003902 // If we do not have a valid id, try to bind an id.
3903 if ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_ID_NOT_VALID) != 0) {
3904 // Note: This assumes that the id remap broadcast is received before this step.
3905 // If that is not the case, the id remap will be ignored and user may see the
3906 // click to setup view.
3907 PendingAddWidgetInfo pendingInfo = new PendingAddWidgetInfo(this, appWidgetInfo, null);
3908 pendingInfo.spanX = item.spanX;
3909 pendingInfo.spanY = item.spanY;
3910 pendingInfo.minSpanX = item.minSpanX;
3911 pendingInfo.minSpanY = item.minSpanY;
3912 Bundle options = null;
3913 WidgetHostViewLoader.getDefaultOptionsForWidget(this, pendingInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07003914
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003915 int newWidgetId = mAppWidgetHost.allocateAppWidgetId();
3916 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
3917 newWidgetId, appWidgetInfo, options);
3918
3919 // TODO consider showing a permission dialog when the widget is clicked.
3920 if (!success) {
3921 mAppWidgetHost.deleteAppWidgetId(newWidgetId);
3922 if (DEBUG_WIDGETS) {
3923 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3924 + " belongs to component " + item.providerName
3925 + ", as the launcher is unable to bing a new widget id");
3926 }
3927 LauncherModel.deleteItemFromDatabase(this, item);
3928 return;
Sunny Goyalff572272014-07-23 13:58:07 -07003929 }
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003930
3931 item.appWidgetId = newWidgetId;
3932
3933 // If the widget has a configure activity, it is still needs to set it up, otherwise
3934 // the widget is ready to go.
3935 item.restoreStatus = (appWidgetInfo.configure == null)
3936 ? LauncherAppWidgetInfo.RESTORE_COMPLETED
3937 : LauncherAppWidgetInfo.FLAG_UI_NOT_READY;
3938
3939 LauncherModel.updateItemInDatabase(this, item);
3940 } else if (((item.restoreStatus & LauncherAppWidgetInfo.FLAG_UI_NOT_READY) != 0)
3941 && (appWidgetInfo.configure == null)) {
3942 // If the ID is already valid, verify if we need to configure or not.
3943 item.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
3944 LauncherModel.updateItemInDatabase(this, item);
Sunny Goyalff572272014-07-23 13:58:07 -07003945 }
Sunny Goyalff572272014-07-23 13:58:07 -07003946 }
3947
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003948 if (!mIsSafeModeEnabled && item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
Sunny Goyal651077b2014-06-30 14:15:31 -07003949 final int appWidgetId = item.appWidgetId;
Sunny Goyal651077b2014-06-30 14:15:31 -07003950 if (DEBUG_WIDGETS) {
Adam Cohen59400422014-03-05 18:07:04 -08003951 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component "
3952 + appWidgetInfo.provider);
Sunny Goyal651077b2014-06-30 14:15:31 -07003953 }
Daniel Sandler843e8602010-06-07 14:59:01 -04003954
Sunny Goyal651077b2014-06-30 14:15:31 -07003955 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
Sunny Goyal233ee962015-08-03 13:05:01 -07003956 item.minSpanX = appWidgetInfo.minSpanX;
3957 item.minSpanY = appWidgetInfo.minSpanY;
Sunny Goyal651077b2014-06-30 14:15:31 -07003958 } else {
3959 appWidgetInfo = null;
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003960 PendingAppWidgetHostView view = new PendingAppWidgetHostView(this, item,
3961 mIsSafeModeEnabled);
Sunny Goyal0fc1be12014-08-11 17:05:23 -07003962 view.updateIcon(mIconCache);
3963 item.hostView = view;
Sunny Goyal651077b2014-06-30 14:15:31 -07003964 item.hostView.updateAppWidget(null);
Sunny Goyalff572272014-07-23 13:58:07 -07003965 item.hostView.setOnClickListener(this);
Sunny Goyal651077b2014-06-30 14:15:31 -07003966 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003967
Joe Onorato9c1289c2009-08-17 11:03:03 -04003968 item.hostView.setTag(item);
Winson Chung211bac32012-05-15 13:43:57 -07003969 item.onBindAppWidget(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003970
Adam Cohendcd297f2013-06-18 13:13:40 -07003971 workspace.addInScreen(item.hostView, item.container, item.screenId, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04003972 item.cellY, item.spanX, item.spanY, false);
Adam Cohen59400422014-03-05 18:07:04 -08003973 if (!item.isCustomWidget()) {
3974 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
3975 }
Adam Cohended9f8d2010-11-03 13:25:16 -07003976
Joe Onorato9c1289c2009-08-17 11:03:03 -04003977 workspace.requestLayout();
3978
Daniel Sandler843e8602010-06-07 14:59:01 -04003979 if (DEBUG_WIDGETS) {
3980 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
3981 + (SystemClock.uptimeMillis()-start) + "ms");
3982 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003983 }
3984
Sunny Goyalff572272014-07-23 13:58:07 -07003985 /**
3986 * Restores a pending widget.
3987 *
3988 * @param appWidgetId The app widget id
3989 * @param cellInfo The position on screen where to create the widget.
3990 */
3991 private void completeRestoreAppWidget(final int appWidgetId) {
3992 LauncherAppWidgetHostView view = mWorkspace.getWidgetForAppWidgetId(appWidgetId);
3993 if ((view == null) || !(view instanceof PendingAppWidgetHostView)) {
3994 Log.e(TAG, "Widget update called, when the widget no longer exists.");
3995 return;
3996 }
3997
Sunny Goyal0fc1be12014-08-11 17:05:23 -07003998 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) view.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07003999 info.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
4000
4001 mWorkspace.reinflateWidgetsIfNecessary();
4002 LauncherModel.updateItemInDatabase(this, info);
4003 }
4004
Adam Cohen1462de32012-07-24 22:34:36 -07004005 public void onPageBoundSynchronously(int page) {
4006 mSynchronouslyBoundPages.add(page);
4007 }
4008
Joe Onorato9c1289c2009-08-17 11:03:03 -04004009 /**
4010 * Callback saying that there aren't any more items to bind.
4011 *
4012 * Implementation of the method from LauncherModel.Callbacks.
4013 */
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004014 public void finishBindingItems() {
Winson Chungd64d1762013-08-20 14:37:16 -07004015 Runnable r = new Runnable() {
4016 public void run() {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004017 finishBindingItems();
Winson Chungd64d1762013-08-20 14:37:16 -07004018 }
4019 };
4020 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004021 return;
4022 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004023 if (mSavedState != null) {
4024 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07004025 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004026 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004027 mSavedState = null;
4028 }
4029
Adam Cohen1462de32012-07-24 22:34:36 -07004030 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004031
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004032 setWorkspaceLoading(false);
Adam Cohen3ed316a2014-07-23 18:21:20 -07004033 sendLoadingCompleteBroadcastIfNecessary();
Adam Cohendb364c32014-05-20 14:23:40 -07004034
4035 // If we received the result of any pending adds while the loader was running (e.g. the
4036 // widget configuration forced an orientation change), process them now.
4037 if (sPendingAddItem != null) {
4038 final long screenId = completeAdd(sPendingAddItem);
4039
4040 // TODO: this moves the user to the page where the pending item was added. Ideally,
4041 // the screen would be guaranteed to exist after bind, and the page would be set through
4042 // the workspace restore process.
4043 mWorkspace.post(new Runnable() {
4044 @Override
4045 public void run() {
4046 mWorkspace.snapToScreenId(screenId);
4047 }
4048 });
4049 sPendingAddItem = null;
4050 }
4051
Sunny Goyal756adbc2015-04-16 15:20:51 -07004052 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
Adam Cohen9211d422014-10-07 18:14:53 -07004053
4054 if (mLauncherCallbacks != null) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004055 mLauncherCallbacks.finishBindingItems(false);
Adam Cohen9211d422014-10-07 18:14:53 -07004056 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004057 }
4058
Adam Cohen3ed316a2014-07-23 18:21:20 -07004059 private void sendLoadingCompleteBroadcastIfNecessary() {
4060 if (!mSharedPrefs.getBoolean(FIRST_LOAD_COMPLETE, false)) {
4061 String permission =
4062 getResources().getString(R.string.receive_first_load_broadcast_permission);
4063 Intent intent = new Intent(ACTION_FIRST_LOAD_COMPLETE);
4064 sendBroadcast(intent, permission);
4065 SharedPreferences.Editor editor = mSharedPrefs.edit();
4066 editor.putBoolean(FIRST_LOAD_COMPLETE, true);
4067 editor.apply();
4068 }
4069 }
4070
Winson Chunga0b7e862013-09-05 16:03:15 -07004071 public boolean isAllAppsButtonRank(int rank) {
4072 if (mHotseat != null) {
4073 return mHotseat.isAllAppsButtonRank(rank);
4074 }
4075 return false;
4076 }
4077
Winson Chunga2413752012-04-03 14:22:34 -07004078 private boolean canRunNewAppsAnimation() {
4079 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
Sunny Goyal639e9062015-08-19 19:17:06 -07004080 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000)
4081 && (mClings == null || !mClings.isVisible());
Winson Chunga2413752012-04-03 14:22:34 -07004082 }
4083
Winson Chungc9168342013-06-26 14:54:55 -07004084 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
4085 ValueAnimator bounceAnim = LauncherAnimUtils.ofPropertyValuesHolder(v,
4086 PropertyValuesHolder.ofFloat("alpha", 1f),
4087 PropertyValuesHolder.ofFloat("scaleX", 1f),
4088 PropertyValuesHolder.ofFloat("scaleY", 1f));
4089 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
4090 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
Sunny Goyal5a1f53b2015-05-27 10:24:24 -07004091 bounceAnim.setInterpolator(new OvershootInterpolator(BOUNCE_ANIMATION_TENSION));
Winson Chungc9168342013-06-26 14:54:55 -07004092 return bounceAnim;
4093 }
4094
Adam Cohen27772732013-11-11 14:00:56 +00004095 public boolean useVerticalBarLayout() {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07004096 return mDeviceProfile.isVerticalBarLayout();
Adam Cohen27772732013-11-11 14:00:56 +00004097 }
4098
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004099 protected Rect getSearchBarBounds() {
Sunny Goyalc6205602015-05-21 20:46:33 -07004100 return mDeviceProfile.getSearchBarBounds(Utilities.isRtl(getResources()));
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004101 }
4102
Winson Chung88fa7412015-08-03 14:25:28 -07004103 public void bindSearchProviderChanged() {
Sunny Goyal594d76d2014-11-06 10:12:54 -08004104 if (mSearchDropTargetBar == null) {
4105 return;
Winson Chungadf0c182012-08-23 14:59:07 -07004106 }
Sunny Goyal594d76d2014-11-06 10:12:54 -08004107 if (mQsb != null) {
4108 mSearchDropTargetBar.removeView(mQsb);
4109 mQsb = null;
4110 }
Adam Cohenb0df1b02015-03-18 22:21:40 -07004111 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004112 }
4113
Amith Yamasani6d7fe502010-11-16 09:05:07 -08004114 /**
Winson Chungbb785c62015-05-05 10:05:08 -07004115 * A runnable that we can dequeue and re-enqueue when all applications are bound (to prevent
4116 * multiple calls to bind the same list.)
4117 */
4118 @Thunk ArrayList<AppInfo> mTmpAppsList;
4119 private Runnable mBindAllApplicationsRunnable = new Runnable() {
4120 public void run() {
4121 bindAllApplications(mTmpAppsList);
4122 mTmpAppsList = null;
4123 }
4124 };
4125
4126 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004127 * Add the icons for all apps.
4128 *
4129 * Implementation of the method from LauncherModel.Callbacks.
4130 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004131 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Winson Chungbb785c62015-05-05 10:05:08 -07004132 if (waitUntilResume(mBindAllApplicationsRunnable, true)) {
4133 mTmpAppsList = apps;
4134 return;
4135 }
4136
Winson Chungb745afb2015-03-02 11:51:23 -08004137 if (mAppsView != null) {
4138 mAppsView.setApps(apps);
4139 }
Adam Cohen9211d422014-10-07 18:14:53 -07004140 if (mLauncherCallbacks != null) {
4141 mLauncherCallbacks.bindAllApplications(apps);
4142 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004143 }
4144
4145 /**
4146 * A package was updated.
4147 *
4148 * Implementation of the method from LauncherModel.Callbacks.
4149 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004150 public void bindAppsUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004151 Runnable r = new Runnable() {
4152 public void run() {
4153 bindAppsUpdated(apps);
4154 }
4155 };
4156 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004157 return;
4158 }
4159
Winson Chungb745afb2015-03-02 11:51:23 -08004160 if (mAppsView != null) {
4161 mAppsView.updateApps(apps);
Winson Chungc58497e2013-09-03 17:48:37 -07004162 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004163 }
4164
Sunny Goyal4390ace2014-10-13 11:33:11 -07004165 @Override
4166 public void bindWidgetsRestored(final ArrayList<LauncherAppWidgetInfo> widgets) {
4167 Runnable r = new Runnable() {
4168 public void run() {
4169 bindWidgetsRestored(widgets);
4170 }
4171 };
4172 if (waitUntilResume(r)) {
4173 return;
4174 }
4175 mWorkspace.widgetsRestored(widgets);
4176 }
4177
Joe Onorato9c1289c2009-08-17 11:03:03 -04004178 /**
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004179 * Some shortcuts were updated in the background.
4180 *
4181 * Implementation of the method from LauncherModel.Callbacks.
4182 */
Sunny Goyal4390ace2014-10-13 11:33:11 -07004183 @Override
4184 public void bindShortcutsChanged(final ArrayList<ShortcutInfo> updated,
4185 final ArrayList<ShortcutInfo> removed, final UserHandleCompat user) {
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004186 Runnable r = new Runnable() {
4187 public void run() {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004188 bindShortcutsChanged(updated, removed, user);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004189 }
4190 };
4191 if (waitUntilResume(r)) {
4192 return;
4193 }
4194
Sunny Goyal4390ace2014-10-13 11:33:11 -07004195 if (!updated.isEmpty()) {
4196 mWorkspace.updateShortcuts(updated);
4197 }
4198
4199 if (!removed.isEmpty()) {
4200 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4201 for (ShortcutInfo si : removed) {
4202 removedComponents.add(si.getTargetComponent());
4203 }
4204 mWorkspace.removeItemsByComponentName(removedComponents, user);
4205 // Notify the drag controller
4206 mDragController.onAppsRemoved(new ArrayList<String>(), removedComponents);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004207 }
4208 }
4209
4210 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004211 * Update the state of a package, typically related to install state.
4212 *
4213 * Implementation of the method from LauncherModel.Callbacks.
4214 */
Sunny Goyale755d462014-07-22 13:48:29 -07004215 @Override
Sunny Goyal756adbc2015-04-16 15:20:51 -07004216 public void bindRestoreItemsChange(final HashSet<ItemInfo> updates) {
4217 Runnable r = new Runnable() {
4218 public void run() {
4219 bindRestoreItemsChange(updates);
4220 }
4221 };
4222 if (waitUntilResume(r)) {
4223 return;
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004224 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004225
Sunny Goyal756adbc2015-04-16 15:20:51 -07004226 mWorkspace.updateRestoreItems(updates);
Sunny Goyala22666f2014-09-18 13:25:15 -07004227 }
4228
4229 /**
Winson Chung83892cc2013-05-01 16:53:33 -07004230 * A package was uninstalled. We take both the super set of packageNames
4231 * in addition to specific applications to remove, the reason being that
4232 * this can be called when a package is updated as well. In that scenario,
4233 * we only remove specific components from the workspace, where as
4234 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004235 *
Sunny Goyal1a745e82014-10-02 15:58:31 -07004236 * @param reason if non-zero, the icons are not permanently removed, rather marked as disabled.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004237 * Implementation of the method from LauncherModel.Callbacks.
4238 */
Sunny Goyal1a745e82014-10-02 15:58:31 -07004239 @Override
Winson Chung83892cc2013-05-01 16:53:33 -07004240 public void bindComponentsRemoved(final ArrayList<String> packageNames,
Sunny Goyal1a745e82014-10-02 15:58:31 -07004241 final ArrayList<AppInfo> appInfos, final UserHandleCompat user, final int reason) {
Winson Chungd64d1762013-08-20 14:37:16 -07004242 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004243 public void run() {
Sunny Goyal1a745e82014-10-02 15:58:31 -07004244 bindComponentsRemoved(packageNames, appInfos, user, reason);
Winson Chung83892cc2013-05-01 16:53:33 -07004245 }
Winson Chungd64d1762013-08-20 14:37:16 -07004246 };
4247 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07004248 return;
4249 }
4250
Sunny Goyal1a745e82014-10-02 15:58:31 -07004251 if (reason == 0) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004252 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4253 for (AppInfo info : appInfos) {
4254 removedComponents.add(info.componentName);
4255 }
Sunny Goyal1a745e82014-10-02 15:58:31 -07004256 if (!packageNames.isEmpty()) {
4257 mWorkspace.removeItemsByPackageName(packageNames, user);
4258 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004259 if (!removedComponents.isEmpty()) {
4260 mWorkspace.removeItemsByComponentName(removedComponents, user);
Sunny Goyal1a745e82014-10-02 15:58:31 -07004261 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004262 // Notify the drag controller
4263 mDragController.onAppsRemoved(packageNames, removedComponents);
4264
Sunny Goyal1a745e82014-10-02 15:58:31 -07004265 } else {
4266 mWorkspace.disableShortcutsByPackageName(packageNames, user, reason);
Joe Onorato36115782010-06-17 13:28:48 -04004267 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07004268
Winson Chungdf95eb12013-10-16 14:57:07 -07004269 // Update AllApps
Winson Chungb745afb2015-03-02 11:51:23 -08004270 if (mAppsView != null) {
4271 mAppsView.removeApps(appInfos);
Winson Chungc58497e2013-09-03 17:48:37 -07004272 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004273 }
Joe Onoratobe386092009-11-17 17:32:16 -08004274
Michael Jurkac402cd92013-05-20 15:49:32 +02004275 private Runnable mBindPackagesUpdatedRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004276 public void run() {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004277 bindAllPackages(mWidgetsModel);
Winson Chung83892cc2013-05-01 16:53:33 -07004278 }
Michael Jurkac402cd92013-05-20 15:49:32 +02004279 };
Hyunyoung Song3f471442015-04-08 19:01:34 -07004280
Hyunyoung Song8821ca92015-05-04 16:28:20 -07004281 @Override
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004282 public void bindAllPackages(final WidgetsModel model) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004283 if (waitUntilResume(mBindPackagesUpdatedRunnable, true)) {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004284 mWidgetsModel = model;
Winson Chung83892cc2013-05-01 16:53:33 -07004285 return;
4286 }
4287
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004288 if (mWidgetsView != null && model != null) {
4289 mWidgetsView.addWidgets(model);
4290 mWidgetsModel = null;
Winson Chung785d2eb2011-04-14 16:08:02 -07004291 }
Winson Chung80baf5a2010-08-09 16:03:15 -07004292 }
4293
Winson Chung400438b2011-01-16 17:53:48 -08004294 private int mapConfigurationOriActivityInfoOri(int configOri) {
4295 final Display d = getWindowManager().getDefaultDisplay();
4296 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
4297 switch (d.getRotation()) {
4298 case Surface.ROTATION_0:
4299 case Surface.ROTATION_180:
4300 // We are currently in the same basic orientation as the natural orientation
4301 naturalOri = configOri;
4302 break;
4303 case Surface.ROTATION_90:
4304 case Surface.ROTATION_270:
4305 // We are currently in the other basic orientation to the natural orientation
4306 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
4307 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
4308 break;
4309 }
4310
4311 int[] oriMap = {
4312 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
4313 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
4314 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
4315 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
4316 };
4317 // Since the map starts at portrait, we need to offset if this device's natural orientation
4318 // is landscape.
4319 int indexOffset = 0;
4320 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
4321 indexOffset = 1;
4322 }
4323 return oriMap[(d.getRotation() + indexOffset) % 4];
4324 }
Adam Cohen446e9402011-09-15 18:21:21 -07004325
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004326 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR2)
Winson Chung4b919f82012-05-01 10:44:08 -07004327 public void lockScreenOrientation() {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004328 if (mRotationEnabled) {
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004329 if (Utilities.ATLEAST_JB_MR2) {
4330 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LOCKED);
4331 } else {
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004332 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
4333 .getConfiguration().orientation));
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004334 }
Winson Chung4b919f82012-05-01 10:44:08 -07004335 }
4336 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004337
Winson Chung4b919f82012-05-01 10:44:08 -07004338 public void unlockScreenOrientation(boolean immediate) {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004339 if (mRotationEnabled) {
Winson Chung4b919f82012-05-01 10:44:08 -07004340 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07004341 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07004342 } else {
4343 mHandler.postDelayed(new Runnable() {
4344 public void run() {
4345 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4346 }
4347 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07004348 }
Winson Chung4b919f82012-05-01 10:44:08 -07004349 }
Winson Chung400438b2011-01-16 17:53:48 -08004350 }
4351
Winson Chunge43a1e72014-01-15 10:33:02 -08004352 protected boolean isLauncherPreinstalled() {
Adam Cohen9211d422014-10-07 18:14:53 -07004353 if (mLauncherCallbacks != null) {
4354 return mLauncherCallbacks.isLauncherPreinstalled();
4355 }
Winson Chunge43a1e72014-01-15 10:33:02 -08004356 PackageManager pm = getPackageManager();
4357 try {
4358 ApplicationInfo ai = pm.getApplicationInfo(getComponentName().getPackageName(), 0);
4359 if ((ai.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
4360 return true;
4361 } else {
4362 return false;
4363 }
4364 } catch (NameNotFoundException e) {
4365 e.printStackTrace();
4366 return false;
4367 }
4368 }
4369
Adam Cohenea90f832014-05-21 15:03:34 -07004370 /**
4371 * This method indicates whether or not we should suggest default wallpaper dimensions
4372 * when our wallpaper cropper was not yet used to set a wallpaper.
4373 */
4374 protected boolean overrideWallpaperDimensions() {
Adam Cohen9211d422014-10-07 18:14:53 -07004375 if (mLauncherCallbacks != null) {
4376 return mLauncherCallbacks.overrideWallpaperDimensions();
4377 }
Adam Cohenea90f832014-05-21 15:03:34 -07004378 return true;
4379 }
4380
Adam Cohen432609a2014-03-13 17:03:22 -07004381 /**
4382 * To be overridden by subclasses to indicate that there is an activity to launch
4383 * before showing the standard launcher experience.
4384 */
4385 protected boolean hasFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004386 if (mLauncherCallbacks != null) {
4387 return mLauncherCallbacks.hasFirstRunActivity();
4388 }
Adam Cohen432609a2014-03-13 17:03:22 -07004389 return false;
4390 }
4391
4392 /**
4393 * To be overridden by subclasses to launch any first run activity
4394 */
4395 protected Intent getFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004396 if (mLauncherCallbacks != null) {
4397 return mLauncherCallbacks.getFirstRunActivity();
4398 }
Adam Cohen432609a2014-03-13 17:03:22 -07004399 return null;
4400 }
4401
Winson Chunga6945242014-01-08 14:04:34 -08004402 private boolean shouldRunFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004403 return !ActivityManager.isRunningInTestHarness() &&
4404 !mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
Winson Chunga6945242014-01-08 14:04:34 -08004405 }
4406
Adam Cohen4a9423d2014-03-28 14:22:31 -07004407 protected boolean hasRunFirstRunActivity() {
4408 return mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
4409 }
4410
Adam Cohen432609a2014-03-13 17:03:22 -07004411 public boolean showFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004412 if (shouldRunFirstRunActivity() &&
4413 hasFirstRunActivity()) {
Winson Chunga6945242014-01-08 14:04:34 -08004414 Intent firstRunIntent = getFirstRunActivity();
4415 if (firstRunIntent != null) {
4416 startActivity(firstRunIntent);
4417 markFirstRunActivityShown();
Adam Cohen432609a2014-03-13 17:03:22 -07004418 return true;
Winson Chunga6945242014-01-08 14:04:34 -08004419 }
4420 }
Adam Cohen432609a2014-03-13 17:03:22 -07004421 return false;
Winson Chunga6945242014-01-08 14:04:34 -08004422 }
4423
4424 private void markFirstRunActivityShown() {
4425 SharedPreferences.Editor editor = mSharedPrefs.edit();
4426 editor.putBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, true);
4427 editor.apply();
4428 }
4429
Adam Cohen432609a2014-03-13 17:03:22 -07004430 /**
4431 * To be overridden by subclasses to indicate that there is an in-activity full-screen intro
4432 * screen that must be displayed and dismissed.
4433 */
4434 protected boolean hasDismissableIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004435 if (mLauncherCallbacks != null) {
4436 return mLauncherCallbacks.hasDismissableIntroScreen();
4437 }
Adam Cohen432609a2014-03-13 17:03:22 -07004438 return false;
4439 }
4440
4441 /**
4442 * Full screen intro screen to be shown and dismissed before the launcher can be used.
4443 */
4444 protected View getIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004445 if (mLauncherCallbacks != null) {
4446 return mLauncherCallbacks.getIntroScreen();
4447 }
Adam Cohen432609a2014-03-13 17:03:22 -07004448 return null;
4449 }
4450
4451 /**
4452 * To be overriden by subclasses to indicate whether the in-activity intro screen has been
4453 * dismissed. This method is ignored if #hasDismissableIntroScreen returns false.
4454 */
4455 private boolean shouldShowIntroScreen() {
4456 return hasDismissableIntroScreen() &&
4457 !mSharedPrefs.getBoolean(INTRO_SCREEN_DISMISSED, false);
4458 }
4459
4460 protected void showIntroScreen() {
4461 View introScreen = getIntroScreen();
4462 changeWallpaperVisiblity(false);
4463 if (introScreen != null) {
4464 mDragLayer.showOverlayView(introScreen);
4465 }
Adam Cohenc3e12c72014-10-31 16:15:36 -07004466 if (mLauncherOverlayContainer != null) {
4467 mLauncherOverlayContainer.setVisibility(View.INVISIBLE);
4468 }
Adam Cohen432609a2014-03-13 17:03:22 -07004469 }
4470
4471 public void dismissIntroScreen() {
4472 markIntroScreenDismissed();
4473 if (showFirstRunActivity()) {
4474 // We delay hiding the intro view until the first run activity is showing. This
4475 // avoids a blip.
4476 mWorkspace.postDelayed(new Runnable() {
4477 @Override
4478 public void run() {
4479 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004480 if (mLauncherOverlayContainer != null) {
4481 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4482 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004483 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004484 }
4485 }, ACTIVITY_START_DELAY);
4486 } else {
4487 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004488 if (mLauncherOverlayContainer != null) {
4489 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4490 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004491 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004492 }
4493 changeWallpaperVisiblity(true);
4494 }
4495
4496 private void markIntroScreenDismissed() {
4497 SharedPreferences.Editor editor = mSharedPrefs.edit();
4498 editor.putBoolean(INTRO_SCREEN_DISMISSED, true);
4499 editor.apply();
4500 }
4501
Adam Cohen091440a2015-03-18 14:16:05 -07004502 @Thunk void showFirstRunClings() {
Sunny Goyal88d60f12014-09-08 03:47:29 -07004503 // The two first run cling paths are mutually exclusive, if the launcher is preinstalled
4504 // on the device, then we always show the first run cling experience (or if there is no
4505 // launcher2). Otherwise, we prompt the user upon started for migration
4506 LauncherClings launcherClings = new LauncherClings(this);
4507 if (launcherClings.shouldShowFirstRunOrMigrationClings()) {
Sunny Goyal639e9062015-08-19 19:17:06 -07004508 mClings = launcherClings;
Sunny Goyal88d60f12014-09-08 03:47:29 -07004509 if (mModel.canMigrateFromOldLauncherDb(this)) {
4510 launcherClings.showMigrationCling();
4511 } else {
Sunny Goyalaf0628f2014-09-19 10:14:48 -07004512 launcherClings.showLongPressCling(true);
Sunny Goyal88d60f12014-09-08 03:47:29 -07004513 }
4514 }
4515 }
4516
Winson Chunga6945242014-01-08 14:04:34 -08004517 void showWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004518 if (mWorkspace != null) mWorkspace.setAlpha(1f);
4519 if (mHotseat != null) mHotseat.setAlpha(1f);
4520 if (mPageIndicators != null) mPageIndicators.setAlpha(1f);
Winson Chung006ee262015-08-03 14:40:11 -07004521 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4522 SearchDropTargetBar.State.SEARCH_BAR, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004523 }
4524
4525 void hideWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004526 if (mWorkspace != null) mWorkspace.setAlpha(0f);
4527 if (mHotseat != null) mHotseat.setAlpha(0f);
4528 if (mPageIndicators != null) mPageIndicators.setAlpha(0f);
Winson Chung006ee262015-08-03 14:40:11 -07004529 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4530 SearchDropTargetBar.State.INVISIBLE, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004531 }
4532
Winson Chung5ffd51d2015-06-25 11:36:50 -07004533 // TODO: These method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004534 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Mathew Inwood72fbec12013-11-19 15:45:07 +00004535 public ItemInfo createAppDragInfo(Intent appLaunchIntent) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004536 // Called from search suggestion
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004537 UserHandleCompat user = null;
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004538 if (Utilities.ATLEAST_LOLLIPOP) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004539 UserHandle userHandle = appLaunchIntent.getParcelableExtra(Intent.EXTRA_USER);
4540 if (userHandle != null) {
4541 user = UserHandleCompat.fromUser(userHandle);
4542 }
4543 }
4544 return createAppDragInfo(appLaunchIntent, user);
Winson Chung5ffd51d2015-06-25 11:36:50 -07004545 }
4546
4547 // TODO: This method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004548 public ItemInfo createAppDragInfo(Intent intent, UserHandleCompat user) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004549 if (user == null) {
4550 user = UserHandleCompat.myUserHandle();
4551 }
4552
4553 // Called from search suggestion, add the profile extra to the intent to ensure that we
4554 // can launch it correctly
Kenny Guyed131872014-04-30 03:02:21 +01004555 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004556 LauncherActivityInfoCompat activityInfo = launcherApps.resolveActivity(intent, user);
Kenny Guyed131872014-04-30 03:02:21 +01004557 if (activityInfo == null) {
Mathew Inwood72fbec12013-11-19 15:45:07 +00004558 return null;
4559 }
Winson Chung5ffd51d2015-06-25 11:36:50 -07004560 return new AppInfo(this, activityInfo, user, mIconCache);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004561 }
4562
Winson Chung5ffd51d2015-06-25 11:36:50 -07004563 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004564 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4565 Bitmap icon) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004566 return new ShortcutInfo(shortcutIntent, caption, caption, icon,
Kenny Guyed131872014-04-30 03:02:21 +01004567 UserHandleCompat.myUserHandle());
4568 }
4569
Winson Chung5ffd51d2015-06-25 11:36:50 -07004570 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004571 public void startDrag(View dragView, ItemInfo dragInfo, DragSource source) {
4572 dragView.setTag(dragInfo);
Winson Chungbabb53e2014-04-14 17:12:49 -07004573 mWorkspace.onExternalDragStartedWithItem(dragView);
4574 mWorkspace.beginExternalDragShared(dragView, source);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004575 }
4576
Winson Chung5ffd51d2015-06-25 11:36:50 -07004577 protected void moveWorkspaceToDefaultScreen() {
4578 mWorkspace.moveToDefaultScreen(false);
4579 }
4580
Anjali Koppalf5d29132014-02-28 13:33:27 -08004581 @Override
4582 public void onPageSwitch(View newPage, int newPageIndex) {
Adam Cohen9211d422014-10-07 18:14:53 -07004583 if (mLauncherCallbacks != null) {
4584 mLauncherCallbacks.onPageSwitch(newPage, newPageIndex);
4585 }
Anjali Koppalf5d29132014-02-28 13:33:27 -08004586 }
4587
Winson Chung80baf5a2010-08-09 16:03:15 -07004588 /**
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004589 * Returns a FastBitmapDrawable with the icon, accurately sized.
4590 */
4591 public FastBitmapDrawable createIconDrawable(Bitmap icon) {
4592 FastBitmapDrawable d = new FastBitmapDrawable(icon);
4593 d.setFilterBitmap(true);
4594 resizeIconDrawable(d);
4595 return d;
4596 }
4597
4598 /**
4599 * Resizes an icon drawable to the correct icon size.
4600 */
4601 public void resizeIconDrawable(Drawable icon) {
4602 icon.setBounds(0, 0, mDeviceProfile.iconSizePx, mDeviceProfile.iconSizePx);
4603 }
4604
4605 /**
Joe Onoratobe386092009-11-17 17:32:16 -08004606 * Prints out out state for debugging.
4607 */
4608 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04004609 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08004610 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08004611 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
4612 Log.d(TAG, "mRestoring=" + mRestoring);
4613 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
4614 Log.d(TAG, "mSavedInstanceState=" + mSavedInstanceState);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004615 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08004616 mModel.dumpState();
Hyunyoung Song3f471442015-04-08 19:01:34 -07004617 // TODO(hyunyoungs): add mWidgetsView.dumpState(); or mWidgetsModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07004618
Daniel Sandler325dc232013-06-05 22:57:57 -04004619 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08004620 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004621
4622 @Override
4623 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
4624 super.dump(prefix, fd, writer, args);
Adam Cohen4caf2982013-08-20 18:54:31 -07004625 synchronized (sDumpLogs) {
4626 writer.println(" ");
4627 writer.println("Debug logs: ");
4628 for (int i = 0; i < sDumpLogs.size(); i++) {
4629 writer.println(" " + sDumpLogs.get(i));
4630 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004631 }
Adam Cohen9211d422014-10-07 18:14:53 -07004632 if (mLauncherCallbacks != null) {
4633 mLauncherCallbacks.dump(prefix, fd, writer, args);
4634 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004635 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004636
4637 public static void dumpDebugLogsToConsole() {
Winson Chungede41292013-09-19 16:27:36 -07004638 if (DEBUG_DUMP_LOG) {
4639 synchronized (sDumpLogs) {
4640 Log.d(TAG, "");
4641 Log.d(TAG, "*********************");
4642 Log.d(TAG, "Launcher debug logs: ");
4643 for (int i = 0; i < sDumpLogs.size(); i++) {
4644 Log.d(TAG, " " + sDumpLogs.get(i));
4645 }
4646 Log.d(TAG, "*********************");
4647 Log.d(TAG, "");
Adam Cohen4caf2982013-08-20 18:54:31 -07004648 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004649 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004650 }
4651
4652 public static void addDumpLog(String tag, String log, boolean debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004653 addDumpLog(tag, log, null, debugLog);
4654 }
4655
4656 public static void addDumpLog(String tag, String log, Exception e, boolean debugLog) {
Adam Cohen4caf2982013-08-20 18:54:31 -07004657 if (debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004658 if (e != null) {
4659 Log.d(tag, log, e);
4660 } else {
4661 Log.d(tag, log);
4662 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004663 }
Winson Chungede41292013-09-19 16:27:36 -07004664 if (DEBUG_DUMP_LOG) {
4665 sDateStamp.setTime(System.currentTimeMillis());
4666 synchronized (sDumpLogs) {
Dan Sandler295ae182013-12-10 16:05:47 -05004667 sDumpLogs.add(sDateFormat.format(sDateStamp) + ": " + tag + ", " + log
4668 + (e == null ? "" : (", Exception: " + e)));
Adam Cohen4caf2982013-08-20 18:54:31 -07004669 }
Winson Chungede41292013-09-19 16:27:36 -07004670 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004671 }
4672
Adam Cohen59400422014-03-05 18:07:04 -08004673 public static CustomAppWidget getCustomAppWidget(String name) {
4674 return sCustomAppWidgets.get(name);
4675 }
4676
4677 public static HashMap<String, CustomAppWidget> getCustomAppWidgets() {
4678 return sCustomAppWidgets;
4679 }
4680
Winson Chungede41292013-09-19 16:27:36 -07004681 public void dumpLogsToLocalData() {
4682 if (DEBUG_DUMP_LOG) {
Michael Jurka43467462013-11-14 12:03:58 +01004683 new AsyncTask<Void, Void, Void>() {
4684 public Void doInBackground(Void ... args) {
Winson Chungede41292013-09-19 16:27:36 -07004685 boolean success = false;
4686 sDateStamp.setTime(sRunStart);
4687 String FILENAME = sDateStamp.getMonth() + "-"
4688 + sDateStamp.getDay() + "_"
4689 + sDateStamp.getHours() + "-"
4690 + sDateStamp.getMinutes() + "_"
4691 + sDateStamp.getSeconds() + ".txt";
4692
4693 FileOutputStream fos = null;
4694 File outFile = null;
4695 try {
4696 outFile = new File(getFilesDir(), FILENAME);
4697 outFile.createNewFile();
4698 fos = new FileOutputStream(outFile);
4699 } catch (Exception e) {
4700 e.printStackTrace();
4701 }
4702 if (fos != null) {
4703 PrintWriter writer = new PrintWriter(fos);
4704
4705 writer.println(" ");
4706 writer.println("Debug logs: ");
4707 synchronized (sDumpLogs) {
4708 for (int i = 0; i < sDumpLogs.size(); i++) {
4709 writer.println(" " + sDumpLogs.get(i));
4710 }
4711 }
4712 writer.close();
4713 }
4714 try {
4715 if (fos != null) {
4716 fos.close();
4717 success = true;
4718 }
4719 } catch (IOException e) {
4720 e.printStackTrace();
4721 }
Michael Jurka43467462013-11-14 12:03:58 +01004722 return null;
Winson Chungede41292013-09-19 16:27:36 -07004723 }
Michael Jurka43467462013-11-14 12:03:58 +01004724 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
Adam Cohen4caf2982013-08-20 18:54:31 -07004725 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004726 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004727}
Michael Jurka2763be32011-02-24 11:19:57 -08004728
Dan Sandlerd5024042014-01-09 15:01:33 -05004729interface DebugIntents {
4730 static final String DELETE_DATABASE = "com.android.launcher3.action.DELETE_DATABASE";
4731 static final String MIGRATE_DATABASE = "com.android.launcher3.action.MIGRATE_DATABASE";
Adam Cohen8b5b05b2014-01-10 21:42:39 +00004732}