blob: 17a619bb1e6bd3a71591d9103ddeae44c023ecd9 [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);
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001313 mWidgetsButton = findViewById(R.id.widget_button);
1314 mWidgetsButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001315 @Override
1316 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001317 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001318 onClickAddWidgetButton(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001319 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001320 }
1321 });
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001322 mWidgetsButton.setOnTouchListener(getHapticFeedbackTouchListener());
Adam Cohen61f560d2013-09-30 15:58:20 -07001323
1324 View wallpaperButton = findViewById(R.id.wallpaper_button);
1325 wallpaperButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001326 @Override
1327 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001328 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001329 onClickWallpaperPicker(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001330 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001331 }
1332 });
Adam Cohen61f560d2013-09-30 15:58:20 -07001333 wallpaperButton.setOnTouchListener(getHapticFeedbackTouchListener());
1334
1335 View settingsButton = findViewById(R.id.settings_button);
Jorim Jaggid017f882014-01-14 17:08:48 -08001336 if (hasSettings()) {
1337 settingsButton.setOnClickListener(new OnClickListener() {
1338 @Override
1339 public void onClick(View arg0) {
1340 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001341 onClickSettingsButton(arg0);
Jorim Jaggid017f882014-01-14 17:08:48 -08001342 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08001343 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001344 });
1345 settingsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1346 } else {
1347 settingsButton.setVisibility(View.GONE);
Jorim Jaggid017f882014-01-14 17:08:48 -08001348 }
1349
Adam Cohendbdff6b2013-09-18 19:09:15 -07001350 mOverviewPanel.setAlpha(0f);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001351
Winson Chung4c98d922011-05-31 16:50:48 -07001352 // Setup the workspace
1353 mWorkspace.setHapticFeedbackEnabled(false);
1354 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -07001355 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -07001356 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001357
Winson Chungf0ea4d32011-06-06 14:27:16 -07001358 // Get the search/delete bar
Adam Cohen24ce0b32014-01-14 16:18:14 -08001359 mSearchDropTargetBar = (SearchDropTargetBar)
1360 mDragLayer.findViewById(R.id.search_drop_target_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001361
Winson Chungef7f8742015-06-04 17:18:17 -07001362 // Setup Apps and Widgets
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001363 mAppsView = (AllAppsContainerView) findViewById(R.id.apps_view);
Hyunyoung Song3f471442015-04-08 19:01:34 -07001364 mWidgetsView = (WidgetsContainerView) findViewById(R.id.widgets_view);
Winson Chungef7f8742015-06-04 17:18:17 -07001365 if (mLauncherCallbacks != null && mLauncherCallbacks.getAllAppsSearchBarController() != null) {
1366 mAppsView.setSearchBarController(mLauncherCallbacks.getAllAppsSearchBarController());
1367 } else {
1368 mAppsView.setSearchBarController(mAppsView.newDefaultAppSearchController());
1369 }
Craig Mautner360310b2012-10-26 15:13:08 -07001370
Winson Chung3d503fb2011-07-13 17:25:49 -07001371 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -07001372 dragController.setDragScoller(mWorkspace);
1373 dragController.setScrollView(mDragLayer);
1374 dragController.setMoveTarget(mWorkspace);
1375 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -07001376 if (mSearchDropTargetBar != null) {
1377 mSearchDropTargetBar.setup(this, dragController);
Adam Cohenb0df1b02015-03-18 22:21:40 -07001378 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Michael Jurkae0f5a612011-02-07 16:45:41 -08001379 }
Daniel Sandler924b9932013-06-12 00:38:25 -04001380
Daniel Sandlera127b7a2013-06-17 14:25:46 -04001381 if (getResources().getBoolean(R.bool.debug_memory_enabled)) {
Daniel Sandler924b9932013-06-12 00:38:25 -04001382 Log.v(TAG, "adding WeightWatcher");
Adam Cohen39a06042013-07-19 14:30:12 -07001383 mWeightWatcher = new WeightWatcher(this);
1384 mWeightWatcher.setAlpha(0.5f);
1385 ((FrameLayout) mLauncherView).addView(mWeightWatcher,
Daniel Sandler924b9932013-06-12 00:38:25 -04001386 new FrameLayout.LayoutParams(
1387 FrameLayout.LayoutParams.MATCH_PARENT,
Daniel Sandlerb9eb2862013-06-14 20:17:30 -04001388 FrameLayout.LayoutParams.WRAP_CONTENT,
Daniel Sandler924b9932013-06-12 00:38:25 -04001389 Gravity.BOTTOM)
1390 );
Adam Cohen39a06042013-07-19 14:30:12 -07001391
1392 boolean show = shouldShowWeightWatcher();
1393 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
Daniel Sandler924b9932013-06-12 00:38:25 -04001394 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001395 }
1396
1397 /**
Anjali Koppal5ad44842014-03-10 20:34:39 -07001398 * Sets the all apps button. This method is called from {@link Hotseat}.
1399 */
1400 public void setAllAppsButton(View allAppsButton) {
1401 mAllAppsButton = allAppsButton;
1402 }
1403
1404 public View getAllAppsButton() {
1405 return mAllAppsButton;
1406 }
1407
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001408 public View getWidgetsButton() {
1409 return mWidgetsButton;
1410 }
1411
Anjali Koppal5ad44842014-03-10 20:34:39 -07001412 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001413 * Creates a view representing a shortcut.
1414 *
1415 * @param info The data structure describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001416 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001417 View createShortcut(ShortcutInfo info) {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001418 return createShortcut((ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001419 }
1420
1421 /**
1422 * Creates a view representing a shortcut inflated from the specified resource.
1423 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001424 * @param parent The group the shortcut belongs to.
1425 * @param info The data structure describing the shortcut.
1426 *
1427 * @return A View inflated from layoutResId.
1428 */
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001429 public View createShortcut(ViewGroup parent, ShortcutInfo info) {
Sunny Goyal756cd262015-08-20 12:33:21 -07001430 BubbleTextView favorite = (BubbleTextView) getLayoutInflater().inflate(R.layout.app_icon,
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001431 parent, false);
1432 favorite.applyFromShortcutInfo(info, mIconCache);
1433 favorite.setCompoundDrawablePadding(mDeviceProfile.iconDrawablePaddingPx);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001434 favorite.setOnClickListener(this);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001435 favorite.setOnFocusChangeListener(mFocusHandler);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001436 return favorite;
1437 }
1438
1439 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001440 * Add a shortcut to the workspace.
1441 *
1442 * @param data The intent describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001443 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001444 private void completeAddShortcut(Intent data, long container, long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07001445 int cellY) {
1446 int[] cellXY = mTmpAddItemCellCoordinates;
Adam Cohendcd297f2013-06-18 13:13:40 -07001447 CellLayout layout = getCellLayout(container, screenId);
Romain Guycbb89e42009-06-08 15:52:54 -07001448
Sunny Goyal5c97f512015-05-19 16:03:28 -07001449 ShortcutInfo info = InstallShortcutReceiver.fromShortcutIntent(this, data);
Adam Cohend9198822011-11-22 16:42:47 -08001450 if (info == null) {
1451 return;
1452 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001453 final View view = createShortcut(info);
1454
Sunny Goyal5c97f512015-05-19 16:03:28 -07001455 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001456 // First we check if we already know the exact location where we want to add this item.
1457 if (cellX >= 0 && cellY >= 0) {
1458 cellXY[0] = cellX;
1459 cellXY[1] = cellY;
1460 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001461
1462 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001463 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001464 true, null,null)) {
1465 return;
1466 }
1467 DragObject dragObject = new DragObject();
1468 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001469 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1470 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001471 return;
1472 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08001473 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001474 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001475 }
1476
1477 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001478 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001479 return;
1480 }
1481
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001482 LauncherModel.addItemToDatabase(this, info, container, screenId, cellXY[0], cellXY[1]);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001483
1484 if (!mRestoring) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001485 mWorkspace.addInScreen(view, container, screenId, cellXY[0], cellXY[1], 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07001486 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001487 }
1488 }
1489
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001490 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001491 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001492 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001493 * @param appWidgetId The app widget id
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001494 */
Adam Cohen091440a2015-03-18 14:16:05 -07001495 @Thunk void completeAddAppWidget(int appWidgetId, long container, long screenId,
Adam Cohen59400422014-03-05 18:07:04 -08001496 AppWidgetHostView hostView, LauncherAppWidgetProviderInfo appWidgetInfo) {
1497
1498 ItemInfo info = mPendingAddInfo;
Adam Cohened66b2b2012-01-23 17:28:51 -08001499 if (appWidgetInfo == null) {
Adam Cohen59400422014-03-05 18:07:04 -08001500 appWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(this,
1501 mAppWidgetManager.getAppWidgetInfo(appWidgetId));
Adam Cohened66b2b2012-01-23 17:28:51 -08001502 }
Romain Guycbb89e42009-06-08 15:52:54 -07001503
Adam Cohen59400422014-03-05 18:07:04 -08001504 if (appWidgetInfo.isCustomWidget) {
1505 appWidgetId = LauncherAppWidgetInfo.CUSTOM_WIDGET_ID;
Michael Jurkaa63c4522010-08-19 13:52:27 -07001506 }
1507
Adam Cohen59400422014-03-05 18:07:04 -08001508 LauncherAppWidgetInfo launcherInfo;
1509 launcherInfo = new LauncherAppWidgetInfo(appWidgetId, appWidgetInfo.provider);
1510 launcherInfo.spanX = info.spanX;
1511 launcherInfo.spanY = info.spanY;
1512 launcherInfo.minSpanX = info.minSpanX;
1513 launcherInfo.minSpanY = info.minSpanY;
Sunny Goyalffe83f12014-08-14 17:39:34 -07001514 launcherInfo.user = mAppWidgetManager.getUser(appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001515
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001516 LauncherModel.addItemToDatabase(this, launcherInfo,
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001517 container, screenId, info.cellX, info.cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001518
1519 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001520 if (hostView == null) {
1521 // Perform actual inflation because we're live
Adam Cohen59400422014-03-05 18:07:04 -08001522 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId,
1523 appWidgetInfo);
Adam Cohened66b2b2012-01-23 17:28:51 -08001524 } else {
1525 // The AppWidgetHostView has already been inflated and instantiated
1526 launcherInfo.hostView = hostView;
1527 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001528 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001529 launcherInfo.hostView.setVisibility(View.VISIBLE);
Adam Cohenaaa5c212012-10-05 18:14:31 -07001530 launcherInfo.notifyWidgetSizeChanged(this);
1531
Adam Cohen59400422014-03-05 18:07:04 -08001532 mWorkspace.addInScreen(launcherInfo.hostView, container, screenId, info.cellX,
1533 info.cellY, launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001534
1535 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001536 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001537 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001538 }
Romain Guycbb89e42009-06-08 15:52:54 -07001539
Adam Cohended9f8d2010-11-03 13:25:16 -07001540 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1541 @Override
1542 public void onReceive(Context context, Intent intent) {
1543 final String action = intent.getAction();
1544 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1545 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001546 mDragLayer.clearAllResizeFrames();
Winson Chungb745afb2015-03-02 11:51:23 -08001547 updateAutoAdvanceState();
Winson Chung337cd9d2011-03-30 10:39:30 -07001548
Winson Chungc100e8e2011-08-09 16:02:43 -07001549 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001550 // processing a multi-step drop
Hyunyoung Song3f471442015-04-08 19:01:34 -07001551 if (mAppsView != null && mWidgetsView != null &&
Winson Chungb745afb2015-03-02 11:51:23 -08001552 mPendingAddInfo.container == ItemInfo.NO_ID) {
Adam Cohened307df2013-10-02 09:37:31 -07001553 showWorkspace(false);
Winson Chung785d2eb2011-04-14 16:08:02 -07001554 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001555 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1556 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08001557 updateAutoAdvanceState();
Dan Sandlerd5024042014-01-09 15:01:33 -05001558 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.DELETE_DATABASE.equals(action)) {
1559 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001560 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001561 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE);
1562 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.MIGRATE_DATABASE.equals(action)) {
1563 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001564 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001565 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE
1566 | LauncherModel.LOADER_FLAG_MIGRATE_SHORTCUTS);
Adam Cohended9f8d2010-11-03 13:25:16 -07001567 }
1568 }
1569 };
1570
1571 @Override
1572 public void onAttachedToWindow() {
1573 super.onAttachedToWindow();
1574
1575 // Listen for broadcasts related to user-presence
1576 final IntentFilter filter = new IntentFilter();
1577 filter.addAction(Intent.ACTION_SCREEN_OFF);
1578 filter.addAction(Intent.ACTION_USER_PRESENT);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001579 // For handling managed profiles
Dan Sandlerd5024042014-01-09 15:01:33 -05001580 if (ENABLE_DEBUG_INTENTS) {
1581 filter.addAction(DebugIntents.DELETE_DATABASE);
1582 filter.addAction(DebugIntents.MIGRATE_DATABASE);
1583 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001584 registerReceiver(mReceiver, filter);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001585 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Sunny Goyal9fc953b2015-08-17 12:24:25 -07001586 setupTransparentSystemBarsForLollipop();
Adam Cohend113e0c2010-11-11 10:48:05 -08001587 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001588 mVisible = true;
1589 }
1590
Adam Cohen0b395352014-06-09 22:54:36 +00001591 /**
Sunny Goyal9fc953b2015-08-17 12:24:25 -07001592 * Sets up transparent navigation and status bars in Lollipop.
Adam Cohen0b395352014-06-09 22:54:36 +00001593 * This method is a no-op for other platform versions.
1594 */
Sunny Goyald0091012015-01-20 15:55:34 -08001595 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Sunny Goyal9fc953b2015-08-17 12:24:25 -07001596 private void setupTransparentSystemBarsForLollipop() {
1597 if (Utilities.ATLEAST_LOLLIPOP) {
Sunny Goyald0091012015-01-20 15:55:34 -08001598 Window window = getWindow();
1599 window.getAttributes().systemUiVisibility |=
1600 (View.SYSTEM_UI_FLAG_LAYOUT_STABLE
1601 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
1602 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
1603 window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS
1604 | WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
1605 window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
1606 window.setStatusBarColor(Color.TRANSPARENT);
1607 window.setNavigationBarColor(Color.TRANSPARENT);
Adam Cohen0b395352014-06-09 22:54:36 +00001608 }
1609 }
1610
Adam Cohended9f8d2010-11-03 13:25:16 -07001611 @Override
1612 public void onDetachedFromWindow() {
1613 super.onDetachedFromWindow();
1614 mVisible = false;
1615
Adam Cohend113e0c2010-11-11 10:48:05 -08001616 if (mAttached) {
1617 unregisterReceiver(mReceiver);
1618 mAttached = false;
1619 }
Winson Chungb745afb2015-03-02 11:51:23 -08001620 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001621 }
1622
1623 public void onWindowVisibilityChanged(int visibility) {
1624 mVisible = visibility == View.VISIBLE;
Winson Chungb745afb2015-03-02 11:51:23 -08001625 updateAutoAdvanceState();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001626 // The following code used to be in onResume, but it turns out onResume is called when
1627 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1628 // is a more appropriate event to handle
1629 if (mVisible) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001630 if (!mWorkspaceLoading) {
1631 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001632 // We want to let Launcher draw itself at least once before we force it to build
1633 // layers on all the workspace pages, so that transitioning to Launcher from other
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001634 // apps is nice and speedy.
1635 observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001636 private boolean mStarted = false;
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001637 public void onDraw() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001638 if (mStarted) return;
1639 mStarted = true;
Michael Jurka6ee21d22012-02-21 18:20:27 -08001640 // We delay the layer building a bit in order to give
1641 // other message processing a time to run. In particular
1642 // this avoids a delay in hiding the IME if it was
1643 // currently shown, because doing that may involve
1644 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001645 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurkadf96add2013-04-03 16:25:02 -07001646 final ViewTreeObserver.OnDrawListener listener = this;
1647 mWorkspace.post(new Runnable() {
1648 public void run() {
Michael Jurkab68e03a2013-04-11 11:36:41 -07001649 if (mWorkspace != null &&
1650 mWorkspace.getViewTreeObserver() != null) {
1651 mWorkspace.getViewTreeObserver().
1652 removeOnDrawListener(listener);
1653 }
Michael Jurkadf96add2013-04-03 16:25:02 -07001654 }
1655 });
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001656 return;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001657 }
1658 });
1659 }
1660 clearTypedText();
1661 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001662 }
1663
Adam Cohen091440a2015-03-18 14:16:05 -07001664 @Thunk void sendAdvanceMessage(long delay) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001665 mHandler.removeMessages(ADVANCE_MSG);
1666 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1667 mHandler.sendMessageDelayed(msg, delay);
1668 mAutoAdvanceSentTime = System.currentTimeMillis();
1669 }
1670
Adam Cohen091440a2015-03-18 14:16:05 -07001671 @Thunk void updateAutoAdvanceState() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001672 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1673 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1674 mAutoAdvanceRunning = autoAdvanceRunning;
1675 if (autoAdvanceRunning) {
Sunny Goyal756cd262015-08-20 12:33:21 -07001676 long delay = mAutoAdvanceTimeLeft == -1 ? ADVANCE_INTERVAL : mAutoAdvanceTimeLeft;
Adam Cohended9f8d2010-11-03 13:25:16 -07001677 sendAdvanceMessage(delay);
1678 } else {
1679 if (!mWidgetsToAdvance.isEmpty()) {
Sunny Goyal756cd262015-08-20 12:33:21 -07001680 mAutoAdvanceTimeLeft = Math.max(0, ADVANCE_INTERVAL -
Adam Cohended9f8d2010-11-03 13:25:16 -07001681 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1682 }
1683 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001684 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001685 }
1686 }
1687 }
1688
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001689 @Thunk final Handler mHandler = new Handler(new Handler.Callback() {
1690
Adam Cohended9f8d2010-11-03 13:25:16 -07001691 @Override
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001692 public boolean handleMessage(Message msg) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001693 if (msg.what == ADVANCE_MSG) {
1694 int i = 0;
1695 for (View key: mWidgetsToAdvance.keySet()) {
1696 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
Sunny Goyal756cd262015-08-20 12:33:21 -07001697 final int delay = ADVANCE_STAGGER * i;
Adam Cohended9f8d2010-11-03 13:25:16 -07001698 if (v instanceof Advanceable) {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001699 mHandler.postDelayed(new Runnable() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001700 public void run() {
1701 ((Advanceable) v).advance();
1702 }
1703 }, delay);
1704 }
1705 i++;
1706 }
Sunny Goyal756cd262015-08-20 12:33:21 -07001707 sendAdvanceMessage(ADVANCE_INTERVAL);
Adam Cohended9f8d2010-11-03 13:25:16 -07001708 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001709 return true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001710 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001711 });
Adam Cohended9f8d2010-11-03 13:25:16 -07001712
1713 void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001714 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001715 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1716 if (v instanceof Advanceable) {
1717 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001718 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Winson Chungb745afb2015-03-02 11:51:23 -08001719 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001720 }
1721 }
1722
1723 void removeWidgetToAutoAdvance(View hostView) {
1724 if (mWidgetsToAdvance.containsKey(hostView)) {
1725 mWidgetsToAdvance.remove(hostView);
Winson Chungb745afb2015-03-02 11:51:23 -08001726 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001727 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001728 }
1729
Joe Onorato9c1289c2009-08-17 11:03:03 -04001730 public void removeAppWidget(LauncherAppWidgetInfo launcherInfo) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001731 removeWidgetToAutoAdvance(launcherInfo.hostView);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001732 launcherInfo.hostView = null;
1733 }
1734
Hyunyoung Song3f471442015-04-08 19:01:34 -07001735 public void showOutOfSpaceMessage(boolean isHotseatLayout) {
Winson Chung93eef082012-03-23 15:59:27 -07001736 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1737 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001738 }
1739
Winson Chunga6945242014-01-08 14:04:34 -08001740 public DragLayer getDragLayer() {
1741 return mDragLayer;
1742 }
1743
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001744 public AllAppsContainerView getAppsView() {
Winson Chungb745afb2015-03-02 11:51:23 -08001745 return mAppsView;
1746 }
1747
Hyunyoung Song3f471442015-04-08 19:01:34 -07001748 public WidgetsContainerView getWidgetsView() {
1749 return mWidgetsView;
Winson Chungb745afb2015-03-02 11:51:23 -08001750 }
1751
Winson Chunga6945242014-01-08 14:04:34 -08001752 public Workspace getWorkspace() {
1753 return mWorkspace;
1754 }
1755
1756 public Hotseat getHotseat() {
1757 return mHotseat;
1758 }
1759
Jorim Jaggid017f882014-01-14 17:08:48 -08001760 public ViewGroup getOverviewPanel() {
Winson Chunga6945242014-01-08 14:04:34 -08001761 return mOverviewPanel;
1762 }
1763
Winson Chung006ee262015-08-03 14:40:11 -07001764 public SearchDropTargetBar getSearchDropTargetBar() {
Winson Chunga6945242014-01-08 14:04:34 -08001765 return mSearchDropTargetBar;
1766 }
1767
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001768 public LauncherAppWidgetHost getAppWidgetHost() {
1769 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001770 }
Romain Guycbb89e42009-06-08 15:52:54 -07001771
Winson Chunga9abd0e2010-10-27 17:18:37 -07001772 public LauncherModel getModel() {
1773 return mModel;
1774 }
1775
Winson Chunga6945242014-01-08 14:04:34 -08001776 protected SharedPreferences getSharedPrefs() {
1777 return mSharedPrefs;
1778 }
1779
Adam Cohen2e6da152015-05-06 11:42:25 -07001780 public DeviceProfile getDeviceProfile() {
1781 return mDeviceProfile;
1782 }
1783
Bjorn Bringertc459e522013-06-07 19:36:01 +01001784 public void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001785 getWindow().closeAllPanels();
1786
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001787 // Whatever we were doing is hereby canceled.
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001788 setWaitingForResult(false);
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001789 }
1790
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001791 @Override
1792 protected void onNewIntent(Intent intent) {
Michael Jurka447bf842013-05-15 14:52:15 +02001793 long startTime = 0;
1794 if (DEBUG_RESUME_TIME) {
1795 startTime = System.currentTimeMillis();
1796 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001797 super.onNewIntent(intent);
1798
1799 // Close the menu
Winson15f8b172015-08-19 11:02:39 -07001800 Folder openFolder = mWorkspace.getOpenFolder();
1801 boolean alreadyOnHome = mHasFocus && ((intent.getFlags() &
1802 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1803 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
Winson16615f22015-08-31 11:32:38 -07001804 boolean moveToDefaultScreen = mLauncherCallbacks != null ?
1805 mLauncherCallbacks.shouldMoveToDefaultScreenOnHomeIntent() : true;
Winson15f8b172015-08-19 11:02:39 -07001806 boolean isActionMain = Intent.ACTION_MAIN.equals(intent.getAction());
1807 if (isActionMain) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001808 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001809 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001810
Adam Cohen6fecd412013-10-02 17:41:50 -07001811 if (mWorkspace == null) {
1812 // Can be cases where mWorkspace is null, this prevents a NPE
1813 return;
1814 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001815 // In all these cases, only animate if we're already on home
1816 mWorkspace.exitWidgetResizeMode();
Adam Cohen9211d422014-10-07 18:14:53 -07001817
Adam Cohen6fecd412013-10-02 17:41:50 -07001818 closeFolder();
1819 exitSpringLoadedDragMode();
1820
1821 // If we are already on home, then just animate back to the workspace,
1822 // otherwise, just wait until onResume to set the state back to Workspace
1823 if (alreadyOnHome) {
Adam Cohened307df2013-10-02 09:37:31 -07001824 showWorkspace(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001825 } else {
1826 mOnResumeState = State.WORKSPACE;
1827 }
1828
1829 final View v = getWindow().peekDecorView();
1830 if (v != null && v.getWindowToken() != null) {
1831 InputMethodManager imm = (InputMethodManager)getSystemService(
1832 INPUT_METHOD_SERVICE);
1833 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1834 }
1835
Winson Chungb745afb2015-03-02 11:51:23 -08001836 // Reset the apps view
1837 if (!alreadyOnHome && mAppsView != null) {
1838 mAppsView.scrollToTop();
1839 }
1840
Hyunyoung Song3f471442015-04-08 19:01:34 -07001841 // Reset the widgets view
1842 if (!alreadyOnHome && mWidgetsView != null) {
1843 mWidgetsView.scrollToTop();
Adam Cohen6fecd412013-10-02 17:41:50 -07001844 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001845
Adam Cohen9211d422014-10-07 18:14:53 -07001846 if (mLauncherCallbacks != null) {
1847 mLauncherCallbacks.onHomeIntent();
1848 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001849 }
Adam Cohened307df2013-10-02 09:37:31 -07001850
Adam Cohen9211d422014-10-07 18:14:53 -07001851 if (mLauncherCallbacks != null) {
1852 mLauncherCallbacks.onNewIntent(intent);
1853 }
Winson15f8b172015-08-19 11:02:39 -07001854
1855 // Defer moving to the default screen until after we callback to the LauncherCallbacks
1856 // as slow logic in the callbacks eat into the time the scroller expects for the snapToPage
1857 // animation.
1858 if (isActionMain) {
Winson15f8b172015-08-19 11:02:39 -07001859 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
1860 openFolder == null && moveToDefaultScreen) {
1861 mWorkspace.post(new Runnable() {
1862 @Override
1863 public void run() {
1864 mWorkspace.moveToDefaultScreen(true);
1865 }
1866 });
1867 }
1868 }
1869
1870 if (DEBUG_RESUME_TIME) {
1871 Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime));
1872 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001873 }
1874
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001875 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001876 public void onRestoreInstanceState(Bundle state) {
1877 super.onRestoreInstanceState(state);
1878 for (int page: mSynchronouslyBoundPages) {
1879 mWorkspace.restoreInstanceStateForChild(page);
1880 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001881 }
1882
1883 @Override
1884 protected void onSaveInstanceState(Bundle outState) {
Adam Cohen21cd0022013-10-09 18:57:02 -07001885 if (mWorkspace.getChildCount() > 0) {
Winson Chung9b9fb962013-11-15 15:39:34 -08001886 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN,
1887 mWorkspace.getCurrentPageOffsetFromCustomContent());
Adam Cohen21cd0022013-10-09 18:57:02 -07001888 }
Adam Cohen95bb8002011-07-03 23:40:28 -07001889 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001890
Michael Jurka883f55b2010-10-21 15:47:14 -07001891 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001892 // We close any open folder since it will not be re-opened, and we need to make sure
1893 // this state is reflected.
1894 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001895
Adam Cohendcd297f2013-06-18 13:13:40 -07001896 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screenId > -1 &&
Winson Chung3d503fb2011-07-13 17:25:49 -07001897 mWaitingForResult) {
Sunny Goyal756cd262015-08-20 12:33:21 -07001898 ContentValues itemValues = new ContentValues();
1899 mPendingAddInfo.writeToValues(itemValues);
1900 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_ITEM, itemValues);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001901 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
Adam Cohen4637b5a2013-11-04 18:21:24 -08001902 outState.putInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID, mPendingAddWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001903 }
1904
Hyunyoung Song3f471442015-04-08 19:01:34 -07001905 // Save the current widgets tray?
1906 // TODO(hyunyoungs)
Adam Cohen9211d422014-10-07 18:14:53 -07001907
1908 if (mLauncherCallbacks != null) {
1909 mLauncherCallbacks.onSaveInstanceState(outState);
1910 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001911 }
1912
1913 @Override
1914 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001915 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001916
Winson Chunge7a03942011-08-05 15:05:12 -07001917 // Remove all pending runnables
1918 mHandler.removeMessages(ADVANCE_MSG);
1919 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07001920 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07001921
Winson Chungcd2b0142011-06-08 16:02:26 -07001922 // Stop callbacks from LauncherModel
Daniel Sandlercc8befa2013-06-11 14:45:48 -04001923 LauncherAppState app = (LauncherAppState.getInstance());
Adam Cohen1a85c582014-09-30 09:48:49 -07001924
1925 // It's possible to receive onDestroy after a new Launcher activity has
1926 // been created. In this case, don't interfere with the new Launcher.
1927 if (mModel.isCurrentCallbacks(this)) {
1928 mModel.stopLoader();
1929 app.setLauncher(null);
1930 }
Winson Chungcd2b0142011-06-08 16:02:26 -07001931
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001932 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001933 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001934 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001935 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001936 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001937 mAppWidgetHost = null;
1938
1939 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001940
1941 TextKeyListener.getInstance().release();
1942
Joe Onorato34a0e1b2009-12-14 17:44:51 -08001943 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001944
Adam Cohenaccf3bf2012-04-30 16:07:43 -07001945 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001946 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
Adam Cohend552dd92013-11-26 12:13:11 -08001947 mWorkspace.removeAllWorkspaceScreens();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001948 mWorkspace = null;
1949 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08001950
Michael Jurka2ecf9952012-06-18 12:52:28 -07001951 LauncherAnimUtils.onDestroyActivity();
Adam Cohen9211d422014-10-07 18:14:53 -07001952
1953 if (mLauncherCallbacks != null) {
1954 mLauncherCallbacks.onDestroy();
1955 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001956 }
1957
Adam Cohena9cf38f2011-05-02 15:36:58 -07001958 public DragController getDragController() {
1959 return mDragController;
1960 }
1961
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001962 @Override
1963 public void startActivityForResult(Intent intent, int requestCode) {
Adam Cohen173f7112015-03-27 15:14:00 -07001964 onStartForResult(requestCode);
1965 super.startActivityForResult(intent, requestCode);
1966 }
1967
1968 @Override
1969 public void startIntentSenderForResult (IntentSender intent, int requestCode,
1970 Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) {
1971 onStartForResult(requestCode);
1972 try {
1973 super.startIntentSenderForResult(intent, requestCode,
1974 fillInIntent, flagsMask, flagsValues, extraFlags, options);
1975 } catch (IntentSender.SendIntentException e) {
1976 throw new ActivityNotFoundException();
1977 }
1978 }
1979
1980 private void onStartForResult(int requestCode) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001981 if (requestCode >= 0) {
1982 setWaitingForResult(true);
1983 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001984 }
1985
Winson Chung70d72102011-08-12 11:24:35 -07001986 /**
1987 * Indicates that we want global search for this activity by setting the globalSearch
1988 * argument for {@link #startSearch} to true.
1989 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001990 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07001991 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001992 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001993
Karl Rosaen138a0412009-04-23 19:00:21 -07001994 if (initialQuery == null) {
1995 // Use any text typed in the launcher as the initial query
1996 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07001997 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001998 if (appSearchData == null) {
1999 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01002000 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002001 }
Winson Chungadf0c182012-08-23 14:59:07 -07002002 Rect sourceBounds = new Rect();
2003 if (mSearchDropTargetBar != null) {
2004 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
2005 }
Romain Guycbb89e42009-06-08 15:52:54 -07002006
Ian Parkinson047036e2014-09-01 15:40:53 +01002007 boolean clearTextImmediately = startSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002008 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002009 if (clearTextImmediately) {
2010 clearTypedText();
2011 }
Winson Chungcd99cd32015-04-29 11:03:24 -07002012
2013 // We need to show the workspace after starting the search
2014 showWorkspace(true);
Bjorn Bringertc459e522013-06-07 19:36:01 +01002015 }
2016
Ian Parkinson047036e2014-09-01 15:40:53 +01002017 /**
2018 * Start a text search.
2019 *
2020 * @return {@code true} if the search will start immediately, so any further keypresses
2021 * will be handled directly by the search UI. {@code false} if {@link Launcher} should continue
2022 * to buffer keypresses.
2023 */
2024 public boolean startSearch(String initialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002025 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Adam Cohen9211d422014-10-07 18:14:53 -07002026 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
2027 return mLauncherCallbacks.startSearch(initialQuery, selectInitialQuery, appSearchData,
2028 sourceBounds);
2029 }
2030
Michael Jurkaa33411c2012-06-14 16:18:21 -07002031 startGlobalSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002032 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002033 return false;
Michael Jurkaa33411c2012-06-14 16:18:21 -07002034 }
2035
2036 /**
2037 * Starts the global search activity. This code is a copied from SearchManager
2038 */
Bjorn Bringertc459e522013-06-07 19:36:01 +01002039 private void startGlobalSearch(String initialQuery,
Michael Jurkaa33411c2012-06-14 16:18:21 -07002040 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002041 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07002042 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2043 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
2044 if (globalSearchActivity == null) {
2045 Log.w(TAG, "No global search activity found.");
2046 return;
2047 }
2048 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
2049 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2050 intent.setComponent(globalSearchActivity);
2051 // Make sure that we have a Bundle to put source in
2052 if (appSearchData == null) {
2053 appSearchData = new Bundle();
2054 } else {
2055 appSearchData = new Bundle(appSearchData);
2056 }
Adam Cohen9211d422014-10-07 18:14:53 -07002057 // Set source to package name of app that starts global search if not set already.
Michael Jurkaa33411c2012-06-14 16:18:21 -07002058 if (!appSearchData.containsKey("source")) {
2059 appSearchData.putString("source", getPackageName());
2060 }
2061 intent.putExtra(SearchManager.APP_DATA, appSearchData);
2062 if (!TextUtils.isEmpty(initialQuery)) {
2063 intent.putExtra(SearchManager.QUERY, initialQuery);
2064 }
2065 if (selectInitialQuery) {
2066 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
2067 }
2068 intent.setSourceBounds(sourceBounds);
2069 try {
2070 startActivity(intent);
2071 } catch (ActivityNotFoundException ex) {
2072 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
2073 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002074 }
2075
Winson Chungbedf9232015-07-10 12:38:30 -07002076 public void startSearchFromAllApps(View v, Intent searchIntent, String searchQuery) {
2077 if (mLauncherCallbacks != null && mLauncherCallbacks.startSearchFromAllApps(searchQuery)) {
2078 return;
2079 }
2080
2081 // If not handled, then just start the provided search intent
2082 startActivitySafely(v, searchIntent, null);
2083 }
2084
Yura4f93ec62014-02-04 14:15:21 +00002085 public boolean isOnCustomContent() {
2086 return mWorkspace.isOnOrMovingToCustomContent();
2087 }
2088
Winson Chung70d72102011-08-12 11:24:35 -07002089 @Override
Winson Chung70d72102011-08-12 11:24:35 -07002090 public boolean onPrepareOptionsMenu(Menu menu) {
2091 super.onPrepareOptionsMenu(menu);
Yura4f93ec62014-02-04 14:15:21 +00002092 if (!isOnCustomContent()) {
2093 // Close any open folders
2094 closeFolder();
2095 // Stop resizing any widgets
2096 mWorkspace.exitWidgetResizeMode();
2097 if (!mWorkspace.isInOverviewMode()) {
2098 // Show the overview mode
2099 showOverviewMode(true);
2100 } else {
2101 showWorkspace(true);
2102 }
Winson Chunge0298742014-01-17 12:03:00 -08002103 }
Adam Cohen9211d422014-10-07 18:14:53 -07002104 if (mLauncherCallbacks != null) {
2105 return mLauncherCallbacks.onPrepareOptionsMenu(menu);
2106 }
2107
Michael Jurkab94f3f82013-09-11 18:08:54 +02002108 return false;
Winson Chung70d72102011-08-12 11:24:35 -07002109 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002110
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002111 @Override
2112 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07002113 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07002114 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07002115 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002116 }
2117
Joe Onorato9c1289c2009-08-17 11:03:03 -04002118 public boolean isWorkspaceLocked() {
2119 return mWorkspaceLoading || mWaitingForResult;
2120 }
2121
Adam Cohen517a7f52014-03-01 12:12:59 -08002122 public boolean isWorkspaceLoading() {
2123 return mWorkspaceLoading;
2124 }
2125
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002126 private void setWorkspaceLoading(boolean value) {
2127 boolean isLocked = isWorkspaceLocked();
2128 mWorkspaceLoading = value;
2129 if (isLocked != isWorkspaceLocked()) {
2130 onWorkspaceLockedChanged();
2131 }
2132 }
2133
2134 private void setWaitingForResult(boolean value) {
2135 boolean isLocked = isWorkspaceLocked();
2136 mWaitingForResult = value;
2137 if (isLocked != isWorkspaceLocked()) {
2138 onWorkspaceLockedChanged();
2139 }
2140 }
2141
Adam Cohen9211d422014-10-07 18:14:53 -07002142 protected void onWorkspaceLockedChanged() {
2143 if (mLauncherCallbacks != null) {
2144 mLauncherCallbacks.onWorkspaceLockedChanged();
2145 }
2146 }
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002147
Michael Jurka0280c3b2010-09-17 15:00:07 -07002148 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07002149 mPendingAddInfo.container = ItemInfo.NO_ID;
Adam Cohendcd297f2013-06-18 13:13:40 -07002150 mPendingAddInfo.screenId = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002151 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
2152 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Sunny Goyal233ee962015-08-03 13:05:01 -07002153 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = 1;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002154 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07002155
Sunny Goyale6b63a32015-01-16 16:14:29 -08002156 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info, final
Adam Cohen59400422014-03-05 18:07:04 -08002157 AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo) {
Adam Cohenad4e15c2013-10-17 16:21:35 -07002158 addAppWidgetImpl(appWidgetId, info, boundWidget, appWidgetInfo, 0);
2159 }
2160
Sunny Goyale6b63a32015-01-16 16:14:29 -08002161 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
Adam Cohen59400422014-03-05 18:07:04 -08002162 final AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo,
2163 int delay) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002164 if (appWidgetInfo.configure != null) {
2165 mPendingAddWidgetInfo = appWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -08002166 mPendingAddWidgetId = appWidgetId;
Michael Jurkaaf442092010-06-10 17:01:57 -07002167
Bjorn Bringert7984c942009-12-09 15:38:25 +00002168 // Launch over to configure widget, if needed
Sunny Goyalffe83f12014-08-14 17:39:34 -07002169 mAppWidgetManager.startConfigActivity(appWidgetInfo, appWidgetId, this,
2170 mAppWidgetHost, REQUEST_CREATE_APPWIDGET);
2171
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002172 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00002173 // Otherwise just add it
Adam Cohenad4e15c2013-10-17 16:21:35 -07002174 Runnable onComplete = new Runnable() {
2175 @Override
2176 public void run() {
2177 // Exit spring loaded mode if necessary after adding the widget
2178 exitSpringLoadedDragModeDelayed(true, EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT,
2179 null);
2180 }
2181 };
Adam Cohendcd297f2013-06-18 13:13:40 -07002182 completeAddAppWidget(appWidgetId, info.container, info.screenId, boundWidget,
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002183 appWidgetInfo);
Adam Cohen689ff162014-05-08 17:27:56 -07002184 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, delay, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002185 }
2186 }
Romain Guycbb89e42009-06-08 15:52:54 -07002187
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002188 protected void moveToCustomContentScreen(boolean animate) {
Sandeep Siddharthaf2b47f12013-09-26 19:49:27 -07002189 // Close any folders that may be open.
2190 closeFolder();
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002191 mWorkspace.moveToCustomContentScreen(animate);
2192 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002193
2194 public void addPendingItem(PendingAddItemInfo info, long container, long screenId,
2195 int[] cell, int spanX, int spanY) {
2196 switch (info.itemType) {
2197 case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET:
2198 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
2199 int span[] = new int[2];
2200 span[0] = spanX;
2201 span[1] = spanY;
2202 addAppWidgetFromDrop((PendingAddWidgetInfo) info,
2203 container, screenId, cell, span);
2204 break;
2205 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
2206 processShortcutFromDrop(info.componentName, container, screenId, cell);
2207 break;
2208 default:
2209 throw new IllegalStateException("Unknown item type: " + info.itemType);
2210 }
2211 }
2212
Adam Cohenfbba09b2011-07-18 21:43:05 -07002213 /**
2214 * Process a shortcut drop.
2215 *
2216 * @param componentName The name of the component
Adam Cohendcd297f2013-06-18 13:13:40 -07002217 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002218 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002219 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002220 private void processShortcutFromDrop(ComponentName componentName, long container, long screenId,
2221 int[] cell) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002222 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002223 mPendingAddInfo.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002224 mPendingAddInfo.screenId = screenId;
Adam Cohenfbba09b2011-07-18 21:43:05 -07002225
2226 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002227 mPendingAddInfo.cellX = cell[0];
2228 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002229 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002230
2231 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
2232 createShortcutIntent.setComponent(componentName);
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002233 Utilities.startActivityForResultSafely(this, createShortcutIntent, REQUEST_CREATE_SHORTCUT);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002234 }
2235
Adam Cohenfbba09b2011-07-18 21:43:05 -07002236 /**
2237 * Process a widget drop.
2238 *
2239 * @param info The PendingAppWidgetInfo of the widget being added.
Adam Cohendcd297f2013-06-18 13:13:40 -07002240 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002241 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002242 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002243 private void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, long screenId,
2244 int[] cell, int[] span) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07002245 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002246 mPendingAddInfo.container = info.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002247 mPendingAddInfo.screenId = info.screenId = screenId;
Adam Cohend41fbf52012-02-16 23:53:59 -08002248 mPendingAddInfo.minSpanX = info.minSpanX;
2249 mPendingAddInfo.minSpanY = info.minSpanY;
2250
Adam Cohenfbba09b2011-07-18 21:43:05 -07002251 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002252 mPendingAddInfo.cellX = cell[0];
2253 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002254 }
Adam Cohend41fbf52012-02-16 23:53:59 -08002255 if (span != null) {
2256 mPendingAddInfo.spanX = span[0];
2257 mPendingAddInfo.spanY = span[1];
2258 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002259
Adam Cohened66b2b2012-01-23 17:28:51 -08002260 AppWidgetHostView hostView = info.boundWidget;
2261 int appWidgetId;
2262 if (hostView != null) {
2263 appWidgetId = hostView.getAppWidgetId();
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002264 addAppWidgetImpl(appWidgetId, info, hostView, info.info);
Sunny Goyal5b9ebca2015-06-01 18:37:32 -07002265
2266 // Clear the boundWidget so that it doesn't get destroyed.
2267 info.boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -08002268 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002269 // In this case, we either need to start an activity to get permission to bind
2270 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08002271 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07002272 Bundle options = info.bindOptions;
2273
Sunny Goyalffe83f12014-08-14 17:39:34 -07002274 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
2275 appWidgetId, info.info, options);
Adam Cohendd70d662012-10-04 16:53:44 -07002276 if (success) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002277 addAppWidgetImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07002278 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002279 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07002280 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
2281 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
2282 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Sunny Goyalffe83f12014-08-14 17:39:34 -07002283 mAppWidgetManager.getUser(mPendingAddWidgetInfo)
2284 .addToIntent(intent, AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE);
Adam Cohendd70d662012-10-04 16:53:44 -07002285 // TODO: we need to make sure that this accounts for the options bundle.
2286 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07002287 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
2288 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002289 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002290 }
2291
Adam Cohendcd297f2013-06-18 13:13:40 -07002292 FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07002293 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07002294 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002295 folderInfo.title = getText(R.string.folder_name);
2296
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002297 // Update the model
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07002298 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId,
2299 cellX, cellY);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002300 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002301
2302 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07002303 FolderIcon newFolder =
2304 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07002305 mWorkspace.addInScreen(newFolder, container, screenId, cellX, cellY, 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07002306 isWorkspaceLocked());
Winson Chung5f8afe62013-08-12 16:19:28 -07002307 // Force measure the new folder icon
2308 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
2309 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07002310 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002311 }
Romain Guycbb89e42009-06-08 15:52:54 -07002312
Joe Onorato9c1289c2009-08-17 11:03:03 -04002313 void removeFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002314 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002315 }
2316
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002317 @Override
2318 public boolean dispatchKeyEvent(KeyEvent event) {
2319 if (event.getAction() == KeyEvent.ACTION_DOWN) {
2320 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002321 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07002322 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08002323 case KeyEvent.KEYCODE_VOLUME_DOWN:
Sunny Goyal4bbf4192014-11-11 12:23:59 -08002324 if (Utilities.isPropertyEnabled(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08002325 dumpState();
2326 return true;
2327 }
2328 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07002329 }
2330 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2331 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07002332 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002333 return true;
2334 }
2335 }
2336
2337 return super.dispatchKeyEvent(event);
2338 }
2339
Joe Onorato88ec0992009-11-19 13:16:06 -08002340 @Override
2341 public void onBackPressed() {
Adam Cohen9211d422014-10-07 18:14:53 -07002342 if (mLauncherCallbacks != null && mLauncherCallbacks.handleBackPressed()) {
2343 return;
2344 }
2345
Sunny Goyal45478022015-06-08 16:52:41 -07002346 if (mDragController.isDragging()) {
2347 mDragController.cancelDrag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08002348 return;
2349 }
2350
Winson Chungb745afb2015-03-02 11:51:23 -08002351 if (isAppsViewVisible()) {
2352 showWorkspace(true);
2353 } else if (isWidgetsViewVisible()) {
2354 showOverviewMode(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002355 } else if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002356 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002357 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07002358 Folder openFolder = mWorkspace.getOpenFolder();
2359 if (openFolder.isEditingName()) {
2360 openFolder.dismissEditingName();
2361 } else {
2362 closeFolder();
2363 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002364 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08002365 mWorkspace.exitWidgetResizeMode();
2366
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002367 // Back button is a no-op here, but give at least some feedback for the button press
2368 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07002369 }
Joe Onorato88ec0992009-11-19 13:16:06 -08002370 }
2371
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002372 /**
Sunny Goyal383c5072015-06-12 21:18:53 -07002373 * Re-listen when widget host is reset.
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002374 */
Sunny Goyal383c5072015-06-12 21:18:53 -07002375 @Override
2376 public void onAppWidgetHostReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08002377 if (mAppWidgetHost != null) {
2378 mAppWidgetHost.startListening();
2379 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002380 }
2381
2382 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002383 * Launches the intent referred by the clicked shortcut.
2384 *
2385 * @param v The view representing the clicked shortcut.
2386 */
2387 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002388 // Make sure that rogue clicks don't get through while allapps is launching, or after the
2389 // view has detached (it's possible for this to happen if the view is removed mid touch).
2390 if (v.getWindowToken() == null) {
2391 return;
2392 }
2393
Winson Chung9b0b2fe2012-02-24 13:03:34 -08002394 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002395 return;
2396 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07002397
Adam Cohen1697b792013-09-17 19:08:21 -07002398 if (v instanceof Workspace) {
2399 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002400 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002401 }
2402 return;
2403 }
2404
2405 if (v instanceof CellLayout) {
2406 if (mWorkspace.isInOverviewMode()) {
Sunny Goyalce5a7e52015-07-08 15:44:27 -07002407 mWorkspace.snapToPageFromOverView(mWorkspace.indexOfChild(v));
2408 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002409 }
Sunny Goyalce5a7e52015-07-08 15:44:27 -07002410 return;
Adam Cohenf358a4b2013-07-23 16:47:31 -07002411 }
2412
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002413 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002414 if (tag instanceof ShortcutInfo) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002415 onClickAppShortcut(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002416 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002417 if (v instanceof FolderIcon) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002418 onClickFolderIcon(v);
Adam Cohena9cf38f2011-05-02 15:36:58 -07002419 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002420 } else if (v == mAllAppsButton) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002421 onClickAllAppsButton(v);
Sunny Goyal508da152014-08-14 10:53:27 -07002422 } else if (tag instanceof AppInfo) {
2423 startAppShortcutOrInfoActivity(v);
Sunny Goyalff572272014-07-23 13:58:07 -07002424 } else if (tag instanceof LauncherAppWidgetInfo) {
2425 if (v instanceof PendingAppWidgetHostView) {
2426 onClickPendingWidget((PendingAppWidgetHostView) v);
2427 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002428 }
2429 }
2430
Sunny Goyal70660032015-05-14 00:07:08 -07002431 @SuppressLint("ClickableViewAccessibility")
Michael Jurka0e260592010-06-30 17:07:39 -07002432 public boolean onTouch(View v, MotionEvent event) {
Michael Jurka0e260592010-06-30 17:07:39 -07002433 return false;
2434 }
2435
Michael Jurkaaf442092010-06-10 17:01:57 -07002436 /**
Sunny Goyalff572272014-07-23 13:58:07 -07002437 * Event handler for the app widget view which has not fully restored.
2438 */
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002439 public void onClickPendingWidget(final PendingAppWidgetHostView v) {
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002440 if (mIsSafeModeEnabled) {
2441 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2442 return;
2443 }
2444
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002445 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) v.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07002446 if (v.isReadyForClickSetup()) {
Sunny Goyalff572272014-07-23 13:58:07 -07002447 int widgetId = info.appWidgetId;
2448 AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
2449 if (appWidgetInfo != null) {
Adam Cohen59400422014-03-05 18:07:04 -08002450 mPendingAddWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(
2451 this, appWidgetInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07002452 mPendingAddInfo.copyFrom(info);
2453 mPendingAddWidgetId = widgetId;
2454
Sunny Goyalffe83f12014-08-14 17:39:34 -07002455 AppWidgetManagerCompat.getInstance(this).startConfigActivity(appWidgetInfo,
2456 info.appWidgetId, this, mAppWidgetHost, REQUEST_RECONFIGURE_APPWIDGET);
Sunny Goyalff572272014-07-23 13:58:07 -07002457 }
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002458 } else if (info.installProgress < 0) {
2459 // The install has not been queued
2460 final String packageName = info.providerName.getPackageName();
2461 showBrokenAppInstallDialog(packageName,
2462 new DialogInterface.OnClickListener() {
2463 public void onClick(DialogInterface dialog, int id) {
2464 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
2465 }
2466 });
2467 } else {
2468 // Download has started.
2469 final String packageName = info.providerName.getPackageName();
2470 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
Sunny Goyalff572272014-07-23 13:58:07 -07002471 }
2472 }
2473
2474 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002475 * Event handler for the "grid" button that appears on the home screen, which
2476 * enters all apps mode.
2477 *
2478 * @param v The view that was clicked.
2479 */
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002480 protected void onClickAllAppsButton(View v) {
2481 if (LOGD) Log.d(TAG, "onClickAllAppsButton");
Winson Chung76648c52015-07-10 14:33:23 -07002482 if (!isAppsViewVisible()) {
Winson Chung4ac30062015-05-08 17:34:17 -07002483 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07002484 true /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungbedf9232015-07-10 12:38:30 -07002485
2486 if (mLauncherCallbacks != null) {
2487 mLauncherCallbacks.onClickAllAppsButton(v);
2488 }
Winson Chung76648c52015-07-10 14:33:23 -07002489 }
2490 }
2491
2492 protected void onLongClickAllAppsButton(View v) {
2493 if (LOGD) Log.d(TAG, "onLongClickAllAppsButton");
2494 if (!isAppsViewVisible()) {
2495 showAppsView(true /* animated */, false /* resetListToTop */,
2496 true /* updatePredictedApps */, true /* focusSearchBar */);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002497 }
2498 }
2499
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002500 private void showBrokenAppInstallDialog(final String packageName,
2501 DialogInterface.OnClickListener onSearchClickListener) {
Sunny Goyale03b8122014-10-08 09:55:24 -07002502 new AlertDialog.Builder(this)
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002503 .setTitle(R.string.abandoned_promises_title)
2504 .setMessage(R.string.abandoned_promise_explanation)
2505 .setPositiveButton(R.string.abandoned_search, onSearchClickListener)
2506 .setNeutralButton(R.string.abandoned_clean_this,
2507 new DialogInterface.OnClickListener() {
2508 public void onClick(DialogInterface dialog, int id) {
2509 final UserHandleCompat user = UserHandleCompat.myUserHandle();
2510 mWorkspace.removeAbandonedPromise(packageName, user);
2511 }
2512 })
2513 .create().show();
2514 return;
2515 }
2516
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002517 /**
2518 * Event handler for an app shortcut click.
2519 *
2520 * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.
2521 */
Chris Wren40c5ed32014-06-24 18:24:23 -04002522 protected void onClickAppShortcut(final View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002523 if (LOGD) Log.d(TAG, "onClickAppShortcut");
2524 Object tag = v.getTag();
2525 if (!(tag instanceof ShortcutInfo)) {
2526 throw new IllegalArgumentException("Input must be a Shortcut");
2527 }
2528
2529 // Open shortcut
2530 final ShortcutInfo shortcut = (ShortcutInfo) tag;
Sunny Goyal1a745e82014-10-02 15:58:31 -07002531
2532 if (shortcut.isDisabled != 0) {
2533 int error = R.string.activity_not_available;
2534 if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_SAFEMODE) != 0) {
2535 error = R.string.safemode_shortcut_error;
2536 }
2537 Toast.makeText(this, error, Toast.LENGTH_SHORT).show();
2538 return;
2539 }
2540
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002541 final Intent intent = shortcut.intent;
2542
2543 // Check for special shortcuts
2544 if (intent.getComponent() != null) {
2545 final String shortcutClass = intent.getComponent().getClassName();
2546
2547 if (shortcutClass.equals(MemoryDumpActivity.class.getName())) {
2548 MemoryDumpActivity.startDump(this);
2549 return;
2550 } else if (shortcutClass.equals(ToggleWeightWatcher.class.getName())) {
2551 toggleShowWeightWatcher();
2552 return;
2553 }
2554 }
2555
Chris Wren40c5ed32014-06-24 18:24:23 -04002556 // Check for abandoned promise
Sunny Goyal34942622014-08-29 17:20:55 -07002557 if ((v instanceof BubbleTextView)
2558 && shortcut.isPromise()
2559 && !shortcut.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE)) {
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002560 showBrokenAppInstallDialog(
Sunny Goyal34942622014-08-29 17:20:55 -07002561 shortcut.getTargetComponent().getPackageName(),
Chris Wren40c5ed32014-06-24 18:24:23 -04002562 new DialogInterface.OnClickListener() {
2563 public void onClick(DialogInterface dialog, int id) {
Sunny Goyal508da152014-08-14 10:53:27 -07002564 startAppShortcutOrInfoActivity(v);
Chris Wren40c5ed32014-06-24 18:24:23 -04002565 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002566 });
Chris Wren40c5ed32014-06-24 18:24:23 -04002567 return;
2568 }
2569
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002570 // Start activities
Sunny Goyal508da152014-08-14 10:53:27 -07002571 startAppShortcutOrInfoActivity(v);
Adam Cohen9211d422014-10-07 18:14:53 -07002572
2573 if (mLauncherCallbacks != null) {
2574 mLauncherCallbacks.onClickAppShortcut(v);
2575 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002576 }
2577
Adam Cohen091440a2015-03-18 14:16:05 -07002578 @Thunk void startAppShortcutOrInfoActivity(View v) {
Chris Wren40c5ed32014-06-24 18:24:23 -04002579 Object tag = v.getTag();
Sunny Goyal508da152014-08-14 10:53:27 -07002580 final ShortcutInfo shortcut;
2581 final Intent intent;
2582 if (tag instanceof ShortcutInfo) {
2583 shortcut = (ShortcutInfo) tag;
2584 intent = shortcut.intent;
2585 int[] pos = new int[2];
2586 v.getLocationOnScreen(pos);
2587 intent.setSourceBounds(new Rect(pos[0], pos[1],
2588 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Chris Wren40c5ed32014-06-24 18:24:23 -04002589
Sunny Goyal508da152014-08-14 10:53:27 -07002590 } else if (tag instanceof AppInfo) {
2591 shortcut = null;
2592 intent = ((AppInfo) tag).intent;
2593 } else {
2594 throw new IllegalArgumentException("Input must be a Shortcut or AppInfo");
2595 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002596
2597 boolean success = startActivitySafely(v, intent, tag);
Winson Chung8f1eff72015-05-28 17:33:40 -07002598 mStats.recordLaunch(v, intent, shortcut);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002599
2600 if (success && v instanceof BubbleTextView) {
2601 mWaitingForResume = (BubbleTextView) v;
2602 mWaitingForResume.setStayPressed(true);
2603 }
2604 }
2605
2606 /**
2607 * Event handler for a folder icon click.
2608 *
2609 * @param v The view that was clicked. Must be an instance of {@link FolderIcon}.
2610 */
2611 protected void onClickFolderIcon(View v) {
2612 if (LOGD) Log.d(TAG, "onClickFolder");
2613 if (!(v instanceof FolderIcon)){
2614 throw new IllegalArgumentException("Input must be a FolderIcon");
2615 }
2616
Sunny Goyal317698b2015-07-29 11:45:41 -07002617 // TODO(sunnygoyal): Re-evaluate this code.
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002618 FolderIcon folderIcon = (FolderIcon) v;
2619 final FolderInfo info = folderIcon.getFolderInfo();
2620 Folder openFolder = mWorkspace.getFolderForTag(info);
2621
2622 // If the folder info reports that the associated folder is open, then verify that
2623 // it is actually opened. There have been a few instances where this gets out of sync.
2624 if (info.opened && openFolder == null) {
2625 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2626 + info.screenId + " (" + info.cellX + ", " + info.cellY + ")");
2627 info.opened = false;
2628 }
2629
2630 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
2631 // Close any open folder
2632 closeFolder();
2633 // Open the requested folder
2634 openFolder(folderIcon);
2635 } else {
2636 // Find the open folder...
2637 int folderScreen;
2638 if (openFolder != null) {
2639 folderScreen = mWorkspace.getPageForView(openFolder);
2640 // .. and close it
2641 closeFolder(openFolder);
2642 if (folderScreen != mWorkspace.getCurrentPage()) {
2643 // Close any folder open on the current screen
2644 closeFolder();
2645 // Pull the folder onto this screen
2646 openFolder(folderIcon);
2647 }
2648 }
2649 }
Adam Cohen9211d422014-10-07 18:14:53 -07002650
2651 if (mLauncherCallbacks != null) {
2652 mLauncherCallbacks.onClickFolderIcon(v);
2653 }
Michael Jurka5130e402011-10-13 04:55:35 -07002654 }
2655
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002656 /**
2657 * Event handler for the (Add) Widgets button that appears after a long press
2658 * on the home screen.
2659 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002660 protected void onClickAddWidgetButton(View view) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002661 if (LOGD) Log.d(TAG, "onClickAddWidgetButton");
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002662 if (mIsSafeModeEnabled) {
2663 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2664 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08002665 showWidgetsView(true /* animated */, true /* resetPageToZero */);
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002666 if (mLauncherCallbacks != null) {
2667 mLauncherCallbacks.onClickAddWidgetButton(view);
2668 }
Adam Cohen9211d422014-10-07 18:14:53 -07002669 }
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002670 }
2671
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002672 /**
2673 * Event handler for the wallpaper picker button that appears after a long press
2674 * on the home screen.
2675 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002676 protected void onClickWallpaperPicker(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002677 if (LOGD) Log.d(TAG, "onClickWallpaperPicker");
Tony Wickham785f7a52015-08-31 17:28:32 -07002678 int pageScroll = mWorkspace.getScrollForPage(mWorkspace.getPageNearestToCenterOfScreen());
2679 float offset = mWorkspace.mWallpaperOffset.wallpaperOffsetForScroll(pageScroll);
2680 startActivityForResult(new Intent(Intent.ACTION_SET_WALLPAPER).setPackage(getPackageName())
2681 .putExtra(WallpaperPickerActivity.EXTRA_WALLPAPER_OFFSET, offset),
Sunny Goyal6a1e95a2015-03-20 17:26:30 -07002682 REQUEST_PICK_WALLPAPER);
Adam Cohen9211d422014-10-07 18:14:53 -07002683
2684 if (mLauncherCallbacks != null) {
2685 mLauncherCallbacks.onClickWallpaperPicker(v);
2686 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002687 }
2688
2689 /**
2690 * Event handler for a click on the settings button that appears after a long press
2691 * on the home screen.
2692 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002693 protected void onClickSettingsButton(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002694 if (LOGD) Log.d(TAG, "onClickSettingsButton");
Adam Cohen9211d422014-10-07 18:14:53 -07002695 if (mLauncherCallbacks != null) {
2696 mLauncherCallbacks.onClickSettingsButton(v);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07002697 } else {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002698 startActivity(new Intent(this, SettingsActivity.class));
Adam Cohen9211d422014-10-07 18:14:53 -07002699 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002700 }
2701
Adam Cohen61f560d2013-09-30 15:58:20 -07002702 public View.OnTouchListener getHapticFeedbackTouchListener() {
2703 if (mHapticFeedbackTouchListener == null) {
2704 mHapticFeedbackTouchListener = new View.OnTouchListener() {
Sunny Goyal70660032015-05-14 00:07:08 -07002705 @SuppressLint("ClickableViewAccessibility")
Adam Cohen61f560d2013-09-30 15:58:20 -07002706 @Override
2707 public boolean onTouch(View v, MotionEvent event) {
2708 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
2709 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2710 }
2711 return false;
2712 }
2713 };
2714 }
2715 return mHapticFeedbackTouchListener;
2716 }
2717
Adam Cohen9211d422014-10-07 18:14:53 -07002718 public void onDragStarted(View view) {
2719 if (isOnCustomContent()) {
2720 // Custom content screen doesn't participate in drag and drop. If on custom
2721 // content screen, move to default.
2722 moveWorkspaceToDefaultScreen();
2723 }
2724
2725 if (mLauncherCallbacks != null) {
2726 mLauncherCallbacks.onDragStarted(view);
2727 }
2728 }
Anjali Koppal62d18ed2014-03-10 17:04:03 -07002729
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002730 /**
2731 * Called when the user stops interacting with the launcher.
2732 * This implies that the user is now on the homescreen and is not doing housekeeping.
2733 */
Adam Cohen9211d422014-10-07 18:14:53 -07002734 protected void onInteractionEnd() {
2735 if (mLauncherCallbacks != null) {
2736 mLauncherCallbacks.onInteractionEnd();
2737 }
2738 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002739
2740 /**
2741 * Called when the user starts interacting with the launcher.
2742 * The possible interactions are:
2743 * - open all apps
2744 * - reorder an app shortcut, or a widget
2745 * - open the overview mode.
2746 * This is a good time to stop doing things that only make sense
2747 * when the user is on the homescreen and not doing housekeeping.
2748 */
Adam Cohen9211d422014-10-07 18:14:53 -07002749 protected void onInteractionBegin() {
2750 if (mLauncherCallbacks != null) {
2751 mLauncherCallbacks.onInteractionBegin();
2752 }
2753 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002754
Winson Chungcd99cd32015-04-29 11:03:24 -07002755 /** Updates the interaction state. */
2756 public void updateInteraction(Workspace.State fromState, Workspace.State toState) {
Winson Chung83f59ab2015-05-05 17:21:58 -07002757 // Only update the interacting state if we are transitioning to/from a view with an
Winson Chungcd99cd32015-04-29 11:03:24 -07002758 // overlay
Winson Chungef7f8742015-06-04 17:18:17 -07002759 boolean fromStateWithOverlay = fromState != Workspace.State.NORMAL;
2760 boolean toStateWithOverlay = toState != Workspace.State.NORMAL;
Winson Chung83f59ab2015-05-05 17:21:58 -07002761 if (toStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002762 onInteractionBegin();
Winson Chung83f59ab2015-05-05 17:21:58 -07002763 } else if (fromStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002764 onInteractionEnd();
2765 }
2766 }
2767
Kenny Guyf07af7b2014-07-31 11:39:16 +01002768 void startApplicationDetailsActivity(ComponentName componentName, UserHandleCompat user) {
Kenny Guyf07af7b2014-07-31 11:39:16 +01002769 try {
2770 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Kenny Guyf07af7b2014-07-31 11:39:16 +01002771 launcherApps.showAppDetailsForProfile(componentName, user);
2772 } catch (SecurityException e) {
2773 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2774 Log.e(TAG, "Launcher does not have permission to launch settings");
2775 } catch (ActivityNotFoundException e) {
2776 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2777 Log.e(TAG, "Unable to launch settings");
2778 }
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002779 }
2780
Michael Jurka1e2f4652013-07-08 18:03:46 -07002781 // returns true if the activity was started
Kenny Guyd31df542014-06-30 15:12:11 +01002782 boolean startApplicationUninstallActivity(ComponentName componentName, int flags,
2783 UserHandleCompat user) {
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002784 if ((flags & AppInfo.DOWNLOADED_FLAG) == 0) {
Patrick Dubroy5539af72010-09-07 15:22:01 -07002785 // System applications cannot be installed. For now, show a toast explaining that.
2786 // We may give them the option of disabling apps this way.
2787 int messageId = R.string.uninstall_system_app_text;
2788 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
Michael Jurka1e2f4652013-07-08 18:03:46 -07002789 return false;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002790 } else {
Michael Jurka1e2f4652013-07-08 18:03:46 -07002791 String packageName = componentName.getPackageName();
2792 String className = componentName.getClassName();
Patrick Dubroy5539af72010-09-07 15:22:01 -07002793 Intent intent = new Intent(
2794 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002795 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2796 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Kenny Guyd31df542014-06-30 15:12:11 +01002797 if (user != null) {
2798 user.addToIntent(intent, Intent.EXTRA_USER);
2799 }
Patrick Dubroy5539af72010-09-07 15:22:01 -07002800 startActivity(intent);
Michael Jurka1e2f4652013-07-08 18:03:46 -07002801 return true;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002802 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002803 }
2804
Winson Chung8f1eff72015-05-28 17:33:40 -07002805 private boolean startActivity(View v, Intent intent, Object tag) {
Kenny Guyb6cc40b2014-05-13 15:58:58 +01002806 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002807 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002808 // Only launch using the new animation if the shortcut has not opted out (this is a
2809 // private contract between launcher and may be ignored in the future).
2810 boolean useLaunchAnimation = (v != null) &&
2811 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
Kenny Guyed131872014-04-30 03:02:21 +01002812 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
2813 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyed131872014-04-30 03:02:21 +01002814
Kenny Guy1317e2d2014-05-08 18:52:50 +01002815 UserHandleCompat user = null;
2816 if (intent.hasExtra(AppInfo.EXTRA_PROFILE)) {
2817 long serialNumber = intent.getLongExtra(AppInfo.EXTRA_PROFILE, -1);
2818 user = userManager.getUserForSerialNumber(serialNumber);
2819 }
2820
2821 Bundle optsBundle = null;
Winson Chung2672ff92012-05-04 16:22:30 -07002822 if (useLaunchAnimation) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002823 ActivityOptions opts = null;
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002824 if (Utilities.ATLEAST_MARSHMALLOW) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002825 int left = 0, top = 0;
2826 int width = v.getMeasuredWidth(), height = v.getMeasuredHeight();
2827 if (v instanceof TextView) {
2828 // Launch from center of icon, not entire view
Winson Chungb745afb2015-03-02 11:51:23 -08002829 Drawable icon = Workspace.getTextViewIcon((TextView) v);
2830 if (icon != null) {
2831 Rect bounds = icon.getBounds();
Chet Haasea8f996d2015-02-17 12:56:04 -08002832 left = (width - bounds.width()) / 2;
Winson Chungb745afb2015-03-02 11:51:23 -08002833 top = v.getPaddingTop();
Chet Haasea8f996d2015-02-17 12:56:04 -08002834 width = bounds.width();
2835 height = bounds.height();
2836 }
2837 }
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002838 opts = ActivityOptions.makeClipRevealAnimation(v, left, top, width, height);
2839 } else if (!Utilities.ATLEAST_LOLLIPOP) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002840 // Below L, we use a scale up animation
Adam Cohen2e52c902015-04-06 13:11:28 -07002841 opts = ActivityOptions.makeScaleUpAnimation(v, 0, 0,
Chet Haasea8f996d2015-02-17 12:56:04 -08002842 v.getMeasuredWidth(), v.getMeasuredHeight());
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002843 } else if (Utilities.ATLEAST_LOLLIPOP_MR1) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002844 // On L devices, we use the device default slide-up transition.
2845 // On L MR1 devices, we a custom version of the slide-up transition which
2846 // doesn't have the delay present in the device default.
2847 opts = ActivityOptions.makeCustomAnimation(this,
2848 R.anim.task_open_enter, R.anim.no_anim);
Chet Haasea8f996d2015-02-17 12:56:04 -08002849 }
Adam Cohen2e52c902015-04-06 13:11:28 -07002850 optsBundle = opts != null ? opts.toBundle() : null;
Adam Cohen6ea3b112014-06-11 11:38:49 -07002851 }
Kenny Guy1317e2d2014-05-08 18:52:50 +01002852
2853 if (user == null || user.equals(UserHandleCompat.myUserHandle())) {
2854 // Could be launching some bookkeeping activity
2855 startActivity(intent, optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002856 } else {
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002857 // TODO Component can be null when shortcuts are supported for secondary user
Kenny Guyc2bd8102014-06-30 12:30:31 +01002858 launcherApps.startActivityForProfile(intent.getComponent(), user,
2859 intent.getSourceBounds(), optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002860 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002861 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002862 } catch (SecurityException e) {
2863 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002864 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002865 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07002866 "or use the exported attribute for this activity. "
2867 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002868 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002869 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002870 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002871
Winson Chungbedf9232015-07-10 12:38:30 -07002872 public boolean startActivitySafely(View v, Intent intent, Object tag) {
Michael Jurka86a720e2012-05-09 11:23:23 -07002873 boolean success = false;
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002874 if (mIsSafeModeEnabled && !Utilities.isSystemApp(this, intent)) {
2875 Toast.makeText(this, R.string.safemode_shortcut_error, Toast.LENGTH_SHORT).show();
2876 return false;
2877 }
Michael Jurka86a720e2012-05-09 11:23:23 -07002878 try {
2879 success = startActivity(v, intent, tag);
2880 } catch (ActivityNotFoundException e) {
2881 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2882 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
2883 }
2884 return success;
2885 }
2886
Adam Cohen268c4752012-06-06 17:47:33 -07002887 /**
2888 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
2889 * in the DragLayer in the exact absolute location of the original FolderIcon.
2890 */
2891 private void copyFolderIconToImage(FolderIcon fi) {
2892 final int width = fi.getMeasuredWidth();
2893 final int height = fi.getMeasuredHeight();
2894
2895 // Lazy load ImageView, Bitmap and Canvas
2896 if (mFolderIconImageView == null) {
2897 mFolderIconImageView = new ImageView(this);
2898 }
2899 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
2900 mFolderIconBitmap.getHeight() != height) {
2901 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
2902 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
2903 }
2904
2905 DragLayer.LayoutParams lp;
2906 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
2907 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
2908 } else {
2909 lp = new DragLayer.LayoutParams(width, height);
2910 }
2911
Adam Cohen307fe232012-08-16 17:55:58 -07002912 // The layout from which the folder is being opened may be scaled, adjust the starting
2913 // view size by this scale factor.
2914 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07002915 lp.customPosition = true;
2916 lp.x = mRectForFolderAnimation.left;
2917 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07002918 lp.width = (int) (scale * width);
2919 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07002920
2921 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
2922 fi.draw(mFolderIconCanvas);
2923 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07002924 if (fi.getFolder() != null) {
2925 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
2926 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07002927 }
Adam Cohen268c4752012-06-06 17:47:33 -07002928 // Just in case this image view is still in the drag layer from a previous animation,
2929 // we remove it and re-add it.
2930 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
2931 mDragLayer.removeView(mFolderIconImageView);
2932 }
2933 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07002934 if (fi.getFolder() != null) {
2935 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07002936 }
Adam Cohen268c4752012-06-06 17:47:33 -07002937 }
2938
Adam Cohen2801caf2011-05-13 20:57:39 -07002939 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002940 if (fi == null) return;
Adam Cohenc51934b2011-07-26 21:07:43 -07002941 FolderInfo info = (FolderInfo) fi.getTag();
2942 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
2943 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07002944 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
2945 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07002946 }
2947
Adam Cohen268c4752012-06-06 17:47:33 -07002948 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
2949 copyFolderIconToImage(fi);
2950 fi.setVisibility(View.INVISIBLE);
2951
Sunny Goyal5d2fc322015-07-06 22:52:49 -07002952 ObjectAnimator oa = LauncherAnimUtils.ofViewAlphaAndScale(
2953 mFolderIconImageView, 0, 1.5f, 1.5f);
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002954 if (Utilities.ATLEAST_LOLLIPOP) {
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07002955 oa.setInterpolator(new LogDecelerateInterpolator(100, 0));
2956 }
2957 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohen2801caf2011-05-13 20:57:39 -07002958 oa.start();
2959 }
2960
Adam Cohen268c4752012-06-06 17:47:33 -07002961 private void shrinkAndFadeInFolderIcon(final FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002962 if (fi == null) return;
Adam Cohen268c4752012-06-06 17:47:33 -07002963 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07002964
Adam Cohen268c4752012-06-06 17:47:33 -07002965 // We remove and re-draw the FolderIcon in-case it has changed
2966 mDragLayer.removeView(mFolderIconImageView);
2967 copyFolderIconToImage(fi);
Sunny Goyal5d2fc322015-07-06 22:52:49 -07002968 ObjectAnimator oa = LauncherAnimUtils.ofViewAlphaAndScale(mFolderIconImageView, 1, 1, 1);
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07002969 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07002970 oa.addListener(new AnimatorListenerAdapter() {
2971 @Override
2972 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07002973 if (cl != null) {
2974 cl.clearFolderLeaveBehind();
2975 // Remove the ImageView copy of the FolderIcon and make the original visible.
2976 mDragLayer.removeView(mFolderIconImageView);
2977 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07002978 }
2979 }
2980 });
Adam Cohen2801caf2011-05-13 20:57:39 -07002981 oa.start();
2982 }
2983
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002984 /**
Michael Jurka774bd372010-10-22 13:40:50 -07002985 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002986 * is animated relative to the specified View. If the View is null, no animation
2987 * is played.
2988 *
2989 * @param folderInfo The FolderInfo describing the folder to open.
2990 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07002991 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07002992 Folder folder = folderIcon.getFolder();
Sunny Goyalf4066152015-04-15 09:42:19 -07002993 Folder openFolder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
2994 if (openFolder != null && openFolder != folder) {
2995 // Close any open folder before opening a folder.
2996 closeFolder();
2997 }
2998
Adam Cohena9cf38f2011-05-02 15:36:58 -07002999 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003000
Adam Cohena9cf38f2011-05-02 15:36:58 -07003001 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003002
Sunny Goyalf4066152015-04-15 09:42:19 -07003003 // While the folder is open, the position of the icon cannot change.
3004 ((CellLayout.LayoutParams) folderIcon.getLayoutParams()).canReorder = false;
3005
Adam Cohen4554ee12011-08-03 16:13:21 -07003006 // Just verify that the folder hasn't already been added to the DragLayer.
3007 // There was a one-off crash where the folder had a parent already.
3008 if (folder.getParent() == null) {
3009 mDragLayer.addView(folder);
3010 mDragController.addDropTarget((DropTarget) folder);
3011 } else {
3012 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
3013 folder.getParent() + ").");
3014 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07003015 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07003016 growAndFadeOutFolderIcon(folderIcon);
Winson Chung83ca4802013-04-12 15:10:52 -07003017
3018 // Notify the accessibility manager that this folder "window" has appeared and occluded
3019 // the workspace items
3020 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
3021 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07003022 }
3023
3024 public void closeFolder() {
Adam Cohen37c717f2013-11-26 11:50:15 -08003025 Folder folder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
Adam Cohen4554ee12011-08-03 16:13:21 -07003026 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07003027 if (folder.isEditingName()) {
3028 folder.dismissEditingName();
3029 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003030 closeFolder(folder);
3031 }
3032 }
3033
Sunny Goyal83a8f042015-05-19 12:52:12 -07003034 public void closeFolder(Folder folder) {
Adam Cohen4554ee12011-08-03 16:13:21 -07003035 folder.getInfo().opened = false;
3036
3037 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
3038 if (parent != null) {
3039 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
3040 shrinkAndFadeInFolderIcon(fi);
Sunny Goyalf4066152015-04-15 09:42:19 -07003041 if (fi != null) {
3042 ((CellLayout.LayoutParams) fi.getLayoutParams()).canReorder = true;
3043 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003044 }
3045 folder.animateClosed();
Winson Chung83ca4802013-04-12 15:10:52 -07003046
3047 // Notify the accessibility manager that this folder "window" has disappeard and no
3048 // longer occludeds the workspace items
3049 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003050 }
3051
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003052 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07003053 if (!isDraggingEnabled()) return false;
3054 if (isWorkspaceLocked()) return false;
3055 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003056
Winson Chung76648c52015-07-10 14:33:23 -07003057 if (v == mAllAppsButton) {
3058 onLongClickAllAppsButton(v);
3059 return true;
3060 }
3061
Adam Cohen1697b792013-09-17 19:08:21 -07003062 if (v instanceof Workspace) {
3063 if (!mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003064 if (!mWorkspace.isTouchActive()) {
3065 showOverviewMode(true);
Adam Cohen93c97562013-09-26 13:48:01 -07003066 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3067 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
3068 return true;
3069 } else {
3070 return false;
3071 }
Adam Cohenaa4c8c12014-06-06 11:52:52 -07003072 } else {
3073 return false;
Adam Cohen1697b792013-09-17 19:08:21 -07003074 }
Adam Cohen1697b792013-09-17 19:08:21 -07003075 }
3076
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003077 CellLayout.CellInfo longClickCellInfo = null;
3078 View itemUnderLongClick = null;
3079 if (v.getTag() instanceof ItemInfo) {
3080 ItemInfo info = (ItemInfo) v.getTag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08003081 longClickCellInfo = new CellLayout.CellInfo(v, info);
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003082 itemUnderLongClick = longClickCellInfo.cell;
3083 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003084 }
3085
Winson Chung3d503fb2011-07-13 17:25:49 -07003086 // The hotseat touch handling does not go through Workspace, and we always allow long press
3087 // on hotseat items.
Dan Sandlere26d0942014-01-13 14:30:14 -05003088 final boolean inHotseat = isHotseatLayout(v);
Sunny Goyal8e2133b2015-05-06 13:39:07 -07003089 if (!mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07003090 if (itemUnderLongClick == null) {
Adam Cohend3ecce92013-09-16 14:58:00 -07003091 // User long pressed on empty space
3092 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3093 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Adam Cohend3ecce92013-09-16 14:58:00 -07003094 if (mWorkspace.isInOverviewMode()) {
3095 mWorkspace.startReordering(v);
3096 } else {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003097 showOverviewMode(true);
Adam Cohendedbd962013-07-11 14:21:49 -07003098 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003099 } else {
Dan Sandlere26d0942014-01-13 14:30:14 -05003100 final boolean isAllAppsButton = inHotseat && isAllAppsButtonRank(
3101 mHotseat.getOrderInHotseat(
3102 longClickCellInfo.cellX,
3103 longClickCellInfo.cellY));
3104 if (!(itemUnderLongClick instanceof Folder || isAllAppsButton)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003105 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07003106 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003107 }
3108 }
3109 }
3110 return true;
3111 }
3112
Winson Chung3d503fb2011-07-13 17:25:49 -07003113 boolean isHotseatLayout(View layout) {
3114 return mHotseat != null && layout != null &&
3115 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
3116 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08003117
Winson Chung3d503fb2011-07-13 17:25:49 -07003118 /**
3119 * Returns the CellLayout of the specified container at the specified screen.
3120 */
Sunny Goyal92820592015-03-02 11:31:35 -08003121 public CellLayout getCellLayout(long container, long screenId) {
Winson Chung3d503fb2011-07-13 17:25:49 -07003122 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3123 if (mHotseat != null) {
3124 return mHotseat.getLayout();
3125 } else {
3126 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08003127 }
Winson Chung3d503fb2011-07-13 17:25:49 -07003128 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08003129 return mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08003130 }
3131 }
3132
Winson Chungb745afb2015-03-02 11:51:23 -08003133 /**
3134 * For overridden classes.
3135 */
Daniel Sandler843e8602010-06-07 14:59:01 -04003136 public boolean isAllAppsVisible() {
Winson Chungb745afb2015-03-02 11:51:23 -08003137 return isAppsViewVisible();
3138 }
3139
3140 public boolean isAppsViewVisible() {
3141 return (mState == State.APPS) || (mOnResumeState == State.APPS);
3142 }
3143
3144 public boolean isWidgetsViewVisible() {
3145 return (mState == State.WIDGETS) || (mOnResumeState == State.WIDGETS);
Joe Onoratofb0ca672009-09-14 17:55:46 -04003146 }
3147
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003148 private void setWorkspaceBackground(int background) {
3149 switch (background) {
3150 case WORKSPACE_BACKGROUND_TRANSPARENT:
3151 getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
3152 break;
3153 case WORKSPACE_BACKGROUND_BLACK:
3154 getWindow().setBackgroundDrawable(null);
3155 break;
3156 default:
3157 getWindow().setBackgroundDrawable(mWorkspaceBackgroundDrawable);
3158 }
Craig Mautner360310b2012-10-26 15:13:08 -07003159 }
3160
Selim Cinek3a8a8f72014-01-16 10:38:38 -08003161 protected void changeWallpaperVisiblity(boolean visible) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003162 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
3163 int curflags = getWindow().getAttributes().flags
3164 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
3165 if (wpflags != curflags) {
3166 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
3167 }
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003168 setWorkspaceBackground(visible ? WORKSPACE_BACKGROUND_GRADIENT : WORKSPACE_BACKGROUND_BLACK);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003169 }
3170
Michael Jurkae326f182011-11-21 14:05:46 -08003171 @Override
3172 public void onTrimMemory(int level) {
3173 super.onTrimMemory(level);
Adam Cohen3f9c9712014-10-31 11:48:25 -07003174 if (level >= ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
3175 // The widget preview db can result in holding onto over
3176 // 3MB of memory for caching which isn't necessary.
3177 SQLiteDatabase.releaseMemory();
3178
Adam Cohenc8f4e1b2014-11-19 16:03:20 -08003179 // This clears all widget bitmaps from the widget tray
Hyunyoung Song3f471442015-04-08 19:01:34 -07003180 // TODO(hyunyoungs)
Michael Jurkae326f182011-11-21 14:05:46 -08003181 }
Robert Kozikowski67c30862015-03-30 23:46:46 +01003182 if (mLauncherCallbacks != null) {
3183 mLauncherCallbacks.onTrimMemory(level);
3184 }
Michael Jurkae326f182011-11-21 14:05:46 -08003185 }
3186
Winson Chung5f4e0fd2015-05-22 11:12:27 -07003187 public void showWorkspace(boolean animated) {
Sunny Goyalce5a7e52015-07-08 15:44:27 -07003188 showWorkspace(animated, null);
Adam Cohened307df2013-10-02 09:37:31 -07003189 }
3190
Sunny Goyal83a8f042015-05-19 12:52:12 -07003191 public void showWorkspace(boolean animated, Runnable onCompleteRunnable) {
Winson Chung0f785722015-04-08 10:27:49 -07003192 boolean changed = mState != State.WORKSPACE ||
3193 mWorkspace.getState() != Workspace.State.NORMAL;
3194 if (changed) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003195 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003196 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
Winson2a87fe82015-08-07 10:37:21 -07003197 Workspace.State.NORMAL, animated, onCompleteRunnable);
Winson Chungc7d2b602012-05-16 17:02:20 -07003198
Michael Jurkab3e22d92011-10-31 15:58:33 -07003199 // Set focus to the AppsCustomize button
3200 if (mAllAppsButton != null) {
3201 mAllAppsButton.requestFocus();
3202 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003203 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07003204
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003205 // Change the state *after* we've called all the transition code
3206 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08003207
Winson Chung5fb63472011-02-02 17:03:37 -08003208 // Resume the auto-advance of widgets
3209 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08003210 updateAutoAdvanceState();
Winson Chung5fb63472011-02-02 17:03:37 -08003211
Winson Chung0f785722015-04-08 10:27:49 -07003212 if (changed) {
3213 // Send an accessibility event to announce the context change
3214 getWindow().getDecorView()
3215 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Winson Chung0f785722015-04-08 10:27:49 -07003216 }
Bjorn Bringertc459e522013-06-07 19:36:01 +01003217 }
3218
Adam Cohened307df2013-10-02 09:37:31 -07003219 void showOverviewMode(boolean animated) {
3220 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003221 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
Winson2a87fe82015-08-07 10:37:21 -07003222 Workspace.State.OVERVIEW, animated, null /* onCompleteRunnable */);
Adam Cohened307df2013-10-02 09:37:31 -07003223 mState = State.WORKSPACE;
Joe Onorato00acb122009-08-04 16:04:30 -04003224 }
3225
Winson Chungb745afb2015-03-02 11:51:23 -08003226 /**
3227 * Shows the apps view.
3228 */
Winson Chung76648c52015-07-10 14:33:23 -07003229 void showAppsView(boolean animated, boolean resetListToTop, boolean updatePredictedApps,
3230 boolean focusSearchBar) {
Winson Chungb745afb2015-03-02 11:51:23 -08003231 if (resetListToTop) {
3232 mAppsView.scrollToTop();
3233 }
Winson Chung4ac30062015-05-08 17:34:17 -07003234 if (updatePredictedApps) {
3235 tryAndUpdatePredictedApps();
3236 }
Winson Chung76648c52015-07-10 14:33:23 -07003237 showAppsOrWidgets(State.APPS, animated, focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003238 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003239
Winson Chungb745afb2015-03-02 11:51:23 -08003240 /**
3241 * Shows the widgets view.
3242 */
3243 void showWidgetsView(boolean animated, boolean resetPageToZero) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003244 if (LOGD) Log.d(TAG, "showWidgetsView:" + animated + " resetPageToZero:" + resetPageToZero);
Winson Chung82963d52013-10-09 11:20:57 -07003245 if (resetPageToZero) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003246 mWidgetsView.scrollToTop();
Winson Chung82963d52013-10-09 11:20:57 -07003247 }
Winson Chung76648c52015-07-10 14:33:23 -07003248 showAppsOrWidgets(State.WIDGETS, animated, false);
Hyunyoung Song3f471442015-04-08 19:01:34 -07003249
3250 mWidgetsView.post(new Runnable() {
Adam Cohendcc5e712014-06-23 15:38:55 -04003251 @Override
3252 public void run() {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003253 mWidgetsView.requestFocus();
Adam Cohendcc5e712014-06-23 15:38:55 -04003254 }
3255 });
Winson Chungb745afb2015-03-02 11:51:23 -08003256 }
3257
3258 /**
3259 * Sets up the transition to show the apps/widgets view.
Hyunyoung Songb7900832015-05-15 16:29:45 -07003260 *
3261 * @return whether the current from and to state allowed this operation
Winson Chungb745afb2015-03-02 11:51:23 -08003262 */
Hyunyoung Songb7900832015-05-15 16:29:45 -07003263 // TODO: calling method should use the return value so that when {@code false} is returned
3264 // the workspace transition doesn't fall into invalid state.
Winson Chung76648c52015-07-10 14:33:23 -07003265 private boolean showAppsOrWidgets(State toState, boolean animated, boolean focusSearchBar) {
Hyunyoung Songb7900832015-05-15 16:29:45 -07003266 if (mState != State.WORKSPACE && mState != State.APPS_SPRING_LOADED &&
3267 mState != State.WIDGETS_SPRING_LOADED) {
3268 return false;
3269 }
3270 if (toState != State.APPS && toState != State.WIDGETS) {
3271 return false;
3272 }
Winson Chungb745afb2015-03-02 11:51:23 -08003273
3274 if (toState == State.APPS) {
Winson Chung006ee262015-08-03 14:40:11 -07003275 mStateTransitionAnimation.startAnimationToAllApps(mWorkspace.getState(), animated,
3276 focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003277 } else {
Winson Chung006ee262015-08-03 14:40:11 -07003278 mStateTransitionAnimation.startAnimationToWidgets(mWorkspace.getState(), animated);
Winson Chungb745afb2015-03-02 11:51:23 -08003279 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003280
Michael Jurkab3e22d92011-10-31 15:58:33 -07003281 // Change the state *after* we've called all the transition code
Winson Chungb745afb2015-03-02 11:51:23 -08003282 mState = toState;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003283
3284 // Pause the auto-advance of widgets until we are out of AllApps
3285 mUserPresent = false;
Winson Chungb745afb2015-03-02 11:51:23 -08003286 updateAutoAdvanceState();
Michael Jurkab3e22d92011-10-31 15:58:33 -07003287 closeFolder();
3288
3289 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07003290 getWindow().getDecorView()
3291 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Hyunyoung Songb7900832015-05-15 16:29:45 -07003292 return true;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003293 }
3294
Winson Chungcd99cd32015-04-29 11:03:24 -07003295 /**
3296 * Updates the workspace and interaction state on state change, and return the animation to this
3297 * new state.
3298 */
Sunny Goyalce5a7e52015-07-08 15:44:27 -07003299 public Animator startWorkspaceStateChangeAnimation(Workspace.State toState,
Winson Chung006ee262015-08-03 14:40:11 -07003300 boolean animated, HashMap<View, Integer> layerViews) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003301 Workspace.State fromState = mWorkspace.getState();
Winson2a87fe82015-08-07 10:37:21 -07003302 Animator anim = mWorkspace.setStateWithAnimation(toState, animated, layerViews);
Winson Chungcd99cd32015-04-29 11:03:24 -07003303 updateInteraction(fromState, toState);
3304 return anim;
3305 }
3306
Jun Mukaif0033da2015-08-04 18:34:30 -07003307 public void onLauncherClingShown() {
3308 // When a launcher cling appears, it should cover the underlying layers, so their focus
3309 // should be blocked.
3310 if (mDragLayer.getDescendantFocusability() != ViewGroup.FOCUS_BLOCK_DESCENDANTS) {
3311 mDragLayer.setDescendantFocusability(ViewGroup.FOCUS_BLOCK_DESCENDANTS);
3312 }
3313 }
3314
3315 public void onLauncherClingDismissed() {
3316 mDragLayer.setDescendantFocusability(ViewGroup.FOCUS_AFTER_DESCENDANTS);
3317 }
3318
Hyunyoung Song3f471442015-04-08 19:01:34 -07003319 public void enterSpringLoadedDragMode() {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003320 if (LOGD) Log.d(TAG, String.format("enterSpringLoadedDragMode [mState=%s", mState.name()));
Winson Chungb745afb2015-03-02 11:51:23 -08003321 if (mState == State.WORKSPACE || mState == State.APPS_SPRING_LOADED ||
3322 mState == State.WIDGETS_SPRING_LOADED) {
3323 return;
Winson Chungb26f3d62011-06-02 10:49:29 -07003324 }
Winson Chungb745afb2015-03-02 11:51:23 -08003325
Winson Chung006ee262015-08-03 14:40:11 -07003326 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
Winson2a87fe82015-08-07 10:37:21 -07003327 Workspace.State.SPRING_LOADED, true /* animated */,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003328 null /* onCompleteRunnable */);
Winson Chungb745afb2015-03-02 11:51:23 -08003329 mState = isAppsViewVisible() ? State.APPS_SPRING_LOADED : State.WIDGETS_SPRING_LOADED;
Michael Jurkad3ef3062010-11-23 16:23:58 -08003330 }
Adam Cohen7777d962011-08-18 18:58:38 -07003331
Hyunyoung Song3f471442015-04-08 19:01:34 -07003332 public void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, int delay,
Adam Cohened66b2b2012-01-23 17:28:51 -08003333 final Runnable onCompleteRunnable) {
Winson Chungb745afb2015-03-02 11:51:23 -08003334 if (mState != State.APPS_SPRING_LOADED && mState != State.WIDGETS_SPRING_LOADED) return;
Winson Chung09bfc452011-09-09 11:30:20 -07003335
Winson Chunge7a03942011-08-05 15:05:12 -07003336 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07003337 @Override
3338 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003339 if (successfulDrop) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003340 // TODO(hyunyoungs): verify if this hack is still needed, if not, delete.
3341 //
Michael Jurka7bdb25a2011-08-03 15:16:44 -07003342 // Before we show workspace, hide all apps again because
3343 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
3344 // clean up our state transition functions
Hyunyoung Song3f471442015-04-08 19:01:34 -07003345 mWidgetsView.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003346 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07003347 } else {
3348 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003349 }
Winson Chung557d6ed2011-07-08 15:34:52 -07003350 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07003351 }, delay);
Winson Chung557d6ed2011-07-08 15:34:52 -07003352 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003353
Michael Jurkad3ef3062010-11-23 16:23:58 -08003354 void exitSpringLoadedDragMode() {
Winson Chungb745afb2015-03-02 11:51:23 -08003355 if (mState == State.APPS_SPRING_LOADED) {
Winson Chung4ac30062015-05-08 17:34:17 -07003356 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07003357 false /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -08003358 } else if (mState == State.WIDGETS_SPRING_LOADED) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003359 showWidgetsView(true, false);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003360 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003361 }
3362
Winson Chung4ac30062015-05-08 17:34:17 -07003363 /**
3364 * Updates the set of predicted apps if it hasn't been updated since the last time Launcher was
3365 * resumed.
3366 */
3367 private void tryAndUpdatePredictedApps() {
3368 if (mLauncherCallbacks != null) {
Winson Chung6b1c73f2015-06-18 11:38:42 -07003369 List<ComponentKey> apps = mLauncherCallbacks.getPredictedApps();
Winson Chung91c05952015-06-25 12:17:30 -07003370 if (apps != null) {
Winson Chung4ac30062015-05-08 17:34:17 -07003371 mAppsView.setPredictedApps(apps);
3372 }
3373 }
3374 }
3375
Michael Jurkab3e22d92011-10-31 15:58:33 -07003376 void lockAllApps() {
3377 // TODO
3378 }
3379
3380 void unlockAllApps() {
3381 // TODO
3382 }
3383
Sunny Goyal594d76d2014-11-06 10:12:54 -08003384 protected void disableVoiceButtonProxy(boolean disable) {
3385 // NO-OP
Winson Chungbb185bd2011-11-21 12:31:42 -08003386 }
3387
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003388 public View getOrCreateQsbBar() {
Adam Cohenc2d6e892014-10-16 09:49:24 -07003389 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
3390 return mLauncherCallbacks.getQsbBar();
Adam Cohen9211d422014-10-07 18:14:53 -07003391 }
3392
Adam Cohen24ce0b32014-01-14 16:18:14 -08003393 if (mQsb == null) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003394 AppWidgetProviderInfo searchProvider = Utilities.getSearchWidgetProvider(this);
3395 if (searchProvider == null) {
3396 return null;
3397 }
3398
3399 Bundle opts = new Bundle();
3400 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_HOST_CATEGORY,
Adam Coheneb8e2822015-02-20 16:38:48 +00003401 AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003402
3403 SharedPreferences sp = getSharedPreferences(
3404 LauncherAppState.getSharedPreferencesKey(), MODE_PRIVATE);
3405 int widgetId = sp.getInt(QSB_WIDGET_ID, -1);
Sunny Goyal416541c2014-11-14 11:59:57 -08003406 AppWidgetProviderInfo widgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003407 if (!searchProvider.provider.flattenToString().equals(
3408 sp.getString(QSB_WIDGET_PROVIDER, null))
Sunny Goyal416541c2014-11-14 11:59:57 -08003409 || (widgetInfo == null)
3410 || !widgetInfo.provider.equals(searchProvider.provider)) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003411 // A valid widget is not already bound.
3412 if (widgetId > -1) {
3413 mAppWidgetHost.deleteAppWidgetId(widgetId);
3414 widgetId = -1;
3415 }
3416
3417 // Try to bind a new widget
3418 widgetId = mAppWidgetHost.allocateAppWidgetId();
3419
3420 if (!AppWidgetManagerCompat.getInstance(this)
3421 .bindAppWidgetIdIfAllowed(widgetId, searchProvider, opts)) {
3422 mAppWidgetHost.deleteAppWidgetId(widgetId);
3423 widgetId = -1;
3424 }
3425
3426 sp.edit()
3427 .putInt(QSB_WIDGET_ID, widgetId)
3428 .putString(QSB_WIDGET_PROVIDER, searchProvider.provider.flattenToString())
3429 .commit();
3430 }
3431
Sunny Goyal8d595092015-07-06 12:22:14 -07003432 mAppWidgetHost.setQsbWidgetId(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003433 if (widgetId != -1) {
3434 mQsb = mAppWidgetHost.createView(this, widgetId, searchProvider);
Sunny Goyalebfae6e2015-08-27 15:30:25 -07003435 mQsb.setId(R.id.qsb_widget);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003436 mQsb.updateAppWidgetOptions(opts);
3437 mQsb.setPadding(0, 0, 0, 0);
3438 mSearchDropTargetBar.addView(mQsb);
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003439 mSearchDropTargetBar.setQsbSearchBar(mQsb);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003440 }
Cristina Stancu476493b2013-08-07 17:20:14 +01003441 }
Adam Cohen24ce0b32014-01-14 16:18:14 -08003442 return mQsb;
Cristina Stancu476493b2013-08-07 17:20:14 +01003443 }
3444
Sunny Goyal22235bc2015-04-03 09:23:43 -07003445 private void reinflateQSBIfNecessary() {
3446 if (mQsb instanceof LauncherAppWidgetHostView &&
3447 ((LauncherAppWidgetHostView) mQsb).isReinflateRequired()) {
3448 mSearchDropTargetBar.removeView(mQsb);
3449 mQsb = null;
3450 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
3451 }
3452 }
3453
Michael Jurkad7c28052012-04-27 15:43:36 -07003454 @Override
3455 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07003456 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07003457 final List<CharSequence> text = event.getText();
3458 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07003459 // Populate event with a fake title based on the current state.
Winson Chungb745afb2015-03-02 11:51:23 -08003460 if (mState == State.APPS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003461 text.add(getString(R.string.all_apps_button_label));
Winson Chungb745afb2015-03-02 11:51:23 -08003462 } else if (mState == State.WIDGETS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003463 text.add(getString(R.string.widget_button_text));
Hyunyoung Song166e6482015-06-25 21:06:07 -07003464 } else if (mWorkspace != null) {
3465 text.add(mWorkspace.getCurrentPageDescription());
alanv1d4fde62012-10-17 13:15:47 -07003466 } else {
3467 text.add(getString(R.string.all_apps_home_button_label));
3468 }
Michael Jurkad7c28052012-04-27 15:43:36 -07003469 return result;
3470 }
3471
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003472 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003473 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003474 */
Adam Cohen091440a2015-03-18 14:16:05 -07003475 @Thunk class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003476 @Override
3477 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003478 closeSystemDialogs();
3479 }
3480 }
3481
3482 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07003483 * If the activity is currently paused, signal that we need to run the passed Runnable
3484 * in onResume.
3485 *
3486 * This needs to be called from incoming places where resources might have been loaded
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003487 * while the activity is paused. That is because the Configuration (e.g., rotation) might be
3488 * wrong when we're not running, and if the activity comes back to what the configuration was
3489 * when we were paused, activity is not restarted.
Michael Jurka7607c2f2013-04-03 14:33:19 -07003490 *
3491 * Implementation of the method from LauncherModel.Callbacks.
3492 *
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003493 * @return {@code true} if we are currently paused. The caller might be able to skip some work
Michael Jurka7607c2f2013-04-03 14:33:19 -07003494 */
Rahul Chaturvedi799aa042015-06-01 21:26:41 -04003495 @Thunk boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003496 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003497 if (LOGD) Log.d(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02003498 if (deletePreviousRunnables) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07003499 while (mBindOnResumeCallbacks.remove(run)) {
Michael Jurkac402cd92013-05-20 15:49:32 +02003500 }
3501 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07003502 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07003503 return true;
3504 } else {
3505 return false;
3506 }
3507 }
3508
Michael Jurkac402cd92013-05-20 15:49:32 +02003509 private boolean waitUntilResume(Runnable run) {
3510 return waitUntilResume(run, false);
3511 }
3512
Michael Jurka1e2f4652013-07-08 18:03:46 -07003513 public void addOnResumeCallback(Runnable run) {
Michael Jurka54554252013-08-01 12:52:23 +02003514 mOnResumeCallbacks.add(run);
Michael Jurka1e2f4652013-07-08 18:03:46 -07003515 }
3516
Michael Jurka7607c2f2013-04-03 14:33:19 -07003517 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003518 * If the activity is currently paused, signal that we need to re-run the loader
3519 * in onResume.
3520 *
3521 * This needs to be called from incoming places where resources might have been loaded
3522 * while we are paused. That is becaues the Configuration might be wrong
3523 * when we're not running, and if it comes back to what it was when we
3524 * were paused, we are not restarted.
3525 *
3526 * Implementation of the method from LauncherModel.Callbacks.
3527 *
3528 * @return true if we are currently paused. The caller might be able to
3529 * skip some work in that case since we will come back again.
3530 */
3531 public boolean setLoadOnResume() {
3532 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003533 if (LOGD) Log.d(TAG, "setLoadOnResume");
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003534 mOnResumeNeedsLoad = true;
3535 return true;
3536 } else {
3537 return false;
3538 }
3539 }
3540
3541 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003542 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003543 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003544 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003545 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003546 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003547 } else {
Winson Chung882a52e2015-07-08 14:32:26 -07003548 return 0;
Joe Onoratod0afc872010-06-11 00:03:15 -07003549 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003550 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003551
Joe Onorato9c1289c2009-08-17 11:03:03 -04003552 /**
3553 * Refreshes the shortcuts shown on the workspace.
3554 *
3555 * Implementation of the method from LauncherModel.Callbacks.
3556 */
3557 public void startBinding() {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07003558 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08003559
Michael Jurka7607c2f2013-04-03 14:33:19 -07003560 // If we're starting binding all over again, clear any bind calls we'd postponed in
3561 // the past (see waitUntilResume) -- we don't need them since we're starting binding
3562 // from scratch again
Michael Jurka1e2f4652013-07-08 18:03:46 -07003563 mBindOnResumeCallbacks.clear();
Adam Cohendf035382011-04-11 17:22:04 -07003564
Winson Chungd64d1762013-08-20 14:37:16 -07003565 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07003566 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07003567 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07003568
Michael Jurka05bf644e2011-11-30 20:28:53 -08003569 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003570 if (mHotseat != null) {
3571 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003572 }
3573 }
3574
Adam Cohendcd297f2013-06-18 13:13:40 -07003575 @Override
3576 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Winson Chung64359a52013-07-08 17:17:08 -07003577 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07003578
Adam Cohen5084cba2013-09-03 12:01:16 -07003579 // If there are no screens, we need to have an empty screen
3580 if (orderedScreenIds.size() == 0) {
3581 mWorkspace.addExtraEmptyScreen();
3582 }
Winson Chung0e6a7132013-08-23 12:55:10 -07003583
3584 // Create the custom content page (this call updates mDefaultScreen which calls
Dave Hawkeya8881582013-09-17 15:55:33 -06003585 // setCurrentPage() so ensure that all pages are added before calling this).
Derek Prothrodadd9842014-01-17 13:43:50 -05003586 if (hasCustomContentToLeft()) {
3587 mWorkspace.createCustomContentContainer();
3588 populateCustomContentContainer();
Winson Chung0e6a7132013-08-23 12:55:10 -07003589 }
Winson Chung64359a52013-07-08 17:17:08 -07003590 }
3591
3592 @Override
3593 public void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Adam Cohendcd297f2013-06-18 13:13:40 -07003594 int count = orderedScreenIds.size();
3595 for (int i = 0; i < count; i++) {
Adam Cohen89bddfa2013-08-20 11:57:13 -07003596 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(orderedScreenIds.get(i));
Adam Cohendcd297f2013-06-18 13:13:40 -07003597 }
Adam Cohendcd297f2013-06-18 13:13:40 -07003598 }
3599
Adam Cohen39a06042013-07-19 14:30:12 -07003600 private boolean shouldShowWeightWatcher() {
3601 String spKey = LauncherAppState.getSharedPreferencesKey();
3602 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
Daniel Sandler6053b8002013-08-15 15:44:26 -07003603 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, SHOW_WEIGHT_WATCHER_DEFAULT);
Adam Cohen39a06042013-07-19 14:30:12 -07003604
3605 return show;
3606 }
3607
3608 private void toggleShowWeightWatcher() {
3609 String spKey = LauncherAppState.getSharedPreferencesKey();
3610 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
3611 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, true);
3612
3613 show = !show;
3614
3615 SharedPreferences.Editor editor = sp.edit();
3616 editor.putBoolean(SHOW_WEIGHT_WATCHER, show);
3617 editor.commit();
3618
3619 if (mWeightWatcher != null) {
3620 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
3621 }
3622 }
3623
Winson Chungd64d1762013-08-20 14:37:16 -07003624 public void bindAppsAdded(final ArrayList<Long> newScreens,
3625 final ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -07003626 final ArrayList<ItemInfo> addAnimated,
3627 final ArrayList<AppInfo> addedApps) {
Winson Chungd64d1762013-08-20 14:37:16 -07003628 Runnable r = new Runnable() {
3629 public void run() {
Winson Chungc58497e2013-09-03 17:48:37 -07003630 bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps);
Winson Chungd64d1762013-08-20 14:37:16 -07003631 }
3632 };
3633 if (waitUntilResume(r)) {
3634 return;
3635 }
3636
Winson Chungd64d1762013-08-20 14:37:16 -07003637 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08003638 if (newScreens != null) {
3639 bindAddScreens(newScreens);
3640 }
Winson Chungd64d1762013-08-20 14:37:16 -07003641
3642 // We add the items without animation on non-visible pages, and with
3643 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08003644 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003645 bindItems(addNotAnimated, 0,
3646 addNotAnimated.size(), false);
3647 }
Adam Cohen76a47a12014-02-05 11:47:43 -08003648 if (addAnimated != null && !addAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003649 bindItems(addAnimated, 0,
3650 addAnimated.size(), true);
3651 }
Winson Chungc58497e2013-09-03 17:48:37 -07003652
Winson Chung87412982013-10-03 18:34:14 -07003653 // Remove the extra empty screen
Adam Cohen689ff162014-05-08 17:27:56 -07003654 mWorkspace.removeExtraEmptyScreen(false, false);
Winson Chung87412982013-10-03 18:34:14 -07003655
Winson Chungb745afb2015-03-02 11:51:23 -08003656 if (addedApps != null && mAppsView != null) {
3657 mAppsView.addApps(addedApps);
Winson Chungc58497e2013-09-03 17:48:37 -07003658 }
Winson Chungd64d1762013-08-20 14:37:16 -07003659 }
3660
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003661 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003662 * Bind the items start-end from the list.
3663 *
3664 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003665 */
Winson Chung64359a52013-07-08 17:17:08 -07003666 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end,
3667 final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07003668 Runnable r = new Runnable() {
3669 public void run() {
3670 bindItems(shortcuts, start, end, forceAnimateIcons);
3671 }
3672 };
3673 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003674 return;
3675 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003676
Winson Chungf0c6ae02012-03-21 16:10:31 -07003677 // Get the list of added shortcuts and intersect them with the set of shortcuts here
Winson Chung64359a52013-07-08 17:17:08 -07003678 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
3679 final Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chung997a9232013-07-24 15:33:46 -07003680 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07003681 Workspace workspace = mWorkspace;
Winson Chung997a9232013-07-24 15:33:46 -07003682 long newShortcutsScreenId = -1;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003683 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003684 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003685
3686 // Short circuit if we are loading dock items for a configuration which has no dock
3687 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3688 mHotseat == null) {
3689 continue;
3690 }
3691
Sunny Goyal639e9062015-08-19 19:17:06 -07003692 final View view;
Joe Onorato9c1289c2009-08-17 11:03:03 -04003693 switch (item.itemType) {
3694 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3695 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07003696 ShortcutInfo info = (ShortcutInfo) item;
Sunny Goyal639e9062015-08-19 19:17:06 -07003697 view = createShortcut(info);
Adam Cohendcd297f2013-06-18 13:13:40 -07003698
Winson Chung64359a52013-07-08 17:17:08 -07003699 /*
3700 * TODO: FIX collision case
3701 */
Winson Chungce376632013-07-11 16:12:41 -07003702 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
3703 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
3704 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07003705 View v = cl.getChildAt(item.cellX, item.cellY);
3706 Object tag = v.getTag();
3707 String desc = "Collision while binding workspace item: " + item
3708 + ". Collides with " + tag;
Sunny Goyal6c56c682015-07-16 14:09:05 -07003709 if (ProviderConfig.IS_DOGFOOD_BUILD) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07003710 throw (new RuntimeException(desc));
3711 } else {
3712 Log.d(TAG, desc);
3713 }
Winson Chungce376632013-07-11 16:12:41 -07003714 }
Winson Chung64359a52013-07-08 17:17:08 -07003715 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003716 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003717 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Sunny Goyal639e9062015-08-19 19:17:06 -07003718 view = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003719 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003720 (FolderInfo) item, mIconCache);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003721 break;
Winson Chungc763c4e2013-07-19 13:49:06 -07003722 default:
3723 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04003724 }
Sunny Goyal639e9062015-08-19 19:17:06 -07003725
3726 workspace.addInScreenFromBind(view, item.container, item.screenId, item.cellX,
3727 item.cellY, 1, 1);
3728 if (animateIcons) {
3729 // Animate all the applications up now
3730 view.setAlpha(0f);
3731 view.setScaleX(0f);
3732 view.setScaleY(0f);
3733 bounceAnims.add(createNewAppBounceAnimation(view, i));
3734 newShortcutsScreenId = item.screenId;
3735 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003736 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003737
Winson Chung997a9232013-07-24 15:33:46 -07003738 if (animateIcons) {
3739 // Animate to the correct page
3740 if (newShortcutsScreenId > -1) {
3741 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Winson Chung94d67682013-09-25 16:29:40 -07003742 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId);
Winson Chungb2323832013-10-03 15:22:09 -07003743 final Runnable startBounceAnimRunnable = new Runnable() {
3744 public void run() {
3745 anim.playTogether(bounceAnims);
3746 anim.start();
3747 }
3748 };
Winson Chung997a9232013-07-24 15:33:46 -07003749 if (newShortcutsScreenId != currentScreenId) {
Winson Chung94d67682013-09-25 16:29:40 -07003750 // We post the animation slightly delayed to prevent slowdowns
3751 // when we are loading right after we return to launcher.
3752 mWorkspace.postDelayed(new Runnable() {
3753 public void run() {
Ian Parkinson94449152014-01-21 13:09:59 +00003754 if (mWorkspace != null) {
3755 mWorkspace.snapToPage(newScreenIndex);
3756 mWorkspace.postDelayed(startBounceAnimRunnable,
3757 NEW_APPS_ANIMATION_DELAY);
3758 }
Winson Chung94d67682013-09-25 16:29:40 -07003759 }
3760 }, NEW_APPS_PAGE_MOVE_DELAY);
Winson Chungb2323832013-10-03 15:22:09 -07003761 } else {
3762 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07003763 }
3764 }
Winson Chung64359a52013-07-08 17:17:08 -07003765 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003766 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003767 }
3768
Joe Onorato9c1289c2009-08-17 11:03:03 -04003769 /**
3770 * Implementation of the method from LauncherModel.Callbacks.
3771 */
Sunny Goyale2df0622015-04-24 11:27:00 -07003772 public void bindFolders(final LongArrayMap<FolderInfo> folders) {
Winson Chungd64d1762013-08-20 14:37:16 -07003773 Runnable r = new Runnable() {
3774 public void run() {
3775 bindFolders(folders);
3776 }
3777 };
3778 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003779 return;
3780 }
Sunny Goyale2df0622015-04-24 11:27:00 -07003781 sFolders = folders.clone();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003782 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003783
3784 /**
3785 * Add the views for a widget to the workspace.
3786 *
3787 * Implementation of the method from LauncherModel.Callbacks.
3788 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07003789 public void bindAppWidget(final LauncherAppWidgetInfo item) {
Winson Chungd64d1762013-08-20 14:37:16 -07003790 Runnable r = new Runnable() {
3791 public void run() {
3792 bindAppWidget(item);
3793 }
3794 };
3795 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003796 return;
3797 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003798
Daniel Sandler843e8602010-06-07 14:59:01 -04003799 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
3800 if (DEBUG_WIDGETS) {
3801 Log.d(TAG, "bindAppWidget: " + item);
3802 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003803 final Workspace workspace = mWorkspace;
3804
Adam Cohen59400422014-03-05 18:07:04 -08003805 LauncherAppWidgetProviderInfo appWidgetInfo =
Robin Lee26ace122015-03-16 19:41:43 +00003806 LauncherModel.getProviderInfo(this, item.providerName, item.user);
Adam Cohen59400422014-03-05 18:07:04 -08003807
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003808 if (!mIsSafeModeEnabled
3809 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY) == 0)
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003810 && (item.restoreStatus != LauncherAppWidgetInfo.RESTORE_COMPLETED)) {
3811
Sunny Goyalff572272014-07-23 13:58:07 -07003812 if (appWidgetInfo == null) {
3813 if (DEBUG_WIDGETS) {
3814 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3815 + " belongs to component " + item.providerName
3816 + ", as the povider is null");
3817 }
3818 LauncherModel.deleteItemFromDatabase(this, item);
3819 return;
3820 }
Sunny Goyalff572272014-07-23 13:58:07 -07003821
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003822 // If we do not have a valid id, try to bind an id.
3823 if ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_ID_NOT_VALID) != 0) {
3824 // Note: This assumes that the id remap broadcast is received before this step.
3825 // If that is not the case, the id remap will be ignored and user may see the
3826 // click to setup view.
3827 PendingAddWidgetInfo pendingInfo = new PendingAddWidgetInfo(this, appWidgetInfo, null);
3828 pendingInfo.spanX = item.spanX;
3829 pendingInfo.spanY = item.spanY;
3830 pendingInfo.minSpanX = item.minSpanX;
3831 pendingInfo.minSpanY = item.minSpanY;
3832 Bundle options = null;
3833 WidgetHostViewLoader.getDefaultOptionsForWidget(this, pendingInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07003834
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003835 int newWidgetId = mAppWidgetHost.allocateAppWidgetId();
3836 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
3837 newWidgetId, appWidgetInfo, options);
3838
3839 // TODO consider showing a permission dialog when the widget is clicked.
3840 if (!success) {
3841 mAppWidgetHost.deleteAppWidgetId(newWidgetId);
3842 if (DEBUG_WIDGETS) {
3843 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3844 + " belongs to component " + item.providerName
3845 + ", as the launcher is unable to bing a new widget id");
3846 }
3847 LauncherModel.deleteItemFromDatabase(this, item);
3848 return;
Sunny Goyalff572272014-07-23 13:58:07 -07003849 }
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003850
3851 item.appWidgetId = newWidgetId;
3852
3853 // If the widget has a configure activity, it is still needs to set it up, otherwise
3854 // the widget is ready to go.
3855 item.restoreStatus = (appWidgetInfo.configure == null)
3856 ? LauncherAppWidgetInfo.RESTORE_COMPLETED
3857 : LauncherAppWidgetInfo.FLAG_UI_NOT_READY;
3858
3859 LauncherModel.updateItemInDatabase(this, item);
3860 } else if (((item.restoreStatus & LauncherAppWidgetInfo.FLAG_UI_NOT_READY) != 0)
3861 && (appWidgetInfo.configure == null)) {
3862 // If the ID is already valid, verify if we need to configure or not.
3863 item.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
3864 LauncherModel.updateItemInDatabase(this, item);
Sunny Goyalff572272014-07-23 13:58:07 -07003865 }
Sunny Goyalff572272014-07-23 13:58:07 -07003866 }
3867
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003868 if (!mIsSafeModeEnabled && item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
Sunny Goyal651077b2014-06-30 14:15:31 -07003869 final int appWidgetId = item.appWidgetId;
Sunny Goyal651077b2014-06-30 14:15:31 -07003870 if (DEBUG_WIDGETS) {
Adam Cohen59400422014-03-05 18:07:04 -08003871 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component "
3872 + appWidgetInfo.provider);
Sunny Goyal651077b2014-06-30 14:15:31 -07003873 }
Daniel Sandler843e8602010-06-07 14:59:01 -04003874
Sunny Goyal651077b2014-06-30 14:15:31 -07003875 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
Sunny Goyal233ee962015-08-03 13:05:01 -07003876 item.minSpanX = appWidgetInfo.minSpanX;
3877 item.minSpanY = appWidgetInfo.minSpanY;
Sunny Goyal651077b2014-06-30 14:15:31 -07003878 } else {
3879 appWidgetInfo = null;
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003880 PendingAppWidgetHostView view = new PendingAppWidgetHostView(this, item,
3881 mIsSafeModeEnabled);
Sunny Goyal0fc1be12014-08-11 17:05:23 -07003882 view.updateIcon(mIconCache);
3883 item.hostView = view;
Sunny Goyal651077b2014-06-30 14:15:31 -07003884 item.hostView.updateAppWidget(null);
Sunny Goyalff572272014-07-23 13:58:07 -07003885 item.hostView.setOnClickListener(this);
Sunny Goyal651077b2014-06-30 14:15:31 -07003886 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003887
Joe Onorato9c1289c2009-08-17 11:03:03 -04003888 item.hostView.setTag(item);
Winson Chung211bac32012-05-15 13:43:57 -07003889 item.onBindAppWidget(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003890
Adam Cohendcd297f2013-06-18 13:13:40 -07003891 workspace.addInScreen(item.hostView, item.container, item.screenId, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04003892 item.cellY, item.spanX, item.spanY, false);
Adam Cohen59400422014-03-05 18:07:04 -08003893 if (!item.isCustomWidget()) {
3894 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
3895 }
Adam Cohended9f8d2010-11-03 13:25:16 -07003896
Joe Onorato9c1289c2009-08-17 11:03:03 -04003897 workspace.requestLayout();
3898
Daniel Sandler843e8602010-06-07 14:59:01 -04003899 if (DEBUG_WIDGETS) {
3900 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
3901 + (SystemClock.uptimeMillis()-start) + "ms");
3902 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003903 }
3904
Sunny Goyalff572272014-07-23 13:58:07 -07003905 /**
3906 * Restores a pending widget.
3907 *
3908 * @param appWidgetId The app widget id
3909 * @param cellInfo The position on screen where to create the widget.
3910 */
3911 private void completeRestoreAppWidget(final int appWidgetId) {
3912 LauncherAppWidgetHostView view = mWorkspace.getWidgetForAppWidgetId(appWidgetId);
3913 if ((view == null) || !(view instanceof PendingAppWidgetHostView)) {
3914 Log.e(TAG, "Widget update called, when the widget no longer exists.");
3915 return;
3916 }
3917
Sunny Goyal0fc1be12014-08-11 17:05:23 -07003918 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) view.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07003919 info.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
3920
3921 mWorkspace.reinflateWidgetsIfNecessary();
3922 LauncherModel.updateItemInDatabase(this, info);
3923 }
3924
Adam Cohen1462de32012-07-24 22:34:36 -07003925 public void onPageBoundSynchronously(int page) {
3926 mSynchronouslyBoundPages.add(page);
3927 }
3928
Joe Onorato9c1289c2009-08-17 11:03:03 -04003929 /**
3930 * Callback saying that there aren't any more items to bind.
3931 *
3932 * Implementation of the method from LauncherModel.Callbacks.
3933 */
Sunny Goyal66cfdc22015-02-02 13:01:51 -08003934 public void finishBindingItems() {
Winson Chungd64d1762013-08-20 14:37:16 -07003935 Runnable r = new Runnable() {
3936 public void run() {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08003937 finishBindingItems();
Winson Chungd64d1762013-08-20 14:37:16 -07003938 }
3939 };
3940 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003941 return;
3942 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003943 if (mSavedState != null) {
3944 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07003945 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003946 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003947 mSavedState = null;
3948 }
3949
Adam Cohen1462de32012-07-24 22:34:36 -07003950 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003951
Anjali Koppalff7ceff2014-05-01 18:26:37 -07003952 setWorkspaceLoading(false);
Adam Cohen3ed316a2014-07-23 18:21:20 -07003953 sendLoadingCompleteBroadcastIfNecessary();
Adam Cohendb364c32014-05-20 14:23:40 -07003954
3955 // If we received the result of any pending adds while the loader was running (e.g. the
3956 // widget configuration forced an orientation change), process them now.
3957 if (sPendingAddItem != null) {
3958 final long screenId = completeAdd(sPendingAddItem);
3959
3960 // TODO: this moves the user to the page where the pending item was added. Ideally,
3961 // the screen would be guaranteed to exist after bind, and the page would be set through
3962 // the workspace restore process.
3963 mWorkspace.post(new Runnable() {
3964 @Override
3965 public void run() {
3966 mWorkspace.snapToScreenId(screenId);
3967 }
3968 });
3969 sPendingAddItem = null;
3970 }
3971
Sunny Goyal756adbc2015-04-16 15:20:51 -07003972 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
Adam Cohen9211d422014-10-07 18:14:53 -07003973
3974 if (mLauncherCallbacks != null) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08003975 mLauncherCallbacks.finishBindingItems(false);
Adam Cohen9211d422014-10-07 18:14:53 -07003976 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003977 }
3978
Adam Cohen3ed316a2014-07-23 18:21:20 -07003979 private void sendLoadingCompleteBroadcastIfNecessary() {
3980 if (!mSharedPrefs.getBoolean(FIRST_LOAD_COMPLETE, false)) {
3981 String permission =
3982 getResources().getString(R.string.receive_first_load_broadcast_permission);
3983 Intent intent = new Intent(ACTION_FIRST_LOAD_COMPLETE);
3984 sendBroadcast(intent, permission);
3985 SharedPreferences.Editor editor = mSharedPrefs.edit();
3986 editor.putBoolean(FIRST_LOAD_COMPLETE, true);
3987 editor.apply();
3988 }
3989 }
3990
Winson Chunga0b7e862013-09-05 16:03:15 -07003991 public boolean isAllAppsButtonRank(int rank) {
3992 if (mHotseat != null) {
3993 return mHotseat.isAllAppsButtonRank(rank);
3994 }
3995 return false;
3996 }
3997
Winson Chunga2413752012-04-03 14:22:34 -07003998 private boolean canRunNewAppsAnimation() {
3999 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
Sunny Goyal639e9062015-08-19 19:17:06 -07004000 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000)
4001 && (mClings == null || !mClings.isVisible());
Winson Chunga2413752012-04-03 14:22:34 -07004002 }
4003
Winson Chungc9168342013-06-26 14:54:55 -07004004 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
Sunny Goyal5d2fc322015-07-06 22:52:49 -07004005 ValueAnimator bounceAnim = LauncherAnimUtils.ofViewAlphaAndScale(v, 1, 1, 1);
Winson Chungc9168342013-06-26 14:54:55 -07004006 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
4007 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
Sunny Goyal5a1f53b2015-05-27 10:24:24 -07004008 bounceAnim.setInterpolator(new OvershootInterpolator(BOUNCE_ANIMATION_TENSION));
Winson Chungc9168342013-06-26 14:54:55 -07004009 return bounceAnim;
4010 }
4011
Adam Cohen27772732013-11-11 14:00:56 +00004012 public boolean useVerticalBarLayout() {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07004013 return mDeviceProfile.isVerticalBarLayout();
Adam Cohen27772732013-11-11 14:00:56 +00004014 }
4015
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004016 protected Rect getSearchBarBounds() {
Sunny Goyalc6205602015-05-21 20:46:33 -07004017 return mDeviceProfile.getSearchBarBounds(Utilities.isRtl(getResources()));
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004018 }
4019
Winson Chung88fa7412015-08-03 14:25:28 -07004020 public void bindSearchProviderChanged() {
Sunny Goyal594d76d2014-11-06 10:12:54 -08004021 if (mSearchDropTargetBar == null) {
4022 return;
Winson Chungadf0c182012-08-23 14:59:07 -07004023 }
Sunny Goyal594d76d2014-11-06 10:12:54 -08004024 if (mQsb != null) {
4025 mSearchDropTargetBar.removeView(mQsb);
4026 mQsb = null;
4027 }
Adam Cohenb0df1b02015-03-18 22:21:40 -07004028 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004029 }
4030
Amith Yamasani6d7fe502010-11-16 09:05:07 -08004031 /**
Winson Chungbb785c62015-05-05 10:05:08 -07004032 * A runnable that we can dequeue and re-enqueue when all applications are bound (to prevent
4033 * multiple calls to bind the same list.)
4034 */
4035 @Thunk ArrayList<AppInfo> mTmpAppsList;
4036 private Runnable mBindAllApplicationsRunnable = new Runnable() {
4037 public void run() {
4038 bindAllApplications(mTmpAppsList);
4039 mTmpAppsList = null;
4040 }
4041 };
4042
4043 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004044 * Add the icons for all apps.
4045 *
4046 * Implementation of the method from LauncherModel.Callbacks.
4047 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004048 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Winson Chungbb785c62015-05-05 10:05:08 -07004049 if (waitUntilResume(mBindAllApplicationsRunnable, true)) {
4050 mTmpAppsList = apps;
4051 return;
4052 }
4053
Winson Chungb745afb2015-03-02 11:51:23 -08004054 if (mAppsView != null) {
4055 mAppsView.setApps(apps);
4056 }
Adam Cohen9211d422014-10-07 18:14:53 -07004057 if (mLauncherCallbacks != null) {
4058 mLauncherCallbacks.bindAllApplications(apps);
4059 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004060 }
4061
4062 /**
4063 * A package was updated.
4064 *
4065 * Implementation of the method from LauncherModel.Callbacks.
4066 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004067 public void bindAppsUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004068 Runnable r = new Runnable() {
4069 public void run() {
4070 bindAppsUpdated(apps);
4071 }
4072 };
4073 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004074 return;
4075 }
4076
Winson Chungb745afb2015-03-02 11:51:23 -08004077 if (mAppsView != null) {
4078 mAppsView.updateApps(apps);
Winson Chungc58497e2013-09-03 17:48:37 -07004079 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004080 }
4081
Sunny Goyal4390ace2014-10-13 11:33:11 -07004082 @Override
4083 public void bindWidgetsRestored(final ArrayList<LauncherAppWidgetInfo> widgets) {
4084 Runnable r = new Runnable() {
4085 public void run() {
4086 bindWidgetsRestored(widgets);
4087 }
4088 };
4089 if (waitUntilResume(r)) {
4090 return;
4091 }
4092 mWorkspace.widgetsRestored(widgets);
4093 }
4094
Joe Onorato9c1289c2009-08-17 11:03:03 -04004095 /**
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004096 * Some shortcuts were updated in the background.
4097 *
4098 * Implementation of the method from LauncherModel.Callbacks.
4099 */
Sunny Goyal4390ace2014-10-13 11:33:11 -07004100 @Override
4101 public void bindShortcutsChanged(final ArrayList<ShortcutInfo> updated,
4102 final ArrayList<ShortcutInfo> removed, final UserHandleCompat user) {
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004103 Runnable r = new Runnable() {
4104 public void run() {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004105 bindShortcutsChanged(updated, removed, user);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004106 }
4107 };
4108 if (waitUntilResume(r)) {
4109 return;
4110 }
4111
Sunny Goyal4390ace2014-10-13 11:33:11 -07004112 if (!updated.isEmpty()) {
4113 mWorkspace.updateShortcuts(updated);
4114 }
4115
4116 if (!removed.isEmpty()) {
4117 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4118 for (ShortcutInfo si : removed) {
4119 removedComponents.add(si.getTargetComponent());
4120 }
4121 mWorkspace.removeItemsByComponentName(removedComponents, user);
4122 // Notify the drag controller
4123 mDragController.onAppsRemoved(new ArrayList<String>(), removedComponents);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004124 }
4125 }
4126
4127 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004128 * Update the state of a package, typically related to install state.
4129 *
4130 * Implementation of the method from LauncherModel.Callbacks.
4131 */
Sunny Goyale755d462014-07-22 13:48:29 -07004132 @Override
Sunny Goyal756adbc2015-04-16 15:20:51 -07004133 public void bindRestoreItemsChange(final HashSet<ItemInfo> updates) {
4134 Runnable r = new Runnable() {
4135 public void run() {
4136 bindRestoreItemsChange(updates);
4137 }
4138 };
4139 if (waitUntilResume(r)) {
4140 return;
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004141 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004142
Sunny Goyal756adbc2015-04-16 15:20:51 -07004143 mWorkspace.updateRestoreItems(updates);
Sunny Goyala22666f2014-09-18 13:25:15 -07004144 }
4145
4146 /**
Winson Chung83892cc2013-05-01 16:53:33 -07004147 * A package was uninstalled. We take both the super set of packageNames
4148 * in addition to specific applications to remove, the reason being that
4149 * this can be called when a package is updated as well. In that scenario,
4150 * we only remove specific components from the workspace, where as
4151 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004152 *
Sunny Goyal1a745e82014-10-02 15:58:31 -07004153 * @param reason if non-zero, the icons are not permanently removed, rather marked as disabled.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004154 * Implementation of the method from LauncherModel.Callbacks.
4155 */
Sunny Goyal1a745e82014-10-02 15:58:31 -07004156 @Override
Winson Chung83892cc2013-05-01 16:53:33 -07004157 public void bindComponentsRemoved(final ArrayList<String> packageNames,
Sunny Goyal1a745e82014-10-02 15:58:31 -07004158 final ArrayList<AppInfo> appInfos, final UserHandleCompat user, final int reason) {
Winson Chungd64d1762013-08-20 14:37:16 -07004159 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004160 public void run() {
Sunny Goyal1a745e82014-10-02 15:58:31 -07004161 bindComponentsRemoved(packageNames, appInfos, user, reason);
Winson Chung83892cc2013-05-01 16:53:33 -07004162 }
Winson Chungd64d1762013-08-20 14:37:16 -07004163 };
4164 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07004165 return;
4166 }
4167
Sunny Goyal1a745e82014-10-02 15:58:31 -07004168 if (reason == 0) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004169 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4170 for (AppInfo info : appInfos) {
4171 removedComponents.add(info.componentName);
4172 }
Sunny Goyal1a745e82014-10-02 15:58:31 -07004173 if (!packageNames.isEmpty()) {
4174 mWorkspace.removeItemsByPackageName(packageNames, user);
4175 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004176 if (!removedComponents.isEmpty()) {
4177 mWorkspace.removeItemsByComponentName(removedComponents, user);
Sunny Goyal1a745e82014-10-02 15:58:31 -07004178 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004179 // Notify the drag controller
4180 mDragController.onAppsRemoved(packageNames, removedComponents);
4181
Sunny Goyal1a745e82014-10-02 15:58:31 -07004182 } else {
4183 mWorkspace.disableShortcutsByPackageName(packageNames, user, reason);
Joe Onorato36115782010-06-17 13:28:48 -04004184 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07004185
Winson Chungdf95eb12013-10-16 14:57:07 -07004186 // Update AllApps
Winson Chungb745afb2015-03-02 11:51:23 -08004187 if (mAppsView != null) {
4188 mAppsView.removeApps(appInfos);
Winson Chungc58497e2013-09-03 17:48:37 -07004189 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004190 }
Joe Onoratobe386092009-11-17 17:32:16 -08004191
Michael Jurkac402cd92013-05-20 15:49:32 +02004192 private Runnable mBindPackagesUpdatedRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004193 public void run() {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004194 bindAllPackages(mWidgetsModel);
Winson Chung83892cc2013-05-01 16:53:33 -07004195 }
Michael Jurkac402cd92013-05-20 15:49:32 +02004196 };
Hyunyoung Song3f471442015-04-08 19:01:34 -07004197
Hyunyoung Song8821ca92015-05-04 16:28:20 -07004198 @Override
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004199 public void bindAllPackages(final WidgetsModel model) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004200 if (waitUntilResume(mBindPackagesUpdatedRunnable, true)) {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004201 mWidgetsModel = model;
Winson Chung83892cc2013-05-01 16:53:33 -07004202 return;
4203 }
4204
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004205 if (mWidgetsView != null && model != null) {
4206 mWidgetsView.addWidgets(model);
4207 mWidgetsModel = null;
Winson Chung785d2eb2011-04-14 16:08:02 -07004208 }
Winson Chung80baf5a2010-08-09 16:03:15 -07004209 }
4210
Winson Chung400438b2011-01-16 17:53:48 -08004211 private int mapConfigurationOriActivityInfoOri(int configOri) {
4212 final Display d = getWindowManager().getDefaultDisplay();
4213 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
4214 switch (d.getRotation()) {
4215 case Surface.ROTATION_0:
4216 case Surface.ROTATION_180:
4217 // We are currently in the same basic orientation as the natural orientation
4218 naturalOri = configOri;
4219 break;
4220 case Surface.ROTATION_90:
4221 case Surface.ROTATION_270:
4222 // We are currently in the other basic orientation to the natural orientation
4223 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
4224 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
4225 break;
4226 }
4227
4228 int[] oriMap = {
4229 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
4230 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
4231 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
4232 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
4233 };
4234 // Since the map starts at portrait, we need to offset if this device's natural orientation
4235 // is landscape.
4236 int indexOffset = 0;
4237 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
4238 indexOffset = 1;
4239 }
4240 return oriMap[(d.getRotation() + indexOffset) % 4];
4241 }
Adam Cohen446e9402011-09-15 18:21:21 -07004242
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004243 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR2)
Winson Chung4b919f82012-05-01 10:44:08 -07004244 public void lockScreenOrientation() {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004245 if (mRotationEnabled) {
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004246 if (Utilities.ATLEAST_JB_MR2) {
4247 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LOCKED);
4248 } else {
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004249 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
4250 .getConfiguration().orientation));
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004251 }
Winson Chung4b919f82012-05-01 10:44:08 -07004252 }
4253 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004254
Winson Chung4b919f82012-05-01 10:44:08 -07004255 public void unlockScreenOrientation(boolean immediate) {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004256 if (mRotationEnabled) {
Winson Chung4b919f82012-05-01 10:44:08 -07004257 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07004258 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07004259 } else {
4260 mHandler.postDelayed(new Runnable() {
4261 public void run() {
4262 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4263 }
Sunny Goyal756cd262015-08-20 12:33:21 -07004264 }, RESTORE_SCREEN_ORIENTATION_DELAY);
Winson Chung641d71d2012-04-26 15:58:01 -07004265 }
Winson Chung4b919f82012-05-01 10:44:08 -07004266 }
Winson Chung400438b2011-01-16 17:53:48 -08004267 }
4268
Winson Chunge43a1e72014-01-15 10:33:02 -08004269 protected boolean isLauncherPreinstalled() {
Adam Cohen9211d422014-10-07 18:14:53 -07004270 if (mLauncherCallbacks != null) {
4271 return mLauncherCallbacks.isLauncherPreinstalled();
4272 }
Winson Chunge43a1e72014-01-15 10:33:02 -08004273 PackageManager pm = getPackageManager();
4274 try {
4275 ApplicationInfo ai = pm.getApplicationInfo(getComponentName().getPackageName(), 0);
4276 if ((ai.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
4277 return true;
4278 } else {
4279 return false;
4280 }
4281 } catch (NameNotFoundException e) {
4282 e.printStackTrace();
4283 return false;
4284 }
4285 }
4286
Adam Cohenea90f832014-05-21 15:03:34 -07004287 /**
4288 * This method indicates whether or not we should suggest default wallpaper dimensions
4289 * when our wallpaper cropper was not yet used to set a wallpaper.
4290 */
4291 protected boolean overrideWallpaperDimensions() {
Adam Cohen9211d422014-10-07 18:14:53 -07004292 if (mLauncherCallbacks != null) {
4293 return mLauncherCallbacks.overrideWallpaperDimensions();
4294 }
Adam Cohenea90f832014-05-21 15:03:34 -07004295 return true;
4296 }
4297
Adam Cohen432609a2014-03-13 17:03:22 -07004298 /**
4299 * To be overridden by subclasses to indicate that there is an activity to launch
4300 * before showing the standard launcher experience.
4301 */
4302 protected boolean hasFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004303 if (mLauncherCallbacks != null) {
4304 return mLauncherCallbacks.hasFirstRunActivity();
4305 }
Adam Cohen432609a2014-03-13 17:03:22 -07004306 return false;
4307 }
4308
4309 /**
4310 * To be overridden by subclasses to launch any first run activity
4311 */
4312 protected Intent getFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004313 if (mLauncherCallbacks != null) {
4314 return mLauncherCallbacks.getFirstRunActivity();
4315 }
Adam Cohen432609a2014-03-13 17:03:22 -07004316 return null;
4317 }
4318
Winson Chunga6945242014-01-08 14:04:34 -08004319 private boolean shouldRunFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004320 return !ActivityManager.isRunningInTestHarness() &&
4321 !mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
Winson Chunga6945242014-01-08 14:04:34 -08004322 }
4323
Adam Cohen4a9423d2014-03-28 14:22:31 -07004324 protected boolean hasRunFirstRunActivity() {
4325 return mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
4326 }
4327
Adam Cohen432609a2014-03-13 17:03:22 -07004328 public boolean showFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004329 if (shouldRunFirstRunActivity() &&
4330 hasFirstRunActivity()) {
Winson Chunga6945242014-01-08 14:04:34 -08004331 Intent firstRunIntent = getFirstRunActivity();
4332 if (firstRunIntent != null) {
4333 startActivity(firstRunIntent);
4334 markFirstRunActivityShown();
Adam Cohen432609a2014-03-13 17:03:22 -07004335 return true;
Winson Chunga6945242014-01-08 14:04:34 -08004336 }
4337 }
Adam Cohen432609a2014-03-13 17:03:22 -07004338 return false;
Winson Chunga6945242014-01-08 14:04:34 -08004339 }
4340
4341 private void markFirstRunActivityShown() {
4342 SharedPreferences.Editor editor = mSharedPrefs.edit();
4343 editor.putBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, true);
4344 editor.apply();
4345 }
4346
Adam Cohen432609a2014-03-13 17:03:22 -07004347 /**
4348 * To be overridden by subclasses to indicate that there is an in-activity full-screen intro
4349 * screen that must be displayed and dismissed.
4350 */
4351 protected boolean hasDismissableIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004352 if (mLauncherCallbacks != null) {
4353 return mLauncherCallbacks.hasDismissableIntroScreen();
4354 }
Adam Cohen432609a2014-03-13 17:03:22 -07004355 return false;
4356 }
4357
4358 /**
4359 * Full screen intro screen to be shown and dismissed before the launcher can be used.
4360 */
4361 protected View getIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004362 if (mLauncherCallbacks != null) {
4363 return mLauncherCallbacks.getIntroScreen();
4364 }
Adam Cohen432609a2014-03-13 17:03:22 -07004365 return null;
4366 }
4367
4368 /**
4369 * To be overriden by subclasses to indicate whether the in-activity intro screen has been
4370 * dismissed. This method is ignored if #hasDismissableIntroScreen returns false.
4371 */
4372 private boolean shouldShowIntroScreen() {
4373 return hasDismissableIntroScreen() &&
4374 !mSharedPrefs.getBoolean(INTRO_SCREEN_DISMISSED, false);
4375 }
4376
4377 protected void showIntroScreen() {
4378 View introScreen = getIntroScreen();
4379 changeWallpaperVisiblity(false);
4380 if (introScreen != null) {
4381 mDragLayer.showOverlayView(introScreen);
4382 }
Adam Cohenc3e12c72014-10-31 16:15:36 -07004383 if (mLauncherOverlayContainer != null) {
4384 mLauncherOverlayContainer.setVisibility(View.INVISIBLE);
4385 }
Adam Cohen432609a2014-03-13 17:03:22 -07004386 }
4387
4388 public void dismissIntroScreen() {
4389 markIntroScreenDismissed();
4390 if (showFirstRunActivity()) {
4391 // We delay hiding the intro view until the first run activity is showing. This
4392 // avoids a blip.
4393 mWorkspace.postDelayed(new Runnable() {
4394 @Override
4395 public void run() {
4396 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004397 if (mLauncherOverlayContainer != null) {
4398 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4399 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004400 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004401 }
4402 }, ACTIVITY_START_DELAY);
4403 } else {
4404 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004405 if (mLauncherOverlayContainer != null) {
4406 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4407 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004408 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004409 }
4410 changeWallpaperVisiblity(true);
4411 }
4412
4413 private void markIntroScreenDismissed() {
4414 SharedPreferences.Editor editor = mSharedPrefs.edit();
4415 editor.putBoolean(INTRO_SCREEN_DISMISSED, true);
4416 editor.apply();
4417 }
4418
Adam Cohen091440a2015-03-18 14:16:05 -07004419 @Thunk void showFirstRunClings() {
Sunny Goyal88d60f12014-09-08 03:47:29 -07004420 // The two first run cling paths are mutually exclusive, if the launcher is preinstalled
4421 // on the device, then we always show the first run cling experience (or if there is no
4422 // launcher2). Otherwise, we prompt the user upon started for migration
4423 LauncherClings launcherClings = new LauncherClings(this);
4424 if (launcherClings.shouldShowFirstRunOrMigrationClings()) {
Sunny Goyal639e9062015-08-19 19:17:06 -07004425 mClings = launcherClings;
Sunny Goyal88d60f12014-09-08 03:47:29 -07004426 if (mModel.canMigrateFromOldLauncherDb(this)) {
4427 launcherClings.showMigrationCling();
4428 } else {
Sunny Goyalaf0628f2014-09-19 10:14:48 -07004429 launcherClings.showLongPressCling(true);
Sunny Goyal88d60f12014-09-08 03:47:29 -07004430 }
4431 }
4432 }
4433
Winson Chunga6945242014-01-08 14:04:34 -08004434 void showWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004435 if (mWorkspace != null) mWorkspace.setAlpha(1f);
4436 if (mHotseat != null) mHotseat.setAlpha(1f);
4437 if (mPageIndicators != null) mPageIndicators.setAlpha(1f);
Winson Chung006ee262015-08-03 14:40:11 -07004438 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4439 SearchDropTargetBar.State.SEARCH_BAR, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004440 }
4441
4442 void hideWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004443 if (mWorkspace != null) mWorkspace.setAlpha(0f);
4444 if (mHotseat != null) mHotseat.setAlpha(0f);
4445 if (mPageIndicators != null) mPageIndicators.setAlpha(0f);
Winson Chung006ee262015-08-03 14:40:11 -07004446 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4447 SearchDropTargetBar.State.INVISIBLE, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004448 }
4449
Winson Chung5ffd51d2015-06-25 11:36:50 -07004450 // TODO: These method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004451 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Mathew Inwood72fbec12013-11-19 15:45:07 +00004452 public ItemInfo createAppDragInfo(Intent appLaunchIntent) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004453 // Called from search suggestion
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004454 UserHandleCompat user = null;
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004455 if (Utilities.ATLEAST_LOLLIPOP) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004456 UserHandle userHandle = appLaunchIntent.getParcelableExtra(Intent.EXTRA_USER);
4457 if (userHandle != null) {
4458 user = UserHandleCompat.fromUser(userHandle);
4459 }
4460 }
4461 return createAppDragInfo(appLaunchIntent, user);
Winson Chung5ffd51d2015-06-25 11:36:50 -07004462 }
4463
4464 // TODO: This method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004465 public ItemInfo createAppDragInfo(Intent intent, UserHandleCompat user) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004466 if (user == null) {
4467 user = UserHandleCompat.myUserHandle();
4468 }
4469
4470 // Called from search suggestion, add the profile extra to the intent to ensure that we
4471 // can launch it correctly
Kenny Guyed131872014-04-30 03:02:21 +01004472 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004473 LauncherActivityInfoCompat activityInfo = launcherApps.resolveActivity(intent, user);
Kenny Guyed131872014-04-30 03:02:21 +01004474 if (activityInfo == null) {
Mathew Inwood72fbec12013-11-19 15:45:07 +00004475 return null;
4476 }
Winson Chung5ffd51d2015-06-25 11:36:50 -07004477 return new AppInfo(this, activityInfo, user, mIconCache);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004478 }
4479
Winson Chung5ffd51d2015-06-25 11:36:50 -07004480 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004481 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4482 Bitmap icon) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004483 return new ShortcutInfo(shortcutIntent, caption, caption, icon,
Kenny Guyed131872014-04-30 03:02:21 +01004484 UserHandleCompat.myUserHandle());
4485 }
4486
Winson Chung5ffd51d2015-06-25 11:36:50 -07004487 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004488 public void startDrag(View dragView, ItemInfo dragInfo, DragSource source) {
4489 dragView.setTag(dragInfo);
Winson Chungbabb53e2014-04-14 17:12:49 -07004490 mWorkspace.onExternalDragStartedWithItem(dragView);
4491 mWorkspace.beginExternalDragShared(dragView, source);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004492 }
4493
Winson Chung5ffd51d2015-06-25 11:36:50 -07004494 protected void moveWorkspaceToDefaultScreen() {
4495 mWorkspace.moveToDefaultScreen(false);
4496 }
4497
Anjali Koppalf5d29132014-02-28 13:33:27 -08004498 @Override
4499 public void onPageSwitch(View newPage, int newPageIndex) {
Adam Cohen9211d422014-10-07 18:14:53 -07004500 if (mLauncherCallbacks != null) {
4501 mLauncherCallbacks.onPageSwitch(newPage, newPageIndex);
4502 }
Anjali Koppalf5d29132014-02-28 13:33:27 -08004503 }
4504
Winson Chung80baf5a2010-08-09 16:03:15 -07004505 /**
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004506 * Returns a FastBitmapDrawable with the icon, accurately sized.
4507 */
4508 public FastBitmapDrawable createIconDrawable(Bitmap icon) {
4509 FastBitmapDrawable d = new FastBitmapDrawable(icon);
4510 d.setFilterBitmap(true);
4511 resizeIconDrawable(d);
4512 return d;
4513 }
4514
4515 /**
4516 * Resizes an icon drawable to the correct icon size.
4517 */
4518 public void resizeIconDrawable(Drawable icon) {
4519 icon.setBounds(0, 0, mDeviceProfile.iconSizePx, mDeviceProfile.iconSizePx);
4520 }
4521
4522 /**
Joe Onoratobe386092009-11-17 17:32:16 -08004523 * Prints out out state for debugging.
4524 */
4525 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04004526 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08004527 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08004528 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
4529 Log.d(TAG, "mRestoring=" + mRestoring);
4530 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004531 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08004532 mModel.dumpState();
Hyunyoung Song3f471442015-04-08 19:01:34 -07004533 // TODO(hyunyoungs): add mWidgetsView.dumpState(); or mWidgetsModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07004534
Daniel Sandler325dc232013-06-05 22:57:57 -04004535 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08004536 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004537
4538 @Override
4539 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
4540 super.dump(prefix, fd, writer, args);
Adam Cohen4caf2982013-08-20 18:54:31 -07004541 synchronized (sDumpLogs) {
4542 writer.println(" ");
4543 writer.println("Debug logs: ");
4544 for (int i = 0; i < sDumpLogs.size(); i++) {
4545 writer.println(" " + sDumpLogs.get(i));
4546 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004547 }
Adam Cohen9211d422014-10-07 18:14:53 -07004548 if (mLauncherCallbacks != null) {
4549 mLauncherCallbacks.dump(prefix, fd, writer, args);
4550 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004551 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004552
4553 public static void dumpDebugLogsToConsole() {
Winson Chungede41292013-09-19 16:27:36 -07004554 if (DEBUG_DUMP_LOG) {
4555 synchronized (sDumpLogs) {
4556 Log.d(TAG, "");
4557 Log.d(TAG, "*********************");
4558 Log.d(TAG, "Launcher debug logs: ");
4559 for (int i = 0; i < sDumpLogs.size(); i++) {
4560 Log.d(TAG, " " + sDumpLogs.get(i));
4561 }
4562 Log.d(TAG, "*********************");
4563 Log.d(TAG, "");
Adam Cohen4caf2982013-08-20 18:54:31 -07004564 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004565 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004566 }
4567
4568 public static void addDumpLog(String tag, String log, boolean debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004569 addDumpLog(tag, log, null, debugLog);
4570 }
4571
4572 public static void addDumpLog(String tag, String log, Exception e, boolean debugLog) {
Adam Cohen4caf2982013-08-20 18:54:31 -07004573 if (debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004574 if (e != null) {
4575 Log.d(tag, log, e);
4576 } else {
4577 Log.d(tag, log);
4578 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004579 }
Winson Chungede41292013-09-19 16:27:36 -07004580 if (DEBUG_DUMP_LOG) {
4581 sDateStamp.setTime(System.currentTimeMillis());
4582 synchronized (sDumpLogs) {
Dan Sandler295ae182013-12-10 16:05:47 -05004583 sDumpLogs.add(sDateFormat.format(sDateStamp) + ": " + tag + ", " + log
4584 + (e == null ? "" : (", Exception: " + e)));
Adam Cohen4caf2982013-08-20 18:54:31 -07004585 }
Winson Chungede41292013-09-19 16:27:36 -07004586 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004587 }
4588
Adam Cohen59400422014-03-05 18:07:04 -08004589 public static CustomAppWidget getCustomAppWidget(String name) {
4590 return sCustomAppWidgets.get(name);
4591 }
4592
4593 public static HashMap<String, CustomAppWidget> getCustomAppWidgets() {
4594 return sCustomAppWidgets;
4595 }
4596
Winson Chungede41292013-09-19 16:27:36 -07004597 public void dumpLogsToLocalData() {
4598 if (DEBUG_DUMP_LOG) {
Michael Jurka43467462013-11-14 12:03:58 +01004599 new AsyncTask<Void, Void, Void>() {
4600 public Void doInBackground(Void ... args) {
Winson Chungede41292013-09-19 16:27:36 -07004601 boolean success = false;
4602 sDateStamp.setTime(sRunStart);
4603 String FILENAME = sDateStamp.getMonth() + "-"
4604 + sDateStamp.getDay() + "_"
4605 + sDateStamp.getHours() + "-"
4606 + sDateStamp.getMinutes() + "_"
4607 + sDateStamp.getSeconds() + ".txt";
4608
4609 FileOutputStream fos = null;
4610 File outFile = null;
4611 try {
4612 outFile = new File(getFilesDir(), FILENAME);
4613 outFile.createNewFile();
4614 fos = new FileOutputStream(outFile);
4615 } catch (Exception e) {
4616 e.printStackTrace();
4617 }
4618 if (fos != null) {
4619 PrintWriter writer = new PrintWriter(fos);
4620
4621 writer.println(" ");
4622 writer.println("Debug logs: ");
4623 synchronized (sDumpLogs) {
4624 for (int i = 0; i < sDumpLogs.size(); i++) {
4625 writer.println(" " + sDumpLogs.get(i));
4626 }
4627 }
4628 writer.close();
4629 }
4630 try {
4631 if (fos != null) {
4632 fos.close();
4633 success = true;
4634 }
4635 } catch (IOException e) {
4636 e.printStackTrace();
4637 }
Michael Jurka43467462013-11-14 12:03:58 +01004638 return null;
Winson Chungede41292013-09-19 16:27:36 -07004639 }
Michael Jurka43467462013-11-14 12:03:58 +01004640 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
Adam Cohen4caf2982013-08-20 18:54:31 -07004641 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004642 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004643}
Michael Jurka2763be32011-02-24 11:19:57 -08004644
Dan Sandlerd5024042014-01-09 15:01:33 -05004645interface DebugIntents {
4646 static final String DELETE_DATABASE = "com.android.launcher3.action.DELETE_DATABASE";
4647 static final String MIGRATE_DATABASE = "com.android.launcher3.action.MIGRATE_DATABASE";
Adam Cohen8b5b05b2014-01-10 21:42:39 +00004648}