blob: 40c7b2904759d60b62882caaeabb590b63ef310b [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;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080038import android.content.Context;
Chris Wren40c5ed32014-06-24 18:24:23 -040039import android.content.DialogInterface;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080040import android.content.Intent;
Winson Chungf0ea4d32011-06-06 14:27:16 -070041import android.content.IntentFilter;
Adam Cohen173f7112015-03-27 15:14:00 -070042import android.content.IntentSender;
Winson Chung82f55532011-08-09 14:14:23 -070043import android.content.SharedPreferences;
Winson Chungaafa03c2010-06-11 17:34:16 -070044import android.content.pm.ActivityInfo;
Winson Chunge43a1e72014-01-15 10:33:02 -080045import android.content.pm.ApplicationInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080046import android.content.pm.PackageManager;
Adam Cohen716b51e2011-06-30 12:09:54 -070047import android.content.pm.PackageManager.NameNotFoundException;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080048import android.content.res.Configuration;
Adam Cohen3f9c9712014-10-31 11:48:25 -070049import android.database.sqlite.SQLiteDatabase;
Adam Cohen268c4752012-06-06 17:47:33 -070050import android.graphics.Bitmap;
51import android.graphics.Canvas;
Sandeep Siddhartha2efc7d92014-05-16 17:21:15 -070052import android.graphics.Color;
Adam Cohen268c4752012-06-06 17:47:33 -070053import android.graphics.PorterDuff;
Michael Jurkaaf442092010-06-10 17:01:57 -070054import android.graphics.Rect;
Sunny Goyal4a6c6f32015-05-19 12:36:46 -070055import android.graphics.drawable.ColorDrawable;
Michael Jurkaaf442092010-06-10 17:01:57 -070056import android.graphics.drawable.Drawable;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040057import android.net.Uri;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -070058import android.os.AsyncTask;
Adam Cohen0f668f32014-09-08 19:54:17 +020059import android.os.Build;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080060import android.os.Bundle;
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +020061import android.os.Environment;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080062import android.os.Handler;
Adam Cohended9f8d2010-11-03 13:25:16 -070063import android.os.Message;
Winson Chunga2413752012-04-03 14:22:34 -070064import android.os.StrictMode;
Daniel Sandler843e8602010-06-07 14:59:01 -040065import android.os.SystemClock;
Sunny Goyala1d1bf32015-06-26 13:24:53 -070066import android.os.UserHandle;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080067import android.text.Selection;
68import android.text.SpannableStringBuilder;
Michael Jurkaa33411c2012-06-14 16:18:21 -070069import android.text.TextUtils;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080070import android.text.method.TextKeyListener;
Joe Onorato7c312c12009-08-13 21:36:53 -070071import android.util.Log;
Adam Cohen96d30a12013-07-16 18:13:21 -070072import android.view.Display;
73import android.view.Gravity;
74import android.view.HapticFeedbackConstants;
75import android.view.KeyEvent;
76import android.view.LayoutInflater;
77import 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;
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700106import com.android.launcher3.model.WidgetsModel;
Winson Chung6b1c73f2015-06-18 11:38:42 -0700107import com.android.launcher3.util.ComponentKey;
Sunny Goyale2df0622015-04-24 11:27:00 -0700108import com.android.launcher3.util.LongArrayMap;
Adam Cohen091440a2015-03-18 14:16:05 -0700109import com.android.launcher3.util.Thunk;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700110import com.android.launcher3.widget.PendingAddWidgetInfo;
Hyunyoung Songb99ff3e2015-04-23 15:17:50 -0700111import com.android.launcher3.widget.WidgetHostViewLoader;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700112import com.android.launcher3.widget.WidgetsContainerView;
Adam Cohen6c5891a2014-07-09 23:53:15 -0700113
Adam Cohen4caf2982013-08-20 18:54:31 -0700114import java.io.File;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700115import java.io.FileDescriptor;
Adam Cohen4caf2982013-08-20 18:54:31 -0700116import java.io.FileOutputStream;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700117import java.io.IOException;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700118import java.io.PrintWriter;
Chet Haasea8f996d2015-02-17 12:56:04 -0800119import java.lang.reflect.InvocationTargetException;
120import java.lang.reflect.Method;
Adam Cohen4caf2982013-08-20 18:54:31 -0700121import java.text.DateFormat;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700122import java.util.ArrayList;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700123import java.util.Collection;
Adam Cohen4caf2982013-08-20 18:54:31 -0700124import java.util.Date;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700125import java.util.HashMap;
Sunny Goyal4390ace2014-10-13 11:33:11 -0700126import java.util.HashSet;
Michael Jurkad7c28052012-04-27 15:43:36 -0700127import java.util.List;
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000128import java.util.concurrent.atomic.AtomicInteger;
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 {
Hyunyoung Song4e8fb912015-04-11 15:44:32 -0700136 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";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800179 // Type: int
Winson Chung3d503fb2011-07-13 17:25:49 -0700180 private static final String RUNTIME_STATE_PENDING_ADD_CONTAINER = "launcher.add_container";
181 // Type: int
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800182 private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
183 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700184 private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cell_x";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800185 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700186 private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cell_y";
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700187 // Type: int
188 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_X = "launcher.add_span_x";
189 // Type: int
190 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_Y = "launcher.add_span_y";
191 // Type: parcelable
192 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_INFO = "launcher.add_widget_info";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000193 // Type: parcelable
Adam Cohen4637b5a2013-11-04 18:21:24 -0800194 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_ID = "launcher.add_widget_id";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000195 // Type: int[]
196 private static final String RUNTIME_STATE_VIEW_IDS = "launcher.view_ids";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800197
Adam Cohen432609a2014-03-13 17:03:22 -0700198 static final String INTRO_SCREEN_DISMISSED = "launcher.intro_screen_dismissed";
Adam Cohenb54a5982014-01-08 15:21:04 -0800199 static final String FIRST_RUN_ACTIVITY_DISPLAYED = "launcher.first_run_activity_displayed";
200
Adam Cohen3ed316a2014-07-23 18:21:20 -0700201 static final String FIRST_LOAD_COMPLETE = "launcher.first_load_complete";
202 static final String ACTION_FIRST_LOAD_COMPLETE =
203 "com.android.launcher3.action.FIRST_LOAD_COMPLETE";
204
Adam Cohen39a06042013-07-19 14:30:12 -0700205 public static final String SHOW_WEIGHT_WATCHER = "debug.show_mem";
Daniel Sandler6053b8002013-08-15 15:44:26 -0700206 public static final boolean SHOW_WEIGHT_WATCHER_DEFAULT = false;
Adam Cohen39a06042013-07-19 14:30:12 -0700207
Sunny Goyal594d76d2014-11-06 10:12:54 -0800208 private static final String QSB_WIDGET_ID = "qsb_widget_id";
209 private static final String QSB_WIDGET_PROVIDER = "qsb_widget_provider";
210
Winson Chunga6945242014-01-08 14:04:34 -0800211 public static final String USER_HAS_MIGRATED = "launcher.user_migrated_from_old_data";
212
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700213 /** The different states that Launcher can be in. */
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700214 enum State { NONE, WORKSPACE, APPS, APPS_SPRING_LOADED, WIDGETS, WIDGETS_SPRING_LOADED }
215
Adam Cohen091440a2015-03-18 14:16:05 -0700216 @Thunk State mState = State.WORKSPACE;
Adam Cohen091440a2015-03-18 14:16:05 -0700217 @Thunk LauncherStateTransitionAnimation mStateTransitionAnimation;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700218
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700219 private boolean mIsSafeModeEnabled;
220
Adam Cohenc2d6e892014-10-16 09:49:24 -0700221 LauncherOverlayCallbacks mLauncherOverlayCallbacks = new LauncherOverlayCallbacksImpl();
222 LauncherOverlay mLauncherOverlay;
Adam Cohena6d04922014-10-23 17:28:30 -0700223 InsettableFrameLayout mLauncherOverlayContainer;
Adam Cohenc2d6e892014-10-16 09:49:24 -0700224
Joe Onorato9c1289c2009-08-17 11:03:03 -0400225 static final int APPWIDGET_HOST_ID = 1024;
Adam Cohenad4e15c2013-10-17 16:21:35 -0700226 public static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
227 private static final int ON_ACTIVITY_RESULT_ANIMATION_DELAY = 500;
Adam Cohen646fdf72014-04-08 16:59:36 -0700228 private static final int ACTIVITY_START_DELAY = 1000;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800229
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000230 private HashMap<Integer, Integer> mItemIdToViewId = new HashMap<Integer, Integer>();
231 private static final AtomicInteger sNextGeneratedId = new AtomicInteger(1);
232
Winson Chunga2413752012-04-03 14:22:34 -0700233 // How long to wait before the new-shortcut animation automatically pans the workspace
Winson Chung94d67682013-09-25 16:29:40 -0700234 private static int NEW_APPS_PAGE_MOVE_DELAY = 500;
235 private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 5;
Adam Cohen091440a2015-03-18 14:16:05 -0700236 @Thunk static int NEW_APPS_ANIMATION_DELAY = 500;
Winson Chunga2413752012-04-03 14:22:34 -0700237
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800238 private final BroadcastReceiver mCloseSystemDialogsReceiver
239 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800240
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800241 private LayoutInflater mInflater;
242
Adam Cohen091440a2015-03-18 14:16:05 -0700243 @Thunk Workspace mWorkspace;
Craig Mautner360310b2012-10-26 15:13:08 -0700244 private View mLauncherView;
Winson Chunga6945242014-01-08 14:04:34 -0800245 private View mPageIndicators;
Adam Cohen091440a2015-03-18 14:16:05 -0700246 @Thunk DragLayer mDragLayer;
Michael Jurkab737ee62011-11-15 15:57:22 -0800247 private DragController mDragController;
Adam Cohen39a06042013-07-19 14:30:12 -0700248 private View mWeightWatcher;
Romain Guycbb89e42009-06-08 15:52:54 -0700249
Sunny Goyalffe83f12014-08-14 17:39:34 -0700250 private AppWidgetManagerCompat mAppWidgetManager;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700251 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700252
Sunny Goyalaa8ef112015-06-12 20:04:41 -0700253 @Thunk final ItemInfo mPendingAddInfo = new ItemInfo();
Adam Cohen59400422014-03-05 18:07:04 -0800254 private LauncherAppWidgetProviderInfo mPendingAddWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800255 private int mPendingAddWidgetId = -1;
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700256
Michael Jurka0280c3b2010-09-17 15:00:07 -0700257 private int[] mTmpAddItemCellCoordinates = new int[2];
258
Sunny Goyal316490e2015-06-02 09:38:28 -0700259 @Thunk Hotseat mHotseat;
Jorim Jaggid017f882014-01-14 17:08:48 -0800260 private ViewGroup mOverviewPanel;
Adam Cohenf358a4b2013-07-23 16:47:31 -0700261
Michael Jurka838a4ca2011-02-07 13:33:06 -0800262 private View mAllAppsButton;
Hyunyoung Song98ff38a2015-07-10 17:50:13 -0700263 private View mWidgetsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700264
Winson Chungc51db6a2011-10-05 11:44:49 -0700265 private SearchDropTargetBar mSearchDropTargetBar;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700266
267 // Main container view for the all apps screen.
Winson Chung5f4e0fd2015-05-22 11:12:27 -0700268 @Thunk AllAppsContainerView mAppsView;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700269
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700270 // Main container view and the model for the widget tray screen.
271 @Thunk WidgetsContainerView mWidgetsView;
272 @Thunk WidgetsModel mWidgetsModel;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700273
Winson Chungf0ea4d32011-06-06 14:27:16 -0700274 private boolean mAutoAdvanceRunning = false;
Sunny Goyal594d76d2014-11-06 10:12:54 -0800275 private AppWidgetHostView mQsb;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800276
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800277 private Bundle mSavedState;
Winson Chung4a2afa32012-07-19 14:53:05 -0700278 // We set the state in both onCreate and then onNewIntent in some cases, which causes both
279 // scroll issues (because the workspace may not have been measured yet) and extra work.
280 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
281 private State mOnResumeState = State.NONE;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800282
283 private SpannableStringBuilder mDefaultKeySsb = null;
284
Adam Cohen091440a2015-03-18 14:16:05 -0700285 @Thunk boolean mWorkspaceLoading = true;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400286
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800287 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800288 private boolean mRestoring;
289 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700290 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800291
Michael Jurka1e2f4652013-07-08 18:03:46 -0700292 private ArrayList<Runnable> mBindOnResumeCallbacks = new ArrayList<Runnable>();
Michael Jurka7607c2f2013-04-03 14:33:19 -0700293 private ArrayList<Runnable> mOnResumeCallbacks = new ArrayList<Runnable>();
294
Joe Onorato9c1289c2009-08-17 11:03:03 -0400295 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800296 private IconCache mIconCache;
Adam Cohen091440a2015-03-18 14:16:05 -0700297 @Thunk boolean mUserPresent = true;
Adam Cohend113e0c2010-11-11 10:48:05 -0800298 private boolean mVisible = false;
Adam Cohened307df2013-10-02 09:37:31 -0700299 private boolean mHasFocus = false;
Adam Cohend113e0c2010-11-11 10:48:05 -0800300 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400301
Sunny Goyale2df0622015-04-24 11:27:00 -0700302 private static LongArrayMap<FolderInfo> sFolders = new LongArrayMap<>();
Romain Guycbb89e42009-06-08 15:52:54 -0700303
Adam Cohen61f560d2013-09-30 15:58:20 -0700304 private View.OnTouchListener mHapticFeedbackTouchListener;
305
Adam Cohended9f8d2010-11-03 13:25:16 -0700306 // Related to the auto-advancing of widgets
307 private final int ADVANCE_MSG = 1;
308 private final int mAdvanceInterval = 20000;
309 private final int mAdvanceStagger = 250;
310 private long mAutoAdvanceSentTime;
311 private long mAutoAdvanceTimeLeft = -1;
Adam Cohen091440a2015-03-18 14:16:05 -0700312 @Thunk HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
Adam Cohended9f8d2010-11-03 13:25:16 -0700313 new HashMap<View, AppWidgetProviderInfo>();
314
Winson Chung400438b2011-01-16 17:53:48 -0800315 // Determines how long to wait after a rotation before restoring the screen orientation to
316 // match the sensor state.
317 private final int mRestoreScreenOrientationDelay = 500;
318
Adam Cohen091440a2015-03-18 14:16:05 -0700319 @Thunk Drawable mWorkspaceBackgroundDrawable;
Craig Mautner360310b2012-10-26 15:13:08 -0700320
Adam Cohen1462de32012-07-24 22:34:36 -0700321 private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700322 private static final boolean DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE = false;
Adam Cohen1462de32012-07-24 22:34:36 -0700323
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700324 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
Adam Cohen4caf2982013-08-20 18:54:31 -0700325 static Date sDateStamp = new Date();
326 static DateFormat sDateFormat =
327 DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
328 static long sRunStart = System.currentTimeMillis();
329 static final String CORRUPTION_EMAIL_SENT_KEY = "corruptionEmailSent";
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700330
Winson Chung46353de2012-02-16 14:05:10 -0800331 // We only want to get the SharedPreferences once since it does an FS stat each time we get
332 // it from the context.
333 private SharedPreferences mSharedPrefs;
334
Winson Chungf0c6ae02012-03-21 16:10:31 -0700335 // Holds the page that we need to animate to, and the icon views that we need to animate up
336 // when we scroll to that page on resume.
Adam Cohen091440a2015-03-18 14:16:05 -0700337 @Thunk ImageView mFolderIconImageView;
Adam Cohen268c4752012-06-06 17:47:33 -0700338 private Bitmap mFolderIconBitmap;
339 private Canvas mFolderIconCanvas;
340 private Rect mRectForFolderAnimation = new Rect();
Adam Cohen2801caf2011-05-13 20:57:39 -0700341
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700342 private DeviceProfile mDeviceProfile;
343
Winson Chung13eb5272015-05-11 16:30:13 -0700344 // This is set to the view that launched the activity that navigated the user away from
345 // launcher. Since there is no callback for when the activity has finished launching, enable
346 // the press state and keep this reference to reset the press state when we return to launcher.
Michael Jurkaddd62e92011-02-16 17:49:14 -0800347 private BubbleTextView mWaitingForResume;
348
Adam Cohen59400422014-03-05 18:07:04 -0800349 protected static HashMap<String, CustomAppWidget> sCustomAppWidgets =
350 new HashMap<String, CustomAppWidget>();
351
352 private static final boolean ENABLE_CUSTOM_WIDGET_TEST = false;
353 static {
354 if (ENABLE_CUSTOM_WIDGET_TEST) {
355 sCustomAppWidgets.put(DummyWidget.class.getName(), new DummyWidget());
356 }
357 }
358
Chet Haasea8f996d2015-02-17 12:56:04 -0800359 // TODO: remove this field and call method directly when Launcher3 can depend on M APIs
360 private static Method sClipRevealMethod = null;
361 static {
362 Class<?> activityOptionsClass = ActivityOptions.class;
363 try {
364 sClipRevealMethod = activityOptionsClass.getDeclaredMethod("makeClipRevealAnimation",
365 View.class, int.class, int.class, int.class, int.class);
366 } catch (Exception e) {
367 // Earlier version
368 }
369 }
370
Adam Cohen091440a2015-03-18 14:16:05 -0700371 @Thunk Runnable mBuildLayersRunnable = new Runnable() {
Michael Jurkac1f5d262011-09-30 19:32:27 -0700372 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700373 if (mWorkspace != null) {
374 mWorkspace.buildPageHardwareLayers();
375 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700376 }
377 };
378
Adam Cohendb364c32014-05-20 14:23:40 -0700379 private static PendingAddArguments sPendingAddItem;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800380
Adam Cohen091440a2015-03-18 14:16:05 -0700381 @Thunk static class PendingAddArguments {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800382 int requestCode;
383 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700384 long container;
Adam Cohendcd297f2013-06-18 13:13:40 -0700385 long screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800386 int cellX;
387 int cellY;
Adam Cohendb364c32014-05-20 14:23:40 -0700388 int appWidgetId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800389 }
390
Daniel Sandlerff02d492013-08-05 02:12:05 -0400391 private Stats mStats;
Sunny Goyaldcbcc862014-08-12 15:58:36 -0700392 FocusIndicatorView mFocusHandler;
Sunny Goyal7779d622015-06-11 16:18:39 -0700393 private boolean mRotationEnabled = false;
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400394
395 @Thunk void setOrientation() {
396 if (mRotationEnabled) {
397 unlockScreenOrientation(true);
398 } else {
399 setRequestedOrientation(
400 ActivityInfo.SCREEN_ORIENTATION_NOSENSOR);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700401 }
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400402 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700403
Sunny Goyal7779d622015-06-11 16:18:39 -0700404 private Runnable mUpdateOrientationRunnable = new Runnable() {
405 public void run() {
406 setOrientation();
407 }
408 };
409
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800410 @Override
411 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700412 if (DEBUG_STRICT_MODE) {
413 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
414 .detectDiskReads()
415 .detectDiskWrites()
416 .detectNetwork() // or .detectAll() for all detectable problems
417 .penaltyLog()
418 .build());
419 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
420 .detectLeakedSqlLiteObjects()
421 .detectLeakedClosableObjects()
422 .penaltyLog()
423 .penaltyDeath()
424 .build());
425 }
426
Adam Cohen9211d422014-10-07 18:14:53 -0700427 if (mLauncherCallbacks != null) {
428 mLauncherCallbacks.preOnCreate();
429 }
430
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800431 super.onCreate(savedInstanceState);
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400432
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400433 LauncherAppState.setApplicationContext(getApplicationContext());
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400434 LauncherAppState app = LauncherAppState.getInstance();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700435
Adam Cohen2e6da152015-05-06 11:42:25 -0700436 // Load configuration-specific DeviceProfile
Sunny Goyalc6205602015-05-21 20:46:33 -0700437 mDeviceProfile = getResources().getConfiguration().orientation
438 == Configuration.ORIENTATION_LANDSCAPE ?
439 app.getInvariantDeviceProfile().landscapeProfile
440 : app.getInvariantDeviceProfile().portraitProfile;
441
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400442 mSharedPrefs = getSharedPreferences(LauncherAppState.getSharedPreferencesKey(),
Winson Chungf0c6ae02012-03-21 16:10:31 -0700443 Context.MODE_PRIVATE);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700444 mIsSafeModeEnabled = getPackageManager().isSafeMode();
Joe Onorato0589f0f2010-02-08 13:44:00 -0800445 mModel = app.setLauncher(this);
446 mIconCache = app.getIconCache();
Adam Cohen2e6da152015-05-06 11:42:25 -0700447
Joe Onorato41a12d22009-10-31 18:30:00 -0400448 mDragController = new DragController(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800449 mInflater = getLayoutInflater();
Winson Chung006ee262015-08-03 14:40:11 -0700450 mStateTransitionAnimation = new LauncherStateTransitionAnimation(this);
Romain Guycbb89e42009-06-08 15:52:54 -0700451
Daniel Sandlerff02d492013-08-05 02:12:05 -0400452 mStats = new Stats(this);
453
Sunny Goyalffe83f12014-08-14 17:39:34 -0700454 mAppWidgetManager = AppWidgetManagerCompat.getInstance(this);
Adam Cohen53805212013-10-01 10:39:23 -0700455
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700456 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
457 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700458
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700459 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
460 // this also ensures that any synchronous binding below doesn't re-trigger another
461 // LauncherModel load.
462 mPaused = false;
463
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800464 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200465 android.os.Debug.startMethodTracing(
466 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800467 }
468
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800469 setContentView(R.layout.launcher);
Michael Jurka7267fa52013-09-26 15:29:57 -0700470
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800471 setupViews();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700472 mDeviceProfile.layout(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800473
Joe Onorato7c312c12009-08-13 21:36:53 -0700474 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700475
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800476 mSavedState = savedInstanceState;
477 restoreState(mSavedState);
478
479 if (PROFILE_STARTUP) {
480 android.os.Debug.stopMethodTracing();
481 }
482
483 if (!mRestoring) {
Adam Cohendb78dc82014-06-19 14:50:51 -0700484 if (DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700485 // If the user leaves launcher, then we should just load items asynchronously when
486 // they return.
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700487 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Winson Chung4a2afa32012-07-19 14:53:05 -0700488 } else {
489 // We only load the page synchronously if the user rotates (or triggers a
490 // configuration change) while launcher is in the foreground
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700491 mModel.startLoader(mWorkspace.getRestorePage());
Winson Chung4a2afa32012-07-19 14:53:05 -0700492 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800493 }
494
495 // For handling default keys
496 mDefaultKeySsb = new SpannableStringBuilder();
497 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800498
499 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
500 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800501
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700502 mRotationEnabled = Utilities.isRotationAllowedForDevice(getApplicationContext());
503 // In case we are on a device with locked rotation, we should look at preferences to check
504 // if the user has specifically allowed rotation.
505 if (!mRotationEnabled) {
Rahul Chaturvedie863fed2015-06-15 14:09:42 -0400506 mRotationEnabled = Utilities.isAllowRotationPrefEnabled(getApplicationContext(), false);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700507 }
508
509 // On large interfaces, or on devices that a user has specifically enabled screen rotation,
510 // we want the screen to auto-rotate based on the current orientation
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400511 setOrientation();
Winson Chungaf40f202013-09-18 18:26:31 -0700512
Adam Cohen9211d422014-10-07 18:14:53 -0700513 if (mLauncherCallbacks != null) {
514 mLauncherCallbacks.onCreate(savedInstanceState);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700515 if (mLauncherCallbacks.hasLauncherOverlay()) {
516 ViewStub stub = (ViewStub) findViewById(R.id.launcher_overlay_stub);
Adam Cohena6d04922014-10-23 17:28:30 -0700517 mLauncherOverlayContainer = (InsettableFrameLayout) stub.inflate();
518 mLauncherOverlay = mLauncherCallbacks.setLauncherOverlayView(
519 mLauncherOverlayContainer, mLauncherOverlayCallbacks);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700520 mWorkspace.setLauncherOverlay(mLauncherOverlay);
521 }
Adam Cohen9211d422014-10-07 18:14:53 -0700522 }
Adam Cohenc3e12c72014-10-31 16:15:36 -0700523
524 if (shouldShowIntroScreen()) {
525 showIntroScreen();
526 } else {
527 showFirstRunActivity();
528 showFirstRunClings();
529 }
Adam Cohen9211d422014-10-07 18:14:53 -0700530 }
531
Sunny Goyal7779d622015-06-11 16:18:39 -0700532 @Override
533 public void onSettingsChanged(String settings, boolean value) {
534 if (Utilities.ALLOW_ROTATION_PREFERENCE_KEY.equals(settings)) {
535 mRotationEnabled = value;
536 if (!waitUntilResume(mUpdateOrientationRunnable, true)) {
537 mUpdateOrientationRunnable.run();
538 }
539 }
540 }
541
Adam Cohen9211d422014-10-07 18:14:53 -0700542 private LauncherCallbacks mLauncherCallbacks;
543
544 public void onPostCreate(Bundle savedInstanceState) {
545 super.onPostCreate(savedInstanceState);
546 if (mLauncherCallbacks != null) {
547 mLauncherCallbacks.onPostCreate(savedInstanceState);
548 }
549 }
550
551 public boolean setLauncherCallbacks(LauncherCallbacks callbacks) {
552 mLauncherCallbacks = callbacks;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700553 mLauncherCallbacks.setLauncherSearchCallback(new Launcher.LauncherSearchCallbacks() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700554 private boolean mWorkspaceImportanceStored = false;
555 private boolean mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700556 private int mWorkspaceImportanceForAccessibility =
557 View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
558 private int mHotseatImportanceForAccessibility = View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
559
560 @Override
561 public void onSearchOverlayOpened() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700562 if (mWorkspaceImportanceStored || mHotseatImportanceStored) {
Jun Mukai8af0cd82015-05-12 12:32:12 -0700563 return;
564 }
565 // The underlying workspace and hotseat are temporarily suppressed by the search
566 // overlay. So they sholudn't be accessible.
Jun Mukaie9819e62015-06-17 10:58:59 -0700567 if (mWorkspace != null) {
568 mWorkspaceImportanceForAccessibility =
569 mWorkspace.getImportantForAccessibility();
570 mWorkspace.setImportantForAccessibility(
571 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
572 mWorkspaceImportanceStored = true;
573 }
574 if (mHotseat != null) {
575 mHotseatImportanceForAccessibility = mHotseat.getImportantForAccessibility();
576 mHotseat.setImportantForAccessibility(
577 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
578 mHotseatImportanceStored = true;
579 }
Jun Mukai8af0cd82015-05-12 12:32:12 -0700580 }
581
582 @Override
583 public void onSearchOverlayClosed() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700584 if (mWorkspaceImportanceStored && mWorkspace != null) {
585 mWorkspace.setImportantForAccessibility(mWorkspaceImportanceForAccessibility);
586 }
587 if (mHotseatImportanceStored && mHotseat != null) {
588 mHotseat.setImportantForAccessibility(mHotseatImportanceForAccessibility);
589 }
590 mWorkspaceImportanceStored = false;
591 mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700592 }
593 });
Adam Cohen9211d422014-10-07 18:14:53 -0700594 return true;
Adam Cohenf9426d52012-06-04 17:26:21 -0700595 }
596
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700597 @Override
Adam Cohen9211d422014-10-07 18:14:53 -0700598 public void onLauncherProviderChange() {
599 if (mLauncherCallbacks != null) {
600 mLauncherCallbacks.onLauncherProviderChange();
601 }
602 }
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700603
Winson Chungef7f8742015-06-04 17:18:17 -0700604 /**
605 * Updates the bounds of all the overlays to match the new fixed bounds.
606 */
607 public void updateOverlayBounds(Rect newBounds) {
608 mAppsView.setSearchBarBounds(newBounds);
609 mWidgetsView.setSearchBarBounds(newBounds);
610 }
611
Adam Cohen9211d422014-10-07 18:14:53 -0700612 /** To be overridden by subclasses to hint to Launcher that we have custom content */
Winson Chung98ca0f72013-07-29 12:58:51 -0700613 protected boolean hasCustomContentToLeft() {
Adam Cohen9211d422014-10-07 18:14:53 -0700614 if (mLauncherCallbacks != null) {
615 return mLauncherCallbacks.hasCustomContentToLeft();
616 }
Winson Chung98ca0f72013-07-29 12:58:51 -0700617 return false;
618 }
619
Dave Hawkeya8881582013-09-17 15:55:33 -0600620 /**
Derek Prothrodadd9842014-01-17 13:43:50 -0500621 * To be overridden by subclasses to populate the custom content container and call
Dave Hawkeya8881582013-09-17 15:55:33 -0600622 * {@link #addToCustomContentPage}. This will only be invoked if
623 * {@link #hasCustomContentToLeft()} is {@code true}.
624 */
Derek Prothrodadd9842014-01-17 13:43:50 -0500625 protected void populateCustomContentContainer() {
Adam Cohen9211d422014-10-07 18:14:53 -0700626 if (mLauncherCallbacks != null) {
627 mLauncherCallbacks.populateCustomContentContainer();
628 }
Dave Hawkeya8881582013-09-17 15:55:33 -0600629 }
630
631 /**
632 * Invoked by subclasses to signal a change to the {@link #addCustomContentToLeft} value to
633 * ensure the custom content page is added or removed if necessary.
634 */
635 protected void invalidateHasCustomContentToLeft() {
Dave Hawkey3a733a72013-09-30 11:52:21 -0600636 if (mWorkspace == null || mWorkspace.getScreenOrder().isEmpty()) {
Dave Hawkeya8881582013-09-17 15:55:33 -0600637 // Not bound yet, wait for bindScreens to be called.
638 return;
639 }
640
641 if (!mWorkspace.hasCustomContent() && hasCustomContentToLeft()) {
642 // Create the custom content page and call the subclass to populate it.
Derek Prothrodadd9842014-01-17 13:43:50 -0500643 mWorkspace.createCustomContentContainer();
644 populateCustomContentContainer();
Dave Hawkeya8881582013-09-17 15:55:33 -0600645 } else if (mWorkspace.hasCustomContent() && !hasCustomContentToLeft()) {
646 mWorkspace.removeCustomContentPage();
647 }
648 }
649
Anton Hanssona2f665f2013-09-26 12:18:32 +0100650 public Stats getStats() {
651 return mStats;
652 }
653
Bjorn Bringertc459e522013-06-07 19:36:01 +0100654 public LayoutInflater getInflater() {
655 return mInflater;
656 }
657
Hyunyoung Song3f471442015-04-08 19:01:34 -0700658 public boolean isDraggingEnabled() {
Winson Chung36a62fe2012-05-06 18:04:42 -0700659 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
660 // that is subsequently removed from the workspace in startBinding().
661 return !mModel.isLoadingWorkspace();
662 }
663
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800664 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000665 public static int generateViewId() {
Ian Parkinson0c2918f2014-10-06 14:24:31 +0100666 if (Build.VERSION.SDK_INT >= 17) {
667 return View.generateViewId();
668 } else {
669 // View.generateViewId() is not available. The following fallback logic is a copy
670 // of its implementation.
671 for (;;) {
672 final int result = sNextGeneratedId.get();
673 // aapt-generated IDs have the high byte nonzero; clamp to the range under that.
674 int newValue = result + 1;
675 if (newValue > 0x00FFFFFF) newValue = 1; // Roll over to 1, not 0.
676 if (sNextGeneratedId.compareAndSet(result, newValue)) {
677 return result;
678 }
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000679 }
680 }
681 }
682
683 public int getViewIdForItem(ItemInfo info) {
684 // This cast is safe given the > 2B range for int.
685 int itemId = (int) info.id;
686 if (mItemIdToViewId.containsKey(itemId)) {
687 return mItemIdToViewId.get(itemId);
688 }
689 int viewId = generateViewId();
690 mItemIdToViewId.put(itemId, viewId);
691 return viewId;
692 }
693
694 /**
Winson Chung557d6ed2011-07-08 15:34:52 -0700695 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
696 * a configuration step, this allows the proper animations to run after other transitions.
697 */
Adam Cohendb364c32014-05-20 14:23:40 -0700698 private long completeAdd(PendingAddArguments args) {
Adam Cohen83079e42014-09-19 17:43:08 -0700699 long screenId = args.screenId;
700 if (args.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
701 // When the screen id represents an actual screen (as opposed to a rank) we make sure
702 // that the drop page actually exists.
703 screenId = ensurePendingDropLayoutExists(args.screenId);
704 }
Adam Cohendb364c32014-05-20 14:23:40 -0700705
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800706 switch (args.requestCode) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800707 case REQUEST_CREATE_SHORTCUT:
Adam Cohendb364c32014-05-20 14:23:40 -0700708 completeAddShortcut(args.intent, args.container, screenId, args.cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -0700709 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700710 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800711 case REQUEST_CREATE_APPWIDGET:
Adam Cohendb364c32014-05-20 14:23:40 -0700712 completeAddAppWidget(args.appWidgetId, args.container, screenId, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700713 break;
Sunny Goyalff572272014-07-23 13:58:07 -0700714 case REQUEST_RECONFIGURE_APPWIDGET:
715 completeRestoreAppWidget(args.appWidgetId);
716 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800717 }
Michael Jurka27614d22012-04-02 06:40:22 -0700718 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
719 // if you turned the screen off and then back while in All Apps, Launcher would not
720 // return to the workspace. Clearing mAddInfo.container here fixes this issue
721 resetAddInfo();
Adam Cohendb364c32014-05-20 14:23:40 -0700722 return screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800723 }
724
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800725 private void handleActivityResult(
Michael Jurka8b805b12012-04-18 14:23:14 -0700726 final int requestCode, final int resultCode, final Intent data) {
Winson Chunge341d302013-08-16 14:31:00 -0700727 // Reset the startActivity waiting flag
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700728 setWaitingForResult(false);
Adam Cohendb364c32014-05-20 14:23:40 -0700729 final int pendingAddWidgetId = mPendingAddWidgetId;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800730 mPendingAddWidgetId = -1;
Winson Chunge341d302013-08-16 14:31:00 -0700731
Adam Cohenad4e15c2013-10-17 16:21:35 -0700732 Runnable exitSpringLoaded = new Runnable() {
733 @Override
734 public void run() {
735 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
736 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
737 }
738 };
739
Michael Jurka8b805b12012-04-18 14:23:14 -0700740 if (requestCode == REQUEST_BIND_APPWIDGET) {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700741 final int appWidgetId = data != null ?
Michael Jurka8b805b12012-04-18 14:23:14 -0700742 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
743 if (resultCode == RESULT_CANCELED) {
744 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
Adam Cohen689ff162014-05-08 17:27:56 -0700745 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700746 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
Michael Jurka8b805b12012-04-18 14:23:14 -0700747 } else if (resultCode == RESULT_OK) {
Sunny Goyale6b63a32015-01-16 16:14:29 -0800748 addAppWidgetImpl(appWidgetId, mPendingAddInfo, null,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700749 mPendingAddWidgetInfo, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
Michael Jurka8b805b12012-04-18 14:23:14 -0700750 }
751 return;
Michael Jurka336fd4f2013-09-12 00:05:02 +0200752 } else if (requestCode == REQUEST_PICK_WALLPAPER) {
753 if (resultCode == RESULT_OK && mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -0700754 showWorkspace(false);
Michael Jurka336fd4f2013-09-12 00:05:02 +0200755 }
756 return;
Michael Jurka8b805b12012-04-18 14:23:14 -0700757 }
Michael Jurka336fd4f2013-09-12 00:05:02 +0200758
Adam Cohened66b2b2012-01-23 17:28:51 -0800759 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
Sunny Goyal5c97f512015-05-19 16:03:28 -0700760 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700761
Adam Cohendb364c32014-05-20 14:23:40 -0700762 final boolean workspaceLocked = isWorkspaceLocked();
Adam Cohened66b2b2012-01-23 17:28:51 -0800763 // We have special handling for widgets
764 if (isWidgetDrop) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800765 final int appWidgetId;
766 int widgetId = data != null ? data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1)
767 : -1;
768 if (widgetId < 0) {
769 appWidgetId = pendingAddWidgetId;
770 } else {
771 appWidgetId = widgetId;
772 }
773
Adam Cohenad4e15c2013-10-17 16:21:35 -0700774 final int result;
Adam Cohenf0129b12013-11-04 17:57:36 -0800775 if (appWidgetId < 0 || resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700776 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not " +
777 "returned from the widget configuration activity.");
Adam Cohenad4e15c2013-10-17 16:21:35 -0700778 result = RESULT_CANCELED;
779 completeTwoStageWidgetDrop(result, appWidgetId);
Adam Cohendb364c32014-05-20 14:23:40 -0700780 final Runnable onComplete = new Runnable() {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700781 @Override
782 public void run() {
783 exitSpringLoadedDragModeDelayed(false, 0, null);
784 }
785 };
Adam Cohendb364c32014-05-20 14:23:40 -0700786 if (workspaceLocked) {
787 // No need to remove the empty screen if we're mid-binding, as the
788 // the bind will not add the empty screen.
789 mWorkspace.postDelayed(onComplete, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
790 } else {
791 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
792 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
793 }
Winson Chung5aaab772012-04-27 15:24:02 -0700794 } else {
Adam Cohendb364c32014-05-20 14:23:40 -0700795 if (!workspaceLocked) {
Adam Cohen83079e42014-09-19 17:43:08 -0700796 if (mPendingAddInfo.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
797 // When the screen id represents an actual screen (as opposed to a rank)
798 // we make sure that the drop page actually exists.
799 mPendingAddInfo.screenId =
800 ensurePendingDropLayoutExists(mPendingAddInfo.screenId);
801 }
Adam Cohendb364c32014-05-20 14:23:40 -0700802 final CellLayout dropLayout = mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
803
804 dropLayout.setDropPending(true);
805 final Runnable onComplete = new Runnable() {
806 @Override
807 public void run() {
808 completeTwoStageWidgetDrop(resultCode, appWidgetId);
809 dropLayout.setDropPending(false);
810 }
811 };
812 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
813 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
814 } else {
815 PendingAddArguments args = preparePendingAddArgs(requestCode, data, appWidgetId,
816 mPendingAddInfo);
817 sPendingAddItem = args;
818 }
Winson Chung5aaab772012-04-27 15:24:02 -0700819 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800820 return;
821 }
822
Sunny Goyalff572272014-07-23 13:58:07 -0700823 if (requestCode == REQUEST_RECONFIGURE_APPWIDGET) {
824 if (resultCode == RESULT_OK) {
825 // Update the widget view.
826 PendingAddArguments args = preparePendingAddArgs(requestCode, data,
827 pendingAddWidgetId, mPendingAddInfo);
828 if (workspaceLocked) {
829 sPendingAddItem = args;
830 } else {
831 completeAdd(args);
832 }
833 }
834 // Leave the widget in the pending state if the user canceled the configure.
835 return;
836 }
837
Sunny Goyalaad90582015-07-09 14:22:50 -0700838 if (requestCode == REQUEST_CREATE_SHORTCUT) {
839 // Handle custom shortcuts created using ACTION_CREATE_SHORTCUT.
840 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
841 final PendingAddArguments args = preparePendingAddArgs(requestCode, data, -1,
842 mPendingAddInfo);
843 if (isWorkspaceLocked()) {
844 sPendingAddItem = args;
845 } else {
846 completeAdd(args);
847 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
848 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
849 }
850 } else if (resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700851 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
852 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800853 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800854 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800855 mDragLayer.clearAnimatedView();
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800856
857 }
858
859 @Override
860 protected void onActivityResult(
861 final int requestCode, final int resultCode, final Intent data) {
862 handleActivityResult(requestCode, resultCode, data);
863 if (mLauncherCallbacks != null) {
864 mLauncherCallbacks.onActivityResult(requestCode, resultCode, data);
865 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800866 }
867
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600868 /** @Override for MNC */
Sunny Goyaldd2e6df2015-07-07 10:57:57 -0700869 public void onRequestPermissionsResult(int requestCode, String[] permissions,
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600870 int[] grantResults) {
871 if (mLauncherCallbacks != null) {
872 mLauncherCallbacks.onRequestPermissionsResult(requestCode, permissions,
873 grantResults);
874 }
875 }
876
Adam Cohendb364c32014-05-20 14:23:40 -0700877 private PendingAddArguments preparePendingAddArgs(int requestCode, Intent data, int
878 appWidgetId, ItemInfo info) {
879 PendingAddArguments args = new PendingAddArguments();
880 args.requestCode = requestCode;
881 args.intent = data;
882 args.container = info.container;
883 args.screenId = info.screenId;
884 args.cellX = info.cellX;
885 args.cellY = info.cellY;
886 args.appWidgetId = appWidgetId;
887 return args;
888 }
889
890 /**
891 * Check to see if a given screen id exists. If not, create it at the end, return the new id.
892 *
893 * @param screenId the screen id to check
894 * @return the new screen, or screenId if it exists
895 */
896 private long ensurePendingDropLayoutExists(long screenId) {
897 CellLayout dropLayout =
898 (CellLayout) mWorkspace.getScreenWithId(screenId);
899 if (dropLayout == null) {
900 // it's possible that the add screen was removed because it was
901 // empty and a re-bind occurred
902 mWorkspace.addExtraEmptyScreen();
903 return mWorkspace.commitExtraEmptyScreen();
904 } else {
905 return screenId;
906 }
907 }
908
Adam Cohen091440a2015-03-18 14:16:05 -0700909 @Thunk void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700910 CellLayout cellLayout =
Adam Cohendcd297f2013-06-18 13:13:40 -0700911 (CellLayout) mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800912 Runnable onCompleteRunnable = null;
913 int animationType = 0;
914
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700915 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800916 if (resultCode == RESULT_OK) {
917 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
918 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700919 mPendingAddWidgetInfo);
920 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800921 onCompleteRunnable = new Runnable() {
922 @Override
923 public void run() {
924 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700925 mPendingAddInfo.screenId, layout, null);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700926 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
927 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
Adam Cohened66b2b2012-01-23 17:28:51 -0800928 }
929 };
930 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800931 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800932 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
Adam Cohened66b2b2012-01-23 17:28:51 -0800933 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700934 if (mDragLayer.getAnimatedView() != null) {
935 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
936 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
937 animationType, boundWidget, true);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700938 } else if (onCompleteRunnable != null) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700939 // The animated view may be null in the case of a rotation during widget configuration
940 onCompleteRunnable.run();
941 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800942 }
943
944 @Override
Michael Jurkacd496d72013-04-11 11:32:45 -0700945 protected void onStop() {
946 super.onStop();
947 FirstFrameAnimatorHelper.setIsVisible(false);
Adam Cohen9211d422014-10-07 18:14:53 -0700948
949 if (mLauncherCallbacks != null) {
950 mLauncherCallbacks.onStop();
951 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700952 }
953
954 @Override
955 protected void onStart() {
956 super.onStart();
957 FirstFrameAnimatorHelper.setIsVisible(true);
Adam Cohen9211d422014-10-07 18:14:53 -0700958
959 if (mLauncherCallbacks != null) {
960 mLauncherCallbacks.onStart();
961 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700962 }
963
964 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800965 protected void onResume() {
Michael Jurka447bf842013-05-15 14:52:15 +0200966 long startTime = 0;
967 if (DEBUG_RESUME_TIME) {
968 startTime = System.currentTimeMillis();
Daniel Sandler924b9932013-06-12 00:38:25 -0400969 Log.v(TAG, "Launcher.onResume()");
Michael Jurka447bf842013-05-15 14:52:15 +0200970 }
Adam Cohen9211d422014-10-07 18:14:53 -0700971
972 if (mLauncherCallbacks != null) {
973 mLauncherCallbacks.preOnResume();
974 }
975
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800976 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700977
Winson Chung4a2afa32012-07-19 14:53:05 -0700978 // Restore the previous launcher state
Winson Chung75cc8252015-04-10 10:19:58 -0700979 if (mOnResumeState == State.WORKSPACE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700980 showWorkspace(false);
Winson Chungb745afb2015-03-02 11:51:23 -0800981 } else if (mOnResumeState == State.APPS) {
Winson Chung13eb5272015-05-11 16:30:13 -0700982 boolean launchedFromApp = (mWaitingForResume != null);
Winson Chung4ac30062015-05-08 17:34:17 -0700983 // Don't update the predicted apps if the user is returning to launcher in the apps
Winson Chung13eb5272015-05-11 16:30:13 -0700984 // view after launching an app, as they may be depending on the UI to be static to
985 // switch to another app, otherwise, if it was
Winson Chung4ac30062015-05-08 17:34:17 -0700986 showAppsView(false /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -0700987 !launchedFromApp /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -0800988 } else if (mOnResumeState == State.WIDGETS) {
989 showWidgetsView(false, false);
Winson Chung4a2afa32012-07-19 14:53:05 -0700990 }
991 mOnResumeState = State.NONE;
992
Sunny Goyal4a6c6f32015-05-19 12:36:46 -0700993 // Background was set to gradient in onPause(), restore to transparent if in all apps.
Sunny Goyald70ad0d2015-05-26 17:20:07 -0700994 setWorkspaceBackground(mState == State.WORKSPACE ? WORKSPACE_BACKGROUND_GRADIENT
995 : WORKSPACE_BACKGROUND_TRANSPARENT);
Craig Mautner360310b2012-10-26 15:13:08 -0700996
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800997 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700998 if (mRestoring || mOnResumeNeedsLoad) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700999 setWorkspaceLoading(true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001000 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001001 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001002 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001003 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001004 if (mBindOnResumeCallbacks.size() > 0) {
Michael Jurkac402cd92013-05-20 15:49:32 +02001005 // We might have postponed some bind calls until onResume (see waitUntilResume) --
1006 // execute them here
1007 long startTimeCallbacks = 0;
1008 if (DEBUG_RESUME_TIME) {
1009 startTimeCallbacks = System.currentTimeMillis();
1010 }
1011
Michael Jurka1e2f4652013-07-08 18:03:46 -07001012 for (int i = 0; i < mBindOnResumeCallbacks.size(); i++) {
1013 mBindOnResumeCallbacks.get(i).run();
Michael Jurkac402cd92013-05-20 15:49:32 +02001014 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001015 mBindOnResumeCallbacks.clear();
Michael Jurkac402cd92013-05-20 15:49:32 +02001016 if (DEBUG_RESUME_TIME) {
1017 Log.d(TAG, "Time spent processing callbacks in onResume: " +
1018 (System.currentTimeMillis() - startTimeCallbacks));
1019 }
Michael Jurka447bf842013-05-15 14:52:15 +02001020 }
Michael Jurka54554252013-08-01 12:52:23 +02001021 if (mOnResumeCallbacks.size() > 0) {
1022 for (int i = 0; i < mOnResumeCallbacks.size(); i++) {
1023 mOnResumeCallbacks.get(i).run();
1024 }
1025 mOnResumeCallbacks.clear();
1026 }
Winson Chunge4e50662012-01-23 14:45:13 -08001027
1028 // Reset the pressed state of icons that were locked in the press state while activities
1029 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -08001030 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -08001031 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -08001032 mWaitingForResume.setStayPressed(false);
1033 }
Winson Chung82963d52013-10-09 11:20:57 -07001034
Adam Cohen06dff352012-06-01 17:17:08 -07001035 // It is possible that widgets can receive updates while launcher is not in the foreground.
1036 // Consequently, the widgets will be inflated in the orientation of the foreground activity
1037 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
1038 // orientation.
Adam Cohen3d509322012-06-06 14:10:04 -07001039 getWorkspace().reinflateWidgetsIfNecessary();
Sunny Goyal22235bc2015-04-03 09:23:43 -07001040 reinflateQSBIfNecessary();
Adam Cohenf9426d52012-06-04 17:26:21 -07001041
Michael Jurka447bf842013-05-15 14:52:15 +02001042 if (DEBUG_RESUME_TIME) {
1043 Log.d(TAG, "Time spent in onResume: " + (System.currentTimeMillis() - startTime));
1044 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001045
1046 if (mWorkspace.getCustomContentCallbacks() != null) {
1047 // If we are resuming and the custom content is the current page, we call onShow().
1048 // It is also poassible that onShow will instead be called slightly after first layout
1049 // if PagedView#setRestorePage was set to the custom content page in onCreate().
1050 if (mWorkspace.isOnOrMovingToCustomContent()) {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001051 mWorkspace.getCustomContentCallbacks().onShow(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001052 }
1053 }
Winson Chungcd99cd32015-04-29 11:03:24 -07001054 updateInteraction(Workspace.State.NORMAL, mWorkspace.getState());
Adam Cohen53805212013-10-01 10:39:23 -07001055 mWorkspace.onResume();
Sunny Goyale755d462014-07-22 13:48:29 -07001056
Sunny Goyal756adbc2015-04-16 15:20:51 -07001057 if (!isWorkspaceLoading()) {
1058 // Process any items that were added while Launcher was away.
1059 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
1060 }
Adam Cohen9211d422014-10-07 18:14:53 -07001061
1062 if (mLauncherCallbacks != null) {
1063 mLauncherCallbacks.onResume();
1064 }
Adam Cohen06dff352012-06-01 17:17:08 -07001065 }
1066
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001067 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001068 protected void onPause() {
Winson Chung997a9232013-07-24 15:33:46 -07001069 // Ensure that items added to Launcher are queued until Launcher returns
1070 InstallShortcutReceiver.enableInstallQueue();
1071
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001072 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001073 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -08001074 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -07001075 mDragController.resetLastGestureUpTime();
Adam Cohen6fecd412013-10-02 17:41:50 -07001076
1077 // We call onHide() aggressively. The custom content callbacks should be able to
1078 // debounce excess onHide calls.
1079 if (mWorkspace.getCustomContentCallbacks() != null) {
1080 mWorkspace.getCustomContentCallbacks().onHide();
1081 }
Romain Guycbb89e42009-06-08 15:52:54 -07001082
Adam Cohen9211d422014-10-07 18:14:53 -07001083 if (mLauncherCallbacks != null) {
1084 mLauncherCallbacks.onPause();
Adam Cohenbffe7452013-07-22 18:21:45 -07001085 }
Adam Cohenbffe7452013-07-22 18:21:45 -07001086 }
1087
1088 public interface CustomContentCallbacks {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001089 // Custom content is completely shown. {@code fromResume} indicates whether this was caused
1090 // by a onResume or by scrolling otherwise.
1091 public void onShow(boolean fromResume);
Adam Cohenbffe7452013-07-22 18:21:45 -07001092
1093 // Custom content is completely hidden
1094 public void onHide();
Adam Cohenc36fa5c2013-08-29 11:54:42 -07001095
1096 // Custom content scroll progress changed. From 0 (not showing) to 1 (fully showing).
1097 public void onScrollProgressChanged(float progress);
Jan-Willem Maarse2ff91c42014-07-10 15:58:12 -07001098
1099 // Indicates whether the user is allowed to scroll away from the custom content.
1100 boolean isScrollingAllowed();
Adam Cohenbffe7452013-07-22 18:21:45 -07001101 }
1102
Adam Cohenc2d6e892014-10-16 09:49:24 -07001103 public interface LauncherOverlay {
1104
1105 /**
1106 * Touch interaction leading to overscroll has begun
1107 */
1108 public void onScrollInteractionBegin();
1109
1110 /**
1111 * Touch interaction related to overscroll has ended
1112 */
1113 public void onScrollInteractionEnd();
1114
1115 /**
1116 * Scroll progress, between 0 and 100, when the user scrolls beyond the leftmost
1117 * screen (or in the case of RTL, the rightmost screen).
1118 */
1119 public void onScrollChange(int progress, boolean rtl);
1120
1121 /**
1122 * Screen has stopped scrolling
1123 */
1124 public void onScrollSettled();
1125
1126 /**
1127 * This method can be called by the Launcher in order to force the LauncherOverlay
1128 * to exit fully immersive mode.
1129 */
1130 public void forceExitFullImmersion();
1131 }
1132
Jun Mukai8af0cd82015-05-12 12:32:12 -07001133 public interface LauncherSearchCallbacks {
1134 /**
1135 * Called when the search overlay is shown.
1136 */
1137 public void onSearchOverlayOpened();
1138
1139 /**
1140 * Called when the search overlay is dismissed.
1141 */
1142 public void onSearchOverlayClosed();
1143 }
1144
Adam Cohenc2d6e892014-10-16 09:49:24 -07001145 public interface LauncherOverlayCallbacks {
1146 /**
1147 * This method indicates whether a call to {@link #enterFullImmersion()} will succeed,
1148 * however it doesn't modify any state within the launcher.
1149 */
1150 public boolean canEnterFullImmersion();
1151
1152 /**
1153 * Should be called to tell Launcher that the LauncherOverlay will take over interaction,
1154 * eg. by occupying the full screen and handling all touch events.
1155 *
1156 * @return true if Launcher allows the LauncherOverlay to become fully immersive. In this
1157 * case, Launcher will modify any necessary state and assumes the overlay is
1158 * handling all interaction. If false, the LauncherOverlay should cancel any
1159 *
1160 */
1161 public boolean enterFullImmersion();
1162
1163 /**
1164 * Must be called when exiting fully immersive mode. Indicates to Launcher that it has
1165 * full control over UI and state.
1166 */
1167 public void exitFullImmersion();
1168 }
1169
1170 class LauncherOverlayCallbacksImpl implements LauncherOverlayCallbacks {
1171
1172 @Override
1173 public boolean canEnterFullImmersion() {
1174 return mState == State.WORKSPACE;
1175 }
1176
1177 @Override
1178 public boolean enterFullImmersion() {
1179 if (mState == State.WORKSPACE) {
1180 // When fully immersed, disregard any touches which fall through.
1181 mDragLayer.setBlockTouch(true);
1182 return true;
1183 }
1184 return false;
1185 }
1186
1187 @Override
1188 public void exitFullImmersion() {
1189 mDragLayer.setBlockTouch(false);
1190 }
1191 }
1192
Jorim Jaggid017f882014-01-14 17:08:48 -08001193 protected boolean hasSettings() {
Adam Cohen9211d422014-10-07 18:14:53 -07001194 if (mLauncherCallbacks != null) {
1195 return mLauncherCallbacks.hasSettings();
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07001196 } else {
1197 // On devices with a locked orientation, we will at least have the allow rotation
1198 // setting.
1199 return !Utilities.isRotationAllowedForDevice(this);
Adam Cohen9211d422014-10-07 18:14:53 -07001200 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001201 }
1202
Adam Cohen9211d422014-10-07 18:14:53 -07001203 public void addToCustomContentPage(View customContent,
Adam Cohen53805212013-10-01 10:39:23 -07001204 CustomContentCallbacks callbacks, String description) {
1205 mWorkspace.addToCustomContentPage(customContent, callbacks, description);
Adam Cohen66a01fd2013-06-11 12:48:00 -07001206 }
1207
Adam Cohenedb40762013-07-18 16:45:45 -07001208 // The custom content needs to offset its content to account for the QSB
1209 public int getTopOffsetForCustomContent() {
1210 return mWorkspace.getPaddingTop();
1211 }
1212
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001213 @Override
1214 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001215 // Flag the loader to stop early before switching
Adam Cohen1a85c582014-09-30 09:48:49 -07001216 if (mModel.isCurrentCallbacks(this)) {
1217 mModel.stopLoader();
1218 }
Hyunyoung Song3f471442015-04-08 19:01:34 -07001219 //TODO(hyunyoungs): stop the widgets loader when there is a rotation.
1220
Romain Guy13c2e7b2010-03-10 19:45:00 -08001221 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001222 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001223
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001224 // We can't hide the IME if it was forced open. So don't bother
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001225 @Override
1226 public void onWindowFocusChanged(boolean hasFocus) {
1227 super.onWindowFocusChanged(hasFocus);
Adam Cohened307df2013-10-02 09:37:31 -07001228 mHasFocus = hasFocus;
Adam Cohen9211d422014-10-07 18:14:53 -07001229
1230 if (mLauncherCallbacks != null) {
1231 mLauncherCallbacks.onWindowFocusChanged(hasFocus);
1232 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001233 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001234
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001235 private boolean acceptFilter() {
1236 final InputMethodManager inputManager = (InputMethodManager)
1237 getSystemService(Context.INPUT_METHOD_SERVICE);
1238 return !inputManager.isFullscreenMode();
1239 }
1240
1241 @Override
1242 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -07001243 final int uniChar = event.getUnicodeChar();
1244 final boolean handled = super.onKeyDown(keyCode, event);
1245 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
1246 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001247 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
1248 keyCode, event);
1249 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001250 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -07001251 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -07001252 // showSearchDialog()
1253 // If there are multiple keystrokes before the search dialog takes focus,
1254 // onSearchRequested() will be called for every keystroke,
1255 // but it is idempotent, so it's fine.
1256 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001257 }
1258 }
1259
Joe Onorato8a9625e2010-01-28 15:55:35 -08001260 // Eat the long press event so the keyboard doesn't come up.
1261 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
1262 return true;
1263 }
1264
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001265 return handled;
1266 }
1267
Karl Rosaen138a0412009-04-23 19:00:21 -07001268 private String getTypedText() {
1269 return mDefaultKeySsb.toString();
1270 }
1271
1272 private void clearTypedText() {
1273 mDefaultKeySsb.clear();
1274 mDefaultKeySsb.clearSpans();
1275 Selection.setSelection(mDefaultKeySsb, 0);
1276 }
1277
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001278 /**
Michael Jurka883f55b2010-10-21 15:47:14 -07001279 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
1280 * State
1281 */
1282 private static State intToState(int stateOrdinal) {
1283 State state = State.WORKSPACE;
1284 final State[] stateValues = State.values();
1285 for (int i = 0; i < stateValues.length; i++) {
1286 if (stateValues[i].ordinal() == stateOrdinal) {
1287 state = stateValues[i];
1288 break;
1289 }
1290 }
1291 return state;
1292 }
1293
1294 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001295 * Restores the previous state, if it exists.
1296 *
1297 * @param savedState The previous state.
1298 */
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001299 @SuppressWarnings("unchecked")
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001300 private void restoreState(Bundle savedState) {
1301 if (savedState == null) {
1302 return;
1303 }
1304
Michael Jurka883f55b2010-10-21 15:47:14 -07001305 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungb745afb2015-03-02 11:51:23 -08001306 if (state == State.APPS || state == State.WIDGETS) {
1307 mOnResumeState = state;
Joe Onorato3a8820b2009-11-10 15:06:42 -08001308 }
1309
Adam Cohen21cd0022013-10-09 18:57:02 -07001310 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN,
1311 PagedView.INVALID_RESTORE_PAGE);
1312 if (currentScreen != PagedView.INVALID_RESTORE_PAGE) {
Winson Chung8c87cd82013-07-23 16:20:10 -07001313 mWorkspace.setRestorePage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001314 }
1315
Winson Chung3d503fb2011-07-13 17:25:49 -07001316 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
Adam Cohendcd297f2013-06-18 13:13:40 -07001317 final long pendingAddScreen = savedState.getLong(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001318
Winson Chung3d503fb2011-07-13 17:25:49 -07001319 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
1320 mPendingAddInfo.container = pendingAddContainer;
Adam Cohendcd297f2013-06-18 13:13:40 -07001321 mPendingAddInfo.screenId = pendingAddScreen;
Winson Chung3d503fb2011-07-13 17:25:49 -07001322 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
1323 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001324 mPendingAddInfo.spanX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_X);
1325 mPendingAddInfo.spanY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y);
Adam Cohenb823ae42015-03-27 18:07:52 -07001326 AppWidgetProviderInfo info = savedState.getParcelable(
1327 RUNTIME_STATE_PENDING_ADD_WIDGET_INFO);
Sunny Goyalf044bb12015-05-12 13:30:07 -07001328 mPendingAddWidgetInfo = info == null ?
1329 null : LauncherAppWidgetProviderInfo.fromProviderInfo(this, info);
1330
Adam Cohen4637b5a2013-11-04 18:21:24 -08001331 mPendingAddWidgetId = savedState.getInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID);
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001332 setWaitingForResult(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001333 mRestoring = true;
1334 }
1335
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001336 mItemIdToViewId = (HashMap<Integer, Integer>)
1337 savedState.getSerializable(RUNTIME_STATE_VIEW_IDS);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001338 }
1339
1340 /**
1341 * Finds all the views we need and configure them properly.
1342 */
1343 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -07001344 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -04001345
Craig Mautner360310b2012-10-26 15:13:08 -07001346 mLauncherView = findViewById(R.id.launcher);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001347 mFocusHandler = (FocusIndicatorView) findViewById(R.id.focus_indicator);
Winson Chung4c98d922011-05-31 16:50:48 -07001348 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
1349 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Anjali Koppalf5d29132014-02-28 13:33:27 -08001350 mWorkspace.setPageSwitchListener(this);
Winson Chunga6945242014-01-08 14:04:34 -08001351 mPageIndicators = mDragLayer.findViewById(R.id.page_indicator);
Craig Mautner360310b2012-10-26 15:13:08 -07001352
John Spurlock77e1f472013-09-11 10:09:51 -04001353 mLauncherView.setSystemUiVisibility(
1354 View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
Craig Mautner360310b2012-10-26 15:13:08 -07001355 mWorkspaceBackgroundDrawable = getResources().getDrawable(R.drawable.workspace_bg);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001356
Winson Chung4c98d922011-05-31 16:50:48 -07001357 // Setup the drag layer
1358 mDragLayer.setup(this, dragController);
1359
Winson Chung3d503fb2011-07-13 17:25:49 -07001360 // Setup the hotseat
1361 mHotseat = (Hotseat) findViewById(R.id.hotseat);
1362 if (mHotseat != null) {
Winson Chung11a1a532013-09-13 11:14:45 -07001363 mHotseat.setOnLongClickListener(this);
Winson Chung3d503fb2011-07-13 17:25:49 -07001364 }
1365
Jorim Jaggid017f882014-01-14 17:08:48 -08001366 mOverviewPanel = (ViewGroup) findViewById(R.id.overview_panel);
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001367 mWidgetsButton = findViewById(R.id.widget_button);
1368 mWidgetsButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001369 @Override
1370 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001371 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001372 onClickAddWidgetButton(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001373 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001374 }
1375 });
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001376 mWidgetsButton.setOnTouchListener(getHapticFeedbackTouchListener());
Adam Cohen61f560d2013-09-30 15:58:20 -07001377
1378 View wallpaperButton = findViewById(R.id.wallpaper_button);
1379 wallpaperButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001380 @Override
1381 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001382 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001383 onClickWallpaperPicker(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001384 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001385 }
1386 });
Adam Cohen61f560d2013-09-30 15:58:20 -07001387 wallpaperButton.setOnTouchListener(getHapticFeedbackTouchListener());
1388
1389 View settingsButton = findViewById(R.id.settings_button);
Jorim Jaggid017f882014-01-14 17:08:48 -08001390 if (hasSettings()) {
1391 settingsButton.setOnClickListener(new OnClickListener() {
1392 @Override
1393 public void onClick(View arg0) {
1394 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001395 onClickSettingsButton(arg0);
Jorim Jaggid017f882014-01-14 17:08:48 -08001396 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08001397 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001398 });
1399 settingsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1400 } else {
1401 settingsButton.setVisibility(View.GONE);
Jorim Jaggid017f882014-01-14 17:08:48 -08001402 }
1403
Adam Cohendbdff6b2013-09-18 19:09:15 -07001404 mOverviewPanel.setAlpha(0f);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001405
Winson Chung4c98d922011-05-31 16:50:48 -07001406 // Setup the workspace
1407 mWorkspace.setHapticFeedbackEnabled(false);
1408 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -07001409 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -07001410 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001411
Winson Chungf0ea4d32011-06-06 14:27:16 -07001412 // Get the search/delete bar
Adam Cohen24ce0b32014-01-14 16:18:14 -08001413 mSearchDropTargetBar = (SearchDropTargetBar)
1414 mDragLayer.findViewById(R.id.search_drop_target_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001415
Winson Chungef7f8742015-06-04 17:18:17 -07001416 // Setup Apps and Widgets
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001417 mAppsView = (AllAppsContainerView) findViewById(R.id.apps_view);
Hyunyoung Song3f471442015-04-08 19:01:34 -07001418 mWidgetsView = (WidgetsContainerView) findViewById(R.id.widgets_view);
Winson Chungef7f8742015-06-04 17:18:17 -07001419 if (mLauncherCallbacks != null && mLauncherCallbacks.getAllAppsSearchBarController() != null) {
1420 mAppsView.setSearchBarController(mLauncherCallbacks.getAllAppsSearchBarController());
1421 } else {
1422 mAppsView.setSearchBarController(mAppsView.newDefaultAppSearchController());
1423 }
Craig Mautner360310b2012-10-26 15:13:08 -07001424
Winson Chung3d503fb2011-07-13 17:25:49 -07001425 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -07001426 dragController.setDragScoller(mWorkspace);
1427 dragController.setScrollView(mDragLayer);
1428 dragController.setMoveTarget(mWorkspace);
1429 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -07001430 if (mSearchDropTargetBar != null) {
1431 mSearchDropTargetBar.setup(this, dragController);
Adam Cohenb0df1b02015-03-18 22:21:40 -07001432 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Michael Jurkae0f5a612011-02-07 16:45:41 -08001433 }
Daniel Sandler924b9932013-06-12 00:38:25 -04001434
Daniel Sandlera127b7a2013-06-17 14:25:46 -04001435 if (getResources().getBoolean(R.bool.debug_memory_enabled)) {
Daniel Sandler924b9932013-06-12 00:38:25 -04001436 Log.v(TAG, "adding WeightWatcher");
Adam Cohen39a06042013-07-19 14:30:12 -07001437 mWeightWatcher = new WeightWatcher(this);
1438 mWeightWatcher.setAlpha(0.5f);
1439 ((FrameLayout) mLauncherView).addView(mWeightWatcher,
Daniel Sandler924b9932013-06-12 00:38:25 -04001440 new FrameLayout.LayoutParams(
1441 FrameLayout.LayoutParams.MATCH_PARENT,
Daniel Sandlerb9eb2862013-06-14 20:17:30 -04001442 FrameLayout.LayoutParams.WRAP_CONTENT,
Daniel Sandler924b9932013-06-12 00:38:25 -04001443 Gravity.BOTTOM)
1444 );
Adam Cohen39a06042013-07-19 14:30:12 -07001445
1446 boolean show = shouldShowWeightWatcher();
1447 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
Daniel Sandler924b9932013-06-12 00:38:25 -04001448 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001449 }
1450
1451 /**
Anjali Koppal5ad44842014-03-10 20:34:39 -07001452 * Sets the all apps button. This method is called from {@link Hotseat}.
1453 */
1454 public void setAllAppsButton(View allAppsButton) {
1455 mAllAppsButton = allAppsButton;
1456 }
1457
1458 public View getAllAppsButton() {
1459 return mAllAppsButton;
1460 }
1461
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001462 public View getWidgetsButton() {
1463 return mWidgetsButton;
1464 }
1465
Anjali Koppal5ad44842014-03-10 20:34:39 -07001466 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001467 * Creates a view representing a shortcut.
1468 *
1469 * @param info The data structure describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001470 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001471 View createShortcut(ShortcutInfo info) {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001472 return createShortcut((ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001473 }
1474
1475 /**
1476 * Creates a view representing a shortcut inflated from the specified resource.
1477 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001478 * @param parent The group the shortcut belongs to.
1479 * @param info The data structure describing the shortcut.
1480 *
1481 * @return A View inflated from layoutResId.
1482 */
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001483 public View createShortcut(ViewGroup parent, ShortcutInfo info) {
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001484 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(R.layout.app_icon,
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001485 parent, false);
1486 favorite.applyFromShortcutInfo(info, mIconCache);
1487 favorite.setCompoundDrawablePadding(mDeviceProfile.iconDrawablePaddingPx);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001488 favorite.setOnClickListener(this);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001489 favorite.setOnFocusChangeListener(mFocusHandler);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001490 return favorite;
1491 }
1492
1493 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001494 * Add a shortcut to the workspace.
1495 *
1496 * @param data The intent describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001497 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001498 private void completeAddShortcut(Intent data, long container, long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07001499 int cellY) {
1500 int[] cellXY = mTmpAddItemCellCoordinates;
Adam Cohendcd297f2013-06-18 13:13:40 -07001501 CellLayout layout = getCellLayout(container, screenId);
Romain Guycbb89e42009-06-08 15:52:54 -07001502
Sunny Goyal5c97f512015-05-19 16:03:28 -07001503 ShortcutInfo info = InstallShortcutReceiver.fromShortcutIntent(this, data);
Adam Cohend9198822011-11-22 16:42:47 -08001504 if (info == null) {
1505 return;
1506 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001507 final View view = createShortcut(info);
1508
Sunny Goyal5c97f512015-05-19 16:03:28 -07001509 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001510 // First we check if we already know the exact location where we want to add this item.
1511 if (cellX >= 0 && cellY >= 0) {
1512 cellXY[0] = cellX;
1513 cellXY[1] = cellY;
1514 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001515
1516 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001517 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001518 true, null,null)) {
1519 return;
1520 }
1521 DragObject dragObject = new DragObject();
1522 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001523 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1524 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001525 return;
1526 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08001527 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001528 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001529 }
1530
1531 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001532 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001533 return;
1534 }
1535
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001536 LauncherModel.addItemToDatabase(this, info, container, screenId, cellXY[0], cellXY[1]);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001537
1538 if (!mRestoring) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001539 mWorkspace.addInScreen(view, container, screenId, cellXY[0], cellXY[1], 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07001540 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001541 }
1542 }
1543
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001544 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001545 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001546 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001547 * @param appWidgetId The app widget id
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001548 */
Adam Cohen091440a2015-03-18 14:16:05 -07001549 @Thunk void completeAddAppWidget(int appWidgetId, long container, long screenId,
Adam Cohen59400422014-03-05 18:07:04 -08001550 AppWidgetHostView hostView, LauncherAppWidgetProviderInfo appWidgetInfo) {
1551
1552 ItemInfo info = mPendingAddInfo;
Adam Cohened66b2b2012-01-23 17:28:51 -08001553 if (appWidgetInfo == null) {
Adam Cohen59400422014-03-05 18:07:04 -08001554 appWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(this,
1555 mAppWidgetManager.getAppWidgetInfo(appWidgetId));
Adam Cohened66b2b2012-01-23 17:28:51 -08001556 }
Romain Guycbb89e42009-06-08 15:52:54 -07001557
Adam Cohen59400422014-03-05 18:07:04 -08001558 if (appWidgetInfo.isCustomWidget) {
1559 appWidgetId = LauncherAppWidgetInfo.CUSTOM_WIDGET_ID;
Michael Jurkaa63c4522010-08-19 13:52:27 -07001560 }
1561
Adam Cohen59400422014-03-05 18:07:04 -08001562 LauncherAppWidgetInfo launcherInfo;
1563 launcherInfo = new LauncherAppWidgetInfo(appWidgetId, appWidgetInfo.provider);
1564 launcherInfo.spanX = info.spanX;
1565 launcherInfo.spanY = info.spanY;
1566 launcherInfo.minSpanX = info.minSpanX;
1567 launcherInfo.minSpanY = info.minSpanY;
Sunny Goyalffe83f12014-08-14 17:39:34 -07001568 launcherInfo.user = mAppWidgetManager.getUser(appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001569
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001570 LauncherModel.addItemToDatabase(this, launcherInfo,
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001571 container, screenId, info.cellX, info.cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001572
1573 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001574 if (hostView == null) {
1575 // Perform actual inflation because we're live
Adam Cohen59400422014-03-05 18:07:04 -08001576 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId,
1577 appWidgetInfo);
Adam Cohened66b2b2012-01-23 17:28:51 -08001578 } else {
1579 // The AppWidgetHostView has already been inflated and instantiated
1580 launcherInfo.hostView = hostView;
1581 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001582 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001583 launcherInfo.hostView.setVisibility(View.VISIBLE);
Adam Cohenaaa5c212012-10-05 18:14:31 -07001584 launcherInfo.notifyWidgetSizeChanged(this);
1585
Adam Cohen59400422014-03-05 18:07:04 -08001586 mWorkspace.addInScreen(launcherInfo.hostView, container, screenId, info.cellX,
1587 info.cellY, launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001588
1589 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001590 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001591 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001592 }
Romain Guycbb89e42009-06-08 15:52:54 -07001593
Adam Cohended9f8d2010-11-03 13:25:16 -07001594 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1595 @Override
1596 public void onReceive(Context context, Intent intent) {
1597 final String action = intent.getAction();
1598 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1599 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001600 mDragLayer.clearAllResizeFrames();
Winson Chungb745afb2015-03-02 11:51:23 -08001601 updateAutoAdvanceState();
Winson Chung337cd9d2011-03-30 10:39:30 -07001602
Winson Chungc100e8e2011-08-09 16:02:43 -07001603 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001604 // processing a multi-step drop
Hyunyoung Song3f471442015-04-08 19:01:34 -07001605 if (mAppsView != null && mWidgetsView != null &&
Winson Chungb745afb2015-03-02 11:51:23 -08001606 mPendingAddInfo.container == ItemInfo.NO_ID) {
Adam Cohened307df2013-10-02 09:37:31 -07001607 showWorkspace(false);
Winson Chung785d2eb2011-04-14 16:08:02 -07001608 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001609 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1610 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08001611 updateAutoAdvanceState();
Dan Sandlerd5024042014-01-09 15:01:33 -05001612 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.DELETE_DATABASE.equals(action)) {
1613 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001614 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001615 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE);
1616 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.MIGRATE_DATABASE.equals(action)) {
1617 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001618 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001619 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE
1620 | LauncherModel.LOADER_FLAG_MIGRATE_SHORTCUTS);
Adam Cohended9f8d2010-11-03 13:25:16 -07001621 }
1622 }
1623 };
1624
1625 @Override
1626 public void onAttachedToWindow() {
1627 super.onAttachedToWindow();
1628
1629 // Listen for broadcasts related to user-presence
1630 final IntentFilter filter = new IntentFilter();
1631 filter.addAction(Intent.ACTION_SCREEN_OFF);
1632 filter.addAction(Intent.ACTION_USER_PRESENT);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001633 // For handling managed profiles
Dan Sandlerd5024042014-01-09 15:01:33 -05001634 if (ENABLE_DEBUG_INTENTS) {
1635 filter.addAction(DebugIntents.DELETE_DATABASE);
1636 filter.addAction(DebugIntents.MIGRATE_DATABASE);
1637 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001638 registerReceiver(mReceiver, filter);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001639 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Adam Cohen0b395352014-06-09 22:54:36 +00001640 setupTransparentSystemBarsForLmp();
Adam Cohend113e0c2010-11-11 10:48:05 -08001641 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001642 mVisible = true;
1643 }
1644
Adam Cohen0b395352014-06-09 22:54:36 +00001645 /**
1646 * Sets up transparent navigation and status bars in LMP.
1647 * This method is a no-op for other platform versions.
1648 */
Sunny Goyald0091012015-01-20 15:55:34 -08001649 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Adam Cohen0b395352014-06-09 22:54:36 +00001650 private void setupTransparentSystemBarsForLmp() {
Kenny Guyd794a3f2014-09-16 15:17:58 +01001651 if (Utilities.isLmpOrAbove()) {
Sunny Goyald0091012015-01-20 15:55:34 -08001652 Window window = getWindow();
1653 window.getAttributes().systemUiVisibility |=
1654 (View.SYSTEM_UI_FLAG_LAYOUT_STABLE
1655 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
1656 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
1657 window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS
1658 | WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
1659 window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
1660 window.setStatusBarColor(Color.TRANSPARENT);
1661 window.setNavigationBarColor(Color.TRANSPARENT);
Adam Cohen0b395352014-06-09 22:54:36 +00001662 }
1663 }
1664
Adam Cohended9f8d2010-11-03 13:25:16 -07001665 @Override
1666 public void onDetachedFromWindow() {
1667 super.onDetachedFromWindow();
1668 mVisible = false;
1669
Adam Cohend113e0c2010-11-11 10:48:05 -08001670 if (mAttached) {
1671 unregisterReceiver(mReceiver);
1672 mAttached = false;
1673 }
Winson Chungb745afb2015-03-02 11:51:23 -08001674 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001675 }
1676
1677 public void onWindowVisibilityChanged(int visibility) {
1678 mVisible = visibility == View.VISIBLE;
Winson Chungb745afb2015-03-02 11:51:23 -08001679 updateAutoAdvanceState();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001680 // The following code used to be in onResume, but it turns out onResume is called when
1681 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1682 // is a more appropriate event to handle
1683 if (mVisible) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001684 if (!mWorkspaceLoading) {
1685 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001686 // We want to let Launcher draw itself at least once before we force it to build
1687 // layers on all the workspace pages, so that transitioning to Launcher from other
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001688 // apps is nice and speedy.
1689 observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001690 private boolean mStarted = false;
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001691 public void onDraw() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001692 if (mStarted) return;
1693 mStarted = true;
Michael Jurka6ee21d22012-02-21 18:20:27 -08001694 // We delay the layer building a bit in order to give
1695 // other message processing a time to run. In particular
1696 // this avoids a delay in hiding the IME if it was
1697 // currently shown, because doing that may involve
1698 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001699 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurkadf96add2013-04-03 16:25:02 -07001700 final ViewTreeObserver.OnDrawListener listener = this;
1701 mWorkspace.post(new Runnable() {
1702 public void run() {
Michael Jurkab68e03a2013-04-11 11:36:41 -07001703 if (mWorkspace != null &&
1704 mWorkspace.getViewTreeObserver() != null) {
1705 mWorkspace.getViewTreeObserver().
1706 removeOnDrawListener(listener);
1707 }
Michael Jurkadf96add2013-04-03 16:25:02 -07001708 }
1709 });
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001710 return;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001711 }
1712 });
1713 }
1714 clearTypedText();
1715 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001716 }
1717
Adam Cohen091440a2015-03-18 14:16:05 -07001718 @Thunk void sendAdvanceMessage(long delay) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001719 mHandler.removeMessages(ADVANCE_MSG);
1720 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1721 mHandler.sendMessageDelayed(msg, delay);
1722 mAutoAdvanceSentTime = System.currentTimeMillis();
1723 }
1724
Adam Cohen091440a2015-03-18 14:16:05 -07001725 @Thunk void updateAutoAdvanceState() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001726 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1727 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1728 mAutoAdvanceRunning = autoAdvanceRunning;
1729 if (autoAdvanceRunning) {
1730 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1731 sendAdvanceMessage(delay);
1732 } else {
1733 if (!mWidgetsToAdvance.isEmpty()) {
1734 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1735 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1736 }
1737 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001738 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001739 }
1740 }
1741 }
1742
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001743 @Thunk final Handler mHandler = new Handler(new Handler.Callback() {
1744
Adam Cohended9f8d2010-11-03 13:25:16 -07001745 @Override
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001746 public boolean handleMessage(Message msg) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001747 if (msg.what == ADVANCE_MSG) {
1748 int i = 0;
1749 for (View key: mWidgetsToAdvance.keySet()) {
1750 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1751 final int delay = mAdvanceStagger * i;
1752 if (v instanceof Advanceable) {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001753 mHandler.postDelayed(new Runnable() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001754 public void run() {
1755 ((Advanceable) v).advance();
1756 }
1757 }, delay);
1758 }
1759 i++;
1760 }
1761 sendAdvanceMessage(mAdvanceInterval);
1762 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001763 return true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001764 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001765 });
Adam Cohended9f8d2010-11-03 13:25:16 -07001766
1767 void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001768 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001769 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1770 if (v instanceof Advanceable) {
1771 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001772 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Winson Chungb745afb2015-03-02 11:51:23 -08001773 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001774 }
1775 }
1776
1777 void removeWidgetToAutoAdvance(View hostView) {
1778 if (mWidgetsToAdvance.containsKey(hostView)) {
1779 mWidgetsToAdvance.remove(hostView);
Winson Chungb745afb2015-03-02 11:51:23 -08001780 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001781 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001782 }
1783
Joe Onorato9c1289c2009-08-17 11:03:03 -04001784 public void removeAppWidget(LauncherAppWidgetInfo launcherInfo) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001785 removeWidgetToAutoAdvance(launcherInfo.hostView);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001786 launcherInfo.hostView = null;
1787 }
1788
Hyunyoung Song3f471442015-04-08 19:01:34 -07001789 public void showOutOfSpaceMessage(boolean isHotseatLayout) {
Winson Chung93eef082012-03-23 15:59:27 -07001790 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1791 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001792 }
1793
Winson Chunga6945242014-01-08 14:04:34 -08001794 public DragLayer getDragLayer() {
1795 return mDragLayer;
1796 }
1797
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001798 public AllAppsContainerView getAppsView() {
Winson Chungb745afb2015-03-02 11:51:23 -08001799 return mAppsView;
1800 }
1801
Hyunyoung Song3f471442015-04-08 19:01:34 -07001802 public WidgetsContainerView getWidgetsView() {
1803 return mWidgetsView;
Winson Chungb745afb2015-03-02 11:51:23 -08001804 }
1805
Winson Chunga6945242014-01-08 14:04:34 -08001806 public Workspace getWorkspace() {
1807 return mWorkspace;
1808 }
1809
1810 public Hotseat getHotseat() {
1811 return mHotseat;
1812 }
1813
Jorim Jaggid017f882014-01-14 17:08:48 -08001814 public ViewGroup getOverviewPanel() {
Winson Chunga6945242014-01-08 14:04:34 -08001815 return mOverviewPanel;
1816 }
1817
Winson Chung006ee262015-08-03 14:40:11 -07001818 public SearchDropTargetBar getSearchDropTargetBar() {
Winson Chunga6945242014-01-08 14:04:34 -08001819 return mSearchDropTargetBar;
1820 }
1821
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001822 public LauncherAppWidgetHost getAppWidgetHost() {
1823 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001824 }
Romain Guycbb89e42009-06-08 15:52:54 -07001825
Winson Chunga9abd0e2010-10-27 17:18:37 -07001826 public LauncherModel getModel() {
1827 return mModel;
1828 }
1829
Winson Chunga6945242014-01-08 14:04:34 -08001830 protected SharedPreferences getSharedPrefs() {
1831 return mSharedPrefs;
1832 }
1833
Adam Cohen2e6da152015-05-06 11:42:25 -07001834 public DeviceProfile getDeviceProfile() {
1835 return mDeviceProfile;
1836 }
1837
Bjorn Bringertc459e522013-06-07 19:36:01 +01001838 public void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001839 getWindow().closeAllPanels();
1840
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001841 // Whatever we were doing is hereby canceled.
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001842 setWaitingForResult(false);
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001843 }
1844
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001845 @Override
1846 protected void onNewIntent(Intent intent) {
Michael Jurka447bf842013-05-15 14:52:15 +02001847 long startTime = 0;
1848 if (DEBUG_RESUME_TIME) {
1849 startTime = System.currentTimeMillis();
1850 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001851 super.onNewIntent(intent);
1852
1853 // Close the menu
1854 if (Intent.ACTION_MAIN.equals(intent.getAction())) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001855 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001856 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001857
Adam Cohened307df2013-10-02 09:37:31 -07001858 final boolean alreadyOnHome = mHasFocus && ((intent.getFlags() &
1859 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1860 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
Michael Jurka01f0ed42010-08-20 00:41:17 -07001861
Adam Cohen6fecd412013-10-02 17:41:50 -07001862 if (mWorkspace == null) {
1863 // Can be cases where mWorkspace is null, this prevents a NPE
1864 return;
1865 }
1866 Folder openFolder = mWorkspace.getOpenFolder();
1867 // In all these cases, only animate if we're already on home
1868 mWorkspace.exitWidgetResizeMode();
Adam Cohen9211d422014-10-07 18:14:53 -07001869
1870 boolean moveToDefaultScreen = mLauncherCallbacks != null ?
1871 mLauncherCallbacks.shouldMoveToDefaultScreenOnHomeIntent() : true;
Adam Cohen6fecd412013-10-02 17:41:50 -07001872 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
Adam Cohen9211d422014-10-07 18:14:53 -07001873 openFolder == null && moveToDefaultScreen) {
Adam Cohen6fecd412013-10-02 17:41:50 -07001874 mWorkspace.moveToDefaultScreen(true);
Winson Chung4a2afa32012-07-19 14:53:05 -07001875 }
Romain Guy1dd3a072009-07-16 13:21:01 -07001876
Adam Cohen6fecd412013-10-02 17:41:50 -07001877 closeFolder();
1878 exitSpringLoadedDragMode();
1879
1880 // If we are already on home, then just animate back to the workspace,
1881 // otherwise, just wait until onResume to set the state back to Workspace
1882 if (alreadyOnHome) {
Adam Cohened307df2013-10-02 09:37:31 -07001883 showWorkspace(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001884 } else {
1885 mOnResumeState = State.WORKSPACE;
1886 }
1887
1888 final View v = getWindow().peekDecorView();
1889 if (v != null && v.getWindowToken() != null) {
1890 InputMethodManager imm = (InputMethodManager)getSystemService(
1891 INPUT_METHOD_SERVICE);
1892 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1893 }
1894
Winson Chungb745afb2015-03-02 11:51:23 -08001895 // Reset the apps view
1896 if (!alreadyOnHome && mAppsView != null) {
1897 mAppsView.scrollToTop();
1898 }
1899
Hyunyoung Song3f471442015-04-08 19:01:34 -07001900 // Reset the widgets view
1901 if (!alreadyOnHome && mWidgetsView != null) {
1902 mWidgetsView.scrollToTop();
Adam Cohen6fecd412013-10-02 17:41:50 -07001903 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001904
Adam Cohen9211d422014-10-07 18:14:53 -07001905 if (mLauncherCallbacks != null) {
1906 mLauncherCallbacks.onHomeIntent();
1907 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001908 }
Adam Cohened307df2013-10-02 09:37:31 -07001909
Michael Jurka447bf842013-05-15 14:52:15 +02001910 if (DEBUG_RESUME_TIME) {
1911 Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime));
1912 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001913
Adam Cohen9211d422014-10-07 18:14:53 -07001914 if (mLauncherCallbacks != null) {
1915 mLauncherCallbacks.onNewIntent(intent);
1916 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001917 }
1918
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001919 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001920 public void onRestoreInstanceState(Bundle state) {
1921 super.onRestoreInstanceState(state);
1922 for (int page: mSynchronouslyBoundPages) {
1923 mWorkspace.restoreInstanceStateForChild(page);
1924 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001925 }
1926
1927 @Override
1928 protected void onSaveInstanceState(Bundle outState) {
Adam Cohen21cd0022013-10-09 18:57:02 -07001929 if (mWorkspace.getChildCount() > 0) {
Winson Chung9b9fb962013-11-15 15:39:34 -08001930 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN,
1931 mWorkspace.getCurrentPageOffsetFromCustomContent());
Adam Cohen21cd0022013-10-09 18:57:02 -07001932 }
Adam Cohen95bb8002011-07-03 23:40:28 -07001933 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001934
Michael Jurka883f55b2010-10-21 15:47:14 -07001935 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001936 // We close any open folder since it will not be re-opened, and we need to make sure
1937 // this state is reflected.
1938 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001939
Adam Cohendcd297f2013-06-18 13:13:40 -07001940 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screenId > -1 &&
Winson Chung3d503fb2011-07-13 17:25:49 -07001941 mWaitingForResult) {
1942 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
Adam Cohendcd297f2013-06-18 13:13:40 -07001943 outState.putLong(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screenId);
Winson Chung3d503fb2011-07-13 17:25:49 -07001944 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1945 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001946 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_X, mPendingAddInfo.spanX);
1947 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y, mPendingAddInfo.spanY);
1948 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
Adam Cohen4637b5a2013-11-04 18:21:24 -08001949 outState.putInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID, mPendingAddWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001950 }
1951
Hyunyoung Song3f471442015-04-08 19:01:34 -07001952 // Save the current widgets tray?
1953 // TODO(hyunyoungs)
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001954 outState.putSerializable(RUNTIME_STATE_VIEW_IDS, mItemIdToViewId);
Adam Cohen9211d422014-10-07 18:14:53 -07001955
1956 if (mLauncherCallbacks != null) {
1957 mLauncherCallbacks.onSaveInstanceState(outState);
1958 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001959 }
1960
1961 @Override
1962 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001963 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001964
Winson Chunge7a03942011-08-05 15:05:12 -07001965 // Remove all pending runnables
1966 mHandler.removeMessages(ADVANCE_MSG);
1967 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07001968 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07001969
Winson Chungcd2b0142011-06-08 16:02:26 -07001970 // Stop callbacks from LauncherModel
Daniel Sandlercc8befa2013-06-11 14:45:48 -04001971 LauncherAppState app = (LauncherAppState.getInstance());
Adam Cohen1a85c582014-09-30 09:48:49 -07001972
1973 // It's possible to receive onDestroy after a new Launcher activity has
1974 // been created. In this case, don't interfere with the new Launcher.
1975 if (mModel.isCurrentCallbacks(this)) {
1976 mModel.stopLoader();
1977 app.setLauncher(null);
1978 }
Winson Chungcd2b0142011-06-08 16:02:26 -07001979
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001980 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001981 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001982 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08001983 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001984 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001985 mAppWidgetHost = null;
1986
1987 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001988
1989 TextKeyListener.getInstance().release();
1990
Joe Onorato34a0e1b2009-12-14 17:44:51 -08001991 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001992
Adam Cohenaccf3bf2012-04-30 16:07:43 -07001993 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001994 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
Adam Cohend552dd92013-11-26 12:13:11 -08001995 mWorkspace.removeAllWorkspaceScreens();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001996 mWorkspace = null;
1997 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08001998
Michael Jurka2ecf9952012-06-18 12:52:28 -07001999 LauncherAnimUtils.onDestroyActivity();
Adam Cohen9211d422014-10-07 18:14:53 -07002000
2001 if (mLauncherCallbacks != null) {
2002 mLauncherCallbacks.onDestroy();
2003 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002004 }
2005
Adam Cohena9cf38f2011-05-02 15:36:58 -07002006 public DragController getDragController() {
2007 return mDragController;
2008 }
2009
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002010 @Override
2011 public void startActivityForResult(Intent intent, int requestCode) {
Adam Cohen173f7112015-03-27 15:14:00 -07002012 onStartForResult(requestCode);
2013 super.startActivityForResult(intent, requestCode);
2014 }
2015
2016 @Override
2017 public void startIntentSenderForResult (IntentSender intent, int requestCode,
2018 Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) {
2019 onStartForResult(requestCode);
2020 try {
2021 super.startIntentSenderForResult(intent, requestCode,
2022 fillInIntent, flagsMask, flagsValues, extraFlags, options);
2023 } catch (IntentSender.SendIntentException e) {
2024 throw new ActivityNotFoundException();
2025 }
2026 }
2027
2028 private void onStartForResult(int requestCode) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002029 if (requestCode >= 0) {
2030 setWaitingForResult(true);
2031 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002032 }
2033
Winson Chung70d72102011-08-12 11:24:35 -07002034 /**
2035 * Indicates that we want global search for this activity by setting the globalSearch
2036 * argument for {@link #startSearch} to true.
2037 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002038 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07002039 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002040 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002041
Karl Rosaen138a0412009-04-23 19:00:21 -07002042 if (initialQuery == null) {
2043 // Use any text typed in the launcher as the initial query
2044 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07002045 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002046 if (appSearchData == null) {
2047 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01002048 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002049 }
Winson Chungadf0c182012-08-23 14:59:07 -07002050 Rect sourceBounds = new Rect();
2051 if (mSearchDropTargetBar != null) {
2052 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
2053 }
Romain Guycbb89e42009-06-08 15:52:54 -07002054
Ian Parkinson047036e2014-09-01 15:40:53 +01002055 boolean clearTextImmediately = startSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002056 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002057 if (clearTextImmediately) {
2058 clearTypedText();
2059 }
Winson Chungcd99cd32015-04-29 11:03:24 -07002060
2061 // We need to show the workspace after starting the search
2062 showWorkspace(true);
Bjorn Bringertc459e522013-06-07 19:36:01 +01002063 }
2064
Ian Parkinson047036e2014-09-01 15:40:53 +01002065 /**
2066 * Start a text search.
2067 *
2068 * @return {@code true} if the search will start immediately, so any further keypresses
2069 * will be handled directly by the search UI. {@code false} if {@link Launcher} should continue
2070 * to buffer keypresses.
2071 */
2072 public boolean startSearch(String initialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002073 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Adam Cohen9211d422014-10-07 18:14:53 -07002074 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
2075 return mLauncherCallbacks.startSearch(initialQuery, selectInitialQuery, appSearchData,
2076 sourceBounds);
2077 }
2078
Michael Jurkaa33411c2012-06-14 16:18:21 -07002079 startGlobalSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002080 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002081 return false;
Michael Jurkaa33411c2012-06-14 16:18:21 -07002082 }
2083
2084 /**
2085 * Starts the global search activity. This code is a copied from SearchManager
2086 */
Bjorn Bringertc459e522013-06-07 19:36:01 +01002087 private void startGlobalSearch(String initialQuery,
Michael Jurkaa33411c2012-06-14 16:18:21 -07002088 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002089 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07002090 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2091 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
2092 if (globalSearchActivity == null) {
2093 Log.w(TAG, "No global search activity found.");
2094 return;
2095 }
2096 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
2097 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2098 intent.setComponent(globalSearchActivity);
2099 // Make sure that we have a Bundle to put source in
2100 if (appSearchData == null) {
2101 appSearchData = new Bundle();
2102 } else {
2103 appSearchData = new Bundle(appSearchData);
2104 }
Adam Cohen9211d422014-10-07 18:14:53 -07002105 // Set source to package name of app that starts global search if not set already.
Michael Jurkaa33411c2012-06-14 16:18:21 -07002106 if (!appSearchData.containsKey("source")) {
2107 appSearchData.putString("source", getPackageName());
2108 }
2109 intent.putExtra(SearchManager.APP_DATA, appSearchData);
2110 if (!TextUtils.isEmpty(initialQuery)) {
2111 intent.putExtra(SearchManager.QUERY, initialQuery);
2112 }
2113 if (selectInitialQuery) {
2114 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
2115 }
2116 intent.setSourceBounds(sourceBounds);
2117 try {
2118 startActivity(intent);
2119 } catch (ActivityNotFoundException ex) {
2120 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
2121 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002122 }
2123
Yura4f93ec62014-02-04 14:15:21 +00002124 public boolean isOnCustomContent() {
2125 return mWorkspace.isOnOrMovingToCustomContent();
2126 }
2127
Winson Chung70d72102011-08-12 11:24:35 -07002128 @Override
Winson Chung70d72102011-08-12 11:24:35 -07002129 public boolean onPrepareOptionsMenu(Menu menu) {
2130 super.onPrepareOptionsMenu(menu);
Yura4f93ec62014-02-04 14:15:21 +00002131 if (!isOnCustomContent()) {
2132 // Close any open folders
2133 closeFolder();
2134 // Stop resizing any widgets
2135 mWorkspace.exitWidgetResizeMode();
2136 if (!mWorkspace.isInOverviewMode()) {
2137 // Show the overview mode
2138 showOverviewMode(true);
2139 } else {
2140 showWorkspace(true);
2141 }
Winson Chunge0298742014-01-17 12:03:00 -08002142 }
Adam Cohen9211d422014-10-07 18:14:53 -07002143 if (mLauncherCallbacks != null) {
2144 return mLauncherCallbacks.onPrepareOptionsMenu(menu);
2145 }
2146
Michael Jurkab94f3f82013-09-11 18:08:54 +02002147 return false;
Winson Chung70d72102011-08-12 11:24:35 -07002148 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002149
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002150 @Override
2151 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07002152 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07002153 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07002154 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002155 }
2156
Joe Onorato9c1289c2009-08-17 11:03:03 -04002157 public boolean isWorkspaceLocked() {
2158 return mWorkspaceLoading || mWaitingForResult;
2159 }
2160
Adam Cohen517a7f52014-03-01 12:12:59 -08002161 public boolean isWorkspaceLoading() {
2162 return mWorkspaceLoading;
2163 }
2164
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002165 private void setWorkspaceLoading(boolean value) {
2166 boolean isLocked = isWorkspaceLocked();
2167 mWorkspaceLoading = value;
2168 if (isLocked != isWorkspaceLocked()) {
2169 onWorkspaceLockedChanged();
2170 }
2171 }
2172
2173 private void setWaitingForResult(boolean value) {
2174 boolean isLocked = isWorkspaceLocked();
2175 mWaitingForResult = value;
2176 if (isLocked != isWorkspaceLocked()) {
2177 onWorkspaceLockedChanged();
2178 }
2179 }
2180
Adam Cohen9211d422014-10-07 18:14:53 -07002181 protected void onWorkspaceLockedChanged() {
2182 if (mLauncherCallbacks != null) {
2183 mLauncherCallbacks.onWorkspaceLockedChanged();
2184 }
2185 }
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002186
Michael Jurka0280c3b2010-09-17 15:00:07 -07002187 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07002188 mPendingAddInfo.container = ItemInfo.NO_ID;
Adam Cohendcd297f2013-06-18 13:13:40 -07002189 mPendingAddInfo.screenId = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002190 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
2191 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Sunny Goyal233ee962015-08-03 13:05:01 -07002192 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = 1;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002193 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07002194
Sunny Goyale6b63a32015-01-16 16:14:29 -08002195 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info, final
Adam Cohen59400422014-03-05 18:07:04 -08002196 AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo) {
Adam Cohenad4e15c2013-10-17 16:21:35 -07002197 addAppWidgetImpl(appWidgetId, info, boundWidget, appWidgetInfo, 0);
2198 }
2199
Sunny Goyale6b63a32015-01-16 16:14:29 -08002200 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
Adam Cohen59400422014-03-05 18:07:04 -08002201 final AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo,
2202 int delay) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002203 if (appWidgetInfo.configure != null) {
2204 mPendingAddWidgetInfo = appWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -08002205 mPendingAddWidgetId = appWidgetId;
Michael Jurkaaf442092010-06-10 17:01:57 -07002206
Bjorn Bringert7984c942009-12-09 15:38:25 +00002207 // Launch over to configure widget, if needed
Sunny Goyalffe83f12014-08-14 17:39:34 -07002208 mAppWidgetManager.startConfigActivity(appWidgetInfo, appWidgetId, this,
2209 mAppWidgetHost, REQUEST_CREATE_APPWIDGET);
2210
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002211 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00002212 // Otherwise just add it
Adam Cohenad4e15c2013-10-17 16:21:35 -07002213 Runnable onComplete = new Runnable() {
2214 @Override
2215 public void run() {
2216 // Exit spring loaded mode if necessary after adding the widget
2217 exitSpringLoadedDragModeDelayed(true, EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT,
2218 null);
2219 }
2220 };
Adam Cohendcd297f2013-06-18 13:13:40 -07002221 completeAddAppWidget(appWidgetId, info.container, info.screenId, boundWidget,
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002222 appWidgetInfo);
Adam Cohen689ff162014-05-08 17:27:56 -07002223 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, delay, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002224 }
2225 }
Romain Guycbb89e42009-06-08 15:52:54 -07002226
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002227 protected void moveToCustomContentScreen(boolean animate) {
Sandeep Siddharthaf2b47f12013-09-26 19:49:27 -07002228 // Close any folders that may be open.
2229 closeFolder();
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002230 mWorkspace.moveToCustomContentScreen(animate);
2231 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002232
2233 public void addPendingItem(PendingAddItemInfo info, long container, long screenId,
2234 int[] cell, int spanX, int spanY) {
2235 switch (info.itemType) {
2236 case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET:
2237 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
2238 int span[] = new int[2];
2239 span[0] = spanX;
2240 span[1] = spanY;
2241 addAppWidgetFromDrop((PendingAddWidgetInfo) info,
2242 container, screenId, cell, span);
2243 break;
2244 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
2245 processShortcutFromDrop(info.componentName, container, screenId, cell);
2246 break;
2247 default:
2248 throw new IllegalStateException("Unknown item type: " + info.itemType);
2249 }
2250 }
2251
Adam Cohenfbba09b2011-07-18 21:43:05 -07002252 /**
2253 * Process a shortcut drop.
2254 *
2255 * @param componentName The name of the component
Adam Cohendcd297f2013-06-18 13:13:40 -07002256 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002257 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002258 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002259 private void processShortcutFromDrop(ComponentName componentName, long container, long screenId,
2260 int[] cell) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002261 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002262 mPendingAddInfo.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002263 mPendingAddInfo.screenId = screenId;
Adam Cohenfbba09b2011-07-18 21:43:05 -07002264
2265 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002266 mPendingAddInfo.cellX = cell[0];
2267 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002268 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002269
2270 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
2271 createShortcutIntent.setComponent(componentName);
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002272 Utilities.startActivityForResultSafely(this, createShortcutIntent, REQUEST_CREATE_SHORTCUT);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002273 }
2274
Adam Cohenfbba09b2011-07-18 21:43:05 -07002275 /**
2276 * Process a widget drop.
2277 *
2278 * @param info The PendingAppWidgetInfo of the widget being added.
Adam Cohendcd297f2013-06-18 13:13:40 -07002279 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002280 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002281 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002282 private void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, long screenId,
2283 int[] cell, int[] span) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07002284 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002285 mPendingAddInfo.container = info.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002286 mPendingAddInfo.screenId = info.screenId = screenId;
Adam Cohend41fbf52012-02-16 23:53:59 -08002287 mPendingAddInfo.minSpanX = info.minSpanX;
2288 mPendingAddInfo.minSpanY = info.minSpanY;
2289
Adam Cohenfbba09b2011-07-18 21:43:05 -07002290 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002291 mPendingAddInfo.cellX = cell[0];
2292 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002293 }
Adam Cohend41fbf52012-02-16 23:53:59 -08002294 if (span != null) {
2295 mPendingAddInfo.spanX = span[0];
2296 mPendingAddInfo.spanY = span[1];
2297 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002298
Adam Cohened66b2b2012-01-23 17:28:51 -08002299 AppWidgetHostView hostView = info.boundWidget;
2300 int appWidgetId;
2301 if (hostView != null) {
2302 appWidgetId = hostView.getAppWidgetId();
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002303 addAppWidgetImpl(appWidgetId, info, hostView, info.info);
Sunny Goyal5b9ebca2015-06-01 18:37:32 -07002304
2305 // Clear the boundWidget so that it doesn't get destroyed.
2306 info.boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -08002307 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002308 // In this case, we either need to start an activity to get permission to bind
2309 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08002310 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07002311 Bundle options = info.bindOptions;
2312
Sunny Goyalffe83f12014-08-14 17:39:34 -07002313 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
2314 appWidgetId, info.info, options);
Adam Cohendd70d662012-10-04 16:53:44 -07002315 if (success) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002316 addAppWidgetImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07002317 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002318 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07002319 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
2320 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
2321 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Sunny Goyalffe83f12014-08-14 17:39:34 -07002322 mAppWidgetManager.getUser(mPendingAddWidgetInfo)
2323 .addToIntent(intent, AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE);
Adam Cohendd70d662012-10-04 16:53:44 -07002324 // TODO: we need to make sure that this accounts for the options bundle.
2325 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07002326 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
2327 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002328 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002329 }
2330
Adam Cohendcd297f2013-06-18 13:13:40 -07002331 FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07002332 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07002333 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002334 folderInfo.title = getText(R.string.folder_name);
2335
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002336 // Update the model
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07002337 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId,
2338 cellX, cellY);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002339 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002340
2341 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07002342 FolderIcon newFolder =
2343 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07002344 mWorkspace.addInScreen(newFolder, container, screenId, cellX, cellY, 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07002345 isWorkspaceLocked());
Winson Chung5f8afe62013-08-12 16:19:28 -07002346 // Force measure the new folder icon
2347 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
2348 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07002349 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002350 }
Romain Guycbb89e42009-06-08 15:52:54 -07002351
Joe Onorato9c1289c2009-08-17 11:03:03 -04002352 void removeFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002353 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002354 }
2355
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002356 @Override
2357 public boolean dispatchKeyEvent(KeyEvent event) {
2358 if (event.getAction() == KeyEvent.ACTION_DOWN) {
2359 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002360 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07002361 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08002362 case KeyEvent.KEYCODE_VOLUME_DOWN:
Sunny Goyal4bbf4192014-11-11 12:23:59 -08002363 if (Utilities.isPropertyEnabled(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08002364 dumpState();
2365 return true;
2366 }
2367 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07002368 }
2369 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2370 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07002371 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002372 return true;
2373 }
2374 }
2375
2376 return super.dispatchKeyEvent(event);
2377 }
2378
Joe Onorato88ec0992009-11-19 13:16:06 -08002379 @Override
2380 public void onBackPressed() {
Adam Cohen9211d422014-10-07 18:14:53 -07002381 if (mLauncherCallbacks != null && mLauncherCallbacks.handleBackPressed()) {
2382 return;
2383 }
2384
Sunny Goyal45478022015-06-08 16:52:41 -07002385 if (mDragController.isDragging()) {
2386 mDragController.cancelDrag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08002387 return;
2388 }
2389
Winson Chungb745afb2015-03-02 11:51:23 -08002390 if (isAppsViewVisible()) {
2391 showWorkspace(true);
2392 } else if (isWidgetsViewVisible()) {
2393 showOverviewMode(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002394 } else if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002395 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002396 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07002397 Folder openFolder = mWorkspace.getOpenFolder();
2398 if (openFolder.isEditingName()) {
2399 openFolder.dismissEditingName();
2400 } else {
2401 closeFolder();
2402 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002403 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08002404 mWorkspace.exitWidgetResizeMode();
2405
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002406 // Back button is a no-op here, but give at least some feedback for the button press
2407 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07002408 }
Joe Onorato88ec0992009-11-19 13:16:06 -08002409 }
2410
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002411 /**
Sunny Goyal383c5072015-06-12 21:18:53 -07002412 * Re-listen when widget host is reset.
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002413 */
Sunny Goyal383c5072015-06-12 21:18:53 -07002414 @Override
2415 public void onAppWidgetHostReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08002416 if (mAppWidgetHost != null) {
2417 mAppWidgetHost.startListening();
2418 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002419 }
2420
2421 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002422 * Launches the intent referred by the clicked shortcut.
2423 *
2424 * @param v The view representing the clicked shortcut.
2425 */
2426 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002427 // Make sure that rogue clicks don't get through while allapps is launching, or after the
2428 // view has detached (it's possible for this to happen if the view is removed mid touch).
2429 if (v.getWindowToken() == null) {
2430 return;
2431 }
2432
Winson Chung9b0b2fe2012-02-24 13:03:34 -08002433 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002434 return;
2435 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07002436
Adam Cohen1697b792013-09-17 19:08:21 -07002437 if (v instanceof Workspace) {
2438 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002439 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002440 }
2441 return;
2442 }
2443
2444 if (v instanceof CellLayout) {
2445 if (mWorkspace.isInOverviewMode()) {
Sunny Goyalce5a7e52015-07-08 15:44:27 -07002446 mWorkspace.snapToPageFromOverView(mWorkspace.indexOfChild(v));
2447 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002448 }
Sunny Goyalce5a7e52015-07-08 15:44:27 -07002449 return;
Adam Cohenf358a4b2013-07-23 16:47:31 -07002450 }
2451
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002452 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002453 if (tag instanceof ShortcutInfo) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002454 onClickAppShortcut(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002455 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002456 if (v instanceof FolderIcon) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002457 onClickFolderIcon(v);
Adam Cohena9cf38f2011-05-02 15:36:58 -07002458 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002459 } else if (v == mAllAppsButton) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002460 onClickAllAppsButton(v);
Sunny Goyal508da152014-08-14 10:53:27 -07002461 } else if (tag instanceof AppInfo) {
2462 startAppShortcutOrInfoActivity(v);
Sunny Goyalff572272014-07-23 13:58:07 -07002463 } else if (tag instanceof LauncherAppWidgetInfo) {
2464 if (v instanceof PendingAppWidgetHostView) {
2465 onClickPendingWidget((PendingAppWidgetHostView) v);
2466 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002467 }
2468 }
2469
Sunny Goyal70660032015-05-14 00:07:08 -07002470 @SuppressLint("ClickableViewAccessibility")
Michael Jurka0e260592010-06-30 17:07:39 -07002471 public boolean onTouch(View v, MotionEvent event) {
Michael Jurka0e260592010-06-30 17:07:39 -07002472 return false;
2473 }
2474
Michael Jurkaaf442092010-06-10 17:01:57 -07002475 /**
Sunny Goyalff572272014-07-23 13:58:07 -07002476 * Event handler for the app widget view which has not fully restored.
2477 */
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002478 public void onClickPendingWidget(final PendingAppWidgetHostView v) {
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002479 if (mIsSafeModeEnabled) {
2480 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2481 return;
2482 }
2483
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002484 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) v.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07002485 if (v.isReadyForClickSetup()) {
Sunny Goyalff572272014-07-23 13:58:07 -07002486 int widgetId = info.appWidgetId;
2487 AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
2488 if (appWidgetInfo != null) {
Adam Cohen59400422014-03-05 18:07:04 -08002489 mPendingAddWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(
2490 this, appWidgetInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07002491 mPendingAddInfo.copyFrom(info);
2492 mPendingAddWidgetId = widgetId;
2493
Sunny Goyalffe83f12014-08-14 17:39:34 -07002494 AppWidgetManagerCompat.getInstance(this).startConfigActivity(appWidgetInfo,
2495 info.appWidgetId, this, mAppWidgetHost, REQUEST_RECONFIGURE_APPWIDGET);
Sunny Goyalff572272014-07-23 13:58:07 -07002496 }
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002497 } else if (info.installProgress < 0) {
2498 // The install has not been queued
2499 final String packageName = info.providerName.getPackageName();
2500 showBrokenAppInstallDialog(packageName,
2501 new DialogInterface.OnClickListener() {
2502 public void onClick(DialogInterface dialog, int id) {
2503 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
2504 }
2505 });
2506 } else {
2507 // Download has started.
2508 final String packageName = info.providerName.getPackageName();
2509 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
Sunny Goyalff572272014-07-23 13:58:07 -07002510 }
2511 }
2512
2513 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002514 * Event handler for the "grid" button that appears on the home screen, which
2515 * enters all apps mode.
2516 *
2517 * @param v The view that was clicked.
2518 */
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002519 protected void onClickAllAppsButton(View v) {
2520 if (LOGD) Log.d(TAG, "onClickAllAppsButton");
Winson Chung76648c52015-07-10 14:33:23 -07002521 if (!isAppsViewVisible()) {
Winson Chung4ac30062015-05-08 17:34:17 -07002522 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07002523 true /* updatePredictedApps */, false /* focusSearchBar */);
2524 }
2525 }
2526
2527 protected void onLongClickAllAppsButton(View v) {
2528 if (LOGD) Log.d(TAG, "onLongClickAllAppsButton");
2529 if (!isAppsViewVisible()) {
2530 showAppsView(true /* animated */, false /* resetListToTop */,
2531 true /* updatePredictedApps */, true /* focusSearchBar */);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002532 }
2533 }
2534
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002535 private void showBrokenAppInstallDialog(final String packageName,
2536 DialogInterface.OnClickListener onSearchClickListener) {
Sunny Goyale03b8122014-10-08 09:55:24 -07002537 new AlertDialog.Builder(this)
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002538 .setTitle(R.string.abandoned_promises_title)
2539 .setMessage(R.string.abandoned_promise_explanation)
2540 .setPositiveButton(R.string.abandoned_search, onSearchClickListener)
2541 .setNeutralButton(R.string.abandoned_clean_this,
2542 new DialogInterface.OnClickListener() {
2543 public void onClick(DialogInterface dialog, int id) {
2544 final UserHandleCompat user = UserHandleCompat.myUserHandle();
2545 mWorkspace.removeAbandonedPromise(packageName, user);
2546 }
2547 })
2548 .create().show();
2549 return;
2550 }
2551
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002552 /**
2553 * Event handler for an app shortcut click.
2554 *
2555 * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.
2556 */
Chris Wren40c5ed32014-06-24 18:24:23 -04002557 protected void onClickAppShortcut(final View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002558 if (LOGD) Log.d(TAG, "onClickAppShortcut");
2559 Object tag = v.getTag();
2560 if (!(tag instanceof ShortcutInfo)) {
2561 throw new IllegalArgumentException("Input must be a Shortcut");
2562 }
2563
2564 // Open shortcut
2565 final ShortcutInfo shortcut = (ShortcutInfo) tag;
Sunny Goyal1a745e82014-10-02 15:58:31 -07002566
2567 if (shortcut.isDisabled != 0) {
2568 int error = R.string.activity_not_available;
2569 if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_SAFEMODE) != 0) {
2570 error = R.string.safemode_shortcut_error;
2571 }
2572 Toast.makeText(this, error, Toast.LENGTH_SHORT).show();
2573 return;
2574 }
2575
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002576 final Intent intent = shortcut.intent;
2577
2578 // Check for special shortcuts
2579 if (intent.getComponent() != null) {
2580 final String shortcutClass = intent.getComponent().getClassName();
2581
2582 if (shortcutClass.equals(MemoryDumpActivity.class.getName())) {
2583 MemoryDumpActivity.startDump(this);
2584 return;
2585 } else if (shortcutClass.equals(ToggleWeightWatcher.class.getName())) {
2586 toggleShowWeightWatcher();
2587 return;
2588 }
2589 }
2590
Chris Wren40c5ed32014-06-24 18:24:23 -04002591 // Check for abandoned promise
Sunny Goyal34942622014-08-29 17:20:55 -07002592 if ((v instanceof BubbleTextView)
2593 && shortcut.isPromise()
2594 && !shortcut.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE)) {
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002595 showBrokenAppInstallDialog(
Sunny Goyal34942622014-08-29 17:20:55 -07002596 shortcut.getTargetComponent().getPackageName(),
Chris Wren40c5ed32014-06-24 18:24:23 -04002597 new DialogInterface.OnClickListener() {
2598 public void onClick(DialogInterface dialog, int id) {
Sunny Goyal508da152014-08-14 10:53:27 -07002599 startAppShortcutOrInfoActivity(v);
Chris Wren40c5ed32014-06-24 18:24:23 -04002600 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002601 });
Chris Wren40c5ed32014-06-24 18:24:23 -04002602 return;
2603 }
2604
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002605 // Start activities
Sunny Goyal508da152014-08-14 10:53:27 -07002606 startAppShortcutOrInfoActivity(v);
Adam Cohen9211d422014-10-07 18:14:53 -07002607
2608 if (mLauncherCallbacks != null) {
2609 mLauncherCallbacks.onClickAppShortcut(v);
2610 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002611 }
2612
Adam Cohen091440a2015-03-18 14:16:05 -07002613 @Thunk void startAppShortcutOrInfoActivity(View v) {
Chris Wren40c5ed32014-06-24 18:24:23 -04002614 Object tag = v.getTag();
Sunny Goyal508da152014-08-14 10:53:27 -07002615 final ShortcutInfo shortcut;
2616 final Intent intent;
2617 if (tag instanceof ShortcutInfo) {
2618 shortcut = (ShortcutInfo) tag;
2619 intent = shortcut.intent;
2620 int[] pos = new int[2];
2621 v.getLocationOnScreen(pos);
2622 intent.setSourceBounds(new Rect(pos[0], pos[1],
2623 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Chris Wren40c5ed32014-06-24 18:24:23 -04002624
Sunny Goyal508da152014-08-14 10:53:27 -07002625 } else if (tag instanceof AppInfo) {
2626 shortcut = null;
2627 intent = ((AppInfo) tag).intent;
2628 } else {
2629 throw new IllegalArgumentException("Input must be a Shortcut or AppInfo");
2630 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002631
2632 boolean success = startActivitySafely(v, intent, tag);
Winson Chung8f1eff72015-05-28 17:33:40 -07002633 mStats.recordLaunch(v, intent, shortcut);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002634
2635 if (success && v instanceof BubbleTextView) {
2636 mWaitingForResume = (BubbleTextView) v;
2637 mWaitingForResume.setStayPressed(true);
2638 }
2639 }
2640
2641 /**
2642 * Event handler for a folder icon click.
2643 *
2644 * @param v The view that was clicked. Must be an instance of {@link FolderIcon}.
2645 */
2646 protected void onClickFolderIcon(View v) {
2647 if (LOGD) Log.d(TAG, "onClickFolder");
2648 if (!(v instanceof FolderIcon)){
2649 throw new IllegalArgumentException("Input must be a FolderIcon");
2650 }
2651
Sunny Goyal317698b2015-07-29 11:45:41 -07002652 // TODO(sunnygoyal): Re-evaluate this code.
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002653 FolderIcon folderIcon = (FolderIcon) v;
2654 final FolderInfo info = folderIcon.getFolderInfo();
2655 Folder openFolder = mWorkspace.getFolderForTag(info);
2656
2657 // If the folder info reports that the associated folder is open, then verify that
2658 // it is actually opened. There have been a few instances where this gets out of sync.
2659 if (info.opened && openFolder == null) {
2660 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2661 + info.screenId + " (" + info.cellX + ", " + info.cellY + ")");
2662 info.opened = false;
2663 }
2664
2665 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
2666 // Close any open folder
2667 closeFolder();
2668 // Open the requested folder
2669 openFolder(folderIcon);
2670 } else {
2671 // Find the open folder...
2672 int folderScreen;
2673 if (openFolder != null) {
2674 folderScreen = mWorkspace.getPageForView(openFolder);
2675 // .. and close it
2676 closeFolder(openFolder);
2677 if (folderScreen != mWorkspace.getCurrentPage()) {
2678 // Close any folder open on the current screen
2679 closeFolder();
2680 // Pull the folder onto this screen
2681 openFolder(folderIcon);
2682 }
2683 }
2684 }
Adam Cohen9211d422014-10-07 18:14:53 -07002685
2686 if (mLauncherCallbacks != null) {
2687 mLauncherCallbacks.onClickFolderIcon(v);
2688 }
Michael Jurka5130e402011-10-13 04:55:35 -07002689 }
2690
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002691 /**
2692 * Event handler for the (Add) Widgets button that appears after a long press
2693 * on the home screen.
2694 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002695 protected void onClickAddWidgetButton(View view) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002696 if (LOGD) Log.d(TAG, "onClickAddWidgetButton");
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002697 if (mIsSafeModeEnabled) {
2698 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2699 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08002700 showWidgetsView(true /* animated */, true /* resetPageToZero */);
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002701 if (mLauncherCallbacks != null) {
2702 mLauncherCallbacks.onClickAddWidgetButton(view);
2703 }
Adam Cohen9211d422014-10-07 18:14:53 -07002704 }
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002705 }
2706
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002707 /**
2708 * Event handler for the wallpaper picker button that appears after a long press
2709 * on the home screen.
2710 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002711 protected void onClickWallpaperPicker(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002712 if (LOGD) Log.d(TAG, "onClickWallpaperPicker");
Sunny Goyal6a1e95a2015-03-20 17:26:30 -07002713 startActivityForResult(new Intent(Intent.ACTION_SET_WALLPAPER).setPackage(getPackageName()),
2714 REQUEST_PICK_WALLPAPER);
Adam Cohen9211d422014-10-07 18:14:53 -07002715
2716 if (mLauncherCallbacks != null) {
2717 mLauncherCallbacks.onClickWallpaperPicker(v);
2718 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002719 }
2720
2721 /**
2722 * Event handler for a click on the settings button that appears after a long press
2723 * on the home screen.
2724 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002725 protected void onClickSettingsButton(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002726 if (LOGD) Log.d(TAG, "onClickSettingsButton");
Adam Cohen9211d422014-10-07 18:14:53 -07002727 if (mLauncherCallbacks != null) {
2728 mLauncherCallbacks.onClickSettingsButton(v);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07002729 } else {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002730 startActivity(new Intent(this, SettingsActivity.class));
Adam Cohen9211d422014-10-07 18:14:53 -07002731 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002732 }
2733
Adam Cohen61f560d2013-09-30 15:58:20 -07002734 public View.OnTouchListener getHapticFeedbackTouchListener() {
2735 if (mHapticFeedbackTouchListener == null) {
2736 mHapticFeedbackTouchListener = new View.OnTouchListener() {
Sunny Goyal70660032015-05-14 00:07:08 -07002737 @SuppressLint("ClickableViewAccessibility")
Adam Cohen61f560d2013-09-30 15:58:20 -07002738 @Override
2739 public boolean onTouch(View v, MotionEvent event) {
2740 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
2741 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2742 }
2743 return false;
2744 }
2745 };
2746 }
2747 return mHapticFeedbackTouchListener;
2748 }
2749
Adam Cohen9211d422014-10-07 18:14:53 -07002750 public void onDragStarted(View view) {
2751 if (isOnCustomContent()) {
2752 // Custom content screen doesn't participate in drag and drop. If on custom
2753 // content screen, move to default.
2754 moveWorkspaceToDefaultScreen();
2755 }
2756
2757 if (mLauncherCallbacks != null) {
2758 mLauncherCallbacks.onDragStarted(view);
2759 }
2760 }
Anjali Koppal62d18ed2014-03-10 17:04:03 -07002761
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002762 /**
2763 * Called when the user stops interacting with the launcher.
2764 * This implies that the user is now on the homescreen and is not doing housekeeping.
2765 */
Adam Cohen9211d422014-10-07 18:14:53 -07002766 protected void onInteractionEnd() {
2767 if (mLauncherCallbacks != null) {
2768 mLauncherCallbacks.onInteractionEnd();
2769 }
2770 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002771
2772 /**
2773 * Called when the user starts interacting with the launcher.
2774 * The possible interactions are:
2775 * - open all apps
2776 * - reorder an app shortcut, or a widget
2777 * - open the overview mode.
2778 * This is a good time to stop doing things that only make sense
2779 * when the user is on the homescreen and not doing housekeeping.
2780 */
Adam Cohen9211d422014-10-07 18:14:53 -07002781 protected void onInteractionBegin() {
2782 if (mLauncherCallbacks != null) {
2783 mLauncherCallbacks.onInteractionBegin();
2784 }
2785 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002786
Winson Chungcd99cd32015-04-29 11:03:24 -07002787 /** Updates the interaction state. */
2788 public void updateInteraction(Workspace.State fromState, Workspace.State toState) {
Winson Chung83f59ab2015-05-05 17:21:58 -07002789 // Only update the interacting state if we are transitioning to/from a view with an
Winson Chungcd99cd32015-04-29 11:03:24 -07002790 // overlay
Winson Chungef7f8742015-06-04 17:18:17 -07002791 boolean fromStateWithOverlay = fromState != Workspace.State.NORMAL;
2792 boolean toStateWithOverlay = toState != Workspace.State.NORMAL;
Winson Chung83f59ab2015-05-05 17:21:58 -07002793 if (toStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002794 onInteractionBegin();
Winson Chung83f59ab2015-05-05 17:21:58 -07002795 } else if (fromStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002796 onInteractionEnd();
2797 }
2798 }
2799
Kenny Guyf07af7b2014-07-31 11:39:16 +01002800 void startApplicationDetailsActivity(ComponentName componentName, UserHandleCompat user) {
Kenny Guyf07af7b2014-07-31 11:39:16 +01002801 try {
2802 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Kenny Guyf07af7b2014-07-31 11:39:16 +01002803 launcherApps.showAppDetailsForProfile(componentName, user);
2804 } catch (SecurityException e) {
2805 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2806 Log.e(TAG, "Launcher does not have permission to launch settings");
2807 } catch (ActivityNotFoundException e) {
2808 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2809 Log.e(TAG, "Unable to launch settings");
2810 }
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002811 }
2812
Michael Jurka1e2f4652013-07-08 18:03:46 -07002813 // returns true if the activity was started
Kenny Guyd31df542014-06-30 15:12:11 +01002814 boolean startApplicationUninstallActivity(ComponentName componentName, int flags,
2815 UserHandleCompat user) {
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002816 if ((flags & AppInfo.DOWNLOADED_FLAG) == 0) {
Patrick Dubroy5539af72010-09-07 15:22:01 -07002817 // System applications cannot be installed. For now, show a toast explaining that.
2818 // We may give them the option of disabling apps this way.
2819 int messageId = R.string.uninstall_system_app_text;
2820 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
Michael Jurka1e2f4652013-07-08 18:03:46 -07002821 return false;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002822 } else {
Michael Jurka1e2f4652013-07-08 18:03:46 -07002823 String packageName = componentName.getPackageName();
2824 String className = componentName.getClassName();
Patrick Dubroy5539af72010-09-07 15:22:01 -07002825 Intent intent = new Intent(
2826 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002827 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2828 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Kenny Guyd31df542014-06-30 15:12:11 +01002829 if (user != null) {
2830 user.addToIntent(intent, Intent.EXTRA_USER);
2831 }
Patrick Dubroy5539af72010-09-07 15:22:01 -07002832 startActivity(intent);
Michael Jurka1e2f4652013-07-08 18:03:46 -07002833 return true;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002834 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002835 }
2836
Winson Chung8f1eff72015-05-28 17:33:40 -07002837 private boolean startActivity(View v, Intent intent, Object tag) {
Kenny Guyb6cc40b2014-05-13 15:58:58 +01002838 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002839 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002840 // Only launch using the new animation if the shortcut has not opted out (this is a
2841 // private contract between launcher and may be ignored in the future).
2842 boolean useLaunchAnimation = (v != null) &&
2843 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
Kenny Guyed131872014-04-30 03:02:21 +01002844 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
2845 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyed131872014-04-30 03:02:21 +01002846
Kenny Guy1317e2d2014-05-08 18:52:50 +01002847 UserHandleCompat user = null;
2848 if (intent.hasExtra(AppInfo.EXTRA_PROFILE)) {
2849 long serialNumber = intent.getLongExtra(AppInfo.EXTRA_PROFILE, -1);
2850 user = userManager.getUserForSerialNumber(serialNumber);
2851 }
2852
2853 Bundle optsBundle = null;
Winson Chung2672ff92012-05-04 16:22:30 -07002854 if (useLaunchAnimation) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002855 ActivityOptions opts = null;
2856 if (sClipRevealMethod != null) {
2857 // TODO: call method directly when Launcher3 can depend on M APIs
2858 int left = 0, top = 0;
2859 int width = v.getMeasuredWidth(), height = v.getMeasuredHeight();
2860 if (v instanceof TextView) {
2861 // Launch from center of icon, not entire view
Winson Chungb745afb2015-03-02 11:51:23 -08002862 Drawable icon = Workspace.getTextViewIcon((TextView) v);
2863 if (icon != null) {
2864 Rect bounds = icon.getBounds();
Chet Haasea8f996d2015-02-17 12:56:04 -08002865 left = (width - bounds.width()) / 2;
Winson Chungb745afb2015-03-02 11:51:23 -08002866 top = v.getPaddingTop();
Chet Haasea8f996d2015-02-17 12:56:04 -08002867 width = bounds.width();
2868 height = bounds.height();
2869 }
2870 }
2871 try {
2872 opts = (ActivityOptions) sClipRevealMethod.invoke(null, v,
2873 left, top, width, height);
2874 } catch (IllegalAccessException e) {
2875 Log.d(TAG, "Could not call makeClipRevealAnimation: " + e);
2876 sClipRevealMethod = null;
2877 } catch (InvocationTargetException e) {
2878 Log.d(TAG, "Could not call makeClipRevealAnimation: " + e);
2879 sClipRevealMethod = null;
2880 }
2881 }
Adam Cohen2e52c902015-04-06 13:11:28 -07002882 if (opts == null && !Utilities.isLmpOrAbove()) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002883 // Below L, we use a scale up animation
Adam Cohen2e52c902015-04-06 13:11:28 -07002884 opts = ActivityOptions.makeScaleUpAnimation(v, 0, 0,
Chet Haasea8f996d2015-02-17 12:56:04 -08002885 v.getMeasuredWidth(), v.getMeasuredHeight());
Adam Cohen947e02b2015-05-22 19:23:34 -07002886 } else if (opts == null && Utilities.isLmpMR1()) {
2887 // On L devices, we use the device default slide-up transition.
2888 // On L MR1 devices, we a custom version of the slide-up transition which
2889 // doesn't have the delay present in the device default.
2890 opts = ActivityOptions.makeCustomAnimation(this,
2891 R.anim.task_open_enter, R.anim.no_anim);
Chet Haasea8f996d2015-02-17 12:56:04 -08002892 }
Adam Cohen2e52c902015-04-06 13:11:28 -07002893 optsBundle = opts != null ? opts.toBundle() : null;
Adam Cohen6ea3b112014-06-11 11:38:49 -07002894 }
Kenny Guy1317e2d2014-05-08 18:52:50 +01002895
2896 if (user == null || user.equals(UserHandleCompat.myUserHandle())) {
2897 // Could be launching some bookkeeping activity
2898 startActivity(intent, optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002899 } else {
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002900 // TODO Component can be null when shortcuts are supported for secondary user
Kenny Guyc2bd8102014-06-30 12:30:31 +01002901 launcherApps.startActivityForProfile(intent.getComponent(), user,
2902 intent.getSourceBounds(), optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002903 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002904 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002905 } catch (SecurityException e) {
2906 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002907 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002908 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07002909 "or use the exported attribute for this activity. "
2910 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002911 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002912 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002913 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002914
Sunny Goyal383c5072015-06-12 21:18:53 -07002915 @Thunk boolean startActivitySafely(View v, Intent intent, Object tag) {
Michael Jurka86a720e2012-05-09 11:23:23 -07002916 boolean success = false;
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002917 if (mIsSafeModeEnabled && !Utilities.isSystemApp(this, intent)) {
2918 Toast.makeText(this, R.string.safemode_shortcut_error, Toast.LENGTH_SHORT).show();
2919 return false;
2920 }
Michael Jurka86a720e2012-05-09 11:23:23 -07002921 try {
2922 success = startActivity(v, intent, tag);
2923 } catch (ActivityNotFoundException e) {
2924 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2925 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
2926 }
2927 return success;
2928 }
2929
Adam Cohen268c4752012-06-06 17:47:33 -07002930 /**
2931 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
2932 * in the DragLayer in the exact absolute location of the original FolderIcon.
2933 */
2934 private void copyFolderIconToImage(FolderIcon fi) {
2935 final int width = fi.getMeasuredWidth();
2936 final int height = fi.getMeasuredHeight();
2937
2938 // Lazy load ImageView, Bitmap and Canvas
2939 if (mFolderIconImageView == null) {
2940 mFolderIconImageView = new ImageView(this);
2941 }
2942 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
2943 mFolderIconBitmap.getHeight() != height) {
2944 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
2945 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
2946 }
2947
2948 DragLayer.LayoutParams lp;
2949 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
2950 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
2951 } else {
2952 lp = new DragLayer.LayoutParams(width, height);
2953 }
2954
Adam Cohen307fe232012-08-16 17:55:58 -07002955 // The layout from which the folder is being opened may be scaled, adjust the starting
2956 // view size by this scale factor.
2957 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07002958 lp.customPosition = true;
2959 lp.x = mRectForFolderAnimation.left;
2960 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07002961 lp.width = (int) (scale * width);
2962 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07002963
2964 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
2965 fi.draw(mFolderIconCanvas);
2966 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07002967 if (fi.getFolder() != null) {
2968 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
2969 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07002970 }
Adam Cohen268c4752012-06-06 17:47:33 -07002971 // Just in case this image view is still in the drag layer from a previous animation,
2972 // we remove it and re-add it.
2973 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
2974 mDragLayer.removeView(mFolderIconImageView);
2975 }
2976 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07002977 if (fi.getFolder() != null) {
2978 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07002979 }
Adam Cohen268c4752012-06-06 17:47:33 -07002980 }
2981
Adam Cohen2801caf2011-05-13 20:57:39 -07002982 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002983 if (fi == null) return;
Adam Cohenc51934b2011-07-26 21:07:43 -07002984 FolderInfo info = (FolderInfo) fi.getTag();
2985 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
2986 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07002987 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
2988 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07002989 }
2990
Adam Cohen268c4752012-06-06 17:47:33 -07002991 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
2992 copyFolderIconToImage(fi);
2993 fi.setVisibility(View.INVISIBLE);
2994
Sunny Goyal5d2fc322015-07-06 22:52:49 -07002995 ObjectAnimator oa = LauncherAnimUtils.ofViewAlphaAndScale(
2996 mFolderIconImageView, 0, 1.5f, 1.5f);
Kenny Guyd794a3f2014-09-16 15:17:58 +01002997 if (Utilities.isLmpOrAbove()) {
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07002998 oa.setInterpolator(new LogDecelerateInterpolator(100, 0));
2999 }
3000 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohen2801caf2011-05-13 20:57:39 -07003001 oa.start();
3002 }
3003
Adam Cohen268c4752012-06-06 17:47:33 -07003004 private void shrinkAndFadeInFolderIcon(final FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003005 if (fi == null) return;
Adam Cohen268c4752012-06-06 17:47:33 -07003006 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07003007
Adam Cohen268c4752012-06-06 17:47:33 -07003008 // We remove and re-draw the FolderIcon in-case it has changed
3009 mDragLayer.removeView(mFolderIconImageView);
3010 copyFolderIconToImage(fi);
Sunny Goyal5d2fc322015-07-06 22:52:49 -07003011 ObjectAnimator oa = LauncherAnimUtils.ofViewAlphaAndScale(mFolderIconImageView, 1, 1, 1);
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003012 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07003013 oa.addListener(new AnimatorListenerAdapter() {
3014 @Override
3015 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07003016 if (cl != null) {
3017 cl.clearFolderLeaveBehind();
3018 // Remove the ImageView copy of the FolderIcon and make the original visible.
3019 mDragLayer.removeView(mFolderIconImageView);
3020 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07003021 }
3022 }
3023 });
Adam Cohen2801caf2011-05-13 20:57:39 -07003024 oa.start();
3025 }
3026
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003027 /**
Michael Jurka774bd372010-10-22 13:40:50 -07003028 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003029 * is animated relative to the specified View. If the View is null, no animation
3030 * is played.
3031 *
3032 * @param folderInfo The FolderInfo describing the folder to open.
3033 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07003034 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07003035 Folder folder = folderIcon.getFolder();
Sunny Goyalf4066152015-04-15 09:42:19 -07003036 Folder openFolder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
3037 if (openFolder != null && openFolder != folder) {
3038 // Close any open folder before opening a folder.
3039 closeFolder();
3040 }
3041
Adam Cohena9cf38f2011-05-02 15:36:58 -07003042 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003043
Adam Cohena9cf38f2011-05-02 15:36:58 -07003044 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003045
Sunny Goyalf4066152015-04-15 09:42:19 -07003046 // While the folder is open, the position of the icon cannot change.
3047 ((CellLayout.LayoutParams) folderIcon.getLayoutParams()).canReorder = false;
3048
Adam Cohen4554ee12011-08-03 16:13:21 -07003049 // Just verify that the folder hasn't already been added to the DragLayer.
3050 // There was a one-off crash where the folder had a parent already.
3051 if (folder.getParent() == null) {
3052 mDragLayer.addView(folder);
3053 mDragController.addDropTarget((DropTarget) folder);
3054 } else {
3055 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
3056 folder.getParent() + ").");
3057 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07003058 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07003059 growAndFadeOutFolderIcon(folderIcon);
Winson Chung83ca4802013-04-12 15:10:52 -07003060
3061 // Notify the accessibility manager that this folder "window" has appeared and occluded
3062 // the workspace items
3063 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
3064 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07003065 }
3066
3067 public void closeFolder() {
Adam Cohen37c717f2013-11-26 11:50:15 -08003068 Folder folder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
Adam Cohen4554ee12011-08-03 16:13:21 -07003069 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07003070 if (folder.isEditingName()) {
3071 folder.dismissEditingName();
3072 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003073 closeFolder(folder);
3074 }
3075 }
3076
Sunny Goyal83a8f042015-05-19 12:52:12 -07003077 public void closeFolder(Folder folder) {
Adam Cohen4554ee12011-08-03 16:13:21 -07003078 folder.getInfo().opened = false;
3079
3080 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
3081 if (parent != null) {
3082 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
3083 shrinkAndFadeInFolderIcon(fi);
Sunny Goyalf4066152015-04-15 09:42:19 -07003084 if (fi != null) {
3085 ((CellLayout.LayoutParams) fi.getLayoutParams()).canReorder = true;
3086 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003087 }
3088 folder.animateClosed();
Winson Chung83ca4802013-04-12 15:10:52 -07003089
3090 // Notify the accessibility manager that this folder "window" has disappeard and no
3091 // longer occludeds the workspace items
3092 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003093 }
3094
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003095 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07003096 if (!isDraggingEnabled()) return false;
3097 if (isWorkspaceLocked()) return false;
3098 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003099
Winson Chung76648c52015-07-10 14:33:23 -07003100 if (v == mAllAppsButton) {
3101 onLongClickAllAppsButton(v);
3102 return true;
3103 }
3104
Adam Cohen1697b792013-09-17 19:08:21 -07003105 if (v instanceof Workspace) {
3106 if (!mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003107 if (!mWorkspace.isTouchActive()) {
3108 showOverviewMode(true);
Adam Cohen93c97562013-09-26 13:48:01 -07003109 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3110 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
3111 return true;
3112 } else {
3113 return false;
3114 }
Adam Cohenaa4c8c12014-06-06 11:52:52 -07003115 } else {
3116 return false;
Adam Cohen1697b792013-09-17 19:08:21 -07003117 }
Adam Cohen1697b792013-09-17 19:08:21 -07003118 }
3119
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003120 CellLayout.CellInfo longClickCellInfo = null;
3121 View itemUnderLongClick = null;
3122 if (v.getTag() instanceof ItemInfo) {
3123 ItemInfo info = (ItemInfo) v.getTag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08003124 longClickCellInfo = new CellLayout.CellInfo(v, info);
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003125 itemUnderLongClick = longClickCellInfo.cell;
3126 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003127 }
3128
Winson Chung3d503fb2011-07-13 17:25:49 -07003129 // The hotseat touch handling does not go through Workspace, and we always allow long press
3130 // on hotseat items.
Dan Sandlere26d0942014-01-13 14:30:14 -05003131 final boolean inHotseat = isHotseatLayout(v);
Sunny Goyal8e2133b2015-05-06 13:39:07 -07003132 if (!mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07003133 if (itemUnderLongClick == null) {
Adam Cohend3ecce92013-09-16 14:58:00 -07003134 // User long pressed on empty space
3135 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3136 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Adam Cohend3ecce92013-09-16 14:58:00 -07003137 if (mWorkspace.isInOverviewMode()) {
3138 mWorkspace.startReordering(v);
3139 } else {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003140 showOverviewMode(true);
Adam Cohendedbd962013-07-11 14:21:49 -07003141 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003142 } else {
Dan Sandlere26d0942014-01-13 14:30:14 -05003143 final boolean isAllAppsButton = inHotseat && isAllAppsButtonRank(
3144 mHotseat.getOrderInHotseat(
3145 longClickCellInfo.cellX,
3146 longClickCellInfo.cellY));
3147 if (!(itemUnderLongClick instanceof Folder || isAllAppsButton)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003148 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07003149 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003150 }
3151 }
3152 }
3153 return true;
3154 }
3155
Winson Chung3d503fb2011-07-13 17:25:49 -07003156 boolean isHotseatLayout(View layout) {
3157 return mHotseat != null && layout != null &&
3158 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
3159 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08003160
Winson Chung3d503fb2011-07-13 17:25:49 -07003161 /**
3162 * Returns the CellLayout of the specified container at the specified screen.
3163 */
Sunny Goyal92820592015-03-02 11:31:35 -08003164 public CellLayout getCellLayout(long container, long screenId) {
Winson Chung3d503fb2011-07-13 17:25:49 -07003165 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3166 if (mHotseat != null) {
3167 return mHotseat.getLayout();
3168 } else {
3169 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08003170 }
Winson Chung3d503fb2011-07-13 17:25:49 -07003171 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08003172 return mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08003173 }
3174 }
3175
Winson Chungb745afb2015-03-02 11:51:23 -08003176 /**
3177 * For overridden classes.
3178 */
Daniel Sandler843e8602010-06-07 14:59:01 -04003179 public boolean isAllAppsVisible() {
Winson Chungb745afb2015-03-02 11:51:23 -08003180 return isAppsViewVisible();
3181 }
3182
3183 public boolean isAppsViewVisible() {
3184 return (mState == State.APPS) || (mOnResumeState == State.APPS);
3185 }
3186
3187 public boolean isWidgetsViewVisible() {
3188 return (mState == State.WIDGETS) || (mOnResumeState == State.WIDGETS);
Joe Onoratofb0ca672009-09-14 17:55:46 -04003189 }
3190
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003191 private void setWorkspaceBackground(int background) {
3192 switch (background) {
3193 case WORKSPACE_BACKGROUND_TRANSPARENT:
3194 getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
3195 break;
3196 case WORKSPACE_BACKGROUND_BLACK:
3197 getWindow().setBackgroundDrawable(null);
3198 break;
3199 default:
3200 getWindow().setBackgroundDrawable(mWorkspaceBackgroundDrawable);
3201 }
Craig Mautner360310b2012-10-26 15:13:08 -07003202 }
3203
Selim Cinek3a8a8f72014-01-16 10:38:38 -08003204 protected void changeWallpaperVisiblity(boolean visible) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003205 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
3206 int curflags = getWindow().getAttributes().flags
3207 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
3208 if (wpflags != curflags) {
3209 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
3210 }
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003211 setWorkspaceBackground(visible ? WORKSPACE_BACKGROUND_GRADIENT : WORKSPACE_BACKGROUND_BLACK);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003212 }
3213
Michael Jurkae326f182011-11-21 14:05:46 -08003214 @Override
3215 public void onTrimMemory(int level) {
3216 super.onTrimMemory(level);
Adam Cohen3f9c9712014-10-31 11:48:25 -07003217 if (level >= ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
3218 // The widget preview db can result in holding onto over
3219 // 3MB of memory for caching which isn't necessary.
3220 SQLiteDatabase.releaseMemory();
3221
Adam Cohenc8f4e1b2014-11-19 16:03:20 -08003222 // This clears all widget bitmaps from the widget tray
Hyunyoung Song3f471442015-04-08 19:01:34 -07003223 // TODO(hyunyoungs)
Michael Jurkae326f182011-11-21 14:05:46 -08003224 }
Robert Kozikowski67c30862015-03-30 23:46:46 +01003225 if (mLauncherCallbacks != null) {
3226 mLauncherCallbacks.onTrimMemory(level);
3227 }
Michael Jurkae326f182011-11-21 14:05:46 -08003228 }
3229
Winson Chung5f4e0fd2015-05-22 11:12:27 -07003230 public void showWorkspace(boolean animated) {
Sunny Goyalce5a7e52015-07-08 15:44:27 -07003231 showWorkspace(animated, null);
Adam Cohened307df2013-10-02 09:37:31 -07003232 }
3233
Sunny Goyal83a8f042015-05-19 12:52:12 -07003234 public void showWorkspace(boolean animated, Runnable onCompleteRunnable) {
Winson Chung0f785722015-04-08 10:27:49 -07003235 boolean changed = mState != State.WORKSPACE ||
3236 mWorkspace.getState() != Workspace.State.NORMAL;
3237 if (changed) {
Michael Jurkab3e22d92011-10-31 15:58:33 -07003238 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003239 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
Winson2a87fe82015-08-07 10:37:21 -07003240 Workspace.State.NORMAL, animated, onCompleteRunnable);
Winson Chungc7d2b602012-05-16 17:02:20 -07003241
Michael Jurkab3e22d92011-10-31 15:58:33 -07003242 // Set focus to the AppsCustomize button
3243 if (mAllAppsButton != null) {
3244 mAllAppsButton.requestFocus();
3245 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003246 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07003247
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003248 // Change the state *after* we've called all the transition code
3249 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08003250
Winson Chung5fb63472011-02-02 17:03:37 -08003251 // Resume the auto-advance of widgets
3252 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08003253 updateAutoAdvanceState();
Winson Chung5fb63472011-02-02 17:03:37 -08003254
Winson Chung0f785722015-04-08 10:27:49 -07003255 if (changed) {
3256 // Send an accessibility event to announce the context change
3257 getWindow().getDecorView()
3258 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Winson Chung0f785722015-04-08 10:27:49 -07003259 }
Bjorn Bringertc459e522013-06-07 19:36:01 +01003260 }
3261
Adam Cohened307df2013-10-02 09:37:31 -07003262 void showOverviewMode(boolean animated) {
3263 mWorkspace.setVisibility(View.VISIBLE);
Winson Chung006ee262015-08-03 14:40:11 -07003264 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
Winson2a87fe82015-08-07 10:37:21 -07003265 Workspace.State.OVERVIEW, animated, null /* onCompleteRunnable */);
Adam Cohened307df2013-10-02 09:37:31 -07003266 mState = State.WORKSPACE;
Joe Onorato00acb122009-08-04 16:04:30 -04003267 }
3268
Winson Chungb745afb2015-03-02 11:51:23 -08003269 /**
3270 * Shows the apps view.
3271 */
Winson Chung76648c52015-07-10 14:33:23 -07003272 void showAppsView(boolean animated, boolean resetListToTop, boolean updatePredictedApps,
3273 boolean focusSearchBar) {
Winson Chungb745afb2015-03-02 11:51:23 -08003274 if (resetListToTop) {
3275 mAppsView.scrollToTop();
3276 }
Winson Chung4ac30062015-05-08 17:34:17 -07003277 if (updatePredictedApps) {
3278 tryAndUpdatePredictedApps();
3279 }
Winson Chung76648c52015-07-10 14:33:23 -07003280 showAppsOrWidgets(State.APPS, animated, focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003281 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003282
Winson Chungb745afb2015-03-02 11:51:23 -08003283 /**
3284 * Shows the widgets view.
3285 */
3286 void showWidgetsView(boolean animated, boolean resetPageToZero) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003287 if (LOGD) Log.d(TAG, "showWidgetsView:" + animated + " resetPageToZero:" + resetPageToZero);
Winson Chung82963d52013-10-09 11:20:57 -07003288 if (resetPageToZero) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003289 mWidgetsView.scrollToTop();
Winson Chung82963d52013-10-09 11:20:57 -07003290 }
Winson Chung76648c52015-07-10 14:33:23 -07003291 showAppsOrWidgets(State.WIDGETS, animated, false);
Hyunyoung Song3f471442015-04-08 19:01:34 -07003292
3293 mWidgetsView.post(new Runnable() {
Adam Cohendcc5e712014-06-23 15:38:55 -04003294 @Override
3295 public void run() {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003296 mWidgetsView.requestFocus();
Adam Cohendcc5e712014-06-23 15:38:55 -04003297 }
3298 });
Winson Chungb745afb2015-03-02 11:51:23 -08003299 }
3300
3301 /**
3302 * Sets up the transition to show the apps/widgets view.
Hyunyoung Songb7900832015-05-15 16:29:45 -07003303 *
3304 * @return whether the current from and to state allowed this operation
Winson Chungb745afb2015-03-02 11:51:23 -08003305 */
Hyunyoung Songb7900832015-05-15 16:29:45 -07003306 // TODO: calling method should use the return value so that when {@code false} is returned
3307 // the workspace transition doesn't fall into invalid state.
Winson Chung76648c52015-07-10 14:33:23 -07003308 private boolean showAppsOrWidgets(State toState, boolean animated, boolean focusSearchBar) {
Hyunyoung Songb7900832015-05-15 16:29:45 -07003309 if (mState != State.WORKSPACE && mState != State.APPS_SPRING_LOADED &&
3310 mState != State.WIDGETS_SPRING_LOADED) {
3311 return false;
3312 }
3313 if (toState != State.APPS && toState != State.WIDGETS) {
3314 return false;
3315 }
Winson Chungb745afb2015-03-02 11:51:23 -08003316
3317 if (toState == State.APPS) {
Winson Chung006ee262015-08-03 14:40:11 -07003318 mStateTransitionAnimation.startAnimationToAllApps(mWorkspace.getState(), animated,
3319 focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003320 } else {
Winson Chung006ee262015-08-03 14:40:11 -07003321 mStateTransitionAnimation.startAnimationToWidgets(mWorkspace.getState(), animated);
Winson Chungb745afb2015-03-02 11:51:23 -08003322 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003323
Michael Jurkab3e22d92011-10-31 15:58:33 -07003324 // Change the state *after* we've called all the transition code
Winson Chungb745afb2015-03-02 11:51:23 -08003325 mState = toState;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003326
3327 // Pause the auto-advance of widgets until we are out of AllApps
3328 mUserPresent = false;
Winson Chungb745afb2015-03-02 11:51:23 -08003329 updateAutoAdvanceState();
Michael Jurkab3e22d92011-10-31 15:58:33 -07003330 closeFolder();
3331
3332 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07003333 getWindow().getDecorView()
3334 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Hyunyoung Songb7900832015-05-15 16:29:45 -07003335 return true;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003336 }
3337
Winson Chungcd99cd32015-04-29 11:03:24 -07003338 /**
3339 * Updates the workspace and interaction state on state change, and return the animation to this
3340 * new state.
3341 */
Sunny Goyalce5a7e52015-07-08 15:44:27 -07003342 public Animator startWorkspaceStateChangeAnimation(Workspace.State toState,
Winson Chung006ee262015-08-03 14:40:11 -07003343 boolean animated, HashMap<View, Integer> layerViews) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003344 Workspace.State fromState = mWorkspace.getState();
Winson2a87fe82015-08-07 10:37:21 -07003345 Animator anim = mWorkspace.setStateWithAnimation(toState, animated, layerViews);
Winson Chungcd99cd32015-04-29 11:03:24 -07003346 updateInteraction(fromState, toState);
3347 return anim;
3348 }
3349
Jun Mukaif0033da2015-08-04 18:34:30 -07003350 public void onLauncherClingShown() {
3351 // When a launcher cling appears, it should cover the underlying layers, so their focus
3352 // should be blocked.
3353 if (mDragLayer.getDescendantFocusability() != ViewGroup.FOCUS_BLOCK_DESCENDANTS) {
3354 mDragLayer.setDescendantFocusability(ViewGroup.FOCUS_BLOCK_DESCENDANTS);
3355 }
3356 }
3357
3358 public void onLauncherClingDismissed() {
3359 mDragLayer.setDescendantFocusability(ViewGroup.FOCUS_AFTER_DESCENDANTS);
3360 }
3361
Hyunyoung Song3f471442015-04-08 19:01:34 -07003362 public void enterSpringLoadedDragMode() {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003363 if (LOGD) Log.d(TAG, String.format("enterSpringLoadedDragMode [mState=%s", mState.name()));
Winson Chungb745afb2015-03-02 11:51:23 -08003364 if (mState == State.WORKSPACE || mState == State.APPS_SPRING_LOADED ||
3365 mState == State.WIDGETS_SPRING_LOADED) {
3366 return;
Winson Chungb26f3d62011-06-02 10:49:29 -07003367 }
Winson Chungb745afb2015-03-02 11:51:23 -08003368
Winson Chung006ee262015-08-03 14:40:11 -07003369 mStateTransitionAnimation.startAnimationToWorkspace(mState, mWorkspace.getState(),
Winson2a87fe82015-08-07 10:37:21 -07003370 Workspace.State.SPRING_LOADED, true /* animated */,
Winson Chungdc61c4d2015-04-20 18:26:57 -07003371 null /* onCompleteRunnable */);
Winson Chungb745afb2015-03-02 11:51:23 -08003372 mState = isAppsViewVisible() ? State.APPS_SPRING_LOADED : State.WIDGETS_SPRING_LOADED;
Michael Jurkad3ef3062010-11-23 16:23:58 -08003373 }
Adam Cohen7777d962011-08-18 18:58:38 -07003374
Hyunyoung Song3f471442015-04-08 19:01:34 -07003375 public void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, int delay,
Adam Cohened66b2b2012-01-23 17:28:51 -08003376 final Runnable onCompleteRunnable) {
Winson Chungb745afb2015-03-02 11:51:23 -08003377 if (mState != State.APPS_SPRING_LOADED && mState != State.WIDGETS_SPRING_LOADED) return;
Winson Chung09bfc452011-09-09 11:30:20 -07003378
Winson Chunge7a03942011-08-05 15:05:12 -07003379 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07003380 @Override
3381 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003382 if (successfulDrop) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003383 // TODO(hyunyoungs): verify if this hack is still needed, if not, delete.
3384 //
Michael Jurka7bdb25a2011-08-03 15:16:44 -07003385 // Before we show workspace, hide all apps again because
3386 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
3387 // clean up our state transition functions
Hyunyoung Song3f471442015-04-08 19:01:34 -07003388 mWidgetsView.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003389 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07003390 } else {
3391 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003392 }
Winson Chung557d6ed2011-07-08 15:34:52 -07003393 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07003394 }, delay);
Winson Chung557d6ed2011-07-08 15:34:52 -07003395 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003396
Michael Jurkad3ef3062010-11-23 16:23:58 -08003397 void exitSpringLoadedDragMode() {
Winson Chungb745afb2015-03-02 11:51:23 -08003398 if (mState == State.APPS_SPRING_LOADED) {
Winson Chung4ac30062015-05-08 17:34:17 -07003399 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07003400 false /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -08003401 } else if (mState == State.WIDGETS_SPRING_LOADED) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003402 showWidgetsView(true, false);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003403 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003404 }
3405
Winson Chung4ac30062015-05-08 17:34:17 -07003406 /**
3407 * Updates the set of predicted apps if it hasn't been updated since the last time Launcher was
3408 * resumed.
3409 */
3410 private void tryAndUpdatePredictedApps() {
3411 if (mLauncherCallbacks != null) {
Winson Chung6b1c73f2015-06-18 11:38:42 -07003412 List<ComponentKey> apps = mLauncherCallbacks.getPredictedApps();
Winson Chung91c05952015-06-25 12:17:30 -07003413 if (apps != null) {
Winson Chung4ac30062015-05-08 17:34:17 -07003414 mAppsView.setPredictedApps(apps);
3415 }
3416 }
3417 }
3418
Michael Jurkab3e22d92011-10-31 15:58:33 -07003419 void lockAllApps() {
3420 // TODO
3421 }
3422
3423 void unlockAllApps() {
3424 // TODO
3425 }
3426
Sunny Goyal594d76d2014-11-06 10:12:54 -08003427 protected void disableVoiceButtonProxy(boolean disable) {
3428 // NO-OP
Winson Chungbb185bd2011-11-21 12:31:42 -08003429 }
3430
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003431 public View getOrCreateQsbBar() {
Adam Cohenc2d6e892014-10-16 09:49:24 -07003432 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
3433 return mLauncherCallbacks.getQsbBar();
Adam Cohen9211d422014-10-07 18:14:53 -07003434 }
3435
Adam Cohen24ce0b32014-01-14 16:18:14 -08003436 if (mQsb == null) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003437 AppWidgetProviderInfo searchProvider = Utilities.getSearchWidgetProvider(this);
3438 if (searchProvider == null) {
3439 return null;
3440 }
3441
3442 Bundle opts = new Bundle();
3443 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_HOST_CATEGORY,
Adam Coheneb8e2822015-02-20 16:38:48 +00003444 AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003445
3446 SharedPreferences sp = getSharedPreferences(
3447 LauncherAppState.getSharedPreferencesKey(), MODE_PRIVATE);
3448 int widgetId = sp.getInt(QSB_WIDGET_ID, -1);
Sunny Goyal416541c2014-11-14 11:59:57 -08003449 AppWidgetProviderInfo widgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003450 if (!searchProvider.provider.flattenToString().equals(
3451 sp.getString(QSB_WIDGET_PROVIDER, null))
Sunny Goyal416541c2014-11-14 11:59:57 -08003452 || (widgetInfo == null)
3453 || !widgetInfo.provider.equals(searchProvider.provider)) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003454 // A valid widget is not already bound.
3455 if (widgetId > -1) {
3456 mAppWidgetHost.deleteAppWidgetId(widgetId);
3457 widgetId = -1;
3458 }
3459
3460 // Try to bind a new widget
3461 widgetId = mAppWidgetHost.allocateAppWidgetId();
3462
3463 if (!AppWidgetManagerCompat.getInstance(this)
3464 .bindAppWidgetIdIfAllowed(widgetId, searchProvider, opts)) {
3465 mAppWidgetHost.deleteAppWidgetId(widgetId);
3466 widgetId = -1;
3467 }
3468
3469 sp.edit()
3470 .putInt(QSB_WIDGET_ID, widgetId)
3471 .putString(QSB_WIDGET_PROVIDER, searchProvider.provider.flattenToString())
3472 .commit();
3473 }
3474
Sunny Goyal8d595092015-07-06 12:22:14 -07003475 mAppWidgetHost.setQsbWidgetId(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003476 if (widgetId != -1) {
3477 mQsb = mAppWidgetHost.createView(this, widgetId, searchProvider);
3478 mQsb.updateAppWidgetOptions(opts);
3479 mQsb.setPadding(0, 0, 0, 0);
3480 mSearchDropTargetBar.addView(mQsb);
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003481 mSearchDropTargetBar.setQsbSearchBar(mQsb);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003482 }
Cristina Stancu476493b2013-08-07 17:20:14 +01003483 }
Adam Cohen24ce0b32014-01-14 16:18:14 -08003484 return mQsb;
Cristina Stancu476493b2013-08-07 17:20:14 +01003485 }
3486
Sunny Goyal22235bc2015-04-03 09:23:43 -07003487 private void reinflateQSBIfNecessary() {
3488 if (mQsb instanceof LauncherAppWidgetHostView &&
3489 ((LauncherAppWidgetHostView) mQsb).isReinflateRequired()) {
3490 mSearchDropTargetBar.removeView(mQsb);
3491 mQsb = null;
3492 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
3493 }
3494 }
3495
Michael Jurkad7c28052012-04-27 15:43:36 -07003496 @Override
3497 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07003498 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07003499 final List<CharSequence> text = event.getText();
3500 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07003501 // Populate event with a fake title based on the current state.
Winson Chungb745afb2015-03-02 11:51:23 -08003502 if (mState == State.APPS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003503 text.add(getString(R.string.all_apps_button_label));
Winson Chungb745afb2015-03-02 11:51:23 -08003504 } else if (mState == State.WIDGETS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003505 text.add(getString(R.string.widget_button_text));
Hyunyoung Song166e6482015-06-25 21:06:07 -07003506 } else if (mWorkspace != null) {
3507 text.add(mWorkspace.getCurrentPageDescription());
alanv1d4fde62012-10-17 13:15:47 -07003508 } else {
3509 text.add(getString(R.string.all_apps_home_button_label));
3510 }
Michael Jurkad7c28052012-04-27 15:43:36 -07003511 return result;
3512 }
3513
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003514 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003515 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003516 */
Adam Cohen091440a2015-03-18 14:16:05 -07003517 @Thunk class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003518 @Override
3519 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003520 closeSystemDialogs();
3521 }
3522 }
3523
3524 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07003525 * If the activity is currently paused, signal that we need to run the passed Runnable
3526 * in onResume.
3527 *
3528 * This needs to be called from incoming places where resources might have been loaded
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003529 * while the activity is paused. That is because the Configuration (e.g., rotation) might be
3530 * wrong when we're not running, and if the activity comes back to what the configuration was
3531 * when we were paused, activity is not restarted.
Michael Jurka7607c2f2013-04-03 14:33:19 -07003532 *
3533 * Implementation of the method from LauncherModel.Callbacks.
3534 *
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003535 * @return {@code true} if we are currently paused. The caller might be able to skip some work
Michael Jurka7607c2f2013-04-03 14:33:19 -07003536 */
Rahul Chaturvedi799aa042015-06-01 21:26:41 -04003537 @Thunk boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003538 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003539 if (LOGD) Log.d(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02003540 if (deletePreviousRunnables) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07003541 while (mBindOnResumeCallbacks.remove(run)) {
Michael Jurkac402cd92013-05-20 15:49:32 +02003542 }
3543 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07003544 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07003545 return true;
3546 } else {
3547 return false;
3548 }
3549 }
3550
Michael Jurkac402cd92013-05-20 15:49:32 +02003551 private boolean waitUntilResume(Runnable run) {
3552 return waitUntilResume(run, false);
3553 }
3554
Michael Jurka1e2f4652013-07-08 18:03:46 -07003555 public void addOnResumeCallback(Runnable run) {
Michael Jurka54554252013-08-01 12:52:23 +02003556 mOnResumeCallbacks.add(run);
Michael Jurka1e2f4652013-07-08 18:03:46 -07003557 }
3558
Michael Jurka7607c2f2013-04-03 14:33:19 -07003559 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003560 * If the activity is currently paused, signal that we need to re-run the loader
3561 * in onResume.
3562 *
3563 * This needs to be called from incoming places where resources might have been loaded
3564 * while we are paused. That is becaues the Configuration might be wrong
3565 * when we're not running, and if it comes back to what it was when we
3566 * were paused, we are not restarted.
3567 *
3568 * Implementation of the method from LauncherModel.Callbacks.
3569 *
3570 * @return true if we are currently paused. The caller might be able to
3571 * skip some work in that case since we will come back again.
3572 */
3573 public boolean setLoadOnResume() {
3574 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003575 if (LOGD) Log.d(TAG, "setLoadOnResume");
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003576 mOnResumeNeedsLoad = true;
3577 return true;
3578 } else {
3579 return false;
3580 }
3581 }
3582
3583 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003584 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003585 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003586 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003587 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003588 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003589 } else {
Winson Chung882a52e2015-07-08 14:32:26 -07003590 return 0;
Joe Onoratod0afc872010-06-11 00:03:15 -07003591 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003592 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003593
Joe Onorato9c1289c2009-08-17 11:03:03 -04003594 /**
3595 * Refreshes the shortcuts shown on the workspace.
3596 *
3597 * Implementation of the method from LauncherModel.Callbacks.
3598 */
3599 public void startBinding() {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07003600 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08003601
Michael Jurka7607c2f2013-04-03 14:33:19 -07003602 // If we're starting binding all over again, clear any bind calls we'd postponed in
3603 // the past (see waitUntilResume) -- we don't need them since we're starting binding
3604 // from scratch again
Michael Jurka1e2f4652013-07-08 18:03:46 -07003605 mBindOnResumeCallbacks.clear();
Adam Cohendf035382011-04-11 17:22:04 -07003606
Winson Chungd64d1762013-08-20 14:37:16 -07003607 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07003608 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07003609 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07003610
Michael Jurka05bf644e2011-11-30 20:28:53 -08003611 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003612 if (mHotseat != null) {
3613 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003614 }
3615 }
3616
Adam Cohendcd297f2013-06-18 13:13:40 -07003617 @Override
3618 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Winson Chung64359a52013-07-08 17:17:08 -07003619 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07003620
Adam Cohen5084cba2013-09-03 12:01:16 -07003621 // If there are no screens, we need to have an empty screen
3622 if (orderedScreenIds.size() == 0) {
3623 mWorkspace.addExtraEmptyScreen();
3624 }
Winson Chung0e6a7132013-08-23 12:55:10 -07003625
3626 // Create the custom content page (this call updates mDefaultScreen which calls
Dave Hawkeya8881582013-09-17 15:55:33 -06003627 // setCurrentPage() so ensure that all pages are added before calling this).
Derek Prothrodadd9842014-01-17 13:43:50 -05003628 if (hasCustomContentToLeft()) {
3629 mWorkspace.createCustomContentContainer();
3630 populateCustomContentContainer();
Winson Chung0e6a7132013-08-23 12:55:10 -07003631 }
Winson Chung64359a52013-07-08 17:17:08 -07003632 }
3633
3634 @Override
3635 public void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Adam Cohendcd297f2013-06-18 13:13:40 -07003636 int count = orderedScreenIds.size();
3637 for (int i = 0; i < count; i++) {
Adam Cohen89bddfa2013-08-20 11:57:13 -07003638 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(orderedScreenIds.get(i));
Adam Cohendcd297f2013-06-18 13:13:40 -07003639 }
Adam Cohendcd297f2013-06-18 13:13:40 -07003640 }
3641
Adam Cohen39a06042013-07-19 14:30:12 -07003642 private boolean shouldShowWeightWatcher() {
3643 String spKey = LauncherAppState.getSharedPreferencesKey();
3644 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
Daniel Sandler6053b8002013-08-15 15:44:26 -07003645 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, SHOW_WEIGHT_WATCHER_DEFAULT);
Adam Cohen39a06042013-07-19 14:30:12 -07003646
3647 return show;
3648 }
3649
3650 private void toggleShowWeightWatcher() {
3651 String spKey = LauncherAppState.getSharedPreferencesKey();
3652 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
3653 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, true);
3654
3655 show = !show;
3656
3657 SharedPreferences.Editor editor = sp.edit();
3658 editor.putBoolean(SHOW_WEIGHT_WATCHER, show);
3659 editor.commit();
3660
3661 if (mWeightWatcher != null) {
3662 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
3663 }
3664 }
3665
Winson Chungd64d1762013-08-20 14:37:16 -07003666 public void bindAppsAdded(final ArrayList<Long> newScreens,
3667 final ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -07003668 final ArrayList<ItemInfo> addAnimated,
3669 final ArrayList<AppInfo> addedApps) {
Winson Chungd64d1762013-08-20 14:37:16 -07003670 Runnable r = new Runnable() {
3671 public void run() {
Winson Chungc58497e2013-09-03 17:48:37 -07003672 bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps);
Winson Chungd64d1762013-08-20 14:37:16 -07003673 }
3674 };
3675 if (waitUntilResume(r)) {
3676 return;
3677 }
3678
Winson Chungd64d1762013-08-20 14:37:16 -07003679 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08003680 if (newScreens != null) {
3681 bindAddScreens(newScreens);
3682 }
Winson Chungd64d1762013-08-20 14:37:16 -07003683
3684 // We add the items without animation on non-visible pages, and with
3685 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08003686 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003687 bindItems(addNotAnimated, 0,
3688 addNotAnimated.size(), false);
3689 }
Adam Cohen76a47a12014-02-05 11:47:43 -08003690 if (addAnimated != null && !addAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003691 bindItems(addAnimated, 0,
3692 addAnimated.size(), true);
3693 }
Winson Chungc58497e2013-09-03 17:48:37 -07003694
Winson Chung87412982013-10-03 18:34:14 -07003695 // Remove the extra empty screen
Adam Cohen689ff162014-05-08 17:27:56 -07003696 mWorkspace.removeExtraEmptyScreen(false, false);
Winson Chung87412982013-10-03 18:34:14 -07003697
Winson Chungb745afb2015-03-02 11:51:23 -08003698 if (addedApps != null && mAppsView != null) {
3699 mAppsView.addApps(addedApps);
Winson Chungc58497e2013-09-03 17:48:37 -07003700 }
Winson Chungd64d1762013-08-20 14:37:16 -07003701 }
3702
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003703 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003704 * Bind the items start-end from the list.
3705 *
3706 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003707 */
Winson Chung64359a52013-07-08 17:17:08 -07003708 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end,
3709 final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07003710 Runnable r = new Runnable() {
3711 public void run() {
3712 bindItems(shortcuts, start, end, forceAnimateIcons);
3713 }
3714 };
3715 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003716 return;
3717 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003718
Winson Chungf0c6ae02012-03-21 16:10:31 -07003719 // Get the list of added shortcuts and intersect them with the set of shortcuts here
Winson Chung64359a52013-07-08 17:17:08 -07003720 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
3721 final Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chung997a9232013-07-24 15:33:46 -07003722 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07003723 Workspace workspace = mWorkspace;
Winson Chung997a9232013-07-24 15:33:46 -07003724 long newShortcutsScreenId = -1;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003725 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003726 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003727
3728 // Short circuit if we are loading dock items for a configuration which has no dock
3729 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3730 mHotseat == null) {
3731 continue;
3732 }
3733
Joe Onorato9c1289c2009-08-17 11:03:03 -04003734 switch (item.itemType) {
3735 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3736 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07003737 ShortcutInfo info = (ShortcutInfo) item;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003738 View shortcut = createShortcut(info);
Adam Cohendcd297f2013-06-18 13:13:40 -07003739
Winson Chung64359a52013-07-08 17:17:08 -07003740 /*
3741 * TODO: FIX collision case
3742 */
Winson Chungce376632013-07-11 16:12:41 -07003743 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
3744 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
3745 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07003746 View v = cl.getChildAt(item.cellX, item.cellY);
3747 Object tag = v.getTag();
3748 String desc = "Collision while binding workspace item: " + item
3749 + ". Collides with " + tag;
Sunny Goyal6c56c682015-07-16 14:09:05 -07003750 if (ProviderConfig.IS_DOGFOOD_BUILD) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07003751 throw (new RuntimeException(desc));
3752 } else {
3753 Log.d(TAG, desc);
3754 }
Winson Chungce376632013-07-11 16:12:41 -07003755 }
Winson Chung64359a52013-07-08 17:17:08 -07003756 }
3757
Adam Cohendcd297f2013-06-18 13:13:40 -07003758 workspace.addInScreenFromBind(shortcut, item.container, item.screenId, item.cellX,
3759 item.cellY, 1, 1);
Winson Chung997a9232013-07-24 15:33:46 -07003760 if (animateIcons) {
Winson Chung64359a52013-07-08 17:17:08 -07003761 // Animate all the applications up now
3762 shortcut.setAlpha(0f);
3763 shortcut.setScaleX(0f);
3764 shortcut.setScaleY(0f);
3765 bounceAnims.add(createNewAppBounceAnimation(shortcut, i));
Winson Chung997a9232013-07-24 15:33:46 -07003766 newShortcutsScreenId = item.screenId;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003767 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003768 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003769 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Winson Chung3d503fb2011-07-13 17:25:49 -07003770 FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003771 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003772 (FolderInfo) item, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07003773 workspace.addInScreenFromBind(newFolder, item.container, item.screenId, item.cellX,
3774 item.cellY, 1, 1);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003775 break;
Winson Chungc763c4e2013-07-19 13:49:06 -07003776 default:
3777 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04003778 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003779 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003780
Winson Chung997a9232013-07-24 15:33:46 -07003781 if (animateIcons) {
3782 // Animate to the correct page
3783 if (newShortcutsScreenId > -1) {
3784 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Winson Chung94d67682013-09-25 16:29:40 -07003785 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId);
Winson Chungb2323832013-10-03 15:22:09 -07003786 final Runnable startBounceAnimRunnable = new Runnable() {
3787 public void run() {
3788 anim.playTogether(bounceAnims);
3789 anim.start();
3790 }
3791 };
Winson Chung997a9232013-07-24 15:33:46 -07003792 if (newShortcutsScreenId != currentScreenId) {
Winson Chung94d67682013-09-25 16:29:40 -07003793 // We post the animation slightly delayed to prevent slowdowns
3794 // when we are loading right after we return to launcher.
3795 mWorkspace.postDelayed(new Runnable() {
3796 public void run() {
Ian Parkinson94449152014-01-21 13:09:59 +00003797 if (mWorkspace != null) {
3798 mWorkspace.snapToPage(newScreenIndex);
3799 mWorkspace.postDelayed(startBounceAnimRunnable,
3800 NEW_APPS_ANIMATION_DELAY);
3801 }
Winson Chung94d67682013-09-25 16:29:40 -07003802 }
3803 }, NEW_APPS_PAGE_MOVE_DELAY);
Winson Chungb2323832013-10-03 15:22:09 -07003804 } else {
3805 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07003806 }
3807 }
Winson Chung64359a52013-07-08 17:17:08 -07003808 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003809 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003810 }
3811
Joe Onorato9c1289c2009-08-17 11:03:03 -04003812 /**
3813 * Implementation of the method from LauncherModel.Callbacks.
3814 */
Sunny Goyale2df0622015-04-24 11:27:00 -07003815 public void bindFolders(final LongArrayMap<FolderInfo> folders) {
Winson Chungd64d1762013-08-20 14:37:16 -07003816 Runnable r = new Runnable() {
3817 public void run() {
3818 bindFolders(folders);
3819 }
3820 };
3821 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003822 return;
3823 }
Sunny Goyale2df0622015-04-24 11:27:00 -07003824 sFolders = folders.clone();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003825 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003826
3827 /**
3828 * Add the views for a widget to the workspace.
3829 *
3830 * Implementation of the method from LauncherModel.Callbacks.
3831 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07003832 public void bindAppWidget(final LauncherAppWidgetInfo item) {
Winson Chungd64d1762013-08-20 14:37:16 -07003833 Runnable r = new Runnable() {
3834 public void run() {
3835 bindAppWidget(item);
3836 }
3837 };
3838 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003839 return;
3840 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003841
Daniel Sandler843e8602010-06-07 14:59:01 -04003842 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
3843 if (DEBUG_WIDGETS) {
3844 Log.d(TAG, "bindAppWidget: " + item);
3845 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003846 final Workspace workspace = mWorkspace;
3847
Adam Cohen59400422014-03-05 18:07:04 -08003848 LauncherAppWidgetProviderInfo appWidgetInfo =
Robin Lee26ace122015-03-16 19:41:43 +00003849 LauncherModel.getProviderInfo(this, item.providerName, item.user);
Adam Cohen59400422014-03-05 18:07:04 -08003850
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003851 if (!mIsSafeModeEnabled
3852 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY) == 0)
3853 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_ID_NOT_VALID) != 0)) {
Sunny Goyalff572272014-07-23 13:58:07 -07003854 if (appWidgetInfo == null) {
3855 if (DEBUG_WIDGETS) {
3856 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3857 + " belongs to component " + item.providerName
3858 + ", as the povider is null");
3859 }
3860 LauncherModel.deleteItemFromDatabase(this, item);
3861 return;
3862 }
3863 // Note: This assumes that the id remap broadcast is received before this step.
3864 // If that is not the case, the id remap will be ignored and user may see the
3865 // click to setup view.
Adam Cohen2e6da152015-05-06 11:42:25 -07003866 PendingAddWidgetInfo pendingInfo = new PendingAddWidgetInfo(this, appWidgetInfo, null);
Sunny Goyalff572272014-07-23 13:58:07 -07003867 pendingInfo.spanX = item.spanX;
3868 pendingInfo.spanY = item.spanY;
3869 pendingInfo.minSpanX = item.minSpanX;
3870 pendingInfo.minSpanY = item.minSpanY;
Hyunyoung Song3f471442015-04-08 19:01:34 -07003871 Bundle options = null;
Hyunyoung Songb99ff3e2015-04-23 15:17:50 -07003872 WidgetHostViewLoader.getDefaultOptionsForWidget(this, pendingInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07003873
Sunny Goyalff572272014-07-23 13:58:07 -07003874 int newWidgetId = mAppWidgetHost.allocateAppWidgetId();
Sunny Goyalffe83f12014-08-14 17:39:34 -07003875 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
3876 newWidgetId, appWidgetInfo, options);
Sunny Goyalff572272014-07-23 13:58:07 -07003877
3878 // TODO consider showing a permission dialog when the widget is clicked.
3879 if (!success) {
3880 mAppWidgetHost.deleteAppWidgetId(newWidgetId);
3881 if (DEBUG_WIDGETS) {
3882 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3883 + " belongs to component " + item.providerName
3884 + ", as the launcher is unable to bing a new widget id");
3885 }
3886 LauncherModel.deleteItemFromDatabase(this, item);
3887 return;
3888 }
3889
3890 item.appWidgetId = newWidgetId;
3891
3892 // If the widget has a configure activity, it is still needs to set it up, otherwise
3893 // the widget is ready to go.
3894 item.restoreStatus = (appWidgetInfo.configure == null)
3895 ? LauncherAppWidgetInfo.RESTORE_COMPLETED
3896 : LauncherAppWidgetInfo.FLAG_UI_NOT_READY;
3897
3898 LauncherModel.updateItemInDatabase(this, item);
3899 }
3900
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003901 if (!mIsSafeModeEnabled && item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
Sunny Goyal651077b2014-06-30 14:15:31 -07003902 final int appWidgetId = item.appWidgetId;
Sunny Goyal651077b2014-06-30 14:15:31 -07003903 if (DEBUG_WIDGETS) {
Adam Cohen59400422014-03-05 18:07:04 -08003904 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component "
3905 + appWidgetInfo.provider);
Sunny Goyal651077b2014-06-30 14:15:31 -07003906 }
Daniel Sandler843e8602010-06-07 14:59:01 -04003907
Sunny Goyal651077b2014-06-30 14:15:31 -07003908 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
Sunny Goyal233ee962015-08-03 13:05:01 -07003909 item.minSpanX = appWidgetInfo.minSpanX;
3910 item.minSpanY = appWidgetInfo.minSpanY;
Sunny Goyal651077b2014-06-30 14:15:31 -07003911 } else {
3912 appWidgetInfo = null;
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003913 PendingAppWidgetHostView view = new PendingAppWidgetHostView(this, item,
3914 mIsSafeModeEnabled);
Sunny Goyal0fc1be12014-08-11 17:05:23 -07003915 view.updateIcon(mIconCache);
3916 item.hostView = view;
Sunny Goyal651077b2014-06-30 14:15:31 -07003917 item.hostView.updateAppWidget(null);
Sunny Goyalff572272014-07-23 13:58:07 -07003918 item.hostView.setOnClickListener(this);
Sunny Goyal651077b2014-06-30 14:15:31 -07003919 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003920
Joe Onorato9c1289c2009-08-17 11:03:03 -04003921 item.hostView.setTag(item);
Winson Chung211bac32012-05-15 13:43:57 -07003922 item.onBindAppWidget(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003923
Adam Cohendcd297f2013-06-18 13:13:40 -07003924 workspace.addInScreen(item.hostView, item.container, item.screenId, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04003925 item.cellY, item.spanX, item.spanY, false);
Adam Cohen59400422014-03-05 18:07:04 -08003926 if (!item.isCustomWidget()) {
3927 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
3928 }
Adam Cohended9f8d2010-11-03 13:25:16 -07003929
Joe Onorato9c1289c2009-08-17 11:03:03 -04003930 workspace.requestLayout();
3931
Daniel Sandler843e8602010-06-07 14:59:01 -04003932 if (DEBUG_WIDGETS) {
3933 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
3934 + (SystemClock.uptimeMillis()-start) + "ms");
3935 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003936 }
3937
Sunny Goyalff572272014-07-23 13:58:07 -07003938 /**
3939 * Restores a pending widget.
3940 *
3941 * @param appWidgetId The app widget id
3942 * @param cellInfo The position on screen where to create the widget.
3943 */
3944 private void completeRestoreAppWidget(final int appWidgetId) {
3945 LauncherAppWidgetHostView view = mWorkspace.getWidgetForAppWidgetId(appWidgetId);
3946 if ((view == null) || !(view instanceof PendingAppWidgetHostView)) {
3947 Log.e(TAG, "Widget update called, when the widget no longer exists.");
3948 return;
3949 }
3950
Sunny Goyal0fc1be12014-08-11 17:05:23 -07003951 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) view.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07003952 info.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
3953
3954 mWorkspace.reinflateWidgetsIfNecessary();
3955 LauncherModel.updateItemInDatabase(this, info);
3956 }
3957
Adam Cohen1462de32012-07-24 22:34:36 -07003958 public void onPageBoundSynchronously(int page) {
3959 mSynchronouslyBoundPages.add(page);
3960 }
3961
Joe Onorato9c1289c2009-08-17 11:03:03 -04003962 /**
3963 * Callback saying that there aren't any more items to bind.
3964 *
3965 * Implementation of the method from LauncherModel.Callbacks.
3966 */
Sunny Goyal66cfdc22015-02-02 13:01:51 -08003967 public void finishBindingItems() {
Winson Chungd64d1762013-08-20 14:37:16 -07003968 Runnable r = new Runnable() {
3969 public void run() {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08003970 finishBindingItems();
Winson Chungd64d1762013-08-20 14:37:16 -07003971 }
3972 };
3973 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003974 return;
3975 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003976 if (mSavedState != null) {
3977 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07003978 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003979 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003980 mSavedState = null;
3981 }
3982
Adam Cohen1462de32012-07-24 22:34:36 -07003983 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04003984
Anjali Koppalff7ceff2014-05-01 18:26:37 -07003985 setWorkspaceLoading(false);
Adam Cohen3ed316a2014-07-23 18:21:20 -07003986 sendLoadingCompleteBroadcastIfNecessary();
Adam Cohendb364c32014-05-20 14:23:40 -07003987
3988 // If we received the result of any pending adds while the loader was running (e.g. the
3989 // widget configuration forced an orientation change), process them now.
3990 if (sPendingAddItem != null) {
3991 final long screenId = completeAdd(sPendingAddItem);
3992
3993 // TODO: this moves the user to the page where the pending item was added. Ideally,
3994 // the screen would be guaranteed to exist after bind, and the page would be set through
3995 // the workspace restore process.
3996 mWorkspace.post(new Runnable() {
3997 @Override
3998 public void run() {
3999 mWorkspace.snapToScreenId(screenId);
4000 }
4001 });
4002 sPendingAddItem = null;
4003 }
4004
Sunny Goyal756adbc2015-04-16 15:20:51 -07004005 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
Adam Cohen9211d422014-10-07 18:14:53 -07004006
4007 if (mLauncherCallbacks != null) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004008 mLauncherCallbacks.finishBindingItems(false);
Adam Cohen9211d422014-10-07 18:14:53 -07004009 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004010 }
4011
Adam Cohen3ed316a2014-07-23 18:21:20 -07004012 private void sendLoadingCompleteBroadcastIfNecessary() {
4013 if (!mSharedPrefs.getBoolean(FIRST_LOAD_COMPLETE, false)) {
4014 String permission =
4015 getResources().getString(R.string.receive_first_load_broadcast_permission);
4016 Intent intent = new Intent(ACTION_FIRST_LOAD_COMPLETE);
4017 sendBroadcast(intent, permission);
4018 SharedPreferences.Editor editor = mSharedPrefs.edit();
4019 editor.putBoolean(FIRST_LOAD_COMPLETE, true);
4020 editor.apply();
4021 }
4022 }
4023
Winson Chunga0b7e862013-09-05 16:03:15 -07004024 public boolean isAllAppsButtonRank(int rank) {
4025 if (mHotseat != null) {
4026 return mHotseat.isAllAppsButtonRank(rank);
4027 }
4028 return false;
4029 }
4030
Winson Chunga2413752012-04-03 14:22:34 -07004031 private boolean canRunNewAppsAnimation() {
4032 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
4033 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000);
4034 }
4035
Winson Chungc9168342013-06-26 14:54:55 -07004036 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
Sunny Goyal5d2fc322015-07-06 22:52:49 -07004037 ValueAnimator bounceAnim = LauncherAnimUtils.ofViewAlphaAndScale(v, 1, 1, 1);
Winson Chungc9168342013-06-26 14:54:55 -07004038 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
4039 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
Sunny Goyal5a1f53b2015-05-27 10:24:24 -07004040 bounceAnim.setInterpolator(new OvershootInterpolator(BOUNCE_ANIMATION_TENSION));
Winson Chungc9168342013-06-26 14:54:55 -07004041 return bounceAnim;
4042 }
4043
Adam Cohen27772732013-11-11 14:00:56 +00004044 public boolean useVerticalBarLayout() {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07004045 return mDeviceProfile.isVerticalBarLayout();
Adam Cohen27772732013-11-11 14:00:56 +00004046 }
4047
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004048 protected Rect getSearchBarBounds() {
Sunny Goyalc6205602015-05-21 20:46:33 -07004049 return mDeviceProfile.getSearchBarBounds(Utilities.isRtl(getResources()));
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004050 }
4051
Winson Chung88fa7412015-08-03 14:25:28 -07004052 public void bindSearchProviderChanged() {
Sunny Goyal594d76d2014-11-06 10:12:54 -08004053 if (mSearchDropTargetBar == null) {
4054 return;
Winson Chungadf0c182012-08-23 14:59:07 -07004055 }
Sunny Goyal594d76d2014-11-06 10:12:54 -08004056 if (mQsb != null) {
4057 mSearchDropTargetBar.removeView(mQsb);
4058 mQsb = null;
4059 }
Adam Cohenb0df1b02015-03-18 22:21:40 -07004060 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004061 }
4062
Amith Yamasani6d7fe502010-11-16 09:05:07 -08004063 /**
Winson Chungbb785c62015-05-05 10:05:08 -07004064 * A runnable that we can dequeue and re-enqueue when all applications are bound (to prevent
4065 * multiple calls to bind the same list.)
4066 */
4067 @Thunk ArrayList<AppInfo> mTmpAppsList;
4068 private Runnable mBindAllApplicationsRunnable = new Runnable() {
4069 public void run() {
4070 bindAllApplications(mTmpAppsList);
4071 mTmpAppsList = null;
4072 }
4073 };
4074
4075 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004076 * Add the icons for all apps.
4077 *
4078 * Implementation of the method from LauncherModel.Callbacks.
4079 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004080 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Winson Chungbb785c62015-05-05 10:05:08 -07004081 if (waitUntilResume(mBindAllApplicationsRunnable, true)) {
4082 mTmpAppsList = apps;
4083 return;
4084 }
4085
Winson Chungb745afb2015-03-02 11:51:23 -08004086 if (mAppsView != null) {
4087 mAppsView.setApps(apps);
4088 }
Adam Cohen9211d422014-10-07 18:14:53 -07004089 if (mLauncherCallbacks != null) {
4090 mLauncherCallbacks.bindAllApplications(apps);
4091 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004092 }
4093
4094 /**
4095 * A package was updated.
4096 *
4097 * Implementation of the method from LauncherModel.Callbacks.
4098 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004099 public void bindAppsUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004100 Runnable r = new Runnable() {
4101 public void run() {
4102 bindAppsUpdated(apps);
4103 }
4104 };
4105 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004106 return;
4107 }
4108
Winson Chungb745afb2015-03-02 11:51:23 -08004109 if (mAppsView != null) {
4110 mAppsView.updateApps(apps);
Winson Chungc58497e2013-09-03 17:48:37 -07004111 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004112 }
4113
Sunny Goyal4390ace2014-10-13 11:33:11 -07004114 @Override
4115 public void bindWidgetsRestored(final ArrayList<LauncherAppWidgetInfo> widgets) {
4116 Runnable r = new Runnable() {
4117 public void run() {
4118 bindWidgetsRestored(widgets);
4119 }
4120 };
4121 if (waitUntilResume(r)) {
4122 return;
4123 }
4124 mWorkspace.widgetsRestored(widgets);
4125 }
4126
Joe Onorato9c1289c2009-08-17 11:03:03 -04004127 /**
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004128 * Some shortcuts were updated in the background.
4129 *
4130 * Implementation of the method from LauncherModel.Callbacks.
4131 */
Sunny Goyal4390ace2014-10-13 11:33:11 -07004132 @Override
4133 public void bindShortcutsChanged(final ArrayList<ShortcutInfo> updated,
4134 final ArrayList<ShortcutInfo> removed, final UserHandleCompat user) {
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004135 Runnable r = new Runnable() {
4136 public void run() {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004137 bindShortcutsChanged(updated, removed, user);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004138 }
4139 };
4140 if (waitUntilResume(r)) {
4141 return;
4142 }
4143
Sunny Goyal4390ace2014-10-13 11:33:11 -07004144 if (!updated.isEmpty()) {
4145 mWorkspace.updateShortcuts(updated);
4146 }
4147
4148 if (!removed.isEmpty()) {
4149 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4150 for (ShortcutInfo si : removed) {
4151 removedComponents.add(si.getTargetComponent());
4152 }
4153 mWorkspace.removeItemsByComponentName(removedComponents, user);
4154 // Notify the drag controller
4155 mDragController.onAppsRemoved(new ArrayList<String>(), removedComponents);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004156 }
4157 }
4158
4159 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004160 * Update the state of a package, typically related to install state.
4161 *
4162 * Implementation of the method from LauncherModel.Callbacks.
4163 */
Sunny Goyale755d462014-07-22 13:48:29 -07004164 @Override
Sunny Goyal756adbc2015-04-16 15:20:51 -07004165 public void bindRestoreItemsChange(final HashSet<ItemInfo> updates) {
4166 Runnable r = new Runnable() {
4167 public void run() {
4168 bindRestoreItemsChange(updates);
4169 }
4170 };
4171 if (waitUntilResume(r)) {
4172 return;
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004173 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004174
Sunny Goyal756adbc2015-04-16 15:20:51 -07004175 mWorkspace.updateRestoreItems(updates);
Sunny Goyala22666f2014-09-18 13:25:15 -07004176 }
4177
4178 /**
Winson Chung83892cc2013-05-01 16:53:33 -07004179 * A package was uninstalled. We take both the super set of packageNames
4180 * in addition to specific applications to remove, the reason being that
4181 * this can be called when a package is updated as well. In that scenario,
4182 * we only remove specific components from the workspace, where as
4183 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004184 *
Sunny Goyal1a745e82014-10-02 15:58:31 -07004185 * @param reason if non-zero, the icons are not permanently removed, rather marked as disabled.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004186 * Implementation of the method from LauncherModel.Callbacks.
4187 */
Sunny Goyal1a745e82014-10-02 15:58:31 -07004188 @Override
Winson Chung83892cc2013-05-01 16:53:33 -07004189 public void bindComponentsRemoved(final ArrayList<String> packageNames,
Sunny Goyal1a745e82014-10-02 15:58:31 -07004190 final ArrayList<AppInfo> appInfos, final UserHandleCompat user, final int reason) {
Winson Chungd64d1762013-08-20 14:37:16 -07004191 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004192 public void run() {
Sunny Goyal1a745e82014-10-02 15:58:31 -07004193 bindComponentsRemoved(packageNames, appInfos, user, reason);
Winson Chung83892cc2013-05-01 16:53:33 -07004194 }
Winson Chungd64d1762013-08-20 14:37:16 -07004195 };
4196 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07004197 return;
4198 }
4199
Sunny Goyal1a745e82014-10-02 15:58:31 -07004200 if (reason == 0) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004201 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4202 for (AppInfo info : appInfos) {
4203 removedComponents.add(info.componentName);
4204 }
Sunny Goyal1a745e82014-10-02 15:58:31 -07004205 if (!packageNames.isEmpty()) {
4206 mWorkspace.removeItemsByPackageName(packageNames, user);
4207 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004208 if (!removedComponents.isEmpty()) {
4209 mWorkspace.removeItemsByComponentName(removedComponents, user);
Sunny Goyal1a745e82014-10-02 15:58:31 -07004210 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004211 // Notify the drag controller
4212 mDragController.onAppsRemoved(packageNames, removedComponents);
4213
Sunny Goyal1a745e82014-10-02 15:58:31 -07004214 } else {
4215 mWorkspace.disableShortcutsByPackageName(packageNames, user, reason);
Joe Onorato36115782010-06-17 13:28:48 -04004216 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07004217
Winson Chungdf95eb12013-10-16 14:57:07 -07004218 // Update AllApps
Winson Chungb745afb2015-03-02 11:51:23 -08004219 if (mAppsView != null) {
4220 mAppsView.removeApps(appInfos);
Winson Chungc58497e2013-09-03 17:48:37 -07004221 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004222 }
Joe Onoratobe386092009-11-17 17:32:16 -08004223
Michael Jurkac402cd92013-05-20 15:49:32 +02004224 private Runnable mBindPackagesUpdatedRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004225 public void run() {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004226 bindAllPackages(mWidgetsModel);
Winson Chung83892cc2013-05-01 16:53:33 -07004227 }
Michael Jurkac402cd92013-05-20 15:49:32 +02004228 };
Hyunyoung Song3f471442015-04-08 19:01:34 -07004229
Hyunyoung Song8821ca92015-05-04 16:28:20 -07004230 @Override
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004231 public void bindAllPackages(final WidgetsModel model) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004232 if (waitUntilResume(mBindPackagesUpdatedRunnable, true)) {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004233 mWidgetsModel = model;
Winson Chung83892cc2013-05-01 16:53:33 -07004234 return;
4235 }
4236
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004237 if (mWidgetsView != null && model != null) {
4238 mWidgetsView.addWidgets(model);
4239 mWidgetsModel = null;
Winson Chung785d2eb2011-04-14 16:08:02 -07004240 }
Winson Chung80baf5a2010-08-09 16:03:15 -07004241 }
4242
Winson Chung400438b2011-01-16 17:53:48 -08004243 private int mapConfigurationOriActivityInfoOri(int configOri) {
4244 final Display d = getWindowManager().getDefaultDisplay();
4245 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
4246 switch (d.getRotation()) {
4247 case Surface.ROTATION_0:
4248 case Surface.ROTATION_180:
4249 // We are currently in the same basic orientation as the natural orientation
4250 naturalOri = configOri;
4251 break;
4252 case Surface.ROTATION_90:
4253 case Surface.ROTATION_270:
4254 // We are currently in the other basic orientation to the natural orientation
4255 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
4256 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
4257 break;
4258 }
4259
4260 int[] oriMap = {
4261 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
4262 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
4263 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
4264 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
4265 };
4266 // Since the map starts at portrait, we need to offset if this device's natural orientation
4267 // is landscape.
4268 int indexOffset = 0;
4269 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
4270 indexOffset = 1;
4271 }
4272 return oriMap[(d.getRotation() + indexOffset) % 4];
4273 }
Adam Cohen446e9402011-09-15 18:21:21 -07004274
Winson Chung4b919f82012-05-01 10:44:08 -07004275 public void lockScreenOrientation() {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004276 if (mRotationEnabled) {
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004277 if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN_MR2) {
4278 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
4279 .getConfiguration().orientation));
4280 } else {
4281 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LOCKED);
4282 }
Winson Chung4b919f82012-05-01 10:44:08 -07004283 }
4284 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004285
Winson Chung4b919f82012-05-01 10:44:08 -07004286 public void unlockScreenOrientation(boolean immediate) {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004287 if (mRotationEnabled) {
Winson Chung4b919f82012-05-01 10:44:08 -07004288 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07004289 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07004290 } else {
4291 mHandler.postDelayed(new Runnable() {
4292 public void run() {
4293 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4294 }
4295 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07004296 }
Winson Chung4b919f82012-05-01 10:44:08 -07004297 }
Winson Chung400438b2011-01-16 17:53:48 -08004298 }
4299
Winson Chunge43a1e72014-01-15 10:33:02 -08004300 protected boolean isLauncherPreinstalled() {
Adam Cohen9211d422014-10-07 18:14:53 -07004301 if (mLauncherCallbacks != null) {
4302 return mLauncherCallbacks.isLauncherPreinstalled();
4303 }
Winson Chunge43a1e72014-01-15 10:33:02 -08004304 PackageManager pm = getPackageManager();
4305 try {
4306 ApplicationInfo ai = pm.getApplicationInfo(getComponentName().getPackageName(), 0);
4307 if ((ai.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
4308 return true;
4309 } else {
4310 return false;
4311 }
4312 } catch (NameNotFoundException e) {
4313 e.printStackTrace();
4314 return false;
4315 }
4316 }
4317
Adam Cohenea90f832014-05-21 15:03:34 -07004318 /**
4319 * This method indicates whether or not we should suggest default wallpaper dimensions
4320 * when our wallpaper cropper was not yet used to set a wallpaper.
4321 */
4322 protected boolean overrideWallpaperDimensions() {
Adam Cohen9211d422014-10-07 18:14:53 -07004323 if (mLauncherCallbacks != null) {
4324 return mLauncherCallbacks.overrideWallpaperDimensions();
4325 }
Adam Cohenea90f832014-05-21 15:03:34 -07004326 return true;
4327 }
4328
Adam Cohen432609a2014-03-13 17:03:22 -07004329 /**
4330 * To be overridden by subclasses to indicate that there is an activity to launch
4331 * before showing the standard launcher experience.
4332 */
4333 protected boolean hasFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004334 if (mLauncherCallbacks != null) {
4335 return mLauncherCallbacks.hasFirstRunActivity();
4336 }
Adam Cohen432609a2014-03-13 17:03:22 -07004337 return false;
4338 }
4339
4340 /**
4341 * To be overridden by subclasses to launch any first run activity
4342 */
4343 protected Intent getFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004344 if (mLauncherCallbacks != null) {
4345 return mLauncherCallbacks.getFirstRunActivity();
4346 }
Adam Cohen432609a2014-03-13 17:03:22 -07004347 return null;
4348 }
4349
Winson Chunga6945242014-01-08 14:04:34 -08004350 private boolean shouldRunFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004351 return !ActivityManager.isRunningInTestHarness() &&
4352 !mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
Winson Chunga6945242014-01-08 14:04:34 -08004353 }
4354
Adam Cohen4a9423d2014-03-28 14:22:31 -07004355 protected boolean hasRunFirstRunActivity() {
4356 return mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
4357 }
4358
Adam Cohen432609a2014-03-13 17:03:22 -07004359 public boolean showFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004360 if (shouldRunFirstRunActivity() &&
4361 hasFirstRunActivity()) {
Winson Chunga6945242014-01-08 14:04:34 -08004362 Intent firstRunIntent = getFirstRunActivity();
4363 if (firstRunIntent != null) {
4364 startActivity(firstRunIntent);
4365 markFirstRunActivityShown();
Adam Cohen432609a2014-03-13 17:03:22 -07004366 return true;
Winson Chunga6945242014-01-08 14:04:34 -08004367 }
4368 }
Adam Cohen432609a2014-03-13 17:03:22 -07004369 return false;
Winson Chunga6945242014-01-08 14:04:34 -08004370 }
4371
4372 private void markFirstRunActivityShown() {
4373 SharedPreferences.Editor editor = mSharedPrefs.edit();
4374 editor.putBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, true);
4375 editor.apply();
4376 }
4377
Adam Cohen432609a2014-03-13 17:03:22 -07004378 /**
4379 * To be overridden by subclasses to indicate that there is an in-activity full-screen intro
4380 * screen that must be displayed and dismissed.
4381 */
4382 protected boolean hasDismissableIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004383 if (mLauncherCallbacks != null) {
4384 return mLauncherCallbacks.hasDismissableIntroScreen();
4385 }
Adam Cohen432609a2014-03-13 17:03:22 -07004386 return false;
4387 }
4388
4389 /**
4390 * Full screen intro screen to be shown and dismissed before the launcher can be used.
4391 */
4392 protected View getIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004393 if (mLauncherCallbacks != null) {
4394 return mLauncherCallbacks.getIntroScreen();
4395 }
Adam Cohen432609a2014-03-13 17:03:22 -07004396 return null;
4397 }
4398
4399 /**
4400 * To be overriden by subclasses to indicate whether the in-activity intro screen has been
4401 * dismissed. This method is ignored if #hasDismissableIntroScreen returns false.
4402 */
4403 private boolean shouldShowIntroScreen() {
4404 return hasDismissableIntroScreen() &&
4405 !mSharedPrefs.getBoolean(INTRO_SCREEN_DISMISSED, false);
4406 }
4407
4408 protected void showIntroScreen() {
4409 View introScreen = getIntroScreen();
4410 changeWallpaperVisiblity(false);
4411 if (introScreen != null) {
4412 mDragLayer.showOverlayView(introScreen);
4413 }
Adam Cohenc3e12c72014-10-31 16:15:36 -07004414 if (mLauncherOverlayContainer != null) {
4415 mLauncherOverlayContainer.setVisibility(View.INVISIBLE);
4416 }
Adam Cohen432609a2014-03-13 17:03:22 -07004417 }
4418
4419 public void dismissIntroScreen() {
4420 markIntroScreenDismissed();
4421 if (showFirstRunActivity()) {
4422 // We delay hiding the intro view until the first run activity is showing. This
4423 // avoids a blip.
4424 mWorkspace.postDelayed(new Runnable() {
4425 @Override
4426 public void run() {
4427 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004428 if (mLauncherOverlayContainer != null) {
4429 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4430 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004431 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004432 }
4433 }, ACTIVITY_START_DELAY);
4434 } else {
4435 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004436 if (mLauncherOverlayContainer != null) {
4437 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4438 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004439 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004440 }
4441 changeWallpaperVisiblity(true);
4442 }
4443
4444 private void markIntroScreenDismissed() {
4445 SharedPreferences.Editor editor = mSharedPrefs.edit();
4446 editor.putBoolean(INTRO_SCREEN_DISMISSED, true);
4447 editor.apply();
4448 }
4449
Adam Cohen091440a2015-03-18 14:16:05 -07004450 @Thunk void showFirstRunClings() {
Sunny Goyal88d60f12014-09-08 03:47:29 -07004451 // The two first run cling paths are mutually exclusive, if the launcher is preinstalled
4452 // on the device, then we always show the first run cling experience (or if there is no
4453 // launcher2). Otherwise, we prompt the user upon started for migration
4454 LauncherClings launcherClings = new LauncherClings(this);
4455 if (launcherClings.shouldShowFirstRunOrMigrationClings()) {
4456 if (mModel.canMigrateFromOldLauncherDb(this)) {
4457 launcherClings.showMigrationCling();
4458 } else {
Sunny Goyalaf0628f2014-09-19 10:14:48 -07004459 launcherClings.showLongPressCling(true);
Sunny Goyal88d60f12014-09-08 03:47:29 -07004460 }
4461 }
4462 }
4463
Winson Chunga6945242014-01-08 14:04:34 -08004464 void showWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004465 if (mWorkspace != null) mWorkspace.setAlpha(1f);
4466 if (mHotseat != null) mHotseat.setAlpha(1f);
4467 if (mPageIndicators != null) mPageIndicators.setAlpha(1f);
Winson Chung006ee262015-08-03 14:40:11 -07004468 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4469 SearchDropTargetBar.State.SEARCH_BAR, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004470 }
4471
4472 void hideWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004473 if (mWorkspace != null) mWorkspace.setAlpha(0f);
4474 if (mHotseat != null) mHotseat.setAlpha(0f);
4475 if (mPageIndicators != null) mPageIndicators.setAlpha(0f);
Winson Chung006ee262015-08-03 14:40:11 -07004476 if (mSearchDropTargetBar != null) mSearchDropTargetBar.animateToState(
4477 SearchDropTargetBar.State.INVISIBLE, 0);
Winson Chunga6945242014-01-08 14:04:34 -08004478 }
4479
Winson Chung5ffd51d2015-06-25 11:36:50 -07004480 // TODO: These method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004481 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Mathew Inwood72fbec12013-11-19 15:45:07 +00004482 public ItemInfo createAppDragInfo(Intent appLaunchIntent) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004483 // Called from search suggestion
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004484 UserHandleCompat user = null;
4485 if (Utilities.isLmpOrAbove()) {
4486 UserHandle userHandle = appLaunchIntent.getParcelableExtra(Intent.EXTRA_USER);
4487 if (userHandle != null) {
4488 user = UserHandleCompat.fromUser(userHandle);
4489 }
4490 }
4491 return createAppDragInfo(appLaunchIntent, user);
Winson Chung5ffd51d2015-06-25 11:36:50 -07004492 }
4493
4494 // TODO: This method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004495 public ItemInfo createAppDragInfo(Intent intent, UserHandleCompat user) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004496 if (user == null) {
4497 user = UserHandleCompat.myUserHandle();
4498 }
4499
4500 // Called from search suggestion, add the profile extra to the intent to ensure that we
4501 // can launch it correctly
Kenny Guyed131872014-04-30 03:02:21 +01004502 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004503 LauncherActivityInfoCompat activityInfo = launcherApps.resolveActivity(intent, user);
Kenny Guyed131872014-04-30 03:02:21 +01004504 if (activityInfo == null) {
Mathew Inwood72fbec12013-11-19 15:45:07 +00004505 return null;
4506 }
Winson Chung5ffd51d2015-06-25 11:36:50 -07004507 return new AppInfo(this, activityInfo, user, mIconCache);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004508 }
4509
Winson Chung5ffd51d2015-06-25 11:36:50 -07004510 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004511 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4512 Bitmap icon) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004513 return new ShortcutInfo(shortcutIntent, caption, caption, icon,
Kenny Guyed131872014-04-30 03:02:21 +01004514 UserHandleCompat.myUserHandle());
4515 }
4516
Winson Chung5ffd51d2015-06-25 11:36:50 -07004517 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004518 public void startDrag(View dragView, ItemInfo dragInfo, DragSource source) {
4519 dragView.setTag(dragInfo);
Winson Chungbabb53e2014-04-14 17:12:49 -07004520 mWorkspace.onExternalDragStartedWithItem(dragView);
4521 mWorkspace.beginExternalDragShared(dragView, source);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004522 }
4523
Winson Chung5ffd51d2015-06-25 11:36:50 -07004524 protected void moveWorkspaceToDefaultScreen() {
4525 mWorkspace.moveToDefaultScreen(false);
4526 }
4527
Anjali Koppalf5d29132014-02-28 13:33:27 -08004528 @Override
4529 public void onPageSwitch(View newPage, int newPageIndex) {
Adam Cohen9211d422014-10-07 18:14:53 -07004530 if (mLauncherCallbacks != null) {
4531 mLauncherCallbacks.onPageSwitch(newPage, newPageIndex);
4532 }
Anjali Koppalf5d29132014-02-28 13:33:27 -08004533 }
4534
Winson Chung80baf5a2010-08-09 16:03:15 -07004535 /**
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004536 * Returns a FastBitmapDrawable with the icon, accurately sized.
4537 */
4538 public FastBitmapDrawable createIconDrawable(Bitmap icon) {
4539 FastBitmapDrawable d = new FastBitmapDrawable(icon);
4540 d.setFilterBitmap(true);
4541 resizeIconDrawable(d);
4542 return d;
4543 }
4544
4545 /**
4546 * Resizes an icon drawable to the correct icon size.
4547 */
4548 public void resizeIconDrawable(Drawable icon) {
4549 icon.setBounds(0, 0, mDeviceProfile.iconSizePx, mDeviceProfile.iconSizePx);
4550 }
4551
4552 /**
Joe Onoratobe386092009-11-17 17:32:16 -08004553 * Prints out out state for debugging.
4554 */
4555 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04004556 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08004557 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08004558 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
4559 Log.d(TAG, "mRestoring=" + mRestoring);
4560 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004561 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08004562 mModel.dumpState();
Hyunyoung Song3f471442015-04-08 19:01:34 -07004563 // TODO(hyunyoungs): add mWidgetsView.dumpState(); or mWidgetsModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07004564
Daniel Sandler325dc232013-06-05 22:57:57 -04004565 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08004566 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004567
4568 @Override
4569 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
4570 super.dump(prefix, fd, writer, args);
Adam Cohen4caf2982013-08-20 18:54:31 -07004571 synchronized (sDumpLogs) {
4572 writer.println(" ");
4573 writer.println("Debug logs: ");
4574 for (int i = 0; i < sDumpLogs.size(); i++) {
4575 writer.println(" " + sDumpLogs.get(i));
4576 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004577 }
Adam Cohen9211d422014-10-07 18:14:53 -07004578 if (mLauncherCallbacks != null) {
4579 mLauncherCallbacks.dump(prefix, fd, writer, args);
4580 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004581 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004582
4583 public static void dumpDebugLogsToConsole() {
Winson Chungede41292013-09-19 16:27:36 -07004584 if (DEBUG_DUMP_LOG) {
4585 synchronized (sDumpLogs) {
4586 Log.d(TAG, "");
4587 Log.d(TAG, "*********************");
4588 Log.d(TAG, "Launcher debug logs: ");
4589 for (int i = 0; i < sDumpLogs.size(); i++) {
4590 Log.d(TAG, " " + sDumpLogs.get(i));
4591 }
4592 Log.d(TAG, "*********************");
4593 Log.d(TAG, "");
Adam Cohen4caf2982013-08-20 18:54:31 -07004594 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004595 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004596 }
4597
4598 public static void addDumpLog(String tag, String log, boolean debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004599 addDumpLog(tag, log, null, debugLog);
4600 }
4601
4602 public static void addDumpLog(String tag, String log, Exception e, boolean debugLog) {
Adam Cohen4caf2982013-08-20 18:54:31 -07004603 if (debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004604 if (e != null) {
4605 Log.d(tag, log, e);
4606 } else {
4607 Log.d(tag, log);
4608 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004609 }
Winson Chungede41292013-09-19 16:27:36 -07004610 if (DEBUG_DUMP_LOG) {
4611 sDateStamp.setTime(System.currentTimeMillis());
4612 synchronized (sDumpLogs) {
Dan Sandler295ae182013-12-10 16:05:47 -05004613 sDumpLogs.add(sDateFormat.format(sDateStamp) + ": " + tag + ", " + log
4614 + (e == null ? "" : (", Exception: " + e)));
Adam Cohen4caf2982013-08-20 18:54:31 -07004615 }
Winson Chungede41292013-09-19 16:27:36 -07004616 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004617 }
4618
Adam Cohen59400422014-03-05 18:07:04 -08004619 public static CustomAppWidget getCustomAppWidget(String name) {
4620 return sCustomAppWidgets.get(name);
4621 }
4622
4623 public static HashMap<String, CustomAppWidget> getCustomAppWidgets() {
4624 return sCustomAppWidgets;
4625 }
4626
Winson Chungede41292013-09-19 16:27:36 -07004627 public void dumpLogsToLocalData() {
4628 if (DEBUG_DUMP_LOG) {
Michael Jurka43467462013-11-14 12:03:58 +01004629 new AsyncTask<Void, Void, Void>() {
4630 public Void doInBackground(Void ... args) {
Winson Chungede41292013-09-19 16:27:36 -07004631 boolean success = false;
4632 sDateStamp.setTime(sRunStart);
4633 String FILENAME = sDateStamp.getMonth() + "-"
4634 + sDateStamp.getDay() + "_"
4635 + sDateStamp.getHours() + "-"
4636 + sDateStamp.getMinutes() + "_"
4637 + sDateStamp.getSeconds() + ".txt";
4638
4639 FileOutputStream fos = null;
4640 File outFile = null;
4641 try {
4642 outFile = new File(getFilesDir(), FILENAME);
4643 outFile.createNewFile();
4644 fos = new FileOutputStream(outFile);
4645 } catch (Exception e) {
4646 e.printStackTrace();
4647 }
4648 if (fos != null) {
4649 PrintWriter writer = new PrintWriter(fos);
4650
4651 writer.println(" ");
4652 writer.println("Debug logs: ");
4653 synchronized (sDumpLogs) {
4654 for (int i = 0; i < sDumpLogs.size(); i++) {
4655 writer.println(" " + sDumpLogs.get(i));
4656 }
4657 }
4658 writer.close();
4659 }
4660 try {
4661 if (fos != null) {
4662 fos.close();
4663 success = true;
4664 }
4665 } catch (IOException e) {
4666 e.printStackTrace();
4667 }
Michael Jurka43467462013-11-14 12:03:58 +01004668 return null;
Winson Chungede41292013-09-19 16:27:36 -07004669 }
Michael Jurka43467462013-11-14 12:03:58 +01004670 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
Adam Cohen4caf2982013-08-20 18:54:31 -07004671 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004672 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004673}
Michael Jurka2763be32011-02-24 11:19:57 -08004674
Dan Sandlerd5024042014-01-09 15:01:33 -05004675interface DebugIntents {
4676 static final String DELETE_DATABASE = "com.android.launcher3.action.DELETE_DATABASE";
4677 static final String MIGRATE_DATABASE = "com.android.launcher3.action.MIGRATE_DATABASE";
Adam Cohen8b5b05b2014-01-10 21:42:39 +00004678}