blob: 7722f6e06f909806d88f827fa286ee2d2faf41aa [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. */
Tony Wickham94e0d372015-09-11 12:17:48 -0700202 enum State { NONE, WORKSPACE, WORKSPACE_SPRING_LOADED, APPS, APPS_SPRING_LOADED,
203 WIDGETS, WIDGETS_SPRING_LOADED }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700204
Adam Cohen091440a2015-03-18 14:16:05 -0700205 @Thunk State mState = State.WORKSPACE;
Adam Cohen091440a2015-03-18 14:16:05 -0700206 @Thunk LauncherStateTransitionAnimation mStateTransitionAnimation;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700207
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700208 private boolean mIsSafeModeEnabled;
209
Adam Cohenc2d6e892014-10-16 09:49:24 -0700210 LauncherOverlayCallbacks mLauncherOverlayCallbacks = new LauncherOverlayCallbacksImpl();
211 LauncherOverlay mLauncherOverlay;
Adam Cohena6d04922014-10-23 17:28:30 -0700212 InsettableFrameLayout mLauncherOverlayContainer;
Adam Cohenc2d6e892014-10-16 09:49:24 -0700213
Joe Onorato9c1289c2009-08-17 11:03:03 -0400214 static final int APPWIDGET_HOST_ID = 1024;
Adam Cohenad4e15c2013-10-17 16:21:35 -0700215 public static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
216 private static final int ON_ACTIVITY_RESULT_ANIMATION_DELAY = 500;
Adam Cohen646fdf72014-04-08 16:59:36 -0700217 private static final int ACTIVITY_START_DELAY = 1000;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800218
Winson Chunga2413752012-04-03 14:22:34 -0700219 // How long to wait before the new-shortcut animation automatically pans the workspace
Winson Chung94d67682013-09-25 16:29:40 -0700220 private static int NEW_APPS_PAGE_MOVE_DELAY = 500;
221 private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 5;
Adam Cohen091440a2015-03-18 14:16:05 -0700222 @Thunk static int NEW_APPS_ANIMATION_DELAY = 500;
Winson Chunga2413752012-04-03 14:22:34 -0700223
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800224 private final BroadcastReceiver mCloseSystemDialogsReceiver
225 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800226
Adam Cohen091440a2015-03-18 14:16:05 -0700227 @Thunk Workspace mWorkspace;
Craig Mautner360310b2012-10-26 15:13:08 -0700228 private View mLauncherView;
Winson Chunga6945242014-01-08 14:04:34 -0800229 private View mPageIndicators;
Adam Cohen091440a2015-03-18 14:16:05 -0700230 @Thunk DragLayer mDragLayer;
Michael Jurkab737ee62011-11-15 15:57:22 -0800231 private DragController mDragController;
Adam Cohen39a06042013-07-19 14:30:12 -0700232 private View mWeightWatcher;
Romain Guycbb89e42009-06-08 15:52:54 -0700233
Sunny Goyalffe83f12014-08-14 17:39:34 -0700234 private AppWidgetManagerCompat mAppWidgetManager;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700235 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700236
Sunny Goyalaa8ef112015-06-12 20:04:41 -0700237 @Thunk final ItemInfo mPendingAddInfo = new ItemInfo();
Adam Cohen59400422014-03-05 18:07:04 -0800238 private LauncherAppWidgetProviderInfo mPendingAddWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800239 private int mPendingAddWidgetId = -1;
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700240
Michael Jurka0280c3b2010-09-17 15:00:07 -0700241 private int[] mTmpAddItemCellCoordinates = new int[2];
242
Sunny Goyal316490e2015-06-02 09:38:28 -0700243 @Thunk Hotseat mHotseat;
Jorim Jaggid017f882014-01-14 17:08:48 -0800244 private ViewGroup mOverviewPanel;
Adam Cohenf358a4b2013-07-23 16:47:31 -0700245
Michael Jurka838a4ca2011-02-07 13:33:06 -0800246 private View mAllAppsButton;
Hyunyoung Song98ff38a2015-07-10 17:50:13 -0700247 private View mWidgetsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700248
Winson Chungc51db6a2011-10-05 11:44:49 -0700249 private SearchDropTargetBar mSearchDropTargetBar;
Tony Wickham34d2c912015-09-11 09:27:58 -0700250 private AppInfoDropTargetBar mAppInfoDropTargetBar;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700251
252 // Main container view for the all apps screen.
Winson Chung5f4e0fd2015-05-22 11:12:27 -0700253 @Thunk AllAppsContainerView mAppsView;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700254
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700255 // Main container view and the model for the widget tray screen.
256 @Thunk WidgetsContainerView mWidgetsView;
257 @Thunk WidgetsModel mWidgetsModel;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700258
Sunny Goyal594d76d2014-11-06 10:12:54 -0800259 private AppWidgetHostView mQsb;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800260
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800261 private Bundle mSavedState;
Winson Chung4a2afa32012-07-19 14:53:05 -0700262 // We set the state in both onCreate and then onNewIntent in some cases, which causes both
263 // scroll issues (because the workspace may not have been measured yet) and extra work.
264 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
265 private State mOnResumeState = State.NONE;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800266
267 private SpannableStringBuilder mDefaultKeySsb = null;
268
Adam Cohen091440a2015-03-18 14:16:05 -0700269 @Thunk boolean mWorkspaceLoading = true;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400270
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800271 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800272 private boolean mRestoring;
273 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700274 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800275
Michael Jurka1e2f4652013-07-08 18:03:46 -0700276 private ArrayList<Runnable> mBindOnResumeCallbacks = new ArrayList<Runnable>();
Michael Jurka7607c2f2013-04-03 14:33:19 -0700277 private ArrayList<Runnable> mOnResumeCallbacks = new ArrayList<Runnable>();
278
Joe Onorato9c1289c2009-08-17 11:03:03 -0400279 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800280 private IconCache mIconCache;
Adam Cohen091440a2015-03-18 14:16:05 -0700281 @Thunk boolean mUserPresent = true;
Adam Cohend113e0c2010-11-11 10:48:05 -0800282 private boolean mVisible = false;
Adam Cohened307df2013-10-02 09:37:31 -0700283 private boolean mHasFocus = false;
Adam Cohend113e0c2010-11-11 10:48:05 -0800284 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400285
Sunny Goyal639e9062015-08-19 19:17:06 -0700286 private LauncherClings mClings;
287
Sunny Goyale2df0622015-04-24 11:27:00 -0700288 private static LongArrayMap<FolderInfo> sFolders = new LongArrayMap<>();
Romain Guycbb89e42009-06-08 15:52:54 -0700289
Adam Cohen61f560d2013-09-30 15:58:20 -0700290 private View.OnTouchListener mHapticFeedbackTouchListener;
291
Adam Cohended9f8d2010-11-03 13:25:16 -0700292 // Related to the auto-advancing of widgets
293 private final int ADVANCE_MSG = 1;
Sunny Goyal756cd262015-08-20 12:33:21 -0700294 private static final int ADVANCE_INTERVAL = 20000;
295 private static final int ADVANCE_STAGGER = 250;
296
297 private boolean mAutoAdvanceRunning = false;
Adam Cohended9f8d2010-11-03 13:25:16 -0700298 private long mAutoAdvanceSentTime;
299 private long mAutoAdvanceTimeLeft = -1;
Sunny Goyal756cd262015-08-20 12:33:21 -0700300 @Thunk HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance = new HashMap<>();
Adam Cohended9f8d2010-11-03 13:25:16 -0700301
Winson Chung400438b2011-01-16 17:53:48 -0800302 // Determines how long to wait after a rotation before restoring the screen orientation to
303 // match the sensor state.
Sunny Goyal756cd262015-08-20 12:33:21 -0700304 private static final int RESTORE_SCREEN_ORIENTATION_DELAY = 500;
Winson Chung400438b2011-01-16 17:53:48 -0800305
Adam Cohen091440a2015-03-18 14:16:05 -0700306 @Thunk Drawable mWorkspaceBackgroundDrawable;
Craig Mautner360310b2012-10-26 15:13:08 -0700307
Adam Cohen1462de32012-07-24 22:34:36 -0700308 private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700309 private static final boolean DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE = false;
Adam Cohen1462de32012-07-24 22:34:36 -0700310
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700311 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
Adam Cohen4caf2982013-08-20 18:54:31 -0700312 static Date sDateStamp = new Date();
313 static DateFormat sDateFormat =
314 DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
315 static long sRunStart = System.currentTimeMillis();
316 static final String CORRUPTION_EMAIL_SENT_KEY = "corruptionEmailSent";
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700317
Winson Chung46353de2012-02-16 14:05:10 -0800318 // We only want to get the SharedPreferences once since it does an FS stat each time we get
319 // it from the context.
320 private SharedPreferences mSharedPrefs;
321
Winson Chungf0c6ae02012-03-21 16:10:31 -0700322 // Holds the page that we need to animate to, and the icon views that we need to animate up
323 // when we scroll to that page on resume.
Adam Cohen091440a2015-03-18 14:16:05 -0700324 @Thunk ImageView mFolderIconImageView;
Adam Cohen268c4752012-06-06 17:47:33 -0700325 private Bitmap mFolderIconBitmap;
326 private Canvas mFolderIconCanvas;
327 private Rect mRectForFolderAnimation = new Rect();
Adam Cohen2801caf2011-05-13 20:57:39 -0700328
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700329 private DeviceProfile mDeviceProfile;
330
Winson Chung13eb5272015-05-11 16:30:13 -0700331 // This is set to the view that launched the activity that navigated the user away from
332 // launcher. Since there is no callback for when the activity has finished launching, enable
333 // the press state and keep this reference to reset the press state when we return to launcher.
Michael Jurkaddd62e92011-02-16 17:49:14 -0800334 private BubbleTextView mWaitingForResume;
335
Adam Cohen59400422014-03-05 18:07:04 -0800336 protected static HashMap<String, CustomAppWidget> sCustomAppWidgets =
337 new HashMap<String, CustomAppWidget>();
338
339 private static final boolean ENABLE_CUSTOM_WIDGET_TEST = false;
340 static {
341 if (ENABLE_CUSTOM_WIDGET_TEST) {
342 sCustomAppWidgets.put(DummyWidget.class.getName(), new DummyWidget());
343 }
344 }
345
Adam Cohen091440a2015-03-18 14:16:05 -0700346 @Thunk Runnable mBuildLayersRunnable = new Runnable() {
Michael Jurkac1f5d262011-09-30 19:32:27 -0700347 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700348 if (mWorkspace != null) {
349 mWorkspace.buildPageHardwareLayers();
350 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700351 }
352 };
353
Adam Cohendb364c32014-05-20 14:23:40 -0700354 private static PendingAddArguments sPendingAddItem;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800355
Adam Cohen091440a2015-03-18 14:16:05 -0700356 @Thunk static class PendingAddArguments {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800357 int requestCode;
358 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700359 long container;
Adam Cohendcd297f2013-06-18 13:13:40 -0700360 long screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800361 int cellX;
362 int cellY;
Adam Cohendb364c32014-05-20 14:23:40 -0700363 int appWidgetId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800364 }
365
Daniel Sandlerff02d492013-08-05 02:12:05 -0400366 private Stats mStats;
Sunny Goyaldcbcc862014-08-12 15:58:36 -0700367 FocusIndicatorView mFocusHandler;
Sunny Goyal7779d622015-06-11 16:18:39 -0700368 private boolean mRotationEnabled = false;
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400369
370 @Thunk void setOrientation() {
371 if (mRotationEnabled) {
372 unlockScreenOrientation(true);
373 } else {
374 setRequestedOrientation(
375 ActivityInfo.SCREEN_ORIENTATION_NOSENSOR);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700376 }
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400377 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700378
Sunny Goyal7779d622015-06-11 16:18:39 -0700379 private Runnable mUpdateOrientationRunnable = new Runnable() {
380 public void run() {
381 setOrientation();
382 }
383 };
384
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800385 @Override
386 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700387 if (DEBUG_STRICT_MODE) {
388 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
389 .detectDiskReads()
390 .detectDiskWrites()
391 .detectNetwork() // or .detectAll() for all detectable problems
392 .penaltyLog()
393 .build());
394 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
395 .detectLeakedSqlLiteObjects()
396 .detectLeakedClosableObjects()
397 .penaltyLog()
398 .penaltyDeath()
399 .build());
400 }
401
Adam Cohen9211d422014-10-07 18:14:53 -0700402 if (mLauncherCallbacks != null) {
403 mLauncherCallbacks.preOnCreate();
404 }
405
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800406 super.onCreate(savedInstanceState);
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400407
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400408 LauncherAppState.setApplicationContext(getApplicationContext());
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400409 LauncherAppState app = LauncherAppState.getInstance();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700410
Adam Cohen2e6da152015-05-06 11:42:25 -0700411 // Load configuration-specific DeviceProfile
Sunny Goyalc6205602015-05-21 20:46:33 -0700412 mDeviceProfile = getResources().getConfiguration().orientation
413 == Configuration.ORIENTATION_LANDSCAPE ?
414 app.getInvariantDeviceProfile().landscapeProfile
415 : app.getInvariantDeviceProfile().portraitProfile;
416
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400417 mSharedPrefs = getSharedPreferences(LauncherAppState.getSharedPreferencesKey(),
Winson Chungf0c6ae02012-03-21 16:10:31 -0700418 Context.MODE_PRIVATE);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700419 mIsSafeModeEnabled = getPackageManager().isSafeMode();
Joe Onorato0589f0f2010-02-08 13:44:00 -0800420 mModel = app.setLauncher(this);
421 mIconCache = app.getIconCache();
Adam Cohen2e6da152015-05-06 11:42:25 -0700422
Joe Onorato41a12d22009-10-31 18:30:00 -0400423 mDragController = new DragController(this);
Winson Chung006ee262015-08-03 14:40:11 -0700424 mStateTransitionAnimation = new LauncherStateTransitionAnimation(this);
Romain Guycbb89e42009-06-08 15:52:54 -0700425
Daniel Sandlerff02d492013-08-05 02:12:05 -0400426 mStats = new Stats(this);
427
Sunny Goyalffe83f12014-08-14 17:39:34 -0700428 mAppWidgetManager = AppWidgetManagerCompat.getInstance(this);
Adam Cohen53805212013-10-01 10:39:23 -0700429
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700430 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
431 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700432
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700433 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
434 // this also ensures that any synchronous binding below doesn't re-trigger another
435 // LauncherModel load.
436 mPaused = false;
437
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800438 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200439 android.os.Debug.startMethodTracing(
440 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800441 }
442
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800443 setContentView(R.layout.launcher);
Michael Jurka7267fa52013-09-26 15:29:57 -0700444
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800445 setupViews();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700446 mDeviceProfile.layout(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800447
Joe Onorato7c312c12009-08-13 21:36:53 -0700448 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700449
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800450 mSavedState = savedInstanceState;
451 restoreState(mSavedState);
452
453 if (PROFILE_STARTUP) {
454 android.os.Debug.stopMethodTracing();
455 }
456
457 if (!mRestoring) {
Adam Cohendb78dc82014-06-19 14:50:51 -0700458 if (DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700459 // If the user leaves launcher, then we should just load items asynchronously when
460 // they return.
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700461 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Winson Chung4a2afa32012-07-19 14:53:05 -0700462 } else {
463 // We only load the page synchronously if the user rotates (or triggers a
464 // configuration change) while launcher is in the foreground
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700465 mModel.startLoader(mWorkspace.getRestorePage());
Winson Chung4a2afa32012-07-19 14:53:05 -0700466 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800467 }
468
469 // For handling default keys
470 mDefaultKeySsb = new SpannableStringBuilder();
471 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800472
473 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
474 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800475
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700476 mRotationEnabled = Utilities.isRotationAllowedForDevice(getApplicationContext());
477 // In case we are on a device with locked rotation, we should look at preferences to check
478 // if the user has specifically allowed rotation.
479 if (!mRotationEnabled) {
Sunny Goyal21bf5312015-08-21 11:08:24 -0700480 mRotationEnabled = Utilities.isAllowRotationPrefEnabled(getApplicationContext());
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700481 }
482
483 // On large interfaces, or on devices that a user has specifically enabled screen rotation,
484 // we want the screen to auto-rotate based on the current orientation
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400485 setOrientation();
Winson Chungaf40f202013-09-18 18:26:31 -0700486
Adam Cohen9211d422014-10-07 18:14:53 -0700487 if (mLauncherCallbacks != null) {
488 mLauncherCallbacks.onCreate(savedInstanceState);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700489 if (mLauncherCallbacks.hasLauncherOverlay()) {
490 ViewStub stub = (ViewStub) findViewById(R.id.launcher_overlay_stub);
Adam Cohena6d04922014-10-23 17:28:30 -0700491 mLauncherOverlayContainer = (InsettableFrameLayout) stub.inflate();
492 mLauncherOverlay = mLauncherCallbacks.setLauncherOverlayView(
493 mLauncherOverlayContainer, mLauncherOverlayCallbacks);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700494 mWorkspace.setLauncherOverlay(mLauncherOverlay);
495 }
Adam Cohen9211d422014-10-07 18:14:53 -0700496 }
Adam Cohenc3e12c72014-10-31 16:15:36 -0700497
498 if (shouldShowIntroScreen()) {
499 showIntroScreen();
500 } else {
501 showFirstRunActivity();
502 showFirstRunClings();
503 }
Adam Cohen9211d422014-10-07 18:14:53 -0700504 }
505
Sunny Goyal7779d622015-06-11 16:18:39 -0700506 @Override
507 public void onSettingsChanged(String settings, boolean value) {
508 if (Utilities.ALLOW_ROTATION_PREFERENCE_KEY.equals(settings)) {
509 mRotationEnabled = value;
510 if (!waitUntilResume(mUpdateOrientationRunnable, true)) {
511 mUpdateOrientationRunnable.run();
512 }
513 }
514 }
515
Adam Cohen9211d422014-10-07 18:14:53 -0700516 private LauncherCallbacks mLauncherCallbacks;
517
518 public void onPostCreate(Bundle savedInstanceState) {
519 super.onPostCreate(savedInstanceState);
520 if (mLauncherCallbacks != null) {
521 mLauncherCallbacks.onPostCreate(savedInstanceState);
522 }
523 }
524
525 public boolean setLauncherCallbacks(LauncherCallbacks callbacks) {
526 mLauncherCallbacks = callbacks;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700527 mLauncherCallbacks.setLauncherSearchCallback(new Launcher.LauncherSearchCallbacks() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700528 private boolean mWorkspaceImportanceStored = false;
529 private boolean mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700530 private int mWorkspaceImportanceForAccessibility =
531 View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
532 private int mHotseatImportanceForAccessibility = View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
533
534 @Override
535 public void onSearchOverlayOpened() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700536 if (mWorkspaceImportanceStored || mHotseatImportanceStored) {
Jun Mukai8af0cd82015-05-12 12:32:12 -0700537 return;
538 }
539 // The underlying workspace and hotseat are temporarily suppressed by the search
540 // overlay. So they sholudn't be accessible.
Jun Mukaie9819e62015-06-17 10:58:59 -0700541 if (mWorkspace != null) {
542 mWorkspaceImportanceForAccessibility =
543 mWorkspace.getImportantForAccessibility();
544 mWorkspace.setImportantForAccessibility(
545 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
546 mWorkspaceImportanceStored = true;
547 }
548 if (mHotseat != null) {
549 mHotseatImportanceForAccessibility = mHotseat.getImportantForAccessibility();
550 mHotseat.setImportantForAccessibility(
551 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
552 mHotseatImportanceStored = true;
553 }
Jun Mukai8af0cd82015-05-12 12:32:12 -0700554 }
555
556 @Override
557 public void onSearchOverlayClosed() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700558 if (mWorkspaceImportanceStored && mWorkspace != null) {
559 mWorkspace.setImportantForAccessibility(mWorkspaceImportanceForAccessibility);
560 }
561 if (mHotseatImportanceStored && mHotseat != null) {
562 mHotseat.setImportantForAccessibility(mHotseatImportanceForAccessibility);
563 }
564 mWorkspaceImportanceStored = false;
565 mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700566 }
567 });
Adam Cohen9211d422014-10-07 18:14:53 -0700568 return true;
Adam Cohenf9426d52012-06-04 17:26:21 -0700569 }
570
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700571 @Override
Adam Cohen9211d422014-10-07 18:14:53 -0700572 public void onLauncherProviderChange() {
573 if (mLauncherCallbacks != null) {
574 mLauncherCallbacks.onLauncherProviderChange();
575 }
576 }
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700577
Winson Chungef7f8742015-06-04 17:18:17 -0700578 /**
579 * Updates the bounds of all the overlays to match the new fixed bounds.
580 */
581 public void updateOverlayBounds(Rect newBounds) {
582 mAppsView.setSearchBarBounds(newBounds);
583 mWidgetsView.setSearchBarBounds(newBounds);
584 }
585
Adam Cohen9211d422014-10-07 18:14:53 -0700586 /** To be overridden by subclasses to hint to Launcher that we have custom content */
Winson Chung98ca0f72013-07-29 12:58:51 -0700587 protected boolean hasCustomContentToLeft() {
Adam Cohen9211d422014-10-07 18:14:53 -0700588 if (mLauncherCallbacks != null) {
589 return mLauncherCallbacks.hasCustomContentToLeft();
590 }
Winson Chung98ca0f72013-07-29 12:58:51 -0700591 return false;
592 }
593
Dave Hawkeya8881582013-09-17 15:55:33 -0600594 /**
Derek Prothrodadd9842014-01-17 13:43:50 -0500595 * To be overridden by subclasses to populate the custom content container and call
Dave Hawkeya8881582013-09-17 15:55:33 -0600596 * {@link #addToCustomContentPage}. This will only be invoked if
597 * {@link #hasCustomContentToLeft()} is {@code true}.
598 */
Derek Prothrodadd9842014-01-17 13:43:50 -0500599 protected void populateCustomContentContainer() {
Adam Cohen9211d422014-10-07 18:14:53 -0700600 if (mLauncherCallbacks != null) {
601 mLauncherCallbacks.populateCustomContentContainer();
602 }
Dave Hawkeya8881582013-09-17 15:55:33 -0600603 }
604
605 /**
606 * Invoked by subclasses to signal a change to the {@link #addCustomContentToLeft} value to
607 * ensure the custom content page is added or removed if necessary.
608 */
609 protected void invalidateHasCustomContentToLeft() {
Dave Hawkey3a733a72013-09-30 11:52:21 -0600610 if (mWorkspace == null || mWorkspace.getScreenOrder().isEmpty()) {
Dave Hawkeya8881582013-09-17 15:55:33 -0600611 // Not bound yet, wait for bindScreens to be called.
612 return;
613 }
614
615 if (!mWorkspace.hasCustomContent() && hasCustomContentToLeft()) {
616 // Create the custom content page and call the subclass to populate it.
Derek Prothrodadd9842014-01-17 13:43:50 -0500617 mWorkspace.createCustomContentContainer();
618 populateCustomContentContainer();
Dave Hawkeya8881582013-09-17 15:55:33 -0600619 } else if (mWorkspace.hasCustomContent() && !hasCustomContentToLeft()) {
620 mWorkspace.removeCustomContentPage();
621 }
622 }
623
Anton Hanssona2f665f2013-09-26 12:18:32 +0100624 public Stats getStats() {
625 return mStats;
626 }
627
Hyunyoung Song3f471442015-04-08 19:01:34 -0700628 public boolean isDraggingEnabled() {
Winson Chung36a62fe2012-05-06 18:04:42 -0700629 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
630 // that is subsequently removed from the workspace in startBinding().
Sunny Goyal639e9062015-08-19 19:17:06 -0700631 return !isWorkspaceLoading();
Winson Chung36a62fe2012-05-06 18:04:42 -0700632 }
633
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000634 public int getViewIdForItem(ItemInfo info) {
Sunny Goyale2fd14b2015-08-27 17:45:46 -0700635 // aapt-generated IDs have the high byte nonzero; clamp to the range under that.
636 // This cast is safe as long as the id < 0x00FFFFFF
637 // Since we jail all the dynamically generated views, there should be no clashes
638 // with any other views.
639 return (int) info.id;
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000640 }
641
642 /**
Winson Chung557d6ed2011-07-08 15:34:52 -0700643 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
644 * a configuration step, this allows the proper animations to run after other transitions.
645 */
Adam Cohendb364c32014-05-20 14:23:40 -0700646 private long completeAdd(PendingAddArguments args) {
Adam Cohen83079e42014-09-19 17:43:08 -0700647 long screenId = args.screenId;
648 if (args.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
649 // When the screen id represents an actual screen (as opposed to a rank) we make sure
650 // that the drop page actually exists.
651 screenId = ensurePendingDropLayoutExists(args.screenId);
652 }
Adam Cohendb364c32014-05-20 14:23:40 -0700653
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800654 switch (args.requestCode) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800655 case REQUEST_CREATE_SHORTCUT:
Adam Cohendb364c32014-05-20 14:23:40 -0700656 completeAddShortcut(args.intent, args.container, screenId, args.cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -0700657 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700658 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800659 case REQUEST_CREATE_APPWIDGET:
Adam Cohendb364c32014-05-20 14:23:40 -0700660 completeAddAppWidget(args.appWidgetId, args.container, screenId, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700661 break;
Sunny Goyalff572272014-07-23 13:58:07 -0700662 case REQUEST_RECONFIGURE_APPWIDGET:
663 completeRestoreAppWidget(args.appWidgetId);
664 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800665 }
Michael Jurka27614d22012-04-02 06:40:22 -0700666 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
667 // if you turned the screen off and then back while in All Apps, Launcher would not
668 // return to the workspace. Clearing mAddInfo.container here fixes this issue
669 resetAddInfo();
Adam Cohendb364c32014-05-20 14:23:40 -0700670 return screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800671 }
672
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800673 private void handleActivityResult(
Michael Jurka8b805b12012-04-18 14:23:14 -0700674 final int requestCode, final int resultCode, final Intent data) {
Winson Chunge341d302013-08-16 14:31:00 -0700675 // Reset the startActivity waiting flag
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700676 setWaitingForResult(false);
Adam Cohendb364c32014-05-20 14:23:40 -0700677 final int pendingAddWidgetId = mPendingAddWidgetId;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800678 mPendingAddWidgetId = -1;
Winson Chunge341d302013-08-16 14:31:00 -0700679
Adam Cohenad4e15c2013-10-17 16:21:35 -0700680 Runnable exitSpringLoaded = new Runnable() {
681 @Override
682 public void run() {
683 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
684 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
685 }
686 };
687
Michael Jurka8b805b12012-04-18 14:23:14 -0700688 if (requestCode == REQUEST_BIND_APPWIDGET) {
Winsona1f79d32015-08-05 14:00:45 -0700689 // This is called only if the user did not previously have permissions to bind widgets
Adam Cohenad4e15c2013-10-17 16:21:35 -0700690 final int appWidgetId = data != null ?
Michael Jurka8b805b12012-04-18 14:23:14 -0700691 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
692 if (resultCode == RESULT_CANCELED) {
693 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
Adam Cohen689ff162014-05-08 17:27:56 -0700694 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700695 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
Michael Jurka8b805b12012-04-18 14:23:14 -0700696 } else if (resultCode == RESULT_OK) {
Sunny Goyale6b63a32015-01-16 16:14:29 -0800697 addAppWidgetImpl(appWidgetId, mPendingAddInfo, null,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700698 mPendingAddWidgetInfo, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
Winsona1f79d32015-08-05 14:00:45 -0700699
700 // When the user has granted permission to bind widgets, we should check to see if
701 // we can inflate the default search bar widget.
702 getOrCreateQsbBar();
Michael Jurka8b805b12012-04-18 14:23:14 -0700703 }
704 return;
Michael Jurka336fd4f2013-09-12 00:05:02 +0200705 } else if (requestCode == REQUEST_PICK_WALLPAPER) {
706 if (resultCode == RESULT_OK && mWorkspace.isInOverviewMode()) {
Tony Wickhame3054412015-09-09 09:05:25 -0700707 // User could have free-scrolled between pages before picking a wallpaper; make sure
708 // we move to the closest one now.
709 mWorkspace.setCurrentPage(mWorkspace.getPageNearestToCenterOfScreen());
Winson Chungdc61c4d2015-04-20 18:26:57 -0700710 showWorkspace(false);
Michael Jurka336fd4f2013-09-12 00:05:02 +0200711 }
712 return;
Michael Jurka8b805b12012-04-18 14:23:14 -0700713 }
Michael Jurka336fd4f2013-09-12 00:05:02 +0200714
Adam Cohened66b2b2012-01-23 17:28:51 -0800715 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
Sunny Goyal5c97f512015-05-19 16:03:28 -0700716 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700717
Adam Cohendb364c32014-05-20 14:23:40 -0700718 final boolean workspaceLocked = isWorkspaceLocked();
Adam Cohened66b2b2012-01-23 17:28:51 -0800719 // We have special handling for widgets
720 if (isWidgetDrop) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800721 final int appWidgetId;
722 int widgetId = data != null ? data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1)
723 : -1;
724 if (widgetId < 0) {
725 appWidgetId = pendingAddWidgetId;
726 } else {
727 appWidgetId = widgetId;
728 }
729
Adam Cohenad4e15c2013-10-17 16:21:35 -0700730 final int result;
Adam Cohenf0129b12013-11-04 17:57:36 -0800731 if (appWidgetId < 0 || resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700732 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not " +
733 "returned from the widget configuration activity.");
Adam Cohenad4e15c2013-10-17 16:21:35 -0700734 result = RESULT_CANCELED;
735 completeTwoStageWidgetDrop(result, appWidgetId);
Adam Cohendb364c32014-05-20 14:23:40 -0700736 final Runnable onComplete = new Runnable() {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700737 @Override
738 public void run() {
739 exitSpringLoadedDragModeDelayed(false, 0, null);
740 }
741 };
Adam Cohendb364c32014-05-20 14:23:40 -0700742 if (workspaceLocked) {
743 // No need to remove the empty screen if we're mid-binding, as the
744 // the bind will not add the empty screen.
745 mWorkspace.postDelayed(onComplete, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
746 } else {
747 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
748 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
749 }
Winson Chung5aaab772012-04-27 15:24:02 -0700750 } else {
Adam Cohendb364c32014-05-20 14:23:40 -0700751 if (!workspaceLocked) {
Adam Cohen83079e42014-09-19 17:43:08 -0700752 if (mPendingAddInfo.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
753 // When the screen id represents an actual screen (as opposed to a rank)
754 // we make sure that the drop page actually exists.
755 mPendingAddInfo.screenId =
756 ensurePendingDropLayoutExists(mPendingAddInfo.screenId);
757 }
Adam Cohendb364c32014-05-20 14:23:40 -0700758 final CellLayout dropLayout = mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
759
760 dropLayout.setDropPending(true);
761 final Runnable onComplete = new Runnable() {
762 @Override
763 public void run() {
764 completeTwoStageWidgetDrop(resultCode, appWidgetId);
765 dropLayout.setDropPending(false);
766 }
767 };
768 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
769 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
770 } else {
771 PendingAddArguments args = preparePendingAddArgs(requestCode, data, appWidgetId,
772 mPendingAddInfo);
773 sPendingAddItem = args;
774 }
Winson Chung5aaab772012-04-27 15:24:02 -0700775 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800776 return;
777 }
778
Sunny Goyalff572272014-07-23 13:58:07 -0700779 if (requestCode == REQUEST_RECONFIGURE_APPWIDGET) {
780 if (resultCode == RESULT_OK) {
781 // Update the widget view.
782 PendingAddArguments args = preparePendingAddArgs(requestCode, data,
783 pendingAddWidgetId, mPendingAddInfo);
784 if (workspaceLocked) {
785 sPendingAddItem = args;
786 } else {
787 completeAdd(args);
788 }
789 }
790 // Leave the widget in the pending state if the user canceled the configure.
791 return;
792 }
793
Sunny Goyalaad90582015-07-09 14:22:50 -0700794 if (requestCode == REQUEST_CREATE_SHORTCUT) {
795 // Handle custom shortcuts created using ACTION_CREATE_SHORTCUT.
796 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
797 final PendingAddArguments args = preparePendingAddArgs(requestCode, data, -1,
798 mPendingAddInfo);
799 if (isWorkspaceLocked()) {
800 sPendingAddItem = args;
801 } else {
802 completeAdd(args);
803 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
804 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
805 }
806 } else if (resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700807 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
808 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800809 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800810 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800811 mDragLayer.clearAnimatedView();
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800812
813 }
814
815 @Override
816 protected void onActivityResult(
817 final int requestCode, final int resultCode, final Intent data) {
818 handleActivityResult(requestCode, resultCode, data);
819 if (mLauncherCallbacks != null) {
820 mLauncherCallbacks.onActivityResult(requestCode, resultCode, data);
821 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800822 }
823
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600824 /** @Override for MNC */
Sunny Goyaldd2e6df2015-07-07 10:57:57 -0700825 public void onRequestPermissionsResult(int requestCode, String[] permissions,
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600826 int[] grantResults) {
827 if (mLauncherCallbacks != null) {
828 mLauncherCallbacks.onRequestPermissionsResult(requestCode, permissions,
829 grantResults);
830 }
831 }
832
Adam Cohendb364c32014-05-20 14:23:40 -0700833 private PendingAddArguments preparePendingAddArgs(int requestCode, Intent data, int
834 appWidgetId, ItemInfo info) {
835 PendingAddArguments args = new PendingAddArguments();
836 args.requestCode = requestCode;
837 args.intent = data;
838 args.container = info.container;
839 args.screenId = info.screenId;
840 args.cellX = info.cellX;
841 args.cellY = info.cellY;
842 args.appWidgetId = appWidgetId;
843 return args;
844 }
845
846 /**
847 * Check to see if a given screen id exists. If not, create it at the end, return the new id.
848 *
849 * @param screenId the screen id to check
850 * @return the new screen, or screenId if it exists
851 */
852 private long ensurePendingDropLayoutExists(long screenId) {
853 CellLayout dropLayout =
854 (CellLayout) mWorkspace.getScreenWithId(screenId);
855 if (dropLayout == null) {
856 // it's possible that the add screen was removed because it was
857 // empty and a re-bind occurred
858 mWorkspace.addExtraEmptyScreen();
859 return mWorkspace.commitExtraEmptyScreen();
860 } else {
861 return screenId;
862 }
863 }
864
Adam Cohen091440a2015-03-18 14:16:05 -0700865 @Thunk void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700866 CellLayout cellLayout =
Adam Cohendcd297f2013-06-18 13:13:40 -0700867 (CellLayout) mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800868 Runnable onCompleteRunnable = null;
869 int animationType = 0;
870
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700871 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800872 if (resultCode == RESULT_OK) {
873 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
874 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700875 mPendingAddWidgetInfo);
876 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800877 onCompleteRunnable = new Runnable() {
878 @Override
879 public void run() {
880 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700881 mPendingAddInfo.screenId, layout, null);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700882 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
883 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
Adam Cohened66b2b2012-01-23 17:28:51 -0800884 }
885 };
886 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800887 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800888 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
Adam Cohened66b2b2012-01-23 17:28:51 -0800889 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700890 if (mDragLayer.getAnimatedView() != null) {
891 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
892 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
893 animationType, boundWidget, true);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700894 } else if (onCompleteRunnable != null) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700895 // The animated view may be null in the case of a rotation during widget configuration
896 onCompleteRunnable.run();
897 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800898 }
899
900 @Override
Michael Jurkacd496d72013-04-11 11:32:45 -0700901 protected void onStop() {
902 super.onStop();
903 FirstFrameAnimatorHelper.setIsVisible(false);
Adam Cohen9211d422014-10-07 18:14:53 -0700904
905 if (mLauncherCallbacks != null) {
906 mLauncherCallbacks.onStop();
907 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700908 }
909
910 @Override
911 protected void onStart() {
912 super.onStart();
913 FirstFrameAnimatorHelper.setIsVisible(true);
Adam Cohen9211d422014-10-07 18:14:53 -0700914
915 if (mLauncherCallbacks != null) {
916 mLauncherCallbacks.onStart();
917 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700918 }
919
920 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800921 protected void onResume() {
Michael Jurka447bf842013-05-15 14:52:15 +0200922 long startTime = 0;
923 if (DEBUG_RESUME_TIME) {
924 startTime = System.currentTimeMillis();
Daniel Sandler924b9932013-06-12 00:38:25 -0400925 Log.v(TAG, "Launcher.onResume()");
Michael Jurka447bf842013-05-15 14:52:15 +0200926 }
Adam Cohen9211d422014-10-07 18:14:53 -0700927
928 if (mLauncherCallbacks != null) {
929 mLauncherCallbacks.preOnResume();
930 }
931
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800932 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700933
Winson Chung4a2afa32012-07-19 14:53:05 -0700934 // Restore the previous launcher state
Winson Chung75cc8252015-04-10 10:19:58 -0700935 if (mOnResumeState == State.WORKSPACE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700936 showWorkspace(false);
Winson Chungb745afb2015-03-02 11:51:23 -0800937 } else if (mOnResumeState == State.APPS) {
Winson Chung13eb5272015-05-11 16:30:13 -0700938 boolean launchedFromApp = (mWaitingForResume != null);
Winson Chung4ac30062015-05-08 17:34:17 -0700939 // Don't update the predicted apps if the user is returning to launcher in the apps
Winson Chung13eb5272015-05-11 16:30:13 -0700940 // view after launching an app, as they may be depending on the UI to be static to
941 // switch to another app, otherwise, if it was
Winson Chung4ac30062015-05-08 17:34:17 -0700942 showAppsView(false /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -0700943 !launchedFromApp /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -0800944 } else if (mOnResumeState == State.WIDGETS) {
945 showWidgetsView(false, false);
Winson Chung4a2afa32012-07-19 14:53:05 -0700946 }
947 mOnResumeState = State.NONE;
948
Sunny Goyal4a6c6f32015-05-19 12:36:46 -0700949 // Background was set to gradient in onPause(), restore to transparent if in all apps.
Sunny Goyald70ad0d2015-05-26 17:20:07 -0700950 setWorkspaceBackground(mState == State.WORKSPACE ? WORKSPACE_BACKGROUND_GRADIENT
951 : WORKSPACE_BACKGROUND_TRANSPARENT);
Craig Mautner360310b2012-10-26 15:13:08 -0700952
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800953 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700954 if (mRestoring || mOnResumeNeedsLoad) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700955 setWorkspaceLoading(true);
Sunny Goyal22aa3812015-08-19 16:24:27 -0700956
957 // If we're starting binding all over again, clear any bind calls we'd postponed in
958 // the past (see waitUntilResume) -- we don't need them since we're starting binding
959 // from scratch again
960 mBindOnResumeCallbacks.clear();
961
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700962 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400963 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700964 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800965 }
Michael Jurka1e2f4652013-07-08 18:03:46 -0700966 if (mBindOnResumeCallbacks.size() > 0) {
Michael Jurkac402cd92013-05-20 15:49:32 +0200967 // We might have postponed some bind calls until onResume (see waitUntilResume) --
968 // execute them here
969 long startTimeCallbacks = 0;
970 if (DEBUG_RESUME_TIME) {
971 startTimeCallbacks = System.currentTimeMillis();
972 }
973
Michael Jurka1e2f4652013-07-08 18:03:46 -0700974 for (int i = 0; i < mBindOnResumeCallbacks.size(); i++) {
975 mBindOnResumeCallbacks.get(i).run();
Michael Jurkac402cd92013-05-20 15:49:32 +0200976 }
Michael Jurka1e2f4652013-07-08 18:03:46 -0700977 mBindOnResumeCallbacks.clear();
Michael Jurkac402cd92013-05-20 15:49:32 +0200978 if (DEBUG_RESUME_TIME) {
979 Log.d(TAG, "Time spent processing callbacks in onResume: " +
980 (System.currentTimeMillis() - startTimeCallbacks));
981 }
Michael Jurka447bf842013-05-15 14:52:15 +0200982 }
Michael Jurka54554252013-08-01 12:52:23 +0200983 if (mOnResumeCallbacks.size() > 0) {
984 for (int i = 0; i < mOnResumeCallbacks.size(); i++) {
985 mOnResumeCallbacks.get(i).run();
986 }
987 mOnResumeCallbacks.clear();
988 }
Winson Chunge4e50662012-01-23 14:45:13 -0800989
990 // Reset the pressed state of icons that were locked in the press state while activities
991 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -0800992 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -0800993 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -0800994 mWaitingForResume.setStayPressed(false);
995 }
Winson Chung82963d52013-10-09 11:20:57 -0700996
Adam Cohen06dff352012-06-01 17:17:08 -0700997 // It is possible that widgets can receive updates while launcher is not in the foreground.
998 // Consequently, the widgets will be inflated in the orientation of the foreground activity
999 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
1000 // orientation.
Adam Cohen3d509322012-06-06 14:10:04 -07001001 getWorkspace().reinflateWidgetsIfNecessary();
Sunny Goyal22235bc2015-04-03 09:23:43 -07001002 reinflateQSBIfNecessary();
Adam Cohenf9426d52012-06-04 17:26:21 -07001003
Michael Jurka447bf842013-05-15 14:52:15 +02001004 if (DEBUG_RESUME_TIME) {
1005 Log.d(TAG, "Time spent in onResume: " + (System.currentTimeMillis() - startTime));
1006 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001007
1008 if (mWorkspace.getCustomContentCallbacks() != null) {
1009 // If we are resuming and the custom content is the current page, we call onShow().
1010 // It is also poassible that onShow will instead be called slightly after first layout
1011 // if PagedView#setRestorePage was set to the custom content page in onCreate().
1012 if (mWorkspace.isOnOrMovingToCustomContent()) {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001013 mWorkspace.getCustomContentCallbacks().onShow(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001014 }
1015 }
Winson Chungcd99cd32015-04-29 11:03:24 -07001016 updateInteraction(Workspace.State.NORMAL, mWorkspace.getState());
Adam Cohen53805212013-10-01 10:39:23 -07001017 mWorkspace.onResume();
Sunny Goyale755d462014-07-22 13:48:29 -07001018
Sunny Goyal756adbc2015-04-16 15:20:51 -07001019 if (!isWorkspaceLoading()) {
1020 // Process any items that were added while Launcher was away.
1021 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
1022 }
Adam Cohen9211d422014-10-07 18:14:53 -07001023
1024 if (mLauncherCallbacks != null) {
1025 mLauncherCallbacks.onResume();
1026 }
Adam Cohen06dff352012-06-01 17:17:08 -07001027 }
1028
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001029 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001030 protected void onPause() {
Winson Chung997a9232013-07-24 15:33:46 -07001031 // Ensure that items added to Launcher are queued until Launcher returns
1032 InstallShortcutReceiver.enableInstallQueue();
1033
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001034 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001035 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -08001036 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -07001037 mDragController.resetLastGestureUpTime();
Adam Cohen6fecd412013-10-02 17:41:50 -07001038
1039 // We call onHide() aggressively. The custom content callbacks should be able to
1040 // debounce excess onHide calls.
1041 if (mWorkspace.getCustomContentCallbacks() != null) {
1042 mWorkspace.getCustomContentCallbacks().onHide();
1043 }
Romain Guycbb89e42009-06-08 15:52:54 -07001044
Adam Cohen9211d422014-10-07 18:14:53 -07001045 if (mLauncherCallbacks != null) {
1046 mLauncherCallbacks.onPause();
Adam Cohenbffe7452013-07-22 18:21:45 -07001047 }
Adam Cohenbffe7452013-07-22 18:21:45 -07001048 }
1049
1050 public interface CustomContentCallbacks {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001051 // Custom content is completely shown. {@code fromResume} indicates whether this was caused
1052 // by a onResume or by scrolling otherwise.
1053 public void onShow(boolean fromResume);
Adam Cohenbffe7452013-07-22 18:21:45 -07001054
1055 // Custom content is completely hidden
1056 public void onHide();
Adam Cohenc36fa5c2013-08-29 11:54:42 -07001057
1058 // Custom content scroll progress changed. From 0 (not showing) to 1 (fully showing).
1059 public void onScrollProgressChanged(float progress);
Jan-Willem Maarse2ff91c42014-07-10 15:58:12 -07001060
1061 // Indicates whether the user is allowed to scroll away from the custom content.
1062 boolean isScrollingAllowed();
Adam Cohenbffe7452013-07-22 18:21:45 -07001063 }
1064
Adam Cohenc2d6e892014-10-16 09:49:24 -07001065 public interface LauncherOverlay {
1066
1067 /**
1068 * Touch interaction leading to overscroll has begun
1069 */
1070 public void onScrollInteractionBegin();
1071
1072 /**
1073 * Touch interaction related to overscroll has ended
1074 */
1075 public void onScrollInteractionEnd();
1076
1077 /**
1078 * Scroll progress, between 0 and 100, when the user scrolls beyond the leftmost
1079 * screen (or in the case of RTL, the rightmost screen).
1080 */
1081 public void onScrollChange(int progress, boolean rtl);
1082
1083 /**
1084 * Screen has stopped scrolling
1085 */
1086 public void onScrollSettled();
1087
1088 /**
1089 * This method can be called by the Launcher in order to force the LauncherOverlay
1090 * to exit fully immersive mode.
1091 */
1092 public void forceExitFullImmersion();
1093 }
1094
Jun Mukai8af0cd82015-05-12 12:32:12 -07001095 public interface LauncherSearchCallbacks {
1096 /**
1097 * Called when the search overlay is shown.
1098 */
1099 public void onSearchOverlayOpened();
1100
1101 /**
1102 * Called when the search overlay is dismissed.
1103 */
1104 public void onSearchOverlayClosed();
1105 }
1106
Adam Cohenc2d6e892014-10-16 09:49:24 -07001107 public interface LauncherOverlayCallbacks {
1108 /**
1109 * This method indicates whether a call to {@link #enterFullImmersion()} will succeed,
1110 * however it doesn't modify any state within the launcher.
1111 */
1112 public boolean canEnterFullImmersion();
1113
1114 /**
1115 * Should be called to tell Launcher that the LauncherOverlay will take over interaction,
1116 * eg. by occupying the full screen and handling all touch events.
1117 *
1118 * @return true if Launcher allows the LauncherOverlay to become fully immersive. In this
1119 * case, Launcher will modify any necessary state and assumes the overlay is
1120 * handling all interaction. If false, the LauncherOverlay should cancel any
1121 *
1122 */
1123 public boolean enterFullImmersion();
1124
1125 /**
1126 * Must be called when exiting fully immersive mode. Indicates to Launcher that it has
1127 * full control over UI and state.
1128 */
1129 public void exitFullImmersion();
1130 }
1131
1132 class LauncherOverlayCallbacksImpl implements LauncherOverlayCallbacks {
1133
1134 @Override
1135 public boolean canEnterFullImmersion() {
1136 return mState == State.WORKSPACE;
1137 }
1138
1139 @Override
1140 public boolean enterFullImmersion() {
1141 if (mState == State.WORKSPACE) {
1142 // When fully immersed, disregard any touches which fall through.
1143 mDragLayer.setBlockTouch(true);
1144 return true;
1145 }
1146 return false;
1147 }
1148
1149 @Override
1150 public void exitFullImmersion() {
1151 mDragLayer.setBlockTouch(false);
1152 }
1153 }
1154
Jorim Jaggid017f882014-01-14 17:08:48 -08001155 protected boolean hasSettings() {
Adam Cohen9211d422014-10-07 18:14:53 -07001156 if (mLauncherCallbacks != null) {
1157 return mLauncherCallbacks.hasSettings();
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07001158 } else {
1159 // On devices with a locked orientation, we will at least have the allow rotation
1160 // setting.
1161 return !Utilities.isRotationAllowedForDevice(this);
Adam Cohen9211d422014-10-07 18:14:53 -07001162 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001163 }
1164
Adam Cohen9211d422014-10-07 18:14:53 -07001165 public void addToCustomContentPage(View customContent,
Adam Cohen53805212013-10-01 10:39:23 -07001166 CustomContentCallbacks callbacks, String description) {
1167 mWorkspace.addToCustomContentPage(customContent, callbacks, description);
Adam Cohen66a01fd2013-06-11 12:48:00 -07001168 }
1169
Adam Cohenedb40762013-07-18 16:45:45 -07001170 // The custom content needs to offset its content to account for the QSB
1171 public int getTopOffsetForCustomContent() {
1172 return mWorkspace.getPaddingTop();
1173 }
1174
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001175 @Override
1176 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001177 // Flag the loader to stop early before switching
Adam Cohen1a85c582014-09-30 09:48:49 -07001178 if (mModel.isCurrentCallbacks(this)) {
1179 mModel.stopLoader();
1180 }
Hyunyoung Song3f471442015-04-08 19:01:34 -07001181 //TODO(hyunyoungs): stop the widgets loader when there is a rotation.
1182
Romain Guy13c2e7b2010-03-10 19:45:00 -08001183 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001184 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001185
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001186 // We can't hide the IME if it was forced open. So don't bother
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001187 @Override
1188 public void onWindowFocusChanged(boolean hasFocus) {
1189 super.onWindowFocusChanged(hasFocus);
Adam Cohened307df2013-10-02 09:37:31 -07001190 mHasFocus = hasFocus;
Adam Cohen9211d422014-10-07 18:14:53 -07001191
1192 if (mLauncherCallbacks != null) {
1193 mLauncherCallbacks.onWindowFocusChanged(hasFocus);
1194 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001195 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001196
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001197 private boolean acceptFilter() {
1198 final InputMethodManager inputManager = (InputMethodManager)
1199 getSystemService(Context.INPUT_METHOD_SERVICE);
1200 return !inputManager.isFullscreenMode();
1201 }
1202
1203 @Override
1204 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -07001205 final int uniChar = event.getUnicodeChar();
1206 final boolean handled = super.onKeyDown(keyCode, event);
1207 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
1208 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001209 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
1210 keyCode, event);
1211 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001212 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -07001213 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -07001214 // showSearchDialog()
1215 // If there are multiple keystrokes before the search dialog takes focus,
1216 // onSearchRequested() will be called for every keystroke,
1217 // but it is idempotent, so it's fine.
1218 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001219 }
1220 }
1221
Joe Onorato8a9625e2010-01-28 15:55:35 -08001222 // Eat the long press event so the keyboard doesn't come up.
1223 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
1224 return true;
1225 }
1226
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001227 return handled;
1228 }
1229
Karl Rosaen138a0412009-04-23 19:00:21 -07001230 private String getTypedText() {
1231 return mDefaultKeySsb.toString();
1232 }
1233
1234 private void clearTypedText() {
1235 mDefaultKeySsb.clear();
1236 mDefaultKeySsb.clearSpans();
1237 Selection.setSelection(mDefaultKeySsb, 0);
1238 }
1239
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001240 /**
Michael Jurka883f55b2010-10-21 15:47:14 -07001241 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
1242 * State
1243 */
1244 private static State intToState(int stateOrdinal) {
1245 State state = State.WORKSPACE;
1246 final State[] stateValues = State.values();
1247 for (int i = 0; i < stateValues.length; i++) {
1248 if (stateValues[i].ordinal() == stateOrdinal) {
1249 state = stateValues[i];
1250 break;
1251 }
1252 }
1253 return state;
1254 }
1255
1256 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001257 * Restores the previous state, if it exists.
1258 *
1259 * @param savedState The previous state.
1260 */
1261 private void restoreState(Bundle savedState) {
1262 if (savedState == null) {
1263 return;
1264 }
1265
Michael Jurka883f55b2010-10-21 15:47:14 -07001266 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungb745afb2015-03-02 11:51:23 -08001267 if (state == State.APPS || state == State.WIDGETS) {
1268 mOnResumeState = state;
Joe Onorato3a8820b2009-11-10 15:06:42 -08001269 }
1270
Adam Cohen21cd0022013-10-09 18:57:02 -07001271 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN,
1272 PagedView.INVALID_RESTORE_PAGE);
1273 if (currentScreen != PagedView.INVALID_RESTORE_PAGE) {
Winson Chung8c87cd82013-07-23 16:20:10 -07001274 mWorkspace.setRestorePage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001275 }
1276
Sunny Goyal756cd262015-08-20 12:33:21 -07001277 ContentValues itemValues = savedState.getParcelable(RUNTIME_STATE_PENDING_ADD_ITEM);
1278 if (itemValues != null) {
1279 mPendingAddInfo.readFromValues(itemValues);
Adam Cohenb823ae42015-03-27 18:07:52 -07001280 AppWidgetProviderInfo info = savedState.getParcelable(
1281 RUNTIME_STATE_PENDING_ADD_WIDGET_INFO);
Sunny Goyalf044bb12015-05-12 13:30:07 -07001282 mPendingAddWidgetInfo = info == null ?
1283 null : LauncherAppWidgetProviderInfo.fromProviderInfo(this, info);
1284
Adam Cohen4637b5a2013-11-04 18:21:24 -08001285 mPendingAddWidgetId = savedState.getInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID);
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001286 setWaitingForResult(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001287 mRestoring = true;
1288 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001289 }
1290
1291 /**
1292 * Finds all the views we need and configure them properly.
1293 */
1294 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -07001295 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -04001296
Craig Mautner360310b2012-10-26 15:13:08 -07001297 mLauncherView = findViewById(R.id.launcher);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001298 mFocusHandler = (FocusIndicatorView) findViewById(R.id.focus_indicator);
Winson Chung4c98d922011-05-31 16:50:48 -07001299 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
1300 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Anjali Koppalf5d29132014-02-28 13:33:27 -08001301 mWorkspace.setPageSwitchListener(this);
Winson Chunga6945242014-01-08 14:04:34 -08001302 mPageIndicators = mDragLayer.findViewById(R.id.page_indicator);
Craig Mautner360310b2012-10-26 15:13:08 -07001303
John Spurlock77e1f472013-09-11 10:09:51 -04001304 mLauncherView.setSystemUiVisibility(
1305 View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
Craig Mautner360310b2012-10-26 15:13:08 -07001306 mWorkspaceBackgroundDrawable = getResources().getDrawable(R.drawable.workspace_bg);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001307
Winson Chung4c98d922011-05-31 16:50:48 -07001308 // Setup the drag layer
1309 mDragLayer.setup(this, dragController);
1310
Winson Chung3d503fb2011-07-13 17:25:49 -07001311 // Setup the hotseat
1312 mHotseat = (Hotseat) findViewById(R.id.hotseat);
1313 if (mHotseat != null) {
Winson Chung11a1a532013-09-13 11:14:45 -07001314 mHotseat.setOnLongClickListener(this);
Winson Chung3d503fb2011-07-13 17:25:49 -07001315 }
1316
Jorim Jaggid017f882014-01-14 17:08:48 -08001317 mOverviewPanel = (ViewGroup) findViewById(R.id.overview_panel);
Tony Wickhamc75917f2015-09-02 16:11:09 -07001318 // Long-clicking buttons in the overview panel does the same thing as clicking them.
1319 OnLongClickListener performClickOnLongClick = new OnLongClickListener() {
1320 @Override
1321 public boolean onLongClick(View v) {
1322 return v.performClick();
1323 }
1324 };
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001325 mWidgetsButton = findViewById(R.id.widget_button);
1326 mWidgetsButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001327 @Override
Tony Wickhamc75917f2015-09-02 16:11:09 -07001328 public void onClick(View view) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001329 if (!mWorkspace.isSwitchingState()) {
Tony Wickhamc75917f2015-09-02 16:11:09 -07001330 onClickAddWidgetButton(view);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001331 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001332 }
1333 });
Tony Wickhamc75917f2015-09-02 16:11:09 -07001334 mWidgetsButton.setOnLongClickListener(performClickOnLongClick);
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001335 mWidgetsButton.setOnTouchListener(getHapticFeedbackTouchListener());
Adam Cohen61f560d2013-09-30 15:58:20 -07001336
1337 View wallpaperButton = findViewById(R.id.wallpaper_button);
1338 wallpaperButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001339 @Override
Tony Wickhamc75917f2015-09-02 16:11:09 -07001340 public void onClick(View view) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001341 if (!mWorkspace.isSwitchingState()) {
Tony Wickhamc75917f2015-09-02 16:11:09 -07001342 onClickWallpaperPicker(view);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001343 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001344 }
1345 });
Tony Wickhamc75917f2015-09-02 16:11:09 -07001346 wallpaperButton.setOnLongClickListener(performClickOnLongClick);
Adam Cohen61f560d2013-09-30 15:58:20 -07001347 wallpaperButton.setOnTouchListener(getHapticFeedbackTouchListener());
1348
1349 View settingsButton = findViewById(R.id.settings_button);
Jorim Jaggid017f882014-01-14 17:08:48 -08001350 if (hasSettings()) {
1351 settingsButton.setOnClickListener(new OnClickListener() {
1352 @Override
Tony Wickhamc75917f2015-09-02 16:11:09 -07001353 public void onClick(View view) {
Jorim Jaggid017f882014-01-14 17:08:48 -08001354 if (!mWorkspace.isSwitchingState()) {
Tony Wickhamc75917f2015-09-02 16:11:09 -07001355 onClickSettingsButton(view);
Jorim Jaggid017f882014-01-14 17:08:48 -08001356 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08001357 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001358 });
Tony Wickhamc75917f2015-09-02 16:11:09 -07001359 settingsButton.setOnLongClickListener(performClickOnLongClick);
Jorim Jaggid017f882014-01-14 17:08:48 -08001360 settingsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1361 } else {
1362 settingsButton.setVisibility(View.GONE);
Jorim Jaggid017f882014-01-14 17:08:48 -08001363 }
1364
Adam Cohendbdff6b2013-09-18 19:09:15 -07001365 mOverviewPanel.setAlpha(0f);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001366
Winson Chung4c98d922011-05-31 16:50:48 -07001367 // Setup the workspace
1368 mWorkspace.setHapticFeedbackEnabled(false);
1369 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -07001370 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -07001371 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001372
Tony Wickham34d2c912015-09-11 09:27:58 -07001373 // Get the search/delete/uninstall bar
Adam Cohen24ce0b32014-01-14 16:18:14 -08001374 mSearchDropTargetBar = (SearchDropTargetBar)
1375 mDragLayer.findViewById(R.id.search_drop_target_bar);
Tony Wickham34d2c912015-09-11 09:27:58 -07001376 // Get the app info bar
1377 mAppInfoDropTargetBar = (AppInfoDropTargetBar)
1378 mDragLayer.findViewById(R.id.app_info_drop_target_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001379
Winson Chungef7f8742015-06-04 17:18:17 -07001380 // Setup Apps and Widgets
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001381 mAppsView = (AllAppsContainerView) findViewById(R.id.apps_view);
Hyunyoung Song3f471442015-04-08 19:01:34 -07001382 mWidgetsView = (WidgetsContainerView) findViewById(R.id.widgets_view);
Winson Chungef7f8742015-06-04 17:18:17 -07001383 if (mLauncherCallbacks != null && mLauncherCallbacks.getAllAppsSearchBarController() != null) {
1384 mAppsView.setSearchBarController(mLauncherCallbacks.getAllAppsSearchBarController());
1385 } else {
1386 mAppsView.setSearchBarController(mAppsView.newDefaultAppSearchController());
1387 }
Craig Mautner360310b2012-10-26 15:13:08 -07001388
Winson Chung3d503fb2011-07-13 17:25:49 -07001389 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -07001390 dragController.setDragScoller(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001391 dragController.setMoveTarget(mWorkspace);
1392 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -07001393 if (mSearchDropTargetBar != null) {
1394 mSearchDropTargetBar.setup(this, dragController);
Adam Cohenb0df1b02015-03-18 22:21:40 -07001395 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Michael Jurkae0f5a612011-02-07 16:45:41 -08001396 }
Tony Wickham34d2c912015-09-11 09:27:58 -07001397 if (mAppInfoDropTargetBar != null) {
1398 mAppInfoDropTargetBar.setup(this, dragController);
1399 }
Daniel Sandler924b9932013-06-12 00:38:25 -04001400
Daniel Sandlera127b7a2013-06-17 14:25:46 -04001401 if (getResources().getBoolean(R.bool.debug_memory_enabled)) {
Daniel Sandler924b9932013-06-12 00:38:25 -04001402 Log.v(TAG, "adding WeightWatcher");
Adam Cohen39a06042013-07-19 14:30:12 -07001403 mWeightWatcher = new WeightWatcher(this);
1404 mWeightWatcher.setAlpha(0.5f);
1405 ((FrameLayout) mLauncherView).addView(mWeightWatcher,
Daniel Sandler924b9932013-06-12 00:38:25 -04001406 new FrameLayout.LayoutParams(
1407 FrameLayout.LayoutParams.MATCH_PARENT,
Daniel Sandlerb9eb2862013-06-14 20:17:30 -04001408 FrameLayout.LayoutParams.WRAP_CONTENT,
Daniel Sandler924b9932013-06-12 00:38:25 -04001409 Gravity.BOTTOM)
1410 );
Adam Cohen39a06042013-07-19 14:30:12 -07001411
1412 boolean show = shouldShowWeightWatcher();
1413 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
Daniel Sandler924b9932013-06-12 00:38:25 -04001414 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001415 }
1416
1417 /**
Anjali Koppal5ad44842014-03-10 20:34:39 -07001418 * Sets the all apps button. This method is called from {@link Hotseat}.
1419 */
1420 public void setAllAppsButton(View allAppsButton) {
1421 mAllAppsButton = allAppsButton;
1422 }
1423
1424 public View getAllAppsButton() {
1425 return mAllAppsButton;
1426 }
1427
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001428 public View getWidgetsButton() {
1429 return mWidgetsButton;
1430 }
1431
Anjali Koppal5ad44842014-03-10 20:34:39 -07001432 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001433 * Creates a view representing a shortcut.
1434 *
1435 * @param info The data structure describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001436 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001437 View createShortcut(ShortcutInfo info) {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001438 return createShortcut((ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001439 }
1440
1441 /**
1442 * Creates a view representing a shortcut inflated from the specified resource.
1443 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001444 * @param parent The group the shortcut belongs to.
1445 * @param info The data structure describing the shortcut.
1446 *
1447 * @return A View inflated from layoutResId.
1448 */
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001449 public View createShortcut(ViewGroup parent, ShortcutInfo info) {
Sunny Goyal756cd262015-08-20 12:33:21 -07001450 BubbleTextView favorite = (BubbleTextView) getLayoutInflater().inflate(R.layout.app_icon,
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001451 parent, false);
1452 favorite.applyFromShortcutInfo(info, mIconCache);
1453 favorite.setCompoundDrawablePadding(mDeviceProfile.iconDrawablePaddingPx);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001454 favorite.setOnClickListener(this);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001455 favorite.setOnFocusChangeListener(mFocusHandler);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001456 return favorite;
1457 }
1458
1459 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001460 * Add a shortcut to the workspace.
1461 *
1462 * @param data The intent describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001463 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001464 private void completeAddShortcut(Intent data, long container, long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07001465 int cellY) {
1466 int[] cellXY = mTmpAddItemCellCoordinates;
Adam Cohendcd297f2013-06-18 13:13:40 -07001467 CellLayout layout = getCellLayout(container, screenId);
Romain Guycbb89e42009-06-08 15:52:54 -07001468
Sunny Goyal5c97f512015-05-19 16:03:28 -07001469 ShortcutInfo info = InstallShortcutReceiver.fromShortcutIntent(this, data);
Adam Cohend9198822011-11-22 16:42:47 -08001470 if (info == null) {
1471 return;
1472 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001473 final View view = createShortcut(info);
1474
Sunny Goyal5c97f512015-05-19 16:03:28 -07001475 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001476 // First we check if we already know the exact location where we want to add this item.
1477 if (cellX >= 0 && cellY >= 0) {
1478 cellXY[0] = cellX;
1479 cellXY[1] = cellY;
1480 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001481
1482 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001483 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001484 true, null,null)) {
1485 return;
1486 }
1487 DragObject dragObject = new DragObject();
1488 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001489 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1490 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001491 return;
1492 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08001493 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001494 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001495 }
1496
1497 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001498 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001499 return;
1500 }
1501
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001502 LauncherModel.addItemToDatabase(this, info, container, screenId, cellXY[0], cellXY[1]);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001503
1504 if (!mRestoring) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001505 mWorkspace.addInScreen(view, container, screenId, cellXY[0], cellXY[1], 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07001506 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001507 }
1508 }
1509
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001510 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001511 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001512 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001513 * @param appWidgetId The app widget id
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001514 */
Adam Cohen091440a2015-03-18 14:16:05 -07001515 @Thunk void completeAddAppWidget(int appWidgetId, long container, long screenId,
Adam Cohen59400422014-03-05 18:07:04 -08001516 AppWidgetHostView hostView, LauncherAppWidgetProviderInfo appWidgetInfo) {
1517
1518 ItemInfo info = mPendingAddInfo;
Adam Cohened66b2b2012-01-23 17:28:51 -08001519 if (appWidgetInfo == null) {
Adam Cohen59400422014-03-05 18:07:04 -08001520 appWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(this,
1521 mAppWidgetManager.getAppWidgetInfo(appWidgetId));
Adam Cohened66b2b2012-01-23 17:28:51 -08001522 }
Romain Guycbb89e42009-06-08 15:52:54 -07001523
Adam Cohen59400422014-03-05 18:07:04 -08001524 if (appWidgetInfo.isCustomWidget) {
1525 appWidgetId = LauncherAppWidgetInfo.CUSTOM_WIDGET_ID;
Michael Jurkaa63c4522010-08-19 13:52:27 -07001526 }
1527
Adam Cohen59400422014-03-05 18:07:04 -08001528 LauncherAppWidgetInfo launcherInfo;
1529 launcherInfo = new LauncherAppWidgetInfo(appWidgetId, appWidgetInfo.provider);
1530 launcherInfo.spanX = info.spanX;
1531 launcherInfo.spanY = info.spanY;
1532 launcherInfo.minSpanX = info.minSpanX;
1533 launcherInfo.minSpanY = info.minSpanY;
Sunny Goyalffe83f12014-08-14 17:39:34 -07001534 launcherInfo.user = mAppWidgetManager.getUser(appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001535
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001536 LauncherModel.addItemToDatabase(this, launcherInfo,
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001537 container, screenId, info.cellX, info.cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001538
1539 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001540 if (hostView == null) {
1541 // Perform actual inflation because we're live
Adam Cohen59400422014-03-05 18:07:04 -08001542 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId,
1543 appWidgetInfo);
Adam Cohened66b2b2012-01-23 17:28:51 -08001544 } else {
1545 // The AppWidgetHostView has already been inflated and instantiated
1546 launcherInfo.hostView = hostView;
1547 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001548 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001549 launcherInfo.hostView.setVisibility(View.VISIBLE);
Adam Cohenaaa5c212012-10-05 18:14:31 -07001550 launcherInfo.notifyWidgetSizeChanged(this);
1551
Adam Cohen59400422014-03-05 18:07:04 -08001552 mWorkspace.addInScreen(launcherInfo.hostView, container, screenId, info.cellX,
1553 info.cellY, launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001554
1555 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001556 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001557 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001558 }
Romain Guycbb89e42009-06-08 15:52:54 -07001559
Adam Cohended9f8d2010-11-03 13:25:16 -07001560 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1561 @Override
1562 public void onReceive(Context context, Intent intent) {
1563 final String action = intent.getAction();
1564 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1565 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001566 mDragLayer.clearAllResizeFrames();
Winson Chungb745afb2015-03-02 11:51:23 -08001567 updateAutoAdvanceState();
Winson Chung337cd9d2011-03-30 10:39:30 -07001568
Winson Chungc100e8e2011-08-09 16:02:43 -07001569 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001570 // processing a multi-step drop
Hyunyoung Song3f471442015-04-08 19:01:34 -07001571 if (mAppsView != null && mWidgetsView != null &&
Winson Chungb745afb2015-03-02 11:51:23 -08001572 mPendingAddInfo.container == ItemInfo.NO_ID) {
Winson5c6bdbb2015-09-03 11:36:19 -07001573 if (!showWorkspace(false)) {
1574 // If we are already on the workspace, then manually reset all apps
1575 mAppsView.reset();
1576 }
Winson Chung785d2eb2011-04-14 16:08:02 -07001577 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001578 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1579 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08001580 updateAutoAdvanceState();
Dan Sandlerd5024042014-01-09 15:01:33 -05001581 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.DELETE_DATABASE.equals(action)) {
1582 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001583 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001584 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE);
1585 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.MIGRATE_DATABASE.equals(action)) {
1586 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001587 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001588 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE
1589 | LauncherModel.LOADER_FLAG_MIGRATE_SHORTCUTS);
Adam Cohended9f8d2010-11-03 13:25:16 -07001590 }
1591 }
1592 };
1593
1594 @Override
1595 public void onAttachedToWindow() {
1596 super.onAttachedToWindow();
1597
1598 // Listen for broadcasts related to user-presence
1599 final IntentFilter filter = new IntentFilter();
1600 filter.addAction(Intent.ACTION_SCREEN_OFF);
1601 filter.addAction(Intent.ACTION_USER_PRESENT);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001602 // For handling managed profiles
Dan Sandlerd5024042014-01-09 15:01:33 -05001603 if (ENABLE_DEBUG_INTENTS) {
1604 filter.addAction(DebugIntents.DELETE_DATABASE);
1605 filter.addAction(DebugIntents.MIGRATE_DATABASE);
1606 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001607 registerReceiver(mReceiver, filter);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001608 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Sunny Goyal9fc953b2015-08-17 12:24:25 -07001609 setupTransparentSystemBarsForLollipop();
Adam Cohend113e0c2010-11-11 10:48:05 -08001610 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001611 mVisible = true;
1612 }
1613
Adam Cohen0b395352014-06-09 22:54:36 +00001614 /**
Sunny Goyal9fc953b2015-08-17 12:24:25 -07001615 * Sets up transparent navigation and status bars in Lollipop.
Adam Cohen0b395352014-06-09 22:54:36 +00001616 * This method is a no-op for other platform versions.
1617 */
Sunny Goyald0091012015-01-20 15:55:34 -08001618 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Sunny Goyal9fc953b2015-08-17 12:24:25 -07001619 private void setupTransparentSystemBarsForLollipop() {
1620 if (Utilities.ATLEAST_LOLLIPOP) {
Sunny Goyald0091012015-01-20 15:55:34 -08001621 Window window = getWindow();
1622 window.getAttributes().systemUiVisibility |=
1623 (View.SYSTEM_UI_FLAG_LAYOUT_STABLE
1624 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
1625 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
1626 window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS
1627 | WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
1628 window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
1629 window.setStatusBarColor(Color.TRANSPARENT);
1630 window.setNavigationBarColor(Color.TRANSPARENT);
Adam Cohen0b395352014-06-09 22:54:36 +00001631 }
1632 }
1633
Adam Cohended9f8d2010-11-03 13:25:16 -07001634 @Override
1635 public void onDetachedFromWindow() {
1636 super.onDetachedFromWindow();
1637 mVisible = false;
1638
Adam Cohend113e0c2010-11-11 10:48:05 -08001639 if (mAttached) {
1640 unregisterReceiver(mReceiver);
1641 mAttached = false;
1642 }
Winson Chungb745afb2015-03-02 11:51:23 -08001643 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001644 }
1645
1646 public void onWindowVisibilityChanged(int visibility) {
1647 mVisible = visibility == View.VISIBLE;
Winson Chungb745afb2015-03-02 11:51:23 -08001648 updateAutoAdvanceState();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001649 // The following code used to be in onResume, but it turns out onResume is called when
1650 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1651 // is a more appropriate event to handle
1652 if (mVisible) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001653 if (!mWorkspaceLoading) {
1654 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001655 // We want to let Launcher draw itself at least once before we force it to build
1656 // layers on all the workspace pages, so that transitioning to Launcher from other
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001657 // apps is nice and speedy.
1658 observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001659 private boolean mStarted = false;
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001660 public void onDraw() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001661 if (mStarted) return;
1662 mStarted = true;
Michael Jurka6ee21d22012-02-21 18:20:27 -08001663 // We delay the layer building a bit in order to give
1664 // other message processing a time to run. In particular
1665 // this avoids a delay in hiding the IME if it was
1666 // currently shown, because doing that may involve
1667 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001668 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurkadf96add2013-04-03 16:25:02 -07001669 final ViewTreeObserver.OnDrawListener listener = this;
1670 mWorkspace.post(new Runnable() {
1671 public void run() {
Michael Jurkab68e03a2013-04-11 11:36:41 -07001672 if (mWorkspace != null &&
1673 mWorkspace.getViewTreeObserver() != null) {
1674 mWorkspace.getViewTreeObserver().
1675 removeOnDrawListener(listener);
1676 }
Michael Jurkadf96add2013-04-03 16:25:02 -07001677 }
1678 });
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001679 return;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001680 }
1681 });
1682 }
1683 clearTypedText();
1684 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001685 }
1686
Adam Cohen091440a2015-03-18 14:16:05 -07001687 @Thunk void sendAdvanceMessage(long delay) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001688 mHandler.removeMessages(ADVANCE_MSG);
1689 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1690 mHandler.sendMessageDelayed(msg, delay);
1691 mAutoAdvanceSentTime = System.currentTimeMillis();
1692 }
1693
Adam Cohen091440a2015-03-18 14:16:05 -07001694 @Thunk void updateAutoAdvanceState() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001695 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1696 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1697 mAutoAdvanceRunning = autoAdvanceRunning;
1698 if (autoAdvanceRunning) {
Sunny Goyal756cd262015-08-20 12:33:21 -07001699 long delay = mAutoAdvanceTimeLeft == -1 ? ADVANCE_INTERVAL : mAutoAdvanceTimeLeft;
Adam Cohended9f8d2010-11-03 13:25:16 -07001700 sendAdvanceMessage(delay);
1701 } else {
1702 if (!mWidgetsToAdvance.isEmpty()) {
Sunny Goyal756cd262015-08-20 12:33:21 -07001703 mAutoAdvanceTimeLeft = Math.max(0, ADVANCE_INTERVAL -
Adam Cohended9f8d2010-11-03 13:25:16 -07001704 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1705 }
1706 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001707 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001708 }
1709 }
1710 }
1711
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001712 @Thunk final Handler mHandler = new Handler(new Handler.Callback() {
1713
Adam Cohended9f8d2010-11-03 13:25:16 -07001714 @Override
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001715 public boolean handleMessage(Message msg) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001716 if (msg.what == ADVANCE_MSG) {
1717 int i = 0;
1718 for (View key: mWidgetsToAdvance.keySet()) {
1719 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
Sunny Goyal756cd262015-08-20 12:33:21 -07001720 final int delay = ADVANCE_STAGGER * i;
Adam Cohended9f8d2010-11-03 13:25:16 -07001721 if (v instanceof Advanceable) {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001722 mHandler.postDelayed(new Runnable() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001723 public void run() {
1724 ((Advanceable) v).advance();
1725 }
1726 }, delay);
1727 }
1728 i++;
1729 }
Sunny Goyal756cd262015-08-20 12:33:21 -07001730 sendAdvanceMessage(ADVANCE_INTERVAL);
Adam Cohended9f8d2010-11-03 13:25:16 -07001731 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001732 return true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001733 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001734 });
Adam Cohended9f8d2010-11-03 13:25:16 -07001735
Winsonc0b52fe2015-09-09 16:38:15 -07001736 private void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001737 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001738 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1739 if (v instanceof Advanceable) {
1740 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001741 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Winson Chungb745afb2015-03-02 11:51:23 -08001742 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001743 }
1744 }
1745
Winsonc0b52fe2015-09-09 16:38:15 -07001746 private void removeWidgetToAutoAdvance(View hostView) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001747 if (mWidgetsToAdvance.containsKey(hostView)) {
1748 mWidgetsToAdvance.remove(hostView);
Winson Chungb745afb2015-03-02 11:51:23 -08001749 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001750 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001751 }
1752
Hyunyoung Song3f471442015-04-08 19:01:34 -07001753 public void showOutOfSpaceMessage(boolean isHotseatLayout) {
Winson Chung93eef082012-03-23 15:59:27 -07001754 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1755 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001756 }
1757
Winson Chunga6945242014-01-08 14:04:34 -08001758 public DragLayer getDragLayer() {
1759 return mDragLayer;
1760 }
1761
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001762 public AllAppsContainerView getAppsView() {
Winson Chungb745afb2015-03-02 11:51:23 -08001763 return mAppsView;
1764 }
1765
Hyunyoung Song3f471442015-04-08 19:01:34 -07001766 public WidgetsContainerView getWidgetsView() {
1767 return mWidgetsView;
Winson Chungb745afb2015-03-02 11:51:23 -08001768 }
1769
Winson Chunga6945242014-01-08 14:04:34 -08001770 public Workspace getWorkspace() {
1771 return mWorkspace;
1772 }
1773
1774 public Hotseat getHotseat() {
1775 return mHotseat;
1776 }
1777
Jorim Jaggid017f882014-01-14 17:08:48 -08001778 public ViewGroup getOverviewPanel() {
Winson Chunga6945242014-01-08 14:04:34 -08001779 return mOverviewPanel;
1780 }
1781
Winson Chung006ee262015-08-03 14:40:11 -07001782 public SearchDropTargetBar getSearchDropTargetBar() {
Winson Chunga6945242014-01-08 14:04:34 -08001783 return mSearchDropTargetBar;
1784 }
1785
Tony Wickham34d2c912015-09-11 09:27:58 -07001786 public AppInfoDropTargetBar getAppInfoDropTargetBar() {
1787 return mAppInfoDropTargetBar;
1788 }
1789
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001790 public LauncherAppWidgetHost getAppWidgetHost() {
1791 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001792 }
Romain Guycbb89e42009-06-08 15:52:54 -07001793
Winson Chunga9abd0e2010-10-27 17:18:37 -07001794 public LauncherModel getModel() {
1795 return mModel;
1796 }
1797
Winson Chunga6945242014-01-08 14:04:34 -08001798 protected SharedPreferences getSharedPrefs() {
1799 return mSharedPrefs;
1800 }
1801
Adam Cohen2e6da152015-05-06 11:42:25 -07001802 public DeviceProfile getDeviceProfile() {
1803 return mDeviceProfile;
1804 }
1805
Bjorn Bringertc459e522013-06-07 19:36:01 +01001806 public void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001807 getWindow().closeAllPanels();
1808
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001809 // Whatever we were doing is hereby canceled.
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001810 setWaitingForResult(false);
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001811 }
1812
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001813 @Override
1814 protected void onNewIntent(Intent intent) {
Michael Jurka447bf842013-05-15 14:52:15 +02001815 long startTime = 0;
1816 if (DEBUG_RESUME_TIME) {
1817 startTime = System.currentTimeMillis();
1818 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001819 super.onNewIntent(intent);
1820
1821 // Close the menu
Winson15f8b172015-08-19 11:02:39 -07001822 Folder openFolder = mWorkspace.getOpenFolder();
1823 boolean alreadyOnHome = mHasFocus && ((intent.getFlags() &
1824 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1825 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
1826 boolean isActionMain = Intent.ACTION_MAIN.equals(intent.getAction());
1827 if (isActionMain) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001828 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001829 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001830
Adam Cohen6fecd412013-10-02 17:41:50 -07001831 if (mWorkspace == null) {
1832 // Can be cases where mWorkspace is null, this prevents a NPE
1833 return;
1834 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001835 // In all these cases, only animate if we're already on home
1836 mWorkspace.exitWidgetResizeMode();
Adam Cohen9211d422014-10-07 18:14:53 -07001837
Adam Cohen6fecd412013-10-02 17:41:50 -07001838 closeFolder();
1839 exitSpringLoadedDragMode();
1840
1841 // If we are already on home, then just animate back to the workspace,
1842 // otherwise, just wait until onResume to set the state back to Workspace
1843 if (alreadyOnHome) {
Adam Cohened307df2013-10-02 09:37:31 -07001844 showWorkspace(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001845 } else {
1846 mOnResumeState = State.WORKSPACE;
1847 }
1848
1849 final View v = getWindow().peekDecorView();
1850 if (v != null && v.getWindowToken() != null) {
1851 InputMethodManager imm = (InputMethodManager)getSystemService(
1852 INPUT_METHOD_SERVICE);
1853 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1854 }
1855
Winson Chungb745afb2015-03-02 11:51:23 -08001856 // Reset the apps view
1857 if (!alreadyOnHome && mAppsView != null) {
1858 mAppsView.scrollToTop();
1859 }
1860
Hyunyoung Song3f471442015-04-08 19:01:34 -07001861 // Reset the widgets view
1862 if (!alreadyOnHome && mWidgetsView != null) {
1863 mWidgetsView.scrollToTop();
Adam Cohen6fecd412013-10-02 17:41:50 -07001864 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001865
Adam Cohen9211d422014-10-07 18:14:53 -07001866 if (mLauncherCallbacks != null) {
1867 mLauncherCallbacks.onHomeIntent();
1868 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001869 }
Adam Cohened307df2013-10-02 09:37:31 -07001870
Adam Cohen9211d422014-10-07 18:14:53 -07001871 if (mLauncherCallbacks != null) {
1872 mLauncherCallbacks.onNewIntent(intent);
1873 }
Winson15f8b172015-08-19 11:02:39 -07001874
1875 // Defer moving to the default screen until after we callback to the LauncherCallbacks
1876 // as slow logic in the callbacks eat into the time the scroller expects for the snapToPage
1877 // animation.
1878 if (isActionMain) {
Ivan Lee667d6882015-09-03 10:16:07 -06001879 boolean moveToDefaultScreen = mLauncherCallbacks != null ?
1880 mLauncherCallbacks.shouldMoveToDefaultScreenOnHomeIntent() : true;
Winson15f8b172015-08-19 11:02:39 -07001881 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
1882 openFolder == null && moveToDefaultScreen) {
1883 mWorkspace.post(new Runnable() {
1884 @Override
1885 public void run() {
1886 mWorkspace.moveToDefaultScreen(true);
1887 }
1888 });
1889 }
1890 }
1891
1892 if (DEBUG_RESUME_TIME) {
1893 Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime));
1894 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001895 }
1896
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001897 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001898 public void onRestoreInstanceState(Bundle state) {
1899 super.onRestoreInstanceState(state);
1900 for (int page: mSynchronouslyBoundPages) {
1901 mWorkspace.restoreInstanceStateForChild(page);
1902 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001903 }
1904
1905 @Override
1906 protected void onSaveInstanceState(Bundle outState) {
Adam Cohen21cd0022013-10-09 18:57:02 -07001907 if (mWorkspace.getChildCount() > 0) {
Winson Chung9b9fb962013-11-15 15:39:34 -08001908 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN,
1909 mWorkspace.getCurrentPageOffsetFromCustomContent());
Adam Cohen21cd0022013-10-09 18:57:02 -07001910 }
Adam Cohen95bb8002011-07-03 23:40:28 -07001911 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001912
Michael Jurka883f55b2010-10-21 15:47:14 -07001913 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001914 // We close any open folder since it will not be re-opened, and we need to make sure
1915 // this state is reflected.
1916 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001917
Adam Cohendcd297f2013-06-18 13:13:40 -07001918 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screenId > -1 &&
Winson Chung3d503fb2011-07-13 17:25:49 -07001919 mWaitingForResult) {
Sunny Goyal756cd262015-08-20 12:33:21 -07001920 ContentValues itemValues = new ContentValues();
1921 mPendingAddInfo.writeToValues(itemValues);
1922 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_ITEM, itemValues);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001923 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
Adam Cohen4637b5a2013-11-04 18:21:24 -08001924 outState.putInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID, mPendingAddWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001925 }
1926
Hyunyoung Song3f471442015-04-08 19:01:34 -07001927 // Save the current widgets tray?
1928 // TODO(hyunyoungs)
Adam Cohen9211d422014-10-07 18:14:53 -07001929
1930 if (mLauncherCallbacks != null) {
1931 mLauncherCallbacks.onSaveInstanceState(outState);
1932 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001933 }
1934
1935 @Override
1936 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001937 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001938
Winson Chunge7a03942011-08-05 15:05:12 -07001939 // Remove all pending runnables
1940 mHandler.removeMessages(ADVANCE_MSG);
1941 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07001942 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07001943
Winson Chungcd2b0142011-06-08 16:02:26 -07001944 // Stop callbacks from LauncherModel
Daniel Sandlercc8befa2013-06-11 14:45:48 -04001945 LauncherAppState app = (LauncherAppState.getInstance());
Adam Cohen1a85c582014-09-30 09:48:49 -07001946
1947 // It's possible to receive onDestroy after a new Launcher activity has
1948 // been created. In this case, don't interfere with the new Launcher.
1949 if (mModel.isCurrentCallbacks(this)) {
1950 mModel.stopLoader();
1951 app.setLauncher(null);
1952 }
Winson Chungcd2b0142011-06-08 16:02:26 -07001953
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001954 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001955 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001956 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001957 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001958 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001959 mAppWidgetHost = null;
1960
1961 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001962
1963 TextKeyListener.getInstance().release();
1964
Joe Onorato34a0e1b2009-12-14 17:44:51 -08001965 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001966
Adam Cohenaccf3bf2012-04-30 16:07:43 -07001967 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001968 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
Adam Cohend552dd92013-11-26 12:13:11 -08001969 mWorkspace.removeAllWorkspaceScreens();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001970 mWorkspace = null;
1971 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08001972
Michael Jurka2ecf9952012-06-18 12:52:28 -07001973 LauncherAnimUtils.onDestroyActivity();
Adam Cohen9211d422014-10-07 18:14:53 -07001974
1975 if (mLauncherCallbacks != null) {
1976 mLauncherCallbacks.onDestroy();
1977 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001978 }
1979
Adam Cohena9cf38f2011-05-02 15:36:58 -07001980 public DragController getDragController() {
1981 return mDragController;
1982 }
1983
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001984 @Override
1985 public void startActivityForResult(Intent intent, int requestCode) {
Adam Cohen173f7112015-03-27 15:14:00 -07001986 onStartForResult(requestCode);
1987 super.startActivityForResult(intent, requestCode);
1988 }
1989
1990 @Override
1991 public void startIntentSenderForResult (IntentSender intent, int requestCode,
1992 Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) {
1993 onStartForResult(requestCode);
1994 try {
1995 super.startIntentSenderForResult(intent, requestCode,
1996 fillInIntent, flagsMask, flagsValues, extraFlags, options);
1997 } catch (IntentSender.SendIntentException e) {
1998 throw new ActivityNotFoundException();
1999 }
2000 }
2001
2002 private void onStartForResult(int requestCode) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002003 if (requestCode >= 0) {
2004 setWaitingForResult(true);
2005 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002006 }
2007
Winson Chung70d72102011-08-12 11:24:35 -07002008 /**
2009 * Indicates that we want global search for this activity by setting the globalSearch
2010 * argument for {@link #startSearch} to true.
2011 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002012 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07002013 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002014 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002015
Karl Rosaen138a0412009-04-23 19:00:21 -07002016 if (initialQuery == null) {
2017 // Use any text typed in the launcher as the initial query
2018 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07002019 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002020 if (appSearchData == null) {
2021 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01002022 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002023 }
Winson Chungadf0c182012-08-23 14:59:07 -07002024 Rect sourceBounds = new Rect();
2025 if (mSearchDropTargetBar != null) {
2026 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
2027 }
Romain Guycbb89e42009-06-08 15:52:54 -07002028
Ian Parkinson047036e2014-09-01 15:40:53 +01002029 boolean clearTextImmediately = startSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002030 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002031 if (clearTextImmediately) {
2032 clearTypedText();
2033 }
Winson Chungcd99cd32015-04-29 11:03:24 -07002034
2035 // We need to show the workspace after starting the search
2036 showWorkspace(true);
Bjorn Bringertc459e522013-06-07 19:36:01 +01002037 }
2038
Ian Parkinson047036e2014-09-01 15:40:53 +01002039 /**
2040 * Start a text search.
2041 *
2042 * @return {@code true} if the search will start immediately, so any further keypresses
2043 * will be handled directly by the search UI. {@code false} if {@link Launcher} should continue
2044 * to buffer keypresses.
2045 */
2046 public boolean startSearch(String initialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002047 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Adam Cohen9211d422014-10-07 18:14:53 -07002048 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
2049 return mLauncherCallbacks.startSearch(initialQuery, selectInitialQuery, appSearchData,
2050 sourceBounds);
2051 }
2052
Michael Jurkaa33411c2012-06-14 16:18:21 -07002053 startGlobalSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002054 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002055 return false;
Michael Jurkaa33411c2012-06-14 16:18:21 -07002056 }
2057
2058 /**
2059 * Starts the global search activity. This code is a copied from SearchManager
2060 */
Bjorn Bringertc459e522013-06-07 19:36:01 +01002061 private void startGlobalSearch(String initialQuery,
Michael Jurkaa33411c2012-06-14 16:18:21 -07002062 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002063 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07002064 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2065 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
2066 if (globalSearchActivity == null) {
2067 Log.w(TAG, "No global search activity found.");
2068 return;
2069 }
2070 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
2071 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2072 intent.setComponent(globalSearchActivity);
2073 // Make sure that we have a Bundle to put source in
2074 if (appSearchData == null) {
2075 appSearchData = new Bundle();
2076 } else {
2077 appSearchData = new Bundle(appSearchData);
2078 }
Adam Cohen9211d422014-10-07 18:14:53 -07002079 // Set source to package name of app that starts global search if not set already.
Michael Jurkaa33411c2012-06-14 16:18:21 -07002080 if (!appSearchData.containsKey("source")) {
2081 appSearchData.putString("source", getPackageName());
2082 }
2083 intent.putExtra(SearchManager.APP_DATA, appSearchData);
2084 if (!TextUtils.isEmpty(initialQuery)) {
2085 intent.putExtra(SearchManager.QUERY, initialQuery);
2086 }
2087 if (selectInitialQuery) {
2088 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
2089 }
2090 intent.setSourceBounds(sourceBounds);
2091 try {
2092 startActivity(intent);
2093 } catch (ActivityNotFoundException ex) {
2094 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
2095 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002096 }
2097
Winson Chungbedf9232015-07-10 12:38:30 -07002098 public void startSearchFromAllApps(View v, Intent searchIntent, String searchQuery) {
2099 if (mLauncherCallbacks != null && mLauncherCallbacks.startSearchFromAllApps(searchQuery)) {
2100 return;
2101 }
2102
2103 // If not handled, then just start the provided search intent
2104 startActivitySafely(v, searchIntent, null);
2105 }
2106
Yura4f93ec62014-02-04 14:15:21 +00002107 public boolean isOnCustomContent() {
2108 return mWorkspace.isOnOrMovingToCustomContent();
2109 }
2110
Winson Chung70d72102011-08-12 11:24:35 -07002111 @Override
Winson Chung70d72102011-08-12 11:24:35 -07002112 public boolean onPrepareOptionsMenu(Menu menu) {
2113 super.onPrepareOptionsMenu(menu);
Yura4f93ec62014-02-04 14:15:21 +00002114 if (!isOnCustomContent()) {
2115 // Close any open folders
2116 closeFolder();
2117 // Stop resizing any widgets
2118 mWorkspace.exitWidgetResizeMode();
2119 if (!mWorkspace.isInOverviewMode()) {
2120 // Show the overview mode
2121 showOverviewMode(true);
2122 } else {
2123 showWorkspace(true);
2124 }
Winson Chunge0298742014-01-17 12:03:00 -08002125 }
Adam Cohen9211d422014-10-07 18:14:53 -07002126 if (mLauncherCallbacks != null) {
2127 return mLauncherCallbacks.onPrepareOptionsMenu(menu);
2128 }
2129
Michael Jurkab94f3f82013-09-11 18:08:54 +02002130 return false;
Winson Chung70d72102011-08-12 11:24:35 -07002131 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002132
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002133 @Override
2134 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07002135 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07002136 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07002137 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002138 }
2139
Joe Onorato9c1289c2009-08-17 11:03:03 -04002140 public boolean isWorkspaceLocked() {
2141 return mWorkspaceLoading || mWaitingForResult;
2142 }
2143
Adam Cohen517a7f52014-03-01 12:12:59 -08002144 public boolean isWorkspaceLoading() {
2145 return mWorkspaceLoading;
2146 }
2147
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002148 private void setWorkspaceLoading(boolean value) {
2149 boolean isLocked = isWorkspaceLocked();
2150 mWorkspaceLoading = value;
2151 if (isLocked != isWorkspaceLocked()) {
2152 onWorkspaceLockedChanged();
2153 }
2154 }
2155
2156 private void setWaitingForResult(boolean value) {
2157 boolean isLocked = isWorkspaceLocked();
2158 mWaitingForResult = value;
2159 if (isLocked != isWorkspaceLocked()) {
2160 onWorkspaceLockedChanged();
2161 }
2162 }
2163
Adam Cohen9211d422014-10-07 18:14:53 -07002164 protected void onWorkspaceLockedChanged() {
2165 if (mLauncherCallbacks != null) {
2166 mLauncherCallbacks.onWorkspaceLockedChanged();
2167 }
2168 }
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002169
Michael Jurka0280c3b2010-09-17 15:00:07 -07002170 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07002171 mPendingAddInfo.container = ItemInfo.NO_ID;
Adam Cohendcd297f2013-06-18 13:13:40 -07002172 mPendingAddInfo.screenId = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002173 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
2174 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Sunny Goyal233ee962015-08-03 13:05:01 -07002175 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = 1;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002176 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07002177
Sunny Goyale6b63a32015-01-16 16:14:29 -08002178 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info, final
Adam Cohen59400422014-03-05 18:07:04 -08002179 AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo) {
Adam Cohenad4e15c2013-10-17 16:21:35 -07002180 addAppWidgetImpl(appWidgetId, info, boundWidget, appWidgetInfo, 0);
2181 }
2182
Sunny Goyale6b63a32015-01-16 16:14:29 -08002183 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
Adam Cohen59400422014-03-05 18:07:04 -08002184 final AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo,
2185 int delay) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002186 if (appWidgetInfo.configure != null) {
2187 mPendingAddWidgetInfo = appWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -08002188 mPendingAddWidgetId = appWidgetId;
Michael Jurkaaf442092010-06-10 17:01:57 -07002189
Bjorn Bringert7984c942009-12-09 15:38:25 +00002190 // Launch over to configure widget, if needed
Sunny Goyalffe83f12014-08-14 17:39:34 -07002191 mAppWidgetManager.startConfigActivity(appWidgetInfo, appWidgetId, this,
2192 mAppWidgetHost, REQUEST_CREATE_APPWIDGET);
2193
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002194 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00002195 // Otherwise just add it
Adam Cohenad4e15c2013-10-17 16:21:35 -07002196 Runnable onComplete = new Runnable() {
2197 @Override
2198 public void run() {
2199 // Exit spring loaded mode if necessary after adding the widget
2200 exitSpringLoadedDragModeDelayed(true, EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT,
2201 null);
2202 }
2203 };
Adam Cohendcd297f2013-06-18 13:13:40 -07002204 completeAddAppWidget(appWidgetId, info.container, info.screenId, boundWidget,
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002205 appWidgetInfo);
Adam Cohen689ff162014-05-08 17:27:56 -07002206 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, delay, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002207 }
2208 }
Romain Guycbb89e42009-06-08 15:52:54 -07002209
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002210 protected void moveToCustomContentScreen(boolean animate) {
Sandeep Siddharthaf2b47f12013-09-26 19:49:27 -07002211 // Close any folders that may be open.
2212 closeFolder();
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002213 mWorkspace.moveToCustomContentScreen(animate);
2214 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002215
2216 public void addPendingItem(PendingAddItemInfo info, long container, long screenId,
2217 int[] cell, int spanX, int spanY) {
2218 switch (info.itemType) {
2219 case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET:
2220 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
2221 int span[] = new int[2];
2222 span[0] = spanX;
2223 span[1] = spanY;
2224 addAppWidgetFromDrop((PendingAddWidgetInfo) info,
2225 container, screenId, cell, span);
2226 break;
2227 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
2228 processShortcutFromDrop(info.componentName, container, screenId, cell);
2229 break;
2230 default:
2231 throw new IllegalStateException("Unknown item type: " + info.itemType);
2232 }
2233 }
2234
Adam Cohenfbba09b2011-07-18 21:43:05 -07002235 /**
2236 * Process a shortcut drop.
2237 *
2238 * @param componentName The name of the component
Adam Cohendcd297f2013-06-18 13:13:40 -07002239 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002240 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002241 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002242 private void processShortcutFromDrop(ComponentName componentName, long container, long screenId,
2243 int[] cell) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002244 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002245 mPendingAddInfo.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002246 mPendingAddInfo.screenId = screenId;
Adam Cohenfbba09b2011-07-18 21:43:05 -07002247
2248 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002249 mPendingAddInfo.cellX = cell[0];
2250 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002251 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002252
2253 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
2254 createShortcutIntent.setComponent(componentName);
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002255 Utilities.startActivityForResultSafely(this, createShortcutIntent, REQUEST_CREATE_SHORTCUT);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002256 }
2257
Adam Cohenfbba09b2011-07-18 21:43:05 -07002258 /**
2259 * Process a widget drop.
2260 *
2261 * @param info The PendingAppWidgetInfo of the widget being added.
Adam Cohendcd297f2013-06-18 13:13:40 -07002262 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002263 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002264 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002265 private void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, long screenId,
2266 int[] cell, int[] span) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07002267 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002268 mPendingAddInfo.container = info.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002269 mPendingAddInfo.screenId = info.screenId = screenId;
Adam Cohend41fbf52012-02-16 23:53:59 -08002270 mPendingAddInfo.minSpanX = info.minSpanX;
2271 mPendingAddInfo.minSpanY = info.minSpanY;
2272
Adam Cohenfbba09b2011-07-18 21:43:05 -07002273 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002274 mPendingAddInfo.cellX = cell[0];
2275 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002276 }
Adam Cohend41fbf52012-02-16 23:53:59 -08002277 if (span != null) {
2278 mPendingAddInfo.spanX = span[0];
2279 mPendingAddInfo.spanY = span[1];
2280 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002281
Adam Cohened66b2b2012-01-23 17:28:51 -08002282 AppWidgetHostView hostView = info.boundWidget;
2283 int appWidgetId;
2284 if (hostView != null) {
2285 appWidgetId = hostView.getAppWidgetId();
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002286 addAppWidgetImpl(appWidgetId, info, hostView, info.info);
Sunny Goyal5b9ebca2015-06-01 18:37:32 -07002287
2288 // Clear the boundWidget so that it doesn't get destroyed.
2289 info.boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -08002290 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002291 // In this case, we either need to start an activity to get permission to bind
2292 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08002293 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07002294 Bundle options = info.bindOptions;
2295
Sunny Goyalffe83f12014-08-14 17:39:34 -07002296 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
2297 appWidgetId, info.info, options);
Adam Cohendd70d662012-10-04 16:53:44 -07002298 if (success) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002299 addAppWidgetImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07002300 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002301 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07002302 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
2303 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
2304 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Sunny Goyalffe83f12014-08-14 17:39:34 -07002305 mAppWidgetManager.getUser(mPendingAddWidgetInfo)
2306 .addToIntent(intent, AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE);
Adam Cohendd70d662012-10-04 16:53:44 -07002307 // TODO: we need to make sure that this accounts for the options bundle.
2308 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07002309 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
2310 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002311 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002312 }
2313
Adam Cohendcd297f2013-06-18 13:13:40 -07002314 FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07002315 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07002316 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002317 folderInfo.title = getText(R.string.folder_name);
2318
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002319 // Update the model
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07002320 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId,
2321 cellX, cellY);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002322 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002323
2324 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07002325 FolderIcon newFolder =
2326 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07002327 mWorkspace.addInScreen(newFolder, container, screenId, cellX, cellY, 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07002328 isWorkspaceLocked());
Winson Chung5f8afe62013-08-12 16:19:28 -07002329 // Force measure the new folder icon
2330 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
2331 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07002332 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002333 }
Romain Guycbb89e42009-06-08 15:52:54 -07002334
Winsonc0b52fe2015-09-09 16:38:15 -07002335 /**
2336 * Unbinds the view for the specified item, and removes the item and all its children items
2337 * from the database. For folders, this incl udes the folder contents. AppWidgets will also
2338 * have their widget ids deleted.
2339 */
2340 public boolean removeItem(View v, ItemInfo itemInfo, boolean deleteFromDb) {
2341 if (itemInfo instanceof ShortcutInfo) {
2342 mWorkspace.removeWorkspaceItem(v);
2343 if (deleteFromDb) {
2344 LauncherModel.deleteItemFromDatabase(this, itemInfo);
2345 }
2346 } else if (itemInfo instanceof FolderInfo) {
2347 final FolderInfo folderInfo = (FolderInfo) itemInfo;
2348 unbindFolder(folderInfo);
2349 mWorkspace.removeWorkspaceItem(v);
2350 if (deleteFromDb) {
2351 LauncherModel.deleteFolderAndContentsFromDatabase(this, folderInfo);
2352 }
2353 } else if (itemInfo instanceof LauncherAppWidgetInfo) {
2354 final LauncherAppWidgetInfo widgetInfo = (LauncherAppWidgetInfo) itemInfo;
2355 unbindAppWidget(widgetInfo, deleteFromDb);
2356 if (deleteFromDb) {
2357 LauncherModel.deleteItemFromDatabase(this, widgetInfo);
2358 }
2359 } else {
2360 return false;
2361 }
2362 return true;
2363 }
2364
2365 /**
2366 * Unbinds any launcher references to the folder.
2367 */
2368 private void unbindFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002369 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002370 }
2371
Winsonc0b52fe2015-09-09 16:38:15 -07002372 /**
2373 * Unbinds any launcher references to the widget and deletes the app widget id.
2374 */
2375 private void unbindAppWidget(final LauncherAppWidgetInfo widgetInfo, boolean deleteAppWidgetId) {
2376 final LauncherAppWidgetHost appWidgetHost = getAppWidgetHost();
2377 if (deleteAppWidgetId && appWidgetHost != null &&
2378 !widgetInfo.isCustomWidget() && widgetInfo.isWidgetIdValid()) {
2379 // Deleting an app widget ID is a void call but writes to disk before returning
2380 // to the caller...
2381 new AsyncTask<Void, Void, Void>() {
2382 public Void doInBackground(Void ... args) {
2383 appWidgetHost.deleteAppWidgetId(widgetInfo.appWidgetId);
2384 return null;
2385 }
2386 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
2387 }
2388 removeWidgetToAutoAdvance(widgetInfo.hostView);
2389 widgetInfo.hostView = null;
2390 }
2391
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002392 @Override
2393 public boolean dispatchKeyEvent(KeyEvent event) {
2394 if (event.getAction() == KeyEvent.ACTION_DOWN) {
2395 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002396 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07002397 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08002398 case KeyEvent.KEYCODE_VOLUME_DOWN:
Sunny Goyal4bbf4192014-11-11 12:23:59 -08002399 if (Utilities.isPropertyEnabled(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08002400 dumpState();
2401 return true;
2402 }
2403 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07002404 }
2405 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2406 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07002407 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002408 return true;
2409 }
2410 }
2411
2412 return super.dispatchKeyEvent(event);
2413 }
2414
Joe Onorato88ec0992009-11-19 13:16:06 -08002415 @Override
2416 public void onBackPressed() {
Adam Cohen9211d422014-10-07 18:14:53 -07002417 if (mLauncherCallbacks != null && mLauncherCallbacks.handleBackPressed()) {
2418 return;
2419 }
2420
Sunny Goyal45478022015-06-08 16:52:41 -07002421 if (mDragController.isDragging()) {
2422 mDragController.cancelDrag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08002423 return;
2424 }
2425
Winson Chungb745afb2015-03-02 11:51:23 -08002426 if (isAppsViewVisible()) {
2427 showWorkspace(true);
2428 } else if (isWidgetsViewVisible()) {
2429 showOverviewMode(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002430 } else if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002431 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002432 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07002433 Folder openFolder = mWorkspace.getOpenFolder();
2434 if (openFolder.isEditingName()) {
2435 openFolder.dismissEditingName();
2436 } else {
2437 closeFolder();
2438 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002439 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08002440 mWorkspace.exitWidgetResizeMode();
2441
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002442 // Back button is a no-op here, but give at least some feedback for the button press
2443 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07002444 }
Joe Onorato88ec0992009-11-19 13:16:06 -08002445 }
2446
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002447 /**
Sunny Goyal383c5072015-06-12 21:18:53 -07002448 * Re-listen when widget host is reset.
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002449 */
Sunny Goyal383c5072015-06-12 21:18:53 -07002450 @Override
2451 public void onAppWidgetHostReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08002452 if (mAppWidgetHost != null) {
2453 mAppWidgetHost.startListening();
2454 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002455 }
2456
2457 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002458 * Launches the intent referred by the clicked shortcut.
2459 *
2460 * @param v The view representing the clicked shortcut.
2461 */
2462 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002463 // Make sure that rogue clicks don't get through while allapps is launching, or after the
2464 // view has detached (it's possible for this to happen if the view is removed mid touch).
2465 if (v.getWindowToken() == null) {
2466 return;
2467 }
2468
Winson Chung9b0b2fe2012-02-24 13:03:34 -08002469 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002470 return;
2471 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07002472
Adam Cohen1697b792013-09-17 19:08:21 -07002473 if (v instanceof Workspace) {
2474 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002475 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002476 }
2477 return;
2478 }
2479
2480 if (v instanceof CellLayout) {
2481 if (mWorkspace.isInOverviewMode()) {
Sunny Goyalce5a7e52015-07-08 15:44:27 -07002482 mWorkspace.snapToPageFromOverView(mWorkspace.indexOfChild(v));
2483 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002484 }
Sunny Goyalce5a7e52015-07-08 15:44:27 -07002485 return;
Adam Cohenf358a4b2013-07-23 16:47:31 -07002486 }
2487
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002488 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002489 if (tag instanceof ShortcutInfo) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002490 onClickAppShortcut(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002491 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002492 if (v instanceof FolderIcon) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002493 onClickFolderIcon(v);
Adam Cohena9cf38f2011-05-02 15:36:58 -07002494 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002495 } else if (v == mAllAppsButton) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002496 onClickAllAppsButton(v);
Sunny Goyal508da152014-08-14 10:53:27 -07002497 } else if (tag instanceof AppInfo) {
2498 startAppShortcutOrInfoActivity(v);
Sunny Goyalff572272014-07-23 13:58:07 -07002499 } else if (tag instanceof LauncherAppWidgetInfo) {
2500 if (v instanceof PendingAppWidgetHostView) {
2501 onClickPendingWidget((PendingAppWidgetHostView) v);
2502 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002503 }
2504 }
2505
Sunny Goyal70660032015-05-14 00:07:08 -07002506 @SuppressLint("ClickableViewAccessibility")
Michael Jurka0e260592010-06-30 17:07:39 -07002507 public boolean onTouch(View v, MotionEvent event) {
Michael Jurka0e260592010-06-30 17:07:39 -07002508 return false;
2509 }
2510
Michael Jurkaaf442092010-06-10 17:01:57 -07002511 /**
Sunny Goyalff572272014-07-23 13:58:07 -07002512 * Event handler for the app widget view which has not fully restored.
2513 */
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002514 public void onClickPendingWidget(final PendingAppWidgetHostView v) {
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002515 if (mIsSafeModeEnabled) {
2516 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2517 return;
2518 }
2519
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002520 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) v.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07002521 if (v.isReadyForClickSetup()) {
Sunny Goyalff572272014-07-23 13:58:07 -07002522 int widgetId = info.appWidgetId;
2523 AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
2524 if (appWidgetInfo != null) {
Adam Cohen59400422014-03-05 18:07:04 -08002525 mPendingAddWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(
2526 this, appWidgetInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07002527 mPendingAddInfo.copyFrom(info);
2528 mPendingAddWidgetId = widgetId;
2529
Sunny Goyalffe83f12014-08-14 17:39:34 -07002530 AppWidgetManagerCompat.getInstance(this).startConfigActivity(appWidgetInfo,
2531 info.appWidgetId, this, mAppWidgetHost, REQUEST_RECONFIGURE_APPWIDGET);
Sunny Goyalff572272014-07-23 13:58:07 -07002532 }
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002533 } else if (info.installProgress < 0) {
2534 // The install has not been queued
2535 final String packageName = info.providerName.getPackageName();
2536 showBrokenAppInstallDialog(packageName,
2537 new DialogInterface.OnClickListener() {
2538 public void onClick(DialogInterface dialog, int id) {
2539 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
2540 }
2541 });
2542 } else {
2543 // Download has started.
2544 final String packageName = info.providerName.getPackageName();
2545 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
Sunny Goyalff572272014-07-23 13:58:07 -07002546 }
2547 }
2548
2549 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002550 * Event handler for the "grid" button that appears on the home screen, which
2551 * enters all apps mode.
2552 *
2553 * @param v The view that was clicked.
2554 */
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002555 protected void onClickAllAppsButton(View v) {
2556 if (LOGD) Log.d(TAG, "onClickAllAppsButton");
Winson Chung76648c52015-07-10 14:33:23 -07002557 if (!isAppsViewVisible()) {
Winson Chung4ac30062015-05-08 17:34:17 -07002558 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07002559 true /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungbedf9232015-07-10 12:38:30 -07002560
2561 if (mLauncherCallbacks != null) {
2562 mLauncherCallbacks.onClickAllAppsButton(v);
2563 }
Winson Chung76648c52015-07-10 14:33:23 -07002564 }
2565 }
2566
2567 protected void onLongClickAllAppsButton(View v) {
2568 if (LOGD) Log.d(TAG, "onLongClickAllAppsButton");
2569 if (!isAppsViewVisible()) {
2570 showAppsView(true /* animated */, false /* resetListToTop */,
2571 true /* updatePredictedApps */, true /* focusSearchBar */);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002572 }
2573 }
2574
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002575 private void showBrokenAppInstallDialog(final String packageName,
2576 DialogInterface.OnClickListener onSearchClickListener) {
Sunny Goyale03b8122014-10-08 09:55:24 -07002577 new AlertDialog.Builder(this)
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002578 .setTitle(R.string.abandoned_promises_title)
2579 .setMessage(R.string.abandoned_promise_explanation)
2580 .setPositiveButton(R.string.abandoned_search, onSearchClickListener)
2581 .setNeutralButton(R.string.abandoned_clean_this,
2582 new DialogInterface.OnClickListener() {
2583 public void onClick(DialogInterface dialog, int id) {
2584 final UserHandleCompat user = UserHandleCompat.myUserHandle();
2585 mWorkspace.removeAbandonedPromise(packageName, user);
2586 }
2587 })
2588 .create().show();
2589 return;
2590 }
2591
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002592 /**
2593 * Event handler for an app shortcut click.
2594 *
2595 * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.
2596 */
Chris Wren40c5ed32014-06-24 18:24:23 -04002597 protected void onClickAppShortcut(final View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002598 if (LOGD) Log.d(TAG, "onClickAppShortcut");
2599 Object tag = v.getTag();
2600 if (!(tag instanceof ShortcutInfo)) {
2601 throw new IllegalArgumentException("Input must be a Shortcut");
2602 }
2603
2604 // Open shortcut
2605 final ShortcutInfo shortcut = (ShortcutInfo) tag;
Sunny Goyal1a745e82014-10-02 15:58:31 -07002606
2607 if (shortcut.isDisabled != 0) {
2608 int error = R.string.activity_not_available;
2609 if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_SAFEMODE) != 0) {
2610 error = R.string.safemode_shortcut_error;
2611 }
2612 Toast.makeText(this, error, Toast.LENGTH_SHORT).show();
2613 return;
2614 }
2615
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002616 final Intent intent = shortcut.intent;
2617
2618 // Check for special shortcuts
2619 if (intent.getComponent() != null) {
2620 final String shortcutClass = intent.getComponent().getClassName();
2621
2622 if (shortcutClass.equals(MemoryDumpActivity.class.getName())) {
2623 MemoryDumpActivity.startDump(this);
2624 return;
2625 } else if (shortcutClass.equals(ToggleWeightWatcher.class.getName())) {
2626 toggleShowWeightWatcher();
2627 return;
2628 }
2629 }
2630
Chris Wren40c5ed32014-06-24 18:24:23 -04002631 // Check for abandoned promise
Sunny Goyal34942622014-08-29 17:20:55 -07002632 if ((v instanceof BubbleTextView)
2633 && shortcut.isPromise()
2634 && !shortcut.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE)) {
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002635 showBrokenAppInstallDialog(
Sunny Goyal34942622014-08-29 17:20:55 -07002636 shortcut.getTargetComponent().getPackageName(),
Chris Wren40c5ed32014-06-24 18:24:23 -04002637 new DialogInterface.OnClickListener() {
2638 public void onClick(DialogInterface dialog, int id) {
Sunny Goyal508da152014-08-14 10:53:27 -07002639 startAppShortcutOrInfoActivity(v);
Chris Wren40c5ed32014-06-24 18:24:23 -04002640 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002641 });
Chris Wren40c5ed32014-06-24 18:24:23 -04002642 return;
2643 }
2644
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002645 // Start activities
Sunny Goyal508da152014-08-14 10:53:27 -07002646 startAppShortcutOrInfoActivity(v);
Adam Cohen9211d422014-10-07 18:14:53 -07002647
2648 if (mLauncherCallbacks != null) {
2649 mLauncherCallbacks.onClickAppShortcut(v);
2650 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002651 }
2652
Adam Cohen091440a2015-03-18 14:16:05 -07002653 @Thunk void startAppShortcutOrInfoActivity(View v) {
Chris Wren40c5ed32014-06-24 18:24:23 -04002654 Object tag = v.getTag();
Sunny Goyal508da152014-08-14 10:53:27 -07002655 final ShortcutInfo shortcut;
2656 final Intent intent;
2657 if (tag instanceof ShortcutInfo) {
2658 shortcut = (ShortcutInfo) tag;
2659 intent = shortcut.intent;
2660 int[] pos = new int[2];
2661 v.getLocationOnScreen(pos);
2662 intent.setSourceBounds(new Rect(pos[0], pos[1],
2663 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Chris Wren40c5ed32014-06-24 18:24:23 -04002664
Sunny Goyal508da152014-08-14 10:53:27 -07002665 } else if (tag instanceof AppInfo) {
2666 shortcut = null;
2667 intent = ((AppInfo) tag).intent;
2668 } else {
2669 throw new IllegalArgumentException("Input must be a Shortcut or AppInfo");
2670 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002671
2672 boolean success = startActivitySafely(v, intent, tag);
Winson Chung8f1eff72015-05-28 17:33:40 -07002673 mStats.recordLaunch(v, intent, shortcut);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002674
2675 if (success && v instanceof BubbleTextView) {
2676 mWaitingForResume = (BubbleTextView) v;
2677 mWaitingForResume.setStayPressed(true);
2678 }
2679 }
2680
2681 /**
2682 * Event handler for a folder icon click.
2683 *
2684 * @param v The view that was clicked. Must be an instance of {@link FolderIcon}.
2685 */
2686 protected void onClickFolderIcon(View v) {
2687 if (LOGD) Log.d(TAG, "onClickFolder");
2688 if (!(v instanceof FolderIcon)){
2689 throw new IllegalArgumentException("Input must be a FolderIcon");
2690 }
2691
Sunny Goyal317698b2015-07-29 11:45:41 -07002692 // TODO(sunnygoyal): Re-evaluate this code.
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002693 FolderIcon folderIcon = (FolderIcon) v;
2694 final FolderInfo info = folderIcon.getFolderInfo();
2695 Folder openFolder = mWorkspace.getFolderForTag(info);
2696
2697 // If the folder info reports that the associated folder is open, then verify that
2698 // it is actually opened. There have been a few instances where this gets out of sync.
2699 if (info.opened && openFolder == null) {
2700 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2701 + info.screenId + " (" + info.cellX + ", " + info.cellY + ")");
2702 info.opened = false;
2703 }
2704
2705 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
2706 // Close any open folder
2707 closeFolder();
2708 // Open the requested folder
2709 openFolder(folderIcon);
2710 } else {
2711 // Find the open folder...
2712 int folderScreen;
2713 if (openFolder != null) {
2714 folderScreen = mWorkspace.getPageForView(openFolder);
2715 // .. and close it
2716 closeFolder(openFolder);
2717 if (folderScreen != mWorkspace.getCurrentPage()) {
2718 // Close any folder open on the current screen
2719 closeFolder();
2720 // Pull the folder onto this screen
2721 openFolder(folderIcon);
2722 }
2723 }
2724 }
Adam Cohen9211d422014-10-07 18:14:53 -07002725
2726 if (mLauncherCallbacks != null) {
2727 mLauncherCallbacks.onClickFolderIcon(v);
2728 }
Michael Jurka5130e402011-10-13 04:55:35 -07002729 }
2730
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002731 /**
2732 * Event handler for the (Add) Widgets button that appears after a long press
2733 * on the home screen.
2734 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002735 protected void onClickAddWidgetButton(View view) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002736 if (LOGD) Log.d(TAG, "onClickAddWidgetButton");
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002737 if (mIsSafeModeEnabled) {
2738 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2739 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08002740 showWidgetsView(true /* animated */, true /* resetPageToZero */);
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002741 if (mLauncherCallbacks != null) {
2742 mLauncherCallbacks.onClickAddWidgetButton(view);
2743 }
Adam Cohen9211d422014-10-07 18:14:53 -07002744 }
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002745 }
2746
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002747 /**
2748 * Event handler for the wallpaper picker button that appears after a long press
2749 * on the home screen.
2750 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002751 protected void onClickWallpaperPicker(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002752 if (LOGD) Log.d(TAG, "onClickWallpaperPicker");
Tony Wickham785f7a52015-08-31 17:28:32 -07002753 int pageScroll = mWorkspace.getScrollForPage(mWorkspace.getPageNearestToCenterOfScreen());
2754 float offset = mWorkspace.mWallpaperOffset.wallpaperOffsetForScroll(pageScroll);
2755 startActivityForResult(new Intent(Intent.ACTION_SET_WALLPAPER).setPackage(getPackageName())
2756 .putExtra(WallpaperPickerActivity.EXTRA_WALLPAPER_OFFSET, offset),
Sunny Goyal6a1e95a2015-03-20 17:26:30 -07002757 REQUEST_PICK_WALLPAPER);
Adam Cohen9211d422014-10-07 18:14:53 -07002758
2759 if (mLauncherCallbacks != null) {
2760 mLauncherCallbacks.onClickWallpaperPicker(v);
2761 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002762 }
2763
2764 /**
2765 * Event handler for a click on the settings button that appears after a long press
2766 * on the home screen.
2767 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002768 protected void onClickSettingsButton(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002769 if (LOGD) Log.d(TAG, "onClickSettingsButton");
Adam Cohen9211d422014-10-07 18:14:53 -07002770 if (mLauncherCallbacks != null) {
2771 mLauncherCallbacks.onClickSettingsButton(v);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07002772 } else {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002773 startActivity(new Intent(this, SettingsActivity.class));
Adam Cohen9211d422014-10-07 18:14:53 -07002774 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002775 }
2776
Adam Cohen61f560d2013-09-30 15:58:20 -07002777 public View.OnTouchListener getHapticFeedbackTouchListener() {
2778 if (mHapticFeedbackTouchListener == null) {
2779 mHapticFeedbackTouchListener = new View.OnTouchListener() {
Sunny Goyal70660032015-05-14 00:07:08 -07002780 @SuppressLint("ClickableViewAccessibility")
Adam Cohen61f560d2013-09-30 15:58:20 -07002781 @Override
2782 public boolean onTouch(View v, MotionEvent event) {
2783 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
2784 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2785 }
2786 return false;
2787 }
2788 };
2789 }
2790 return mHapticFeedbackTouchListener;
2791 }
2792
Adam Cohen9211d422014-10-07 18:14:53 -07002793 public void onDragStarted(View view) {
2794 if (isOnCustomContent()) {
2795 // Custom content screen doesn't participate in drag and drop. If on custom
2796 // content screen, move to default.
2797 moveWorkspaceToDefaultScreen();
2798 }
2799
2800 if (mLauncherCallbacks != null) {
2801 mLauncherCallbacks.onDragStarted(view);
2802 }
2803 }
Anjali Koppal62d18ed2014-03-10 17:04:03 -07002804
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002805 /**
2806 * Called when the user stops interacting with the launcher.
2807 * This implies that the user is now on the homescreen and is not doing housekeeping.
2808 */
Adam Cohen9211d422014-10-07 18:14:53 -07002809 protected void onInteractionEnd() {
2810 if (mLauncherCallbacks != null) {
2811 mLauncherCallbacks.onInteractionEnd();
2812 }
2813 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002814
2815 /**
2816 * Called when the user starts interacting with the launcher.
2817 * The possible interactions are:
2818 * - open all apps
2819 * - reorder an app shortcut, or a widget
2820 * - open the overview mode.
2821 * This is a good time to stop doing things that only make sense
2822 * when the user is on the homescreen and not doing housekeeping.
2823 */
Adam Cohen9211d422014-10-07 18:14:53 -07002824 protected void onInteractionBegin() {
2825 if (mLauncherCallbacks != null) {
2826 mLauncherCallbacks.onInteractionBegin();
2827 }
2828 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002829
Winson Chungcd99cd32015-04-29 11:03:24 -07002830 /** Updates the interaction state. */
2831 public void updateInteraction(Workspace.State fromState, Workspace.State toState) {
Winson Chung83f59ab2015-05-05 17:21:58 -07002832 // Only update the interacting state if we are transitioning to/from a view with an
Winson Chungcd99cd32015-04-29 11:03:24 -07002833 // overlay
Winson Chungef7f8742015-06-04 17:18:17 -07002834 boolean fromStateWithOverlay = fromState != Workspace.State.NORMAL;
2835 boolean toStateWithOverlay = toState != Workspace.State.NORMAL;
Winson Chung83f59ab2015-05-05 17:21:58 -07002836 if (toStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002837 onInteractionBegin();
Winson Chung83f59ab2015-05-05 17:21:58 -07002838 } else if (fromStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002839 onInteractionEnd();
2840 }
2841 }
2842
Kenny Guyf07af7b2014-07-31 11:39:16 +01002843 void startApplicationDetailsActivity(ComponentName componentName, UserHandleCompat user) {
Kenny Guyf07af7b2014-07-31 11:39:16 +01002844 try {
2845 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Kenny Guyf07af7b2014-07-31 11:39:16 +01002846 launcherApps.showAppDetailsForProfile(componentName, user);
2847 } catch (SecurityException e) {
2848 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2849 Log.e(TAG, "Launcher does not have permission to launch settings");
2850 } catch (ActivityNotFoundException e) {
2851 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2852 Log.e(TAG, "Unable to launch settings");
2853 }
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002854 }
2855
Michael Jurka1e2f4652013-07-08 18:03:46 -07002856 // returns true if the activity was started
Kenny Guyd31df542014-06-30 15:12:11 +01002857 boolean startApplicationUninstallActivity(ComponentName componentName, int flags,
2858 UserHandleCompat user) {
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002859 if ((flags & AppInfo.DOWNLOADED_FLAG) == 0) {
Patrick Dubroy5539af72010-09-07 15:22:01 -07002860 // System applications cannot be installed. For now, show a toast explaining that.
2861 // We may give them the option of disabling apps this way.
2862 int messageId = R.string.uninstall_system_app_text;
2863 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
Michael Jurka1e2f4652013-07-08 18:03:46 -07002864 return false;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002865 } else {
Michael Jurka1e2f4652013-07-08 18:03:46 -07002866 String packageName = componentName.getPackageName();
2867 String className = componentName.getClassName();
Patrick Dubroy5539af72010-09-07 15:22:01 -07002868 Intent intent = new Intent(
2869 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002870 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2871 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Kenny Guyd31df542014-06-30 15:12:11 +01002872 if (user != null) {
2873 user.addToIntent(intent, Intent.EXTRA_USER);
2874 }
Patrick Dubroy5539af72010-09-07 15:22:01 -07002875 startActivity(intent);
Michael Jurka1e2f4652013-07-08 18:03:46 -07002876 return true;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002877 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002878 }
2879
Winson Chung8f1eff72015-05-28 17:33:40 -07002880 private boolean startActivity(View v, Intent intent, Object tag) {
Kenny Guyb6cc40b2014-05-13 15:58:58 +01002881 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002882 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002883 // Only launch using the new animation if the shortcut has not opted out (this is a
2884 // private contract between launcher and may be ignored in the future).
2885 boolean useLaunchAnimation = (v != null) &&
2886 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
Kenny Guyed131872014-04-30 03:02:21 +01002887 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
2888 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyed131872014-04-30 03:02:21 +01002889
Kenny Guy1317e2d2014-05-08 18:52:50 +01002890 UserHandleCompat user = null;
2891 if (intent.hasExtra(AppInfo.EXTRA_PROFILE)) {
2892 long serialNumber = intent.getLongExtra(AppInfo.EXTRA_PROFILE, -1);
2893 user = userManager.getUserForSerialNumber(serialNumber);
2894 }
2895
2896 Bundle optsBundle = null;
Winson Chung2672ff92012-05-04 16:22:30 -07002897 if (useLaunchAnimation) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002898 ActivityOptions opts = null;
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002899 if (Utilities.ATLEAST_MARSHMALLOW) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002900 int left = 0, top = 0;
2901 int width = v.getMeasuredWidth(), height = v.getMeasuredHeight();
2902 if (v instanceof TextView) {
2903 // Launch from center of icon, not entire view
Winson Chungb745afb2015-03-02 11:51:23 -08002904 Drawable icon = Workspace.getTextViewIcon((TextView) v);
2905 if (icon != null) {
2906 Rect bounds = icon.getBounds();
Chet Haasea8f996d2015-02-17 12:56:04 -08002907 left = (width - bounds.width()) / 2;
Winson Chungb745afb2015-03-02 11:51:23 -08002908 top = v.getPaddingTop();
Chet Haasea8f996d2015-02-17 12:56:04 -08002909 width = bounds.width();
2910 height = bounds.height();
2911 }
2912 }
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002913 opts = ActivityOptions.makeClipRevealAnimation(v, left, top, width, height);
2914 } else if (!Utilities.ATLEAST_LOLLIPOP) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002915 // Below L, we use a scale up animation
Adam Cohen2e52c902015-04-06 13:11:28 -07002916 opts = ActivityOptions.makeScaleUpAnimation(v, 0, 0,
Chet Haasea8f996d2015-02-17 12:56:04 -08002917 v.getMeasuredWidth(), v.getMeasuredHeight());
Sunny Goyal9fc953b2015-08-17 12:24:25 -07002918 } else if (Utilities.ATLEAST_LOLLIPOP_MR1) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002919 // On L devices, we use the device default slide-up transition.
2920 // On L MR1 devices, we a custom version of the slide-up transition which
2921 // doesn't have the delay present in the device default.
2922 opts = ActivityOptions.makeCustomAnimation(this,
2923 R.anim.task_open_enter, R.anim.no_anim);
Chet Haasea8f996d2015-02-17 12:56:04 -08002924 }
Adam Cohen2e52c902015-04-06 13:11:28 -07002925 optsBundle = opts != null ? opts.toBundle() : null;
Adam Cohen6ea3b112014-06-11 11:38:49 -07002926 }
Kenny Guy1317e2d2014-05-08 18:52:50 +01002927
2928 if (user == null || user.equals(UserHandleCompat.myUserHandle())) {
2929 // Could be launching some bookkeeping activity
2930 startActivity(intent, optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002931 } else {
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002932 // TODO Component can be null when shortcuts are supported for secondary user
Kenny Guyc2bd8102014-06-30 12:30:31 +01002933 launcherApps.startActivityForProfile(intent.getComponent(), user,
2934 intent.getSourceBounds(), optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002935 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002936 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002937 } catch (SecurityException e) {
2938 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002939 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002940 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07002941 "or use the exported attribute for this activity. "
2942 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002943 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002944 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002945 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002946
Winson Chungbedf9232015-07-10 12:38:30 -07002947 public boolean startActivitySafely(View v, Intent intent, Object tag) {
Michael Jurka86a720e2012-05-09 11:23:23 -07002948 boolean success = false;
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002949 if (mIsSafeModeEnabled && !Utilities.isSystemApp(this, intent)) {
2950 Toast.makeText(this, R.string.safemode_shortcut_error, Toast.LENGTH_SHORT).show();
2951 return false;
2952 }
Michael Jurka86a720e2012-05-09 11:23:23 -07002953 try {
2954 success = startActivity(v, intent, tag);
2955 } catch (ActivityNotFoundException e) {
2956 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2957 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
2958 }
2959 return success;
2960 }
2961
Adam Cohen268c4752012-06-06 17:47:33 -07002962 /**
2963 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
2964 * in the DragLayer in the exact absolute location of the original FolderIcon.
2965 */
2966 private void copyFolderIconToImage(FolderIcon fi) {
2967 final int width = fi.getMeasuredWidth();
2968 final int height = fi.getMeasuredHeight();
2969
2970 // Lazy load ImageView, Bitmap and Canvas
2971 if (mFolderIconImageView == null) {
2972 mFolderIconImageView = new ImageView(this);
2973 }
2974 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
2975 mFolderIconBitmap.getHeight() != height) {
2976 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
2977 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
2978 }
2979
2980 DragLayer.LayoutParams lp;
2981 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
2982 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
2983 } else {
2984 lp = new DragLayer.LayoutParams(width, height);
2985 }
2986
Adam Cohen307fe232012-08-16 17:55:58 -07002987 // The layout from which the folder is being opened may be scaled, adjust the starting
2988 // view size by this scale factor.
2989 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07002990 lp.customPosition = true;
2991 lp.x = mRectForFolderAnimation.left;
2992 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07002993 lp.width = (int) (scale * width);
2994 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07002995
2996 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
2997 fi.draw(mFolderIconCanvas);
2998 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07002999 if (fi.getFolder() != null) {
3000 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
3001 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07003002 }
Adam Cohen268c4752012-06-06 17:47:33 -07003003 // Just in case this image view is still in the drag layer from a previous animation,
3004 // we remove it and re-add it.
3005 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
3006 mDragLayer.removeView(mFolderIconImageView);
3007 }
3008 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07003009 if (fi.getFolder() != null) {
3010 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07003011 }
Adam Cohen268c4752012-06-06 17:47:33 -07003012 }
3013
Adam Cohen2801caf2011-05-13 20:57:39 -07003014 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003015 if (fi == null) return;
Adam Cohenc51934b2011-07-26 21:07:43 -07003016 FolderInfo info = (FolderInfo) fi.getTag();
3017 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3018 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07003019 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
3020 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07003021 }
3022
Adam Cohen268c4752012-06-06 17:47:33 -07003023 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
3024 copyFolderIconToImage(fi);
3025 fi.setVisibility(View.INVISIBLE);
3026
Sunny Goyal5d2fc322015-07-06 22:52:49 -07003027 ObjectAnimator oa = LauncherAnimUtils.ofViewAlphaAndScale(
3028 mFolderIconImageView, 0, 1.5f, 1.5f);
Sunny Goyal9fc953b2015-08-17 12:24:25 -07003029 if (Utilities.ATLEAST_LOLLIPOP) {
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003030 oa.setInterpolator(new LogDecelerateInterpolator(100, 0));
3031 }
3032 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohen2801caf2011-05-13 20:57:39 -07003033 oa.start();
3034 }
3035
Adam Cohen268c4752012-06-06 17:47:33 -07003036 private void shrinkAndFadeInFolderIcon(final FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003037 if (fi == null) return;
Adam Cohen268c4752012-06-06 17:47:33 -07003038 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07003039
Adam Cohen268c4752012-06-06 17:47:33 -07003040 // We remove and re-draw the FolderIcon in-case it has changed
3041 mDragLayer.removeView(mFolderIconImageView);
3042 copyFolderIconToImage(fi);
Sunny Goyal5d2fc322015-07-06 22:52:49 -07003043 ObjectAnimator oa = LauncherAnimUtils.ofViewAlphaAndScale(mFolderIconImageView, 1, 1, 1);
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003044 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07003045 oa.addListener(new AnimatorListenerAdapter() {
3046 @Override
3047 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07003048 if (cl != null) {
3049 cl.clearFolderLeaveBehind();
3050 // Remove the ImageView copy of the FolderIcon and make the original visible.
3051 mDragLayer.removeView(mFolderIconImageView);
3052 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07003053 }
3054 }
3055 });
Adam Cohen2801caf2011-05-13 20:57:39 -07003056 oa.start();
3057 }
3058
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003059 /**
Michael Jurka774bd372010-10-22 13:40:50 -07003060 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003061 * is animated relative to the specified View. If the View is null, no animation
3062 * is played.
3063 *
3064 * @param folderInfo The FolderInfo describing the folder to open.
3065 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07003066 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07003067 Folder folder = folderIcon.getFolder();
Sunny Goyalf4066152015-04-15 09:42:19 -07003068 Folder openFolder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
3069 if (openFolder != null && openFolder != folder) {
3070 // Close any open folder before opening a folder.
3071 closeFolder();
3072 }
3073
Adam Cohena9cf38f2011-05-02 15:36:58 -07003074 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003075
Adam Cohena9cf38f2011-05-02 15:36:58 -07003076 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003077
Sunny Goyalf4066152015-04-15 09:42:19 -07003078 // While the folder is open, the position of the icon cannot change.
3079 ((CellLayout.LayoutParams) folderIcon.getLayoutParams()).canReorder = false;
3080
Adam Cohen4554ee12011-08-03 16:13:21 -07003081 // Just verify that the folder hasn't already been added to the DragLayer.
3082 // There was a one-off crash where the folder had a parent already.
3083 if (folder.getParent() == null) {
3084 mDragLayer.addView(folder);
3085 mDragController.addDropTarget((DropTarget) folder);
3086 } else {
3087 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
3088 folder.getParent() + ").");
3089 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07003090 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07003091 growAndFadeOutFolderIcon(folderIcon);
Winson Chung83ca4802013-04-12 15:10:52 -07003092
3093 // Notify the accessibility manager that this folder "window" has appeared and occluded
3094 // the workspace items
3095 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
3096 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07003097 }
3098
3099 public void closeFolder() {
Adam Cohen37c717f2013-11-26 11:50:15 -08003100 Folder folder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
Adam Cohen4554ee12011-08-03 16:13:21 -07003101 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07003102 if (folder.isEditingName()) {
3103 folder.dismissEditingName();
3104 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003105 closeFolder(folder);
3106 }
3107 }
3108
Sunny Goyal83a8f042015-05-19 12:52:12 -07003109 public void closeFolder(Folder folder) {
Adam Cohen4554ee12011-08-03 16:13:21 -07003110 folder.getInfo().opened = false;
3111
3112 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
3113 if (parent != null) {
3114 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
3115 shrinkAndFadeInFolderIcon(fi);
Sunny Goyalf4066152015-04-15 09:42:19 -07003116 if (fi != null) {
3117 ((CellLayout.LayoutParams) fi.getLayoutParams()).canReorder = true;
3118 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003119 }
3120 folder.animateClosed();
Winson Chung83ca4802013-04-12 15:10:52 -07003121
3122 // Notify the accessibility manager that this folder "window" has disappeard and no
3123 // longer occludeds the workspace items
3124 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003125 }
3126
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003127 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07003128 if (!isDraggingEnabled()) return false;
3129 if (isWorkspaceLocked()) return false;
3130 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003131
Winson Chung76648c52015-07-10 14:33:23 -07003132 if (v == mAllAppsButton) {
3133 onLongClickAllAppsButton(v);
3134 return true;
3135 }
3136
Adam Cohen1697b792013-09-17 19:08:21 -07003137 if (v instanceof Workspace) {
3138 if (!mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003139 if (!mWorkspace.isTouchActive()) {
3140 showOverviewMode(true);
Adam Cohen93c97562013-09-26 13:48:01 -07003141 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3142 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
3143 return true;
3144 } else {
3145 return false;
3146 }
Adam Cohenaa4c8c12014-06-06 11:52:52 -07003147 } else {
3148 return false;
Adam Cohen1697b792013-09-17 19:08:21 -07003149 }
Adam Cohen1697b792013-09-17 19:08:21 -07003150 }
3151
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003152 CellLayout.CellInfo longClickCellInfo = null;
3153 View itemUnderLongClick = null;
3154 if (v.getTag() instanceof ItemInfo) {
3155 ItemInfo info = (ItemInfo) v.getTag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08003156 longClickCellInfo = new CellLayout.CellInfo(v, info);
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003157 itemUnderLongClick = longClickCellInfo.cell;
3158 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003159 }
3160
Winson Chung3d503fb2011-07-13 17:25:49 -07003161 // The hotseat touch handling does not go through Workspace, and we always allow long press
3162 // on hotseat items.
Dan Sandlere26d0942014-01-13 14:30:14 -05003163 final boolean inHotseat = isHotseatLayout(v);
Sunny Goyal8e2133b2015-05-06 13:39:07 -07003164 if (!mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07003165 if (itemUnderLongClick == null) {
Adam Cohend3ecce92013-09-16 14:58:00 -07003166 // User long pressed on empty space
3167 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3168 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Adam Cohend3ecce92013-09-16 14:58:00 -07003169 if (mWorkspace.isInOverviewMode()) {
3170 mWorkspace.startReordering(v);
3171 } else {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003172 showOverviewMode(true);
Adam Cohendedbd962013-07-11 14:21:49 -07003173 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003174 } else {
Dan Sandlere26d0942014-01-13 14:30:14 -05003175 final boolean isAllAppsButton = inHotseat && isAllAppsButtonRank(
3176 mHotseat.getOrderInHotseat(
3177 longClickCellInfo.cellX,
3178 longClickCellInfo.cellY));
3179 if (!(itemUnderLongClick instanceof Folder || isAllAppsButton)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003180 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07003181 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003182 }
3183 }
3184 }
3185 return true;
3186 }
3187
Winson Chung3d503fb2011-07-13 17:25:49 -07003188 boolean isHotseatLayout(View layout) {
3189 return mHotseat != null && layout != null &&
3190 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
3191 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08003192
Winson Chung3d503fb2011-07-13 17:25:49 -07003193 /**
3194 * Returns the CellLayout of the specified container at the specified screen.
3195 */
Sunny Goyal92820592015-03-02 11:31:35 -08003196 public CellLayout getCellLayout(long container, long screenId) {
Winson Chung3d503fb2011-07-13 17:25:49 -07003197 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3198 if (mHotseat != null) {
3199 return mHotseat.getLayout();
3200 } else {
3201 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08003202 }
Winson Chung3d503fb2011-07-13 17:25:49 -07003203 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08003204 return mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08003205 }
3206 }
3207
Winson Chungb745afb2015-03-02 11:51:23 -08003208 /**
3209 * For overridden classes.
3210 */
Daniel Sandler843e8602010-06-07 14:59:01 -04003211 public boolean isAllAppsVisible() {
Winson Chungb745afb2015-03-02 11:51:23 -08003212 return isAppsViewVisible();
3213 }
3214
3215 public boolean isAppsViewVisible() {
3216 return (mState == State.APPS) || (mOnResumeState == State.APPS);
3217 }
3218
3219 public boolean isWidgetsViewVisible() {
3220 return (mState == State.WIDGETS) || (mOnResumeState == State.WIDGETS);
Joe Onoratofb0ca672009-09-14 17:55:46 -04003221 }
3222
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003223 private void setWorkspaceBackground(int background) {
3224 switch (background) {
3225 case WORKSPACE_BACKGROUND_TRANSPARENT:
3226 getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
3227 break;
3228 case WORKSPACE_BACKGROUND_BLACK:
3229 getWindow().setBackgroundDrawable(null);
3230 break;
3231 default:
3232 getWindow().setBackgroundDrawable(mWorkspaceBackgroundDrawable);
3233 }
Craig Mautner360310b2012-10-26 15:13:08 -07003234 }
3235
Selim Cinek3a8a8f72014-01-16 10:38:38 -08003236 protected void changeWallpaperVisiblity(boolean visible) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003237 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
3238 int curflags = getWindow().getAttributes().flags
3239 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
3240 if (wpflags != curflags) {
3241 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
3242 }
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003243 setWorkspaceBackground(visible ? WORKSPACE_BACKGROUND_GRADIENT : WORKSPACE_BACKGROUND_BLACK);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003244 }
3245
Michael Jurkae326f182011-11-21 14:05:46 -08003246 @Override
3247 public void onTrimMemory(int level) {
3248 super.onTrimMemory(level);
Adam Cohen3f9c9712014-10-31 11:48:25 -07003249 if (level >= ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
3250 // The widget preview db can result in holding onto over
3251 // 3MB of memory for caching which isn't necessary.
3252 SQLiteDatabase.releaseMemory();
3253
Adam Cohenc8f4e1b2014-11-19 16:03:20 -08003254 // This clears all widget bitmaps from the widget tray
Hyunyoung Song3f471442015-04-08 19:01:34 -07003255 // TODO(hyunyoungs)
Michael Jurkae326f182011-11-21 14:05:46 -08003256 }
Robert Kozikowski67c30862015-03-30 23:46:46 +01003257 if (mLauncherCallbacks != null) {
3258 mLauncherCallbacks.onTrimMemory(level);
3259 }
Michael Jurkae326f182011-11-21 14:05:46 -08003260 }
3261
Winson5c6bdbb2015-09-03 11:36:19 -07003262 public boolean showWorkspace(boolean animated) {
Winson10612a72015-09-09 17:06:09 -07003263 return showWorkspace(animated, null);
Adam Cohened307df2013-10-02 09:37:31 -07003264 }
3265
Winson5c6bdbb2015-09-03 11:36:19 -07003266 public boolean showWorkspace(boolean animated, Runnable onCompleteRunnable) {
Winson Chung0f785722015-04-08 10:27:49 -07003267 boolean changed = mState != State.WORKSPACE ||
3268 mWorkspace.getState() != Workspace.State.NORMAL;
3269 if (changed) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003270 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003271 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
Winson2a87fe82015-08-07 10:37:21 -07003272 Workspace.State.NORMAL, animated, onCompleteRunnable);
Winson Chungc7d2b602012-05-16 17:02:20 -07003273
Michael Jurkab3e22d92011-10-31 15:58:33 -07003274 // Set focus to the AppsCustomize button
3275 if (mAllAppsButton != null) {
3276 mAllAppsButton.requestFocus();
3277 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003278 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07003279
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003280 // Change the state *after* we've called all the transition code
3281 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08003282
Winson Chung5fb63472011-02-02 17:03:37 -08003283 // Resume the auto-advance of widgets
3284 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08003285 updateAutoAdvanceState();
Winson Chung5fb63472011-02-02 17:03:37 -08003286
Winson Chung0f785722015-04-08 10:27:49 -07003287 if (changed) {
3288 // Send an accessibility event to announce the context change
3289 getWindow().getDecorView()
3290 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Winson Chung0f785722015-04-08 10:27:49 -07003291 }
Winson5c6bdbb2015-09-03 11:36:19 -07003292 return changed;
Bjorn Bringertc459e522013-06-07 19:36:01 +01003293 }
3294
Adam Cohened307df2013-10-02 09:37:31 -07003295 void showOverviewMode(boolean animated) {
3296 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003297 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
Winson2a87fe82015-08-07 10:37:21 -07003298 Workspace.State.OVERVIEW, animated, null /* onCompleteRunnable */);
Adam Cohened307df2013-10-02 09:37:31 -07003299 mState = State.WORKSPACE;
Joe Onorato00acb122009-08-04 16:04:30 -04003300 }
3301
Winson Chungb745afb2015-03-02 11:51:23 -08003302 /**
3303 * Shows the apps view.
3304 */
Winson Chung76648c52015-07-10 14:33:23 -07003305 void showAppsView(boolean animated, boolean resetListToTop, boolean updatePredictedApps,
3306 boolean focusSearchBar) {
Winson Chungb745afb2015-03-02 11:51:23 -08003307 if (resetListToTop) {
3308 mAppsView.scrollToTop();
3309 }
Winson Chung4ac30062015-05-08 17:34:17 -07003310 if (updatePredictedApps) {
3311 tryAndUpdatePredictedApps();
3312 }
Winson Chung76648c52015-07-10 14:33:23 -07003313 showAppsOrWidgets(State.APPS, animated, focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003314 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003315
Winson Chungb745afb2015-03-02 11:51:23 -08003316 /**
3317 * Shows the widgets view.
3318 */
3319 void showWidgetsView(boolean animated, boolean resetPageToZero) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003320 if (LOGD) Log.d(TAG, "showWidgetsView:" + animated + " resetPageToZero:" + resetPageToZero);
Winson Chung82963d52013-10-09 11:20:57 -07003321 if (resetPageToZero) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003322 mWidgetsView.scrollToTop();
Winson Chung82963d52013-10-09 11:20:57 -07003323 }
Winson Chung76648c52015-07-10 14:33:23 -07003324 showAppsOrWidgets(State.WIDGETS, animated, false);
Hyunyoung Song3f471442015-04-08 19:01:34 -07003325
3326 mWidgetsView.post(new Runnable() {
Adam Cohendcc5e712014-06-23 15:38:55 -04003327 @Override
3328 public void run() {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003329 mWidgetsView.requestFocus();
Adam Cohendcc5e712014-06-23 15:38:55 -04003330 }
3331 });
Winson Chungb745afb2015-03-02 11:51:23 -08003332 }
3333
3334 /**
3335 * Sets up the transition to show the apps/widgets view.
Hyunyoung Songb7900832015-05-15 16:29:45 -07003336 *
3337 * @return whether the current from and to state allowed this operation
Winson Chungb745afb2015-03-02 11:51:23 -08003338 */
Hyunyoung Songb7900832015-05-15 16:29:45 -07003339 // TODO: calling method should use the return value so that when {@code false} is returned
3340 // the workspace transition doesn't fall into invalid state.
Winson Chung76648c52015-07-10 14:33:23 -07003341 private boolean showAppsOrWidgets(State toState, boolean animated, boolean focusSearchBar) {
Hyunyoung Songb7900832015-05-15 16:29:45 -07003342 if (mState != State.WORKSPACE && mState != State.APPS_SPRING_LOADED &&
3343 mState != State.WIDGETS_SPRING_LOADED) {
3344 return false;
3345 }
3346 if (toState != State.APPS && toState != State.WIDGETS) {
3347 return false;
3348 }
Winson Chungb745afb2015-03-02 11:51:23 -08003349
3350 if (toState == State.APPS) {
Winson Chung006ee262015-08-03 14:40:11 -07003351 mStateTransitionAnimation.startAnimationToAllApps(mWorkspace.getState(), animated,
3352 focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003353 } else {
Winson Chung006ee262015-08-03 14:40:11 -07003354 mStateTransitionAnimation.startAnimationToWidgets(mWorkspace.getState(), animated);
Winson Chungb745afb2015-03-02 11:51:23 -08003355 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003356
Michael Jurkab3e22d92011-10-31 15:58:33 -07003357 // Change the state *after* we've called all the transition code
Winson Chungb745afb2015-03-02 11:51:23 -08003358 mState = toState;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003359
3360 // Pause the auto-advance of widgets until we are out of AllApps
3361 mUserPresent = false;
Winson Chungb745afb2015-03-02 11:51:23 -08003362 updateAutoAdvanceState();
Michael Jurkab3e22d92011-10-31 15:58:33 -07003363 closeFolder();
3364
3365 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07003366 getWindow().getDecorView()
3367 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Hyunyoung Songb7900832015-05-15 16:29:45 -07003368 return true;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003369 }
3370
Winson Chungcd99cd32015-04-29 11:03:24 -07003371 /**
3372 * Updates the workspace and interaction state on state change, and return the animation to this
3373 * new state.
3374 */
Sunny Goyalce5a7e52015-07-08 15:44:27 -07003375 public Animator startWorkspaceStateChangeAnimation(Workspace.State toState,
Winson Chung006ee262015-08-03 14:40:11 -07003376 boolean animated, HashMap<View, Integer> layerViews) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003377 Workspace.State fromState = mWorkspace.getState();
Winson2a87fe82015-08-07 10:37:21 -07003378 Animator anim = mWorkspace.setStateWithAnimation(toState, animated, layerViews);
Winson Chungcd99cd32015-04-29 11:03:24 -07003379 updateInteraction(fromState, toState);
3380 return anim;
3381 }
3382
Jun Mukaif0033da2015-08-04 18:34:30 -07003383 public void onLauncherClingShown() {
3384 // When a launcher cling appears, it should cover the underlying layers, so their focus
3385 // should be blocked.
3386 if (mDragLayer.getDescendantFocusability() != ViewGroup.FOCUS_BLOCK_DESCENDANTS) {
3387 mDragLayer.setDescendantFocusability(ViewGroup.FOCUS_BLOCK_DESCENDANTS);
3388 }
3389 }
3390
3391 public void onLauncherClingDismissed() {
3392 mDragLayer.setDescendantFocusability(ViewGroup.FOCUS_AFTER_DESCENDANTS);
3393 }
3394
Hyunyoung Song3f471442015-04-08 19:01:34 -07003395 public void enterSpringLoadedDragMode() {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003396 if (LOGD) Log.d(TAG, String.format("enterSpringLoadedDragMode [mState=%s", mState.name()));
Tony Wickham94e0d372015-09-11 12:17:48 -07003397 if (isStateSpringLoaded()) {
Winson Chungb745afb2015-03-02 11:51:23 -08003398 return;
Winson Chungb26f3d62011-06-02 10:49:29 -07003399 }
Winson Chungb745afb2015-03-02 11:51:23 -08003400
Winson Chung006ee262015-08-03 14:40:11 -07003401 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
Winson2a87fe82015-08-07 10:37:21 -07003402 Workspace.State.SPRING_LOADED, true /* animated */,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003403 null /* onCompleteRunnable */);
Tony Wickham94e0d372015-09-11 12:17:48 -07003404
3405 if (isAppsViewVisible()) {
3406 mState = State.APPS_SPRING_LOADED;
3407 } else if (isWidgetsViewVisible()) {
3408 mState = State.WIDGETS_SPRING_LOADED;
3409 } else {
3410 mState = State.WORKSPACE_SPRING_LOADED;
3411 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08003412 }
Adam Cohen7777d962011-08-18 18:58:38 -07003413
Hyunyoung Song3f471442015-04-08 19:01:34 -07003414 public void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, int delay,
Adam Cohened66b2b2012-01-23 17:28:51 -08003415 final Runnable onCompleteRunnable) {
Tony Wickham94e0d372015-09-11 12:17:48 -07003416 if (!isStateSpringLoaded()) return;
Winson Chung09bfc452011-09-09 11:30:20 -07003417
Winson Chunge7a03942011-08-05 15:05:12 -07003418 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07003419 @Override
3420 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003421 if (successfulDrop) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003422 // TODO(hyunyoungs): verify if this hack is still needed, if not, delete.
3423 //
Michael Jurka7bdb25a2011-08-03 15:16:44 -07003424 // Before we show workspace, hide all apps again because
3425 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
3426 // clean up our state transition functions
Hyunyoung Song3f471442015-04-08 19:01:34 -07003427 mWidgetsView.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003428 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07003429 } else {
3430 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003431 }
Winson Chung557d6ed2011-07-08 15:34:52 -07003432 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07003433 }, delay);
Winson Chung557d6ed2011-07-08 15:34:52 -07003434 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003435
Tony Wickham94e0d372015-09-11 12:17:48 -07003436 private boolean isStateSpringLoaded() {
3437 return mState == State.WORKSPACE_SPRING_LOADED || mState == State.APPS_SPRING_LOADED
3438 || mState == State.WIDGETS_SPRING_LOADED;
3439 }
3440
Michael Jurkad3ef3062010-11-23 16:23:58 -08003441 void exitSpringLoadedDragMode() {
Winson Chungb745afb2015-03-02 11:51:23 -08003442 if (mState == State.APPS_SPRING_LOADED) {
Winson Chung4ac30062015-05-08 17:34:17 -07003443 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07003444 false /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -08003445 } else if (mState == State.WIDGETS_SPRING_LOADED) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003446 showWidgetsView(true, false);
Tony Wickham94e0d372015-09-11 12:17:48 -07003447 } else if (mState == State.WORKSPACE_SPRING_LOADED) {
3448 showWorkspace(true);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003449 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003450 }
3451
Winson Chung4ac30062015-05-08 17:34:17 -07003452 /**
3453 * Updates the set of predicted apps if it hasn't been updated since the last time Launcher was
3454 * resumed.
3455 */
3456 private void tryAndUpdatePredictedApps() {
3457 if (mLauncherCallbacks != null) {
Winson Chung6b1c73f2015-06-18 11:38:42 -07003458 List<ComponentKey> apps = mLauncherCallbacks.getPredictedApps();
Winson Chung91c05952015-06-25 12:17:30 -07003459 if (apps != null) {
Winson Chung4ac30062015-05-08 17:34:17 -07003460 mAppsView.setPredictedApps(apps);
3461 }
3462 }
3463 }
3464
Michael Jurkab3e22d92011-10-31 15:58:33 -07003465 void lockAllApps() {
3466 // TODO
3467 }
3468
3469 void unlockAllApps() {
3470 // TODO
3471 }
3472
Sunny Goyal594d76d2014-11-06 10:12:54 -08003473 protected void disableVoiceButtonProxy(boolean disable) {
3474 // NO-OP
Winson Chungbb185bd2011-11-21 12:31:42 -08003475 }
3476
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003477 public View getOrCreateQsbBar() {
Adam Cohenc2d6e892014-10-16 09:49:24 -07003478 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
3479 return mLauncherCallbacks.getQsbBar();
Adam Cohen9211d422014-10-07 18:14:53 -07003480 }
3481
Adam Cohen24ce0b32014-01-14 16:18:14 -08003482 if (mQsb == null) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003483 AppWidgetProviderInfo searchProvider = Utilities.getSearchWidgetProvider(this);
3484 if (searchProvider == null) {
3485 return null;
3486 }
3487
3488 Bundle opts = new Bundle();
3489 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_HOST_CATEGORY,
Adam Coheneb8e2822015-02-20 16:38:48 +00003490 AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003491
3492 SharedPreferences sp = getSharedPreferences(
3493 LauncherAppState.getSharedPreferencesKey(), MODE_PRIVATE);
3494 int widgetId = sp.getInt(QSB_WIDGET_ID, -1);
Sunny Goyal416541c2014-11-14 11:59:57 -08003495 AppWidgetProviderInfo widgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003496 if (!searchProvider.provider.flattenToString().equals(
3497 sp.getString(QSB_WIDGET_PROVIDER, null))
Sunny Goyal416541c2014-11-14 11:59:57 -08003498 || (widgetInfo == null)
3499 || !widgetInfo.provider.equals(searchProvider.provider)) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003500 // A valid widget is not already bound.
3501 if (widgetId > -1) {
3502 mAppWidgetHost.deleteAppWidgetId(widgetId);
3503 widgetId = -1;
3504 }
3505
3506 // Try to bind a new widget
3507 widgetId = mAppWidgetHost.allocateAppWidgetId();
3508
3509 if (!AppWidgetManagerCompat.getInstance(this)
3510 .bindAppWidgetIdIfAllowed(widgetId, searchProvider, opts)) {
3511 mAppWidgetHost.deleteAppWidgetId(widgetId);
3512 widgetId = -1;
3513 }
3514
3515 sp.edit()
3516 .putInt(QSB_WIDGET_ID, widgetId)
3517 .putString(QSB_WIDGET_PROVIDER, searchProvider.provider.flattenToString())
3518 .commit();
3519 }
3520
Sunny Goyal8d595092015-07-06 12:22:14 -07003521 mAppWidgetHost.setQsbWidgetId(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003522 if (widgetId != -1) {
3523 mQsb = mAppWidgetHost.createView(this, widgetId, searchProvider);
Sunny Goyalebfae6e2015-08-27 15:30:25 -07003524 mQsb.setId(R.id.qsb_widget);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003525 mQsb.updateAppWidgetOptions(opts);
3526 mQsb.setPadding(0, 0, 0, 0);
3527 mSearchDropTargetBar.addView(mQsb);
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003528 mSearchDropTargetBar.setQsbSearchBar(mQsb);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003529 }
Cristina Stancu476493b2013-08-07 17:20:14 +01003530 }
Adam Cohen24ce0b32014-01-14 16:18:14 -08003531 return mQsb;
Cristina Stancu476493b2013-08-07 17:20:14 +01003532 }
3533
Sunny Goyal22235bc2015-04-03 09:23:43 -07003534 private void reinflateQSBIfNecessary() {
3535 if (mQsb instanceof LauncherAppWidgetHostView &&
3536 ((LauncherAppWidgetHostView) mQsb).isReinflateRequired()) {
3537 mSearchDropTargetBar.removeView(mQsb);
3538 mQsb = null;
3539 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
3540 }
3541 }
3542
Michael Jurkad7c28052012-04-27 15:43:36 -07003543 @Override
3544 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07003545 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07003546 final List<CharSequence> text = event.getText();
3547 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07003548 // Populate event with a fake title based on the current state.
Winson Chungb745afb2015-03-02 11:51:23 -08003549 if (mState == State.APPS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003550 text.add(getString(R.string.all_apps_button_label));
Winson Chungb745afb2015-03-02 11:51:23 -08003551 } else if (mState == State.WIDGETS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003552 text.add(getString(R.string.widget_button_text));
Hyunyoung Song166e6482015-06-25 21:06:07 -07003553 } else if (mWorkspace != null) {
3554 text.add(mWorkspace.getCurrentPageDescription());
alanv1d4fde62012-10-17 13:15:47 -07003555 } else {
3556 text.add(getString(R.string.all_apps_home_button_label));
3557 }
Michael Jurkad7c28052012-04-27 15:43:36 -07003558 return result;
3559 }
3560
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003561 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003562 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003563 */
Adam Cohen091440a2015-03-18 14:16:05 -07003564 @Thunk class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003565 @Override
3566 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003567 closeSystemDialogs();
3568 }
3569 }
3570
3571 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07003572 * If the activity is currently paused, signal that we need to run the passed Runnable
3573 * in onResume.
3574 *
3575 * This needs to be called from incoming places where resources might have been loaded
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003576 * while the activity is paused. That is because the Configuration (e.g., rotation) might be
3577 * wrong when we're not running, and if the activity comes back to what the configuration was
3578 * when we were paused, activity is not restarted.
Michael Jurka7607c2f2013-04-03 14:33:19 -07003579 *
3580 * Implementation of the method from LauncherModel.Callbacks.
3581 *
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003582 * @return {@code true} if we are currently paused. The caller might be able to skip some work
Michael Jurka7607c2f2013-04-03 14:33:19 -07003583 */
Rahul Chaturvedi799aa042015-06-01 21:26:41 -04003584 @Thunk boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003585 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003586 if (LOGD) Log.d(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02003587 if (deletePreviousRunnables) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07003588 while (mBindOnResumeCallbacks.remove(run)) {
Michael Jurkac402cd92013-05-20 15:49:32 +02003589 }
3590 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07003591 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07003592 return true;
3593 } else {
3594 return false;
3595 }
3596 }
3597
Michael Jurkac402cd92013-05-20 15:49:32 +02003598 private boolean waitUntilResume(Runnable run) {
3599 return waitUntilResume(run, false);
3600 }
3601
Michael Jurka1e2f4652013-07-08 18:03:46 -07003602 public void addOnResumeCallback(Runnable run) {
Michael Jurka54554252013-08-01 12:52:23 +02003603 mOnResumeCallbacks.add(run);
Michael Jurka1e2f4652013-07-08 18:03:46 -07003604 }
3605
Michael Jurka7607c2f2013-04-03 14:33:19 -07003606 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003607 * If the activity is currently paused, signal that we need to re-run the loader
3608 * in onResume.
3609 *
3610 * This needs to be called from incoming places where resources might have been loaded
3611 * while we are paused. That is becaues the Configuration might be wrong
3612 * when we're not running, and if it comes back to what it was when we
3613 * were paused, we are not restarted.
3614 *
3615 * Implementation of the method from LauncherModel.Callbacks.
3616 *
3617 * @return true if we are currently paused. The caller might be able to
3618 * skip some work in that case since we will come back again.
3619 */
3620 public boolean setLoadOnResume() {
3621 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003622 if (LOGD) Log.d(TAG, "setLoadOnResume");
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003623 mOnResumeNeedsLoad = true;
3624 return true;
3625 } else {
3626 return false;
3627 }
3628 }
3629
3630 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003631 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003632 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003633 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003634 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003635 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003636 } else {
Winson Chung882a52e2015-07-08 14:32:26 -07003637 return 0;
Joe Onoratod0afc872010-06-11 00:03:15 -07003638 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003639 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003640
Joe Onorato9c1289c2009-08-17 11:03:03 -04003641 /**
3642 * Refreshes the shortcuts shown on the workspace.
3643 *
3644 * Implementation of the method from LauncherModel.Callbacks.
3645 */
3646 public void startBinding() {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07003647 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08003648
Michael Jurka7607c2f2013-04-03 14:33:19 -07003649 // If we're starting binding all over again, clear any bind calls we'd postponed in
3650 // the past (see waitUntilResume) -- we don't need them since we're starting binding
3651 // from scratch again
Michael Jurka1e2f4652013-07-08 18:03:46 -07003652 mBindOnResumeCallbacks.clear();
Adam Cohendf035382011-04-11 17:22:04 -07003653
Winson Chungd64d1762013-08-20 14:37:16 -07003654 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07003655 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07003656 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07003657
Michael Jurka05bf644e2011-11-30 20:28:53 -08003658 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003659 if (mHotseat != null) {
3660 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003661 }
3662 }
3663
Adam Cohendcd297f2013-06-18 13:13:40 -07003664 @Override
3665 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Winson Chung64359a52013-07-08 17:17:08 -07003666 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07003667
Adam Cohen5084cba2013-09-03 12:01:16 -07003668 // If there are no screens, we need to have an empty screen
3669 if (orderedScreenIds.size() == 0) {
3670 mWorkspace.addExtraEmptyScreen();
3671 }
Winson Chung0e6a7132013-08-23 12:55:10 -07003672
3673 // Create the custom content page (this call updates mDefaultScreen which calls
Dave Hawkeya8881582013-09-17 15:55:33 -06003674 // setCurrentPage() so ensure that all pages are added before calling this).
Derek Prothrodadd9842014-01-17 13:43:50 -05003675 if (hasCustomContentToLeft()) {
3676 mWorkspace.createCustomContentContainer();
3677 populateCustomContentContainer();
Winson Chung0e6a7132013-08-23 12:55:10 -07003678 }
Winson Chung64359a52013-07-08 17:17:08 -07003679 }
3680
3681 @Override
3682 public void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Adam Cohendcd297f2013-06-18 13:13:40 -07003683 int count = orderedScreenIds.size();
3684 for (int i = 0; i < count; i++) {
Adam Cohen89bddfa2013-08-20 11:57:13 -07003685 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(orderedScreenIds.get(i));
Adam Cohendcd297f2013-06-18 13:13:40 -07003686 }
Adam Cohendcd297f2013-06-18 13:13:40 -07003687 }
3688
Adam Cohen39a06042013-07-19 14:30:12 -07003689 private boolean shouldShowWeightWatcher() {
3690 String spKey = LauncherAppState.getSharedPreferencesKey();
3691 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
Daniel Sandler6053b8002013-08-15 15:44:26 -07003692 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, SHOW_WEIGHT_WATCHER_DEFAULT);
Adam Cohen39a06042013-07-19 14:30:12 -07003693
3694 return show;
3695 }
3696
3697 private void toggleShowWeightWatcher() {
3698 String spKey = LauncherAppState.getSharedPreferencesKey();
3699 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
3700 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, true);
3701
3702 show = !show;
3703
3704 SharedPreferences.Editor editor = sp.edit();
3705 editor.putBoolean(SHOW_WEIGHT_WATCHER, show);
3706 editor.commit();
3707
3708 if (mWeightWatcher != null) {
3709 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
3710 }
3711 }
3712
Winson Chungd64d1762013-08-20 14:37:16 -07003713 public void bindAppsAdded(final ArrayList<Long> newScreens,
3714 final ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -07003715 final ArrayList<ItemInfo> addAnimated,
3716 final ArrayList<AppInfo> addedApps) {
Winson Chungd64d1762013-08-20 14:37:16 -07003717 Runnable r = new Runnable() {
3718 public void run() {
Winson Chungc58497e2013-09-03 17:48:37 -07003719 bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps);
Winson Chungd64d1762013-08-20 14:37:16 -07003720 }
3721 };
3722 if (waitUntilResume(r)) {
3723 return;
3724 }
3725
Winson Chungd64d1762013-08-20 14:37:16 -07003726 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08003727 if (newScreens != null) {
3728 bindAddScreens(newScreens);
3729 }
Winson Chungd64d1762013-08-20 14:37:16 -07003730
3731 // We add the items without animation on non-visible pages, and with
3732 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08003733 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003734 bindItems(addNotAnimated, 0,
3735 addNotAnimated.size(), false);
3736 }
Adam Cohen76a47a12014-02-05 11:47:43 -08003737 if (addAnimated != null && !addAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003738 bindItems(addAnimated, 0,
3739 addAnimated.size(), true);
3740 }
Winson Chungc58497e2013-09-03 17:48:37 -07003741
Winson Chung87412982013-10-03 18:34:14 -07003742 // Remove the extra empty screen
Adam Cohen689ff162014-05-08 17:27:56 -07003743 mWorkspace.removeExtraEmptyScreen(false, false);
Winson Chung87412982013-10-03 18:34:14 -07003744
Winson Chungb745afb2015-03-02 11:51:23 -08003745 if (addedApps != null && mAppsView != null) {
3746 mAppsView.addApps(addedApps);
Winson Chungc58497e2013-09-03 17:48:37 -07003747 }
Winson Chungd64d1762013-08-20 14:37:16 -07003748 }
3749
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003750 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003751 * Bind the items start-end from the list.
3752 *
3753 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003754 */
Winson Chung64359a52013-07-08 17:17:08 -07003755 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end,
3756 final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07003757 Runnable r = new Runnable() {
3758 public void run() {
3759 bindItems(shortcuts, start, end, forceAnimateIcons);
3760 }
3761 };
3762 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003763 return;
3764 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003765
Winson Chungf0c6ae02012-03-21 16:10:31 -07003766 // Get the list of added shortcuts and intersect them with the set of shortcuts here
Winson Chung64359a52013-07-08 17:17:08 -07003767 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
3768 final Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chung997a9232013-07-24 15:33:46 -07003769 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07003770 Workspace workspace = mWorkspace;
Winson Chung997a9232013-07-24 15:33:46 -07003771 long newShortcutsScreenId = -1;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003772 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003773 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003774
3775 // Short circuit if we are loading dock items for a configuration which has no dock
3776 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3777 mHotseat == null) {
3778 continue;
3779 }
3780
Sunny Goyal639e9062015-08-19 19:17:06 -07003781 final View view;
Joe Onorato9c1289c2009-08-17 11:03:03 -04003782 switch (item.itemType) {
3783 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3784 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07003785 ShortcutInfo info = (ShortcutInfo) item;
Sunny Goyal639e9062015-08-19 19:17:06 -07003786 view = createShortcut(info);
Adam Cohendcd297f2013-06-18 13:13:40 -07003787
Winson Chung64359a52013-07-08 17:17:08 -07003788 /*
3789 * TODO: FIX collision case
3790 */
Winson Chungce376632013-07-11 16:12:41 -07003791 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
3792 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
3793 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07003794 View v = cl.getChildAt(item.cellX, item.cellY);
3795 Object tag = v.getTag();
3796 String desc = "Collision while binding workspace item: " + item
3797 + ". Collides with " + tag;
Sunny Goyal6c56c682015-07-16 14:09:05 -07003798 if (ProviderConfig.IS_DOGFOOD_BUILD) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07003799 throw (new RuntimeException(desc));
3800 } else {
3801 Log.d(TAG, desc);
3802 }
Winson Chungce376632013-07-11 16:12:41 -07003803 }
Winson Chung64359a52013-07-08 17:17:08 -07003804 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003805 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003806 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Sunny Goyal639e9062015-08-19 19:17:06 -07003807 view = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003808 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003809 (FolderInfo) item, mIconCache);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003810 break;
Winson Chungc763c4e2013-07-19 13:49:06 -07003811 default:
3812 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04003813 }
Sunny Goyal639e9062015-08-19 19:17:06 -07003814
3815 workspace.addInScreenFromBind(view, item.container, item.screenId, item.cellX,
3816 item.cellY, 1, 1);
3817 if (animateIcons) {
3818 // Animate all the applications up now
3819 view.setAlpha(0f);
3820 view.setScaleX(0f);
3821 view.setScaleY(0f);
3822 bounceAnims.add(createNewAppBounceAnimation(view, i));
3823 newShortcutsScreenId = item.screenId;
3824 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003825 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003826
Winson Chung997a9232013-07-24 15:33:46 -07003827 if (animateIcons) {
3828 // Animate to the correct page
3829 if (newShortcutsScreenId > -1) {
3830 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Winson Chung94d67682013-09-25 16:29:40 -07003831 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId);
Winson Chungb2323832013-10-03 15:22:09 -07003832 final Runnable startBounceAnimRunnable = new Runnable() {
3833 public void run() {
3834 anim.playTogether(bounceAnims);
3835 anim.start();
3836 }
3837 };
Winson Chung997a9232013-07-24 15:33:46 -07003838 if (newShortcutsScreenId != currentScreenId) {
Winson Chung94d67682013-09-25 16:29:40 -07003839 // We post the animation slightly delayed to prevent slowdowns
3840 // when we are loading right after we return to launcher.
3841 mWorkspace.postDelayed(new Runnable() {
3842 public void run() {
Ian Parkinson94449152014-01-21 13:09:59 +00003843 if (mWorkspace != null) {
3844 mWorkspace.snapToPage(newScreenIndex);
3845 mWorkspace.postDelayed(startBounceAnimRunnable,
3846 NEW_APPS_ANIMATION_DELAY);
3847 }
Winson Chung94d67682013-09-25 16:29:40 -07003848 }
3849 }, NEW_APPS_PAGE_MOVE_DELAY);
Winson Chungb2323832013-10-03 15:22:09 -07003850 } else {
3851 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07003852 }
3853 }
Winson Chung64359a52013-07-08 17:17:08 -07003854 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003855 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003856 }
3857
Joe Onorato9c1289c2009-08-17 11:03:03 -04003858 /**
3859 * Implementation of the method from LauncherModel.Callbacks.
3860 */
Sunny Goyale2df0622015-04-24 11:27:00 -07003861 public void bindFolders(final LongArrayMap<FolderInfo> folders) {
Winson Chungd64d1762013-08-20 14:37:16 -07003862 Runnable r = new Runnable() {
3863 public void run() {
3864 bindFolders(folders);
3865 }
3866 };
3867 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003868 return;
3869 }
Sunny Goyale2df0622015-04-24 11:27:00 -07003870 sFolders = folders.clone();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003871 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003872
3873 /**
3874 * Add the views for a widget to the workspace.
3875 *
3876 * Implementation of the method from LauncherModel.Callbacks.
3877 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07003878 public void bindAppWidget(final LauncherAppWidgetInfo item) {
Winson Chungd64d1762013-08-20 14:37:16 -07003879 Runnable r = new Runnable() {
3880 public void run() {
3881 bindAppWidget(item);
3882 }
3883 };
3884 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003885 return;
3886 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003887
Daniel Sandler843e8602010-06-07 14:59:01 -04003888 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
3889 if (DEBUG_WIDGETS) {
3890 Log.d(TAG, "bindAppWidget: " + item);
3891 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003892 final Workspace workspace = mWorkspace;
3893
Adam Cohen59400422014-03-05 18:07:04 -08003894 LauncherAppWidgetProviderInfo appWidgetInfo =
Robin Lee26ace122015-03-16 19:41:43 +00003895 LauncherModel.getProviderInfo(this, item.providerName, item.user);
Adam Cohen59400422014-03-05 18:07:04 -08003896
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003897 if (!mIsSafeModeEnabled
3898 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY) == 0)
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003899 && (item.restoreStatus != LauncherAppWidgetInfo.RESTORE_COMPLETED)) {
3900
Sunny Goyalff572272014-07-23 13:58:07 -07003901 if (appWidgetInfo == null) {
3902 if (DEBUG_WIDGETS) {
3903 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3904 + " belongs to component " + item.providerName
3905 + ", as the povider is null");
3906 }
3907 LauncherModel.deleteItemFromDatabase(this, item);
3908 return;
3909 }
Sunny Goyalff572272014-07-23 13:58:07 -07003910
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003911 // If we do not have a valid id, try to bind an id.
3912 if ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_ID_NOT_VALID) != 0) {
3913 // Note: This assumes that the id remap broadcast is received before this step.
3914 // If that is not the case, the id remap will be ignored and user may see the
3915 // click to setup view.
3916 PendingAddWidgetInfo pendingInfo = new PendingAddWidgetInfo(this, appWidgetInfo, null);
3917 pendingInfo.spanX = item.spanX;
3918 pendingInfo.spanY = item.spanY;
3919 pendingInfo.minSpanX = item.minSpanX;
3920 pendingInfo.minSpanY = item.minSpanY;
3921 Bundle options = null;
3922 WidgetHostViewLoader.getDefaultOptionsForWidget(this, pendingInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07003923
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003924 int newWidgetId = mAppWidgetHost.allocateAppWidgetId();
3925 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
3926 newWidgetId, appWidgetInfo, options);
3927
3928 // TODO consider showing a permission dialog when the widget is clicked.
3929 if (!success) {
3930 mAppWidgetHost.deleteAppWidgetId(newWidgetId);
3931 if (DEBUG_WIDGETS) {
3932 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3933 + " belongs to component " + item.providerName
3934 + ", as the launcher is unable to bing a new widget id");
3935 }
3936 LauncherModel.deleteItemFromDatabase(this, item);
3937 return;
Sunny Goyalff572272014-07-23 13:58:07 -07003938 }
Sunny Goyal84b4adc2015-08-12 15:12:16 -07003939
3940 item.appWidgetId = newWidgetId;
3941
3942 // If the widget has a configure activity, it is still needs to set it up, otherwise
3943 // the widget is ready to go.
3944 item.restoreStatus = (appWidgetInfo.configure == null)
3945 ? LauncherAppWidgetInfo.RESTORE_COMPLETED
3946 : LauncherAppWidgetInfo.FLAG_UI_NOT_READY;
3947
3948 LauncherModel.updateItemInDatabase(this, item);
3949 } else if (((item.restoreStatus & LauncherAppWidgetInfo.FLAG_UI_NOT_READY) != 0)
3950 && (appWidgetInfo.configure == null)) {
3951 // If the ID is already valid, verify if we need to configure or not.
3952 item.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
3953 LauncherModel.updateItemInDatabase(this, item);
Sunny Goyalff572272014-07-23 13:58:07 -07003954 }
Sunny Goyalff572272014-07-23 13:58:07 -07003955 }
3956
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003957 if (!mIsSafeModeEnabled && item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
Sunny Goyal651077b2014-06-30 14:15:31 -07003958 final int appWidgetId = item.appWidgetId;
Sunny Goyal651077b2014-06-30 14:15:31 -07003959 if (DEBUG_WIDGETS) {
Adam Cohen59400422014-03-05 18:07:04 -08003960 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component "
3961 + appWidgetInfo.provider);
Sunny Goyal651077b2014-06-30 14:15:31 -07003962 }
Daniel Sandler843e8602010-06-07 14:59:01 -04003963
Sunny Goyal651077b2014-06-30 14:15:31 -07003964 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
Sunny Goyal233ee962015-08-03 13:05:01 -07003965 item.minSpanX = appWidgetInfo.minSpanX;
3966 item.minSpanY = appWidgetInfo.minSpanY;
Sunny Goyal651077b2014-06-30 14:15:31 -07003967 } else {
3968 appWidgetInfo = null;
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003969 PendingAppWidgetHostView view = new PendingAppWidgetHostView(this, item,
3970 mIsSafeModeEnabled);
Sunny Goyal0fc1be12014-08-11 17:05:23 -07003971 view.updateIcon(mIconCache);
3972 item.hostView = view;
Sunny Goyal651077b2014-06-30 14:15:31 -07003973 item.hostView.updateAppWidget(null);
Sunny Goyalff572272014-07-23 13:58:07 -07003974 item.hostView.setOnClickListener(this);
Sunny Goyal651077b2014-06-30 14:15:31 -07003975 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003976
Joe Onorato9c1289c2009-08-17 11:03:03 -04003977 item.hostView.setTag(item);
Winson Chung211bac32012-05-15 13:43:57 -07003978 item.onBindAppWidget(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003979
Adam Cohendcd297f2013-06-18 13:13:40 -07003980 workspace.addInScreen(item.hostView, item.container, item.screenId, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04003981 item.cellY, item.spanX, item.spanY, false);
Adam Cohen59400422014-03-05 18:07:04 -08003982 if (!item.isCustomWidget()) {
3983 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
3984 }
Adam Cohended9f8d2010-11-03 13:25:16 -07003985
Joe Onorato9c1289c2009-08-17 11:03:03 -04003986 workspace.requestLayout();
3987
Daniel Sandler843e8602010-06-07 14:59:01 -04003988 if (DEBUG_WIDGETS) {
3989 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
3990 + (SystemClock.uptimeMillis()-start) + "ms");
3991 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003992 }
3993
Sunny Goyalff572272014-07-23 13:58:07 -07003994 /**
3995 * Restores a pending widget.
3996 *
3997 * @param appWidgetId The app widget id
3998 * @param cellInfo The position on screen where to create the widget.
3999 */
4000 private void completeRestoreAppWidget(final int appWidgetId) {
4001 LauncherAppWidgetHostView view = mWorkspace.getWidgetForAppWidgetId(appWidgetId);
4002 if ((view == null) || !(view instanceof PendingAppWidgetHostView)) {
4003 Log.e(TAG, "Widget update called, when the widget no longer exists.");
4004 return;
4005 }
4006
Sunny Goyal0fc1be12014-08-11 17:05:23 -07004007 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) view.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07004008 info.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
4009
4010 mWorkspace.reinflateWidgetsIfNecessary();
4011 LauncherModel.updateItemInDatabase(this, info);
4012 }
4013
Adam Cohen1462de32012-07-24 22:34:36 -07004014 public void onPageBoundSynchronously(int page) {
4015 mSynchronouslyBoundPages.add(page);
4016 }
4017
Joe Onorato9c1289c2009-08-17 11:03:03 -04004018 /**
4019 * Callback saying that there aren't any more items to bind.
4020 *
4021 * Implementation of the method from LauncherModel.Callbacks.
4022 */
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004023 public void finishBindingItems() {
Winson Chungd64d1762013-08-20 14:37:16 -07004024 Runnable r = new Runnable() {
4025 public void run() {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004026 finishBindingItems();
Winson Chungd64d1762013-08-20 14:37:16 -07004027 }
4028 };
4029 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004030 return;
4031 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004032 if (mSavedState != null) {
4033 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07004034 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004035 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004036 mSavedState = null;
4037 }
4038
Adam Cohen1462de32012-07-24 22:34:36 -07004039 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004040
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004041 setWorkspaceLoading(false);
Adam Cohen3ed316a2014-07-23 18:21:20 -07004042 sendLoadingCompleteBroadcastIfNecessary();
Adam Cohendb364c32014-05-20 14:23:40 -07004043
4044 // If we received the result of any pending adds while the loader was running (e.g. the
4045 // widget configuration forced an orientation change), process them now.
4046 if (sPendingAddItem != null) {
4047 final long screenId = completeAdd(sPendingAddItem);
4048
4049 // TODO: this moves the user to the page where the pending item was added. Ideally,
4050 // the screen would be guaranteed to exist after bind, and the page would be set through
4051 // the workspace restore process.
4052 mWorkspace.post(new Runnable() {
4053 @Override
4054 public void run() {
4055 mWorkspace.snapToScreenId(screenId);
4056 }
4057 });
4058 sPendingAddItem = null;
4059 }
4060
Sunny Goyal756adbc2015-04-16 15:20:51 -07004061 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
Adam Cohen9211d422014-10-07 18:14:53 -07004062
4063 if (mLauncherCallbacks != null) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004064 mLauncherCallbacks.finishBindingItems(false);
Adam Cohen9211d422014-10-07 18:14:53 -07004065 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004066 }
4067
Adam Cohen3ed316a2014-07-23 18:21:20 -07004068 private void sendLoadingCompleteBroadcastIfNecessary() {
4069 if (!mSharedPrefs.getBoolean(FIRST_LOAD_COMPLETE, false)) {
4070 String permission =
4071 getResources().getString(R.string.receive_first_load_broadcast_permission);
4072 Intent intent = new Intent(ACTION_FIRST_LOAD_COMPLETE);
4073 sendBroadcast(intent, permission);
4074 SharedPreferences.Editor editor = mSharedPrefs.edit();
4075 editor.putBoolean(FIRST_LOAD_COMPLETE, true);
4076 editor.apply();
4077 }
4078 }
4079
Winson Chunga0b7e862013-09-05 16:03:15 -07004080 public boolean isAllAppsButtonRank(int rank) {
4081 if (mHotseat != null) {
4082 return mHotseat.isAllAppsButtonRank(rank);
4083 }
4084 return false;
4085 }
4086
Winson Chunga2413752012-04-03 14:22:34 -07004087 private boolean canRunNewAppsAnimation() {
4088 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
Sunny Goyal639e9062015-08-19 19:17:06 -07004089 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000)
4090 && (mClings == null || !mClings.isVisible());
Winson Chunga2413752012-04-03 14:22:34 -07004091 }
4092
Winson Chungc9168342013-06-26 14:54:55 -07004093 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
Sunny Goyal5d2fc322015-07-06 22:52:49 -07004094 ValueAnimator bounceAnim = LauncherAnimUtils.ofViewAlphaAndScale(v, 1, 1, 1);
Winson Chungc9168342013-06-26 14:54:55 -07004095 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
4096 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
Sunny Goyal5a1f53b2015-05-27 10:24:24 -07004097 bounceAnim.setInterpolator(new OvershootInterpolator(BOUNCE_ANIMATION_TENSION));
Winson Chungc9168342013-06-26 14:54:55 -07004098 return bounceAnim;
4099 }
4100
Adam Cohen27772732013-11-11 14:00:56 +00004101 public boolean useVerticalBarLayout() {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07004102 return mDeviceProfile.isVerticalBarLayout();
Adam Cohen27772732013-11-11 14:00:56 +00004103 }
4104
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004105 protected Rect getSearchBarBounds() {
Sunny Goyalc6205602015-05-21 20:46:33 -07004106 return mDeviceProfile.getSearchBarBounds(Utilities.isRtl(getResources()));
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004107 }
4108
Winson Chung88fa7412015-08-03 14:25:28 -07004109 public void bindSearchProviderChanged() {
Sunny Goyal594d76d2014-11-06 10:12:54 -08004110 if (mSearchDropTargetBar == null) {
4111 return;
Winson Chungadf0c182012-08-23 14:59:07 -07004112 }
Sunny Goyal594d76d2014-11-06 10:12:54 -08004113 if (mQsb != null) {
4114 mSearchDropTargetBar.removeView(mQsb);
4115 mQsb = null;
4116 }
Adam Cohenb0df1b02015-03-18 22:21:40 -07004117 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004118 }
4119
Amith Yamasani6d7fe502010-11-16 09:05:07 -08004120 /**
Winson Chungbb785c62015-05-05 10:05:08 -07004121 * A runnable that we can dequeue and re-enqueue when all applications are bound (to prevent
4122 * multiple calls to bind the same list.)
4123 */
4124 @Thunk ArrayList<AppInfo> mTmpAppsList;
4125 private Runnable mBindAllApplicationsRunnable = new Runnable() {
4126 public void run() {
4127 bindAllApplications(mTmpAppsList);
4128 mTmpAppsList = null;
4129 }
4130 };
4131
4132 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004133 * Add the icons for all apps.
4134 *
4135 * Implementation of the method from LauncherModel.Callbacks.
4136 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004137 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Winson Chungbb785c62015-05-05 10:05:08 -07004138 if (waitUntilResume(mBindAllApplicationsRunnable, true)) {
4139 mTmpAppsList = apps;
4140 return;
4141 }
4142
Winson Chungb745afb2015-03-02 11:51:23 -08004143 if (mAppsView != null) {
4144 mAppsView.setApps(apps);
4145 }
Adam Cohen9211d422014-10-07 18:14:53 -07004146 if (mLauncherCallbacks != null) {
4147 mLauncherCallbacks.bindAllApplications(apps);
4148 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004149 }
4150
4151 /**
4152 * A package was updated.
4153 *
4154 * Implementation of the method from LauncherModel.Callbacks.
4155 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004156 public void bindAppsUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004157 Runnable r = new Runnable() {
4158 public void run() {
4159 bindAppsUpdated(apps);
4160 }
4161 };
4162 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004163 return;
4164 }
4165
Winson Chungb745afb2015-03-02 11:51:23 -08004166 if (mAppsView != null) {
4167 mAppsView.updateApps(apps);
Winson Chungc58497e2013-09-03 17:48:37 -07004168 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004169 }
4170
Sunny Goyal4390ace2014-10-13 11:33:11 -07004171 @Override
4172 public void bindWidgetsRestored(final ArrayList<LauncherAppWidgetInfo> widgets) {
4173 Runnable r = new Runnable() {
4174 public void run() {
4175 bindWidgetsRestored(widgets);
4176 }
4177 };
4178 if (waitUntilResume(r)) {
4179 return;
4180 }
4181 mWorkspace.widgetsRestored(widgets);
4182 }
4183
Joe Onorato9c1289c2009-08-17 11:03:03 -04004184 /**
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004185 * Some shortcuts were updated in the background.
4186 *
4187 * Implementation of the method from LauncherModel.Callbacks.
4188 */
Sunny Goyal4390ace2014-10-13 11:33:11 -07004189 @Override
4190 public void bindShortcutsChanged(final ArrayList<ShortcutInfo> updated,
4191 final ArrayList<ShortcutInfo> removed, final UserHandleCompat user) {
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004192 Runnable r = new Runnable() {
4193 public void run() {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004194 bindShortcutsChanged(updated, removed, user);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004195 }
4196 };
4197 if (waitUntilResume(r)) {
4198 return;
4199 }
4200
Sunny Goyal4390ace2014-10-13 11:33:11 -07004201 if (!updated.isEmpty()) {
4202 mWorkspace.updateShortcuts(updated);
4203 }
4204
4205 if (!removed.isEmpty()) {
4206 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4207 for (ShortcutInfo si : removed) {
4208 removedComponents.add(si.getTargetComponent());
4209 }
4210 mWorkspace.removeItemsByComponentName(removedComponents, user);
4211 // Notify the drag controller
4212 mDragController.onAppsRemoved(new ArrayList<String>(), removedComponents);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004213 }
4214 }
4215
4216 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004217 * Update the state of a package, typically related to install state.
4218 *
4219 * Implementation of the method from LauncherModel.Callbacks.
4220 */
Sunny Goyale755d462014-07-22 13:48:29 -07004221 @Override
Sunny Goyal756adbc2015-04-16 15:20:51 -07004222 public void bindRestoreItemsChange(final HashSet<ItemInfo> updates) {
4223 Runnable r = new Runnable() {
4224 public void run() {
4225 bindRestoreItemsChange(updates);
4226 }
4227 };
4228 if (waitUntilResume(r)) {
4229 return;
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004230 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004231
Sunny Goyal756adbc2015-04-16 15:20:51 -07004232 mWorkspace.updateRestoreItems(updates);
Sunny Goyala22666f2014-09-18 13:25:15 -07004233 }
4234
4235 /**
Winson Chung83892cc2013-05-01 16:53:33 -07004236 * A package was uninstalled. We take both the super set of packageNames
4237 * in addition to specific applications to remove, the reason being that
4238 * this can be called when a package is updated as well. In that scenario,
4239 * we only remove specific components from the workspace, where as
4240 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004241 *
Sunny Goyal1a745e82014-10-02 15:58:31 -07004242 * @param reason if non-zero, the icons are not permanently removed, rather marked as disabled.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004243 * Implementation of the method from LauncherModel.Callbacks.
4244 */
Sunny Goyal1a745e82014-10-02 15:58:31 -07004245 @Override
Winson Chung83892cc2013-05-01 16:53:33 -07004246 public void bindComponentsRemoved(final ArrayList<String> packageNames,
Sunny Goyal1a745e82014-10-02 15:58:31 -07004247 final ArrayList<AppInfo> appInfos, final UserHandleCompat user, final int reason) {
Winson Chungd64d1762013-08-20 14:37:16 -07004248 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004249 public void run() {
Sunny Goyal1a745e82014-10-02 15:58:31 -07004250 bindComponentsRemoved(packageNames, appInfos, user, reason);
Winson Chung83892cc2013-05-01 16:53:33 -07004251 }
Winson Chungd64d1762013-08-20 14:37:16 -07004252 };
4253 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07004254 return;
4255 }
4256
Sunny Goyal1a745e82014-10-02 15:58:31 -07004257 if (reason == 0) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004258 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4259 for (AppInfo info : appInfos) {
4260 removedComponents.add(info.componentName);
4261 }
Sunny Goyal1a745e82014-10-02 15:58:31 -07004262 if (!packageNames.isEmpty()) {
4263 mWorkspace.removeItemsByPackageName(packageNames, user);
4264 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004265 if (!removedComponents.isEmpty()) {
4266 mWorkspace.removeItemsByComponentName(removedComponents, user);
Sunny Goyal1a745e82014-10-02 15:58:31 -07004267 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004268 // Notify the drag controller
4269 mDragController.onAppsRemoved(packageNames, removedComponents);
4270
Sunny Goyal1a745e82014-10-02 15:58:31 -07004271 } else {
4272 mWorkspace.disableShortcutsByPackageName(packageNames, user, reason);
Joe Onorato36115782010-06-17 13:28:48 -04004273 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07004274
Winson Chungdf95eb12013-10-16 14:57:07 -07004275 // Update AllApps
Winson Chungb745afb2015-03-02 11:51:23 -08004276 if (mAppsView != null) {
4277 mAppsView.removeApps(appInfos);
Winson Chungc58497e2013-09-03 17:48:37 -07004278 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004279 }
Joe Onoratobe386092009-11-17 17:32:16 -08004280
Michael Jurkac402cd92013-05-20 15:49:32 +02004281 private Runnable mBindPackagesUpdatedRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004282 public void run() {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004283 bindAllPackages(mWidgetsModel);
Winson Chung83892cc2013-05-01 16:53:33 -07004284 }
Michael Jurkac402cd92013-05-20 15:49:32 +02004285 };
Hyunyoung Song3f471442015-04-08 19:01:34 -07004286
Hyunyoung Song8821ca92015-05-04 16:28:20 -07004287 @Override
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004288 public void bindAllPackages(final WidgetsModel model) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004289 if (waitUntilResume(mBindPackagesUpdatedRunnable, true)) {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004290 mWidgetsModel = model;
Winson Chung83892cc2013-05-01 16:53:33 -07004291 return;
4292 }
4293
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004294 if (mWidgetsView != null && model != null) {
4295 mWidgetsView.addWidgets(model);
4296 mWidgetsModel = null;
Winson Chung785d2eb2011-04-14 16:08:02 -07004297 }
Winson Chung80baf5a2010-08-09 16:03:15 -07004298 }
4299
Winson Chung400438b2011-01-16 17:53:48 -08004300 private int mapConfigurationOriActivityInfoOri(int configOri) {
4301 final Display d = getWindowManager().getDefaultDisplay();
4302 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
4303 switch (d.getRotation()) {
4304 case Surface.ROTATION_0:
4305 case Surface.ROTATION_180:
4306 // We are currently in the same basic orientation as the natural orientation
4307 naturalOri = configOri;
4308 break;
4309 case Surface.ROTATION_90:
4310 case Surface.ROTATION_270:
4311 // We are currently in the other basic orientation to the natural orientation
4312 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
4313 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
4314 break;
4315 }
4316
4317 int[] oriMap = {
4318 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
4319 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
4320 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
4321 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
4322 };
4323 // Since the map starts at portrait, we need to offset if this device's natural orientation
4324 // is landscape.
4325 int indexOffset = 0;
4326 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
4327 indexOffset = 1;
4328 }
4329 return oriMap[(d.getRotation() + indexOffset) % 4];
4330 }
Adam Cohen446e9402011-09-15 18:21:21 -07004331
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004332 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR2)
Winson Chung4b919f82012-05-01 10:44:08 -07004333 public void lockScreenOrientation() {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004334 if (mRotationEnabled) {
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004335 if (Utilities.ATLEAST_JB_MR2) {
4336 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LOCKED);
4337 } else {
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004338 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
4339 .getConfiguration().orientation));
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004340 }
Winson Chung4b919f82012-05-01 10:44:08 -07004341 }
4342 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004343
Winson Chung4b919f82012-05-01 10:44:08 -07004344 public void unlockScreenOrientation(boolean immediate) {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004345 if (mRotationEnabled) {
Winson Chung4b919f82012-05-01 10:44:08 -07004346 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07004347 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07004348 } else {
4349 mHandler.postDelayed(new Runnable() {
4350 public void run() {
4351 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4352 }
Sunny Goyal756cd262015-08-20 12:33:21 -07004353 }, RESTORE_SCREEN_ORIENTATION_DELAY);
Winson Chung641d71d2012-04-26 15:58:01 -07004354 }
Winson Chung4b919f82012-05-01 10:44:08 -07004355 }
Winson Chung400438b2011-01-16 17:53:48 -08004356 }
4357
Winson Chunge43a1e72014-01-15 10:33:02 -08004358 protected boolean isLauncherPreinstalled() {
Adam Cohen9211d422014-10-07 18:14:53 -07004359 if (mLauncherCallbacks != null) {
4360 return mLauncherCallbacks.isLauncherPreinstalled();
4361 }
Winson Chunge43a1e72014-01-15 10:33:02 -08004362 PackageManager pm = getPackageManager();
4363 try {
4364 ApplicationInfo ai = pm.getApplicationInfo(getComponentName().getPackageName(), 0);
4365 if ((ai.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
4366 return true;
4367 } else {
4368 return false;
4369 }
4370 } catch (NameNotFoundException e) {
4371 e.printStackTrace();
4372 return false;
4373 }
4374 }
4375
Adam Cohenea90f832014-05-21 15:03:34 -07004376 /**
4377 * This method indicates whether or not we should suggest default wallpaper dimensions
4378 * when our wallpaper cropper was not yet used to set a wallpaper.
4379 */
4380 protected boolean overrideWallpaperDimensions() {
Adam Cohen9211d422014-10-07 18:14:53 -07004381 if (mLauncherCallbacks != null) {
4382 return mLauncherCallbacks.overrideWallpaperDimensions();
4383 }
Adam Cohenea90f832014-05-21 15:03:34 -07004384 return true;
4385 }
4386
Adam Cohen432609a2014-03-13 17:03:22 -07004387 /**
4388 * To be overridden by subclasses to indicate that there is an activity to launch
4389 * before showing the standard launcher experience.
4390 */
4391 protected boolean hasFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004392 if (mLauncherCallbacks != null) {
4393 return mLauncherCallbacks.hasFirstRunActivity();
4394 }
Adam Cohen432609a2014-03-13 17:03:22 -07004395 return false;
4396 }
4397
4398 /**
4399 * To be overridden by subclasses to launch any first run activity
4400 */
4401 protected Intent getFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004402 if (mLauncherCallbacks != null) {
4403 return mLauncherCallbacks.getFirstRunActivity();
4404 }
Adam Cohen432609a2014-03-13 17:03:22 -07004405 return null;
4406 }
4407
Winson Chunga6945242014-01-08 14:04:34 -08004408 private boolean shouldRunFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004409 return !ActivityManager.isRunningInTestHarness() &&
4410 !mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
Winson Chunga6945242014-01-08 14:04:34 -08004411 }
4412
Adam Cohen4a9423d2014-03-28 14:22:31 -07004413 protected boolean hasRunFirstRunActivity() {
4414 return mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
4415 }
4416
Adam Cohen432609a2014-03-13 17:03:22 -07004417 public boolean showFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004418 if (shouldRunFirstRunActivity() &&
4419 hasFirstRunActivity()) {
Winson Chunga6945242014-01-08 14:04:34 -08004420 Intent firstRunIntent = getFirstRunActivity();
4421 if (firstRunIntent != null) {
4422 startActivity(firstRunIntent);
4423 markFirstRunActivityShown();
Adam Cohen432609a2014-03-13 17:03:22 -07004424 return true;
Winson Chunga6945242014-01-08 14:04:34 -08004425 }
4426 }
Adam Cohen432609a2014-03-13 17:03:22 -07004427 return false;
Winson Chunga6945242014-01-08 14:04:34 -08004428 }
4429
4430 private void markFirstRunActivityShown() {
4431 SharedPreferences.Editor editor = mSharedPrefs.edit();
4432 editor.putBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, true);
4433 editor.apply();
4434 }
4435
Adam Cohen432609a2014-03-13 17:03:22 -07004436 /**
4437 * To be overridden by subclasses to indicate that there is an in-activity full-screen intro
4438 * screen that must be displayed and dismissed.
4439 */
4440 protected boolean hasDismissableIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004441 if (mLauncherCallbacks != null) {
4442 return mLauncherCallbacks.hasDismissableIntroScreen();
4443 }
Adam Cohen432609a2014-03-13 17:03:22 -07004444 return false;
4445 }
4446
4447 /**
4448 * Full screen intro screen to be shown and dismissed before the launcher can be used.
4449 */
4450 protected View getIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004451 if (mLauncherCallbacks != null) {
4452 return mLauncherCallbacks.getIntroScreen();
4453 }
Adam Cohen432609a2014-03-13 17:03:22 -07004454 return null;
4455 }
4456
4457 /**
4458 * To be overriden by subclasses to indicate whether the in-activity intro screen has been
4459 * dismissed. This method is ignored if #hasDismissableIntroScreen returns false.
4460 */
4461 private boolean shouldShowIntroScreen() {
4462 return hasDismissableIntroScreen() &&
4463 !mSharedPrefs.getBoolean(INTRO_SCREEN_DISMISSED, false);
4464 }
4465
4466 protected void showIntroScreen() {
4467 View introScreen = getIntroScreen();
4468 changeWallpaperVisiblity(false);
4469 if (introScreen != null) {
4470 mDragLayer.showOverlayView(introScreen);
4471 }
Adam Cohenc3e12c72014-10-31 16:15:36 -07004472 if (mLauncherOverlayContainer != null) {
4473 mLauncherOverlayContainer.setVisibility(View.INVISIBLE);
4474 }
Adam Cohen432609a2014-03-13 17:03:22 -07004475 }
4476
4477 public void dismissIntroScreen() {
4478 markIntroScreenDismissed();
4479 if (showFirstRunActivity()) {
4480 // We delay hiding the intro view until the first run activity is showing. This
4481 // avoids a blip.
4482 mWorkspace.postDelayed(new Runnable() {
4483 @Override
4484 public void run() {
4485 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004486 if (mLauncherOverlayContainer != null) {
4487 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4488 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004489 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004490 }
4491 }, ACTIVITY_START_DELAY);
4492 } else {
4493 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004494 if (mLauncherOverlayContainer != null) {
4495 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4496 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004497 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004498 }
4499 changeWallpaperVisiblity(true);
4500 }
4501
4502 private void markIntroScreenDismissed() {
4503 SharedPreferences.Editor editor = mSharedPrefs.edit();
4504 editor.putBoolean(INTRO_SCREEN_DISMISSED, true);
4505 editor.apply();
4506 }
4507
Adam Cohen091440a2015-03-18 14:16:05 -07004508 @Thunk void showFirstRunClings() {
Sunny Goyal88d60f12014-09-08 03:47:29 -07004509 // The two first run cling paths are mutually exclusive, if the launcher is preinstalled
4510 // on the device, then we always show the first run cling experience (or if there is no
4511 // launcher2). Otherwise, we prompt the user upon started for migration
4512 LauncherClings launcherClings = new LauncherClings(this);
4513 if (launcherClings.shouldShowFirstRunOrMigrationClings()) {
Sunny Goyal639e9062015-08-19 19:17:06 -07004514 mClings = launcherClings;
Sunny Goyal88d60f12014-09-08 03:47:29 -07004515 if (mModel.canMigrateFromOldLauncherDb(this)) {
4516 launcherClings.showMigrationCling();
4517 } else {
Sunny Goyalaf0628f2014-09-19 10:14:48 -07004518 launcherClings.showLongPressCling(true);
Sunny Goyal88d60f12014-09-08 03:47:29 -07004519 }
4520 }
4521 }
4522
Winson Chunga6945242014-01-08 14:04:34 -08004523 void showWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004524 if (mWorkspace != null) mWorkspace.setAlpha(1f);
4525 if (mHotseat != null) mHotseat.setAlpha(1f);
4526 if (mPageIndicators != null) mPageIndicators.setAlpha(1f);
Winson Chung006ee262015-08-03 14:40:11 -07004527 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4528 SearchDropTargetBar.State.SEARCH_BAR, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004529 }
4530
4531 void hideWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004532 if (mWorkspace != null) mWorkspace.setAlpha(0f);
4533 if (mHotseat != null) mHotseat.setAlpha(0f);
4534 if (mPageIndicators != null) mPageIndicators.setAlpha(0f);
Winson Chung006ee262015-08-03 14:40:11 -07004535 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4536 SearchDropTargetBar.State.INVISIBLE, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004537 }
4538
Winson Chung5ffd51d2015-06-25 11:36:50 -07004539 // TODO: These method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004540 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Mathew Inwood72fbec12013-11-19 15:45:07 +00004541 public ItemInfo createAppDragInfo(Intent appLaunchIntent) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004542 // Called from search suggestion
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004543 UserHandleCompat user = null;
Sunny Goyal9fc953b2015-08-17 12:24:25 -07004544 if (Utilities.ATLEAST_LOLLIPOP) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004545 UserHandle userHandle = appLaunchIntent.getParcelableExtra(Intent.EXTRA_USER);
4546 if (userHandle != null) {
4547 user = UserHandleCompat.fromUser(userHandle);
4548 }
4549 }
4550 return createAppDragInfo(appLaunchIntent, user);
Winson Chung5ffd51d2015-06-25 11:36:50 -07004551 }
4552
4553 // TODO: This method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004554 public ItemInfo createAppDragInfo(Intent intent, UserHandleCompat user) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004555 if (user == null) {
4556 user = UserHandleCompat.myUserHandle();
4557 }
4558
4559 // Called from search suggestion, add the profile extra to the intent to ensure that we
4560 // can launch it correctly
Kenny Guyed131872014-04-30 03:02:21 +01004561 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004562 LauncherActivityInfoCompat activityInfo = launcherApps.resolveActivity(intent, user);
Kenny Guyed131872014-04-30 03:02:21 +01004563 if (activityInfo == null) {
Mathew Inwood72fbec12013-11-19 15:45:07 +00004564 return null;
4565 }
Winson Chung5ffd51d2015-06-25 11:36:50 -07004566 return new AppInfo(this, activityInfo, user, mIconCache);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004567 }
4568
Winson Chung5ffd51d2015-06-25 11:36:50 -07004569 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004570 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4571 Bitmap icon) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004572 return new ShortcutInfo(shortcutIntent, caption, caption, icon,
Kenny Guyed131872014-04-30 03:02:21 +01004573 UserHandleCompat.myUserHandle());
4574 }
4575
Winson Chung5ffd51d2015-06-25 11:36:50 -07004576 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004577 public void startDrag(View dragView, ItemInfo dragInfo, DragSource source) {
4578 dragView.setTag(dragInfo);
Winson Chungbabb53e2014-04-14 17:12:49 -07004579 mWorkspace.onExternalDragStartedWithItem(dragView);
4580 mWorkspace.beginExternalDragShared(dragView, source);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004581 }
4582
Winson Chung5ffd51d2015-06-25 11:36:50 -07004583 protected void moveWorkspaceToDefaultScreen() {
4584 mWorkspace.moveToDefaultScreen(false);
4585 }
4586
Anjali Koppalf5d29132014-02-28 13:33:27 -08004587 @Override
4588 public void onPageSwitch(View newPage, int newPageIndex) {
Adam Cohen9211d422014-10-07 18:14:53 -07004589 if (mLauncherCallbacks != null) {
4590 mLauncherCallbacks.onPageSwitch(newPage, newPageIndex);
4591 }
Anjali Koppalf5d29132014-02-28 13:33:27 -08004592 }
4593
Winson Chung80baf5a2010-08-09 16:03:15 -07004594 /**
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004595 * Returns a FastBitmapDrawable with the icon, accurately sized.
4596 */
4597 public FastBitmapDrawable createIconDrawable(Bitmap icon) {
4598 FastBitmapDrawable d = new FastBitmapDrawable(icon);
4599 d.setFilterBitmap(true);
4600 resizeIconDrawable(d);
4601 return d;
4602 }
4603
4604 /**
4605 * Resizes an icon drawable to the correct icon size.
4606 */
4607 public void resizeIconDrawable(Drawable icon) {
4608 icon.setBounds(0, 0, mDeviceProfile.iconSizePx, mDeviceProfile.iconSizePx);
4609 }
4610
4611 /**
Joe Onoratobe386092009-11-17 17:32:16 -08004612 * Prints out out state for debugging.
4613 */
4614 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04004615 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08004616 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08004617 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
4618 Log.d(TAG, "mRestoring=" + mRestoring);
4619 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004620 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08004621 mModel.dumpState();
Hyunyoung Song3f471442015-04-08 19:01:34 -07004622 // TODO(hyunyoungs): add mWidgetsView.dumpState(); or mWidgetsModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07004623
Daniel Sandler325dc232013-06-05 22:57:57 -04004624 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08004625 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004626
4627 @Override
4628 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
4629 super.dump(prefix, fd, writer, args);
Adam Cohen4caf2982013-08-20 18:54:31 -07004630 synchronized (sDumpLogs) {
4631 writer.println(" ");
4632 writer.println("Debug logs: ");
4633 for (int i = 0; i < sDumpLogs.size(); i++) {
4634 writer.println(" " + sDumpLogs.get(i));
4635 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004636 }
Adam Cohen9211d422014-10-07 18:14:53 -07004637 if (mLauncherCallbacks != null) {
4638 mLauncherCallbacks.dump(prefix, fd, writer, args);
4639 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004640 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004641
4642 public static void dumpDebugLogsToConsole() {
Winson Chungede41292013-09-19 16:27:36 -07004643 if (DEBUG_DUMP_LOG) {
4644 synchronized (sDumpLogs) {
4645 Log.d(TAG, "");
4646 Log.d(TAG, "*********************");
4647 Log.d(TAG, "Launcher debug logs: ");
4648 for (int i = 0; i < sDumpLogs.size(); i++) {
4649 Log.d(TAG, " " + sDumpLogs.get(i));
4650 }
4651 Log.d(TAG, "*********************");
4652 Log.d(TAG, "");
Adam Cohen4caf2982013-08-20 18:54:31 -07004653 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004654 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004655 }
4656
4657 public static void addDumpLog(String tag, String log, boolean debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004658 addDumpLog(tag, log, null, debugLog);
4659 }
4660
4661 public static void addDumpLog(String tag, String log, Exception e, boolean debugLog) {
Adam Cohen4caf2982013-08-20 18:54:31 -07004662 if (debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004663 if (e != null) {
4664 Log.d(tag, log, e);
4665 } else {
4666 Log.d(tag, log);
4667 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004668 }
Winson Chungede41292013-09-19 16:27:36 -07004669 if (DEBUG_DUMP_LOG) {
4670 sDateStamp.setTime(System.currentTimeMillis());
4671 synchronized (sDumpLogs) {
Dan Sandler295ae182013-12-10 16:05:47 -05004672 sDumpLogs.add(sDateFormat.format(sDateStamp) + ": " + tag + ", " + log
4673 + (e == null ? "" : (", Exception: " + e)));
Adam Cohen4caf2982013-08-20 18:54:31 -07004674 }
Winson Chungede41292013-09-19 16:27:36 -07004675 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004676 }
4677
Adam Cohen59400422014-03-05 18:07:04 -08004678 public static CustomAppWidget getCustomAppWidget(String name) {
4679 return sCustomAppWidgets.get(name);
4680 }
4681
4682 public static HashMap<String, CustomAppWidget> getCustomAppWidgets() {
4683 return sCustomAppWidgets;
4684 }
4685
Winson Chungede41292013-09-19 16:27:36 -07004686 public void dumpLogsToLocalData() {
4687 if (DEBUG_DUMP_LOG) {
Michael Jurka43467462013-11-14 12:03:58 +01004688 new AsyncTask<Void, Void, Void>() {
4689 public Void doInBackground(Void ... args) {
Winson Chungede41292013-09-19 16:27:36 -07004690 boolean success = false;
4691 sDateStamp.setTime(sRunStart);
4692 String FILENAME = sDateStamp.getMonth() + "-"
4693 + sDateStamp.getDay() + "_"
4694 + sDateStamp.getHours() + "-"
4695 + sDateStamp.getMinutes() + "_"
4696 + sDateStamp.getSeconds() + ".txt";
4697
4698 FileOutputStream fos = null;
4699 File outFile = null;
4700 try {
4701 outFile = new File(getFilesDir(), FILENAME);
4702 outFile.createNewFile();
4703 fos = new FileOutputStream(outFile);
4704 } catch (Exception e) {
4705 e.printStackTrace();
4706 }
4707 if (fos != null) {
4708 PrintWriter writer = new PrintWriter(fos);
4709
4710 writer.println(" ");
4711 writer.println("Debug logs: ");
4712 synchronized (sDumpLogs) {
4713 for (int i = 0; i < sDumpLogs.size(); i++) {
4714 writer.println(" " + sDumpLogs.get(i));
4715 }
4716 }
4717 writer.close();
4718 }
4719 try {
4720 if (fos != null) {
4721 fos.close();
4722 success = true;
4723 }
4724 } catch (IOException e) {
4725 e.printStackTrace();
4726 }
Michael Jurka43467462013-11-14 12:03:58 +01004727 return null;
Winson Chungede41292013-09-19 16:27:36 -07004728 }
Michael Jurka43467462013-11-14 12:03:58 +01004729 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
Adam Cohen4caf2982013-08-20 18:54:31 -07004730 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004731 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004732}
Michael Jurka2763be32011-02-24 11:19:57 -08004733
Dan Sandlerd5024042014-01-09 15:01:33 -05004734interface DebugIntents {
4735 static final String DELETE_DATABASE = "com.android.launcher3.action.DELETE_DATABASE";
4736 static final String MIGRATE_DATABASE = "com.android.launcher3.action.MIGRATE_DATABASE";
Adam Cohen8b5b05b2014-01-10 21:42:39 +00004737}