blob: c0c4645973fdbe2cfab37fa55e5ea52386bde388 [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;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070023import android.animation.ValueAnimator;
Sunny Goyal70660032015-05-14 00:07:08 -070024import android.annotation.SuppressLint;
Adam Cohen0b395352014-06-09 22:54:36 +000025import android.annotation.TargetApi;
Michael Jurka946ad472010-07-09 18:05:18 -070026import android.app.Activity;
Brett Chabot2a9e2282011-08-23 15:03:13 -070027import android.app.ActivityManager;
Winson Chungc7450e32012-04-17 17:34:08 -070028import android.app.ActivityOptions;
Chris Wren40c5ed32014-06-24 18:24:23 -040029import android.app.AlertDialog;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080030import android.app.SearchManager;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080031import android.appwidget.AppWidgetHostView;
Michael Jurkaaf442092010-06-10 17:01:57 -070032import android.appwidget.AppWidgetManager;
33import android.appwidget.AppWidgetProviderInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080034import android.content.ActivityNotFoundException;
Joe Onorato2ca0ae72009-11-10 13:14:13 -080035import android.content.BroadcastReceiver;
Michael Jurkae326f182011-11-21 14:05:46 -080036import android.content.ComponentCallbacks2;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040037import android.content.ComponentName;
Sunny Goyal756cd262015-08-20 12:33:21 -070038import android.content.ContentValues;
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;
Adam Cohen96d30a12013-07-16 18:13:21 -070077import android.view.Menu;
Adam Cohen96d30a12013-07-16 18:13:21 -070078import android.view.MotionEvent;
79import android.view.Surface;
80import android.view.View;
Adam Cohenf358a4b2013-07-23 16:47:31 -070081import android.view.View.OnClickListener;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080082import android.view.View.OnLongClickListener;
Adam Cohen96d30a12013-07-16 18:13:21 -070083import android.view.ViewGroup;
Adam Cohenc2d6e892014-10-16 09:49:24 -070084import android.view.ViewStub;
Adam Cohen96d30a12013-07-16 18:13:21 -070085import android.view.ViewTreeObserver;
Sunny Goyal651077b2014-06-30 14:15:31 -070086import android.view.Window;
Adam Cohen96d30a12013-07-16 18:13:21 -070087import android.view.WindowManager;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -080088import android.view.accessibility.AccessibilityEvent;
Sunny Goyal5a1f53b2015-05-27 10:24:24 -070089import android.view.animation.OvershootInterpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080090import android.view.inputmethod.InputMethodManager;
Adam Cohen96d30a12013-07-16 18:13:21 -070091import android.widget.Advanceable;
92import android.widget.FrameLayout;
93import android.widget.ImageView;
Chet Haasea8f996d2015-02-17 12:56:04 -080094import android.widget.TextView;
Adam Cohen96d30a12013-07-16 18:13:21 -070095import android.widget.Toast;
Sunny Goyala1d1bf32015-06-26 13:24:53 -070096
Sunny Goyal651077b2014-06-30 14:15:31 -070097import com.android.launcher3.DropTarget.DragObject;
98import com.android.launcher3.PagedView.PageSwitchListener;
Winson Chung5f4e0fd2015-05-22 11:12:27 -070099import com.android.launcher3.allapps.AllAppsContainerView;
Sunny Goyalffe83f12014-08-14 17:39:34 -0700100import com.android.launcher3.compat.AppWidgetManagerCompat;
Kenny Guyed131872014-04-30 03:02:21 +0100101import com.android.launcher3.compat.LauncherActivityInfoCompat;
102import com.android.launcher3.compat.LauncherAppsCompat;
103import com.android.launcher3.compat.UserHandleCompat;
104import com.android.launcher3.compat.UserManagerCompat;
Sunny Goyal6c56c682015-07-16 14:09:05 -0700105import com.android.launcher3.config.ProviderConfig;
Vadim Tryshevfedca432015-08-19 17:55:02 -0700106import com.android.launcher3.dragndrop.DragController;
107import com.android.launcher3.dragndrop.DragLayer;
108import com.android.launcher3.dragndrop.DragView;
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700109import com.android.launcher3.model.WidgetsModel;
Winson Chung6b1c73f2015-06-18 11:38:42 -0700110import com.android.launcher3.util.ComponentKey;
Sunny Goyale2df0622015-04-24 11:27:00 -0700111import com.android.launcher3.util.LongArrayMap;
Adam Cohen091440a2015-03-18 14:16:05 -0700112import com.android.launcher3.util.Thunk;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700113import com.android.launcher3.widget.PendingAddWidgetInfo;
Hyunyoung Songb99ff3e2015-04-23 15:17:50 -0700114import com.android.launcher3.widget.WidgetHostViewLoader;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700115import com.android.launcher3.widget.WidgetsContainerView;
Adam Cohen6c5891a2014-07-09 23:53:15 -0700116
Adam Cohen4caf2982013-08-20 18:54:31 -0700117import java.io.File;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700118import java.io.FileDescriptor;
Adam Cohen4caf2982013-08-20 18:54:31 -0700119import java.io.FileOutputStream;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700120import java.io.IOException;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700121import java.io.PrintWriter;
Adam Cohen4caf2982013-08-20 18:54:31 -0700122import java.text.DateFormat;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700123import java.util.ArrayList;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700124import java.util.Collection;
Adam Cohen4caf2982013-08-20 18:54:31 -0700125import java.util.Date;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700126import java.util.HashMap;
Sunny Goyal4390ace2014-10-13 11:33:11 -0700127import java.util.HashSet;
Michael Jurkad7c28052012-04-27 15:43:36 -0700128import java.util.List;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700129
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800130/**
131 * Default launcher application.
132 */
Bjorn Bringertc459e522013-06-07 19:36:01 +0100133public class Launcher extends Activity
Michael Jurka0e260592010-06-30 17:07:39 -0700134 implements View.OnClickListener, OnLongClickListener, LauncherModel.Callbacks,
Winson Chung006ee262015-08-03 14:40:11 -0700135 View.OnTouchListener, PageSwitchListener, LauncherProviderChangeListener {
Vadim Tryshevfedca432015-08-19 17:55:02 -0700136 public static final String TAG = "Launcher";
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700137 static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800138
Daniel Sandlerf061f822013-06-27 13:59:36 -0400139 static final boolean PROFILE_STARTUP = false;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700140 static final boolean DEBUG_WIDGETS = true;
Winson Chunga2413752012-04-03 14:22:34 -0700141 static final boolean DEBUG_STRICT_MODE = false;
Daniel Sandlerf061f822013-06-27 13:59:36 -0400142 static final boolean DEBUG_RESUME_TIME = false;
Winson Chungede41292013-09-19 16:27:36 -0700143 static final boolean DEBUG_DUMP_LOG = false;
Romain Guy6fefcf12009-06-11 13:07:43 -0700144
Dan Sandlerd5024042014-01-09 15:01:33 -0500145 static final boolean ENABLE_DEBUG_INTENTS = false; // allow DebugIntents to run
146
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800147 private static final int REQUEST_CREATE_SHORTCUT = 1;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700148 private static final int REQUEST_CREATE_APPWIDGET = 5;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700149 private static final int REQUEST_PICK_APPWIDGET = 9;
Mike Clerona0618e42009-10-22 13:55:21 -0700150 private static final int REQUEST_PICK_WALLPAPER = 10;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800151
Michael Jurka8b805b12012-04-18 14:23:14 -0700152 private static final int REQUEST_BIND_APPWIDGET = 11;
Sunny Goyalff572272014-07-23 13:58:07 -0700153 private static final int REQUEST_RECONFIGURE_APPWIDGET = 12;
Michael Jurka8b805b12012-04-18 14:23:14 -0700154
Sunny Goyal4a6c6f32015-05-19 12:36:46 -0700155 private static final int WORKSPACE_BACKGROUND_GRADIENT = 0;
156 private static final int WORKSPACE_BACKGROUND_TRANSPARENT = 1;
157 private static final int WORKSPACE_BACKGROUND_BLACK = 2;
158
Sunny Goyal5a1f53b2015-05-27 10:24:24 -0700159 private static final float BOUNCE_ANIMATION_TENSION = 1.3f;
160
Mathew Inwood876a8462013-06-14 14:12:41 +0100161 /**
162 * IntentStarter uses request codes starting with this. This must be greater than all activity
163 * request codes used internally.
164 */
165 protected static final int REQUEST_LAST = 100;
166
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";
Sunny Goyal756cd262015-08-20 12:33:21 -0700179 // Type: Content Values / parcelable
180 private static final String RUNTIME_STATE_PENDING_ADD_ITEM = "launcher.add_item";
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700181 // Type: parcelable
182 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_INFO = "launcher.add_widget_info";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000183 // Type: parcelable
Adam Cohen4637b5a2013-11-04 18:21:24 -0800184 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_ID = "launcher.add_widget_id";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800185
Adam Cohen432609a2014-03-13 17:03:22 -0700186 static final String INTRO_SCREEN_DISMISSED = "launcher.intro_screen_dismissed";
Adam Cohenb54a5982014-01-08 15:21:04 -0800187 static final String FIRST_RUN_ACTIVITY_DISPLAYED = "launcher.first_run_activity_displayed";
188
Adam Cohen3ed316a2014-07-23 18:21:20 -0700189 static final String FIRST_LOAD_COMPLETE = "launcher.first_load_complete";
190 static final String ACTION_FIRST_LOAD_COMPLETE =
191 "com.android.launcher3.action.FIRST_LOAD_COMPLETE";
192
Adam Cohen39a06042013-07-19 14:30:12 -0700193 public static final String SHOW_WEIGHT_WATCHER = "debug.show_mem";
Daniel Sandler6053b8002013-08-15 15:44:26 -0700194 public static final boolean SHOW_WEIGHT_WATCHER_DEFAULT = false;
Adam Cohen39a06042013-07-19 14:30:12 -0700195
Sunny Goyal594d76d2014-11-06 10:12:54 -0800196 private static final String QSB_WIDGET_ID = "qsb_widget_id";
197 private static final String QSB_WIDGET_PROVIDER = "qsb_widget_provider";
198
Winson Chunga6945242014-01-08 14:04:34 -0800199 public static final String USER_HAS_MIGRATED = "launcher.user_migrated_from_old_data";
200
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700201 /** The different states that Launcher can be in. */
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700202 enum State { NONE, WORKSPACE, APPS, APPS_SPRING_LOADED, WIDGETS, WIDGETS_SPRING_LOADED }
203
Adam Cohen091440a2015-03-18 14:16:05 -0700204 @Thunk State mState = State.WORKSPACE;
Adam Cohen091440a2015-03-18 14:16:05 -0700205 @Thunk LauncherStateTransitionAnimation mStateTransitionAnimation;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700206
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700207 private boolean mIsSafeModeEnabled;
208
Adam Cohenc2d6e892014-10-16 09:49:24 -0700209 LauncherOverlayCallbacks mLauncherOverlayCallbacks = new LauncherOverlayCallbacksImpl();
210 LauncherOverlay mLauncherOverlay;
Adam Cohena6d04922014-10-23 17:28:30 -0700211 InsettableFrameLayout mLauncherOverlayContainer;
Adam Cohenc2d6e892014-10-16 09:49:24 -0700212
Joe Onorato9c1289c2009-08-17 11:03:03 -0400213 static final int APPWIDGET_HOST_ID = 1024;
Adam Cohenad4e15c2013-10-17 16:21:35 -0700214 public static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
215 private static final int ON_ACTIVITY_RESULT_ANIMATION_DELAY = 500;
Adam Cohen646fdf72014-04-08 16:59:36 -0700216 private static final int ACTIVITY_START_DELAY = 1000;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800217
Winson Chunga2413752012-04-03 14:22:34 -0700218 // How long to wait before the new-shortcut animation automatically pans the workspace
Winson Chung94d67682013-09-25 16:29:40 -0700219 private static int NEW_APPS_PAGE_MOVE_DELAY = 500;
220 private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 5;
Adam Cohen091440a2015-03-18 14:16:05 -0700221 @Thunk static int NEW_APPS_ANIMATION_DELAY = 500;
Winson Chunga2413752012-04-03 14:22:34 -0700222
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800223 private final BroadcastReceiver mCloseSystemDialogsReceiver
224 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800225
Adam Cohen091440a2015-03-18 14:16:05 -0700226 @Thunk Workspace mWorkspace;
Craig Mautner360310b2012-10-26 15:13:08 -0700227 private View mLauncherView;
Winson Chunga6945242014-01-08 14:04:34 -0800228 private View mPageIndicators;
Adam Cohen091440a2015-03-18 14:16:05 -0700229 @Thunk DragLayer mDragLayer;
Michael Jurkab737ee62011-11-15 15:57:22 -0800230 private DragController mDragController;
Adam Cohen39a06042013-07-19 14:30:12 -0700231 private View mWeightWatcher;
Romain Guycbb89e42009-06-08 15:52:54 -0700232
Sunny Goyalffe83f12014-08-14 17:39:34 -0700233 private AppWidgetManagerCompat mAppWidgetManager;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700234 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700235
Sunny Goyalaa8ef112015-06-12 20:04:41 -0700236 @Thunk final ItemInfo mPendingAddInfo = new ItemInfo();
Adam Cohen59400422014-03-05 18:07:04 -0800237 private LauncherAppWidgetProviderInfo mPendingAddWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800238 private int mPendingAddWidgetId = -1;
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700239
Michael Jurka0280c3b2010-09-17 15:00:07 -0700240 private int[] mTmpAddItemCellCoordinates = new int[2];
241
Sunny Goyal316490e2015-06-02 09:38:28 -0700242 @Thunk Hotseat mHotseat;
Jorim Jaggid017f882014-01-14 17:08:48 -0800243 private ViewGroup mOverviewPanel;
Adam Cohenf358a4b2013-07-23 16:47:31 -0700244
Michael Jurka838a4ca2011-02-07 13:33:06 -0800245 private View mAllAppsButton;
Hyunyoung Song98ff38a2015-07-10 17:50:13 -0700246 private View mWidgetsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700247
Winson Chungc51db6a2011-10-05 11:44:49 -0700248 private SearchDropTargetBar mSearchDropTargetBar;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700249
250 // Main container view for the all apps screen.
Winson Chung5f4e0fd2015-05-22 11:12:27 -0700251 @Thunk AllAppsContainerView mAppsView;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700252
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700253 // Main container view and the model for the widget tray screen.
254 @Thunk WidgetsContainerView mWidgetsView;
255 @Thunk WidgetsModel mWidgetsModel;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700256
Sunny Goyal594d76d2014-11-06 10:12:54 -0800257 private AppWidgetHostView mQsb;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800258
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800259 private Bundle mSavedState;
Winson Chung4a2afa32012-07-19 14:53:05 -0700260 // We set the state in both onCreate and then onNewIntent in some cases, which causes both
261 // scroll issues (because the workspace may not have been measured yet) and extra work.
262 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
263 private State mOnResumeState = State.NONE;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800264
265 private SpannableStringBuilder mDefaultKeySsb = null;
266
Adam Cohen091440a2015-03-18 14:16:05 -0700267 @Thunk boolean mWorkspaceLoading = true;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400268
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800269 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800270 private boolean mRestoring;
271 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700272 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800273
Michael Jurka1e2f4652013-07-08 18:03:46 -0700274 private ArrayList<Runnable> mBindOnResumeCallbacks = new ArrayList<Runnable>();
Michael Jurka7607c2f2013-04-03 14:33:19 -0700275 private ArrayList<Runnable> mOnResumeCallbacks = new ArrayList<Runnable>();
276
Joe Onorato9c1289c2009-08-17 11:03:03 -0400277 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800278 private IconCache mIconCache;
Adam Cohen091440a2015-03-18 14:16:05 -0700279 @Thunk boolean mUserPresent = true;
Adam Cohend113e0c2010-11-11 10:48:05 -0800280 private boolean mVisible = false;
Adam Cohened307df2013-10-02 09:37:31 -0700281 private boolean mHasFocus = false;
Adam Cohend113e0c2010-11-11 10:48:05 -0800282 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400283
Sunny Goyal639e9062015-08-19 19:17:06 -0700284 private LauncherClings mClings;
285
Sunny Goyale2df0622015-04-24 11:27:00 -0700286 private static LongArrayMap<FolderInfo> sFolders = new LongArrayMap<>();
Romain Guycbb89e42009-06-08 15:52:54 -0700287
Adam Cohen61f560d2013-09-30 15:58:20 -0700288 private View.OnTouchListener mHapticFeedbackTouchListener;
289
Adam Cohended9f8d2010-11-03 13:25:16 -0700290 // Related to the auto-advancing of widgets
291 private final int ADVANCE_MSG = 1;
Sunny Goyal756cd262015-08-20 12:33:21 -0700292 private static final int ADVANCE_INTERVAL = 20000;
293 private static final int ADVANCE_STAGGER = 250;
294
295 private boolean mAutoAdvanceRunning = false;
Adam Cohended9f8d2010-11-03 13:25:16 -0700296 private long mAutoAdvanceSentTime;
297 private long mAutoAdvanceTimeLeft = -1;
Sunny Goyal756cd262015-08-20 12:33:21 -0700298 @Thunk HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance = new HashMap<>();
Adam Cohended9f8d2010-11-03 13:25:16 -0700299
Winson Chung400438b2011-01-16 17:53:48 -0800300 // Determines how long to wait after a rotation before restoring the screen orientation to
301 // match the sensor state.
Sunny Goyal756cd262015-08-20 12:33:21 -0700302 private static final int RESTORE_SCREEN_ORIENTATION_DELAY = 500;
Winson Chung400438b2011-01-16 17:53:48 -0800303
Adam Cohen091440a2015-03-18 14:16:05 -0700304 @Thunk Drawable mWorkspaceBackgroundDrawable;
Craig Mautner360310b2012-10-26 15:13:08 -0700305
Adam Cohen1462de32012-07-24 22:34:36 -0700306 private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700307 private static final boolean DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE = false;
Adam Cohen1462de32012-07-24 22:34:36 -0700308
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700309 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
Adam Cohen4caf2982013-08-20 18:54:31 -0700310 static Date sDateStamp = new Date();
311 static DateFormat sDateFormat =
312 DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
313 static long sRunStart = System.currentTimeMillis();
314 static final String CORRUPTION_EMAIL_SENT_KEY = "corruptionEmailSent";
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700315
Winson Chung46353de2012-02-16 14:05:10 -0800316 // We only want to get the SharedPreferences once since it does an FS stat each time we get
317 // it from the context.
318 private SharedPreferences mSharedPrefs;
319
Winson Chungf0c6ae02012-03-21 16:10:31 -0700320 // Holds the page that we need to animate to, and the icon views that we need to animate up
321 // when we scroll to that page on resume.
Adam Cohen091440a2015-03-18 14:16:05 -0700322 @Thunk ImageView mFolderIconImageView;
Adam Cohen268c4752012-06-06 17:47:33 -0700323 private Bitmap mFolderIconBitmap;
324 private Canvas mFolderIconCanvas;
325 private Rect mRectForFolderAnimation = new Rect();
Adam Cohen2801caf2011-05-13 20:57:39 -0700326
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700327 private DeviceProfile mDeviceProfile;
328
Winson Chung13eb5272015-05-11 16:30:13 -0700329 // This is set to the view that launched the activity that navigated the user away from
330 // launcher. Since there is no callback for when the activity has finished launching, enable
331 // the press state and keep this reference to reset the press state when we return to launcher.
Michael Jurkaddd62e92011-02-16 17:49:14 -0800332 private BubbleTextView mWaitingForResume;
333
Adam Cohen59400422014-03-05 18:07:04 -0800334 protected static HashMap<String, CustomAppWidget> sCustomAppWidgets =
335 new HashMap<String, CustomAppWidget>();
336
337 private static final boolean ENABLE_CUSTOM_WIDGET_TEST = false;
338 static {
339 if (ENABLE_CUSTOM_WIDGET_TEST) {
340 sCustomAppWidgets.put(DummyWidget.class.getName(), new DummyWidget());
341 }
342 }
343
Adam Cohen091440a2015-03-18 14:16:05 -0700344 @Thunk Runnable mBuildLayersRunnable = new Runnable() {
Michael Jurkac1f5d262011-09-30 19:32:27 -0700345 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700346 if (mWorkspace != null) {
347 mWorkspace.buildPageHardwareLayers();
348 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700349 }
350 };
351
Adam Cohendb364c32014-05-20 14:23:40 -0700352 private static PendingAddArguments sPendingAddItem;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800353
Adam Cohen091440a2015-03-18 14:16:05 -0700354 @Thunk static class PendingAddArguments {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800355 int requestCode;
356 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700357 long container;
Adam Cohendcd297f2013-06-18 13:13:40 -0700358 long screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800359 int cellX;
360 int cellY;
Adam Cohendb364c32014-05-20 14:23:40 -0700361 int appWidgetId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800362 }
363
Daniel Sandlerff02d492013-08-05 02:12:05 -0400364 private Stats mStats;
Sunny Goyaldcbcc862014-08-12 15:58:36 -0700365 FocusIndicatorView mFocusHandler;
Sunny Goyal7779d622015-06-11 16:18:39 -0700366 private boolean mRotationEnabled = false;
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400367
368 @Thunk void setOrientation() {
369 if (mRotationEnabled) {
370 unlockScreenOrientation(true);
371 } else {
372 setRequestedOrientation(
373 ActivityInfo.SCREEN_ORIENTATION_NOSENSOR);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700374 }
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400375 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700376
Sunny Goyal7779d622015-06-11 16:18:39 -0700377 private Runnable mUpdateOrientationRunnable = new Runnable() {
378 public void run() {
379 setOrientation();
380 }
381 };
382
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800383 @Override
384 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700385 if (DEBUG_STRICT_MODE) {
386 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
387 .detectDiskReads()
388 .detectDiskWrites()
389 .detectNetwork() // or .detectAll() for all detectable problems
390 .penaltyLog()
391 .build());
392 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
393 .detectLeakedSqlLiteObjects()
394 .detectLeakedClosableObjects()
395 .penaltyLog()
396 .penaltyDeath()
397 .build());
398 }
399
Adam Cohen9211d422014-10-07 18:14:53 -0700400 if (mLauncherCallbacks != null) {
401 mLauncherCallbacks.preOnCreate();
402 }
403
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800404 super.onCreate(savedInstanceState);
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400405
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400406 LauncherAppState.setApplicationContext(getApplicationContext());
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400407 LauncherAppState app = LauncherAppState.getInstance();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700408
Adam Cohen2e6da152015-05-06 11:42:25 -0700409 // Load configuration-specific DeviceProfile
Sunny Goyalc6205602015-05-21 20:46:33 -0700410 mDeviceProfile = getResources().getConfiguration().orientation
411 == Configuration.ORIENTATION_LANDSCAPE ?
412 app.getInvariantDeviceProfile().landscapeProfile
413 : app.getInvariantDeviceProfile().portraitProfile;
414
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400415 mSharedPrefs = getSharedPreferences(LauncherAppState.getSharedPreferencesKey(),
Winson Chungf0c6ae02012-03-21 16:10:31 -0700416 Context.MODE_PRIVATE);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700417 mIsSafeModeEnabled = getPackageManager().isSafeMode();
Joe Onorato0589f0f2010-02-08 13:44:00 -0800418 mModel = app.setLauncher(this);
419 mIconCache = app.getIconCache();
Adam Cohen2e6da152015-05-06 11:42:25 -0700420
Joe Onorato41a12d22009-10-31 18:30:00 -0400421 mDragController = new DragController(this);
Winson Chung006ee262015-08-03 14:40:11 -0700422 mStateTransitionAnimation = new LauncherStateTransitionAnimation(this);
Romain Guycbb89e42009-06-08 15:52:54 -0700423
Daniel Sandlerff02d492013-08-05 02:12:05 -0400424 mStats = new Stats(this);
425
Sunny Goyalffe83f12014-08-14 17:39:34 -0700426 mAppWidgetManager = AppWidgetManagerCompat.getInstance(this);
Adam Cohen53805212013-10-01 10:39:23 -0700427
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700428 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
429 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700430
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700431 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
432 // this also ensures that any synchronous binding below doesn't re-trigger another
433 // LauncherModel load.
434 mPaused = false;
435
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800436 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200437 android.os.Debug.startMethodTracing(
438 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800439 }
440
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800441 setContentView(R.layout.launcher);
Michael Jurka7267fa52013-09-26 15:29:57 -0700442
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800443 setupViews();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700444 mDeviceProfile.layout(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800445
Joe Onorato7c312c12009-08-13 21:36:53 -0700446 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700447
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800448 mSavedState = savedInstanceState;
449 restoreState(mSavedState);
450
451 if (PROFILE_STARTUP) {
452 android.os.Debug.stopMethodTracing();
453 }
454
455 if (!mRestoring) {
Adam Cohendb78dc82014-06-19 14:50:51 -0700456 if (DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700457 // If the user leaves launcher, then we should just load items asynchronously when
458 // they return.
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700459 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Winson Chung4a2afa32012-07-19 14:53:05 -0700460 } else {
461 // We only load the page synchronously if the user rotates (or triggers a
462 // configuration change) while launcher is in the foreground
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700463 mModel.startLoader(mWorkspace.getRestorePage());
Winson Chung4a2afa32012-07-19 14:53:05 -0700464 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800465 }
466
467 // For handling default keys
468 mDefaultKeySsb = new SpannableStringBuilder();
469 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800470
471 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
472 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800473
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700474 mRotationEnabled = Utilities.isRotationAllowedForDevice(getApplicationContext());
475 // In case we are on a device with locked rotation, we should look at preferences to check
476 // if the user has specifically allowed rotation.
477 if (!mRotationEnabled) {
Sunny Goyal21bf5312015-08-21 11:08:24 -0700478 mRotationEnabled = Utilities.isAllowRotationPrefEnabled(getApplicationContext());
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700479 }
480
481 // On large interfaces, or on devices that a user has specifically enabled screen rotation,
482 // we want the screen to auto-rotate based on the current orientation
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400483 setOrientation();
Winson Chungaf40f202013-09-18 18:26:31 -0700484
Adam Cohen9211d422014-10-07 18:14:53 -0700485 if (mLauncherCallbacks != null) {
486 mLauncherCallbacks.onCreate(savedInstanceState);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700487 if (mLauncherCallbacks.hasLauncherOverlay()) {
488 ViewStub stub = (ViewStub) findViewById(R.id.launcher_overlay_stub);
Adam Cohena6d04922014-10-23 17:28:30 -0700489 mLauncherOverlayContainer = (InsettableFrameLayout) stub.inflate();
490 mLauncherOverlay = mLauncherCallbacks.setLauncherOverlayView(
491 mLauncherOverlayContainer, mLauncherOverlayCallbacks);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700492 mWorkspace.setLauncherOverlay(mLauncherOverlay);
493 }
Adam Cohen9211d422014-10-07 18:14:53 -0700494 }
Adam Cohenc3e12c72014-10-31 16:15:36 -0700495
496 if (shouldShowIntroScreen()) {
497 showIntroScreen();
498 } else {
499 showFirstRunActivity();
500 showFirstRunClings();
501 }
Adam Cohen9211d422014-10-07 18:14:53 -0700502 }
503
Sunny Goyal7779d622015-06-11 16:18:39 -0700504 @Override
505 public void onSettingsChanged(String settings, boolean value) {
506 if (Utilities.ALLOW_ROTATION_PREFERENCE_KEY.equals(settings)) {
507 mRotationEnabled = value;
508 if (!waitUntilResume(mUpdateOrientationRunnable, true)) {
509 mUpdateOrientationRunnable.run();
510 }
511 }
512 }
513
Adam Cohen9211d422014-10-07 18:14:53 -0700514 private LauncherCallbacks mLauncherCallbacks;
515
516 public void onPostCreate(Bundle savedInstanceState) {
517 super.onPostCreate(savedInstanceState);
518 if (mLauncherCallbacks != null) {
519 mLauncherCallbacks.onPostCreate(savedInstanceState);
520 }
521 }
522
523 public boolean setLauncherCallbacks(LauncherCallbacks callbacks) {
524 mLauncherCallbacks = callbacks;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700525 mLauncherCallbacks.setLauncherSearchCallback(new Launcher.LauncherSearchCallbacks() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700526 private boolean mWorkspaceImportanceStored = false;
527 private boolean mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700528 private int mWorkspaceImportanceForAccessibility =
529 View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
530 private int mHotseatImportanceForAccessibility = View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
531
532 @Override
533 public void onSearchOverlayOpened() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700534 if (mWorkspaceImportanceStored || mHotseatImportanceStored) {
Jun Mukai8af0cd82015-05-12 12:32:12 -0700535 return;
536 }
537 // The underlying workspace and hotseat are temporarily suppressed by the search
538 // overlay. So they sholudn't be accessible.
Jun Mukaie9819e62015-06-17 10:58:59 -0700539 if (mWorkspace != null) {
540 mWorkspaceImportanceForAccessibility =
541 mWorkspace.getImportantForAccessibility();
542 mWorkspace.setImportantForAccessibility(
543 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
544 mWorkspaceImportanceStored = true;
545 }
546 if (mHotseat != null) {
547 mHotseatImportanceForAccessibility = mHotseat.getImportantForAccessibility();
548 mHotseat.setImportantForAccessibility(
549 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
550 mHotseatImportanceStored = true;
551 }
Jun Mukai8af0cd82015-05-12 12:32:12 -0700552 }
553
554 @Override
555 public void onSearchOverlayClosed() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700556 if (mWorkspaceImportanceStored && mWorkspace != null) {
557 mWorkspace.setImportantForAccessibility(mWorkspaceImportanceForAccessibility);
558 }
559 if (mHotseatImportanceStored && mHotseat != null) {
560 mHotseat.setImportantForAccessibility(mHotseatImportanceForAccessibility);
561 }
562 mWorkspaceImportanceStored = false;
563 mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700564 }
565 });
Adam Cohen9211d422014-10-07 18:14:53 -0700566 return true;
Adam Cohenf9426d52012-06-04 17:26:21 -0700567 }
568
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700569 @Override
Adam Cohen9211d422014-10-07 18:14:53 -0700570 public void onLauncherProviderChange() {
571 if (mLauncherCallbacks != null) {
572 mLauncherCallbacks.onLauncherProviderChange();
573 }
574 }
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700575
Winson Chungef7f8742015-06-04 17:18:17 -0700576 /**
577 * Updates the bounds of all the overlays to match the new fixed bounds.
578 */
579 public void updateOverlayBounds(Rect newBounds) {
580 mAppsView.setSearchBarBounds(newBounds);
581 mWidgetsView.setSearchBarBounds(newBounds);
582 }
583
Adam Cohen9211d422014-10-07 18:14:53 -0700584 /** To be overridden by subclasses to hint to Launcher that we have custom content */
Winson Chung98ca0f72013-07-29 12:58:51 -0700585 protected boolean hasCustomContentToLeft() {
Adam Cohen9211d422014-10-07 18:14:53 -0700586 if (mLauncherCallbacks != null) {
587 return mLauncherCallbacks.hasCustomContentToLeft();
588 }
Winson Chung98ca0f72013-07-29 12:58:51 -0700589 return false;
590 }
591
Dave Hawkeya8881582013-09-17 15:55:33 -0600592 /**
Derek Prothrodadd9842014-01-17 13:43:50 -0500593 * To be overridden by subclasses to populate the custom content container and call
Dave Hawkeya8881582013-09-17 15:55:33 -0600594 * {@link #addToCustomContentPage}. This will only be invoked if
595 * {@link #hasCustomContentToLeft()} is {@code true}.
596 */
Derek Prothrodadd9842014-01-17 13:43:50 -0500597 protected void populateCustomContentContainer() {
Adam Cohen9211d422014-10-07 18:14:53 -0700598 if (mLauncherCallbacks != null) {
599 mLauncherCallbacks.populateCustomContentContainer();
600 }
Dave Hawkeya8881582013-09-17 15:55:33 -0600601 }
602
603 /**
604 * Invoked by subclasses to signal a change to the {@link #addCustomContentToLeft} value to
605 * ensure the custom content page is added or removed if necessary.
606 */
607 protected void invalidateHasCustomContentToLeft() {
Dave Hawkey3a733a72013-09-30 11:52:21 -0600608 if (mWorkspace == null || mWorkspace.getScreenOrder().isEmpty()) {
Dave Hawkeya8881582013-09-17 15:55:33 -0600609 // Not bound yet, wait for bindScreens to be called.
610 return;
611 }
612
613 if (!mWorkspace.hasCustomContent() && hasCustomContentToLeft()) {
614 // Create the custom content page and call the subclass to populate it.
Derek Prothrodadd9842014-01-17 13:43:50 -0500615 mWorkspace.createCustomContentContainer();
616 populateCustomContentContainer();
Dave Hawkeya8881582013-09-17 15:55:33 -0600617 } else if (mWorkspace.hasCustomContent() && !hasCustomContentToLeft()) {
618 mWorkspace.removeCustomContentPage();
619 }
620 }
621
Anton Hanssona2f665f2013-09-26 12:18:32 +0100622 public Stats getStats() {
623 return mStats;
624 }
625
Hyunyoung Song3f471442015-04-08 19:01:34 -0700626 public boolean isDraggingEnabled() {
Winson Chung36a62fe2012-05-06 18:04:42 -0700627 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
628 // that is subsequently removed from the workspace in startBinding().
Sunny Goyal639e9062015-08-19 19:17:06 -0700629 return !isWorkspaceLoading();
Winson Chung36a62fe2012-05-06 18:04:42 -0700630 }
631
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000632 public int getViewIdForItem(ItemInfo info) {
Sunny Goyale2fd14b2015-08-27 17:45:46 -0700633 // aapt-generated IDs have the high byte nonzero; clamp to the range under that.
634 // This cast is safe as long as the id < 0x00FFFFFF
635 // Since we jail all the dynamically generated views, there should be no clashes
636 // with any other views.
637 return (int) info.id;
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000638 }
639
640 /**
Winson Chung557d6ed2011-07-08 15:34:52 -0700641 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
642 * a configuration step, this allows the proper animations to run after other transitions.
643 */
Adam Cohendb364c32014-05-20 14:23:40 -0700644 private long completeAdd(PendingAddArguments args) {
Adam Cohen83079e42014-09-19 17:43:08 -0700645 long screenId = args.screenId;
646 if (args.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
647 // When the screen id represents an actual screen (as opposed to a rank) we make sure
648 // that the drop page actually exists.
649 screenId = ensurePendingDropLayoutExists(args.screenId);
650 }
Adam Cohendb364c32014-05-20 14:23:40 -0700651
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800652 switch (args.requestCode) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800653 case REQUEST_CREATE_SHORTCUT:
Adam Cohendb364c32014-05-20 14:23:40 -0700654 completeAddShortcut(args.intent, args.container, screenId, args.cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -0700655 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700656 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800657 case REQUEST_CREATE_APPWIDGET:
Adam Cohendb364c32014-05-20 14:23:40 -0700658 completeAddAppWidget(args.appWidgetId, args.container, screenId, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700659 break;
Sunny Goyalff572272014-07-23 13:58:07 -0700660 case REQUEST_RECONFIGURE_APPWIDGET:
661 completeRestoreAppWidget(args.appWidgetId);
662 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800663 }
Michael Jurka27614d22012-04-02 06:40:22 -0700664 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
665 // if you turned the screen off and then back while in All Apps, Launcher would not
666 // return to the workspace. Clearing mAddInfo.container here fixes this issue
667 resetAddInfo();
Adam Cohendb364c32014-05-20 14:23:40 -0700668 return screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800669 }
670
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800671 private void handleActivityResult(
Michael Jurka8b805b12012-04-18 14:23:14 -0700672 final int requestCode, final int resultCode, final Intent data) {
Winson Chunge341d302013-08-16 14:31:00 -0700673 // Reset the startActivity waiting flag
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700674 setWaitingForResult(false);
Adam Cohendb364c32014-05-20 14:23:40 -0700675 final int pendingAddWidgetId = mPendingAddWidgetId;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800676 mPendingAddWidgetId = -1;
Winson Chunge341d302013-08-16 14:31:00 -0700677
Adam Cohenad4e15c2013-10-17 16:21:35 -0700678 Runnable exitSpringLoaded = new Runnable() {
679 @Override
680 public void run() {
681 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
682 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
683 }
684 };
685
Michael Jurka8b805b12012-04-18 14:23:14 -0700686 if (requestCode == REQUEST_BIND_APPWIDGET) {
Winsona1f79d32015-08-05 14:00:45 -0700687 // This is called only if the user did not previously have permissions to bind widgets
Adam Cohenad4e15c2013-10-17 16:21:35 -0700688 final int appWidgetId = data != null ?
Michael Jurka8b805b12012-04-18 14:23:14 -0700689 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
690 if (resultCode == RESULT_CANCELED) {
691 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
Adam Cohen689ff162014-05-08 17:27:56 -0700692 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700693 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
Michael Jurka8b805b12012-04-18 14:23:14 -0700694 } else if (resultCode == RESULT_OK) {
Sunny Goyale6b63a32015-01-16 16:14:29 -0800695 addAppWidgetImpl(appWidgetId, mPendingAddInfo, null,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700696 mPendingAddWidgetInfo, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
Winsona1f79d32015-08-05 14:00:45 -0700697
698 // When the user has granted permission to bind widgets, we should check to see if
699 // we can inflate the default search bar widget.
700 getOrCreateQsbBar();
Michael Jurka8b805b12012-04-18 14:23:14 -0700701 }
702 return;
Michael Jurka336fd4f2013-09-12 00:05:02 +0200703 } else if (requestCode == REQUEST_PICK_WALLPAPER) {
704 if (resultCode == RESULT_OK && mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -0700705 showWorkspace(false);
Michael Jurka336fd4f2013-09-12 00:05:02 +0200706 }
707 return;
Michael Jurka8b805b12012-04-18 14:23:14 -0700708 }
Michael Jurka336fd4f2013-09-12 00:05:02 +0200709
Adam Cohened66b2b2012-01-23 17:28:51 -0800710 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
Sunny Goyal5c97f512015-05-19 16:03:28 -0700711 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700712
Adam Cohendb364c32014-05-20 14:23:40 -0700713 final boolean workspaceLocked = isWorkspaceLocked();
Adam Cohened66b2b2012-01-23 17:28:51 -0800714 // We have special handling for widgets
715 if (isWidgetDrop) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800716 final int appWidgetId;
717 int widgetId = data != null ? data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1)
718 : -1;
719 if (widgetId < 0) {
720 appWidgetId = pendingAddWidgetId;
721 } else {
722 appWidgetId = widgetId;
723 }
724
Adam Cohenad4e15c2013-10-17 16:21:35 -0700725 final int result;
Adam Cohenf0129b12013-11-04 17:57:36 -0800726 if (appWidgetId < 0 || resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700727 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not " +
728 "returned from the widget configuration activity.");
Adam Cohenad4e15c2013-10-17 16:21:35 -0700729 result = RESULT_CANCELED;
730 completeTwoStageWidgetDrop(result, appWidgetId);
Adam Cohendb364c32014-05-20 14:23:40 -0700731 final Runnable onComplete = new Runnable() {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700732 @Override
733 public void run() {
734 exitSpringLoadedDragModeDelayed(false, 0, null);
735 }
736 };
Adam Cohendb364c32014-05-20 14:23:40 -0700737 if (workspaceLocked) {
738 // No need to remove the empty screen if we're mid-binding, as the
739 // the bind will not add the empty screen.
740 mWorkspace.postDelayed(onComplete, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
741 } else {
742 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
743 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
744 }
Winson Chung5aaab772012-04-27 15:24:02 -0700745 } else {
Adam Cohendb364c32014-05-20 14:23:40 -0700746 if (!workspaceLocked) {
Adam Cohen83079e42014-09-19 17:43:08 -0700747 if (mPendingAddInfo.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
748 // When the screen id represents an actual screen (as opposed to a rank)
749 // we make sure that the drop page actually exists.
750 mPendingAddInfo.screenId =
751 ensurePendingDropLayoutExists(mPendingAddInfo.screenId);
752 }
Adam Cohendb364c32014-05-20 14:23:40 -0700753 final CellLayout dropLayout = mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
754
755 dropLayout.setDropPending(true);
756 final Runnable onComplete = new Runnable() {
757 @Override
758 public void run() {
759 completeTwoStageWidgetDrop(resultCode, appWidgetId);
760 dropLayout.setDropPending(false);
761 }
762 };
763 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
764 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
765 } else {
766 PendingAddArguments args = preparePendingAddArgs(requestCode, data, appWidgetId,
767 mPendingAddInfo);
768 sPendingAddItem = args;
769 }
Winson Chung5aaab772012-04-27 15:24:02 -0700770 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800771 return;
772 }
773
Sunny Goyalff572272014-07-23 13:58:07 -0700774 if (requestCode == REQUEST_RECONFIGURE_APPWIDGET) {
775 if (resultCode == RESULT_OK) {
776 // Update the widget view.
777 PendingAddArguments args = preparePendingAddArgs(requestCode, data,
778 pendingAddWidgetId, mPendingAddInfo);
779 if (workspaceLocked) {
780 sPendingAddItem = args;
781 } else {
782 completeAdd(args);
783 }
784 }
785 // Leave the widget in the pending state if the user canceled the configure.
786 return;
787 }
788
Sunny Goyalaad90582015-07-09 14:22:50 -0700789 if (requestCode == REQUEST_CREATE_SHORTCUT) {
790 // Handle custom shortcuts created using ACTION_CREATE_SHORTCUT.
791 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
792 final PendingAddArguments args = preparePendingAddArgs(requestCode, data, -1,
793 mPendingAddInfo);
794 if (isWorkspaceLocked()) {
795 sPendingAddItem = args;
796 } else {
797 completeAdd(args);
798 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
799 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
800 }
801 } else if (resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700802 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
803 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800804 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800805 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800806 mDragLayer.clearAnimatedView();
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800807
808 }
809
810 @Override
811 protected void onActivityResult(
812 final int requestCode, final int resultCode, final Intent data) {
813 handleActivityResult(requestCode, resultCode, data);
814 if (mLauncherCallbacks != null) {
815 mLauncherCallbacks.onActivityResult(requestCode, resultCode, data);
816 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800817 }
818
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600819 /** @Override for MNC */
Sunny Goyaldd2e6df2015-07-07 10:57:57 -0700820 public void onRequestPermissionsResult(int requestCode, String[] permissions,
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600821 int[] grantResults) {
822 if (mLauncherCallbacks != null) {
823 mLauncherCallbacks.onRequestPermissionsResult(requestCode, permissions,
824 grantResults);
825 }
826 }
827
Adam Cohendb364c32014-05-20 14:23:40 -0700828 private PendingAddArguments preparePendingAddArgs(int requestCode, Intent data, int
829 appWidgetId, ItemInfo info) {
830 PendingAddArguments args = new PendingAddArguments();
831 args.requestCode = requestCode;
832 args.intent = data;
833 args.container = info.container;
834 args.screenId = info.screenId;
835 args.cellX = info.cellX;
836 args.cellY = info.cellY;
837 args.appWidgetId = appWidgetId;
838 return args;
839 }
840
841 /**
842 * Check to see if a given screen id exists. If not, create it at the end, return the new id.
843 *
844 * @param screenId the screen id to check
845 * @return the new screen, or screenId if it exists
846 */
847 private long ensurePendingDropLayoutExists(long screenId) {
848 CellLayout dropLayout =
849 (CellLayout) mWorkspace.getScreenWithId(screenId);
850 if (dropLayout == null) {
851 // it's possible that the add screen was removed because it was
852 // empty and a re-bind occurred
853 mWorkspace.addExtraEmptyScreen();
854 return mWorkspace.commitExtraEmptyScreen();
855 } else {
856 return screenId;
857 }
858 }
859
Adam Cohen091440a2015-03-18 14:16:05 -0700860 @Thunk void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700861 CellLayout cellLayout =
Adam Cohendcd297f2013-06-18 13:13:40 -0700862 (CellLayout) mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800863 Runnable onCompleteRunnable = null;
864 int animationType = 0;
865
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700866 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800867 if (resultCode == RESULT_OK) {
868 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
869 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700870 mPendingAddWidgetInfo);
871 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800872 onCompleteRunnable = new Runnable() {
873 @Override
874 public void run() {
875 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700876 mPendingAddInfo.screenId, layout, null);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700877 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
878 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
Adam Cohened66b2b2012-01-23 17:28:51 -0800879 }
880 };
881 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800882 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800883 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
Adam Cohened66b2b2012-01-23 17:28:51 -0800884 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700885 if (mDragLayer.getAnimatedView() != null) {
886 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
887 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
888 animationType, boundWidget, true);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700889 } else if (onCompleteRunnable != null) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700890 // The animated view may be null in the case of a rotation during widget configuration
891 onCompleteRunnable.run();
892 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800893 }
894
895 @Override
Michael Jurkacd496d72013-04-11 11:32:45 -0700896 protected void onStop() {
897 super.onStop();
898 FirstFrameAnimatorHelper.setIsVisible(false);
Adam Cohen9211d422014-10-07 18:14:53 -0700899
900 if (mLauncherCallbacks != null) {
901 mLauncherCallbacks.onStop();
902 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700903 }
904
905 @Override
906 protected void onStart() {
907 super.onStart();
908 FirstFrameAnimatorHelper.setIsVisible(true);
Adam Cohen9211d422014-10-07 18:14:53 -0700909
910 if (mLauncherCallbacks != null) {
911 mLauncherCallbacks.onStart();
912 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700913 }
914
915 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800916 protected void onResume() {
Michael Jurka447bf842013-05-15 14:52:15 +0200917 long startTime = 0;
918 if (DEBUG_RESUME_TIME) {
919 startTime = System.currentTimeMillis();
Daniel Sandler924b9932013-06-12 00:38:25 -0400920 Log.v(TAG, "Launcher.onResume()");
Michael Jurka447bf842013-05-15 14:52:15 +0200921 }
Adam Cohen9211d422014-10-07 18:14:53 -0700922
923 if (mLauncherCallbacks != null) {
924 mLauncherCallbacks.preOnResume();
925 }
926
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800927 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700928
Winson Chung4a2afa32012-07-19 14:53:05 -0700929 // Restore the previous launcher state
Winson Chung75cc8252015-04-10 10:19:58 -0700930 if (mOnResumeState == State.WORKSPACE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700931 showWorkspace(false);
Winson Chungb745afb2015-03-02 11:51:23 -0800932 } else if (mOnResumeState == State.APPS) {
Winson Chung13eb5272015-05-11 16:30:13 -0700933 boolean launchedFromApp = (mWaitingForResume != null);
Winson Chung4ac30062015-05-08 17:34:17 -0700934 // Don't update the predicted apps if the user is returning to launcher in the apps
Winson Chung13eb5272015-05-11 16:30:13 -0700935 // view after launching an app, as they may be depending on the UI to be static to
936 // switch to another app, otherwise, if it was
Winson Chung4ac30062015-05-08 17:34:17 -0700937 showAppsView(false /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -0700938 !launchedFromApp /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -0800939 } else if (mOnResumeState == State.WIDGETS) {
940 showWidgetsView(false, false);
Winson Chung4a2afa32012-07-19 14:53:05 -0700941 }
942 mOnResumeState = State.NONE;
943
Sunny Goyal4a6c6f32015-05-19 12:36:46 -0700944 // Background was set to gradient in onPause(), restore to transparent if in all apps.
Sunny Goyald70ad0d2015-05-26 17:20:07 -0700945 setWorkspaceBackground(mState == State.WORKSPACE ? WORKSPACE_BACKGROUND_GRADIENT
946 : WORKSPACE_BACKGROUND_TRANSPARENT);
Craig Mautner360310b2012-10-26 15:13:08 -0700947
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800948 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700949 if (mRestoring || mOnResumeNeedsLoad) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700950 setWorkspaceLoading(true);
Sunny Goyal22aa3812015-08-19 16:24:27 -0700951
952 // If we're starting binding all over again, clear any bind calls we'd postponed in
953 // the past (see waitUntilResume) -- we don't need them since we're starting binding
954 // from scratch again
955 mBindOnResumeCallbacks.clear();
956
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700957 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400958 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700959 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800960 }
Michael Jurka1e2f4652013-07-08 18:03:46 -0700961 if (mBindOnResumeCallbacks.size() > 0) {
Michael Jurkac402cd92013-05-20 15:49:32 +0200962 // We might have postponed some bind calls until onResume (see waitUntilResume) --
963 // execute them here
964 long startTimeCallbacks = 0;
965 if (DEBUG_RESUME_TIME) {
966 startTimeCallbacks = System.currentTimeMillis();
967 }
968
Michael Jurka1e2f4652013-07-08 18:03:46 -0700969 for (int i = 0; i < mBindOnResumeCallbacks.size(); i++) {
970 mBindOnResumeCallbacks.get(i).run();
Michael Jurkac402cd92013-05-20 15:49:32 +0200971 }
Michael Jurka1e2f4652013-07-08 18:03:46 -0700972 mBindOnResumeCallbacks.clear();
Michael Jurkac402cd92013-05-20 15:49:32 +0200973 if (DEBUG_RESUME_TIME) {
974 Log.d(TAG, "Time spent processing callbacks in onResume: " +
975 (System.currentTimeMillis() - startTimeCallbacks));
976 }
Michael Jurka447bf842013-05-15 14:52:15 +0200977 }
Michael Jurka54554252013-08-01 12:52:23 +0200978 if (mOnResumeCallbacks.size() > 0) {
979 for (int i = 0; i < mOnResumeCallbacks.size(); i++) {
980 mOnResumeCallbacks.get(i).run();
981 }
982 mOnResumeCallbacks.clear();
983 }
Winson Chunge4e50662012-01-23 14:45:13 -0800984
985 // Reset the pressed state of icons that were locked in the press state while activities
986 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -0800987 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -0800988 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -0800989 mWaitingForResume.setStayPressed(false);
990 }
Winson Chung82963d52013-10-09 11:20:57 -0700991
Adam Cohen06dff352012-06-01 17:17:08 -0700992 // It is possible that widgets can receive updates while launcher is not in the foreground.
993 // Consequently, the widgets will be inflated in the orientation of the foreground activity
994 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
995 // orientation.
Adam Cohen3d509322012-06-06 14:10:04 -0700996 getWorkspace().reinflateWidgetsIfNecessary();
Sunny Goyal22235bc2015-04-03 09:23:43 -0700997 reinflateQSBIfNecessary();
Adam Cohenf9426d52012-06-04 17:26:21 -0700998
Michael Jurka447bf842013-05-15 14:52:15 +0200999 if (DEBUG_RESUME_TIME) {
1000 Log.d(TAG, "Time spent in onResume: " + (System.currentTimeMillis() - startTime));
1001 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001002
1003 if (mWorkspace.getCustomContentCallbacks() != null) {
1004 // If we are resuming and the custom content is the current page, we call onShow().
1005 // It is also poassible that onShow will instead be called slightly after first layout
1006 // if PagedView#setRestorePage was set to the custom content page in onCreate().
1007 if (mWorkspace.isOnOrMovingToCustomContent()) {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001008 mWorkspace.getCustomContentCallbacks().onShow(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001009 }
1010 }
Winson Chungcd99cd32015-04-29 11:03:24 -07001011 updateInteraction(Workspace.State.NORMAL, mWorkspace.getState());
Adam Cohen53805212013-10-01 10:39:23 -07001012 mWorkspace.onResume();
Sunny Goyale755d462014-07-22 13:48:29 -07001013
Sunny Goyal756adbc2015-04-16 15:20:51 -07001014 if (!isWorkspaceLoading()) {
1015 // Process any items that were added while Launcher was away.
1016 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
1017 }
Adam Cohen9211d422014-10-07 18:14:53 -07001018
1019 if (mLauncherCallbacks != null) {
1020 mLauncherCallbacks.onResume();
1021 }
Adam Cohen06dff352012-06-01 17:17:08 -07001022 }
1023
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001024 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001025 protected void onPause() {
Winson Chung997a9232013-07-24 15:33:46 -07001026 // Ensure that items added to Launcher are queued until Launcher returns
1027 InstallShortcutReceiver.enableInstallQueue();
1028
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001029 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001030 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -08001031 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -07001032 mDragController.resetLastGestureUpTime();
Adam Cohen6fecd412013-10-02 17:41:50 -07001033
1034 // We call onHide() aggressively. The custom content callbacks should be able to
1035 // debounce excess onHide calls.
1036 if (mWorkspace.getCustomContentCallbacks() != null) {
1037 mWorkspace.getCustomContentCallbacks().onHide();
1038 }
Romain Guycbb89e42009-06-08 15:52:54 -07001039
Adam Cohen9211d422014-10-07 18:14:53 -07001040 if (mLauncherCallbacks != null) {
1041 mLauncherCallbacks.onPause();
Adam Cohenbffe7452013-07-22 18:21:45 -07001042 }
Adam Cohenbffe7452013-07-22 18:21:45 -07001043 }
1044
1045 public interface CustomContentCallbacks {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001046 // Custom content is completely shown. {@code fromResume} indicates whether this was caused
1047 // by a onResume or by scrolling otherwise.
1048 public void onShow(boolean fromResume);
Adam Cohenbffe7452013-07-22 18:21:45 -07001049
1050 // Custom content is completely hidden
1051 public void onHide();
Adam Cohenc36fa5c2013-08-29 11:54:42 -07001052
1053 // Custom content scroll progress changed. From 0 (not showing) to 1 (fully showing).
1054 public void onScrollProgressChanged(float progress);
Jan-Willem Maarse2ff91c42014-07-10 15:58:12 -07001055
1056 // Indicates whether the user is allowed to scroll away from the custom content.
1057 boolean isScrollingAllowed();
Adam Cohenbffe7452013-07-22 18:21:45 -07001058 }
1059
Adam Cohenc2d6e892014-10-16 09:49:24 -07001060 public interface LauncherOverlay {
1061
1062 /**
1063 * Touch interaction leading to overscroll has begun
1064 */
1065 public void onScrollInteractionBegin();
1066
1067 /**
1068 * Touch interaction related to overscroll has ended
1069 */
1070 public void onScrollInteractionEnd();
1071
1072 /**
1073 * Scroll progress, between 0 and 100, when the user scrolls beyond the leftmost
1074 * screen (or in the case of RTL, the rightmost screen).
1075 */
1076 public void onScrollChange(int progress, boolean rtl);
1077
1078 /**
1079 * Screen has stopped scrolling
1080 */
1081 public void onScrollSettled();
1082
1083 /**
1084 * This method can be called by the Launcher in order to force the LauncherOverlay
1085 * to exit fully immersive mode.
1086 */
1087 public void forceExitFullImmersion();
1088 }
1089
Jun Mukai8af0cd82015-05-12 12:32:12 -07001090 public interface LauncherSearchCallbacks {
1091 /**
1092 * Called when the search overlay is shown.
1093 */
1094 public void onSearchOverlayOpened();
1095
1096 /**
1097 * Called when the search overlay is dismissed.
1098 */
1099 public void onSearchOverlayClosed();
1100 }
1101
Adam Cohenc2d6e892014-10-16 09:49:24 -07001102 public interface LauncherOverlayCallbacks {
1103 /**
1104 * This method indicates whether a call to {@link #enterFullImmersion()} will succeed,
1105 * however it doesn't modify any state within the launcher.
1106 */
1107 public boolean canEnterFullImmersion();
1108
1109 /**
1110 * Should be called to tell Launcher that the LauncherOverlay will take over interaction,
1111 * eg. by occupying the full screen and handling all touch events.
1112 *
1113 * @return true if Launcher allows the LauncherOverlay to become fully immersive. In this
1114 * case, Launcher will modify any necessary state and assumes the overlay is
1115 * handling all interaction. If false, the LauncherOverlay should cancel any
1116 *
1117 */
1118 public boolean enterFullImmersion();
1119
1120 /**
1121 * Must be called when exiting fully immersive mode. Indicates to Launcher that it has
1122 * full control over UI and state.
1123 */
1124 public void exitFullImmersion();
1125 }
1126
1127 class LauncherOverlayCallbacksImpl implements LauncherOverlayCallbacks {
1128
1129 @Override
1130 public boolean canEnterFullImmersion() {
1131 return mState == State.WORKSPACE;
1132 }
1133
1134 @Override
1135 public boolean enterFullImmersion() {
1136 if (mState == State.WORKSPACE) {
1137 // When fully immersed, disregard any touches which fall through.
1138 mDragLayer.setBlockTouch(true);
1139 return true;
1140 }
1141 return false;
1142 }
1143
1144 @Override
1145 public void exitFullImmersion() {
1146 mDragLayer.setBlockTouch(false);
1147 }
1148 }
1149
Jorim Jaggid017f882014-01-14 17:08:48 -08001150 protected boolean hasSettings() {
Adam Cohen9211d422014-10-07 18:14:53 -07001151 if (mLauncherCallbacks != null) {
1152 return mLauncherCallbacks.hasSettings();
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07001153 } else {
1154 // On devices with a locked orientation, we will at least have the allow rotation
1155 // setting.
1156 return !Utilities.isRotationAllowedForDevice(this);
Adam Cohen9211d422014-10-07 18:14:53 -07001157 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001158 }
1159
Adam Cohen9211d422014-10-07 18:14:53 -07001160 public void addToCustomContentPage(View customContent,
Adam Cohen53805212013-10-01 10:39:23 -07001161 CustomContentCallbacks callbacks, String description) {
1162 mWorkspace.addToCustomContentPage(customContent, callbacks, description);
Adam Cohen66a01fd2013-06-11 12:48:00 -07001163 }
1164
Adam Cohenedb40762013-07-18 16:45:45 -07001165 // The custom content needs to offset its content to account for the QSB
1166 public int getTopOffsetForCustomContent() {
1167 return mWorkspace.getPaddingTop();
1168 }
1169
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001170 @Override
1171 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001172 // Flag the loader to stop early before switching
Adam Cohen1a85c582014-09-30 09:48:49 -07001173 if (mModel.isCurrentCallbacks(this)) {
1174 mModel.stopLoader();
1175 }
Hyunyoung Song3f471442015-04-08 19:01:34 -07001176 //TODO(hyunyoungs): stop the widgets loader when there is a rotation.
1177
Romain Guy13c2e7b2010-03-10 19:45:00 -08001178 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001179 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001180
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001181 // We can't hide the IME if it was forced open. So don't bother
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001182 @Override
1183 public void onWindowFocusChanged(boolean hasFocus) {
1184 super.onWindowFocusChanged(hasFocus);
Adam Cohened307df2013-10-02 09:37:31 -07001185 mHasFocus = hasFocus;
Adam Cohen9211d422014-10-07 18:14:53 -07001186
1187 if (mLauncherCallbacks != null) {
1188 mLauncherCallbacks.onWindowFocusChanged(hasFocus);
1189 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001190 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001191
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001192 private boolean acceptFilter() {
1193 final InputMethodManager inputManager = (InputMethodManager)
1194 getSystemService(Context.INPUT_METHOD_SERVICE);
1195 return !inputManager.isFullscreenMode();
1196 }
1197
1198 @Override
1199 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -07001200 final int uniChar = event.getUnicodeChar();
1201 final boolean handled = super.onKeyDown(keyCode, event);
1202 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
1203 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001204 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
1205 keyCode, event);
1206 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001207 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -07001208 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -07001209 // showSearchDialog()
1210 // If there are multiple keystrokes before the search dialog takes focus,
1211 // onSearchRequested() will be called for every keystroke,
1212 // but it is idempotent, so it's fine.
1213 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001214 }
1215 }
1216
Joe Onorato8a9625e2010-01-28 15:55:35 -08001217 // Eat the long press event so the keyboard doesn't come up.
1218 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
1219 return true;
1220 }
1221
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001222 return handled;
1223 }
1224
Karl Rosaen138a0412009-04-23 19:00:21 -07001225 private String getTypedText() {
1226 return mDefaultKeySsb.toString();
1227 }
1228
1229 private void clearTypedText() {
1230 mDefaultKeySsb.clear();
1231 mDefaultKeySsb.clearSpans();
1232 Selection.setSelection(mDefaultKeySsb, 0);
1233 }
1234
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001235 /**
Michael Jurka883f55b2010-10-21 15:47:14 -07001236 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
1237 * State
1238 */
1239 private static State intToState(int stateOrdinal) {
1240 State state = State.WORKSPACE;
1241 final State[] stateValues = State.values();
1242 for (int i = 0; i < stateValues.length; i++) {
1243 if (stateValues[i].ordinal() == stateOrdinal) {
1244 state = stateValues[i];
1245 break;
1246 }
1247 }
1248 return state;
1249 }
1250
1251 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001252 * Restores the previous state, if it exists.
1253 *
1254 * @param savedState The previous state.
1255 */
1256 private void restoreState(Bundle savedState) {
1257 if (savedState == null) {
1258 return;
1259 }
1260
Michael Jurka883f55b2010-10-21 15:47:14 -07001261 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungb745afb2015-03-02 11:51:23 -08001262 if (state == State.APPS || state == State.WIDGETS) {
1263 mOnResumeState = state;
Joe Onorato3a8820b2009-11-10 15:06:42 -08001264 }
1265
Adam Cohen21cd0022013-10-09 18:57:02 -07001266 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN,
1267 PagedView.INVALID_RESTORE_PAGE);
1268 if (currentScreen != PagedView.INVALID_RESTORE_PAGE) {
Winson Chung8c87cd82013-07-23 16:20:10 -07001269 mWorkspace.setRestorePage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001270 }
1271
Sunny Goyal756cd262015-08-20 12:33:21 -07001272 ContentValues itemValues = savedState.getParcelable(RUNTIME_STATE_PENDING_ADD_ITEM);
1273 if (itemValues != null) {
1274 mPendingAddInfo.readFromValues(itemValues);
Adam Cohenb823ae42015-03-27 18:07:52 -07001275 AppWidgetProviderInfo info = savedState.getParcelable(
1276 RUNTIME_STATE_PENDING_ADD_WIDGET_INFO);
Sunny Goyalf044bb12015-05-12 13:30:07 -07001277 mPendingAddWidgetInfo = info == null ?
1278 null : LauncherAppWidgetProviderInfo.fromProviderInfo(this, info);
1279
Adam Cohen4637b5a2013-11-04 18:21:24 -08001280 mPendingAddWidgetId = savedState.getInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID);
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001281 setWaitingForResult(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001282 mRestoring = true;
1283 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001284 }
1285
1286 /**
1287 * Finds all the views we need and configure them properly.
1288 */
1289 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -07001290 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -04001291
Craig Mautner360310b2012-10-26 15:13:08 -07001292 mLauncherView = findViewById(R.id.launcher);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001293 mFocusHandler = (FocusIndicatorView) findViewById(R.id.focus_indicator);
Winson Chung4c98d922011-05-31 16:50:48 -07001294 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
1295 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Anjali Koppalf5d29132014-02-28 13:33:27 -08001296 mWorkspace.setPageSwitchListener(this);
Winson Chunga6945242014-01-08 14:04:34 -08001297 mPageIndicators = mDragLayer.findViewById(R.id.page_indicator);
Craig Mautner360310b2012-10-26 15:13:08 -07001298
John Spurlock77e1f472013-09-11 10:09:51 -04001299 mLauncherView.setSystemUiVisibility(
1300 View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
Craig Mautner360310b2012-10-26 15:13:08 -07001301 mWorkspaceBackgroundDrawable = getResources().getDrawable(R.drawable.workspace_bg);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001302
Winson Chung4c98d922011-05-31 16:50:48 -07001303 // Setup the drag layer
1304 mDragLayer.setup(this, dragController);
1305
Winson Chung3d503fb2011-07-13 17:25:49 -07001306 // Setup the hotseat
1307 mHotseat = (Hotseat) findViewById(R.id.hotseat);
1308 if (mHotseat != null) {
Winson Chung11a1a532013-09-13 11:14:45 -07001309 mHotseat.setOnLongClickListener(this);
Winson Chung3d503fb2011-07-13 17:25:49 -07001310 }
1311
Jorim Jaggid017f882014-01-14 17:08:48 -08001312 mOverviewPanel = (ViewGroup) findViewById(R.id.overview_panel);
Tony Wickhamc75917f2015-09-02 16:11:09 -07001313 // Long-clicking buttons in the overview panel does the same thing as clicking them.
1314 OnLongClickListener performClickOnLongClick = new OnLongClickListener() {
1315 @Override
1316 public boolean onLongClick(View v) {
1317 return v.performClick();
1318 }
1319 };
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001320 mWidgetsButton = findViewById(R.id.widget_button);
1321 mWidgetsButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001322 @Override
Tony Wickhamc75917f2015-09-02 16:11:09 -07001323 public void onClick(View view) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001324 if (!mWorkspace.isSwitchingState()) {
Tony Wickhamc75917f2015-09-02 16:11:09 -07001325 onClickAddWidgetButton(view);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001326 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001327 }
1328 });
Tony Wickhamc75917f2015-09-02 16:11:09 -07001329 mWidgetsButton.setOnLongClickListener(performClickOnLongClick);
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001330 mWidgetsButton.setOnTouchListener(getHapticFeedbackTouchListener());
Adam Cohen61f560d2013-09-30 15:58:20 -07001331
1332 View wallpaperButton = findViewById(R.id.wallpaper_button);
1333 wallpaperButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001334 @Override
Tony Wickhamc75917f2015-09-02 16:11:09 -07001335 public void onClick(View view) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001336 if (!mWorkspace.isSwitchingState()) {
Tony Wickhamc75917f2015-09-02 16:11:09 -07001337 onClickWallpaperPicker(view);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001338 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001339 }
1340 });
Tony Wickhamc75917f2015-09-02 16:11:09 -07001341 wallpaperButton.setOnLongClickListener(performClickOnLongClick);
Adam Cohen61f560d2013-09-30 15:58:20 -07001342 wallpaperButton.setOnTouchListener(getHapticFeedbackTouchListener());
1343
1344 View settingsButton = findViewById(R.id.settings_button);
Jorim Jaggid017f882014-01-14 17:08:48 -08001345 if (hasSettings()) {
1346 settingsButton.setOnClickListener(new OnClickListener() {
1347 @Override
Tony Wickhamc75917f2015-09-02 16:11:09 -07001348 public void onClick(View view) {
Jorim Jaggid017f882014-01-14 17:08:48 -08001349 if (!mWorkspace.isSwitchingState()) {
Tony Wickhamc75917f2015-09-02 16:11:09 -07001350 onClickSettingsButton(view);
Jorim Jaggid017f882014-01-14 17:08:48 -08001351 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08001352 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001353 });
Tony Wickhamc75917f2015-09-02 16:11:09 -07001354 settingsButton.setOnLongClickListener(performClickOnLongClick);
Jorim Jaggid017f882014-01-14 17:08:48 -08001355 settingsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1356 } else {
1357 settingsButton.setVisibility(View.GONE);
Jorim Jaggid017f882014-01-14 17:08:48 -08001358 }
1359
Adam Cohendbdff6b2013-09-18 19:09:15 -07001360 mOverviewPanel.setAlpha(0f);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001361
Winson Chung4c98d922011-05-31 16:50:48 -07001362 // Setup the workspace
1363 mWorkspace.setHapticFeedbackEnabled(false);
1364 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -07001365 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -07001366 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001367
Winson Chungf0ea4d32011-06-06 14:27:16 -07001368 // Get the search/delete bar
Adam Cohen24ce0b32014-01-14 16:18:14 -08001369 mSearchDropTargetBar = (SearchDropTargetBar)
1370 mDragLayer.findViewById(R.id.search_drop_target_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001371
Winson Chungef7f8742015-06-04 17:18:17 -07001372 // Setup Apps and Widgets
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001373 mAppsView = (AllAppsContainerView) findViewById(R.id.apps_view);
Hyunyoung Song3f471442015-04-08 19:01:34 -07001374 mWidgetsView = (WidgetsContainerView) findViewById(R.id.widgets_view);
Winson Chungef7f8742015-06-04 17:18:17 -07001375 if (mLauncherCallbacks != null && mLauncherCallbacks.getAllAppsSearchBarController() != null) {
1376 mAppsView.setSearchBarController(mLauncherCallbacks.getAllAppsSearchBarController());
1377 } else {
1378 mAppsView.setSearchBarController(mAppsView.newDefaultAppSearchController());
1379 }
Craig Mautner360310b2012-10-26 15:13:08 -07001380
Winson Chung3d503fb2011-07-13 17:25:49 -07001381 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -07001382 dragController.setDragScoller(mWorkspace);
1383 dragController.setScrollView(mDragLayer);
1384 dragController.setMoveTarget(mWorkspace);
1385 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -07001386 if (mSearchDropTargetBar != null) {
1387 mSearchDropTargetBar.setup(this, dragController);
Adam Cohenb0df1b02015-03-18 22:21:40 -07001388 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Michael Jurkae0f5a612011-02-07 16:45:41 -08001389 }
Daniel Sandler924b9932013-06-12 00:38:25 -04001390
Daniel Sandlera127b7a2013-06-17 14:25:46 -04001391 if (getResources().getBoolean(R.bool.debug_memory_enabled)) {
Daniel Sandler924b9932013-06-12 00:38:25 -04001392 Log.v(TAG, "adding WeightWatcher");
Adam Cohen39a06042013-07-19 14:30:12 -07001393 mWeightWatcher = new WeightWatcher(this);
1394 mWeightWatcher.setAlpha(0.5f);
1395 ((FrameLayout) mLauncherView).addView(mWeightWatcher,
Daniel Sandler924b9932013-06-12 00:38:25 -04001396 new FrameLayout.LayoutParams(
1397 FrameLayout.LayoutParams.MATCH_PARENT,
Daniel Sandlerb9eb2862013-06-14 20:17:30 -04001398 FrameLayout.LayoutParams.WRAP_CONTENT,
Daniel Sandler924b9932013-06-12 00:38:25 -04001399 Gravity.BOTTOM)
1400 );
Adam Cohen39a06042013-07-19 14:30:12 -07001401
1402 boolean show = shouldShowWeightWatcher();
1403 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
Daniel Sandler924b9932013-06-12 00:38:25 -04001404 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001405 }
1406
1407 /**
Anjali Koppal5ad44842014-03-10 20:34:39 -07001408 * Sets the all apps button. This method is called from {@link Hotseat}.
1409 */
1410 public void setAllAppsButton(View allAppsButton) {
1411 mAllAppsButton = allAppsButton;
1412 }
1413
1414 public View getAllAppsButton() {
1415 return mAllAppsButton;
1416 }
1417
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001418 public View getWidgetsButton() {
1419 return mWidgetsButton;
1420 }
1421
Anjali Koppal5ad44842014-03-10 20:34:39 -07001422 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001423 * Creates a view representing a shortcut.
1424 *
1425 * @param info The data structure describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001426 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001427 View createShortcut(ShortcutInfo info) {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001428 return createShortcut((ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001429 }
1430
1431 /**
1432 * Creates a view representing a shortcut inflated from the specified resource.
1433 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001434 * @param parent The group the shortcut belongs to.
1435 * @param info The data structure describing the shortcut.
1436 *
1437 * @return A View inflated from layoutResId.
1438 */
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001439 public View createShortcut(ViewGroup parent, ShortcutInfo info) {
Sunny Goyal756cd262015-08-20 12:33:21 -07001440 BubbleTextView favorite = (BubbleTextView) getLayoutInflater().inflate(R.layout.app_icon,
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001441 parent, false);
1442 favorite.applyFromShortcutInfo(info, mIconCache);
1443 favorite.setCompoundDrawablePadding(mDeviceProfile.iconDrawablePaddingPx);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001444 favorite.setOnClickListener(this);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001445 favorite.setOnFocusChangeListener(mFocusHandler);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001446 return favorite;
1447 }
1448
1449 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001450 * Add a shortcut to the workspace.
1451 *
1452 * @param data The intent describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001453 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001454 private void completeAddShortcut(Intent data, long container, long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07001455 int cellY) {
1456 int[] cellXY = mTmpAddItemCellCoordinates;
Adam Cohendcd297f2013-06-18 13:13:40 -07001457 CellLayout layout = getCellLayout(container, screenId);
Romain Guycbb89e42009-06-08 15:52:54 -07001458
Sunny Goyal5c97f512015-05-19 16:03:28 -07001459 ShortcutInfo info = InstallShortcutReceiver.fromShortcutIntent(this, data);
Adam Cohend9198822011-11-22 16:42:47 -08001460 if (info == null) {
1461 return;
1462 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001463 final View view = createShortcut(info);
1464
Sunny Goyal5c97f512015-05-19 16:03:28 -07001465 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001466 // First we check if we already know the exact location where we want to add this item.
1467 if (cellX >= 0 && cellY >= 0) {
1468 cellXY[0] = cellX;
1469 cellXY[1] = cellY;
1470 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001471
1472 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001473 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001474 true, null,null)) {
1475 return;
1476 }
1477 DragObject dragObject = new DragObject();
1478 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001479 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1480 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001481 return;
1482 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08001483 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001484 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001485 }
1486
1487 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001488 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001489 return;
1490 }
1491
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001492 LauncherModel.addItemToDatabase(this, info, container, screenId, cellXY[0], cellXY[1]);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001493
1494 if (!mRestoring) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001495 mWorkspace.addInScreen(view, container, screenId, cellXY[0], cellXY[1], 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07001496 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001497 }
1498 }
1499
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001500 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001501 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001502 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001503 * @param appWidgetId The app widget id
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001504 */
Adam Cohen091440a2015-03-18 14:16:05 -07001505 @Thunk void completeAddAppWidget(int appWidgetId, long container, long screenId,
Adam Cohen59400422014-03-05 18:07:04 -08001506 AppWidgetHostView hostView, LauncherAppWidgetProviderInfo appWidgetInfo) {
1507
1508 ItemInfo info = mPendingAddInfo;
Adam Cohened66b2b2012-01-23 17:28:51 -08001509 if (appWidgetInfo == null) {
Adam Cohen59400422014-03-05 18:07:04 -08001510 appWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(this,
1511 mAppWidgetManager.getAppWidgetInfo(appWidgetId));
Adam Cohened66b2b2012-01-23 17:28:51 -08001512 }
Romain Guycbb89e42009-06-08 15:52:54 -07001513
Adam Cohen59400422014-03-05 18:07:04 -08001514 if (appWidgetInfo.isCustomWidget) {
1515 appWidgetId = LauncherAppWidgetInfo.CUSTOM_WIDGET_ID;
Michael Jurkaa63c4522010-08-19 13:52:27 -07001516 }
1517
Adam Cohen59400422014-03-05 18:07:04 -08001518 LauncherAppWidgetInfo launcherInfo;
1519 launcherInfo = new LauncherAppWidgetInfo(appWidgetId, appWidgetInfo.provider);
1520 launcherInfo.spanX = info.spanX;
1521 launcherInfo.spanY = info.spanY;
1522 launcherInfo.minSpanX = info.minSpanX;
1523 launcherInfo.minSpanY = info.minSpanY;
Sunny Goyalffe83f12014-08-14 17:39:34 -07001524 launcherInfo.user = mAppWidgetManager.getUser(appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001525
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001526 LauncherModel.addItemToDatabase(this, launcherInfo,
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001527 container, screenId, info.cellX, info.cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001528
1529 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001530 if (hostView == null) {
1531 // Perform actual inflation because we're live
Adam Cohen59400422014-03-05 18:07:04 -08001532 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId,
1533 appWidgetInfo);
Adam Cohened66b2b2012-01-23 17:28:51 -08001534 } else {
1535 // The AppWidgetHostView has already been inflated and instantiated
1536 launcherInfo.hostView = hostView;
1537 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001538 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001539 launcherInfo.hostView.setVisibility(View.VISIBLE);
Adam Cohenaaa5c212012-10-05 18:14:31 -07001540 launcherInfo.notifyWidgetSizeChanged(this);
1541
Adam Cohen59400422014-03-05 18:07:04 -08001542 mWorkspace.addInScreen(launcherInfo.hostView, container, screenId, info.cellX,
1543 info.cellY, launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001544
1545 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001546 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001547 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001548 }
Romain Guycbb89e42009-06-08 15:52:54 -07001549
Adam Cohended9f8d2010-11-03 13:25:16 -07001550 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1551 @Override
1552 public void onReceive(Context context, Intent intent) {
1553 final String action = intent.getAction();
1554 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1555 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001556 mDragLayer.clearAllResizeFrames();
Winson Chungb745afb2015-03-02 11:51:23 -08001557 updateAutoAdvanceState();
Winson Chung337cd9d2011-03-30 10:39:30 -07001558
Winson Chungc100e8e2011-08-09 16:02:43 -07001559 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001560 // processing a multi-step drop
Hyunyoung Song3f471442015-04-08 19:01:34 -07001561 if (mAppsView != null && mWidgetsView != null &&
Winson Chungb745afb2015-03-02 11:51:23 -08001562 mPendingAddInfo.container == ItemInfo.NO_ID) {
Adam Cohened307df2013-10-02 09:37:31 -07001563 showWorkspace(false);
Winson Chung785d2eb2011-04-14 16:08:02 -07001564 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001565 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1566 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08001567 updateAutoAdvanceState();
Dan Sandlerd5024042014-01-09 15:01:33 -05001568 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.DELETE_DATABASE.equals(action)) {
1569 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001570 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001571 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE);
1572 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.MIGRATE_DATABASE.equals(action)) {
1573 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001574 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001575 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE
1576 | LauncherModel.LOADER_FLAG_MIGRATE_SHORTCUTS);
Adam Cohended9f8d2010-11-03 13:25:16 -07001577 }
1578 }
1579 };
1580
1581 @Override
1582 public void onAttachedToWindow() {
1583 super.onAttachedToWindow();
1584
1585 // Listen for broadcasts related to user-presence
1586 final IntentFilter filter = new IntentFilter();
1587 filter.addAction(Intent.ACTION_SCREEN_OFF);
1588 filter.addAction(Intent.ACTION_USER_PRESENT);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001589 // For handling managed profiles
Dan Sandlerd5024042014-01-09 15:01:33 -05001590 if (ENABLE_DEBUG_INTENTS) {
1591 filter.addAction(DebugIntents.DELETE_DATABASE);
1592 filter.addAction(DebugIntents.MIGRATE_DATABASE);
1593 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001594 registerReceiver(mReceiver, filter);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001595 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Sunny Goyal9fc953b2015-08-17 12:24:25 -07001596 setupTransparentSystemBarsForLollipop();
Adam Cohend113e0c2010-11-11 10:48:05 -08001597 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001598 mVisible = true;
1599 }
1600
Adam Cohen0b395352014-06-09 22:54:36 +00001601 /**
Sunny Goyal9fc953b2015-08-17 12:24:25 -07001602 * Sets up transparent navigation and status bars in Lollipop.
Adam Cohen0b395352014-06-09 22:54:36 +00001603 * This method is a no-op for other platform versions.
1604 */
Sunny Goyald0091012015-01-20 15:55:34 -08001605 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Sunny Goyal9fc953b2015-08-17 12:24:25 -07001606 private void setupTransparentSystemBarsForLollipop() {
1607 if (Utilities.ATLEAST_LOLLIPOP) {
Sunny Goyald0091012015-01-20 15:55:34 -08001608 Window window = getWindow();
1609 window.getAttributes().systemUiVisibility |=
1610 (View.SYSTEM_UI_FLAG_LAYOUT_STABLE
1611 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
1612 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
1613 window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS
1614 | WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
1615 window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
1616 window.setStatusBarColor(Color.TRANSPARENT);
1617 window.setNavigationBarColor(Color.TRANSPARENT);
Adam Cohen0b395352014-06-09 22:54:36 +00001618 }
1619 }
1620
Adam Cohended9f8d2010-11-03 13:25:16 -07001621 @Override
1622 public void onDetachedFromWindow() {
1623 super.onDetachedFromWindow();
1624 mVisible = false;
1625
Adam Cohend113e0c2010-11-11 10:48:05 -08001626 if (mAttached) {
1627 unregisterReceiver(mReceiver);
1628 mAttached = false;
1629 }
Winson Chungb745afb2015-03-02 11:51:23 -08001630 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001631 }
1632
1633 public void onWindowVisibilityChanged(int visibility) {
1634 mVisible = visibility == View.VISIBLE;
Winson Chungb745afb2015-03-02 11:51:23 -08001635 updateAutoAdvanceState();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001636 // The following code used to be in onResume, but it turns out onResume is called when
1637 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1638 // is a more appropriate event to handle
1639 if (mVisible) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001640 if (!mWorkspaceLoading) {
1641 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001642 // We want to let Launcher draw itself at least once before we force it to build
1643 // layers on all the workspace pages, so that transitioning to Launcher from other
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001644 // apps is nice and speedy.
1645 observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001646 private boolean mStarted = false;
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001647 public void onDraw() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001648 if (mStarted) return;
1649 mStarted = true;
Michael Jurka6ee21d22012-02-21 18:20:27 -08001650 // We delay the layer building a bit in order to give
1651 // other message processing a time to run. In particular
1652 // this avoids a delay in hiding the IME if it was
1653 // currently shown, because doing that may involve
1654 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001655 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurkadf96add2013-04-03 16:25:02 -07001656 final ViewTreeObserver.OnDrawListener listener = this;
1657 mWorkspace.post(new Runnable() {
1658 public void run() {
Michael Jurkab68e03a2013-04-11 11:36:41 -07001659 if (mWorkspace != null &&
1660 mWorkspace.getViewTreeObserver() != null) {
1661 mWorkspace.getViewTreeObserver().
1662 removeOnDrawListener(listener);
1663 }
Michael Jurkadf96add2013-04-03 16:25:02 -07001664 }
1665 });
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001666 return;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001667 }
1668 });
1669 }
1670 clearTypedText();
1671 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001672 }
1673
Adam Cohen091440a2015-03-18 14:16:05 -07001674 @Thunk void sendAdvanceMessage(long delay) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001675 mHandler.removeMessages(ADVANCE_MSG);
1676 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1677 mHandler.sendMessageDelayed(msg, delay);
1678 mAutoAdvanceSentTime = System.currentTimeMillis();
1679 }
1680
Adam Cohen091440a2015-03-18 14:16:05 -07001681 @Thunk void updateAutoAdvanceState() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001682 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1683 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1684 mAutoAdvanceRunning = autoAdvanceRunning;
1685 if (autoAdvanceRunning) {
Sunny Goyal756cd262015-08-20 12:33:21 -07001686 long delay = mAutoAdvanceTimeLeft == -1 ? ADVANCE_INTERVAL : mAutoAdvanceTimeLeft;
Adam Cohended9f8d2010-11-03 13:25:16 -07001687 sendAdvanceMessage(delay);
1688 } else {
1689 if (!mWidgetsToAdvance.isEmpty()) {
Sunny Goyal756cd262015-08-20 12:33:21 -07001690 mAutoAdvanceTimeLeft = Math.max(0, ADVANCE_INTERVAL -
Adam Cohended9f8d2010-11-03 13:25:16 -07001691 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1692 }
1693 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001694 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001695 }
1696 }
1697 }
1698
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001699 @Thunk final Handler mHandler = new Handler(new Handler.Callback() {
1700
Adam Cohended9f8d2010-11-03 13:25:16 -07001701 @Override
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001702 public boolean handleMessage(Message msg) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001703 if (msg.what == ADVANCE_MSG) {
1704 int i = 0;
1705 for (View key: mWidgetsToAdvance.keySet()) {
1706 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
Sunny Goyal756cd262015-08-20 12:33:21 -07001707 final int delay = ADVANCE_STAGGER * i;
Adam Cohended9f8d2010-11-03 13:25:16 -07001708 if (v instanceof Advanceable) {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001709 mHandler.postDelayed(new Runnable() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001710 public void run() {
1711 ((Advanceable) v).advance();
1712 }
1713 }, delay);
1714 }
1715 i++;
1716 }
Sunny Goyal756cd262015-08-20 12:33:21 -07001717 sendAdvanceMessage(ADVANCE_INTERVAL);
Adam Cohended9f8d2010-11-03 13:25:16 -07001718 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001719 return true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001720 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001721 });
Adam Cohended9f8d2010-11-03 13:25:16 -07001722
1723 void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001724 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001725 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1726 if (v instanceof Advanceable) {
1727 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001728 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Winson Chungb745afb2015-03-02 11:51:23 -08001729 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001730 }
1731 }
1732
1733 void removeWidgetToAutoAdvance(View hostView) {
1734 if (mWidgetsToAdvance.containsKey(hostView)) {
1735 mWidgetsToAdvance.remove(hostView);
Winson Chungb745afb2015-03-02 11:51:23 -08001736 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001737 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001738 }
1739
Joe Onorato9c1289c2009-08-17 11:03:03 -04001740 public void removeAppWidget(LauncherAppWidgetInfo launcherInfo) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001741 removeWidgetToAutoAdvance(launcherInfo.hostView);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001742 launcherInfo.hostView = null;
1743 }
1744
Hyunyoung Song3f471442015-04-08 19:01:34 -07001745 public void showOutOfSpaceMessage(boolean isHotseatLayout) {
Winson Chung93eef082012-03-23 15:59:27 -07001746 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1747 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001748 }
1749
Winson Chunga6945242014-01-08 14:04:34 -08001750 public DragLayer getDragLayer() {
1751 return mDragLayer;
1752 }
1753
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001754 public AllAppsContainerView getAppsView() {
Winson Chungb745afb2015-03-02 11:51:23 -08001755 return mAppsView;
1756 }
1757
Hyunyoung Song3f471442015-04-08 19:01:34 -07001758 public WidgetsContainerView getWidgetsView() {
1759 return mWidgetsView;
Winson Chungb745afb2015-03-02 11:51:23 -08001760 }
1761
Winson Chunga6945242014-01-08 14:04:34 -08001762 public Workspace getWorkspace() {
1763 return mWorkspace;
1764 }
1765
1766 public Hotseat getHotseat() {
1767 return mHotseat;
1768 }
1769
Jorim Jaggid017f882014-01-14 17:08:48 -08001770 public ViewGroup getOverviewPanel() {
Winson Chunga6945242014-01-08 14:04:34 -08001771 return mOverviewPanel;
1772 }
1773
Winson Chung006ee262015-08-03 14:40:11 -07001774 public SearchDropTargetBar getSearchDropTargetBar() {
Winson Chunga6945242014-01-08 14:04:34 -08001775 return mSearchDropTargetBar;
1776 }
1777
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001778 public LauncherAppWidgetHost getAppWidgetHost() {
1779 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001780 }
Romain Guycbb89e42009-06-08 15:52:54 -07001781
Winson Chunga9abd0e2010-10-27 17:18:37 -07001782 public LauncherModel getModel() {
1783 return mModel;
1784 }
1785
Winson Chunga6945242014-01-08 14:04:34 -08001786 protected SharedPreferences getSharedPrefs() {
1787 return mSharedPrefs;
1788 }
1789
Adam Cohen2e6da152015-05-06 11:42:25 -07001790 public DeviceProfile getDeviceProfile() {
1791 return mDeviceProfile;
1792 }
1793
Bjorn Bringertc459e522013-06-07 19:36:01 +01001794 public void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001795 getWindow().closeAllPanels();
1796
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001797 // Whatever we were doing is hereby canceled.
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001798 setWaitingForResult(false);
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001799 }
1800
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001801 @Override
1802 protected void onNewIntent(Intent intent) {
Michael Jurka447bf842013-05-15 14:52:15 +02001803 long startTime = 0;
1804 if (DEBUG_RESUME_TIME) {
1805 startTime = System.currentTimeMillis();
1806 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001807 super.onNewIntent(intent);
1808
1809 // Close the menu
Winson15f8b172015-08-19 11:02:39 -07001810 Folder openFolder = mWorkspace.getOpenFolder();
1811 boolean alreadyOnHome = mHasFocus && ((intent.getFlags() &
1812 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1813 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
Winson16615f22015-08-31 11:32:38 -07001814 boolean moveToDefaultScreen = mLauncherCallbacks != null ?
1815 mLauncherCallbacks.shouldMoveToDefaultScreenOnHomeIntent() : true;
Winson15f8b172015-08-19 11:02:39 -07001816 boolean isActionMain = Intent.ACTION_MAIN.equals(intent.getAction());
1817 if (isActionMain) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001818 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001819 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001820
Adam Cohen6fecd412013-10-02 17:41:50 -07001821 if (mWorkspace == null) {
1822 // Can be cases where mWorkspace is null, this prevents a NPE
1823 return;
1824 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001825 // In all these cases, only animate if we're already on home
1826 mWorkspace.exitWidgetResizeMode();
Adam Cohen9211d422014-10-07 18:14:53 -07001827
Adam Cohen6fecd412013-10-02 17:41:50 -07001828 closeFolder();
1829 exitSpringLoadedDragMode();
1830
1831 // If we are already on home, then just animate back to the workspace,
1832 // otherwise, just wait until onResume to set the state back to Workspace
1833 if (alreadyOnHome) {
Adam Cohened307df2013-10-02 09:37:31 -07001834 showWorkspace(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001835 } else {
1836 mOnResumeState = State.WORKSPACE;
1837 }
1838
1839 final View v = getWindow().peekDecorView();
1840 if (v != null && v.getWindowToken() != null) {
1841 InputMethodManager imm = (InputMethodManager)getSystemService(
1842 INPUT_METHOD_SERVICE);
1843 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1844 }
1845
Winson Chungb745afb2015-03-02 11:51:23 -08001846 // Reset the apps view
1847 if (!alreadyOnHome && mAppsView != null) {
1848 mAppsView.scrollToTop();
1849 }
1850
Hyunyoung Song3f471442015-04-08 19:01:34 -07001851 // Reset the widgets view
1852 if (!alreadyOnHome && mWidgetsView != null) {
1853 mWidgetsView.scrollToTop();
Adam Cohen6fecd412013-10-02 17:41:50 -07001854 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001855
Adam Cohen9211d422014-10-07 18:14:53 -07001856 if (mLauncherCallbacks != null) {
1857 mLauncherCallbacks.onHomeIntent();
1858 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001859 }
Adam Cohened307df2013-10-02 09:37:31 -07001860
Adam Cohen9211d422014-10-07 18:14:53 -07001861 if (mLauncherCallbacks != null) {
1862 mLauncherCallbacks.onNewIntent(intent);
1863 }
Winson15f8b172015-08-19 11:02:39 -07001864
1865 // Defer moving to the default screen until after we callback to the LauncherCallbacks
1866 // as slow logic in the callbacks eat into the time the scroller expects for the snapToPage
1867 // animation.
1868 if (isActionMain) {
Winson15f8b172015-08-19 11:02:39 -07001869 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
1870 openFolder == null && moveToDefaultScreen) {
1871 mWorkspace.post(new Runnable() {
1872 @Override
1873 public void run() {
1874 mWorkspace.moveToDefaultScreen(true);
1875 }
1876 });
1877 }
1878 }
1879
1880 if (DEBUG_RESUME_TIME) {
1881 Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime));
1882 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001883 }
1884
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001885 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001886 public void onRestoreInstanceState(Bundle state) {
1887 super.onRestoreInstanceState(state);
1888 for (int page: mSynchronouslyBoundPages) {
1889 mWorkspace.restoreInstanceStateForChild(page);
1890 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001891 }
1892
1893 @Override
1894 protected void onSaveInstanceState(Bundle outState) {
Adam Cohen21cd0022013-10-09 18:57:02 -07001895 if (mWorkspace.getChildCount() > 0) {
Winson Chung9b9fb962013-11-15 15:39:34 -08001896 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN,
1897 mWorkspace.getCurrentPageOffsetFromCustomContent());
Adam Cohen21cd0022013-10-09 18:57:02 -07001898 }
Adam Cohen95bb8002011-07-03 23:40:28 -07001899 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001900
Michael Jurka883f55b2010-10-21 15:47:14 -07001901 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001902 // We close any open folder since it will not be re-opened, and we need to make sure
1903 // this state is reflected.
1904 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001905
Adam Cohendcd297f2013-06-18 13:13:40 -07001906 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screenId > -1 &&
Winson Chung3d503fb2011-07-13 17:25:49 -07001907 mWaitingForResult) {
Sunny Goyal756cd262015-08-20 12:33:21 -07001908 ContentValues itemValues = new ContentValues();
1909 mPendingAddInfo.writeToValues(itemValues);
1910 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_ITEM, itemValues);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001911 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
Adam Cohen4637b5a2013-11-04 18:21:24 -08001912 outState.putInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID, mPendingAddWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001913 }
1914
Hyunyoung Song3f471442015-04-08 19:01:34 -07001915 // Save the current widgets tray?
1916 // TODO(hyunyoungs)
Adam Cohen9211d422014-10-07 18:14:53 -07001917
1918 if (mLauncherCallbacks != null) {
1919 mLauncherCallbacks.onSaveInstanceState(outState);
1920 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001921 }
1922
1923 @Override
1924 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001925 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001926
Winson Chunge7a03942011-08-05 15:05:12 -07001927 // Remove all pending runnables
1928 mHandler.removeMessages(ADVANCE_MSG);
1929 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07001930 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07001931
Winson Chungcd2b0142011-06-08 16:02:26 -07001932 // Stop callbacks from LauncherModel
Daniel Sandlercc8befa2013-06-11 14:45:48 -04001933 LauncherAppState app = (LauncherAppState.getInstance());
Adam Cohen1a85c582014-09-30 09:48:49 -07001934
1935 // It's possible to receive onDestroy after a new Launcher activity has
1936 // been created. In this case, don't interfere with the new Launcher.
1937 if (mModel.isCurrentCallbacks(this)) {
1938 mModel.stopLoader();
1939 app.setLauncher(null);
1940 }
Winson Chungcd2b0142011-06-08 16:02:26 -07001941
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001942 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001943 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001944 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001945 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001946 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001947 mAppWidgetHost = null;
1948
1949 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001950
1951 TextKeyListener.getInstance().release();
1952
Joe Onorato34a0e1b2009-12-14 17:44:51 -08001953 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001954
Adam Cohenaccf3bf2012-04-30 16:07:43 -07001955 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001956 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
Adam Cohend552dd92013-11-26 12:13:11 -08001957 mWorkspace.removeAllWorkspaceScreens();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001958 mWorkspace = null;
1959 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08001960
Michael Jurka2ecf9952012-06-18 12:52:28 -07001961 LauncherAnimUtils.onDestroyActivity();
Adam Cohen9211d422014-10-07 18:14:53 -07001962
1963 if (mLauncherCallbacks != null) {
1964 mLauncherCallbacks.onDestroy();
1965 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001966 }
1967
Adam Cohena9cf38f2011-05-02 15:36:58 -07001968 public DragController getDragController() {
1969 return mDragController;
1970 }
1971
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001972 @Override
1973 public void startActivityForResult(Intent intent, int requestCode) {
Adam Cohen173f7112015-03-27 15:14:00 -07001974 onStartForResult(requestCode);
1975 super.startActivityForResult(intent, requestCode);
1976 }
1977
1978 @Override
1979 public void startIntentSenderForResult (IntentSender intent, int requestCode,
1980 Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) {
1981 onStartForResult(requestCode);
1982 try {
1983 super.startIntentSenderForResult(intent, requestCode,
1984 fillInIntent, flagsMask, flagsValues, extraFlags, options);
1985 } catch (IntentSender.SendIntentException e) {
1986 throw new ActivityNotFoundException();
1987 }
1988 }
1989
1990 private void onStartForResult(int requestCode) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001991 if (requestCode >= 0) {
1992 setWaitingForResult(true);
1993 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001994 }
1995
Winson Chung70d72102011-08-12 11:24:35 -07001996 /**
1997 * Indicates that we want global search for this activity by setting the globalSearch
1998 * argument for {@link #startSearch} to true.
1999 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002000 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07002001 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002002 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002003
Karl Rosaen138a0412009-04-23 19:00:21 -07002004 if (initialQuery == null) {
2005 // Use any text typed in the launcher as the initial query
2006 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07002007 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002008 if (appSearchData == null) {
2009 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01002010 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002011 }
Winson Chungadf0c182012-08-23 14:59:07 -07002012 Rect sourceBounds = new Rect();
2013 if (mSearchDropTargetBar != null) {
2014 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
2015 }
Romain Guycbb89e42009-06-08 15:52:54 -07002016
Ian Parkinson047036e2014-09-01 15:40:53 +01002017 boolean clearTextImmediately = startSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002018 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002019 if (clearTextImmediately) {
2020 clearTypedText();
2021 }
Winson Chungcd99cd32015-04-29 11:03:24 -07002022
2023 // We need to show the workspace after starting the search
2024 showWorkspace(true);
Bjorn Bringertc459e522013-06-07 19:36:01 +01002025 }
2026
Ian Parkinson047036e2014-09-01 15:40:53 +01002027 /**
2028 * Start a text search.
2029 *
2030 * @return {@code true} if the search will start immediately, so any further keypresses
2031 * will be handled directly by the search UI. {@code false} if {@link Launcher} should continue
2032 * to buffer keypresses.
2033 */
2034 public boolean startSearch(String initialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002035 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Adam Cohen9211d422014-10-07 18:14:53 -07002036 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
2037 return mLauncherCallbacks.startSearch(initialQuery, selectInitialQuery, appSearchData,
2038 sourceBounds);
2039 }
2040
Michael Jurkaa33411c2012-06-14 16:18:21 -07002041 startGlobalSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002042 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002043 return false;
Michael Jurkaa33411c2012-06-14 16:18:21 -07002044 }
2045
2046 /**
2047 * Starts the global search activity. This code is a copied from SearchManager
2048 */
Bjorn Bringertc459e522013-06-07 19:36:01 +01002049 private void startGlobalSearch(String initialQuery,
Michael Jurkaa33411c2012-06-14 16:18:21 -07002050 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002051 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07002052 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2053 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
2054 if (globalSearchActivity == null) {
2055 Log.w(TAG, "No global search activity found.");
2056 return;
2057 }
2058 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
2059 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2060 intent.setComponent(globalSearchActivity);
2061 // Make sure that we have a Bundle to put source in
2062 if (appSearchData == null) {
2063 appSearchData = new Bundle();
2064 } else {
2065 appSearchData = new Bundle(appSearchData);
2066 }
Adam Cohen9211d422014-10-07 18:14:53 -07002067 // Set source to package name of app that starts global search if not set already.
Michael Jurkaa33411c2012-06-14 16:18:21 -07002068 if (!appSearchData.containsKey("source")) {
2069 appSearchData.putString("source", getPackageName());
2070 }
2071 intent.putExtra(SearchManager.APP_DATA, appSearchData);
2072 if (!TextUtils.isEmpty(initialQuery)) {
2073 intent.putExtra(SearchManager.QUERY, initialQuery);
2074 }
2075 if (selectInitialQuery) {
2076 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
2077 }
2078 intent.setSourceBounds(sourceBounds);
2079 try {
2080 startActivity(intent);
2081 } catch (ActivityNotFoundException ex) {
2082 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
2083 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002084 }
2085
Winson Chungbedf9232015-07-10 12:38:30 -07002086 public void startSearchFromAllApps(View v, Intent searchIntent, String searchQuery) {
2087 if (mLauncherCallbacks != null && mLauncherCallbacks.startSearchFromAllApps(searchQuery)) {
2088 return;
2089 }
2090
2091 // If not handled, then just start the provided search intent
2092 startActivitySafely(v, searchIntent, null);
2093 }
2094
Yura4f93ec62014-02-04 14:15:21 +00002095 public boolean isOnCustomContent() {
2096 return mWorkspace.isOnOrMovingToCustomContent();
2097 }
2098
Winson Chung70d72102011-08-12 11:24:35 -07002099 @Override
Winson Chung70d72102011-08-12 11:24:35 -07002100 public boolean onPrepareOptionsMenu(Menu menu) {
2101 super.onPrepareOptionsMenu(menu);
Yura4f93ec62014-02-04 14:15:21 +00002102 if (!isOnCustomContent()) {
2103 // Close any open folders
2104 closeFolder();
2105 // Stop resizing any widgets
2106 mWorkspace.exitWidgetResizeMode();
2107 if (!mWorkspace.isInOverviewMode()) {
2108 // Show the overview mode
2109 showOverviewMode(true);
2110 } else {
2111 showWorkspace(true);
2112 }
Winson Chunge0298742014-01-17 12:03:00 -08002113 }
Adam Cohen9211d422014-10-07 18:14:53 -07002114 if (mLauncherCallbacks != null) {
2115 return mLauncherCallbacks.onPrepareOptionsMenu(menu);
2116 }
2117
Michael Jurkab94f3f82013-09-11 18:08:54 +02002118 return false;
Winson Chung70d72102011-08-12 11:24:35 -07002119 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002120
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002121 @Override
2122 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07002123 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07002124 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07002125 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002126 }
2127
Joe Onorato9c1289c2009-08-17 11:03:03 -04002128 public boolean isWorkspaceLocked() {
2129 return mWorkspaceLoading || mWaitingForResult;
2130 }
2131
Adam Cohen517a7f52014-03-01 12:12:59 -08002132 public boolean isWorkspaceLoading() {
2133 return mWorkspaceLoading;
2134 }
2135
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002136 private void setWorkspaceLoading(boolean value) {
2137 boolean isLocked = isWorkspaceLocked();
2138 mWorkspaceLoading = value;
2139 if (isLocked != isWorkspaceLocked()) {
2140 onWorkspaceLockedChanged();
2141 }
2142 }
2143
2144 private void setWaitingForResult(boolean value) {
2145 boolean isLocked = isWorkspaceLocked();
2146 mWaitingForResult = value;
2147 if (isLocked != isWorkspaceLocked()) {
2148 onWorkspaceLockedChanged();
2149 }
2150 }
2151
Adam Cohen9211d422014-10-07 18:14:53 -07002152 protected void onWorkspaceLockedChanged() {
2153 if (mLauncherCallbacks != null) {
2154 mLauncherCallbacks.onWorkspaceLockedChanged();
2155 }
2156 }
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002157
Michael Jurka0280c3b2010-09-17 15:00:07 -07002158 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07002159 mPendingAddInfo.container = ItemInfo.NO_ID;
Adam Cohendcd297f2013-06-18 13:13:40 -07002160 mPendingAddInfo.screenId = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002161 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
2162 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Sunny Goyal233ee962015-08-03 13:05:01 -07002163 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = 1;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002164 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07002165
Sunny Goyale6b63a32015-01-16 16:14:29 -08002166 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info, final
Adam Cohen59400422014-03-05 18:07:04 -08002167 AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo) {
Adam Cohenad4e15c2013-10-17 16:21:35 -07002168 addAppWidgetImpl(appWidgetId, info, boundWidget, appWidgetInfo, 0);
2169 }
2170
Sunny Goyale6b63a32015-01-16 16:14:29 -08002171 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
Adam Cohen59400422014-03-05 18:07:04 -08002172 final AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo,
2173 int delay) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002174 if (appWidgetInfo.configure != null) {
2175 mPendingAddWidgetInfo = appWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -08002176 mPendingAddWidgetId = appWidgetId;
Michael Jurkaaf442092010-06-10 17:01:57 -07002177
Bjorn Bringert7984c942009-12-09 15:38:25 +00002178 // Launch over to configure widget, if needed
Sunny Goyalffe83f12014-08-14 17:39:34 -07002179 mAppWidgetManager.startConfigActivity(appWidgetInfo, appWidgetId, this,
2180 mAppWidgetHost, REQUEST_CREATE_APPWIDGET);
2181
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002182 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00002183 // Otherwise just add it
Adam Cohenad4e15c2013-10-17 16:21:35 -07002184 Runnable onComplete = new Runnable() {
2185 @Override
2186 public void run() {
2187 // Exit spring loaded mode if necessary after adding the widget
2188 exitSpringLoadedDragModeDelayed(true, EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT,
2189 null);
2190 }
2191 };
Adam Cohendcd297f2013-06-18 13:13:40 -07002192 completeAddAppWidget(appWidgetId, info.container, info.screenId, boundWidget,
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002193 appWidgetInfo);
Adam Cohen689ff162014-05-08 17:27:56 -07002194 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, delay, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002195 }
2196 }
Romain Guycbb89e42009-06-08 15:52:54 -07002197
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002198 protected void moveToCustomContentScreen(boolean animate) {
Sandeep Siddharthaf2b47f12013-09-26 19:49:27 -07002199 // Close any folders that may be open.
2200 closeFolder();
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002201 mWorkspace.moveToCustomContentScreen(animate);
2202 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002203
2204 public void addPendingItem(PendingAddItemInfo info, long container, long screenId,
2205 int[] cell, int spanX, int spanY) {
2206 switch (info.itemType) {
2207 case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET:
2208 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
2209 int span[] = new int[2];
2210 span[0] = spanX;
2211 span[1] = spanY;
2212 addAppWidgetFromDrop((PendingAddWidgetInfo) info,
2213 container, screenId, cell, span);
2214 break;
2215 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
2216 processShortcutFromDrop(info.componentName, container, screenId, cell);
2217 break;
2218 default:
2219 throw new IllegalStateException("Unknown item type: " + info.itemType);
2220 }
2221 }
2222
Adam Cohenfbba09b2011-07-18 21:43:05 -07002223 /**
2224 * Process a shortcut drop.
2225 *
2226 * @param componentName The name of the component
Adam Cohendcd297f2013-06-18 13:13:40 -07002227 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002228 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002229 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002230 private void processShortcutFromDrop(ComponentName componentName, long container, long screenId,
2231 int[] cell) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002232 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002233 mPendingAddInfo.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002234 mPendingAddInfo.screenId = screenId;
Adam Cohenfbba09b2011-07-18 21:43:05 -07002235
2236 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002237 mPendingAddInfo.cellX = cell[0];
2238 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002239 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002240
2241 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
2242 createShortcutIntent.setComponent(componentName);
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002243 Utilities.startActivityForResultSafely(this, createShortcutIntent, REQUEST_CREATE_SHORTCUT);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002244 }
2245
Adam Cohenfbba09b2011-07-18 21:43:05 -07002246 /**
2247 * Process a widget drop.
2248 *
2249 * @param info The PendingAppWidgetInfo of the widget being added.
Adam Cohendcd297f2013-06-18 13:13:40 -07002250 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002251 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002252 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002253 private void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, long screenId,
2254 int[] cell, int[] span) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07002255 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002256 mPendingAddInfo.container = info.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002257 mPendingAddInfo.screenId = info.screenId = screenId;
Adam Cohend41fbf52012-02-16 23:53:59 -08002258 mPendingAddInfo.minSpanX = info.minSpanX;
2259 mPendingAddInfo.minSpanY = info.minSpanY;
2260
Adam Cohenfbba09b2011-07-18 21:43:05 -07002261 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002262 mPendingAddInfo.cellX = cell[0];
2263 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002264 }
Adam Cohend41fbf52012-02-16 23:53:59 -08002265 if (span != null) {
2266 mPendingAddInfo.spanX = span[0];
2267 mPendingAddInfo.spanY = span[1];
2268 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002269
Adam Cohened66b2b2012-01-23 17:28:51 -08002270 AppWidgetHostView hostView = info.boundWidget;
2271 int appWidgetId;
2272 if (hostView != null) {
2273 appWidgetId = hostView.getAppWidgetId();
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002274 addAppWidgetImpl(appWidgetId, info, hostView, info.info);
Sunny Goyal5b9ebca2015-06-01 18:37:32 -07002275
2276 // Clear the boundWidget so that it doesn't get destroyed.
2277 info.boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -08002278 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002279 // In this case, we either need to start an activity to get permission to bind
2280 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08002281 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07002282 Bundle options = info.bindOptions;
2283
Sunny Goyalffe83f12014-08-14 17:39:34 -07002284 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
2285 appWidgetId, info.info, options);
Adam Cohendd70d662012-10-04 16:53:44 -07002286 if (success) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002287 addAppWidgetImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07002288 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002289 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07002290 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
2291 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
2292 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Sunny Goyalffe83f12014-08-14 17:39:34 -07002293 mAppWidgetManager.getUser(mPendingAddWidgetInfo)
2294 .addToIntent(intent, AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE);
Adam Cohendd70d662012-10-04 16:53:44 -07002295 // TODO: we need to make sure that this accounts for the options bundle.
2296 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07002297 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
2298 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002299 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002300 }
2301
Adam Cohendcd297f2013-06-18 13:13:40 -07002302 FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07002303 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07002304 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002305 folderInfo.title = getText(R.string.folder_name);
2306
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002307 // Update the model
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07002308 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId,
2309 cellX, cellY);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002310 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002311
2312 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07002313 FolderIcon newFolder =
2314 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07002315 mWorkspace.addInScreen(newFolder, container, screenId, cellX, cellY, 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07002316 isWorkspaceLocked());
Winson Chung5f8afe62013-08-12 16:19:28 -07002317 // Force measure the new folder icon
2318 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
2319 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07002320 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002321 }
Romain Guycbb89e42009-06-08 15:52:54 -07002322
Joe Onorato9c1289c2009-08-17 11:03:03 -04002323 void removeFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002324 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002325 }
2326
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002327 @Override
2328 public boolean dispatchKeyEvent(KeyEvent event) {
2329 if (event.getAction() == KeyEvent.ACTION_DOWN) {
2330 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002331 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07002332 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08002333 case KeyEvent.KEYCODE_VOLUME_DOWN:
Sunny Goyal4bbf4192014-11-11 12:23:59 -08002334 if (Utilities.isPropertyEnabled(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08002335 dumpState();
2336 return true;
2337 }
2338 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07002339 }
2340 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2341 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07002342 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002343 return true;
2344 }
2345 }
2346
2347 return super.dispatchKeyEvent(event);
2348 }
2349
Joe Onorato88ec0992009-11-19 13:16:06 -08002350 @Override
2351 public void onBackPressed() {
Adam Cohen9211d422014-10-07 18:14:53 -07002352 if (mLauncherCallbacks != null && mLauncherCallbacks.handleBackPressed()) {
2353 return;
2354 }
2355
Sunny Goyal45478022015-06-08 16:52:41 -07002356 if (mDragController.isDragging()) {
2357 mDragController.cancelDrag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08002358 return;
2359 }
2360
Winson Chungb745afb2015-03-02 11:51:23 -08002361 if (isAppsViewVisible()) {
2362 showWorkspace(true);
2363 } else if (isWidgetsViewVisible()) {
2364 showOverviewMode(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002365 } else if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002366 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002367 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07002368 Folder openFolder = mWorkspace.getOpenFolder();
2369 if (openFolder.isEditingName()) {
2370 openFolder.dismissEditingName();
2371 } else {
2372 closeFolder();
2373 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002374 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08002375 mWorkspace.exitWidgetResizeMode();
2376
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002377 // Back button is a no-op here, but give at least some feedback for the button press
2378 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07002379 }
Joe Onorato88ec0992009-11-19 13:16:06 -08002380 }
2381
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002382 /**
Sunny Goyal383c5072015-06-12 21:18:53 -07002383 * Re-listen when widget host is reset.
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002384 */
Sunny Goyal383c5072015-06-12 21:18:53 -07002385 @Override
2386 public void onAppWidgetHostReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08002387 if (mAppWidgetHost != null) {
2388 mAppWidgetHost.startListening();
2389 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002390 }
2391
2392 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002393 * Launches the intent referred by the clicked shortcut.
2394 *
2395 * @param v The view representing the clicked shortcut.
2396 */
2397 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002398 // Make sure that rogue clicks don't get through while allapps is launching, or after the
2399 // view has detached (it's possible for this to happen if the view is removed mid touch).
2400 if (v.getWindowToken() == null) {
2401 return;
2402 }
2403
Winson Chung9b0b2fe2012-02-24 13:03:34 -08002404 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002405 return;
2406 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07002407
Adam Cohen1697b792013-09-17 19:08:21 -07002408 if (v instanceof Workspace) {
2409 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002410 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002411 }
2412 return;
2413 }
2414
2415 if (v instanceof CellLayout) {
2416 if (mWorkspace.isInOverviewMode()) {
Sunny Goyalce5a7e52015-07-08 15:44:27 -07002417 mWorkspace.snapToPageFromOverView(mWorkspace.indexOfChild(v));
2418 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002419 }
Sunny Goyalce5a7e52015-07-08 15:44:27 -07002420 return;
Adam Cohenf358a4b2013-07-23 16:47:31 -07002421 }
2422
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002423 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002424 if (tag instanceof ShortcutInfo) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002425 onClickAppShortcut(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002426 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002427 if (v instanceof FolderIcon) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002428 onClickFolderIcon(v);
Adam Cohena9cf38f2011-05-02 15:36:58 -07002429 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002430 } else if (v == mAllAppsButton) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002431 onClickAllAppsButton(v);
Sunny Goyal508da152014-08-14 10:53:27 -07002432 } else if (tag instanceof AppInfo) {
2433 startAppShortcutOrInfoActivity(v);
Sunny Goyalff572272014-07-23 13:58:07 -07002434 } else if (tag instanceof LauncherAppWidgetInfo) {
2435 if (v instanceof PendingAppWidgetHostView) {
2436 onClickPendingWidget((PendingAppWidgetHostView) v);
2437 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002438 }
2439 }
2440
Sunny Goyal70660032015-05-14 00:07:08 -07002441 @SuppressLint("ClickableViewAccessibility")
Michael Jurka0e260592010-06-30 17:07:39 -07002442 public boolean onTouch(View v, MotionEvent event) {
Michael Jurka0e260592010-06-30 17:07:39 -07002443 return false;
2444 }
2445
Michael Jurkaaf442092010-06-10 17:01:57 -07002446 /**
Sunny Goyalff572272014-07-23 13:58:07 -07002447 * Event handler for the app widget view which has not fully restored.
2448 */
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002449 public void onClickPendingWidget(final PendingAppWidgetHostView v) {
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002450 if (mIsSafeModeEnabled) {
2451 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2452 return;
2453 }
2454
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002455 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) v.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07002456 if (v.isReadyForClickSetup()) {
Sunny Goyalff572272014-07-23 13:58:07 -07002457 int widgetId = info.appWidgetId;
2458 AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
2459 if (appWidgetInfo != null) {
Adam Cohen59400422014-03-05 18:07:04 -08002460 mPendingAddWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(
2461 this, appWidgetInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07002462 mPendingAddInfo.copyFrom(info);
2463 mPendingAddWidgetId = widgetId;
2464
Sunny Goyalffe83f12014-08-14 17:39:34 -07002465 AppWidgetManagerCompat.getInstance(this).startConfigActivity(appWidgetInfo,
2466 info.appWidgetId, this, mAppWidgetHost, REQUEST_RECONFIGURE_APPWIDGET);
Sunny Goyalff572272014-07-23 13:58:07 -07002467 }
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002468 } else if (info.installProgress < 0) {
2469 // The install has not been queued
2470 final String packageName = info.providerName.getPackageName();
2471 showBrokenAppInstallDialog(packageName,
2472 new DialogInterface.OnClickListener() {
2473 public void onClick(DialogInterface dialog, int id) {
2474 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
2475 }
2476 });
2477 } else {
2478 // Download has started.
2479 final String packageName = info.providerName.getPackageName();
2480 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
Sunny Goyalff572272014-07-23 13:58:07 -07002481 }
2482 }
2483
2484 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002485 * Event handler for the "grid" button that appears on the home screen, which
2486 * enters all apps mode.
2487 *
2488 * @param v The view that was clicked.
2489 */
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002490 protected void onClickAllAppsButton(View v) {
2491 if (LOGD) Log.d(TAG, "onClickAllAppsButton");
Winson Chung76648c52015-07-10 14:33:23 -07002492 if (!isAppsViewVisible()) {
Winson Chung4ac30062015-05-08 17:34:17 -07002493 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07002494 true /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungbedf9232015-07-10 12:38:30 -07002495
2496 if (mLauncherCallbacks != null) {
2497 mLauncherCallbacks.onClickAllAppsButton(v);
2498 }
Winson Chung76648c52015-07-10 14:33:23 -07002499 }
2500 }
2501
2502 protected void onLongClickAllAppsButton(View v) {
2503 if (LOGD) Log.d(TAG, "onLongClickAllAppsButton");
2504 if (!isAppsViewVisible()) {
2505 showAppsView(true /* animated */, false /* resetListToTop */,
2506 true /* updatePredictedApps */, true /* focusSearchBar */);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002507 }
2508 }
2509
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002510 private void showBrokenAppInstallDialog(final String packageName,
2511 DialogInterface.OnClickListener onSearchClickListener) {
Sunny Goyale03b8122014-10-08 09:55:24 -07002512 new AlertDialog.Builder(this)
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002513 .setTitle(R.string.abandoned_promises_title)
2514 .setMessage(R.string.abandoned_promise_explanation)
2515 .setPositiveButton(R.string.abandoned_search, onSearchClickListener)
2516 .setNeutralButton(R.string.abandoned_clean_this,
2517 new DialogInterface.OnClickListener() {
2518 public void onClick(DialogInterface dialog, int id) {
2519 final UserHandleCompat user = UserHandleCompat.myUserHandle();
2520 mWorkspace.removeAbandonedPromise(packageName, user);
2521 }
2522 })
2523 .create().show();
2524 return;
2525 }
2526
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002527 /**
2528 * Event handler for an app shortcut click.
2529 *
2530 * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.
2531 */
Chris Wren40c5ed32014-06-24 18:24:23 -04002532 protected void onClickAppShortcut(final View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002533 if (LOGD) Log.d(TAG, "onClickAppShortcut");
2534 Object tag = v.getTag();
2535 if (!(tag instanceof ShortcutInfo)) {
2536 throw new IllegalArgumentException("Input must be a Shortcut");
2537 }
2538
2539 // Open shortcut
2540 final ShortcutInfo shortcut = (ShortcutInfo) tag;
Sunny Goyal1a745e82014-10-02 15:58:31 -07002541
2542 if (shortcut.isDisabled != 0) {
2543 int error = R.string.activity_not_available;
2544 if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_SAFEMODE) != 0) {
2545 error = R.string.safemode_shortcut_error;
2546 }
2547 Toast.makeText(this, error, Toast.LENGTH_SHORT).show();
2548 return;
2549 }
2550
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002551 final Intent intent = shortcut.intent;
2552
2553 // Check for special shortcuts
2554 if (intent.getComponent() != null) {
2555 final String shortcutClass = intent.getComponent().getClassName();
2556
2557 if (shortcutClass.equals(MemoryDumpActivity.class.getName())) {
2558 MemoryDumpActivity.startDump(this);
2559 return;
2560 } else if (shortcutClass.equals(ToggleWeightWatcher.class.getName())) {
2561 toggleShowWeightWatcher();
2562 return;
2563 }
2564 }
2565
Chris Wren40c5ed32014-06-24 18:24:23 -04002566 // Check for abandoned promise
Sunny Goyal34942622014-08-29 17:20:55 -07002567 if ((v instanceof BubbleTextView)
2568 && shortcut.isPromise()
2569 && !shortcut.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE)) {
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002570 showBrokenAppInstallDialog(
Sunny Goyal34942622014-08-29 17:20:55 -07002571 shortcut.getTargetComponent().getPackageName(),
Chris Wren40c5ed32014-06-24 18:24:23 -04002572 new DialogInterface.OnClickListener() {
2573 public void onClick(DialogInterface dialog, int id) {
Sunny Goyal508da152014-08-14 10:53:27 -07002574 startAppShortcutOrInfoActivity(v);
Chris Wren40c5ed32014-06-24 18:24:23 -04002575 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002576 });
Chris Wren40c5ed32014-06-24 18:24:23 -04002577 return;
2578 }
2579
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002580 // Start activities
Sunny Goyal508da152014-08-14 10:53:27 -07002581 startAppShortcutOrInfoActivity(v);
Adam Cohen9211d422014-10-07 18:14:53 -07002582
2583 if (mLauncherCallbacks != null) {
2584 mLauncherCallbacks.onClickAppShortcut(v);
2585 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002586 }
2587
Adam Cohen091440a2015-03-18 14:16:05 -07002588 @Thunk void startAppShortcutOrInfoActivity(View v) {
Chris Wren40c5ed32014-06-24 18:24:23 -04002589 Object tag = v.getTag();
Sunny Goyal508da152014-08-14 10:53:27 -07002590 final ShortcutInfo shortcut;
2591 final Intent intent;
2592 if (tag instanceof ShortcutInfo) {
2593 shortcut = (ShortcutInfo) tag;
2594 intent = shortcut.intent;
2595 int[] pos = new int[2];
2596 v.getLocationOnScreen(pos);
2597 intent.setSourceBounds(new Rect(pos[0], pos[1],
2598 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Chris Wren40c5ed32014-06-24 18:24:23 -04002599
Sunny Goyal508da152014-08-14 10:53:27 -07002600 } else if (tag instanceof AppInfo) {
2601 shortcut = null;
2602 intent = ((AppInfo) tag).intent;
2603 } else {
2604 throw new IllegalArgumentException("Input must be a Shortcut or AppInfo");
2605 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002606
2607 boolean success = startActivitySafely(v, intent, tag);
Winson Chung8f1eff72015-05-28 17:33:40 -07002608 mStats.recordLaunch(v, intent, shortcut);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002609
2610 if (success && v instanceof BubbleTextView) {
2611 mWaitingForResume = (BubbleTextView) v;
2612 mWaitingForResume.setStayPressed(true);
2613 }
2614 }
2615
2616 /**
2617 * Event handler for a folder icon click.
2618 *
2619 * @param v The view that was clicked. Must be an instance of {@link FolderIcon}.
2620 */
2621 protected void onClickFolderIcon(View v) {
2622 if (LOGD) Log.d(TAG, "onClickFolder");
2623 if (!(v instanceof FolderIcon)){
2624 throw new IllegalArgumentException("Input must be a FolderIcon");
2625 }
2626
Sunny Goyal317698b2015-07-29 11:45:41 -07002627 // TODO(sunnygoyal): Re-evaluate this code.
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002628 FolderIcon folderIcon = (FolderIcon) v;
2629 final FolderInfo info = folderIcon.getFolderInfo();
2630 Folder openFolder = mWorkspace.getFolderForTag(info);
2631
2632 // If the folder info reports that the associated folder is open, then verify that
2633 // it is actually opened. There have been a few instances where this gets out of sync.
2634 if (info.opened && openFolder == null) {
2635 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2636 + info.screenId + " (" + info.cellX + ", " + info.cellY + ")");
2637 info.opened = false;
2638 }
2639
2640 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
2641 // Close any open folder
2642 closeFolder();
2643 // Open the requested folder
2644 openFolder(folderIcon);
2645 } else {
2646 // Find the open folder...
2647 int folderScreen;
2648 if (openFolder != null) {
2649 folderScreen = mWorkspace.getPageForView(openFolder);
2650 // .. and close it
2651 closeFolder(openFolder);
2652 if (folderScreen != mWorkspace.getCurrentPage()) {
2653 // Close any folder open on the current screen
2654 closeFolder();
2655 // Pull the folder onto this screen
2656 openFolder(folderIcon);
2657 }
2658 }
2659 }
Adam Cohen9211d422014-10-07 18:14:53 -07002660
2661 if (mLauncherCallbacks != null) {
2662 mLauncherCallbacks.onClickFolderIcon(v);
2663 }
Michael Jurka5130e402011-10-13 04:55:35 -07002664 }
2665
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002666 /**
2667 * Event handler for the (Add) Widgets button that appears after a long press
2668 * on the home screen.
2669 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002670 protected void onClickAddWidgetButton(View view) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002671 if (LOGD) Log.d(TAG, "onClickAddWidgetButton");
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002672 if (mIsSafeModeEnabled) {
2673 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2674 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08002675 showWidgetsView(true /* animated */, true /* resetPageToZero */);
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002676 if (mLauncherCallbacks != null) {
2677 mLauncherCallbacks.onClickAddWidgetButton(view);
2678 }
Adam Cohen9211d422014-10-07 18:14:53 -07002679 }
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002680 }
2681
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002682 /**
2683 * Event handler for the wallpaper picker button that appears after a long press
2684 * on the home screen.
2685 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002686 protected void onClickWallpaperPicker(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002687 if (LOGD) Log.d(TAG, "onClickWallpaperPicker");
Tony Wickham785f7a52015-08-31 17:28:32 -07002688 int pageScroll = mWorkspace.getScrollForPage(mWorkspace.getPageNearestToCenterOfScreen());
2689 float offset = mWorkspace.mWallpaperOffset.wallpaperOffsetForScroll(pageScroll);
2690 startActivityForResult(new Intent(Intent.ACTION_SET_WALLPAPER).setPackage(getPackageName())
2691 .putExtra(WallpaperPickerActivity.EXTRA_WALLPAPER_OFFSET, offset),
Sunny Goyal6a1e95a2015-03-20 17:26:30 -07002692 REQUEST_PICK_WALLPAPER);
Adam Cohen9211d422014-10-07 18:14:53 -07002693
2694 if (mLauncherCallbacks != null) {
2695 mLauncherCallbacks.onClickWallpaperPicker(v);
2696 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002697 }
2698
2699 /**
2700 * Event handler for a click on the settings button that appears after a long press
2701 * on the home screen.
2702 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002703 protected void onClickSettingsButton(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002704 if (LOGD) Log.d(TAG, "onClickSettingsButton");
Adam Cohen9211d422014-10-07 18:14:53 -07002705 if (mLauncherCallbacks != null) {
2706 mLauncherCallbacks.onClickSettingsButton(v);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07002707 } else {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002708 startActivity(new Intent(this, SettingsActivity.class));
Adam Cohen9211d422014-10-07 18:14:53 -07002709 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002710 }
2711
Adam Cohen61f560d2013-09-30 15:58:20 -07002712 public View.OnTouchListener getHapticFeedbackTouchListener() {
2713 if (mHapticFeedbackTouchListener == null) {
2714 mHapticFeedbackTouchListener = new View.OnTouchListener() {
Sunny Goyal70660032015-05-14 00:07:08 -07002715 @SuppressLint("ClickableViewAccessibility")
Adam Cohen61f560d2013-09-30 15:58:20 -07002716 @Override
2717 public boolean onTouch(View v, MotionEvent event) {
2718 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
2719 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2720 }
2721 return false;
2722 }
2723 };
2724 }
2725 return mHapticFeedbackTouchListener;
2726 }
2727
Adam Cohen9211d422014-10-07 18:14:53 -07002728 public void onDragStarted(View view) {
2729 if (isOnCustomContent()) {
2730 // Custom content screen doesn't participate in drag and drop. If on custom
2731 // content screen, move to default.
2732 moveWorkspaceToDefaultScreen();
2733 }
2734
2735 if (mLauncherCallbacks != null) {
2736 mLauncherCallbacks.onDragStarted(view);
2737 }
2738 }
Anjali Koppal62d18ed2014-03-10 17:04:03 -07002739
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002740 /**
2741 * Called when the user stops interacting with the launcher.
2742 * This implies that the user is now on the homescreen and is not doing housekeeping.
2743 */
Adam Cohen9211d422014-10-07 18:14:53 -07002744 protected void onInteractionEnd() {
2745 if (mLauncherCallbacks != null) {
2746 mLauncherCallbacks.onInteractionEnd();
2747 }
2748 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002749
2750 /**
2751 * Called when the user starts interacting with the launcher.
2752 * The possible interactions are:
2753 * - open all apps
2754 * - reorder an app shortcut, or a widget
2755 * - open the overview mode.
2756 * This is a good time to stop doing things that only make sense
2757 * when the user is on the homescreen and not doing housekeeping.
2758 */
Adam Cohen9211d422014-10-07 18:14:53 -07002759 protected void onInteractionBegin() {
2760 if (mLauncherCallbacks != null) {
2761 mLauncherCallbacks.onInteractionBegin();
2762 }
2763 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002764
Winson Chungcd99cd32015-04-29 11:03:24 -07002765 /** Updates the interaction state. */
2766 public void updateInteraction(Workspace.State fromState, Workspace.State toState) {
Winson Chung83f59ab2015-05-05 17:21:58 -07002767 // Only update the interacting state if we are transitioning to/from a view with an
Winson Chungcd99cd32015-04-29 11:03:24 -07002768 // overlay
Winson Chungef7f8742015-06-04 17:18:17 -07002769 boolean fromStateWithOverlay = fromState != Workspace.State.NORMAL;
2770 boolean toStateWithOverlay = toState != Workspace.State.NORMAL;
Winson Chung83f59ab2015-05-05 17:21:58 -07002771 if (toStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002772 onInteractionBegin();
Winson Chung83f59ab2015-05-05 17:21:58 -07002773 } else if (fromStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002774 onInteractionEnd();
2775 }
2776 }
2777
Kenny Guyf07af7b2014-07-31 11:39:16 +01002778 void startApplicationDetailsActivity(ComponentName componentName, UserHandleCompat user) {
Kenny Guyf07af7b2014-07-31 11:39:16 +01002779 try {
2780 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Kenny Guyf07af7b2014-07-31 11:39:16 +01002781 launcherApps.showAppDetailsForProfile(componentName, user);
2782 } catch (SecurityException e) {
2783 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2784 Log.e(TAG, "Launcher does not have permission to launch settings");
2785 } catch (ActivityNotFoundException e) {
2786 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2787 Log.e(TAG, "Unable to launch settings");
2788 }
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002789 }
2790
Michael Jurka1e2f4652013-07-08 18:03:46 -07002791 // returns true if the activity was started
Kenny Guyd31df542014-06-30 15:12:11 +01002792 boolean startApplicationUninstallActivity(ComponentName componentName, int flags,
2793 UserHandleCompat user) {
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002794 if ((flags & AppInfo.DOWNLOADED_FLAG) == 0) {
Patrick Dubroy5539af72010-09-07 15:22:01 -07002795 // System applications cannot be installed. For now, show a toast explaining that.
2796 // We may give them the option of disabling apps this way.
2797 int messageId = R.string.uninstall_system_app_text;
2798 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
Michael Jurka1e2f4652013-07-08 18:03:46 -07002799 return false;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002800 } else {
Michael Jurka1e2f4652013-07-08 18:03:46 -07002801 String packageName = componentName.getPackageName();
2802 String className = componentName.getClassName();
Patrick Dubroy5539af72010-09-07 15:22:01 -07002803 Intent intent = new Intent(
2804 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002805 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2806 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Kenny Guyd31df542014-06-30 15:12:11 +01002807 if (user != null) {
2808 user.addToIntent(intent, Intent.EXTRA_USER);
2809 }
Patrick Dubroy5539af72010-09-07 15:22:01 -07002810 startActivity(intent);
Michael Jurka1e2f4652013-07-08 18:03:46 -07002811 return true;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002812 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002813 }
2814
Winson Chung8f1eff72015-05-28 17:33:40 -07002815 private boolean startActivity(View v, Intent intent, Object tag) {
Kenny Guyb6cc40b2014-05-13 15:58:58 +01002816 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002817 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002818 // Only launch using the new animation if the shortcut has not opted out (this is a
2819 // private contract between launcher and may be ignored in the future).
2820 boolean useLaunchAnimation = (v != null) &&
2821 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
Kenny Guyed131872014-04-30 03:02:21 +01002822 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
2823 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyed131872014-04-30 03:02:21 +01002824
Kenny Guy1317e2d2014-05-08 18:52:50 +01002825 UserHandleCompat user = null;
2826 if (intent.hasExtra(AppInfo.EXTRA_PROFILE)) {
2827 long serialNumber = intent.getLongExtra(AppInfo.EXTRA_PROFILE, -1);
2828 user = userManager.getUserForSerialNumber(serialNumber);
2829 }
2830
2831 Bundle optsBundle = null;
Winson Chung2672ff92012-05-04 16:22:30 -07002832 if (useLaunchAnimation) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002833 ActivityOptions opts = null;
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002834 if (Utilities.ATLEAST_MARSHMALLOW) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002835 int left = 0, top = 0;
2836 int width = v.getMeasuredWidth(), height = v.getMeasuredHeight();
2837 if (v instanceof TextView) {
2838 // Launch from center of icon, not entire view
Winson Chungb745afb2015-03-02 11:51:23 -08002839 Drawable icon = Workspace.getTextViewIcon((TextView) v);
2840 if (icon != null) {
2841 Rect bounds = icon.getBounds();
Chet Haasea8f996d2015-02-17 12:56:04 -08002842 left = (width - bounds.width()) / 2;
Winson Chungb745afb2015-03-02 11:51:23 -08002843 top = v.getPaddingTop();
Chet Haasea8f996d2015-02-17 12:56:04 -08002844 width = bounds.width();
2845 height = bounds.height();
2846 }
2847 }
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002848 opts = ActivityOptions.makeClipRevealAnimation(v, left, top, width, height);
2849 } else if (!Utilities.ATLEAST_LOLLIPOP) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002850 // Below L, we use a scale up animation
Adam Cohen2e52c902015-04-06 13:11:28 -07002851 opts = ActivityOptions.makeScaleUpAnimation(v, 0, 0,
Chet Haasea8f996d2015-02-17 12:56:04 -08002852 v.getMeasuredWidth(), v.getMeasuredHeight());
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002853 } else if (Utilities.ATLEAST_LOLLIPOP_MR1) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002854 // On L devices, we use the device default slide-up transition.
2855 // On L MR1 devices, we a custom version of the slide-up transition which
2856 // doesn't have the delay present in the device default.
2857 opts = ActivityOptions.makeCustomAnimation(this,
2858 R.anim.task_open_enter, R.anim.no_anim);
Chet Haasea8f996d2015-02-17 12:56:04 -08002859 }
Adam Cohen2e52c902015-04-06 13:11:28 -07002860 optsBundle = opts != null ? opts.toBundle() : null;
Adam Cohen6ea3b112014-06-11 11:38:49 -07002861 }
Kenny Guy1317e2d2014-05-08 18:52:50 +01002862
2863 if (user == null || user.equals(UserHandleCompat.myUserHandle())) {
2864 // Could be launching some bookkeeping activity
2865 startActivity(intent, optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002866 } else {
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002867 // TODO Component can be null when shortcuts are supported for secondary user
Kenny Guyc2bd8102014-06-30 12:30:31 +01002868 launcherApps.startActivityForProfile(intent.getComponent(), user,
2869 intent.getSourceBounds(), optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002870 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002871 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002872 } catch (SecurityException e) {
2873 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002874 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002875 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07002876 "or use the exported attribute for this activity. "
2877 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002878 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002879 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002880 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002881
Winson Chungbedf9232015-07-10 12:38:30 -07002882 public boolean startActivitySafely(View v, Intent intent, Object tag) {
Michael Jurka86a720e2012-05-09 11:23:23 -07002883 boolean success = false;
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002884 if (mIsSafeModeEnabled && !Utilities.isSystemApp(this, intent)) {
2885 Toast.makeText(this, R.string.safemode_shortcut_error, Toast.LENGTH_SHORT).show();
2886 return false;
2887 }
Michael Jurka86a720e2012-05-09 11:23:23 -07002888 try {
2889 success = startActivity(v, intent, tag);
2890 } catch (ActivityNotFoundException e) {
2891 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2892 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
2893 }
2894 return success;
2895 }
2896
Adam Cohen268c4752012-06-06 17:47:33 -07002897 /**
2898 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
2899 * in the DragLayer in the exact absolute location of the original FolderIcon.
2900 */
2901 private void copyFolderIconToImage(FolderIcon fi) {
2902 final int width = fi.getMeasuredWidth();
2903 final int height = fi.getMeasuredHeight();
2904
2905 // Lazy load ImageView, Bitmap and Canvas
2906 if (mFolderIconImageView == null) {
2907 mFolderIconImageView = new ImageView(this);
2908 }
2909 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
2910 mFolderIconBitmap.getHeight() != height) {
2911 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
2912 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
2913 }
2914
2915 DragLayer.LayoutParams lp;
2916 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
2917 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
2918 } else {
2919 lp = new DragLayer.LayoutParams(width, height);
2920 }
2921
Adam Cohen307fe232012-08-16 17:55:58 -07002922 // The layout from which the folder is being opened may be scaled, adjust the starting
2923 // view size by this scale factor.
2924 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07002925 lp.customPosition = true;
2926 lp.x = mRectForFolderAnimation.left;
2927 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07002928 lp.width = (int) (scale * width);
2929 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07002930
2931 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
2932 fi.draw(mFolderIconCanvas);
2933 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07002934 if (fi.getFolder() != null) {
2935 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
2936 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07002937 }
Adam Cohen268c4752012-06-06 17:47:33 -07002938 // Just in case this image view is still in the drag layer from a previous animation,
2939 // we remove it and re-add it.
2940 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
2941 mDragLayer.removeView(mFolderIconImageView);
2942 }
2943 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07002944 if (fi.getFolder() != null) {
2945 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07002946 }
Adam Cohen268c4752012-06-06 17:47:33 -07002947 }
2948
Adam Cohen2801caf2011-05-13 20:57:39 -07002949 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002950 if (fi == null) return;
Adam Cohenc51934b2011-07-26 21:07:43 -07002951 FolderInfo info = (FolderInfo) fi.getTag();
2952 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
2953 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07002954 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
2955 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07002956 }
2957
Adam Cohen268c4752012-06-06 17:47:33 -07002958 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
2959 copyFolderIconToImage(fi);
2960 fi.setVisibility(View.INVISIBLE);
2961
Sunny Goyal5d2fc322015-07-06 22:52:49 -07002962 ObjectAnimator oa = LauncherAnimUtils.ofViewAlphaAndScale(
2963 mFolderIconImageView, 0, 1.5f, 1.5f);
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002964 if (Utilities.ATLEAST_LOLLIPOP) {
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07002965 oa.setInterpolator(new LogDecelerateInterpolator(100, 0));
2966 }
2967 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohen2801caf2011-05-13 20:57:39 -07002968 oa.start();
2969 }
2970
Adam Cohen268c4752012-06-06 17:47:33 -07002971 private void shrinkAndFadeInFolderIcon(final FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002972 if (fi == null) return;
Adam Cohen268c4752012-06-06 17:47:33 -07002973 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07002974
Adam Cohen268c4752012-06-06 17:47:33 -07002975 // We remove and re-draw the FolderIcon in-case it has changed
2976 mDragLayer.removeView(mFolderIconImageView);
2977 copyFolderIconToImage(fi);
Sunny Goyal5d2fc322015-07-06 22:52:49 -07002978 ObjectAnimator oa = LauncherAnimUtils.ofViewAlphaAndScale(mFolderIconImageView, 1, 1, 1);
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07002979 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07002980 oa.addListener(new AnimatorListenerAdapter() {
2981 @Override
2982 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07002983 if (cl != null) {
2984 cl.clearFolderLeaveBehind();
2985 // Remove the ImageView copy of the FolderIcon and make the original visible.
2986 mDragLayer.removeView(mFolderIconImageView);
2987 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07002988 }
2989 }
2990 });
Adam Cohen2801caf2011-05-13 20:57:39 -07002991 oa.start();
2992 }
2993
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002994 /**
Michael Jurka774bd372010-10-22 13:40:50 -07002995 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002996 * is animated relative to the specified View. If the View is null, no animation
2997 * is played.
2998 *
2999 * @param folderInfo The FolderInfo describing the folder to open.
3000 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07003001 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07003002 Folder folder = folderIcon.getFolder();
Sunny Goyalf4066152015-04-15 09:42:19 -07003003 Folder openFolder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
3004 if (openFolder != null && openFolder != folder) {
3005 // Close any open folder before opening a folder.
3006 closeFolder();
3007 }
3008
Adam Cohena9cf38f2011-05-02 15:36:58 -07003009 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003010
Adam Cohena9cf38f2011-05-02 15:36:58 -07003011 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003012
Sunny Goyalf4066152015-04-15 09:42:19 -07003013 // While the folder is open, the position of the icon cannot change.
3014 ((CellLayout.LayoutParams) folderIcon.getLayoutParams()).canReorder = false;
3015
Adam Cohen4554ee12011-08-03 16:13:21 -07003016 // Just verify that the folder hasn't already been added to the DragLayer.
3017 // There was a one-off crash where the folder had a parent already.
3018 if (folder.getParent() == null) {
3019 mDragLayer.addView(folder);
3020 mDragController.addDropTarget((DropTarget) folder);
3021 } else {
3022 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
3023 folder.getParent() + ").");
3024 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07003025 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07003026 growAndFadeOutFolderIcon(folderIcon);
Winson Chung83ca4802013-04-12 15:10:52 -07003027
3028 // Notify the accessibility manager that this folder "window" has appeared and occluded
3029 // the workspace items
3030 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
3031 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07003032 }
3033
3034 public void closeFolder() {
Adam Cohen37c717f2013-11-26 11:50:15 -08003035 Folder folder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
Adam Cohen4554ee12011-08-03 16:13:21 -07003036 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07003037 if (folder.isEditingName()) {
3038 folder.dismissEditingName();
3039 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003040 closeFolder(folder);
3041 }
3042 }
3043
Sunny Goyal83a8f042015-05-19 12:52:12 -07003044 public void closeFolder(Folder folder) {
Adam Cohen4554ee12011-08-03 16:13:21 -07003045 folder.getInfo().opened = false;
3046
3047 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
3048 if (parent != null) {
3049 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
3050 shrinkAndFadeInFolderIcon(fi);
Sunny Goyalf4066152015-04-15 09:42:19 -07003051 if (fi != null) {
3052 ((CellLayout.LayoutParams) fi.getLayoutParams()).canReorder = true;
3053 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003054 }
3055 folder.animateClosed();
Winson Chung83ca4802013-04-12 15:10:52 -07003056
3057 // Notify the accessibility manager that this folder "window" has disappeard and no
3058 // longer occludeds the workspace items
3059 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003060 }
3061
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003062 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07003063 if (!isDraggingEnabled()) return false;
3064 if (isWorkspaceLocked()) return false;
3065 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003066
Winson Chung76648c52015-07-10 14:33:23 -07003067 if (v == mAllAppsButton) {
3068 onLongClickAllAppsButton(v);
3069 return true;
3070 }
3071
Adam Cohen1697b792013-09-17 19:08:21 -07003072 if (v instanceof Workspace) {
3073 if (!mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003074 if (!mWorkspace.isTouchActive()) {
3075 showOverviewMode(true);
Adam Cohen93c97562013-09-26 13:48:01 -07003076 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3077 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
3078 return true;
3079 } else {
3080 return false;
3081 }
Adam Cohenaa4c8c12014-06-06 11:52:52 -07003082 } else {
3083 return false;
Adam Cohen1697b792013-09-17 19:08:21 -07003084 }
Adam Cohen1697b792013-09-17 19:08:21 -07003085 }
3086
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003087 CellLayout.CellInfo longClickCellInfo = null;
3088 View itemUnderLongClick = null;
3089 if (v.getTag() instanceof ItemInfo) {
3090 ItemInfo info = (ItemInfo) v.getTag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08003091 longClickCellInfo = new CellLayout.CellInfo(v, info);
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003092 itemUnderLongClick = longClickCellInfo.cell;
3093 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003094 }
3095
Winson Chung3d503fb2011-07-13 17:25:49 -07003096 // The hotseat touch handling does not go through Workspace, and we always allow long press
3097 // on hotseat items.
Dan Sandlere26d0942014-01-13 14:30:14 -05003098 final boolean inHotseat = isHotseatLayout(v);
Sunny Goyal8e2133b2015-05-06 13:39:07 -07003099 if (!mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07003100 if (itemUnderLongClick == null) {
Adam Cohend3ecce92013-09-16 14:58:00 -07003101 // User long pressed on empty space
3102 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3103 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Adam Cohend3ecce92013-09-16 14:58:00 -07003104 if (mWorkspace.isInOverviewMode()) {
3105 mWorkspace.startReordering(v);
3106 } else {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003107 showOverviewMode(true);
Adam Cohendedbd962013-07-11 14:21:49 -07003108 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003109 } else {
Dan Sandlere26d0942014-01-13 14:30:14 -05003110 final boolean isAllAppsButton = inHotseat && isAllAppsButtonRank(
3111 mHotseat.getOrderInHotseat(
3112 longClickCellInfo.cellX,
3113 longClickCellInfo.cellY));
3114 if (!(itemUnderLongClick instanceof Folder || isAllAppsButton)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003115 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07003116 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003117 }
3118 }
3119 }
3120 return true;
3121 }
3122
Winson Chung3d503fb2011-07-13 17:25:49 -07003123 boolean isHotseatLayout(View layout) {
3124 return mHotseat != null && layout != null &&
3125 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
3126 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08003127
Winson Chung3d503fb2011-07-13 17:25:49 -07003128 /**
3129 * Returns the CellLayout of the specified container at the specified screen.
3130 */
Sunny Goyal92820592015-03-02 11:31:35 -08003131 public CellLayout getCellLayout(long container, long screenId) {
Winson Chung3d503fb2011-07-13 17:25:49 -07003132 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3133 if (mHotseat != null) {
3134 return mHotseat.getLayout();
3135 } else {
3136 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08003137 }
Winson Chung3d503fb2011-07-13 17:25:49 -07003138 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08003139 return mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08003140 }
3141 }
3142
Winson Chungb745afb2015-03-02 11:51:23 -08003143 /**
3144 * For overridden classes.
3145 */
Daniel Sandler843e8602010-06-07 14:59:01 -04003146 public boolean isAllAppsVisible() {
Winson Chungb745afb2015-03-02 11:51:23 -08003147 return isAppsViewVisible();
3148 }
3149
3150 public boolean isAppsViewVisible() {
3151 return (mState == State.APPS) || (mOnResumeState == State.APPS);
3152 }
3153
3154 public boolean isWidgetsViewVisible() {
3155 return (mState == State.WIDGETS) || (mOnResumeState == State.WIDGETS);
Joe Onoratofb0ca672009-09-14 17:55:46 -04003156 }
3157
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003158 private void setWorkspaceBackground(int background) {
3159 switch (background) {
3160 case WORKSPACE_BACKGROUND_TRANSPARENT:
3161 getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
3162 break;
3163 case WORKSPACE_BACKGROUND_BLACK:
3164 getWindow().setBackgroundDrawable(null);
3165 break;
3166 default:
3167 getWindow().setBackgroundDrawable(mWorkspaceBackgroundDrawable);
3168 }
Craig Mautner360310b2012-10-26 15:13:08 -07003169 }
3170
Selim Cinek3a8a8f72014-01-16 10:38:38 -08003171 protected void changeWallpaperVisiblity(boolean visible) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003172 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
3173 int curflags = getWindow().getAttributes().flags
3174 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
3175 if (wpflags != curflags) {
3176 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
3177 }
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003178 setWorkspaceBackground(visible ? WORKSPACE_BACKGROUND_GRADIENT : WORKSPACE_BACKGROUND_BLACK);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003179 }
3180
Michael Jurkae326f182011-11-21 14:05:46 -08003181 @Override
3182 public void onTrimMemory(int level) {
3183 super.onTrimMemory(level);
Adam Cohen3f9c9712014-10-31 11:48:25 -07003184 if (level >= ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
3185 // The widget preview db can result in holding onto over
3186 // 3MB of memory for caching which isn't necessary.
3187 SQLiteDatabase.releaseMemory();
3188
Adam Cohenc8f4e1b2014-11-19 16:03:20 -08003189 // This clears all widget bitmaps from the widget tray
Hyunyoung Song3f471442015-04-08 19:01:34 -07003190 // TODO(hyunyoungs)
Michael Jurkae326f182011-11-21 14:05:46 -08003191 }
Robert Kozikowski67c30862015-03-30 23:46:46 +01003192 if (mLauncherCallbacks != null) {
3193 mLauncherCallbacks.onTrimMemory(level);
3194 }
Michael Jurkae326f182011-11-21 14:05:46 -08003195 }
3196
Winson Chung5f4e0fd2015-05-22 11:12:27 -07003197 public void showWorkspace(boolean animated) {
Sunny Goyalce5a7e52015-07-08 15:44:27 -07003198 showWorkspace(animated, null);
Adam Cohened307df2013-10-02 09:37:31 -07003199 }
3200
Sunny Goyal83a8f042015-05-19 12:52:12 -07003201 public void showWorkspace(boolean animated, Runnable onCompleteRunnable) {
Winson Chung0f785722015-04-08 10:27:49 -07003202 boolean changed = mState != State.WORKSPACE ||
3203 mWorkspace.getState() != Workspace.State.NORMAL;
3204 if (changed) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003205 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003206 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
Winson2a87fe82015-08-07 10:37:21 -07003207 Workspace.State.NORMAL, animated, onCompleteRunnable);
Winson Chungc7d2b602012-05-16 17:02:20 -07003208
Michael Jurkab3e22d92011-10-31 15:58:33 -07003209 // Set focus to the AppsCustomize button
3210 if (mAllAppsButton != null) {
3211 mAllAppsButton.requestFocus();
3212 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003213 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07003214
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003215 // Change the state *after* we've called all the transition code
3216 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08003217
Winson Chung5fb63472011-02-02 17:03:37 -08003218 // Resume the auto-advance of widgets
3219 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08003220 updateAutoAdvanceState();
Winson Chung5fb63472011-02-02 17:03:37 -08003221
Winson Chung0f785722015-04-08 10:27:49 -07003222 if (changed) {
3223 // Send an accessibility event to announce the context change
3224 getWindow().getDecorView()
3225 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Winson Chung0f785722015-04-08 10:27:49 -07003226 }
Bjorn Bringertc459e522013-06-07 19:36:01 +01003227 }
3228
Adam Cohened307df2013-10-02 09:37:31 -07003229 void showOverviewMode(boolean animated) {
3230 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003231 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
Winson2a87fe82015-08-07 10:37:21 -07003232 Workspace.State.OVERVIEW, animated, null /* onCompleteRunnable */);
Adam Cohened307df2013-10-02 09:37:31 -07003233 mState = State.WORKSPACE;
Joe Onorato00acb122009-08-04 16:04:30 -04003234 }
3235
Winson Chungb745afb2015-03-02 11:51:23 -08003236 /**
3237 * Shows the apps view.
3238 */
Winson Chung76648c52015-07-10 14:33:23 -07003239 void showAppsView(boolean animated, boolean resetListToTop, boolean updatePredictedApps,
3240 boolean focusSearchBar) {
Winson Chungb745afb2015-03-02 11:51:23 -08003241 if (resetListToTop) {
3242 mAppsView.scrollToTop();
3243 }
Winson Chung4ac30062015-05-08 17:34:17 -07003244 if (updatePredictedApps) {
3245 tryAndUpdatePredictedApps();
3246 }
Winson Chung76648c52015-07-10 14:33:23 -07003247 showAppsOrWidgets(State.APPS, animated, focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003248 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003249
Winson Chungb745afb2015-03-02 11:51:23 -08003250 /**
3251 * Shows the widgets view.
3252 */
3253 void showWidgetsView(boolean animated, boolean resetPageToZero) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003254 if (LOGD) Log.d(TAG, "showWidgetsView:" + animated + " resetPageToZero:" + resetPageToZero);
Winson Chung82963d52013-10-09 11:20:57 -07003255 if (resetPageToZero) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003256 mWidgetsView.scrollToTop();
Winson Chung82963d52013-10-09 11:20:57 -07003257 }
Winson Chung76648c52015-07-10 14:33:23 -07003258 showAppsOrWidgets(State.WIDGETS, animated, false);
Hyunyoung Song3f471442015-04-08 19:01:34 -07003259
3260 mWidgetsView.post(new Runnable() {
Adam Cohendcc5e712014-06-23 15:38:55 -04003261 @Override
3262 public void run() {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003263 mWidgetsView.requestFocus();
Adam Cohendcc5e712014-06-23 15:38:55 -04003264 }
3265 });
Winson Chungb745afb2015-03-02 11:51:23 -08003266 }
3267
3268 /**
3269 * Sets up the transition to show the apps/widgets view.
Hyunyoung Songb7900832015-05-15 16:29:45 -07003270 *
3271 * @return whether the current from and to state allowed this operation
Winson Chungb745afb2015-03-02 11:51:23 -08003272 */
Hyunyoung Songb7900832015-05-15 16:29:45 -07003273 // TODO: calling method should use the return value so that when {@code false} is returned
3274 // the workspace transition doesn't fall into invalid state.
Winson Chung76648c52015-07-10 14:33:23 -07003275 private boolean showAppsOrWidgets(State toState, boolean animated, boolean focusSearchBar) {
Hyunyoung Songb7900832015-05-15 16:29:45 -07003276 if (mState != State.WORKSPACE && mState != State.APPS_SPRING_LOADED &&
3277 mState != State.WIDGETS_SPRING_LOADED) {
3278 return false;
3279 }
3280 if (toState != State.APPS && toState != State.WIDGETS) {
3281 return false;
3282 }
Winson Chungb745afb2015-03-02 11:51:23 -08003283
3284 if (toState == State.APPS) {
Winson Chung006ee262015-08-03 14:40:11 -07003285 mStateTransitionAnimation.startAnimationToAllApps(mWorkspace.getState(), animated,
3286 focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003287 } else {
Winson Chung006ee262015-08-03 14:40:11 -07003288 mStateTransitionAnimation.startAnimationToWidgets(mWorkspace.getState(), animated);
Winson Chungb745afb2015-03-02 11:51:23 -08003289 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003290
Michael Jurkab3e22d92011-10-31 15:58:33 -07003291 // Change the state *after* we've called all the transition code
Winson Chungb745afb2015-03-02 11:51:23 -08003292 mState = toState;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003293
3294 // Pause the auto-advance of widgets until we are out of AllApps
3295 mUserPresent = false;
Winson Chungb745afb2015-03-02 11:51:23 -08003296 updateAutoAdvanceState();
Michael Jurkab3e22d92011-10-31 15:58:33 -07003297 closeFolder();
3298
3299 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07003300 getWindow().getDecorView()
3301 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Hyunyoung Songb7900832015-05-15 16:29:45 -07003302 return true;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003303 }
3304
Winson Chungcd99cd32015-04-29 11:03:24 -07003305 /**
3306 * Updates the workspace and interaction state on state change, and return the animation to this
3307 * new state.
3308 */
Sunny Goyalce5a7e52015-07-08 15:44:27 -07003309 public Animator startWorkspaceStateChangeAnimation(Workspace.State toState,
Winson Chung006ee262015-08-03 14:40:11 -07003310 boolean animated, HashMap<View, Integer> layerViews) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003311 Workspace.State fromState = mWorkspace.getState();
Winson2a87fe82015-08-07 10:37:21 -07003312 Animator anim = mWorkspace.setStateWithAnimation(toState, animated, layerViews);
Winson Chungcd99cd32015-04-29 11:03:24 -07003313 updateInteraction(fromState, toState);
3314 return anim;
3315 }
3316
Jun Mukaif0033da2015-08-04 18:34:30 -07003317 public void onLauncherClingShown() {
3318 // When a launcher cling appears, it should cover the underlying layers, so their focus
3319 // should be blocked.
3320 if (mDragLayer.getDescendantFocusability() != ViewGroup.FOCUS_BLOCK_DESCENDANTS) {
3321 mDragLayer.setDescendantFocusability(ViewGroup.FOCUS_BLOCK_DESCENDANTS);
3322 }
3323 }
3324
3325 public void onLauncherClingDismissed() {
3326 mDragLayer.setDescendantFocusability(ViewGroup.FOCUS_AFTER_DESCENDANTS);
3327 }
3328
Hyunyoung Song3f471442015-04-08 19:01:34 -07003329 public void enterSpringLoadedDragMode() {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003330 if (LOGD) Log.d(TAG, String.format("enterSpringLoadedDragMode [mState=%s", mState.name()));
Winson Chungb745afb2015-03-02 11:51:23 -08003331 if (mState == State.WORKSPACE || mState == State.APPS_SPRING_LOADED ||
3332 mState == State.WIDGETS_SPRING_LOADED) {
3333 return;
Winson Chungb26f3d62011-06-02 10:49:29 -07003334 }
Winson Chungb745afb2015-03-02 11:51:23 -08003335
Winson Chung006ee262015-08-03 14:40:11 -07003336 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
Winson2a87fe82015-08-07 10:37:21 -07003337 Workspace.State.SPRING_LOADED, true /* animated */,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003338 null /* onCompleteRunnable */);
Winson Chungb745afb2015-03-02 11:51:23 -08003339 mState = isAppsViewVisible() ? State.APPS_SPRING_LOADED : State.WIDGETS_SPRING_LOADED;
Michael Jurkad3ef3062010-11-23 16:23:58 -08003340 }
Adam Cohen7777d962011-08-18 18:58:38 -07003341
Hyunyoung Song3f471442015-04-08 19:01:34 -07003342 public void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, int delay,
Adam Cohened66b2b2012-01-23 17:28:51 -08003343 final Runnable onCompleteRunnable) {
Winson Chungb745afb2015-03-02 11:51:23 -08003344 if (mState != State.APPS_SPRING_LOADED && mState != State.WIDGETS_SPRING_LOADED) return;
Winson Chung09bfc452011-09-09 11:30:20 -07003345
Winson Chunge7a03942011-08-05 15:05:12 -07003346 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07003347 @Override
3348 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003349 if (successfulDrop) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003350 // TODO(hyunyoungs): verify if this hack is still needed, if not, delete.
3351 //
Michael Jurka7bdb25a2011-08-03 15:16:44 -07003352 // Before we show workspace, hide all apps again because
3353 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
3354 // clean up our state transition functions
Hyunyoung Song3f471442015-04-08 19:01:34 -07003355 mWidgetsView.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003356 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07003357 } else {
3358 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003359 }
Winson Chung557d6ed2011-07-08 15:34:52 -07003360 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07003361 }, delay);
Winson Chung557d6ed2011-07-08 15:34:52 -07003362 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003363
Michael Jurkad3ef3062010-11-23 16:23:58 -08003364 void exitSpringLoadedDragMode() {
Winson Chungb745afb2015-03-02 11:51:23 -08003365 if (mState == State.APPS_SPRING_LOADED) {
Winson Chung4ac30062015-05-08 17:34:17 -07003366 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07003367 false /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -08003368 } else if (mState == State.WIDGETS_SPRING_LOADED) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003369 showWidgetsView(true, false);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003370 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003371 }
3372
Winson Chung4ac30062015-05-08 17:34:17 -07003373 /**
3374 * Updates the set of predicted apps if it hasn't been updated since the last time Launcher was
3375 * resumed.
3376 */
3377 private void tryAndUpdatePredictedApps() {
3378 if (mLauncherCallbacks != null) {
Winson Chung6b1c73f2015-06-18 11:38:42 -07003379 List<ComponentKey> apps = mLauncherCallbacks.getPredictedApps();
Winson Chung91c05952015-06-25 12:17:30 -07003380 if (apps != null) {
Winson Chung4ac30062015-05-08 17:34:17 -07003381 mAppsView.setPredictedApps(apps);
3382 }
3383 }
3384 }
3385
Michael Jurkab3e22d92011-10-31 15:58:33 -07003386 void lockAllApps() {
3387 // TODO
3388 }
3389
3390 void unlockAllApps() {
3391 // TODO
3392 }
3393
Sunny Goyal594d76d2014-11-06 10:12:54 -08003394 protected void disableVoiceButtonProxy(boolean disable) {
3395 // NO-OP
Winson Chungbb185bd2011-11-21 12:31:42 -08003396 }
3397
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003398 public View getOrCreateQsbBar() {
Adam Cohenc2d6e892014-10-16 09:49:24 -07003399 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
3400 return mLauncherCallbacks.getQsbBar();
Adam Cohen9211d422014-10-07 18:14:53 -07003401 }
3402
Adam Cohen24ce0b32014-01-14 16:18:14 -08003403 if (mQsb == null) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003404 AppWidgetProviderInfo searchProvider = Utilities.getSearchWidgetProvider(this);
3405 if (searchProvider == null) {
3406 return null;
3407 }
3408
3409 Bundle opts = new Bundle();
3410 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_HOST_CATEGORY,
Adam Coheneb8e2822015-02-20 16:38:48 +00003411 AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003412
3413 SharedPreferences sp = getSharedPreferences(
3414 LauncherAppState.getSharedPreferencesKey(), MODE_PRIVATE);
3415 int widgetId = sp.getInt(QSB_WIDGET_ID, -1);
Sunny Goyal416541c2014-11-14 11:59:57 -08003416 AppWidgetProviderInfo widgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003417 if (!searchProvider.provider.flattenToString().equals(
3418 sp.getString(QSB_WIDGET_PROVIDER, null))
Sunny Goyal416541c2014-11-14 11:59:57 -08003419 || (widgetInfo == null)
3420 || !widgetInfo.provider.equals(searchProvider.provider)) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003421 // A valid widget is not already bound.
3422 if (widgetId > -1) {
3423 mAppWidgetHost.deleteAppWidgetId(widgetId);
3424 widgetId = -1;
3425 }
3426
3427 // Try to bind a new widget
3428 widgetId = mAppWidgetHost.allocateAppWidgetId();
3429
3430 if (!AppWidgetManagerCompat.getInstance(this)
3431 .bindAppWidgetIdIfAllowed(widgetId, searchProvider, opts)) {
3432 mAppWidgetHost.deleteAppWidgetId(widgetId);
3433 widgetId = -1;
3434 }
3435
3436 sp.edit()
3437 .putInt(QSB_WIDGET_ID, widgetId)
3438 .putString(QSB_WIDGET_PROVIDER, searchProvider.provider.flattenToString())
3439 .commit();
3440 }
3441
Sunny Goyal8d595092015-07-06 12:22:14 -07003442 mAppWidgetHost.setQsbWidgetId(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003443 if (widgetId != -1) {
3444 mQsb = mAppWidgetHost.createView(this, widgetId, searchProvider);
Sunny Goyalebfae6e2015-08-27 15:30:25 -07003445 mQsb.setId(R.id.qsb_widget);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003446 mQsb.updateAppWidgetOptions(opts);
3447 mQsb.setPadding(0, 0, 0, 0);
3448 mSearchDropTargetBar.addView(mQsb);
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003449 mSearchDropTargetBar.setQsbSearchBar(mQsb);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003450 }
Cristina Stancu476493b2013-08-07 17:20:14 +01003451 }
Adam Cohen24ce0b32014-01-14 16:18:14 -08003452 return mQsb;
Cristina Stancu476493b2013-08-07 17:20:14 +01003453 }
3454
Sunny Goyal22235bc2015-04-03 09:23:43 -07003455 private void reinflateQSBIfNecessary() {
3456 if (mQsb instanceof LauncherAppWidgetHostView &&
3457 ((LauncherAppWidgetHostView) mQsb).isReinflateRequired()) {
3458 mSearchDropTargetBar.removeView(mQsb);
3459 mQsb = null;
3460 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
3461 }
3462 }
3463
Michael Jurkad7c28052012-04-27 15:43:36 -07003464 @Override
3465 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07003466 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07003467 final List<CharSequence> text = event.getText();
3468 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07003469 // Populate event with a fake title based on the current state.
Winson Chungb745afb2015-03-02 11:51:23 -08003470 if (mState == State.APPS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003471 text.add(getString(R.string.all_apps_button_label));
Winson Chungb745afb2015-03-02 11:51:23 -08003472 } else if (mState == State.WIDGETS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003473 text.add(getString(R.string.widget_button_text));
Hyunyoung Song166e6482015-06-25 21:06:07 -07003474 } else if (mWorkspace != null) {
3475 text.add(mWorkspace.getCurrentPageDescription());
alanv1d4fde62012-10-17 13:15:47 -07003476 } else {
3477 text.add(getString(R.string.all_apps_home_button_label));
3478 }
Michael Jurkad7c28052012-04-27 15:43:36 -07003479 return result;
3480 }
3481
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003482 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003483 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003484 */
Adam Cohen091440a2015-03-18 14:16:05 -07003485 @Thunk class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003486 @Override
3487 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003488 closeSystemDialogs();
3489 }
3490 }
3491
3492 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07003493 * If the activity is currently paused, signal that we need to run the passed Runnable
3494 * in onResume.
3495 *
3496 * This needs to be called from incoming places where resources might have been loaded
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003497 * while the activity is paused. That is because the Configuration (e.g., rotation) might be
3498 * wrong when we're not running, and if the activity comes back to what the configuration was
3499 * when we were paused, activity is not restarted.
Michael Jurka7607c2f2013-04-03 14:33:19 -07003500 *
3501 * Implementation of the method from LauncherModel.Callbacks.
3502 *
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003503 * @return {@code true} if we are currently paused. The caller might be able to skip some work
Michael Jurka7607c2f2013-04-03 14:33:19 -07003504 */
Rahul Chaturvedi799aa042015-06-01 21:26:41 -04003505 @Thunk boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003506 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003507 if (LOGD) Log.d(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02003508 if (deletePreviousRunnables) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07003509 while (mBindOnResumeCallbacks.remove(run)) {
Michael Jurkac402cd92013-05-20 15:49:32 +02003510 }
3511 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07003512 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07003513 return true;
3514 } else {
3515 return false;
3516 }
3517 }
3518
Michael Jurkac402cd92013-05-20 15:49:32 +02003519 private boolean waitUntilResume(Runnable run) {
3520 return waitUntilResume(run, false);
3521 }
3522
Michael Jurka1e2f4652013-07-08 18:03:46 -07003523 public void addOnResumeCallback(Runnable run) {
Michael Jurka54554252013-08-01 12:52:23 +02003524 mOnResumeCallbacks.add(run);
Michael Jurka1e2f4652013-07-08 18:03:46 -07003525 }
3526
Michael Jurka7607c2f2013-04-03 14:33:19 -07003527 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003528 * If the activity is currently paused, signal that we need to re-run the loader
3529 * in onResume.
3530 *
3531 * This needs to be called from incoming places where resources might have been loaded
3532 * while we are paused. That is becaues the Configuration might be wrong
3533 * when we're not running, and if it comes back to what it was when we
3534 * were paused, we are not restarted.
3535 *
3536 * Implementation of the method from LauncherModel.Callbacks.
3537 *
3538 * @return true if we are currently paused. The caller might be able to
3539 * skip some work in that case since we will come back again.
3540 */
3541 public boolean setLoadOnResume() {
3542 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003543 if (LOGD) Log.d(TAG, "setLoadOnResume");
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003544 mOnResumeNeedsLoad = true;
3545 return true;
3546 } else {
3547 return false;
3548 }
3549 }
3550
3551 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003552 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003553 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003554 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003555 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003556 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003557 } else {
Winson Chung882a52e2015-07-08 14:32:26 -07003558 return 0;
Joe Onoratod0afc872010-06-11 00:03:15 -07003559 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003560 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003561
Joe Onorato9c1289c2009-08-17 11:03:03 -04003562 /**
3563 * Refreshes the shortcuts shown on the workspace.
3564 *
3565 * Implementation of the method from LauncherModel.Callbacks.
3566 */
3567 public void startBinding() {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07003568 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08003569
Michael Jurka7607c2f2013-04-03 14:33:19 -07003570 // If we're starting binding all over again, clear any bind calls we'd postponed in
3571 // the past (see waitUntilResume) -- we don't need them since we're starting binding
3572 // from scratch again
Michael Jurka1e2f4652013-07-08 18:03:46 -07003573 mBindOnResumeCallbacks.clear();
Adam Cohendf035382011-04-11 17:22:04 -07003574
Winson Chungd64d1762013-08-20 14:37:16 -07003575 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07003576 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07003577 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07003578
Michael Jurka05bf644e2011-11-30 20:28:53 -08003579 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003580 if (mHotseat != null) {
3581 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003582 }
3583 }
3584
Adam Cohendcd297f2013-06-18 13:13:40 -07003585 @Override
3586 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Winson Chung64359a52013-07-08 17:17:08 -07003587 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07003588
Adam Cohen5084cba2013-09-03 12:01:16 -07003589 // If there are no screens, we need to have an empty screen
3590 if (orderedScreenIds.size() == 0) {
3591 mWorkspace.addExtraEmptyScreen();
3592 }
Winson Chung0e6a7132013-08-23 12:55:10 -07003593
3594 // Create the custom content page (this call updates mDefaultScreen which calls
Dave Hawkeya8881582013-09-17 15:55:33 -06003595 // setCurrentPage() so ensure that all pages are added before calling this).
Derek Prothrodadd9842014-01-17 13:43:50 -05003596 if (hasCustomContentToLeft()) {
3597 mWorkspace.createCustomContentContainer();
3598 populateCustomContentContainer();
Winson Chung0e6a7132013-08-23 12:55:10 -07003599 }
Winson Chung64359a52013-07-08 17:17:08 -07003600 }
3601
3602 @Override
3603 public void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Adam Cohendcd297f2013-06-18 13:13:40 -07003604 int count = orderedScreenIds.size();
3605 for (int i = 0; i < count; i++) {
Adam Cohen89bddfa2013-08-20 11:57:13 -07003606 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(orderedScreenIds.get(i));
Adam Cohendcd297f2013-06-18 13:13:40 -07003607 }
Adam Cohendcd297f2013-06-18 13:13:40 -07003608 }
3609
Adam Cohen39a06042013-07-19 14:30:12 -07003610 private boolean shouldShowWeightWatcher() {
3611 String spKey = LauncherAppState.getSharedPreferencesKey();
3612 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
Daniel Sandler6053b8002013-08-15 15:44:26 -07003613 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, SHOW_WEIGHT_WATCHER_DEFAULT);
Adam Cohen39a06042013-07-19 14:30:12 -07003614
3615 return show;
3616 }
3617
3618 private void toggleShowWeightWatcher() {
3619 String spKey = LauncherAppState.getSharedPreferencesKey();
3620 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
3621 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, true);
3622
3623 show = !show;
3624
3625 SharedPreferences.Editor editor = sp.edit();
3626 editor.putBoolean(SHOW_WEIGHT_WATCHER, show);
3627 editor.commit();
3628
3629 if (mWeightWatcher != null) {
3630 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
3631 }
3632 }
3633
Winson Chungd64d1762013-08-20 14:37:16 -07003634 public void bindAppsAdded(final ArrayList<Long> newScreens,
3635 final ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -07003636 final ArrayList<ItemInfo> addAnimated,
3637 final ArrayList<AppInfo> addedApps) {
Winson Chungd64d1762013-08-20 14:37:16 -07003638 Runnable r = new Runnable() {
3639 public void run() {
Winson Chungc58497e2013-09-03 17:48:37 -07003640 bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps);
Winson Chungd64d1762013-08-20 14:37:16 -07003641 }
3642 };
3643 if (waitUntilResume(r)) {
3644 return;
3645 }
3646
Winson Chungd64d1762013-08-20 14:37:16 -07003647 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08003648 if (newScreens != null) {
3649 bindAddScreens(newScreens);
3650 }
Winson Chungd64d1762013-08-20 14:37:16 -07003651
3652 // We add the items without animation on non-visible pages, and with
3653 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08003654 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003655 bindItems(addNotAnimated, 0,
3656 addNotAnimated.size(), false);
3657 }
Adam Cohen76a47a12014-02-05 11:47:43 -08003658 if (addAnimated != null && !addAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003659 bindItems(addAnimated, 0,
3660 addAnimated.size(), true);
3661 }
Winson Chungc58497e2013-09-03 17:48:37 -07003662
Winson Chung87412982013-10-03 18:34:14 -07003663 // Remove the extra empty screen
Adam Cohen689ff162014-05-08 17:27:56 -07003664 mWorkspace.removeExtraEmptyScreen(false, false);
Winson Chung87412982013-10-03 18:34:14 -07003665
Winson Chungb745afb2015-03-02 11:51:23 -08003666 if (addedApps != null && mAppsView != null) {
3667 mAppsView.addApps(addedApps);
Winson Chungc58497e2013-09-03 17:48:37 -07003668 }
Winson Chungd64d1762013-08-20 14:37:16 -07003669 }
3670
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003671 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003672 * Bind the items start-end from the list.
3673 *
3674 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003675 */
Winson Chung64359a52013-07-08 17:17:08 -07003676 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end,
3677 final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07003678 Runnable r = new Runnable() {
3679 public void run() {
3680 bindItems(shortcuts, start, end, forceAnimateIcons);
3681 }
3682 };
3683 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003684 return;
3685 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003686
Winson Chungf0c6ae02012-03-21 16:10:31 -07003687 // Get the list of added shortcuts and intersect them with the set of shortcuts here
Winson Chung64359a52013-07-08 17:17:08 -07003688 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
3689 final Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chung997a9232013-07-24 15:33:46 -07003690 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07003691 Workspace workspace = mWorkspace;
Winson Chung997a9232013-07-24 15:33:46 -07003692 long newShortcutsScreenId = -1;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003693 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003694 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003695
3696 // Short circuit if we are loading dock items for a configuration which has no dock
3697 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3698 mHotseat == null) {
3699 continue;
3700 }
3701
Sunny Goyal639e9062015-08-19 19:17:06 -07003702 final View view;
Joe Onorato9c1289c2009-08-17 11:03:03 -04003703 switch (item.itemType) {
3704 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3705 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07003706 ShortcutInfo info = (ShortcutInfo) item;
Sunny Goyal639e9062015-08-19 19:17:06 -07003707 view = createShortcut(info);
Adam Cohendcd297f2013-06-18 13:13:40 -07003708
Winson Chung64359a52013-07-08 17:17:08 -07003709 /*
3710 * TODO: FIX collision case
3711 */
Winson Chungce376632013-07-11 16:12:41 -07003712 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
3713 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
3714 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07003715 View v = cl.getChildAt(item.cellX, item.cellY);
3716 Object tag = v.getTag();
3717 String desc = "Collision while binding workspace item: " + item
3718 + ". Collides with " + tag;
Sunny Goyal6c56c682015-07-16 14:09:05 -07003719 if (ProviderConfig.IS_DOGFOOD_BUILD) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07003720 throw (new RuntimeException(desc));
3721 } else {
3722 Log.d(TAG, desc);
3723 }
Winson Chungce376632013-07-11 16:12:41 -07003724 }
Winson Chung64359a52013-07-08 17:17:08 -07003725 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003726 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003727 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Sunny Goyal639e9062015-08-19 19:17:06 -07003728 view = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003729 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003730 (FolderInfo) item, mIconCache);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003731 break;
Winson Chungc763c4e2013-07-19 13:49:06 -07003732 default:
3733 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04003734 }
Sunny Goyal639e9062015-08-19 19:17:06 -07003735
3736 workspace.addInScreenFromBind(view, item.container, item.screenId, item.cellX,
3737 item.cellY, 1, 1);
3738 if (animateIcons) {
3739 // Animate all the applications up now
3740 view.setAlpha(0f);
3741 view.setScaleX(0f);
3742 view.setScaleY(0f);
3743 bounceAnims.add(createNewAppBounceAnimation(view, i));
3744 newShortcutsScreenId = item.screenId;
3745 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003746 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003747
Winson Chung997a9232013-07-24 15:33:46 -07003748 if (animateIcons) {
3749 // Animate to the correct page
3750 if (newShortcutsScreenId > -1) {
3751 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Winson Chung94d67682013-09-25 16:29:40 -07003752 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId);
Winson Chungb2323832013-10-03 15:22:09 -07003753 final Runnable startBounceAnimRunnable = new Runnable() {
3754 public void run() {
3755 anim.playTogether(bounceAnims);
3756 anim.start();
3757 }
3758 };
Winson Chung997a9232013-07-24 15:33:46 -07003759 if (newShortcutsScreenId != currentScreenId) {
Winson Chung94d67682013-09-25 16:29:40 -07003760 // We post the animation slightly delayed to prevent slowdowns
3761 // when we are loading right after we return to launcher.
3762 mWorkspace.postDelayed(new Runnable() {
3763 public void run() {
Ian Parkinson94449152014-01-21 13:09:59 +00003764 if (mWorkspace != null) {
3765 mWorkspace.snapToPage(newScreenIndex);
3766 mWorkspace.postDelayed(startBounceAnimRunnable,
3767 NEW_APPS_ANIMATION_DELAY);
3768 }
Winson Chung94d67682013-09-25 16:29:40 -07003769 }
3770 }, NEW_APPS_PAGE_MOVE_DELAY);
Winson Chungb2323832013-10-03 15:22:09 -07003771 } else {
3772 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07003773 }
3774 }
Winson Chung64359a52013-07-08 17:17:08 -07003775 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003776 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003777 }
3778
Joe Onorato9c1289c2009-08-17 11:03:03 -04003779 /**
3780 * Implementation of the method from LauncherModel.Callbacks.
3781 */
Sunny Goyale2df0622015-04-24 11:27:00 -07003782 public void bindFolders(final LongArrayMap<FolderInfo> folders) {
Winson Chungd64d1762013-08-20 14:37:16 -07003783 Runnable r = new Runnable() {
3784 public void run() {
3785 bindFolders(folders);
3786 }
3787 };
3788 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003789 return;
3790 }
Sunny Goyale2df0622015-04-24 11:27:00 -07003791 sFolders = folders.clone();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003792 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003793
3794 /**
3795 * Add the views for a widget to the workspace.
3796 *
3797 * Implementation of the method from LauncherModel.Callbacks.
3798 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07003799 public void bindAppWidget(final LauncherAppWidgetInfo item) {
Winson Chungd64d1762013-08-20 14:37:16 -07003800 Runnable r = new Runnable() {
3801 public void run() {
3802 bindAppWidget(item);
3803 }
3804 };
3805 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003806 return;
3807 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003808
Daniel Sandler843e8602010-06-07 14:59:01 -04003809 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
3810 if (DEBUG_WIDGETS) {
3811 Log.d(TAG, "bindAppWidget: " + item);
3812 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003813 final Workspace workspace = mWorkspace;
3814
Adam Cohen59400422014-03-05 18:07:04 -08003815 LauncherAppWidgetProviderInfo appWidgetInfo =
Robin Lee26ace122015-03-16 19:41:43 +00003816 LauncherModel.getProviderInfo(this, item.providerName, item.user);
Adam Cohen59400422014-03-05 18:07:04 -08003817
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003818 if (!mIsSafeModeEnabled
3819 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY) == 0)
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003820 && (item.restoreStatus != LauncherAppWidgetInfo.RESTORE_COMPLETED)) {
3821
Sunny Goyalff572272014-07-23 13:58:07 -07003822 if (appWidgetInfo == null) {
3823 if (DEBUG_WIDGETS) {
3824 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3825 + " belongs to component " + item.providerName
3826 + ", as the povider is null");
3827 }
3828 LauncherModel.deleteItemFromDatabase(this, item);
3829 return;
3830 }
Sunny Goyalff572272014-07-23 13:58:07 -07003831
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003832 // If we do not have a valid id, try to bind an id.
3833 if ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_ID_NOT_VALID) != 0) {
3834 // Note: This assumes that the id remap broadcast is received before this step.
3835 // If that is not the case, the id remap will be ignored and user may see the
3836 // click to setup view.
3837 PendingAddWidgetInfo pendingInfo = new PendingAddWidgetInfo(this, appWidgetInfo, null);
3838 pendingInfo.spanX = item.spanX;
3839 pendingInfo.spanY = item.spanY;
3840 pendingInfo.minSpanX = item.minSpanX;
3841 pendingInfo.minSpanY = item.minSpanY;
3842 Bundle options = null;
3843 WidgetHostViewLoader.getDefaultOptionsForWidget(this, pendingInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07003844
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003845 int newWidgetId = mAppWidgetHost.allocateAppWidgetId();
3846 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
3847 newWidgetId, appWidgetInfo, options);
3848
3849 // TODO consider showing a permission dialog when the widget is clicked.
3850 if (!success) {
3851 mAppWidgetHost.deleteAppWidgetId(newWidgetId);
3852 if (DEBUG_WIDGETS) {
3853 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3854 + " belongs to component " + item.providerName
3855 + ", as the launcher is unable to bing a new widget id");
3856 }
3857 LauncherModel.deleteItemFromDatabase(this, item);
3858 return;
Sunny Goyalff572272014-07-23 13:58:07 -07003859 }
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003860
3861 item.appWidgetId = newWidgetId;
3862
3863 // If the widget has a configure activity, it is still needs to set it up, otherwise
3864 // the widget is ready to go.
3865 item.restoreStatus = (appWidgetInfo.configure == null)
3866 ? LauncherAppWidgetInfo.RESTORE_COMPLETED
3867 : LauncherAppWidgetInfo.FLAG_UI_NOT_READY;
3868
3869 LauncherModel.updateItemInDatabase(this, item);
3870 } else if (((item.restoreStatus & LauncherAppWidgetInfo.FLAG_UI_NOT_READY) != 0)
3871 && (appWidgetInfo.configure == null)) {
3872 // If the ID is already valid, verify if we need to configure or not.
3873 item.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
3874 LauncherModel.updateItemInDatabase(this, item);
Sunny Goyalff572272014-07-23 13:58:07 -07003875 }
Sunny Goyalff572272014-07-23 13:58:07 -07003876 }
3877
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003878 if (!mIsSafeModeEnabled && item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
Sunny Goyal651077b2014-06-30 14:15:31 -07003879 final int appWidgetId = item.appWidgetId;
Sunny Goyal651077b2014-06-30 14:15:31 -07003880 if (DEBUG_WIDGETS) {
Adam Cohen59400422014-03-05 18:07:04 -08003881 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component "
3882 + appWidgetInfo.provider);
Sunny Goyal651077b2014-06-30 14:15:31 -07003883 }
Daniel Sandler843e8602010-06-07 14:59:01 -04003884
Sunny Goyal651077b2014-06-30 14:15:31 -07003885 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
Sunny Goyal233ee962015-08-03 13:05:01 -07003886 item.minSpanX = appWidgetInfo.minSpanX;
3887 item.minSpanY = appWidgetInfo.minSpanY;
Sunny Goyal651077b2014-06-30 14:15:31 -07003888 } else {
3889 appWidgetInfo = null;
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003890 PendingAppWidgetHostView view = new PendingAppWidgetHostView(this, item,
3891 mIsSafeModeEnabled);
Sunny Goyal0fc1be12014-08-11 17:05:23 -07003892 view.updateIcon(mIconCache);
3893 item.hostView = view;
Sunny Goyal651077b2014-06-30 14:15:31 -07003894 item.hostView.updateAppWidget(null);
Sunny Goyalff572272014-07-23 13:58:07 -07003895 item.hostView.setOnClickListener(this);
Sunny Goyal651077b2014-06-30 14:15:31 -07003896 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003897
Joe Onorato9c1289c2009-08-17 11:03:03 -04003898 item.hostView.setTag(item);
Winson Chung211bac32012-05-15 13:43:57 -07003899 item.onBindAppWidget(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003900
Adam Cohendcd297f2013-06-18 13:13:40 -07003901 workspace.addInScreen(item.hostView, item.container, item.screenId, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04003902 item.cellY, item.spanX, item.spanY, false);
Adam Cohen59400422014-03-05 18:07:04 -08003903 if (!item.isCustomWidget()) {
3904 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
3905 }
Adam Cohended9f8d2010-11-03 13:25:16 -07003906
Joe Onorato9c1289c2009-08-17 11:03:03 -04003907 workspace.requestLayout();
3908
Daniel Sandler843e8602010-06-07 14:59:01 -04003909 if (DEBUG_WIDGETS) {
3910 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
3911 + (SystemClock.uptimeMillis()-start) + "ms");
3912 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003913 }
3914
Sunny Goyalff572272014-07-23 13:58:07 -07003915 /**
3916 * Restores a pending widget.
3917 *
3918 * @param appWidgetId The app widget id
3919 * @param cellInfo The position on screen where to create the widget.
3920 */
3921 private void completeRestoreAppWidget(final int appWidgetId) {
3922 LauncherAppWidgetHostView view = mWorkspace.getWidgetForAppWidgetId(appWidgetId);
3923 if ((view == null) || !(view instanceof PendingAppWidgetHostView)) {
3924 Log.e(TAG, "Widget update called, when the widget no longer exists.");
3925 return;
3926 }
3927
Sunny Goyal0fc1be12014-08-11 17:05:23 -07003928 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) view.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07003929 info.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
3930
3931 mWorkspace.reinflateWidgetsIfNecessary();
3932 LauncherModel.updateItemInDatabase(this, info);
3933 }
3934
Adam Cohen1462de32012-07-24 22:34:36 -07003935 public void onPageBoundSynchronously(int page) {
3936 mSynchronouslyBoundPages.add(page);
3937 }
3938
Joe Onorato9c1289c2009-08-17 11:03:03 -04003939 /**
3940 * Callback saying that there aren't any more items to bind.
3941 *
3942 * Implementation of the method from LauncherModel.Callbacks.
3943 */
Sunny Goyal66cfdc22015-02-02 13:01:51 -08003944 public void finishBindingItems() {
Winson Chungd64d1762013-08-20 14:37:16 -07003945 Runnable r = new Runnable() {
3946 public void run() {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08003947 finishBindingItems();
Winson Chungd64d1762013-08-20 14:37:16 -07003948 }
3949 };
3950 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003951 return;
3952 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003953 if (mSavedState != null) {
3954 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07003955 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003956 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003957 mSavedState = null;
3958 }
3959
Adam Cohen1462de32012-07-24 22:34:36 -07003960 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003961
Anjali Koppalff7ceff2014-05-01 18:26:37 -07003962 setWorkspaceLoading(false);
Adam Cohen3ed316a2014-07-23 18:21:20 -07003963 sendLoadingCompleteBroadcastIfNecessary();
Adam Cohendb364c32014-05-20 14:23:40 -07003964
3965 // If we received the result of any pending adds while the loader was running (e.g. the
3966 // widget configuration forced an orientation change), process them now.
3967 if (sPendingAddItem != null) {
3968 final long screenId = completeAdd(sPendingAddItem);
3969
3970 // TODO: this moves the user to the page where the pending item was added. Ideally,
3971 // the screen would be guaranteed to exist after bind, and the page would be set through
3972 // the workspace restore process.
3973 mWorkspace.post(new Runnable() {
3974 @Override
3975 public void run() {
3976 mWorkspace.snapToScreenId(screenId);
3977 }
3978 });
3979 sPendingAddItem = null;
3980 }
3981
Sunny Goyal756adbc2015-04-16 15:20:51 -07003982 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
Adam Cohen9211d422014-10-07 18:14:53 -07003983
3984 if (mLauncherCallbacks != null) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08003985 mLauncherCallbacks.finishBindingItems(false);
Adam Cohen9211d422014-10-07 18:14:53 -07003986 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003987 }
3988
Adam Cohen3ed316a2014-07-23 18:21:20 -07003989 private void sendLoadingCompleteBroadcastIfNecessary() {
3990 if (!mSharedPrefs.getBoolean(FIRST_LOAD_COMPLETE, false)) {
3991 String permission =
3992 getResources().getString(R.string.receive_first_load_broadcast_permission);
3993 Intent intent = new Intent(ACTION_FIRST_LOAD_COMPLETE);
3994 sendBroadcast(intent, permission);
3995 SharedPreferences.Editor editor = mSharedPrefs.edit();
3996 editor.putBoolean(FIRST_LOAD_COMPLETE, true);
3997 editor.apply();
3998 }
3999 }
4000
Winson Chunga0b7e862013-09-05 16:03:15 -07004001 public boolean isAllAppsButtonRank(int rank) {
4002 if (mHotseat != null) {
4003 return mHotseat.isAllAppsButtonRank(rank);
4004 }
4005 return false;
4006 }
4007
Winson Chunga2413752012-04-03 14:22:34 -07004008 private boolean canRunNewAppsAnimation() {
4009 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
Sunny Goyal639e9062015-08-19 19:17:06 -07004010 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000)
4011 && (mClings == null || !mClings.isVisible());
Winson Chunga2413752012-04-03 14:22:34 -07004012 }
4013
Winson Chungc9168342013-06-26 14:54:55 -07004014 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
Sunny Goyal5d2fc322015-07-06 22:52:49 -07004015 ValueAnimator bounceAnim = LauncherAnimUtils.ofViewAlphaAndScale(v, 1, 1, 1);
Winson Chungc9168342013-06-26 14:54:55 -07004016 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
4017 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
Sunny Goyal5a1f53b2015-05-27 10:24:24 -07004018 bounceAnim.setInterpolator(new OvershootInterpolator(BOUNCE_ANIMATION_TENSION));
Winson Chungc9168342013-06-26 14:54:55 -07004019 return bounceAnim;
4020 }
4021
Adam Cohen27772732013-11-11 14:00:56 +00004022 public boolean useVerticalBarLayout() {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07004023 return mDeviceProfile.isVerticalBarLayout();
Adam Cohen27772732013-11-11 14:00:56 +00004024 }
4025
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004026 protected Rect getSearchBarBounds() {
Sunny Goyalc6205602015-05-21 20:46:33 -07004027 return mDeviceProfile.getSearchBarBounds(Utilities.isRtl(getResources()));
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004028 }
4029
Winson Chung88fa7412015-08-03 14:25:28 -07004030 public void bindSearchProviderChanged() {
Sunny Goyal594d76d2014-11-06 10:12:54 -08004031 if (mSearchDropTargetBar == null) {
4032 return;
Winson Chungadf0c182012-08-23 14:59:07 -07004033 }
Sunny Goyal594d76d2014-11-06 10:12:54 -08004034 if (mQsb != null) {
4035 mSearchDropTargetBar.removeView(mQsb);
4036 mQsb = null;
4037 }
Adam Cohenb0df1b02015-03-18 22:21:40 -07004038 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004039 }
4040
Amith Yamasani6d7fe502010-11-16 09:05:07 -08004041 /**
Winson Chungbb785c62015-05-05 10:05:08 -07004042 * A runnable that we can dequeue and re-enqueue when all applications are bound (to prevent
4043 * multiple calls to bind the same list.)
4044 */
4045 @Thunk ArrayList<AppInfo> mTmpAppsList;
4046 private Runnable mBindAllApplicationsRunnable = new Runnable() {
4047 public void run() {
4048 bindAllApplications(mTmpAppsList);
4049 mTmpAppsList = null;
4050 }
4051 };
4052
4053 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004054 * Add the icons for all apps.
4055 *
4056 * Implementation of the method from LauncherModel.Callbacks.
4057 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004058 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Winson Chungbb785c62015-05-05 10:05:08 -07004059 if (waitUntilResume(mBindAllApplicationsRunnable, true)) {
4060 mTmpAppsList = apps;
4061 return;
4062 }
4063
Winson Chungb745afb2015-03-02 11:51:23 -08004064 if (mAppsView != null) {
4065 mAppsView.setApps(apps);
4066 }
Adam Cohen9211d422014-10-07 18:14:53 -07004067 if (mLauncherCallbacks != null) {
4068 mLauncherCallbacks.bindAllApplications(apps);
4069 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004070 }
4071
4072 /**
4073 * A package was updated.
4074 *
4075 * Implementation of the method from LauncherModel.Callbacks.
4076 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004077 public void bindAppsUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004078 Runnable r = new Runnable() {
4079 public void run() {
4080 bindAppsUpdated(apps);
4081 }
4082 };
4083 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004084 return;
4085 }
4086
Winson Chungb745afb2015-03-02 11:51:23 -08004087 if (mAppsView != null) {
4088 mAppsView.updateApps(apps);
Winson Chungc58497e2013-09-03 17:48:37 -07004089 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004090 }
4091
Sunny Goyal4390ace2014-10-13 11:33:11 -07004092 @Override
4093 public void bindWidgetsRestored(final ArrayList<LauncherAppWidgetInfo> widgets) {
4094 Runnable r = new Runnable() {
4095 public void run() {
4096 bindWidgetsRestored(widgets);
4097 }
4098 };
4099 if (waitUntilResume(r)) {
4100 return;
4101 }
4102 mWorkspace.widgetsRestored(widgets);
4103 }
4104
Joe Onorato9c1289c2009-08-17 11:03:03 -04004105 /**
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004106 * Some shortcuts were updated in the background.
4107 *
4108 * Implementation of the method from LauncherModel.Callbacks.
4109 */
Sunny Goyal4390ace2014-10-13 11:33:11 -07004110 @Override
4111 public void bindShortcutsChanged(final ArrayList<ShortcutInfo> updated,
4112 final ArrayList<ShortcutInfo> removed, final UserHandleCompat user) {
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004113 Runnable r = new Runnable() {
4114 public void run() {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004115 bindShortcutsChanged(updated, removed, user);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004116 }
4117 };
4118 if (waitUntilResume(r)) {
4119 return;
4120 }
4121
Sunny Goyal4390ace2014-10-13 11:33:11 -07004122 if (!updated.isEmpty()) {
4123 mWorkspace.updateShortcuts(updated);
4124 }
4125
4126 if (!removed.isEmpty()) {
4127 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4128 for (ShortcutInfo si : removed) {
4129 removedComponents.add(si.getTargetComponent());
4130 }
4131 mWorkspace.removeItemsByComponentName(removedComponents, user);
4132 // Notify the drag controller
4133 mDragController.onAppsRemoved(new ArrayList<String>(), removedComponents);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004134 }
4135 }
4136
4137 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004138 * Update the state of a package, typically related to install state.
4139 *
4140 * Implementation of the method from LauncherModel.Callbacks.
4141 */
Sunny Goyale755d462014-07-22 13:48:29 -07004142 @Override
Sunny Goyal756adbc2015-04-16 15:20:51 -07004143 public void bindRestoreItemsChange(final HashSet<ItemInfo> updates) {
4144 Runnable r = new Runnable() {
4145 public void run() {
4146 bindRestoreItemsChange(updates);
4147 }
4148 };
4149 if (waitUntilResume(r)) {
4150 return;
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004151 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004152
Sunny Goyal756adbc2015-04-16 15:20:51 -07004153 mWorkspace.updateRestoreItems(updates);
Sunny Goyala22666f2014-09-18 13:25:15 -07004154 }
4155
4156 /**
Winson Chung83892cc2013-05-01 16:53:33 -07004157 * A package was uninstalled. We take both the super set of packageNames
4158 * in addition to specific applications to remove, the reason being that
4159 * this can be called when a package is updated as well. In that scenario,
4160 * we only remove specific components from the workspace, where as
4161 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004162 *
Sunny Goyal1a745e82014-10-02 15:58:31 -07004163 * @param reason if non-zero, the icons are not permanently removed, rather marked as disabled.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004164 * Implementation of the method from LauncherModel.Callbacks.
4165 */
Sunny Goyal1a745e82014-10-02 15:58:31 -07004166 @Override
Winson Chung83892cc2013-05-01 16:53:33 -07004167 public void bindComponentsRemoved(final ArrayList<String> packageNames,
Sunny Goyal1a745e82014-10-02 15:58:31 -07004168 final ArrayList<AppInfo> appInfos, final UserHandleCompat user, final int reason) {
Winson Chungd64d1762013-08-20 14:37:16 -07004169 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004170 public void run() {
Sunny Goyal1a745e82014-10-02 15:58:31 -07004171 bindComponentsRemoved(packageNames, appInfos, user, reason);
Winson Chung83892cc2013-05-01 16:53:33 -07004172 }
Winson Chungd64d1762013-08-20 14:37:16 -07004173 };
4174 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07004175 return;
4176 }
4177
Sunny Goyal1a745e82014-10-02 15:58:31 -07004178 if (reason == 0) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004179 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4180 for (AppInfo info : appInfos) {
4181 removedComponents.add(info.componentName);
4182 }
Sunny Goyal1a745e82014-10-02 15:58:31 -07004183 if (!packageNames.isEmpty()) {
4184 mWorkspace.removeItemsByPackageName(packageNames, user);
4185 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004186 if (!removedComponents.isEmpty()) {
4187 mWorkspace.removeItemsByComponentName(removedComponents, user);
Sunny Goyal1a745e82014-10-02 15:58:31 -07004188 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004189 // Notify the drag controller
4190 mDragController.onAppsRemoved(packageNames, removedComponents);
4191
Sunny Goyal1a745e82014-10-02 15:58:31 -07004192 } else {
4193 mWorkspace.disableShortcutsByPackageName(packageNames, user, reason);
Joe Onorato36115782010-06-17 13:28:48 -04004194 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07004195
Winson Chungdf95eb12013-10-16 14:57:07 -07004196 // Update AllApps
Winson Chungb745afb2015-03-02 11:51:23 -08004197 if (mAppsView != null) {
4198 mAppsView.removeApps(appInfos);
Winson Chungc58497e2013-09-03 17:48:37 -07004199 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004200 }
Joe Onoratobe386092009-11-17 17:32:16 -08004201
Michael Jurkac402cd92013-05-20 15:49:32 +02004202 private Runnable mBindPackagesUpdatedRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004203 public void run() {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004204 bindAllPackages(mWidgetsModel);
Winson Chung83892cc2013-05-01 16:53:33 -07004205 }
Michael Jurkac402cd92013-05-20 15:49:32 +02004206 };
Hyunyoung Song3f471442015-04-08 19:01:34 -07004207
Hyunyoung Song8821ca92015-05-04 16:28:20 -07004208 @Override
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004209 public void bindAllPackages(final WidgetsModel model) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004210 if (waitUntilResume(mBindPackagesUpdatedRunnable, true)) {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004211 mWidgetsModel = model;
Winson Chung83892cc2013-05-01 16:53:33 -07004212 return;
4213 }
4214
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004215 if (mWidgetsView != null && model != null) {
4216 mWidgetsView.addWidgets(model);
4217 mWidgetsModel = null;
Winson Chung785d2eb2011-04-14 16:08:02 -07004218 }
Winson Chung80baf5a2010-08-09 16:03:15 -07004219 }
4220
Winson Chung400438b2011-01-16 17:53:48 -08004221 private int mapConfigurationOriActivityInfoOri(int configOri) {
4222 final Display d = getWindowManager().getDefaultDisplay();
4223 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
4224 switch (d.getRotation()) {
4225 case Surface.ROTATION_0:
4226 case Surface.ROTATION_180:
4227 // We are currently in the same basic orientation as the natural orientation
4228 naturalOri = configOri;
4229 break;
4230 case Surface.ROTATION_90:
4231 case Surface.ROTATION_270:
4232 // We are currently in the other basic orientation to the natural orientation
4233 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
4234 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
4235 break;
4236 }
4237
4238 int[] oriMap = {
4239 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
4240 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
4241 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
4242 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
4243 };
4244 // Since the map starts at portrait, we need to offset if this device's natural orientation
4245 // is landscape.
4246 int indexOffset = 0;
4247 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
4248 indexOffset = 1;
4249 }
4250 return oriMap[(d.getRotation() + indexOffset) % 4];
4251 }
Adam Cohen446e9402011-09-15 18:21:21 -07004252
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004253 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR2)
Winson Chung4b919f82012-05-01 10:44:08 -07004254 public void lockScreenOrientation() {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004255 if (mRotationEnabled) {
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004256 if (Utilities.ATLEAST_JB_MR2) {
4257 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LOCKED);
4258 } else {
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004259 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
4260 .getConfiguration().orientation));
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004261 }
Winson Chung4b919f82012-05-01 10:44:08 -07004262 }
4263 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004264
Winson Chung4b919f82012-05-01 10:44:08 -07004265 public void unlockScreenOrientation(boolean immediate) {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004266 if (mRotationEnabled) {
Winson Chung4b919f82012-05-01 10:44:08 -07004267 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07004268 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07004269 } else {
4270 mHandler.postDelayed(new Runnable() {
4271 public void run() {
4272 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4273 }
Sunny Goyal756cd262015-08-20 12:33:21 -07004274 }, RESTORE_SCREEN_ORIENTATION_DELAY);
Winson Chung641d71d2012-04-26 15:58:01 -07004275 }
Winson Chung4b919f82012-05-01 10:44:08 -07004276 }
Winson Chung400438b2011-01-16 17:53:48 -08004277 }
4278
Winson Chunge43a1e72014-01-15 10:33:02 -08004279 protected boolean isLauncherPreinstalled() {
Adam Cohen9211d422014-10-07 18:14:53 -07004280 if (mLauncherCallbacks != null) {
4281 return mLauncherCallbacks.isLauncherPreinstalled();
4282 }
Winson Chunge43a1e72014-01-15 10:33:02 -08004283 PackageManager pm = getPackageManager();
4284 try {
4285 ApplicationInfo ai = pm.getApplicationInfo(getComponentName().getPackageName(), 0);
4286 if ((ai.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
4287 return true;
4288 } else {
4289 return false;
4290 }
4291 } catch (NameNotFoundException e) {
4292 e.printStackTrace();
4293 return false;
4294 }
4295 }
4296
Adam Cohenea90f832014-05-21 15:03:34 -07004297 /**
4298 * This method indicates whether or not we should suggest default wallpaper dimensions
4299 * when our wallpaper cropper was not yet used to set a wallpaper.
4300 */
4301 protected boolean overrideWallpaperDimensions() {
Adam Cohen9211d422014-10-07 18:14:53 -07004302 if (mLauncherCallbacks != null) {
4303 return mLauncherCallbacks.overrideWallpaperDimensions();
4304 }
Adam Cohenea90f832014-05-21 15:03:34 -07004305 return true;
4306 }
4307
Adam Cohen432609a2014-03-13 17:03:22 -07004308 /**
4309 * To be overridden by subclasses to indicate that there is an activity to launch
4310 * before showing the standard launcher experience.
4311 */
4312 protected boolean hasFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004313 if (mLauncherCallbacks != null) {
4314 return mLauncherCallbacks.hasFirstRunActivity();
4315 }
Adam Cohen432609a2014-03-13 17:03:22 -07004316 return false;
4317 }
4318
4319 /**
4320 * To be overridden by subclasses to launch any first run activity
4321 */
4322 protected Intent getFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004323 if (mLauncherCallbacks != null) {
4324 return mLauncherCallbacks.getFirstRunActivity();
4325 }
Adam Cohen432609a2014-03-13 17:03:22 -07004326 return null;
4327 }
4328
Winson Chunga6945242014-01-08 14:04:34 -08004329 private boolean shouldRunFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004330 return !ActivityManager.isRunningInTestHarness() &&
4331 !mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
Winson Chunga6945242014-01-08 14:04:34 -08004332 }
4333
Adam Cohen4a9423d2014-03-28 14:22:31 -07004334 protected boolean hasRunFirstRunActivity() {
4335 return mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
4336 }
4337
Adam Cohen432609a2014-03-13 17:03:22 -07004338 public boolean showFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004339 if (shouldRunFirstRunActivity() &&
4340 hasFirstRunActivity()) {
Winson Chunga6945242014-01-08 14:04:34 -08004341 Intent firstRunIntent = getFirstRunActivity();
4342 if (firstRunIntent != null) {
4343 startActivity(firstRunIntent);
4344 markFirstRunActivityShown();
Adam Cohen432609a2014-03-13 17:03:22 -07004345 return true;
Winson Chunga6945242014-01-08 14:04:34 -08004346 }
4347 }
Adam Cohen432609a2014-03-13 17:03:22 -07004348 return false;
Winson Chunga6945242014-01-08 14:04:34 -08004349 }
4350
4351 private void markFirstRunActivityShown() {
4352 SharedPreferences.Editor editor = mSharedPrefs.edit();
4353 editor.putBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, true);
4354 editor.apply();
4355 }
4356
Adam Cohen432609a2014-03-13 17:03:22 -07004357 /**
4358 * To be overridden by subclasses to indicate that there is an in-activity full-screen intro
4359 * screen that must be displayed and dismissed.
4360 */
4361 protected boolean hasDismissableIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004362 if (mLauncherCallbacks != null) {
4363 return mLauncherCallbacks.hasDismissableIntroScreen();
4364 }
Adam Cohen432609a2014-03-13 17:03:22 -07004365 return false;
4366 }
4367
4368 /**
4369 * Full screen intro screen to be shown and dismissed before the launcher can be used.
4370 */
4371 protected View getIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004372 if (mLauncherCallbacks != null) {
4373 return mLauncherCallbacks.getIntroScreen();
4374 }
Adam Cohen432609a2014-03-13 17:03:22 -07004375 return null;
4376 }
4377
4378 /**
4379 * To be overriden by subclasses to indicate whether the in-activity intro screen has been
4380 * dismissed. This method is ignored if #hasDismissableIntroScreen returns false.
4381 */
4382 private boolean shouldShowIntroScreen() {
4383 return hasDismissableIntroScreen() &&
4384 !mSharedPrefs.getBoolean(INTRO_SCREEN_DISMISSED, false);
4385 }
4386
4387 protected void showIntroScreen() {
4388 View introScreen = getIntroScreen();
4389 changeWallpaperVisiblity(false);
4390 if (introScreen != null) {
4391 mDragLayer.showOverlayView(introScreen);
4392 }
Adam Cohenc3e12c72014-10-31 16:15:36 -07004393 if (mLauncherOverlayContainer != null) {
4394 mLauncherOverlayContainer.setVisibility(View.INVISIBLE);
4395 }
Adam Cohen432609a2014-03-13 17:03:22 -07004396 }
4397
4398 public void dismissIntroScreen() {
4399 markIntroScreenDismissed();
4400 if (showFirstRunActivity()) {
4401 // We delay hiding the intro view until the first run activity is showing. This
4402 // avoids a blip.
4403 mWorkspace.postDelayed(new Runnable() {
4404 @Override
4405 public void run() {
4406 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004407 if (mLauncherOverlayContainer != null) {
4408 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4409 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004410 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004411 }
4412 }, ACTIVITY_START_DELAY);
4413 } else {
4414 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004415 if (mLauncherOverlayContainer != null) {
4416 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4417 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004418 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004419 }
4420 changeWallpaperVisiblity(true);
4421 }
4422
4423 private void markIntroScreenDismissed() {
4424 SharedPreferences.Editor editor = mSharedPrefs.edit();
4425 editor.putBoolean(INTRO_SCREEN_DISMISSED, true);
4426 editor.apply();
4427 }
4428
Adam Cohen091440a2015-03-18 14:16:05 -07004429 @Thunk void showFirstRunClings() {
Sunny Goyal88d60f12014-09-08 03:47:29 -07004430 // The two first run cling paths are mutually exclusive, if the launcher is preinstalled
4431 // on the device, then we always show the first run cling experience (or if there is no
4432 // launcher2). Otherwise, we prompt the user upon started for migration
4433 LauncherClings launcherClings = new LauncherClings(this);
4434 if (launcherClings.shouldShowFirstRunOrMigrationClings()) {
Sunny Goyal639e9062015-08-19 19:17:06 -07004435 mClings = launcherClings;
Sunny Goyal88d60f12014-09-08 03:47:29 -07004436 if (mModel.canMigrateFromOldLauncherDb(this)) {
4437 launcherClings.showMigrationCling();
4438 } else {
Sunny Goyalaf0628f2014-09-19 10:14:48 -07004439 launcherClings.showLongPressCling(true);
Sunny Goyal88d60f12014-09-08 03:47:29 -07004440 }
4441 }
4442 }
4443
Winson Chunga6945242014-01-08 14:04:34 -08004444 void showWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004445 if (mWorkspace != null) mWorkspace.setAlpha(1f);
4446 if (mHotseat != null) mHotseat.setAlpha(1f);
4447 if (mPageIndicators != null) mPageIndicators.setAlpha(1f);
Winson Chung006ee262015-08-03 14:40:11 -07004448 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4449 SearchDropTargetBar.State.SEARCH_BAR, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004450 }
4451
4452 void hideWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004453 if (mWorkspace != null) mWorkspace.setAlpha(0f);
4454 if (mHotseat != null) mHotseat.setAlpha(0f);
4455 if (mPageIndicators != null) mPageIndicators.setAlpha(0f);
Winson Chung006ee262015-08-03 14:40:11 -07004456 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4457 SearchDropTargetBar.State.INVISIBLE, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004458 }
4459
Winson Chung5ffd51d2015-06-25 11:36:50 -07004460 // TODO: These method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004461 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Mathew Inwood72fbec12013-11-19 15:45:07 +00004462 public ItemInfo createAppDragInfo(Intent appLaunchIntent) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004463 // Called from search suggestion
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004464 UserHandleCompat user = null;
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004465 if (Utilities.ATLEAST_LOLLIPOP) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004466 UserHandle userHandle = appLaunchIntent.getParcelableExtra(Intent.EXTRA_USER);
4467 if (userHandle != null) {
4468 user = UserHandleCompat.fromUser(userHandle);
4469 }
4470 }
4471 return createAppDragInfo(appLaunchIntent, user);
Winson Chung5ffd51d2015-06-25 11:36:50 -07004472 }
4473
4474 // TODO: This method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004475 public ItemInfo createAppDragInfo(Intent intent, UserHandleCompat user) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004476 if (user == null) {
4477 user = UserHandleCompat.myUserHandle();
4478 }
4479
4480 // Called from search suggestion, add the profile extra to the intent to ensure that we
4481 // can launch it correctly
Kenny Guyed131872014-04-30 03:02:21 +01004482 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004483 LauncherActivityInfoCompat activityInfo = launcherApps.resolveActivity(intent, user);
Kenny Guyed131872014-04-30 03:02:21 +01004484 if (activityInfo == null) {
Mathew Inwood72fbec12013-11-19 15:45:07 +00004485 return null;
4486 }
Winson Chung5ffd51d2015-06-25 11:36:50 -07004487 return new AppInfo(this, activityInfo, user, mIconCache);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004488 }
4489
Winson Chung5ffd51d2015-06-25 11:36:50 -07004490 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004491 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4492 Bitmap icon) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004493 return new ShortcutInfo(shortcutIntent, caption, caption, icon,
Kenny Guyed131872014-04-30 03:02:21 +01004494 UserHandleCompat.myUserHandle());
4495 }
4496
Winson Chung5ffd51d2015-06-25 11:36:50 -07004497 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004498 public void startDrag(View dragView, ItemInfo dragInfo, DragSource source) {
4499 dragView.setTag(dragInfo);
Winson Chungbabb53e2014-04-14 17:12:49 -07004500 mWorkspace.onExternalDragStartedWithItem(dragView);
4501 mWorkspace.beginExternalDragShared(dragView, source);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004502 }
4503
Winson Chung5ffd51d2015-06-25 11:36:50 -07004504 protected void moveWorkspaceToDefaultScreen() {
4505 mWorkspace.moveToDefaultScreen(false);
4506 }
4507
Anjali Koppalf5d29132014-02-28 13:33:27 -08004508 @Override
4509 public void onPageSwitch(View newPage, int newPageIndex) {
Adam Cohen9211d422014-10-07 18:14:53 -07004510 if (mLauncherCallbacks != null) {
4511 mLauncherCallbacks.onPageSwitch(newPage, newPageIndex);
4512 }
Anjali Koppalf5d29132014-02-28 13:33:27 -08004513 }
4514
Winson Chung80baf5a2010-08-09 16:03:15 -07004515 /**
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004516 * Returns a FastBitmapDrawable with the icon, accurately sized.
4517 */
4518 public FastBitmapDrawable createIconDrawable(Bitmap icon) {
4519 FastBitmapDrawable d = new FastBitmapDrawable(icon);
4520 d.setFilterBitmap(true);
4521 resizeIconDrawable(d);
4522 return d;
4523 }
4524
4525 /**
4526 * Resizes an icon drawable to the correct icon size.
4527 */
4528 public void resizeIconDrawable(Drawable icon) {
4529 icon.setBounds(0, 0, mDeviceProfile.iconSizePx, mDeviceProfile.iconSizePx);
4530 }
4531
4532 /**
Joe Onoratobe386092009-11-17 17:32:16 -08004533 * Prints out out state for debugging.
4534 */
4535 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04004536 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08004537 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08004538 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
4539 Log.d(TAG, "mRestoring=" + mRestoring);
4540 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004541 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08004542 mModel.dumpState();
Hyunyoung Song3f471442015-04-08 19:01:34 -07004543 // TODO(hyunyoungs): add mWidgetsView.dumpState(); or mWidgetsModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07004544
Daniel Sandler325dc232013-06-05 22:57:57 -04004545 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08004546 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004547
4548 @Override
4549 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
4550 super.dump(prefix, fd, writer, args);
Adam Cohen4caf2982013-08-20 18:54:31 -07004551 synchronized (sDumpLogs) {
4552 writer.println(" ");
4553 writer.println("Debug logs: ");
4554 for (int i = 0; i < sDumpLogs.size(); i++) {
4555 writer.println(" " + sDumpLogs.get(i));
4556 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004557 }
Adam Cohen9211d422014-10-07 18:14:53 -07004558 if (mLauncherCallbacks != null) {
4559 mLauncherCallbacks.dump(prefix, fd, writer, args);
4560 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004561 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004562
4563 public static void dumpDebugLogsToConsole() {
Winson Chungede41292013-09-19 16:27:36 -07004564 if (DEBUG_DUMP_LOG) {
4565 synchronized (sDumpLogs) {
4566 Log.d(TAG, "");
4567 Log.d(TAG, "*********************");
4568 Log.d(TAG, "Launcher debug logs: ");
4569 for (int i = 0; i < sDumpLogs.size(); i++) {
4570 Log.d(TAG, " " + sDumpLogs.get(i));
4571 }
4572 Log.d(TAG, "*********************");
4573 Log.d(TAG, "");
Adam Cohen4caf2982013-08-20 18:54:31 -07004574 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004575 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004576 }
4577
4578 public static void addDumpLog(String tag, String log, boolean debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004579 addDumpLog(tag, log, null, debugLog);
4580 }
4581
4582 public static void addDumpLog(String tag, String log, Exception e, boolean debugLog) {
Adam Cohen4caf2982013-08-20 18:54:31 -07004583 if (debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004584 if (e != null) {
4585 Log.d(tag, log, e);
4586 } else {
4587 Log.d(tag, log);
4588 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004589 }
Winson Chungede41292013-09-19 16:27:36 -07004590 if (DEBUG_DUMP_LOG) {
4591 sDateStamp.setTime(System.currentTimeMillis());
4592 synchronized (sDumpLogs) {
Dan Sandler295ae182013-12-10 16:05:47 -05004593 sDumpLogs.add(sDateFormat.format(sDateStamp) + ": " + tag + ", " + log
4594 + (e == null ? "" : (", Exception: " + e)));
Adam Cohen4caf2982013-08-20 18:54:31 -07004595 }
Winson Chungede41292013-09-19 16:27:36 -07004596 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004597 }
4598
Adam Cohen59400422014-03-05 18:07:04 -08004599 public static CustomAppWidget getCustomAppWidget(String name) {
4600 return sCustomAppWidgets.get(name);
4601 }
4602
4603 public static HashMap<String, CustomAppWidget> getCustomAppWidgets() {
4604 return sCustomAppWidgets;
4605 }
4606
Winson Chungede41292013-09-19 16:27:36 -07004607 public void dumpLogsToLocalData() {
4608 if (DEBUG_DUMP_LOG) {
Michael Jurka43467462013-11-14 12:03:58 +01004609 new AsyncTask<Void, Void, Void>() {
4610 public Void doInBackground(Void ... args) {
Winson Chungede41292013-09-19 16:27:36 -07004611 boolean success = false;
4612 sDateStamp.setTime(sRunStart);
4613 String FILENAME = sDateStamp.getMonth() + "-"
4614 + sDateStamp.getDay() + "_"
4615 + sDateStamp.getHours() + "-"
4616 + sDateStamp.getMinutes() + "_"
4617 + sDateStamp.getSeconds() + ".txt";
4618
4619 FileOutputStream fos = null;
4620 File outFile = null;
4621 try {
4622 outFile = new File(getFilesDir(), FILENAME);
4623 outFile.createNewFile();
4624 fos = new FileOutputStream(outFile);
4625 } catch (Exception e) {
4626 e.printStackTrace();
4627 }
4628 if (fos != null) {
4629 PrintWriter writer = new PrintWriter(fos);
4630
4631 writer.println(" ");
4632 writer.println("Debug logs: ");
4633 synchronized (sDumpLogs) {
4634 for (int i = 0; i < sDumpLogs.size(); i++) {
4635 writer.println(" " + sDumpLogs.get(i));
4636 }
4637 }
4638 writer.close();
4639 }
4640 try {
4641 if (fos != null) {
4642 fos.close();
4643 success = true;
4644 }
4645 } catch (IOException e) {
4646 e.printStackTrace();
4647 }
Michael Jurka43467462013-11-14 12:03:58 +01004648 return null;
Winson Chungede41292013-09-19 16:27:36 -07004649 }
Michael Jurka43467462013-11-14 12:03:58 +01004650 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
Adam Cohen4caf2982013-08-20 18:54:31 -07004651 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004652 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004653}
Michael Jurka2763be32011-02-24 11:19:57 -08004654
Dan Sandlerd5024042014-01-09 15:01:33 -05004655interface DebugIntents {
4656 static final String DELETE_DATABASE = "com.android.launcher3.action.DELETE_DATABASE";
4657 static final String MIGRATE_DATABASE = "com.android.launcher3.action.MIGRATE_DATABASE";
Adam Cohen8b5b05b2014-01-10 21:42:39 +00004658}