blob: e27e1837ffc08f4007a962c048b50aa827121205 [file] [log] [blame]
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Daniel Sandler325dc232013-06-05 22:57:57 -040017package com.android.launcher3;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080018
Gilles Debunnedd6c9922010-10-25 11:23:41 -070019import android.animation.Animator;
Michael Jurka8edd75c2010-12-17 20:15:06 -080020import android.animation.AnimatorListenerAdapter;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070021import android.animation.AnimatorSet;
Adam Cohen2801caf2011-05-13 20:57:39 -070022import android.animation.ObjectAnimator;
23import android.animation.PropertyValuesHolder;
Gilles Debunnedd6c9922010-10-25 11:23:41 -070024import android.animation.ValueAnimator;
Sunny Goyal70660032015-05-14 00:07:08 -070025import android.annotation.SuppressLint;
Adam Cohen0b395352014-06-09 22:54:36 +000026import android.annotation.TargetApi;
Michael Jurka946ad472010-07-09 18:05:18 -070027import android.app.Activity;
Brett Chabot2a9e2282011-08-23 15:03:13 -070028import android.app.ActivityManager;
Winson Chungc7450e32012-04-17 17:34:08 -070029import android.app.ActivityOptions;
Chris Wren40c5ed32014-06-24 18:24:23 -040030import android.app.AlertDialog;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080031import android.app.SearchManager;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080032import android.appwidget.AppWidgetHostView;
Michael Jurkaaf442092010-06-10 17:01:57 -070033import android.appwidget.AppWidgetManager;
34import android.appwidget.AppWidgetProviderInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080035import android.content.ActivityNotFoundException;
Joe Onorato2ca0ae72009-11-10 13:14:13 -080036import android.content.BroadcastReceiver;
Michael Jurkae326f182011-11-21 14:05:46 -080037import android.content.ComponentCallbacks2;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040038import android.content.ComponentName;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080039import android.content.Context;
Chris Wren40c5ed32014-06-24 18:24:23 -040040import android.content.DialogInterface;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080041import android.content.Intent;
Winson Chungf0ea4d32011-06-06 14:27:16 -070042import android.content.IntentFilter;
Adam Cohen173f7112015-03-27 15:14:00 -070043import android.content.IntentSender;
Winson Chung82f55532011-08-09 14:14:23 -070044import android.content.SharedPreferences;
Winson Chungaafa03c2010-06-11 17:34:16 -070045import android.content.pm.ActivityInfo;
Winson Chunge43a1e72014-01-15 10:33:02 -080046import android.content.pm.ApplicationInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080047import android.content.pm.PackageManager;
Adam Cohen716b51e2011-06-30 12:09:54 -070048import android.content.pm.PackageManager.NameNotFoundException;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080049import android.content.res.Configuration;
Adam Cohen3f9c9712014-10-31 11:48:25 -070050import android.database.sqlite.SQLiteDatabase;
Adam Cohen268c4752012-06-06 17:47:33 -070051import android.graphics.Bitmap;
52import android.graphics.Canvas;
Sandeep Siddhartha2efc7d92014-05-16 17:21:15 -070053import android.graphics.Color;
Adam Cohen268c4752012-06-06 17:47:33 -070054import android.graphics.PorterDuff;
Michael Jurkaaf442092010-06-10 17:01:57 -070055import android.graphics.Rect;
Sunny Goyal4a6c6f32015-05-19 12:36:46 -070056import android.graphics.drawable.ColorDrawable;
Michael Jurkaaf442092010-06-10 17:01:57 -070057import android.graphics.drawable.Drawable;
Daniel Sandlerc9b18772010-04-22 14:37:59 -040058import android.net.Uri;
Brad Fitzpatrick319226a2010-09-01 13:45:16 -070059import android.os.AsyncTask;
Adam Cohen0f668f32014-09-08 19:54:17 +020060import android.os.Build;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080061import android.os.Bundle;
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +020062import android.os.Environment;
Jeff Sharkey1e2efc82009-11-06 15:17:59 -080063import android.os.Handler;
Adam Cohended9f8d2010-11-03 13:25:16 -070064import android.os.Message;
Winson Chunga2413752012-04-03 14:22:34 -070065import android.os.StrictMode;
Daniel Sandler843e8602010-06-07 14:59:01 -040066import android.os.SystemClock;
Sunny Goyala1d1bf32015-06-26 13:24:53 -070067import android.os.UserHandle;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080068import android.text.Selection;
69import android.text.SpannableStringBuilder;
Michael Jurkaa33411c2012-06-14 16:18:21 -070070import android.text.TextUtils;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080071import android.text.method.TextKeyListener;
Joe Onorato7c312c12009-08-13 21:36:53 -070072import android.util.Log;
Adam Cohen96d30a12013-07-16 18:13:21 -070073import android.view.Display;
74import android.view.Gravity;
75import android.view.HapticFeedbackConstants;
76import android.view.KeyEvent;
77import android.view.LayoutInflater;
78import android.view.Menu;
Adam Cohen96d30a12013-07-16 18:13:21 -070079import android.view.MotionEvent;
80import android.view.Surface;
81import android.view.View;
Adam Cohenf358a4b2013-07-23 16:47:31 -070082import android.view.View.OnClickListener;
Adam Cohen0cf2a7c2011-11-08 15:07:01 -080083import android.view.View.OnLongClickListener;
Adam Cohen96d30a12013-07-16 18:13:21 -070084import android.view.ViewGroup;
Adam Cohenc2d6e892014-10-16 09:49:24 -070085import android.view.ViewStub;
Adam Cohen96d30a12013-07-16 18:13:21 -070086import android.view.ViewTreeObserver;
Sunny Goyal651077b2014-06-30 14:15:31 -070087import android.view.Window;
Adam Cohen96d30a12013-07-16 18:13:21 -070088import android.view.WindowManager;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -080089import android.view.accessibility.AccessibilityEvent;
Sunny Goyal5a1f53b2015-05-27 10:24:24 -070090import android.view.animation.OvershootInterpolator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080091import android.view.inputmethod.InputMethodManager;
Adam Cohen96d30a12013-07-16 18:13:21 -070092import android.widget.Advanceable;
93import android.widget.FrameLayout;
94import android.widget.ImageView;
Chet Haasea8f996d2015-02-17 12:56:04 -080095import android.widget.TextView;
Adam Cohen96d30a12013-07-16 18:13:21 -070096import android.widget.Toast;
Sunny Goyala1d1bf32015-06-26 13:24:53 -070097
Sunny Goyal651077b2014-06-30 14:15:31 -070098import com.android.launcher3.DropTarget.DragObject;
99import com.android.launcher3.PagedView.PageSwitchListener;
Winson Chung5f4e0fd2015-05-22 11:12:27 -0700100import com.android.launcher3.allapps.AllAppsContainerView;
Sunny Goyalffe83f12014-08-14 17:39:34 -0700101import com.android.launcher3.compat.AppWidgetManagerCompat;
Kenny Guyed131872014-04-30 03:02:21 +0100102import com.android.launcher3.compat.LauncherActivityInfoCompat;
103import com.android.launcher3.compat.LauncherAppsCompat;
104import com.android.launcher3.compat.UserHandleCompat;
105import com.android.launcher3.compat.UserManagerCompat;
Sunny Goyal6c56c682015-07-16 14:09:05 -0700106import com.android.launcher3.config.ProviderConfig;
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700107import com.android.launcher3.model.WidgetsModel;
Winson Chung6b1c73f2015-06-18 11:38:42 -0700108import com.android.launcher3.util.ComponentKey;
Sunny Goyale2df0622015-04-24 11:27:00 -0700109import com.android.launcher3.util.LongArrayMap;
Adam Cohen091440a2015-03-18 14:16:05 -0700110import com.android.launcher3.util.Thunk;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700111import com.android.launcher3.widget.PendingAddWidgetInfo;
Hyunyoung Songb99ff3e2015-04-23 15:17:50 -0700112import com.android.launcher3.widget.WidgetHostViewLoader;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700113import com.android.launcher3.widget.WidgetsContainerView;
Adam Cohen6c5891a2014-07-09 23:53:15 -0700114
Adam Cohen4caf2982013-08-20 18:54:31 -0700115import java.io.File;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700116import java.io.FileDescriptor;
Adam Cohen4caf2982013-08-20 18:54:31 -0700117import java.io.FileOutputStream;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700118import java.io.IOException;
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700119import java.io.PrintWriter;
Chet Haasea8f996d2015-02-17 12:56:04 -0800120import java.lang.reflect.InvocationTargetException;
121import java.lang.reflect.Method;
Adam Cohen4caf2982013-08-20 18:54:31 -0700122import java.text.DateFormat;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700123import java.util.ArrayList;
Winson Chungf0c6ae02012-03-21 16:10:31 -0700124import java.util.Collection;
Adam Cohen4caf2982013-08-20 18:54:31 -0700125import java.util.Date;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700126import java.util.HashMap;
Sunny Goyal4390ace2014-10-13 11:33:11 -0700127import java.util.HashSet;
Michael Jurkad7c28052012-04-27 15:43:36 -0700128import java.util.List;
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000129import java.util.concurrent.atomic.AtomicInteger;
Adam Cohenc0dcf592011-06-01 15:30:43 -0700130
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800131/**
132 * Default launcher application.
133 */
Bjorn Bringertc459e522013-06-07 19:36:01 +0100134public class Launcher extends Activity
Michael Jurka0e260592010-06-30 17:07:39 -0700135 implements View.OnClickListener, OnLongClickListener, LauncherModel.Callbacks,
Winson Chungb745afb2015-03-02 11:51:23 -0800136 View.OnTouchListener, PageSwitchListener, LauncherProviderChangeListener,
137 LauncherStateTransitionAnimation.Callbacks {
Hyunyoung Song4e8fb912015-04-11 15:44:32 -0700138 static final String TAG = "Launcher";
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700139 static final boolean LOGD = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800140
Daniel Sandlerf061f822013-06-27 13:59:36 -0400141 static final boolean PROFILE_STARTUP = false;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700142 static final boolean DEBUG_WIDGETS = true;
Winson Chunga2413752012-04-03 14:22:34 -0700143 static final boolean DEBUG_STRICT_MODE = false;
Daniel Sandlerf061f822013-06-27 13:59:36 -0400144 static final boolean DEBUG_RESUME_TIME = false;
Winson Chungede41292013-09-19 16:27:36 -0700145 static final boolean DEBUG_DUMP_LOG = false;
Romain Guy6fefcf12009-06-11 13:07:43 -0700146
Dan Sandlerd5024042014-01-09 15:01:33 -0500147 static final boolean ENABLE_DEBUG_INTENTS = false; // allow DebugIntents to run
148
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800149 private static final int REQUEST_CREATE_SHORTCUT = 1;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700150 private static final int REQUEST_CREATE_APPWIDGET = 5;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700151 private static final int REQUEST_PICK_APPWIDGET = 9;
Mike Clerona0618e42009-10-22 13:55:21 -0700152 private static final int REQUEST_PICK_WALLPAPER = 10;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800153
Michael Jurka8b805b12012-04-18 14:23:14 -0700154 private static final int REQUEST_BIND_APPWIDGET = 11;
Sunny Goyalff572272014-07-23 13:58:07 -0700155 private static final int REQUEST_RECONFIGURE_APPWIDGET = 12;
Michael Jurka8b805b12012-04-18 14:23:14 -0700156
Sunny Goyal4a6c6f32015-05-19 12:36:46 -0700157 private static final int WORKSPACE_BACKGROUND_GRADIENT = 0;
158 private static final int WORKSPACE_BACKGROUND_TRANSPARENT = 1;
159 private static final int WORKSPACE_BACKGROUND_BLACK = 2;
160
Sunny Goyal5a1f53b2015-05-27 10:24:24 -0700161 private static final float BOUNCE_ANIMATION_TENSION = 1.3f;
162
Mathew Inwood876a8462013-06-14 14:12:41 +0100163 /**
164 * IntentStarter uses request codes starting with this. This must be greater than all activity
165 * request codes used internally.
166 */
167 protected static final int REQUEST_LAST = 100;
168
Michael Jurka0a457bf2012-11-19 14:05:05 -0800169 // To turn on these properties, type
170 // adb shell setprop log.tag.PROPERTY_NAME [VERBOSE | SUPPRESS]
Michael Jurka0a457bf2012-11-19 14:05:05 -0800171 static final String DUMP_STATE_PROPERTY = "launcher_dump_state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800172
Winson Chung2672ff92012-05-04 16:22:30 -0700173 // The Intent extra that defines whether to ignore the launch animation
174 static final String INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION =
Daniel Sandler325dc232013-06-05 22:57:57 -0400175 "com.android.launcher3.intent.extra.shortcut.INGORE_LAUNCH_ANIMATION";
Winson Chung2672ff92012-05-04 16:22:30 -0700176
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800177 // Type: int
178 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
Michael Jurka883f55b2010-10-21 15:47:14 -0700179 // Type: int
180 private static final String RUNTIME_STATE = "launcher.state";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800181 // Type: int
Winson Chung3d503fb2011-07-13 17:25:49 -0700182 private static final String RUNTIME_STATE_PENDING_ADD_CONTAINER = "launcher.add_container";
183 // Type: int
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800184 private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
185 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700186 private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cell_x";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800187 // Type: int
Adam Cohenfbba09b2011-07-18 21:43:05 -0700188 private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cell_y";
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700189 // Type: int
190 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_X = "launcher.add_span_x";
191 // Type: int
192 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_Y = "launcher.add_span_y";
193 // Type: parcelable
194 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_INFO = "launcher.add_widget_info";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000195 // Type: parcelable
Adam Cohen4637b5a2013-11-04 18:21:24 -0800196 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_ID = "launcher.add_widget_id";
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000197 // Type: int[]
198 private static final String RUNTIME_STATE_VIEW_IDS = "launcher.view_ids";
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800199
Adam Cohen432609a2014-03-13 17:03:22 -0700200 static final String INTRO_SCREEN_DISMISSED = "launcher.intro_screen_dismissed";
Adam Cohenb54a5982014-01-08 15:21:04 -0800201 static final String FIRST_RUN_ACTIVITY_DISPLAYED = "launcher.first_run_activity_displayed";
202
Adam Cohen3ed316a2014-07-23 18:21:20 -0700203 static final String FIRST_LOAD_COMPLETE = "launcher.first_load_complete";
204 static final String ACTION_FIRST_LOAD_COMPLETE =
205 "com.android.launcher3.action.FIRST_LOAD_COMPLETE";
206
Adam Cohen39a06042013-07-19 14:30:12 -0700207 public static final String SHOW_WEIGHT_WATCHER = "debug.show_mem";
Daniel Sandler6053b8002013-08-15 15:44:26 -0700208 public static final boolean SHOW_WEIGHT_WATCHER_DEFAULT = false;
Adam Cohen39a06042013-07-19 14:30:12 -0700209
Sunny Goyal594d76d2014-11-06 10:12:54 -0800210 private static final String QSB_WIDGET_ID = "qsb_widget_id";
211 private static final String QSB_WIDGET_PROVIDER = "qsb_widget_provider";
212
Winson Chunga6945242014-01-08 14:04:34 -0800213 public static final String USER_HAS_MIGRATED = "launcher.user_migrated_from_old_data";
214
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700215 /** The different states that Launcher can be in. */
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700216 enum State { NONE, WORKSPACE, APPS, APPS_SPRING_LOADED, WIDGETS, WIDGETS_SPRING_LOADED }
217
Adam Cohen091440a2015-03-18 14:16:05 -0700218 @Thunk State mState = State.WORKSPACE;
Adam Cohen091440a2015-03-18 14:16:05 -0700219 @Thunk LauncherStateTransitionAnimation mStateTransitionAnimation;
Patrick Dubroy6b509c12010-08-23 15:08:16 -0700220
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700221 private boolean mIsSafeModeEnabled;
222
Adam Cohenc2d6e892014-10-16 09:49:24 -0700223 LauncherOverlayCallbacks mLauncherOverlayCallbacks = new LauncherOverlayCallbacksImpl();
224 LauncherOverlay mLauncherOverlay;
Adam Cohena6d04922014-10-23 17:28:30 -0700225 InsettableFrameLayout mLauncherOverlayContainer;
Adam Cohenc2d6e892014-10-16 09:49:24 -0700226
Joe Onorato9c1289c2009-08-17 11:03:03 -0400227 static final int APPWIDGET_HOST_ID = 1024;
Adam Cohenad4e15c2013-10-17 16:21:35 -0700228 public static final int EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT = 300;
229 private static final int ON_ACTIVITY_RESULT_ANIMATION_DELAY = 500;
Adam Cohen646fdf72014-04-08 16:59:36 -0700230 private static final int ACTIVITY_START_DELAY = 1000;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800231
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000232 private HashMap<Integer, Integer> mItemIdToViewId = new HashMap<Integer, Integer>();
233 private static final AtomicInteger sNextGeneratedId = new AtomicInteger(1);
234
Winson Chunga2413752012-04-03 14:22:34 -0700235 // How long to wait before the new-shortcut animation automatically pans the workspace
Winson Chung94d67682013-09-25 16:29:40 -0700236 private static int NEW_APPS_PAGE_MOVE_DELAY = 500;
237 private static int NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS = 5;
Adam Cohen091440a2015-03-18 14:16:05 -0700238 @Thunk static int NEW_APPS_ANIMATION_DELAY = 500;
Winson Chunga2413752012-04-03 14:22:34 -0700239
Joe Onorato2ca0ae72009-11-10 13:14:13 -0800240 private final BroadcastReceiver mCloseSystemDialogsReceiver
241 = new CloseSystemDialogsIntentReceiver();
Jeff Sharkey1e2efc82009-11-06 15:17:59 -0800242
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800243 private LayoutInflater mInflater;
244
Adam Cohen091440a2015-03-18 14:16:05 -0700245 @Thunk Workspace mWorkspace;
Craig Mautner360310b2012-10-26 15:13:08 -0700246 private View mLauncherView;
Winson Chunga6945242014-01-08 14:04:34 -0800247 private View mPageIndicators;
Adam Cohen091440a2015-03-18 14:16:05 -0700248 @Thunk DragLayer mDragLayer;
Michael Jurkab737ee62011-11-15 15:57:22 -0800249 private DragController mDragController;
Adam Cohen39a06042013-07-19 14:30:12 -0700250 private View mWeightWatcher;
Romain Guycbb89e42009-06-08 15:52:54 -0700251
Sunny Goyalffe83f12014-08-14 17:39:34 -0700252 private AppWidgetManagerCompat mAppWidgetManager;
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700253 private LauncherAppWidgetHost mAppWidgetHost;
Romain Guycbb89e42009-06-08 15:52:54 -0700254
Sunny Goyalaa8ef112015-06-12 20:04:41 -0700255 @Thunk final ItemInfo mPendingAddInfo = new ItemInfo();
Adam Cohen59400422014-03-05 18:07:04 -0800256 private LauncherAppWidgetProviderInfo mPendingAddWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800257 private int mPendingAddWidgetId = -1;
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700258
Michael Jurka0280c3b2010-09-17 15:00:07 -0700259 private int[] mTmpAddItemCellCoordinates = new int[2];
260
Sunny Goyal316490e2015-06-02 09:38:28 -0700261 @Thunk Hotseat mHotseat;
Jorim Jaggid017f882014-01-14 17:08:48 -0800262 private ViewGroup mOverviewPanel;
Adam Cohenf358a4b2013-07-23 16:47:31 -0700263
Michael Jurka838a4ca2011-02-07 13:33:06 -0800264 private View mAllAppsButton;
Hyunyoung Song98ff38a2015-07-10 17:50:13 -0700265 private View mWidgetsButton;
Winson Chung3d503fb2011-07-13 17:25:49 -0700266
Winson Chungc51db6a2011-10-05 11:44:49 -0700267 private SearchDropTargetBar mSearchDropTargetBar;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700268
269 // Main container view for the all apps screen.
Winson Chung5f4e0fd2015-05-22 11:12:27 -0700270 @Thunk AllAppsContainerView mAppsView;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700271
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -0700272 // Main container view and the model for the widget tray screen.
273 @Thunk WidgetsContainerView mWidgetsView;
274 @Thunk WidgetsModel mWidgetsModel;
Hyunyoung Song3f471442015-04-08 19:01:34 -0700275
Winson Chungf0ea4d32011-06-06 14:27:16 -0700276 private boolean mAutoAdvanceRunning = false;
Sunny Goyal594d76d2014-11-06 10:12:54 -0800277 private AppWidgetHostView mQsb;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800278
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800279 private Bundle mSavedState;
Winson Chung4a2afa32012-07-19 14:53:05 -0700280 // We set the state in both onCreate and then onNewIntent in some cases, which causes both
281 // scroll issues (because the workspace may not have been measured yet) and extra work.
282 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
283 private State mOnResumeState = State.NONE;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800284
285 private SpannableStringBuilder mDefaultKeySsb = null;
286
Adam Cohen091440a2015-03-18 14:16:05 -0700287 @Thunk boolean mWorkspaceLoading = true;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400288
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800289 private boolean mPaused = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800290 private boolean mRestoring;
291 private boolean mWaitingForResult;
Joe Onoratoef2efcf2010-10-27 13:21:00 -0700292 private boolean mOnResumeNeedsLoad;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800293
Michael Jurka1e2f4652013-07-08 18:03:46 -0700294 private ArrayList<Runnable> mBindOnResumeCallbacks = new ArrayList<Runnable>();
Michael Jurka7607c2f2013-04-03 14:33:19 -0700295 private ArrayList<Runnable> mOnResumeCallbacks = new ArrayList<Runnable>();
296
Joe Onorato9c1289c2009-08-17 11:03:03 -0400297 private LauncherModel mModel;
Joe Onorato0589f0f2010-02-08 13:44:00 -0800298 private IconCache mIconCache;
Adam Cohen091440a2015-03-18 14:16:05 -0700299 @Thunk boolean mUserPresent = true;
Adam Cohend113e0c2010-11-11 10:48:05 -0800300 private boolean mVisible = false;
Adam Cohened307df2013-10-02 09:37:31 -0700301 private boolean mHasFocus = false;
Adam Cohend113e0c2010-11-11 10:48:05 -0800302 private boolean mAttached = false;
Joe Onorato9c1289c2009-08-17 11:03:03 -0400303
Sunny Goyale2df0622015-04-24 11:27:00 -0700304 private static LongArrayMap<FolderInfo> sFolders = new LongArrayMap<>();
Romain Guycbb89e42009-06-08 15:52:54 -0700305
Adam Cohen61f560d2013-09-30 15:58:20 -0700306 private View.OnTouchListener mHapticFeedbackTouchListener;
307
Adam Cohended9f8d2010-11-03 13:25:16 -0700308 // Related to the auto-advancing of widgets
309 private final int ADVANCE_MSG = 1;
310 private final int mAdvanceInterval = 20000;
311 private final int mAdvanceStagger = 250;
312 private long mAutoAdvanceSentTime;
313 private long mAutoAdvanceTimeLeft = -1;
Adam Cohen091440a2015-03-18 14:16:05 -0700314 @Thunk HashMap<View, AppWidgetProviderInfo> mWidgetsToAdvance =
Adam Cohended9f8d2010-11-03 13:25:16 -0700315 new HashMap<View, AppWidgetProviderInfo>();
316
Winson Chung400438b2011-01-16 17:53:48 -0800317 // Determines how long to wait after a rotation before restoring the screen orientation to
318 // match the sensor state.
319 private final int mRestoreScreenOrientationDelay = 500;
320
Adam Cohen091440a2015-03-18 14:16:05 -0700321 @Thunk Drawable mWorkspaceBackgroundDrawable;
Craig Mautner360310b2012-10-26 15:13:08 -0700322
Adam Cohen1462de32012-07-24 22:34:36 -0700323 private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700324 private static final boolean DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE = false;
Adam Cohen1462de32012-07-24 22:34:36 -0700325
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700326 static final ArrayList<String> sDumpLogs = new ArrayList<String>();
Adam Cohen4caf2982013-08-20 18:54:31 -0700327 static Date sDateStamp = new Date();
328 static DateFormat sDateFormat =
329 DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
330 static long sRunStart = System.currentTimeMillis();
331 static final String CORRUPTION_EMAIL_SENT_KEY = "corruptionEmailSent";
Adam Cohen16d7ffc2011-10-05 17:49:14 -0700332
Winson Chung46353de2012-02-16 14:05:10 -0800333 // We only want to get the SharedPreferences once since it does an FS stat each time we get
334 // it from the context.
335 private SharedPreferences mSharedPrefs;
336
Winson Chungf0c6ae02012-03-21 16:10:31 -0700337 // Holds the page that we need to animate to, and the icon views that we need to animate up
338 // when we scroll to that page on resume.
Adam Cohen091440a2015-03-18 14:16:05 -0700339 @Thunk ImageView mFolderIconImageView;
Adam Cohen268c4752012-06-06 17:47:33 -0700340 private Bitmap mFolderIconBitmap;
341 private Canvas mFolderIconCanvas;
342 private Rect mRectForFolderAnimation = new Rect();
Adam Cohen2801caf2011-05-13 20:57:39 -0700343
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700344 private DeviceProfile mDeviceProfile;
345
Winson Chung13eb5272015-05-11 16:30:13 -0700346 // This is set to the view that launched the activity that navigated the user away from
347 // launcher. Since there is no callback for when the activity has finished launching, enable
348 // the press state and keep this reference to reset the press state when we return to launcher.
Michael Jurkaddd62e92011-02-16 17:49:14 -0800349 private BubbleTextView mWaitingForResume;
350
Adam Cohen59400422014-03-05 18:07:04 -0800351 protected static HashMap<String, CustomAppWidget> sCustomAppWidgets =
352 new HashMap<String, CustomAppWidget>();
353
354 private static final boolean ENABLE_CUSTOM_WIDGET_TEST = false;
355 static {
356 if (ENABLE_CUSTOM_WIDGET_TEST) {
357 sCustomAppWidgets.put(DummyWidget.class.getName(), new DummyWidget());
358 }
359 }
360
Chet Haasea8f996d2015-02-17 12:56:04 -0800361 // TODO: remove this field and call method directly when Launcher3 can depend on M APIs
362 private static Method sClipRevealMethod = null;
363 static {
364 Class<?> activityOptionsClass = ActivityOptions.class;
365 try {
366 sClipRevealMethod = activityOptionsClass.getDeclaredMethod("makeClipRevealAnimation",
367 View.class, int.class, int.class, int.class, int.class);
368 } catch (Exception e) {
369 // Earlier version
370 }
371 }
372
Adam Cohen091440a2015-03-18 14:16:05 -0700373 @Thunk Runnable mBuildLayersRunnable = new Runnable() {
Michael Jurkac1f5d262011-09-30 19:32:27 -0700374 public void run() {
Michael Jurka9d906c72011-10-14 06:25:36 -0700375 if (mWorkspace != null) {
376 mWorkspace.buildPageHardwareLayers();
377 }
Michael Jurkac1f5d262011-09-30 19:32:27 -0700378 }
379 };
380
Adam Cohendb364c32014-05-20 14:23:40 -0700381 private static PendingAddArguments sPendingAddItem;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800382
Adam Cohen091440a2015-03-18 14:16:05 -0700383 @Thunk static class PendingAddArguments {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800384 int requestCode;
385 Intent intent;
Winson Chung3d503fb2011-07-13 17:25:49 -0700386 long container;
Adam Cohendcd297f2013-06-18 13:13:40 -0700387 long screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800388 int cellX;
389 int cellY;
Adam Cohendb364c32014-05-20 14:23:40 -0700390 int appWidgetId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800391 }
392
Daniel Sandlerff02d492013-08-05 02:12:05 -0400393 private Stats mStats;
Sunny Goyaldcbcc862014-08-12 15:58:36 -0700394 FocusIndicatorView mFocusHandler;
Sunny Goyal7779d622015-06-11 16:18:39 -0700395 private boolean mRotationEnabled = false;
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400396
397 @Thunk void setOrientation() {
398 if (mRotationEnabled) {
399 unlockScreenOrientation(true);
400 } else {
401 setRequestedOrientation(
402 ActivityInfo.SCREEN_ORIENTATION_NOSENSOR);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700403 }
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400404 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700405
Sunny Goyal7779d622015-06-11 16:18:39 -0700406 private Runnable mUpdateOrientationRunnable = new Runnable() {
407 public void run() {
408 setOrientation();
409 }
410 };
411
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800412 @Override
413 protected void onCreate(Bundle savedInstanceState) {
Winson Chunga2413752012-04-03 14:22:34 -0700414 if (DEBUG_STRICT_MODE) {
415 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
416 .detectDiskReads()
417 .detectDiskWrites()
418 .detectNetwork() // or .detectAll() for all detectable problems
419 .penaltyLog()
420 .build());
421 StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
422 .detectLeakedSqlLiteObjects()
423 .detectLeakedClosableObjects()
424 .penaltyLog()
425 .penaltyDeath()
426 .build());
427 }
428
Adam Cohen9211d422014-10-07 18:14:53 -0700429 if (mLauncherCallbacks != null) {
430 mLauncherCallbacks.preOnCreate();
431 }
432
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800433 super.onCreate(savedInstanceState);
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400434
Daniel Sandlere060b0b2013-06-27 21:47:55 -0400435 LauncherAppState.setApplicationContext(getApplicationContext());
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400436 LauncherAppState app = LauncherAppState.getInstance();
Winson Chung6e1c0d32013-10-25 15:24:24 -0700437
Adam Cohen2e6da152015-05-06 11:42:25 -0700438 // Load configuration-specific DeviceProfile
Sunny Goyalc6205602015-05-21 20:46:33 -0700439 mDeviceProfile = getResources().getConfiguration().orientation
440 == Configuration.ORIENTATION_LANDSCAPE ?
441 app.getInvariantDeviceProfile().landscapeProfile
442 : app.getInvariantDeviceProfile().portraitProfile;
443
Daniel Sandlercc8befa2013-06-11 14:45:48 -0400444 mSharedPrefs = getSharedPreferences(LauncherAppState.getSharedPreferencesKey(),
Winson Chungf0c6ae02012-03-21 16:10:31 -0700445 Context.MODE_PRIVATE);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700446 mIsSafeModeEnabled = getPackageManager().isSafeMode();
Joe Onorato0589f0f2010-02-08 13:44:00 -0800447 mModel = app.setLauncher(this);
448 mIconCache = app.getIconCache();
Adam Cohen2e6da152015-05-06 11:42:25 -0700449
Joe Onorato41a12d22009-10-31 18:30:00 -0400450 mDragController = new DragController(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800451 mInflater = getLayoutInflater();
Winson Chungb745afb2015-03-02 11:51:23 -0800452 mStateTransitionAnimation = new LauncherStateTransitionAnimation(this, this);
Romain Guycbb89e42009-06-08 15:52:54 -0700453
Daniel Sandlerff02d492013-08-05 02:12:05 -0400454 mStats = new Stats(this);
455
Sunny Goyalffe83f12014-08-14 17:39:34 -0700456 mAppWidgetManager = AppWidgetManagerCompat.getInstance(this);
Adam Cohen53805212013-10-01 10:39:23 -0700457
The Android Open Source Project7376fae2009-03-11 12:11:58 -0700458 mAppWidgetHost = new LauncherAppWidgetHost(this, APPWIDGET_HOST_ID);
459 mAppWidgetHost.startListening();
Romain Guycbb89e42009-06-08 15:52:54 -0700460
Winson Chungb8b2a5a2012-07-12 17:55:31 -0700461 // If we are getting an onCreate, we can actually preempt onResume and unset mPaused here,
462 // this also ensures that any synchronous binding below doesn't re-trigger another
463 // LauncherModel load.
464 mPaused = false;
465
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800466 if (PROFILE_STARTUP) {
Christian Mehlmauer0fbe7bc2010-08-02 20:27:46 +0200467 android.os.Debug.startMethodTracing(
468 Environment.getExternalStorageDirectory() + "/launcher");
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800469 }
470
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800471 setContentView(R.layout.launcher);
Michael Jurka7267fa52013-09-26 15:29:57 -0700472
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800473 setupViews();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700474 mDeviceProfile.layout(this);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800475
Joe Onorato7c312c12009-08-13 21:36:53 -0700476 lockAllApps();
Joe Onorato7404ee42009-07-31 11:54:44 -0700477
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800478 mSavedState = savedInstanceState;
479 restoreState(mSavedState);
480
481 if (PROFILE_STARTUP) {
482 android.os.Debug.stopMethodTracing();
483 }
484
485 if (!mRestoring) {
Adam Cohendb78dc82014-06-19 14:50:51 -0700486 if (DISABLE_SYNCHRONOUS_BINDING_CURRENT_PAGE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700487 // If the user leaves launcher, then we should just load items asynchronously when
488 // they return.
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700489 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Winson Chung4a2afa32012-07-19 14:53:05 -0700490 } else {
491 // We only load the page synchronously if the user rotates (or triggers a
492 // configuration change) while launcher is in the foreground
Sunny Goyal2bba4c32015-05-18 15:42:48 -0700493 mModel.startLoader(mWorkspace.getRestorePage());
Winson Chung4a2afa32012-07-19 14:53:05 -0700494 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800495 }
496
497 // For handling default keys
498 mDefaultKeySsb = new SpannableStringBuilder();
499 Selection.setSelection(mDefaultKeySsb, 0);
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800500
501 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
502 registerReceiver(mCloseSystemDialogsReceiver, filter);
Michael Jurka4ef207b2010-11-29 17:05:45 -0800503
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700504 mRotationEnabled = Utilities.isRotationAllowedForDevice(getApplicationContext());
505 // In case we are on a device with locked rotation, we should look at preferences to check
506 // if the user has specifically allowed rotation.
507 if (!mRotationEnabled) {
Rahul Chaturvedie863fed2015-06-15 14:09:42 -0400508 mRotationEnabled = Utilities.isAllowRotationPrefEnabled(getApplicationContext(), false);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -0700509 }
510
511 // On large interfaces, or on devices that a user has specifically enabled screen rotation,
512 // we want the screen to auto-rotate based on the current orientation
Rahul Chaturvedi799aa042015-06-01 21:26:41 -0400513 setOrientation();
Winson Chungaf40f202013-09-18 18:26:31 -0700514
Adam Cohen9211d422014-10-07 18:14:53 -0700515 if (mLauncherCallbacks != null) {
516 mLauncherCallbacks.onCreate(savedInstanceState);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700517 if (mLauncherCallbacks.hasLauncherOverlay()) {
518 ViewStub stub = (ViewStub) findViewById(R.id.launcher_overlay_stub);
Adam Cohena6d04922014-10-23 17:28:30 -0700519 mLauncherOverlayContainer = (InsettableFrameLayout) stub.inflate();
520 mLauncherOverlay = mLauncherCallbacks.setLauncherOverlayView(
521 mLauncherOverlayContainer, mLauncherOverlayCallbacks);
Adam Cohenc2d6e892014-10-16 09:49:24 -0700522 mWorkspace.setLauncherOverlay(mLauncherOverlay);
523 }
Adam Cohen9211d422014-10-07 18:14:53 -0700524 }
Adam Cohenc3e12c72014-10-31 16:15:36 -0700525
526 if (shouldShowIntroScreen()) {
527 showIntroScreen();
528 } else {
529 showFirstRunActivity();
530 showFirstRunClings();
531 }
Adam Cohen9211d422014-10-07 18:14:53 -0700532 }
533
Sunny Goyal7779d622015-06-11 16:18:39 -0700534 @Override
535 public void onSettingsChanged(String settings, boolean value) {
536 if (Utilities.ALLOW_ROTATION_PREFERENCE_KEY.equals(settings)) {
537 mRotationEnabled = value;
538 if (!waitUntilResume(mUpdateOrientationRunnable, true)) {
539 mUpdateOrientationRunnable.run();
540 }
541 }
542 }
543
Adam Cohen9211d422014-10-07 18:14:53 -0700544 private LauncherCallbacks mLauncherCallbacks;
545
546 public void onPostCreate(Bundle savedInstanceState) {
547 super.onPostCreate(savedInstanceState);
548 if (mLauncherCallbacks != null) {
549 mLauncherCallbacks.onPostCreate(savedInstanceState);
550 }
551 }
552
553 public boolean setLauncherCallbacks(LauncherCallbacks callbacks) {
554 mLauncherCallbacks = callbacks;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700555 mLauncherCallbacks.setLauncherSearchCallback(new Launcher.LauncherSearchCallbacks() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700556 private boolean mWorkspaceImportanceStored = false;
557 private boolean mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700558 private int mWorkspaceImportanceForAccessibility =
559 View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
560 private int mHotseatImportanceForAccessibility = View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
561
562 @Override
563 public void onSearchOverlayOpened() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700564 if (mWorkspaceImportanceStored || mHotseatImportanceStored) {
Jun Mukai8af0cd82015-05-12 12:32:12 -0700565 return;
566 }
567 // The underlying workspace and hotseat are temporarily suppressed by the search
568 // overlay. So they sholudn't be accessible.
Jun Mukaie9819e62015-06-17 10:58:59 -0700569 if (mWorkspace != null) {
570 mWorkspaceImportanceForAccessibility =
571 mWorkspace.getImportantForAccessibility();
572 mWorkspace.setImportantForAccessibility(
573 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
574 mWorkspaceImportanceStored = true;
575 }
576 if (mHotseat != null) {
577 mHotseatImportanceForAccessibility = mHotseat.getImportantForAccessibility();
578 mHotseat.setImportantForAccessibility(
579 View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS);
580 mHotseatImportanceStored = true;
581 }
Jun Mukai8af0cd82015-05-12 12:32:12 -0700582 }
583
584 @Override
585 public void onSearchOverlayClosed() {
Jun Mukaie9819e62015-06-17 10:58:59 -0700586 if (mWorkspaceImportanceStored && mWorkspace != null) {
587 mWorkspace.setImportantForAccessibility(mWorkspaceImportanceForAccessibility);
588 }
589 if (mHotseatImportanceStored && mHotseat != null) {
590 mHotseat.setImportantForAccessibility(mHotseatImportanceForAccessibility);
591 }
592 mWorkspaceImportanceStored = false;
593 mHotseatImportanceStored = false;
Jun Mukai8af0cd82015-05-12 12:32:12 -0700594 }
595 });
Adam Cohen9211d422014-10-07 18:14:53 -0700596 return true;
Adam Cohenf9426d52012-06-04 17:26:21 -0700597 }
598
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700599 @Override
Adam Cohen9211d422014-10-07 18:14:53 -0700600 public void onLauncherProviderChange() {
601 if (mLauncherCallbacks != null) {
602 mLauncherCallbacks.onLauncherProviderChange();
603 }
604 }
Anjali Koppal67e7cae2014-03-13 12:14:12 -0700605
Winson Chungef7f8742015-06-04 17:18:17 -0700606 /**
607 * Updates the bounds of all the overlays to match the new fixed bounds.
608 */
609 public void updateOverlayBounds(Rect newBounds) {
610 mAppsView.setSearchBarBounds(newBounds);
611 mWidgetsView.setSearchBarBounds(newBounds);
612 }
613
Adam Cohen9211d422014-10-07 18:14:53 -0700614 /** To be overridden by subclasses to hint to Launcher that we have custom content */
Winson Chung98ca0f72013-07-29 12:58:51 -0700615 protected boolean hasCustomContentToLeft() {
Adam Cohen9211d422014-10-07 18:14:53 -0700616 if (mLauncherCallbacks != null) {
617 return mLauncherCallbacks.hasCustomContentToLeft();
618 }
Winson Chung98ca0f72013-07-29 12:58:51 -0700619 return false;
620 }
621
Dave Hawkeya8881582013-09-17 15:55:33 -0600622 /**
Derek Prothrodadd9842014-01-17 13:43:50 -0500623 * To be overridden by subclasses to populate the custom content container and call
Dave Hawkeya8881582013-09-17 15:55:33 -0600624 * {@link #addToCustomContentPage}. This will only be invoked if
625 * {@link #hasCustomContentToLeft()} is {@code true}.
626 */
Derek Prothrodadd9842014-01-17 13:43:50 -0500627 protected void populateCustomContentContainer() {
Adam Cohen9211d422014-10-07 18:14:53 -0700628 if (mLauncherCallbacks != null) {
629 mLauncherCallbacks.populateCustomContentContainer();
630 }
Dave Hawkeya8881582013-09-17 15:55:33 -0600631 }
632
633 /**
634 * Invoked by subclasses to signal a change to the {@link #addCustomContentToLeft} value to
635 * ensure the custom content page is added or removed if necessary.
636 */
637 protected void invalidateHasCustomContentToLeft() {
Dave Hawkey3a733a72013-09-30 11:52:21 -0600638 if (mWorkspace == null || mWorkspace.getScreenOrder().isEmpty()) {
Dave Hawkeya8881582013-09-17 15:55:33 -0600639 // Not bound yet, wait for bindScreens to be called.
640 return;
641 }
642
643 if (!mWorkspace.hasCustomContent() && hasCustomContentToLeft()) {
644 // Create the custom content page and call the subclass to populate it.
Derek Prothrodadd9842014-01-17 13:43:50 -0500645 mWorkspace.createCustomContentContainer();
646 populateCustomContentContainer();
Dave Hawkeya8881582013-09-17 15:55:33 -0600647 } else if (mWorkspace.hasCustomContent() && !hasCustomContentToLeft()) {
648 mWorkspace.removeCustomContentPage();
649 }
650 }
651
Anton Hanssona2f665f2013-09-26 12:18:32 +0100652 public Stats getStats() {
653 return mStats;
654 }
655
Bjorn Bringertc459e522013-06-07 19:36:01 +0100656 public LayoutInflater getInflater() {
657 return mInflater;
658 }
659
Hyunyoung Song3f471442015-04-08 19:01:34 -0700660 public boolean isDraggingEnabled() {
Winson Chung36a62fe2012-05-06 18:04:42 -0700661 // We prevent dragging when we are loading the workspace as it is possible to pick up a view
662 // that is subsequently removed from the workspace in startBinding().
663 return !mModel.isLoadingWorkspace();
664 }
665
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800666 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000667 public static int generateViewId() {
Ian Parkinson0c2918f2014-10-06 14:24:31 +0100668 if (Build.VERSION.SDK_INT >= 17) {
669 return View.generateViewId();
670 } else {
671 // View.generateViewId() is not available. The following fallback logic is a copy
672 // of its implementation.
673 for (;;) {
674 final int result = sNextGeneratedId.get();
675 // aapt-generated IDs have the high byte nonzero; clamp to the range under that.
676 int newValue = result + 1;
677 if (newValue > 0x00FFFFFF) newValue = 1; // Roll over to 1, not 0.
678 if (sNextGeneratedId.compareAndSet(result, newValue)) {
679 return result;
680 }
Adam Cohenc76e1dd2013-11-14 11:09:14 +0000681 }
682 }
683 }
684
685 public int getViewIdForItem(ItemInfo info) {
686 // This cast is safe given the > 2B range for int.
687 int itemId = (int) info.id;
688 if (mItemIdToViewId.containsKey(itemId)) {
689 return mItemIdToViewId.get(itemId);
690 }
691 int viewId = generateViewId();
692 mItemIdToViewId.put(itemId, viewId);
693 return viewId;
694 }
695
696 /**
Winson Chung557d6ed2011-07-08 15:34:52 -0700697 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
698 * a configuration step, this allows the proper animations to run after other transitions.
699 */
Adam Cohendb364c32014-05-20 14:23:40 -0700700 private long completeAdd(PendingAddArguments args) {
Adam Cohen83079e42014-09-19 17:43:08 -0700701 long screenId = args.screenId;
702 if (args.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
703 // When the screen id represents an actual screen (as opposed to a rank) we make sure
704 // that the drop page actually exists.
705 screenId = ensurePendingDropLayoutExists(args.screenId);
706 }
Adam Cohendb364c32014-05-20 14:23:40 -0700707
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800708 switch (args.requestCode) {
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800709 case REQUEST_CREATE_SHORTCUT:
Adam Cohendb364c32014-05-20 14:23:40 -0700710 completeAddShortcut(args.intent, args.container, screenId, args.cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -0700711 args.cellY);
Winson Chungb8472bb2011-08-05 13:49:21 -0700712 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800713 case REQUEST_CREATE_APPWIDGET:
Adam Cohendb364c32014-05-20 14:23:40 -0700714 completeAddAppWidget(args.appWidgetId, args.container, screenId, null, null);
Winson Chungb8472bb2011-08-05 13:49:21 -0700715 break;
Sunny Goyalff572272014-07-23 13:58:07 -0700716 case REQUEST_RECONFIGURE_APPWIDGET:
717 completeRestoreAppWidget(args.appWidgetId);
718 break;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800719 }
Michael Jurka27614d22012-04-02 06:40:22 -0700720 // Before adding this resetAddInfo(), after a shortcut was added to a workspace screen,
721 // if you turned the screen off and then back while in All Apps, Launcher would not
722 // return to the workspace. Clearing mAddInfo.container here fixes this issue
723 resetAddInfo();
Adam Cohendb364c32014-05-20 14:23:40 -0700724 return screenId;
Patrick Dubroy002cbf42011-03-03 16:36:21 -0800725 }
726
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800727 private void handleActivityResult(
Michael Jurka8b805b12012-04-18 14:23:14 -0700728 final int requestCode, final int resultCode, final Intent data) {
Winson Chunge341d302013-08-16 14:31:00 -0700729 // Reset the startActivity waiting flag
Anjali Koppalff7ceff2014-05-01 18:26:37 -0700730 setWaitingForResult(false);
Adam Cohendb364c32014-05-20 14:23:40 -0700731 final int pendingAddWidgetId = mPendingAddWidgetId;
Adam Cohen4637b5a2013-11-04 18:21:24 -0800732 mPendingAddWidgetId = -1;
Winson Chunge341d302013-08-16 14:31:00 -0700733
Adam Cohenad4e15c2013-10-17 16:21:35 -0700734 Runnable exitSpringLoaded = new Runnable() {
735 @Override
736 public void run() {
737 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
738 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
739 }
740 };
741
Michael Jurka8b805b12012-04-18 14:23:14 -0700742 if (requestCode == REQUEST_BIND_APPWIDGET) {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700743 final int appWidgetId = data != null ?
Michael Jurka8b805b12012-04-18 14:23:14 -0700744 data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1) : -1;
745 if (resultCode == RESULT_CANCELED) {
746 completeTwoStageWidgetDrop(RESULT_CANCELED, appWidgetId);
Adam Cohen689ff162014-05-08 17:27:56 -0700747 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700748 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
Michael Jurka8b805b12012-04-18 14:23:14 -0700749 } else if (resultCode == RESULT_OK) {
Sunny Goyale6b63a32015-01-16 16:14:29 -0800750 addAppWidgetImpl(appWidgetId, mPendingAddInfo, null,
Adam Cohenad4e15c2013-10-17 16:21:35 -0700751 mPendingAddWidgetInfo, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
Michael Jurka8b805b12012-04-18 14:23:14 -0700752 }
753 return;
Michael Jurka336fd4f2013-09-12 00:05:02 +0200754 } else if (requestCode == REQUEST_PICK_WALLPAPER) {
755 if (resultCode == RESULT_OK && mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -0700756 showWorkspace(false);
Michael Jurka336fd4f2013-09-12 00:05:02 +0200757 }
758 return;
Michael Jurka8b805b12012-04-18 14:23:14 -0700759 }
Michael Jurka336fd4f2013-09-12 00:05:02 +0200760
Adam Cohened66b2b2012-01-23 17:28:51 -0800761 boolean isWidgetDrop = (requestCode == REQUEST_PICK_APPWIDGET ||
Sunny Goyal5c97f512015-05-19 16:03:28 -0700762 requestCode == REQUEST_CREATE_APPWIDGET);
Romain Guyaad5ef42009-06-10 02:48:37 -0700763
Adam Cohendb364c32014-05-20 14:23:40 -0700764 final boolean workspaceLocked = isWorkspaceLocked();
Adam Cohened66b2b2012-01-23 17:28:51 -0800765 // We have special handling for widgets
766 if (isWidgetDrop) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800767 final int appWidgetId;
768 int widgetId = data != null ? data.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, -1)
769 : -1;
770 if (widgetId < 0) {
771 appWidgetId = pendingAddWidgetId;
772 } else {
773 appWidgetId = widgetId;
774 }
775
Adam Cohenad4e15c2013-10-17 16:21:35 -0700776 final int result;
Adam Cohenf0129b12013-11-04 17:57:36 -0800777 if (appWidgetId < 0 || resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700778 Log.e(TAG, "Error: appWidgetId (EXTRA_APPWIDGET_ID) was not " +
779 "returned from the widget configuration activity.");
Adam Cohenad4e15c2013-10-17 16:21:35 -0700780 result = RESULT_CANCELED;
781 completeTwoStageWidgetDrop(result, appWidgetId);
Adam Cohendb364c32014-05-20 14:23:40 -0700782 final Runnable onComplete = new Runnable() {
Adam Cohenad4e15c2013-10-17 16:21:35 -0700783 @Override
784 public void run() {
785 exitSpringLoadedDragModeDelayed(false, 0, null);
786 }
787 };
Adam Cohendb364c32014-05-20 14:23:40 -0700788 if (workspaceLocked) {
789 // No need to remove the empty screen if we're mid-binding, as the
790 // the bind will not add the empty screen.
791 mWorkspace.postDelayed(onComplete, ON_ACTIVITY_RESULT_ANIMATION_DELAY);
792 } else {
793 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
794 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
795 }
Winson Chung5aaab772012-04-27 15:24:02 -0700796 } else {
Adam Cohendb364c32014-05-20 14:23:40 -0700797 if (!workspaceLocked) {
Adam Cohen83079e42014-09-19 17:43:08 -0700798 if (mPendingAddInfo.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
799 // When the screen id represents an actual screen (as opposed to a rank)
800 // we make sure that the drop page actually exists.
801 mPendingAddInfo.screenId =
802 ensurePendingDropLayoutExists(mPendingAddInfo.screenId);
803 }
Adam Cohendb364c32014-05-20 14:23:40 -0700804 final CellLayout dropLayout = mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
805
806 dropLayout.setDropPending(true);
807 final Runnable onComplete = new Runnable() {
808 @Override
809 public void run() {
810 completeTwoStageWidgetDrop(resultCode, appWidgetId);
811 dropLayout.setDropPending(false);
812 }
813 };
814 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete,
815 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
816 } else {
817 PendingAddArguments args = preparePendingAddArgs(requestCode, data, appWidgetId,
818 mPendingAddInfo);
819 sPendingAddItem = args;
820 }
Winson Chung5aaab772012-04-27 15:24:02 -0700821 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800822 return;
823 }
824
Sunny Goyalff572272014-07-23 13:58:07 -0700825 if (requestCode == REQUEST_RECONFIGURE_APPWIDGET) {
826 if (resultCode == RESULT_OK) {
827 // Update the widget view.
828 PendingAddArguments args = preparePendingAddArgs(requestCode, data,
829 pendingAddWidgetId, mPendingAddInfo);
830 if (workspaceLocked) {
831 sPendingAddItem = args;
832 } else {
833 completeAdd(args);
834 }
835 }
836 // Leave the widget in the pending state if the user canceled the configure.
837 return;
838 }
839
Sunny Goyalaad90582015-07-09 14:22:50 -0700840 if (requestCode == REQUEST_CREATE_SHORTCUT) {
841 // Handle custom shortcuts created using ACTION_CREATE_SHORTCUT.
842 if (resultCode == RESULT_OK && mPendingAddInfo.container != ItemInfo.NO_ID) {
843 final PendingAddArguments args = preparePendingAddArgs(requestCode, data, -1,
844 mPendingAddInfo);
845 if (isWorkspaceLocked()) {
846 sPendingAddItem = args;
847 } else {
848 completeAdd(args);
849 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
850 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
851 }
852 } else if (resultCode == RESULT_CANCELED) {
Adam Cohendb364c32014-05-20 14:23:40 -0700853 mWorkspace.removeExtraEmptyScreenDelayed(true, exitSpringLoaded,
854 ON_ACTIVITY_RESULT_ANIMATION_DELAY, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800855 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800856 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800857 mDragLayer.clearAnimatedView();
Adam Cohenc7cd2cb2014-11-17 17:45:34 -0800858
859 }
860
861 @Override
862 protected void onActivityResult(
863 final int requestCode, final int resultCode, final Intent data) {
864 handleActivityResult(requestCode, resultCode, data);
865 if (mLauncherCallbacks != null) {
866 mLauncherCallbacks.onActivityResult(requestCode, resultCode, data);
867 }
Adam Cohened66b2b2012-01-23 17:28:51 -0800868 }
869
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600870 /** @Override for MNC */
Sunny Goyaldd2e6df2015-07-07 10:57:57 -0700871 public void onRequestPermissionsResult(int requestCode, String[] permissions,
Dave Hawkey3a43ed62015-06-26 10:27:47 -0600872 int[] grantResults) {
873 if (mLauncherCallbacks != null) {
874 mLauncherCallbacks.onRequestPermissionsResult(requestCode, permissions,
875 grantResults);
876 }
877 }
878
Adam Cohendb364c32014-05-20 14:23:40 -0700879 private PendingAddArguments preparePendingAddArgs(int requestCode, Intent data, int
880 appWidgetId, ItemInfo info) {
881 PendingAddArguments args = new PendingAddArguments();
882 args.requestCode = requestCode;
883 args.intent = data;
884 args.container = info.container;
885 args.screenId = info.screenId;
886 args.cellX = info.cellX;
887 args.cellY = info.cellY;
888 args.appWidgetId = appWidgetId;
889 return args;
890 }
891
892 /**
893 * Check to see if a given screen id exists. If not, create it at the end, return the new id.
894 *
895 * @param screenId the screen id to check
896 * @return the new screen, or screenId if it exists
897 */
898 private long ensurePendingDropLayoutExists(long screenId) {
899 CellLayout dropLayout =
900 (CellLayout) mWorkspace.getScreenWithId(screenId);
901 if (dropLayout == null) {
902 // it's possible that the add screen was removed because it was
903 // empty and a re-bind occurred
904 mWorkspace.addExtraEmptyScreen();
905 return mWorkspace.commitExtraEmptyScreen();
906 } else {
907 return screenId;
908 }
909 }
910
Adam Cohen091440a2015-03-18 14:16:05 -0700911 @Thunk void completeTwoStageWidgetDrop(final int resultCode, final int appWidgetId) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700912 CellLayout cellLayout =
Adam Cohendcd297f2013-06-18 13:13:40 -0700913 (CellLayout) mWorkspace.getScreenWithId(mPendingAddInfo.screenId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800914 Runnable onCompleteRunnable = null;
915 int animationType = 0;
916
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700917 AppWidgetHostView boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -0800918 if (resultCode == RESULT_OK) {
919 animationType = Workspace.COMPLETE_TWO_STAGE_WIDGET_DROP_ANIMATION;
920 final AppWidgetHostView layout = mAppWidgetHost.createView(this, appWidgetId,
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700921 mPendingAddWidgetInfo);
922 boundWidget = layout;
Adam Cohened66b2b2012-01-23 17:28:51 -0800923 onCompleteRunnable = new Runnable() {
924 @Override
925 public void run() {
926 completeAddAppWidget(appWidgetId, mPendingAddInfo.container,
Adam Cohendcd297f2013-06-18 13:13:40 -0700927 mPendingAddInfo.screenId, layout, null);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700928 exitSpringLoadedDragModeDelayed((resultCode != RESULT_CANCELED),
929 EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT, null);
Adam Cohened66b2b2012-01-23 17:28:51 -0800930 }
931 };
932 } else if (resultCode == RESULT_CANCELED) {
Adam Cohen4637b5a2013-11-04 18:21:24 -0800933 mAppWidgetHost.deleteAppWidgetId(appWidgetId);
Adam Cohened66b2b2012-01-23 17:28:51 -0800934 animationType = Workspace.CANCEL_TWO_STAGE_WIDGET_DROP_ANIMATION;
Adam Cohened66b2b2012-01-23 17:28:51 -0800935 }
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700936 if (mDragLayer.getAnimatedView() != null) {
937 mWorkspace.animateWidgetDrop(mPendingAddInfo, cellLayout,
938 (DragView) mDragLayer.getAnimatedView(), onCompleteRunnable,
939 animationType, boundWidget, true);
Adam Cohenad4e15c2013-10-17 16:21:35 -0700940 } else if (onCompleteRunnable != null) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -0700941 // The animated view may be null in the case of a rotation during widget configuration
942 onCompleteRunnable.run();
943 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800944 }
945
946 @Override
Michael Jurkacd496d72013-04-11 11:32:45 -0700947 protected void onStop() {
948 super.onStop();
949 FirstFrameAnimatorHelper.setIsVisible(false);
Adam Cohen9211d422014-10-07 18:14:53 -0700950
951 if (mLauncherCallbacks != null) {
952 mLauncherCallbacks.onStop();
953 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700954 }
955
956 @Override
957 protected void onStart() {
958 super.onStart();
959 FirstFrameAnimatorHelper.setIsVisible(true);
Adam Cohen9211d422014-10-07 18:14:53 -0700960
961 if (mLauncherCallbacks != null) {
962 mLauncherCallbacks.onStart();
963 }
Michael Jurkacd496d72013-04-11 11:32:45 -0700964 }
965
966 @Override
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800967 protected void onResume() {
Michael Jurka447bf842013-05-15 14:52:15 +0200968 long startTime = 0;
969 if (DEBUG_RESUME_TIME) {
970 startTime = System.currentTimeMillis();
Daniel Sandler924b9932013-06-12 00:38:25 -0400971 Log.v(TAG, "Launcher.onResume()");
Michael Jurka447bf842013-05-15 14:52:15 +0200972 }
Adam Cohen9211d422014-10-07 18:14:53 -0700973
974 if (mLauncherCallbacks != null) {
975 mLauncherCallbacks.preOnResume();
976 }
977
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800978 super.onResume();
Winson Chungf0c6ae02012-03-21 16:10:31 -0700979
Winson Chung4a2afa32012-07-19 14:53:05 -0700980 // Restore the previous launcher state
Winson Chung75cc8252015-04-10 10:19:58 -0700981 if (mOnResumeState == State.WORKSPACE) {
Winson Chung4a2afa32012-07-19 14:53:05 -0700982 showWorkspace(false);
Winson Chungb745afb2015-03-02 11:51:23 -0800983 } else if (mOnResumeState == State.APPS) {
Winson Chung13eb5272015-05-11 16:30:13 -0700984 boolean launchedFromApp = (mWaitingForResume != null);
Winson Chung4ac30062015-05-08 17:34:17 -0700985 // Don't update the predicted apps if the user is returning to launcher in the apps
Winson Chung13eb5272015-05-11 16:30:13 -0700986 // view after launching an app, as they may be depending on the UI to be static to
987 // switch to another app, otherwise, if it was
Winson Chung4ac30062015-05-08 17:34:17 -0700988 showAppsView(false /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -0700989 !launchedFromApp /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -0800990 } else if (mOnResumeState == State.WIDGETS) {
991 showWidgetsView(false, false);
Winson Chung4a2afa32012-07-19 14:53:05 -0700992 }
993 mOnResumeState = State.NONE;
994
Sunny Goyal4a6c6f32015-05-19 12:36:46 -0700995 // Background was set to gradient in onPause(), restore to transparent if in all apps.
Sunny Goyald70ad0d2015-05-26 17:20:07 -0700996 setWorkspaceBackground(mState == State.WORKSPACE ? WORKSPACE_BACKGROUND_GRADIENT
997 : WORKSPACE_BACKGROUND_TRANSPARENT);
Craig Mautner360310b2012-10-26 15:13:08 -0700998
Joe Onorato34a0e1b2009-12-14 17:44:51 -0800999 mPaused = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001000 if (mRestoring || mOnResumeNeedsLoad) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001001 setWorkspaceLoading(true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001002 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001003 mRestoring = false;
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001004 mOnResumeNeedsLoad = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001005 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001006 if (mBindOnResumeCallbacks.size() > 0) {
Michael Jurkac402cd92013-05-20 15:49:32 +02001007 // We might have postponed some bind calls until onResume (see waitUntilResume) --
1008 // execute them here
1009 long startTimeCallbacks = 0;
1010 if (DEBUG_RESUME_TIME) {
1011 startTimeCallbacks = System.currentTimeMillis();
1012 }
1013
Michael Jurka1e2f4652013-07-08 18:03:46 -07001014 for (int i = 0; i < mBindOnResumeCallbacks.size(); i++) {
1015 mBindOnResumeCallbacks.get(i).run();
Michael Jurkac402cd92013-05-20 15:49:32 +02001016 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07001017 mBindOnResumeCallbacks.clear();
Michael Jurkac402cd92013-05-20 15:49:32 +02001018 if (DEBUG_RESUME_TIME) {
1019 Log.d(TAG, "Time spent processing callbacks in onResume: " +
1020 (System.currentTimeMillis() - startTimeCallbacks));
1021 }
Michael Jurka447bf842013-05-15 14:52:15 +02001022 }
Michael Jurka54554252013-08-01 12:52:23 +02001023 if (mOnResumeCallbacks.size() > 0) {
1024 for (int i = 0; i < mOnResumeCallbacks.size(); i++) {
1025 mOnResumeCallbacks.get(i).run();
1026 }
1027 mOnResumeCallbacks.clear();
1028 }
Winson Chunge4e50662012-01-23 14:45:13 -08001029
1030 // Reset the pressed state of icons that were locked in the press state while activities
1031 // were launching
Michael Jurkaddd62e92011-02-16 17:49:14 -08001032 if (mWaitingForResume != null) {
Winson Chunge4e50662012-01-23 14:45:13 -08001033 // Resets the previous workspace icon press state
Michael Jurkaddd62e92011-02-16 17:49:14 -08001034 mWaitingForResume.setStayPressed(false);
1035 }
Winson Chung82963d52013-10-09 11:20:57 -07001036
Adam Cohen06dff352012-06-01 17:17:08 -07001037 // It is possible that widgets can receive updates while launcher is not in the foreground.
1038 // Consequently, the widgets will be inflated in the orientation of the foreground activity
1039 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
1040 // orientation.
Adam Cohen3d509322012-06-06 14:10:04 -07001041 getWorkspace().reinflateWidgetsIfNecessary();
Sunny Goyal22235bc2015-04-03 09:23:43 -07001042 reinflateQSBIfNecessary();
Adam Cohenf9426d52012-06-04 17:26:21 -07001043
Michael Jurka447bf842013-05-15 14:52:15 +02001044 if (DEBUG_RESUME_TIME) {
1045 Log.d(TAG, "Time spent in onResume: " + (System.currentTimeMillis() - startTime));
1046 }
Adam Cohen6fecd412013-10-02 17:41:50 -07001047
1048 if (mWorkspace.getCustomContentCallbacks() != null) {
1049 // If we are resuming and the custom content is the current page, we call onShow().
1050 // It is also poassible that onShow will instead be called slightly after first layout
1051 // if PagedView#setRestorePage was set to the custom content page in onCreate().
1052 if (mWorkspace.isOnOrMovingToCustomContent()) {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001053 mWorkspace.getCustomContentCallbacks().onShow(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001054 }
1055 }
Winson Chungcd99cd32015-04-29 11:03:24 -07001056 updateInteraction(Workspace.State.NORMAL, mWorkspace.getState());
Adam Cohen53805212013-10-01 10:39:23 -07001057 mWorkspace.onResume();
Sunny Goyale755d462014-07-22 13:48:29 -07001058
Sunny Goyal756adbc2015-04-16 15:20:51 -07001059 if (!isWorkspaceLoading()) {
1060 // Process any items that were added while Launcher was away.
1061 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
1062 }
Adam Cohen9211d422014-10-07 18:14:53 -07001063
1064 if (mLauncherCallbacks != null) {
1065 mLauncherCallbacks.onResume();
1066 }
Adam Cohen06dff352012-06-01 17:17:08 -07001067 }
1068
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001069 @Override
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001070 protected void onPause() {
Winson Chung997a9232013-07-24 15:33:46 -07001071 // Ensure that items added to Launcher are queued until Launcher returns
1072 InstallShortcutReceiver.enableInstallQueue();
1073
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001074 super.onPause();
Joe Onoratoef2efcf2010-10-27 13:21:00 -07001075 mPaused = true;
Joe Onorato24b6fd82009-11-12 13:47:09 -08001076 mDragController.cancelDrag();
Winson Chunga2413752012-04-03 14:22:34 -07001077 mDragController.resetLastGestureUpTime();
Adam Cohen6fecd412013-10-02 17:41:50 -07001078
1079 // We call onHide() aggressively. The custom content callbacks should be able to
1080 // debounce excess onHide calls.
1081 if (mWorkspace.getCustomContentCallbacks() != null) {
1082 mWorkspace.getCustomContentCallbacks().onHide();
1083 }
Romain Guycbb89e42009-06-08 15:52:54 -07001084
Adam Cohen9211d422014-10-07 18:14:53 -07001085 if (mLauncherCallbacks != null) {
1086 mLauncherCallbacks.onPause();
Adam Cohenbffe7452013-07-22 18:21:45 -07001087 }
Adam Cohenbffe7452013-07-22 18:21:45 -07001088 }
1089
1090 public interface CustomContentCallbacks {
Selim Cinek3a8a8f72014-01-16 10:38:38 -08001091 // Custom content is completely shown. {@code fromResume} indicates whether this was caused
1092 // by a onResume or by scrolling otherwise.
1093 public void onShow(boolean fromResume);
Adam Cohenbffe7452013-07-22 18:21:45 -07001094
1095 // Custom content is completely hidden
1096 public void onHide();
Adam Cohenc36fa5c2013-08-29 11:54:42 -07001097
1098 // Custom content scroll progress changed. From 0 (not showing) to 1 (fully showing).
1099 public void onScrollProgressChanged(float progress);
Jan-Willem Maarse2ff91c42014-07-10 15:58:12 -07001100
1101 // Indicates whether the user is allowed to scroll away from the custom content.
1102 boolean isScrollingAllowed();
Adam Cohenbffe7452013-07-22 18:21:45 -07001103 }
1104
Adam Cohenc2d6e892014-10-16 09:49:24 -07001105 public interface LauncherOverlay {
1106
1107 /**
1108 * Touch interaction leading to overscroll has begun
1109 */
1110 public void onScrollInteractionBegin();
1111
1112 /**
1113 * Touch interaction related to overscroll has ended
1114 */
1115 public void onScrollInteractionEnd();
1116
1117 /**
1118 * Scroll progress, between 0 and 100, when the user scrolls beyond the leftmost
1119 * screen (or in the case of RTL, the rightmost screen).
1120 */
1121 public void onScrollChange(int progress, boolean rtl);
1122
1123 /**
1124 * Screen has stopped scrolling
1125 */
1126 public void onScrollSettled();
1127
1128 /**
1129 * This method can be called by the Launcher in order to force the LauncherOverlay
1130 * to exit fully immersive mode.
1131 */
1132 public void forceExitFullImmersion();
1133 }
1134
Jun Mukai8af0cd82015-05-12 12:32:12 -07001135 public interface LauncherSearchCallbacks {
1136 /**
1137 * Called when the search overlay is shown.
1138 */
1139 public void onSearchOverlayOpened();
1140
1141 /**
1142 * Called when the search overlay is dismissed.
1143 */
1144 public void onSearchOverlayClosed();
1145 }
1146
Adam Cohenc2d6e892014-10-16 09:49:24 -07001147 public interface LauncherOverlayCallbacks {
1148 /**
1149 * This method indicates whether a call to {@link #enterFullImmersion()} will succeed,
1150 * however it doesn't modify any state within the launcher.
1151 */
1152 public boolean canEnterFullImmersion();
1153
1154 /**
1155 * Should be called to tell Launcher that the LauncherOverlay will take over interaction,
1156 * eg. by occupying the full screen and handling all touch events.
1157 *
1158 * @return true if Launcher allows the LauncherOverlay to become fully immersive. In this
1159 * case, Launcher will modify any necessary state and assumes the overlay is
1160 * handling all interaction. If false, the LauncherOverlay should cancel any
1161 *
1162 */
1163 public boolean enterFullImmersion();
1164
1165 /**
1166 * Must be called when exiting fully immersive mode. Indicates to Launcher that it has
1167 * full control over UI and state.
1168 */
1169 public void exitFullImmersion();
1170 }
1171
1172 class LauncherOverlayCallbacksImpl implements LauncherOverlayCallbacks {
1173
1174 @Override
1175 public boolean canEnterFullImmersion() {
1176 return mState == State.WORKSPACE;
1177 }
1178
1179 @Override
1180 public boolean enterFullImmersion() {
1181 if (mState == State.WORKSPACE) {
1182 // When fully immersed, disregard any touches which fall through.
1183 mDragLayer.setBlockTouch(true);
1184 return true;
1185 }
1186 return false;
1187 }
1188
1189 @Override
1190 public void exitFullImmersion() {
1191 mDragLayer.setBlockTouch(false);
1192 }
1193 }
1194
Jorim Jaggid017f882014-01-14 17:08:48 -08001195 protected boolean hasSettings() {
Adam Cohen9211d422014-10-07 18:14:53 -07001196 if (mLauncherCallbacks != null) {
1197 return mLauncherCallbacks.hasSettings();
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07001198 } else {
1199 // On devices with a locked orientation, we will at least have the allow rotation
1200 // setting.
1201 return !Utilities.isRotationAllowedForDevice(this);
Adam Cohen9211d422014-10-07 18:14:53 -07001202 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001203 }
1204
Adam Cohen9211d422014-10-07 18:14:53 -07001205 public void addToCustomContentPage(View customContent,
Adam Cohen53805212013-10-01 10:39:23 -07001206 CustomContentCallbacks callbacks, String description) {
1207 mWorkspace.addToCustomContentPage(customContent, callbacks, description);
Adam Cohen66a01fd2013-06-11 12:48:00 -07001208 }
1209
Adam Cohenedb40762013-07-18 16:45:45 -07001210 // The custom content needs to offset its content to account for the QSB
1211 public int getTopOffsetForCustomContent() {
1212 return mWorkspace.getPaddingTop();
1213 }
1214
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001215 @Override
1216 public Object onRetainNonConfigurationInstance() {
Joe Onorato9c1289c2009-08-17 11:03:03 -04001217 // Flag the loader to stop early before switching
Adam Cohen1a85c582014-09-30 09:48:49 -07001218 if (mModel.isCurrentCallbacks(this)) {
1219 mModel.stopLoader();
1220 }
Hyunyoung Song3f471442015-04-08 19:01:34 -07001221 //TODO(hyunyoungs): stop the widgets loader when there is a rotation.
1222
Romain Guy13c2e7b2010-03-10 19:45:00 -08001223 return Boolean.TRUE;
Jeffrey Sharkey99c87582009-03-24 17:59:43 -07001224 }
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001225
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001226 // We can't hide the IME if it was forced open. So don't bother
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001227 @Override
1228 public void onWindowFocusChanged(boolean hasFocus) {
1229 super.onWindowFocusChanged(hasFocus);
Adam Cohened307df2013-10-02 09:37:31 -07001230 mHasFocus = hasFocus;
Adam Cohen9211d422014-10-07 18:14:53 -07001231
1232 if (mLauncherCallbacks != null) {
1233 mLauncherCallbacks.onWindowFocusChanged(hasFocus);
1234 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001235 }
Joe Onorato2d7e7d02010-01-29 15:57:19 -08001236
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001237 private boolean acceptFilter() {
1238 final InputMethodManager inputManager = (InputMethodManager)
1239 getSystemService(Context.INPUT_METHOD_SERVICE);
1240 return !inputManager.isFullscreenMode();
1241 }
1242
1243 @Override
1244 public boolean onKeyDown(int keyCode, KeyEvent event) {
Winson Chung97d85d22011-04-13 11:27:36 -07001245 final int uniChar = event.getUnicodeChar();
1246 final boolean handled = super.onKeyDown(keyCode, event);
1247 final boolean isKeyNotWhitespace = uniChar > 0 && !Character.isWhitespace(uniChar);
1248 if (!handled && acceptFilter() && isKeyNotWhitespace) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001249 boolean gotKey = TextKeyListener.getInstance().onKeyDown(mWorkspace, mDefaultKeySsb,
1250 keyCode, event);
1251 if (gotKey && mDefaultKeySsb != null && mDefaultKeySsb.length() > 0) {
Karl Rosaen138a0412009-04-23 19:00:21 -07001252 // something usable has been typed - start a search
Romain Guycbb89e42009-06-08 15:52:54 -07001253 // the typed text will be retrieved and cleared by
Karl Rosaen138a0412009-04-23 19:00:21 -07001254 // showSearchDialog()
1255 // If there are multiple keystrokes before the search dialog takes focus,
1256 // onSearchRequested() will be called for every keystroke,
1257 // but it is idempotent, so it's fine.
1258 return onSearchRequested();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001259 }
1260 }
1261
Joe Onorato8a9625e2010-01-28 15:55:35 -08001262 // Eat the long press event so the keyboard doesn't come up.
1263 if (keyCode == KeyEvent.KEYCODE_MENU && event.isLongPress()) {
1264 return true;
1265 }
1266
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001267 return handled;
1268 }
1269
Karl Rosaen138a0412009-04-23 19:00:21 -07001270 private String getTypedText() {
1271 return mDefaultKeySsb.toString();
1272 }
1273
1274 private void clearTypedText() {
1275 mDefaultKeySsb.clear();
1276 mDefaultKeySsb.clearSpans();
1277 Selection.setSelection(mDefaultKeySsb, 0);
1278 }
1279
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001280 /**
Michael Jurka883f55b2010-10-21 15:47:14 -07001281 * Given the integer (ordinal) value of a State enum instance, convert it to a variable of type
1282 * State
1283 */
1284 private static State intToState(int stateOrdinal) {
1285 State state = State.WORKSPACE;
1286 final State[] stateValues = State.values();
1287 for (int i = 0; i < stateValues.length; i++) {
1288 if (stateValues[i].ordinal() == stateOrdinal) {
1289 state = stateValues[i];
1290 break;
1291 }
1292 }
1293 return state;
1294 }
1295
1296 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001297 * Restores the previous state, if it exists.
1298 *
1299 * @param savedState The previous state.
1300 */
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001301 @SuppressWarnings("unchecked")
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001302 private void restoreState(Bundle savedState) {
1303 if (savedState == null) {
1304 return;
1305 }
1306
Michael Jurka883f55b2010-10-21 15:47:14 -07001307 State state = intToState(savedState.getInt(RUNTIME_STATE, State.WORKSPACE.ordinal()));
Winson Chungb745afb2015-03-02 11:51:23 -08001308 if (state == State.APPS || state == State.WIDGETS) {
1309 mOnResumeState = state;
Joe Onorato3a8820b2009-11-10 15:06:42 -08001310 }
1311
Adam Cohen21cd0022013-10-09 18:57:02 -07001312 int currentScreen = savedState.getInt(RUNTIME_STATE_CURRENT_SCREEN,
1313 PagedView.INVALID_RESTORE_PAGE);
1314 if (currentScreen != PagedView.INVALID_RESTORE_PAGE) {
Winson Chung8c87cd82013-07-23 16:20:10 -07001315 mWorkspace.setRestorePage(currentScreen);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001316 }
1317
Winson Chung3d503fb2011-07-13 17:25:49 -07001318 final long pendingAddContainer = savedState.getLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, -1);
Adam Cohendcd297f2013-06-18 13:13:40 -07001319 final long pendingAddScreen = savedState.getLong(RUNTIME_STATE_PENDING_ADD_SCREEN, -1);
Michael Jurka0280c3b2010-09-17 15:00:07 -07001320
Winson Chung3d503fb2011-07-13 17:25:49 -07001321 if (pendingAddContainer != ItemInfo.NO_ID && pendingAddScreen > -1) {
1322 mPendingAddInfo.container = pendingAddContainer;
Adam Cohendcd297f2013-06-18 13:13:40 -07001323 mPendingAddInfo.screenId = pendingAddScreen;
Winson Chung3d503fb2011-07-13 17:25:49 -07001324 mPendingAddInfo.cellX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_X);
1325 mPendingAddInfo.cellY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_CELL_Y);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001326 mPendingAddInfo.spanX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_X);
1327 mPendingAddInfo.spanY = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y);
Adam Cohenb823ae42015-03-27 18:07:52 -07001328 AppWidgetProviderInfo info = savedState.getParcelable(
1329 RUNTIME_STATE_PENDING_ADD_WIDGET_INFO);
Sunny Goyalf044bb12015-05-12 13:30:07 -07001330 mPendingAddWidgetInfo = info == null ?
1331 null : LauncherAppWidgetProviderInfo.fromProviderInfo(this, info);
1332
Adam Cohen4637b5a2013-11-04 18:21:24 -08001333 mPendingAddWidgetId = savedState.getInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID);
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001334 setWaitingForResult(true);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001335 mRestoring = true;
1336 }
1337
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001338 mItemIdToViewId = (HashMap<Integer, Integer>)
1339 savedState.getSerializable(RUNTIME_STATE_VIEW_IDS);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001340 }
1341
1342 /**
1343 * Finds all the views we need and configure them properly.
1344 */
1345 private void setupViews() {
Michael Jurkaa63c4522010-08-19 13:52:27 -07001346 final DragController dragController = mDragController;
Joe Onorato00acb122009-08-04 16:04:30 -04001347
Craig Mautner360310b2012-10-26 15:13:08 -07001348 mLauncherView = findViewById(R.id.launcher);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001349 mFocusHandler = (FocusIndicatorView) findViewById(R.id.focus_indicator);
Winson Chung4c98d922011-05-31 16:50:48 -07001350 mDragLayer = (DragLayer) findViewById(R.id.drag_layer);
1351 mWorkspace = (Workspace) mDragLayer.findViewById(R.id.workspace);
Anjali Koppalf5d29132014-02-28 13:33:27 -08001352 mWorkspace.setPageSwitchListener(this);
Winson Chunga6945242014-01-08 14:04:34 -08001353 mPageIndicators = mDragLayer.findViewById(R.id.page_indicator);
Craig Mautner360310b2012-10-26 15:13:08 -07001354
John Spurlock77e1f472013-09-11 10:09:51 -04001355 mLauncherView.setSystemUiVisibility(
1356 View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
Craig Mautner360310b2012-10-26 15:13:08 -07001357 mWorkspaceBackgroundDrawable = getResources().getDrawable(R.drawable.workspace_bg);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001358
Winson Chung4c98d922011-05-31 16:50:48 -07001359 // Setup the drag layer
1360 mDragLayer.setup(this, dragController);
1361
Winson Chung3d503fb2011-07-13 17:25:49 -07001362 // Setup the hotseat
1363 mHotseat = (Hotseat) findViewById(R.id.hotseat);
1364 if (mHotseat != null) {
Winson Chung11a1a532013-09-13 11:14:45 -07001365 mHotseat.setOnLongClickListener(this);
Winson Chung3d503fb2011-07-13 17:25:49 -07001366 }
1367
Jorim Jaggid017f882014-01-14 17:08:48 -08001368 mOverviewPanel = (ViewGroup) findViewById(R.id.overview_panel);
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001369 mWidgetsButton = findViewById(R.id.widget_button);
1370 mWidgetsButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001371 @Override
1372 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001373 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001374 onClickAddWidgetButton(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001375 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001376 }
1377 });
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001378 mWidgetsButton.setOnTouchListener(getHapticFeedbackTouchListener());
Adam Cohen61f560d2013-09-30 15:58:20 -07001379
1380 View wallpaperButton = findViewById(R.id.wallpaper_button);
1381 wallpaperButton.setOnClickListener(new OnClickListener() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001382 @Override
1383 public void onClick(View arg0) {
Winson Chung8e15fdf2013-11-11 15:47:45 -08001384 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001385 onClickWallpaperPicker(arg0);
Winson Chung8e15fdf2013-11-11 15:47:45 -08001386 }
Adam Cohenf358a4b2013-07-23 16:47:31 -07001387 }
1388 });
Adam Cohen61f560d2013-09-30 15:58:20 -07001389 wallpaperButton.setOnTouchListener(getHapticFeedbackTouchListener());
1390
1391 View settingsButton = findViewById(R.id.settings_button);
Jorim Jaggid017f882014-01-14 17:08:48 -08001392 if (hasSettings()) {
1393 settingsButton.setOnClickListener(new OnClickListener() {
1394 @Override
1395 public void onClick(View arg0) {
1396 if (!mWorkspace.isSwitchingState()) {
Anjali Koppal7b168a12014-03-04 17:16:11 -08001397 onClickSettingsButton(arg0);
Jorim Jaggid017f882014-01-14 17:08:48 -08001398 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08001399 }
Jorim Jaggid017f882014-01-14 17:08:48 -08001400 });
1401 settingsButton.setOnTouchListener(getHapticFeedbackTouchListener());
1402 } else {
1403 settingsButton.setVisibility(View.GONE);
Jorim Jaggid017f882014-01-14 17:08:48 -08001404 }
1405
Adam Cohendbdff6b2013-09-18 19:09:15 -07001406 mOverviewPanel.setAlpha(0f);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001407
Winson Chung4c98d922011-05-31 16:50:48 -07001408 // Setup the workspace
1409 mWorkspace.setHapticFeedbackEnabled(false);
1410 mWorkspace.setOnLongClickListener(this);
Adam Cohencff6af82011-09-13 14:51:53 -07001411 mWorkspace.setup(dragController);
Michael Jurkad74c9842011-07-10 12:44:21 -07001412 dragController.addDragListener(mWorkspace);
Winson Chung4c98d922011-05-31 16:50:48 -07001413
Winson Chungf0ea4d32011-06-06 14:27:16 -07001414 // Get the search/delete bar
Adam Cohen24ce0b32014-01-14 16:18:14 -08001415 mSearchDropTargetBar = (SearchDropTargetBar)
1416 mDragLayer.findViewById(R.id.search_drop_target_bar);
Patrick Dubroy3ec8bdd2010-08-06 16:01:33 -07001417
Winson Chungef7f8742015-06-04 17:18:17 -07001418 // Setup Apps and Widgets
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001419 mAppsView = (AllAppsContainerView) findViewById(R.id.apps_view);
Hyunyoung Song3f471442015-04-08 19:01:34 -07001420 mWidgetsView = (WidgetsContainerView) findViewById(R.id.widgets_view);
Winson Chungef7f8742015-06-04 17:18:17 -07001421 if (mLauncherCallbacks != null && mLauncherCallbacks.getAllAppsSearchBarController() != null) {
1422 mAppsView.setSearchBarController(mLauncherCallbacks.getAllAppsSearchBarController());
1423 } else {
1424 mAppsView.setSearchBarController(mAppsView.newDefaultAppSearchController());
1425 }
Craig Mautner360310b2012-10-26 15:13:08 -07001426
Winson Chung3d503fb2011-07-13 17:25:49 -07001427 // Setup the drag controller (drop targets have to be added in reverse order in priority)
Winson Chung4c98d922011-05-31 16:50:48 -07001428 dragController.setDragScoller(mWorkspace);
1429 dragController.setScrollView(mDragLayer);
1430 dragController.setMoveTarget(mWorkspace);
1431 dragController.addDropTarget(mWorkspace);
Winson Chungc51db6a2011-10-05 11:44:49 -07001432 if (mSearchDropTargetBar != null) {
1433 mSearchDropTargetBar.setup(this, dragController);
Adam Cohenb0df1b02015-03-18 22:21:40 -07001434 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Michael Jurkae0f5a612011-02-07 16:45:41 -08001435 }
Daniel Sandler924b9932013-06-12 00:38:25 -04001436
Daniel Sandlera127b7a2013-06-17 14:25:46 -04001437 if (getResources().getBoolean(R.bool.debug_memory_enabled)) {
Daniel Sandler924b9932013-06-12 00:38:25 -04001438 Log.v(TAG, "adding WeightWatcher");
Adam Cohen39a06042013-07-19 14:30:12 -07001439 mWeightWatcher = new WeightWatcher(this);
1440 mWeightWatcher.setAlpha(0.5f);
1441 ((FrameLayout) mLauncherView).addView(mWeightWatcher,
Daniel Sandler924b9932013-06-12 00:38:25 -04001442 new FrameLayout.LayoutParams(
1443 FrameLayout.LayoutParams.MATCH_PARENT,
Daniel Sandlerb9eb2862013-06-14 20:17:30 -04001444 FrameLayout.LayoutParams.WRAP_CONTENT,
Daniel Sandler924b9932013-06-12 00:38:25 -04001445 Gravity.BOTTOM)
1446 );
Adam Cohen39a06042013-07-19 14:30:12 -07001447
1448 boolean show = shouldShowWeightWatcher();
1449 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
Daniel Sandler924b9932013-06-12 00:38:25 -04001450 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001451 }
1452
1453 /**
Anjali Koppal5ad44842014-03-10 20:34:39 -07001454 * Sets the all apps button. This method is called from {@link Hotseat}.
1455 */
1456 public void setAllAppsButton(View allAppsButton) {
1457 mAllAppsButton = allAppsButton;
1458 }
1459
1460 public View getAllAppsButton() {
1461 return mAllAppsButton;
1462 }
1463
Hyunyoung Song98ff38a2015-07-10 17:50:13 -07001464 public View getWidgetsButton() {
1465 return mWidgetsButton;
1466 }
1467
Anjali Koppal5ad44842014-03-10 20:34:39 -07001468 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001469 * Creates a view representing a shortcut.
1470 *
1471 * @param info The data structure describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001472 */
Joe Onorato0589f0f2010-02-08 13:44:00 -08001473 View createShortcut(ShortcutInfo info) {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001474 return createShortcut((ViewGroup) mWorkspace.getChildAt(mWorkspace.getCurrentPage()), info);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001475 }
1476
1477 /**
1478 * Creates a view representing a shortcut inflated from the specified resource.
1479 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001480 * @param parent The group the shortcut belongs to.
1481 * @param info The data structure describing the shortcut.
1482 *
1483 * @return A View inflated from layoutResId.
1484 */
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001485 public View createShortcut(ViewGroup parent, ShortcutInfo info) {
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001486 BubbleTextView favorite = (BubbleTextView) mInflater.inflate(R.layout.app_icon,
Sunny Goyaldfaccf62015-05-11 16:30:44 -07001487 parent, false);
1488 favorite.applyFromShortcutInfo(info, mIconCache);
1489 favorite.setCompoundDrawablePadding(mDeviceProfile.iconDrawablePaddingPx);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001490 favorite.setOnClickListener(this);
Sunny Goyaldcbcc862014-08-12 15:58:36 -07001491 favorite.setOnFocusChangeListener(mFocusHandler);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001492 return favorite;
1493 }
1494
1495 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001496 * Add a shortcut to the workspace.
1497 *
1498 * @param data The intent describing the shortcut.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001499 */
Adam Cohendcd297f2013-06-18 13:13:40 -07001500 private void completeAddShortcut(Intent data, long container, long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07001501 int cellY) {
1502 int[] cellXY = mTmpAddItemCellCoordinates;
Adam Cohendcd297f2013-06-18 13:13:40 -07001503 CellLayout layout = getCellLayout(container, screenId);
Romain Guycbb89e42009-06-08 15:52:54 -07001504
Sunny Goyal5c97f512015-05-19 16:03:28 -07001505 ShortcutInfo info = InstallShortcutReceiver.fromShortcutIntent(this, data);
Adam Cohend9198822011-11-22 16:42:47 -08001506 if (info == null) {
1507 return;
1508 }
Adam Cohen558baaf2011-08-15 15:22:57 -07001509 final View view = createShortcut(info);
1510
Sunny Goyal5c97f512015-05-19 16:03:28 -07001511 boolean foundCellSpan = false;
Adam Cohenfbba09b2011-07-18 21:43:05 -07001512 // First we check if we already know the exact location where we want to add this item.
1513 if (cellX >= 0 && cellY >= 0) {
1514 cellXY[0] = cellX;
1515 cellXY[1] = cellY;
1516 foundCellSpan = true;
Adam Cohen558baaf2011-08-15 15:22:57 -07001517
1518 // If appropriate, either create a folder or add to an existing folder
Adam Cohen482ed822012-03-02 14:15:13 -08001519 if (mWorkspace.createUserFolderIfNecessary(view, container, layout, cellXY, 0,
Adam Cohen558baaf2011-08-15 15:22:57 -07001520 true, null,null)) {
1521 return;
1522 }
1523 DragObject dragObject = new DragObject();
1524 dragObject.dragInfo = info;
Adam Cohen482ed822012-03-02 14:15:13 -08001525 if (mWorkspace.addToExistingFolderIfNecessary(view, layout, cellXY, 0, dragObject,
1526 true)) {
Adam Cohen558baaf2011-08-15 15:22:57 -07001527 return;
1528 }
Michael Jurkad3ef3062010-11-23 16:23:58 -08001529 } else {
Adam Cohenfbba09b2011-07-18 21:43:05 -07001530 foundCellSpan = layout.findCellForSpan(cellXY, 1, 1);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001531 }
1532
1533 if (!foundCellSpan) {
Winson Chung93eef082012-03-23 15:59:27 -07001534 showOutOfSpaceMessage(isHotseatLayout(layout));
Michael Jurka0280c3b2010-09-17 15:00:07 -07001535 return;
1536 }
1537
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001538 LauncherModel.addItemToDatabase(this, info, container, screenId, cellXY[0], cellXY[1]);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001539
1540 if (!mRestoring) {
Adam Cohendcd297f2013-06-18 13:13:40 -07001541 mWorkspace.addInScreen(view, container, screenId, cellXY[0], cellXY[1], 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07001542 isWorkspaceLocked());
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001543 }
1544 }
1545
Adam Cohen2e6da152015-05-06 11:42:25 -07001546 private int[] getSpanForWidget(ComponentName component, int minWidth, int minHeight) {
1547 Rect padding = AppWidgetHostView.getDefaultPaddingForWidget(this, component, null);
Adam Cohenf814aa02011-09-01 13:48:05 -07001548 // We want to account for the extra amount of padding that we are adding to the widget
1549 // to ensure that it gets the full amount of space that it has requested
1550 int requiredWidth = minWidth + padding.left + padding.right;
1551 int requiredHeight = minHeight + padding.top + padding.bottom;
Adam Cohen2e6da152015-05-06 11:42:25 -07001552 return CellLayout.rectToCell(this, requiredWidth, requiredHeight, null);
Adam Cohenf814aa02011-09-01 13:48:05 -07001553 }
1554
Adam Cohen2e6da152015-05-06 11:42:25 -07001555 public int[] getSpanForWidget(AppWidgetProviderInfo info) {
1556 return getSpanForWidget(info.provider, info.minWidth, info.minHeight);
Adam Cohenf814aa02011-09-01 13:48:05 -07001557 }
1558
Adam Cohen2e6da152015-05-06 11:42:25 -07001559 public int[] getMinSpanForWidget(AppWidgetProviderInfo info) {
1560 return getSpanForWidget(info.provider, info.minResizeWidth, info.minResizeHeight);
Adam Cohend41fbf52012-02-16 23:53:59 -08001561 }
1562
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001563 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001564 * Add a widget to the workspace.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001565 *
Romain Guy5bbc91b2010-08-18 11:38:46 -07001566 * @param appWidgetId The app widget id
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001567 */
Adam Cohen091440a2015-03-18 14:16:05 -07001568 @Thunk void completeAddAppWidget(int appWidgetId, long container, long screenId,
Adam Cohen59400422014-03-05 18:07:04 -08001569 AppWidgetHostView hostView, LauncherAppWidgetProviderInfo appWidgetInfo) {
1570
1571 ItemInfo info = mPendingAddInfo;
Adam Cohened66b2b2012-01-23 17:28:51 -08001572 if (appWidgetInfo == null) {
Adam Cohen59400422014-03-05 18:07:04 -08001573 appWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(this,
1574 mAppWidgetManager.getAppWidgetInfo(appWidgetId));
Adam Cohened66b2b2012-01-23 17:28:51 -08001575 }
Romain Guycbb89e42009-06-08 15:52:54 -07001576
Adam Cohen59400422014-03-05 18:07:04 -08001577 if (appWidgetInfo.isCustomWidget) {
1578 appWidgetId = LauncherAppWidgetInfo.CUSTOM_WIDGET_ID;
Michael Jurkaa63c4522010-08-19 13:52:27 -07001579 }
1580
Adam Cohen59400422014-03-05 18:07:04 -08001581 LauncherAppWidgetInfo launcherInfo;
1582 launcherInfo = new LauncherAppWidgetInfo(appWidgetId, appWidgetInfo.provider);
1583 launcherInfo.spanX = info.spanX;
1584 launcherInfo.spanY = info.spanY;
1585 launcherInfo.minSpanX = info.minSpanX;
1586 launcherInfo.minSpanY = info.minSpanY;
Sunny Goyalffe83f12014-08-14 17:39:34 -07001587 launcherInfo.user = mAppWidgetManager.getUser(appWidgetInfo);
Romain Guycbb89e42009-06-08 15:52:54 -07001588
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001589 LauncherModel.addItemToDatabase(this, launcherInfo,
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07001590 container, screenId, info.cellX, info.cellY);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001591
1592 if (!mRestoring) {
Adam Cohened66b2b2012-01-23 17:28:51 -08001593 if (hostView == null) {
1594 // Perform actual inflation because we're live
Adam Cohen59400422014-03-05 18:07:04 -08001595 launcherInfo.hostView = mAppWidgetHost.createView(this, appWidgetId,
1596 appWidgetInfo);
Adam Cohened66b2b2012-01-23 17:28:51 -08001597 } else {
1598 // The AppWidgetHostView has already been inflated and instantiated
1599 launcherInfo.hostView = hostView;
1600 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001601 launcherInfo.hostView.setTag(launcherInfo);
Adam Cohend41fbf52012-02-16 23:53:59 -08001602 launcherInfo.hostView.setVisibility(View.VISIBLE);
Adam Cohenaaa5c212012-10-05 18:14:31 -07001603 launcherInfo.notifyWidgetSizeChanged(this);
1604
Adam Cohen59400422014-03-05 18:07:04 -08001605 mWorkspace.addInScreen(launcherInfo.hostView, container, screenId, info.cellX,
1606 info.cellY, launcherInfo.spanX, launcherInfo.spanY, isWorkspaceLocked());
Adam Cohended9f8d2010-11-03 13:25:16 -07001607
1608 addWidgetToAutoAdvanceIfNeeded(launcherInfo.hostView, appWidgetInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001609 }
Adam Cohen6af9af02012-02-02 15:41:45 -08001610 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001611 }
Romain Guycbb89e42009-06-08 15:52:54 -07001612
Adam Cohended9f8d2010-11-03 13:25:16 -07001613 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
1614 @Override
1615 public void onReceive(Context context, Intent intent) {
1616 final String action = intent.getAction();
1617 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
1618 mUserPresent = false;
Adam Cohenbec6ac52011-07-19 20:50:27 -07001619 mDragLayer.clearAllResizeFrames();
Winson Chungb745afb2015-03-02 11:51:23 -08001620 updateAutoAdvanceState();
Winson Chung337cd9d2011-03-30 10:39:30 -07001621
Winson Chungc100e8e2011-08-09 16:02:43 -07001622 // Reset AllApps to its initial state only if we are not in the middle of
Winson Chungb8472bb2011-08-05 13:49:21 -07001623 // processing a multi-step drop
Hyunyoung Song3f471442015-04-08 19:01:34 -07001624 if (mAppsView != null && mWidgetsView != null &&
Winson Chungb745afb2015-03-02 11:51:23 -08001625 mPendingAddInfo.container == ItemInfo.NO_ID) {
Adam Cohened307df2013-10-02 09:37:31 -07001626 showWorkspace(false);
Winson Chung785d2eb2011-04-14 16:08:02 -07001627 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001628 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
1629 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08001630 updateAutoAdvanceState();
Dan Sandlerd5024042014-01-09 15:01:33 -05001631 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.DELETE_DATABASE.equals(action)) {
1632 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001633 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001634 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE);
1635 } else if (ENABLE_DEBUG_INTENTS && DebugIntents.MIGRATE_DATABASE.equals(action)) {
1636 mModel.resetLoadedState(false, true);
Sunny Goyal2bba4c32015-05-18 15:42:48 -07001637 mModel.startLoader(PagedView.INVALID_RESTORE_PAGE,
Dan Sandlerd5024042014-01-09 15:01:33 -05001638 LauncherModel.LOADER_FLAG_CLEAR_WORKSPACE
1639 | LauncherModel.LOADER_FLAG_MIGRATE_SHORTCUTS);
Adam Cohended9f8d2010-11-03 13:25:16 -07001640 }
1641 }
1642 };
1643
1644 @Override
1645 public void onAttachedToWindow() {
1646 super.onAttachedToWindow();
1647
1648 // Listen for broadcasts related to user-presence
1649 final IntentFilter filter = new IntentFilter();
1650 filter.addAction(Intent.ACTION_SCREEN_OFF);
1651 filter.addAction(Intent.ACTION_USER_PRESENT);
Amith Yamasani6cc806d2014-05-02 13:47:11 -07001652 // For handling managed profiles
Dan Sandlerd5024042014-01-09 15:01:33 -05001653 if (ENABLE_DEBUG_INTENTS) {
1654 filter.addAction(DebugIntents.DELETE_DATABASE);
1655 filter.addAction(DebugIntents.MIGRATE_DATABASE);
1656 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001657 registerReceiver(mReceiver, filter);
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001658 FirstFrameAnimatorHelper.initializeDrawListener(getWindow().getDecorView());
Adam Cohen0b395352014-06-09 22:54:36 +00001659 setupTransparentSystemBarsForLmp();
Adam Cohend113e0c2010-11-11 10:48:05 -08001660 mAttached = true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001661 mVisible = true;
1662 }
1663
Adam Cohen0b395352014-06-09 22:54:36 +00001664 /**
1665 * Sets up transparent navigation and status bars in LMP.
1666 * This method is a no-op for other platform versions.
1667 */
Sunny Goyald0091012015-01-20 15:55:34 -08001668 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Adam Cohen0b395352014-06-09 22:54:36 +00001669 private void setupTransparentSystemBarsForLmp() {
Kenny Guyd794a3f2014-09-16 15:17:58 +01001670 if (Utilities.isLmpOrAbove()) {
Sunny Goyald0091012015-01-20 15:55:34 -08001671 Window window = getWindow();
1672 window.getAttributes().systemUiVisibility |=
1673 (View.SYSTEM_UI_FLAG_LAYOUT_STABLE
1674 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
1675 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
1676 window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS
1677 | WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
1678 window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
1679 window.setStatusBarColor(Color.TRANSPARENT);
1680 window.setNavigationBarColor(Color.TRANSPARENT);
Adam Cohen0b395352014-06-09 22:54:36 +00001681 }
1682 }
1683
Adam Cohended9f8d2010-11-03 13:25:16 -07001684 @Override
1685 public void onDetachedFromWindow() {
1686 super.onDetachedFromWindow();
1687 mVisible = false;
1688
Adam Cohend113e0c2010-11-11 10:48:05 -08001689 if (mAttached) {
1690 unregisterReceiver(mReceiver);
1691 mAttached = false;
1692 }
Winson Chungb745afb2015-03-02 11:51:23 -08001693 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001694 }
1695
1696 public void onWindowVisibilityChanged(int visibility) {
1697 mVisible = visibility == View.VISIBLE;
Winson Chungb745afb2015-03-02 11:51:23 -08001698 updateAutoAdvanceState();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001699 // The following code used to be in onResume, but it turns out onResume is called when
1700 // you're in All Apps and click home to go to the workspace. onWindowVisibilityChanged
1701 // is a more appropriate event to handle
1702 if (mVisible) {
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001703 if (!mWorkspaceLoading) {
1704 final ViewTreeObserver observer = mWorkspace.getViewTreeObserver();
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001705 // We want to let Launcher draw itself at least once before we force it to build
1706 // layers on all the workspace pages, so that transitioning to Launcher from other
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001707 // apps is nice and speedy.
1708 observer.addOnDrawListener(new ViewTreeObserver.OnDrawListener() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001709 private boolean mStarted = false;
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001710 public void onDraw() {
Michael Jurkadf96add2013-04-03 16:25:02 -07001711 if (mStarted) return;
1712 mStarted = true;
Michael Jurka6ee21d22012-02-21 18:20:27 -08001713 // We delay the layer building a bit in order to give
1714 // other message processing a time to run. In particular
1715 // this avoids a delay in hiding the IME if it was
1716 // currently shown, because doing that may involve
1717 // some communication back with the app.
Winson Chungaeae56b2012-02-24 15:47:27 -08001718 mWorkspace.postDelayed(mBuildLayersRunnable, 500);
Michael Jurkadf96add2013-04-03 16:25:02 -07001719 final ViewTreeObserver.OnDrawListener listener = this;
1720 mWorkspace.post(new Runnable() {
1721 public void run() {
Michael Jurkab68e03a2013-04-11 11:36:41 -07001722 if (mWorkspace != null &&
1723 mWorkspace.getViewTreeObserver() != null) {
1724 mWorkspace.getViewTreeObserver().
1725 removeOnDrawListener(listener);
1726 }
Michael Jurkadf96add2013-04-03 16:25:02 -07001727 }
1728 });
Michael Jurkaf1ad6082013-03-13 12:55:46 +01001729 return;
Michael Jurka2a4b1a82011-12-07 14:00:02 -08001730 }
1731 });
1732 }
1733 clearTypedText();
1734 }
Adam Cohended9f8d2010-11-03 13:25:16 -07001735 }
1736
Adam Cohen091440a2015-03-18 14:16:05 -07001737 @Thunk void sendAdvanceMessage(long delay) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001738 mHandler.removeMessages(ADVANCE_MSG);
1739 Message msg = mHandler.obtainMessage(ADVANCE_MSG);
1740 mHandler.sendMessageDelayed(msg, delay);
1741 mAutoAdvanceSentTime = System.currentTimeMillis();
1742 }
1743
Adam Cohen091440a2015-03-18 14:16:05 -07001744 @Thunk void updateAutoAdvanceState() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001745 boolean autoAdvanceRunning = mVisible && mUserPresent && !mWidgetsToAdvance.isEmpty();
1746 if (autoAdvanceRunning != mAutoAdvanceRunning) {
1747 mAutoAdvanceRunning = autoAdvanceRunning;
1748 if (autoAdvanceRunning) {
1749 long delay = mAutoAdvanceTimeLeft == -1 ? mAdvanceInterval : mAutoAdvanceTimeLeft;
1750 sendAdvanceMessage(delay);
1751 } else {
1752 if (!mWidgetsToAdvance.isEmpty()) {
1753 mAutoAdvanceTimeLeft = Math.max(0, mAdvanceInterval -
1754 (System.currentTimeMillis() - mAutoAdvanceSentTime));
1755 }
1756 mHandler.removeMessages(ADVANCE_MSG);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08001757 mHandler.removeMessages(0); // Remove messages sent using postDelayed()
Adam Cohended9f8d2010-11-03 13:25:16 -07001758 }
1759 }
1760 }
1761
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001762 @Thunk final Handler mHandler = new Handler(new Handler.Callback() {
1763
Adam Cohended9f8d2010-11-03 13:25:16 -07001764 @Override
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001765 public boolean handleMessage(Message msg) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001766 if (msg.what == ADVANCE_MSG) {
1767 int i = 0;
1768 for (View key: mWidgetsToAdvance.keySet()) {
1769 final View v = key.findViewById(mWidgetsToAdvance.get(key).autoAdvanceViewId);
1770 final int delay = mAdvanceStagger * i;
1771 if (v instanceof Advanceable) {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001772 mHandler.postDelayed(new Runnable() {
Adam Cohended9f8d2010-11-03 13:25:16 -07001773 public void run() {
1774 ((Advanceable) v).advance();
1775 }
1776 }, delay);
1777 }
1778 i++;
1779 }
1780 sendAdvanceMessage(mAdvanceInterval);
1781 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001782 return true;
Adam Cohended9f8d2010-11-03 13:25:16 -07001783 }
Sunny Goyal4f3e9382015-06-05 00:13:25 -07001784 });
Adam Cohended9f8d2010-11-03 13:25:16 -07001785
1786 void addWidgetToAutoAdvanceIfNeeded(View hostView, AppWidgetProviderInfo appWidgetInfo) {
Adam Cohen292c0252011-07-18 13:55:17 -07001787 if (appWidgetInfo == null || appWidgetInfo.autoAdvanceViewId == -1) return;
Adam Cohended9f8d2010-11-03 13:25:16 -07001788 View v = hostView.findViewById(appWidgetInfo.autoAdvanceViewId);
1789 if (v instanceof Advanceable) {
1790 mWidgetsToAdvance.put(hostView, appWidgetInfo);
Adam Cohen2ddf13e2011-01-19 21:26:33 -08001791 ((Advanceable) v).fyiWillBeAdvancedByHostKThx();
Winson Chungb745afb2015-03-02 11:51:23 -08001792 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001793 }
1794 }
1795
1796 void removeWidgetToAutoAdvance(View hostView) {
1797 if (mWidgetsToAdvance.containsKey(hostView)) {
1798 mWidgetsToAdvance.remove(hostView);
Winson Chungb745afb2015-03-02 11:51:23 -08001799 updateAutoAdvanceState();
Adam Cohended9f8d2010-11-03 13:25:16 -07001800 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07001801 }
1802
Joe Onorato9c1289c2009-08-17 11:03:03 -04001803 public void removeAppWidget(LauncherAppWidgetInfo launcherInfo) {
Adam Cohended9f8d2010-11-03 13:25:16 -07001804 removeWidgetToAutoAdvance(launcherInfo.hostView);
Joe Onorato9c1289c2009-08-17 11:03:03 -04001805 launcherInfo.hostView = null;
1806 }
1807
Hyunyoung Song3f471442015-04-08 19:01:34 -07001808 public void showOutOfSpaceMessage(boolean isHotseatLayout) {
Winson Chung93eef082012-03-23 15:59:27 -07001809 int strId = (isHotseatLayout ? R.string.hotseat_out_of_space : R.string.out_of_space);
1810 Toast.makeText(this, getString(strId), Toast.LENGTH_SHORT).show();
Adam Cohended9f8d2010-11-03 13:25:16 -07001811 }
1812
Winson Chunga6945242014-01-08 14:04:34 -08001813 public DragLayer getDragLayer() {
1814 return mDragLayer;
1815 }
1816
Winson Chung5f4e0fd2015-05-22 11:12:27 -07001817 public AllAppsContainerView getAppsView() {
Winson Chungb745afb2015-03-02 11:51:23 -08001818 return mAppsView;
1819 }
1820
Hyunyoung Song3f471442015-04-08 19:01:34 -07001821 public WidgetsContainerView getWidgetsView() {
1822 return mWidgetsView;
Winson Chungb745afb2015-03-02 11:51:23 -08001823 }
1824
Winson Chunga6945242014-01-08 14:04:34 -08001825 public Workspace getWorkspace() {
1826 return mWorkspace;
1827 }
1828
1829 public Hotseat getHotseat() {
1830 return mHotseat;
1831 }
1832
Jorim Jaggid017f882014-01-14 17:08:48 -08001833 public ViewGroup getOverviewPanel() {
Winson Chunga6945242014-01-08 14:04:34 -08001834 return mOverviewPanel;
1835 }
1836
1837 public SearchDropTargetBar getSearchBar() {
1838 return mSearchDropTargetBar;
1839 }
1840
The Android Open Source Project7376fae2009-03-11 12:11:58 -07001841 public LauncherAppWidgetHost getAppWidgetHost() {
1842 return mAppWidgetHost;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001843 }
Romain Guycbb89e42009-06-08 15:52:54 -07001844
Winson Chunga9abd0e2010-10-27 17:18:37 -07001845 public LauncherModel getModel() {
1846 return mModel;
1847 }
1848
Winson Chunga6945242014-01-08 14:04:34 -08001849 protected SharedPreferences getSharedPrefs() {
1850 return mSharedPrefs;
1851 }
1852
Adam Cohen2e6da152015-05-06 11:42:25 -07001853 public DeviceProfile getDeviceProfile() {
1854 return mDeviceProfile;
1855 }
1856
Bjorn Bringertc459e522013-06-07 19:36:01 +01001857 public void closeSystemDialogs() {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001858 getWindow().closeAllPanels();
1859
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001860 // Whatever we were doing is hereby canceled.
Anjali Koppalff7ceff2014-05-01 18:26:37 -07001861 setWaitingForResult(false);
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001862 }
1863
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001864 @Override
1865 protected void onNewIntent(Intent intent) {
Michael Jurka447bf842013-05-15 14:52:15 +02001866 long startTime = 0;
1867 if (DEBUG_RESUME_TIME) {
1868 startTime = System.currentTimeMillis();
1869 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001870 super.onNewIntent(intent);
1871
1872 // Close the menu
1873 if (Intent.ACTION_MAIN.equals(intent.getAction())) {
Joe Onoratoa5c32d62009-11-19 10:28:49 -08001874 // also will cancel mWaitingForResult.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08001875 closeSystemDialogs();
Jason Samsfd22dac2009-09-20 17:24:16 -07001876
Adam Cohened307df2013-10-02 09:37:31 -07001877 final boolean alreadyOnHome = mHasFocus && ((intent.getFlags() &
1878 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
1879 != Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
Michael Jurka01f0ed42010-08-20 00:41:17 -07001880
Adam Cohen6fecd412013-10-02 17:41:50 -07001881 if (mWorkspace == null) {
1882 // Can be cases where mWorkspace is null, this prevents a NPE
1883 return;
1884 }
1885 Folder openFolder = mWorkspace.getOpenFolder();
1886 // In all these cases, only animate if we're already on home
1887 mWorkspace.exitWidgetResizeMode();
Adam Cohen9211d422014-10-07 18:14:53 -07001888
1889 boolean moveToDefaultScreen = mLauncherCallbacks != null ?
1890 mLauncherCallbacks.shouldMoveToDefaultScreenOnHomeIntent() : true;
Adam Cohen6fecd412013-10-02 17:41:50 -07001891 if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
Adam Cohen9211d422014-10-07 18:14:53 -07001892 openFolder == null && moveToDefaultScreen) {
Adam Cohen6fecd412013-10-02 17:41:50 -07001893 mWorkspace.moveToDefaultScreen(true);
Winson Chung4a2afa32012-07-19 14:53:05 -07001894 }
Romain Guy1dd3a072009-07-16 13:21:01 -07001895
Adam Cohen6fecd412013-10-02 17:41:50 -07001896 closeFolder();
1897 exitSpringLoadedDragMode();
1898
1899 // If we are already on home, then just animate back to the workspace,
1900 // otherwise, just wait until onResume to set the state back to Workspace
1901 if (alreadyOnHome) {
Adam Cohened307df2013-10-02 09:37:31 -07001902 showWorkspace(true);
Adam Cohen6fecd412013-10-02 17:41:50 -07001903 } else {
1904 mOnResumeState = State.WORKSPACE;
1905 }
1906
1907 final View v = getWindow().peekDecorView();
1908 if (v != null && v.getWindowToken() != null) {
1909 InputMethodManager imm = (InputMethodManager)getSystemService(
1910 INPUT_METHOD_SERVICE);
1911 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
1912 }
1913
Winson Chungb745afb2015-03-02 11:51:23 -08001914 // Reset the apps view
1915 if (!alreadyOnHome && mAppsView != null) {
1916 mAppsView.scrollToTop();
1917 }
1918
Hyunyoung Song3f471442015-04-08 19:01:34 -07001919 // Reset the widgets view
1920 if (!alreadyOnHome && mWidgetsView != null) {
1921 mWidgetsView.scrollToTop();
Adam Cohen6fecd412013-10-02 17:41:50 -07001922 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001923
Adam Cohen9211d422014-10-07 18:14:53 -07001924 if (mLauncherCallbacks != null) {
1925 mLauncherCallbacks.onHomeIntent();
1926 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001927 }
Adam Cohened307df2013-10-02 09:37:31 -07001928
Michael Jurka447bf842013-05-15 14:52:15 +02001929 if (DEBUG_RESUME_TIME) {
1930 Log.d(TAG, "Time spent in onNewIntent: " + (System.currentTimeMillis() - startTime));
1931 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001932
Adam Cohen9211d422014-10-07 18:14:53 -07001933 if (mLauncherCallbacks != null) {
1934 mLauncherCallbacks.onNewIntent(intent);
1935 }
Adam Coppa120b8e2013-11-12 16:26:04 +00001936 }
1937
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001938 @Override
Adam Cohen1462de32012-07-24 22:34:36 -07001939 public void onRestoreInstanceState(Bundle state) {
1940 super.onRestoreInstanceState(state);
1941 for (int page: mSynchronouslyBoundPages) {
1942 mWorkspace.restoreInstanceStateForChild(page);
1943 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001944 }
1945
1946 @Override
1947 protected void onSaveInstanceState(Bundle outState) {
Adam Cohen21cd0022013-10-09 18:57:02 -07001948 if (mWorkspace.getChildCount() > 0) {
Winson Chung9b9fb962013-11-15 15:39:34 -08001949 outState.putInt(RUNTIME_STATE_CURRENT_SCREEN,
1950 mWorkspace.getCurrentPageOffsetFromCustomContent());
Adam Cohen21cd0022013-10-09 18:57:02 -07001951 }
Adam Cohen95bb8002011-07-03 23:40:28 -07001952 super.onSaveInstanceState(outState);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001953
Michael Jurka883f55b2010-10-21 15:47:14 -07001954 outState.putInt(RUNTIME_STATE, mState.ordinal());
Adam Cohen51e95032011-07-11 14:44:19 -07001955 // We close any open folder since it will not be re-opened, and we need to make sure
1956 // this state is reflected.
1957 closeFolder();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001958
Adam Cohendcd297f2013-06-18 13:13:40 -07001959 if (mPendingAddInfo.container != ItemInfo.NO_ID && mPendingAddInfo.screenId > -1 &&
Winson Chung3d503fb2011-07-13 17:25:49 -07001960 mWaitingForResult) {
1961 outState.putLong(RUNTIME_STATE_PENDING_ADD_CONTAINER, mPendingAddInfo.container);
Adam Cohendcd297f2013-06-18 13:13:40 -07001962 outState.putLong(RUNTIME_STATE_PENDING_ADD_SCREEN, mPendingAddInfo.screenId);
Winson Chung3d503fb2011-07-13 17:25:49 -07001963 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_X, mPendingAddInfo.cellX);
1964 outState.putInt(RUNTIME_STATE_PENDING_ADD_CELL_Y, mPendingAddInfo.cellY);
Adam Cohen9d5b7d82012-05-09 18:00:44 -07001965 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_X, mPendingAddInfo.spanX);
1966 outState.putInt(RUNTIME_STATE_PENDING_ADD_SPAN_Y, mPendingAddInfo.spanY);
1967 outState.putParcelable(RUNTIME_STATE_PENDING_ADD_WIDGET_INFO, mPendingAddWidgetInfo);
Adam Cohen4637b5a2013-11-04 18:21:24 -08001968 outState.putInt(RUNTIME_STATE_PENDING_ADD_WIDGET_ID, mPendingAddWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001969 }
1970
Hyunyoung Song3f471442015-04-08 19:01:34 -07001971 // Save the current widgets tray?
1972 // TODO(hyunyoungs)
Adam Cohenc76e1dd2013-11-14 11:09:14 +00001973 outState.putSerializable(RUNTIME_STATE_VIEW_IDS, mItemIdToViewId);
Adam Cohen9211d422014-10-07 18:14:53 -07001974
1975 if (mLauncherCallbacks != null) {
1976 mLauncherCallbacks.onSaveInstanceState(outState);
1977 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001978 }
1979
1980 @Override
1981 public void onDestroy() {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001982 super.onDestroy();
Romain Guycbb89e42009-06-08 15:52:54 -07001983
Winson Chunge7a03942011-08-05 15:05:12 -07001984 // Remove all pending runnables
1985 mHandler.removeMessages(ADVANCE_MSG);
1986 mHandler.removeMessages(0);
Michael Jurka9d906c72011-10-14 06:25:36 -07001987 mWorkspace.removeCallbacks(mBuildLayersRunnable);
Winson Chunge7a03942011-08-05 15:05:12 -07001988
Winson Chungcd2b0142011-06-08 16:02:26 -07001989 // Stop callbacks from LauncherModel
Daniel Sandlercc8befa2013-06-11 14:45:48 -04001990 LauncherAppState app = (LauncherAppState.getInstance());
Adam Cohen1a85c582014-09-30 09:48:49 -07001991
1992 // It's possible to receive onDestroy after a new Launcher activity has
1993 // been created. In this case, don't interfere with the new Launcher.
1994 if (mModel.isCurrentCallbacks(this)) {
1995 mModel.stopLoader();
1996 app.setLauncher(null);
1997 }
Winson Chungcd2b0142011-06-08 16:02:26 -07001998
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001999 try {
The Android Open Source Project7376fae2009-03-11 12:11:58 -07002000 mAppWidgetHost.stopListening();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002001 } catch (NullPointerException ex) {
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002002 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002003 }
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002004 mAppWidgetHost = null;
2005
2006 mWidgetsToAdvance.clear();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002007
2008 TextKeyListener.getInstance().release();
2009
Joe Onorato34a0e1b2009-12-14 17:44:51 -08002010 unregisterReceiver(mCloseSystemDialogsReceiver);
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002011
Adam Cohenaccf3bf2012-04-30 16:07:43 -07002012 mDragLayer.clearAllResizeFrames();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002013 ((ViewGroup) mWorkspace.getParent()).removeAllViews();
Adam Cohend552dd92013-11-26 12:13:11 -08002014 mWorkspace.removeAllWorkspaceScreens();
Patrick Dubroy2313eff2011-01-11 20:01:31 -08002015 mWorkspace = null;
2016 mDragController = null;
Patrick Dubroy60b7c532011-01-16 17:19:32 -08002017
Michael Jurka2ecf9952012-06-18 12:52:28 -07002018 LauncherAnimUtils.onDestroyActivity();
Adam Cohen9211d422014-10-07 18:14:53 -07002019
2020 if (mLauncherCallbacks != null) {
2021 mLauncherCallbacks.onDestroy();
2022 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002023 }
2024
Adam Cohena9cf38f2011-05-02 15:36:58 -07002025 public DragController getDragController() {
2026 return mDragController;
2027 }
2028
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002029 @Override
2030 public void startActivityForResult(Intent intent, int requestCode) {
Adam Cohen173f7112015-03-27 15:14:00 -07002031 onStartForResult(requestCode);
2032 super.startActivityForResult(intent, requestCode);
2033 }
2034
2035 @Override
2036 public void startIntentSenderForResult (IntentSender intent, int requestCode,
2037 Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) {
2038 onStartForResult(requestCode);
2039 try {
2040 super.startIntentSenderForResult(intent, requestCode,
2041 fillInIntent, flagsMask, flagsValues, extraFlags, options);
2042 } catch (IntentSender.SendIntentException e) {
2043 throw new ActivityNotFoundException();
2044 }
2045 }
2046
2047 private void onStartForResult(int requestCode) {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002048 if (requestCode >= 0) {
2049 setWaitingForResult(true);
2050 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002051 }
2052
Winson Chung70d72102011-08-12 11:24:35 -07002053 /**
2054 * Indicates that we want global search for this activity by setting the globalSearch
2055 * argument for {@link #startSearch} to true.
2056 */
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002057 @Override
Romain Guycbb89e42009-06-08 15:52:54 -07002058 public void startSearch(String initialQuery, boolean selectInitialQuery,
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002059 Bundle appSearchData, boolean globalSearch) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002060
Karl Rosaen138a0412009-04-23 19:00:21 -07002061 if (initialQuery == null) {
2062 // Use any text typed in the launcher as the initial query
2063 initialQuery = getTypedText();
Karl Rosaen138a0412009-04-23 19:00:21 -07002064 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002065 if (appSearchData == null) {
2066 appSearchData = new Bundle();
Bjorn Bringert32b12d22013-06-06 13:00:41 +01002067 appSearchData.putString("source", "launcher-search");
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002068 }
Winson Chungadf0c182012-08-23 14:59:07 -07002069 Rect sourceBounds = new Rect();
2070 if (mSearchDropTargetBar != null) {
2071 sourceBounds = mSearchDropTargetBar.getSearchBarBounds();
2072 }
Romain Guycbb89e42009-06-08 15:52:54 -07002073
Ian Parkinson047036e2014-09-01 15:40:53 +01002074 boolean clearTextImmediately = startSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002075 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002076 if (clearTextImmediately) {
2077 clearTypedText();
2078 }
Winson Chungcd99cd32015-04-29 11:03:24 -07002079
2080 // We need to show the workspace after starting the search
2081 showWorkspace(true);
Bjorn Bringertc459e522013-06-07 19:36:01 +01002082 }
2083
Ian Parkinson047036e2014-09-01 15:40:53 +01002084 /**
2085 * Start a text search.
2086 *
2087 * @return {@code true} if the search will start immediately, so any further keypresses
2088 * will be handled directly by the search UI. {@code false} if {@link Launcher} should continue
2089 * to buffer keypresses.
2090 */
2091 public boolean startSearch(String initialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002092 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Adam Cohen9211d422014-10-07 18:14:53 -07002093 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
2094 return mLauncherCallbacks.startSearch(initialQuery, selectInitialQuery, appSearchData,
2095 sourceBounds);
2096 }
2097
Michael Jurkaa33411c2012-06-14 16:18:21 -07002098 startGlobalSearch(initialQuery, selectInitialQuery,
Bjorn Bringertc459e522013-06-07 19:36:01 +01002099 appSearchData, sourceBounds);
Ian Parkinson047036e2014-09-01 15:40:53 +01002100 return false;
Michael Jurkaa33411c2012-06-14 16:18:21 -07002101 }
2102
2103 /**
2104 * Starts the global search activity. This code is a copied from SearchManager
2105 */
Bjorn Bringertc459e522013-06-07 19:36:01 +01002106 private void startGlobalSearch(String initialQuery,
Michael Jurkaa33411c2012-06-14 16:18:21 -07002107 boolean selectInitialQuery, Bundle appSearchData, Rect sourceBounds) {
Karl Rosaen138a0412009-04-23 19:00:21 -07002108 final SearchManager searchManager =
Michael Jurkaa33411c2012-06-14 16:18:21 -07002109 (SearchManager) getSystemService(Context.SEARCH_SERVICE);
2110 ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
2111 if (globalSearchActivity == null) {
2112 Log.w(TAG, "No global search activity found.");
2113 return;
2114 }
2115 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
2116 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2117 intent.setComponent(globalSearchActivity);
2118 // Make sure that we have a Bundle to put source in
2119 if (appSearchData == null) {
2120 appSearchData = new Bundle();
2121 } else {
2122 appSearchData = new Bundle(appSearchData);
2123 }
Adam Cohen9211d422014-10-07 18:14:53 -07002124 // Set source to package name of app that starts global search if not set already.
Michael Jurkaa33411c2012-06-14 16:18:21 -07002125 if (!appSearchData.containsKey("source")) {
2126 appSearchData.putString("source", getPackageName());
2127 }
2128 intent.putExtra(SearchManager.APP_DATA, appSearchData);
2129 if (!TextUtils.isEmpty(initialQuery)) {
2130 intent.putExtra(SearchManager.QUERY, initialQuery);
2131 }
2132 if (selectInitialQuery) {
2133 intent.putExtra(SearchManager.EXTRA_SELECT_QUERY, selectInitialQuery);
2134 }
2135 intent.setSourceBounds(sourceBounds);
2136 try {
2137 startActivity(intent);
2138 } catch (ActivityNotFoundException ex) {
2139 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
2140 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002141 }
2142
Yura4f93ec62014-02-04 14:15:21 +00002143 public boolean isOnCustomContent() {
2144 return mWorkspace.isOnOrMovingToCustomContent();
2145 }
2146
Winson Chung70d72102011-08-12 11:24:35 -07002147 @Override
Winson Chung70d72102011-08-12 11:24:35 -07002148 public boolean onPrepareOptionsMenu(Menu menu) {
2149 super.onPrepareOptionsMenu(menu);
Yura4f93ec62014-02-04 14:15:21 +00002150 if (!isOnCustomContent()) {
2151 // Close any open folders
2152 closeFolder();
2153 // Stop resizing any widgets
2154 mWorkspace.exitWidgetResizeMode();
2155 if (!mWorkspace.isInOverviewMode()) {
2156 // Show the overview mode
2157 showOverviewMode(true);
2158 } else {
2159 showWorkspace(true);
2160 }
Winson Chunge0298742014-01-17 12:03:00 -08002161 }
Adam Cohen9211d422014-10-07 18:14:53 -07002162 if (mLauncherCallbacks != null) {
2163 return mLauncherCallbacks.onPrepareOptionsMenu(menu);
2164 }
2165
Michael Jurkab94f3f82013-09-11 18:08:54 +02002166 return false;
Winson Chung70d72102011-08-12 11:24:35 -07002167 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002168
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002169 @Override
2170 public boolean onSearchRequested() {
Romain Guycbb89e42009-06-08 15:52:54 -07002171 startSearch(null, false, null, true);
Amith Yamasania135ba82011-08-09 17:42:01 -07002172 // Use a custom animation for launching search
Karl Rosaen138a0412009-04-23 19:00:21 -07002173 return true;
The Android Open Source Projectca9475f2009-03-13 13:04:24 -07002174 }
2175
Joe Onorato9c1289c2009-08-17 11:03:03 -04002176 public boolean isWorkspaceLocked() {
2177 return mWorkspaceLoading || mWaitingForResult;
2178 }
2179
Adam Cohen517a7f52014-03-01 12:12:59 -08002180 public boolean isWorkspaceLoading() {
2181 return mWorkspaceLoading;
2182 }
2183
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002184 private void setWorkspaceLoading(boolean value) {
2185 boolean isLocked = isWorkspaceLocked();
2186 mWorkspaceLoading = value;
2187 if (isLocked != isWorkspaceLocked()) {
2188 onWorkspaceLockedChanged();
2189 }
2190 }
2191
2192 private void setWaitingForResult(boolean value) {
2193 boolean isLocked = isWorkspaceLocked();
2194 mWaitingForResult = value;
2195 if (isLocked != isWorkspaceLocked()) {
2196 onWorkspaceLockedChanged();
2197 }
2198 }
2199
Adam Cohen9211d422014-10-07 18:14:53 -07002200 protected void onWorkspaceLockedChanged() {
2201 if (mLauncherCallbacks != null) {
2202 mLauncherCallbacks.onWorkspaceLockedChanged();
2203 }
2204 }
Anjali Koppalff7ceff2014-05-01 18:26:37 -07002205
Michael Jurka0280c3b2010-09-17 15:00:07 -07002206 private void resetAddInfo() {
Winson Chung3d503fb2011-07-13 17:25:49 -07002207 mPendingAddInfo.container = ItemInfo.NO_ID;
Adam Cohendcd297f2013-06-18 13:13:40 -07002208 mPendingAddInfo.screenId = -1;
Winson Chung3d503fb2011-07-13 17:25:49 -07002209 mPendingAddInfo.cellX = mPendingAddInfo.cellY = -1;
2210 mPendingAddInfo.spanX = mPendingAddInfo.spanY = -1;
Adam Cohend41fbf52012-02-16 23:53:59 -08002211 mPendingAddInfo.minSpanX = mPendingAddInfo.minSpanY = -1;
Michael Jurka0280c3b2010-09-17 15:00:07 -07002212 }
Michael Jurkaa63c4522010-08-19 13:52:27 -07002213
Sunny Goyale6b63a32015-01-16 16:14:29 -08002214 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info, final
Adam Cohen59400422014-03-05 18:07:04 -08002215 AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo) {
Adam Cohenad4e15c2013-10-17 16:21:35 -07002216 addAppWidgetImpl(appWidgetId, info, boundWidget, appWidgetInfo, 0);
2217 }
2218
Sunny Goyale6b63a32015-01-16 16:14:29 -08002219 void addAppWidgetImpl(final int appWidgetId, final ItemInfo info,
Adam Cohen59400422014-03-05 18:07:04 -08002220 final AppWidgetHostView boundWidget, final LauncherAppWidgetProviderInfo appWidgetInfo,
2221 int delay) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002222 if (appWidgetInfo.configure != null) {
2223 mPendingAddWidgetInfo = appWidgetInfo;
Adam Cohen4637b5a2013-11-04 18:21:24 -08002224 mPendingAddWidgetId = appWidgetId;
Michael Jurkaaf442092010-06-10 17:01:57 -07002225
Bjorn Bringert7984c942009-12-09 15:38:25 +00002226 // Launch over to configure widget, if needed
Sunny Goyalffe83f12014-08-14 17:39:34 -07002227 mAppWidgetManager.startConfigActivity(appWidgetInfo, appWidgetId, this,
2228 mAppWidgetHost, REQUEST_CREATE_APPWIDGET);
2229
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002230 } else {
Bjorn Bringert7984c942009-12-09 15:38:25 +00002231 // Otherwise just add it
Adam Cohenad4e15c2013-10-17 16:21:35 -07002232 Runnable onComplete = new Runnable() {
2233 @Override
2234 public void run() {
2235 // Exit spring loaded mode if necessary after adding the widget
2236 exitSpringLoadedDragModeDelayed(true, EXIT_SPRINGLOADED_MODE_SHORT_TIMEOUT,
2237 null);
2238 }
2239 };
Adam Cohendcd297f2013-06-18 13:13:40 -07002240 completeAddAppWidget(appWidgetId, info.container, info.screenId, boundWidget,
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002241 appWidgetInfo);
Adam Cohen689ff162014-05-08 17:27:56 -07002242 mWorkspace.removeExtraEmptyScreenDelayed(true, onComplete, delay, false);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002243 }
2244 }
Romain Guycbb89e42009-06-08 15:52:54 -07002245
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002246 protected void moveToCustomContentScreen(boolean animate) {
Sandeep Siddharthaf2b47f12013-09-26 19:49:27 -07002247 // Close any folders that may be open.
2248 closeFolder();
Allan Wojciechowskiaf110e82013-09-12 10:48:23 +01002249 mWorkspace.moveToCustomContentScreen(animate);
2250 }
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002251
2252 public void addPendingItem(PendingAddItemInfo info, long container, long screenId,
2253 int[] cell, int spanX, int spanY) {
2254 switch (info.itemType) {
2255 case LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET:
2256 case LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET:
2257 int span[] = new int[2];
2258 span[0] = spanX;
2259 span[1] = spanY;
2260 addAppWidgetFromDrop((PendingAddWidgetInfo) info,
2261 container, screenId, cell, span);
2262 break;
2263 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
2264 processShortcutFromDrop(info.componentName, container, screenId, cell);
2265 break;
2266 default:
2267 throw new IllegalStateException("Unknown item type: " + info.itemType);
2268 }
2269 }
2270
Adam Cohenfbba09b2011-07-18 21:43:05 -07002271 /**
2272 * Process a shortcut drop.
2273 *
2274 * @param componentName The name of the component
Adam Cohendcd297f2013-06-18 13:13:40 -07002275 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002276 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002277 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002278 private void processShortcutFromDrop(ComponentName componentName, long container, long screenId,
2279 int[] cell) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07002280 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002281 mPendingAddInfo.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002282 mPendingAddInfo.screenId = screenId;
Adam Cohenfbba09b2011-07-18 21:43:05 -07002283
2284 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002285 mPendingAddInfo.cellX = cell[0];
2286 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002287 }
Michael Jurka0280c3b2010-09-17 15:00:07 -07002288
2289 Intent createShortcutIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
2290 createShortcutIntent.setComponent(componentName);
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002291 Utilities.startActivityForResultSafely(this, createShortcutIntent, REQUEST_CREATE_SHORTCUT);
Michael Jurka0280c3b2010-09-17 15:00:07 -07002292 }
2293
Adam Cohenfbba09b2011-07-18 21:43:05 -07002294 /**
2295 * Process a widget drop.
2296 *
2297 * @param info The PendingAppWidgetInfo of the widget being added.
Adam Cohendcd297f2013-06-18 13:13:40 -07002298 * @param screenId The ID of the screen where it should be added
Adam Cohenfbba09b2011-07-18 21:43:05 -07002299 * @param cell The cell it should be added to, optional
Adam Cohenfbba09b2011-07-18 21:43:05 -07002300 */
Sunny Goyal71b5c0b2015-01-08 16:59:04 -08002301 private void addAppWidgetFromDrop(PendingAddWidgetInfo info, long container, long screenId,
2302 int[] cell, int[] span) {
Adam Cohenfbba09b2011-07-18 21:43:05 -07002303 resetAddInfo();
Winson Chung3d503fb2011-07-13 17:25:49 -07002304 mPendingAddInfo.container = info.container = container;
Adam Cohendcd297f2013-06-18 13:13:40 -07002305 mPendingAddInfo.screenId = info.screenId = screenId;
Adam Cohend41fbf52012-02-16 23:53:59 -08002306 mPendingAddInfo.minSpanX = info.minSpanX;
2307 mPendingAddInfo.minSpanY = info.minSpanY;
2308
Adam Cohenfbba09b2011-07-18 21:43:05 -07002309 if (cell != null) {
Winson Chung3d503fb2011-07-13 17:25:49 -07002310 mPendingAddInfo.cellX = cell[0];
2311 mPendingAddInfo.cellY = cell[1];
Adam Cohenfbba09b2011-07-18 21:43:05 -07002312 }
Adam Cohend41fbf52012-02-16 23:53:59 -08002313 if (span != null) {
2314 mPendingAddInfo.spanX = span[0];
2315 mPendingAddInfo.spanY = span[1];
2316 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002317
Adam Cohened66b2b2012-01-23 17:28:51 -08002318 AppWidgetHostView hostView = info.boundWidget;
2319 int appWidgetId;
2320 if (hostView != null) {
2321 appWidgetId = hostView.getAppWidgetId();
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002322 addAppWidgetImpl(appWidgetId, info, hostView, info.info);
Sunny Goyal5b9ebca2015-06-01 18:37:32 -07002323
2324 // Clear the boundWidget so that it doesn't get destroyed.
2325 info.boundWidget = null;
Adam Cohened66b2b2012-01-23 17:28:51 -08002326 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002327 // In this case, we either need to start an activity to get permission to bind
2328 // the widget, or we need to start an activity to configure the widget, or both.
Adam Cohened66b2b2012-01-23 17:28:51 -08002329 appWidgetId = getAppWidgetHost().allocateAppWidgetId();
Adam Cohendd70d662012-10-04 16:53:44 -07002330 Bundle options = info.bindOptions;
2331
Sunny Goyalffe83f12014-08-14 17:39:34 -07002332 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
2333 appWidgetId, info.info, options);
Adam Cohendd70d662012-10-04 16:53:44 -07002334 if (success) {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002335 addAppWidgetImpl(appWidgetId, info, null, info.info);
Michael Jurka8b805b12012-04-18 14:23:14 -07002336 } else {
Adam Cohen9d5b7d82012-05-09 18:00:44 -07002337 mPendingAddWidgetInfo = info.info;
Michael Jurka8b805b12012-04-18 14:23:14 -07002338 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND);
2339 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
2340 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_PROVIDER, info.componentName);
Sunny Goyalffe83f12014-08-14 17:39:34 -07002341 mAppWidgetManager.getUser(mPendingAddWidgetInfo)
2342 .addToIntent(intent, AppWidgetManager.EXTRA_APPWIDGET_PROVIDER_PROFILE);
Adam Cohendd70d662012-10-04 16:53:44 -07002343 // TODO: we need to make sure that this accounts for the options bundle.
2344 // intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
Michael Jurka8b805b12012-04-18 14:23:14 -07002345 startActivityForResult(intent, REQUEST_BIND_APPWIDGET);
2346 }
Adam Cohened66b2b2012-01-23 17:28:51 -08002347 }
Adam Cohenfbba09b2011-07-18 21:43:05 -07002348 }
2349
Adam Cohendcd297f2013-06-18 13:13:40 -07002350 FolderIcon addFolder(CellLayout layout, long container, final long screenId, int cellX,
Winson Chung3d503fb2011-07-13 17:25:49 -07002351 int cellY) {
Michael Jurkac9d95c52011-08-29 14:03:34 -07002352 final FolderInfo folderInfo = new FolderInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002353 folderInfo.title = getText(R.string.folder_name);
2354
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002355 // Update the model
Sunny Goyal1d4a2df2015-03-30 11:11:46 -07002356 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId,
2357 cellX, cellY);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002358 sFolders.put(folderInfo.id, folderInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002359
2360 // Create the view
Winson Chung3d503fb2011-07-13 17:25:49 -07002361 FolderIcon newFolder =
2362 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07002363 mWorkspace.addInScreen(newFolder, container, screenId, cellX, cellY, 1, 1,
Winson Chung3d503fb2011-07-13 17:25:49 -07002364 isWorkspaceLocked());
Winson Chung5f8afe62013-08-12 16:19:28 -07002365 // Force measure the new folder icon
2366 CellLayout parent = mWorkspace.getParentCellLayoutForView(newFolder);
2367 parent.getShortcutsAndWidgets().measureChild(newFolder);
Adam Cohendf035382011-04-11 17:22:04 -07002368 return newFolder;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002369 }
Romain Guycbb89e42009-06-08 15:52:54 -07002370
Joe Onorato9c1289c2009-08-17 11:03:03 -04002371 void removeFolder(FolderInfo folder) {
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07002372 sFolders.remove(folder.id);
Joe Onorato9c1289c2009-08-17 11:03:03 -04002373 }
2374
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002375 @Override
2376 public boolean dispatchKeyEvent(KeyEvent event) {
2377 if (event.getAction() == KeyEvent.ACTION_DOWN) {
2378 switch (event.getKeyCode()) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002379 case KeyEvent.KEYCODE_HOME:
Dianne Hackborn67800862009-07-24 17:15:20 -07002380 return true;
Joe Onoratobe386092009-11-17 17:32:16 -08002381 case KeyEvent.KEYCODE_VOLUME_DOWN:
Sunny Goyal4bbf4192014-11-11 12:23:59 -08002382 if (Utilities.isPropertyEnabled(DUMP_STATE_PROPERTY)) {
Joe Onoratobe386092009-11-17 17:32:16 -08002383 dumpState();
2384 return true;
2385 }
2386 break;
Dianne Hackborn67800862009-07-24 17:15:20 -07002387 }
2388 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2389 switch (event.getKeyCode()) {
Dianne Hackborn67800862009-07-24 17:15:20 -07002390 case KeyEvent.KEYCODE_HOME:
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002391 return true;
2392 }
2393 }
2394
2395 return super.dispatchKeyEvent(event);
2396 }
2397
Joe Onorato88ec0992009-11-19 13:16:06 -08002398 @Override
2399 public void onBackPressed() {
Adam Cohen9211d422014-10-07 18:14:53 -07002400 if (mLauncherCallbacks != null && mLauncherCallbacks.handleBackPressed()) {
2401 return;
2402 }
2403
Sunny Goyal45478022015-06-08 16:52:41 -07002404 if (mDragController.isDragging()) {
2405 mDragController.cancelDrag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08002406 return;
2407 }
2408
Winson Chungb745afb2015-03-02 11:51:23 -08002409 if (isAppsViewVisible()) {
2410 showWorkspace(true);
2411 } else if (isWidgetsViewVisible()) {
2412 showOverviewMode(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002413 } else if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002414 showWorkspace(true);
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002415 } else if (mWorkspace.getOpenFolder() != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07002416 Folder openFolder = mWorkspace.getOpenFolder();
2417 if (openFolder.isEditingName()) {
2418 openFolder.dismissEditingName();
2419 } else {
2420 closeFolder();
2421 }
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002422 } else {
Patrick Dubroy758a9232011-03-03 19:54:56 -08002423 mWorkspace.exitWidgetResizeMode();
2424
Patrick Dubroy94f78a52011-02-28 17:39:16 -08002425 // Back button is a no-op here, but give at least some feedback for the button press
2426 mWorkspace.showOutlinesTemporarily();
Michael Jurkaaf442092010-06-10 17:01:57 -07002427 }
Joe Onorato88ec0992009-11-19 13:16:06 -08002428 }
2429
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002430 /**
Sunny Goyal383c5072015-06-12 21:18:53 -07002431 * Re-listen when widget host is reset.
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002432 */
Sunny Goyal383c5072015-06-12 21:18:53 -07002433 @Override
2434 public void onAppWidgetHostReset() {
Michael Jurkabbbad6b2011-02-07 13:04:09 -08002435 if (mAppWidgetHost != null) {
2436 mAppWidgetHost.startListening();
2437 }
Jeff Sharkey1e2efc82009-11-06 15:17:59 -08002438 }
2439
2440 /**
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002441 * Launches the intent referred by the clicked shortcut.
2442 *
2443 * @param v The view representing the clicked shortcut.
2444 */
2445 public void onClick(View v) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002446 // Make sure that rogue clicks don't get through while allapps is launching, or after the
2447 // view has detached (it's possible for this to happen if the view is removed mid touch).
2448 if (v.getWindowToken() == null) {
2449 return;
2450 }
2451
Winson Chung9b0b2fe2012-02-24 13:03:34 -08002452 if (!mWorkspace.isFinishedSwitchingState()) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07002453 return;
2454 }
Adam Cohen2f84ef22011-07-26 17:16:44 -07002455
Adam Cohen1697b792013-09-17 19:08:21 -07002456 if (v instanceof Workspace) {
2457 if (mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07002458 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002459 }
2460 return;
2461 }
2462
2463 if (v instanceof CellLayout) {
2464 if (mWorkspace.isInOverviewMode()) {
Sunny Goyalce5a7e52015-07-08 15:44:27 -07002465 mWorkspace.snapToPageFromOverView(mWorkspace.indexOfChild(v));
2466 showWorkspace(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002467 }
Sunny Goyalce5a7e52015-07-08 15:44:27 -07002468 return;
Adam Cohenf358a4b2013-07-23 16:47:31 -07002469 }
2470
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002471 Object tag = v.getTag();
Joe Onorato0589f0f2010-02-08 13:44:00 -08002472 if (tag instanceof ShortcutInfo) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002473 onClickAppShortcut(v);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002474 } else if (tag instanceof FolderInfo) {
Adam Cohena9cf38f2011-05-02 15:36:58 -07002475 if (v instanceof FolderIcon) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002476 onClickFolderIcon(v);
Adam Cohena9cf38f2011-05-02 15:36:58 -07002477 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07002478 } else if (v == mAllAppsButton) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002479 onClickAllAppsButton(v);
Sunny Goyal508da152014-08-14 10:53:27 -07002480 } else if (tag instanceof AppInfo) {
2481 startAppShortcutOrInfoActivity(v);
Sunny Goyalff572272014-07-23 13:58:07 -07002482 } else if (tag instanceof LauncherAppWidgetInfo) {
2483 if (v instanceof PendingAppWidgetHostView) {
2484 onClickPendingWidget((PendingAppWidgetHostView) v);
2485 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002486 }
2487 }
2488
Sunny Goyal70660032015-05-14 00:07:08 -07002489 @SuppressLint("ClickableViewAccessibility")
Michael Jurka0e260592010-06-30 17:07:39 -07002490 public boolean onTouch(View v, MotionEvent event) {
Michael Jurka0e260592010-06-30 17:07:39 -07002491 return false;
2492 }
2493
Michael Jurkaaf442092010-06-10 17:01:57 -07002494 /**
Sunny Goyalff572272014-07-23 13:58:07 -07002495 * Event handler for the app widget view which has not fully restored.
2496 */
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002497 public void onClickPendingWidget(final PendingAppWidgetHostView v) {
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002498 if (mIsSafeModeEnabled) {
2499 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2500 return;
2501 }
2502
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002503 final LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) v.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07002504 if (v.isReadyForClickSetup()) {
Sunny Goyalff572272014-07-23 13:58:07 -07002505 int widgetId = info.appWidgetId;
2506 AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
2507 if (appWidgetInfo != null) {
Adam Cohen59400422014-03-05 18:07:04 -08002508 mPendingAddWidgetInfo = LauncherAppWidgetProviderInfo.fromProviderInfo(
2509 this, appWidgetInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07002510 mPendingAddInfo.copyFrom(info);
2511 mPendingAddWidgetId = widgetId;
2512
Sunny Goyalffe83f12014-08-14 17:39:34 -07002513 AppWidgetManagerCompat.getInstance(this).startConfigActivity(appWidgetInfo,
2514 info.appWidgetId, this, mAppWidgetHost, REQUEST_RECONFIGURE_APPWIDGET);
Sunny Goyalff572272014-07-23 13:58:07 -07002515 }
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002516 } else if (info.installProgress < 0) {
2517 // The install has not been queued
2518 final String packageName = info.providerName.getPackageName();
2519 showBrokenAppInstallDialog(packageName,
2520 new DialogInterface.OnClickListener() {
2521 public void onClick(DialogInterface dialog, int id) {
2522 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
2523 }
2524 });
2525 } else {
2526 // Download has started.
2527 final String packageName = info.providerName.getPackageName();
2528 startActivitySafely(v, LauncherModel.getMarketIntent(packageName), info);
Sunny Goyalff572272014-07-23 13:58:07 -07002529 }
2530 }
2531
2532 /**
Michael Jurka2c3af5f2010-08-03 13:53:20 -07002533 * Event handler for the "grid" button that appears on the home screen, which
2534 * enters all apps mode.
2535 *
2536 * @param v The view that was clicked.
2537 */
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002538 protected void onClickAllAppsButton(View v) {
2539 if (LOGD) Log.d(TAG, "onClickAllAppsButton");
Winson Chung76648c52015-07-10 14:33:23 -07002540 if (!isAppsViewVisible()) {
Winson Chung4ac30062015-05-08 17:34:17 -07002541 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07002542 true /* updatePredictedApps */, false /* focusSearchBar */);
2543 }
2544 }
2545
2546 protected void onLongClickAllAppsButton(View v) {
2547 if (LOGD) Log.d(TAG, "onLongClickAllAppsButton");
2548 if (!isAppsViewVisible()) {
2549 showAppsView(true /* animated */, false /* resetListToTop */,
2550 true /* updatePredictedApps */, true /* focusSearchBar */);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002551 }
2552 }
2553
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002554 private void showBrokenAppInstallDialog(final String packageName,
2555 DialogInterface.OnClickListener onSearchClickListener) {
Sunny Goyale03b8122014-10-08 09:55:24 -07002556 new AlertDialog.Builder(this)
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002557 .setTitle(R.string.abandoned_promises_title)
2558 .setMessage(R.string.abandoned_promise_explanation)
2559 .setPositiveButton(R.string.abandoned_search, onSearchClickListener)
2560 .setNeutralButton(R.string.abandoned_clean_this,
2561 new DialogInterface.OnClickListener() {
2562 public void onClick(DialogInterface dialog, int id) {
2563 final UserHandleCompat user = UserHandleCompat.myUserHandle();
2564 mWorkspace.removeAbandonedPromise(packageName, user);
2565 }
2566 })
2567 .create().show();
2568 return;
2569 }
2570
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002571 /**
2572 * Event handler for an app shortcut click.
2573 *
2574 * @param v The view that was clicked. Must be a tagged with a {@link ShortcutInfo}.
2575 */
Chris Wren40c5ed32014-06-24 18:24:23 -04002576 protected void onClickAppShortcut(final View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002577 if (LOGD) Log.d(TAG, "onClickAppShortcut");
2578 Object tag = v.getTag();
2579 if (!(tag instanceof ShortcutInfo)) {
2580 throw new IllegalArgumentException("Input must be a Shortcut");
2581 }
2582
2583 // Open shortcut
2584 final ShortcutInfo shortcut = (ShortcutInfo) tag;
Sunny Goyal1a745e82014-10-02 15:58:31 -07002585
2586 if (shortcut.isDisabled != 0) {
2587 int error = R.string.activity_not_available;
2588 if ((shortcut.isDisabled & ShortcutInfo.FLAG_DISABLED_SAFEMODE) != 0) {
2589 error = R.string.safemode_shortcut_error;
2590 }
2591 Toast.makeText(this, error, Toast.LENGTH_SHORT).show();
2592 return;
2593 }
2594
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002595 final Intent intent = shortcut.intent;
2596
2597 // Check for special shortcuts
2598 if (intent.getComponent() != null) {
2599 final String shortcutClass = intent.getComponent().getClassName();
2600
2601 if (shortcutClass.equals(MemoryDumpActivity.class.getName())) {
2602 MemoryDumpActivity.startDump(this);
2603 return;
2604 } else if (shortcutClass.equals(ToggleWeightWatcher.class.getName())) {
2605 toggleShowWeightWatcher();
2606 return;
2607 }
2608 }
2609
Chris Wren40c5ed32014-06-24 18:24:23 -04002610 // Check for abandoned promise
Sunny Goyal34942622014-08-29 17:20:55 -07002611 if ((v instanceof BubbleTextView)
2612 && shortcut.isPromise()
2613 && !shortcut.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE)) {
Sunny Goyale7b8cd92014-08-27 14:04:33 -07002614 showBrokenAppInstallDialog(
Sunny Goyal34942622014-08-29 17:20:55 -07002615 shortcut.getTargetComponent().getPackageName(),
Chris Wren40c5ed32014-06-24 18:24:23 -04002616 new DialogInterface.OnClickListener() {
2617 public void onClick(DialogInterface dialog, int id) {
Sunny Goyal508da152014-08-14 10:53:27 -07002618 startAppShortcutOrInfoActivity(v);
Chris Wren40c5ed32014-06-24 18:24:23 -04002619 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002620 });
Chris Wren40c5ed32014-06-24 18:24:23 -04002621 return;
2622 }
2623
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002624 // Start activities
Sunny Goyal508da152014-08-14 10:53:27 -07002625 startAppShortcutOrInfoActivity(v);
Adam Cohen9211d422014-10-07 18:14:53 -07002626
2627 if (mLauncherCallbacks != null) {
2628 mLauncherCallbacks.onClickAppShortcut(v);
2629 }
Chris Wren40c5ed32014-06-24 18:24:23 -04002630 }
2631
Adam Cohen091440a2015-03-18 14:16:05 -07002632 @Thunk void startAppShortcutOrInfoActivity(View v) {
Chris Wren40c5ed32014-06-24 18:24:23 -04002633 Object tag = v.getTag();
Sunny Goyal508da152014-08-14 10:53:27 -07002634 final ShortcutInfo shortcut;
2635 final Intent intent;
2636 if (tag instanceof ShortcutInfo) {
2637 shortcut = (ShortcutInfo) tag;
2638 intent = shortcut.intent;
2639 int[] pos = new int[2];
2640 v.getLocationOnScreen(pos);
2641 intent.setSourceBounds(new Rect(pos[0], pos[1],
2642 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
Chris Wren40c5ed32014-06-24 18:24:23 -04002643
Sunny Goyal508da152014-08-14 10:53:27 -07002644 } else if (tag instanceof AppInfo) {
2645 shortcut = null;
2646 intent = ((AppInfo) tag).intent;
2647 } else {
2648 throw new IllegalArgumentException("Input must be a Shortcut or AppInfo");
2649 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002650
2651 boolean success = startActivitySafely(v, intent, tag);
Winson Chung8f1eff72015-05-28 17:33:40 -07002652 mStats.recordLaunch(v, intent, shortcut);
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002653
2654 if (success && v instanceof BubbleTextView) {
2655 mWaitingForResume = (BubbleTextView) v;
2656 mWaitingForResume.setStayPressed(true);
2657 }
2658 }
2659
2660 /**
2661 * Event handler for a folder icon click.
2662 *
2663 * @param v The view that was clicked. Must be an instance of {@link FolderIcon}.
2664 */
2665 protected void onClickFolderIcon(View v) {
2666 if (LOGD) Log.d(TAG, "onClickFolder");
2667 if (!(v instanceof FolderIcon)){
2668 throw new IllegalArgumentException("Input must be a FolderIcon");
2669 }
2670
2671 FolderIcon folderIcon = (FolderIcon) v;
2672 final FolderInfo info = folderIcon.getFolderInfo();
2673 Folder openFolder = mWorkspace.getFolderForTag(info);
2674
2675 // If the folder info reports that the associated folder is open, then verify that
2676 // it is actually opened. There have been a few instances where this gets out of sync.
2677 if (info.opened && openFolder == null) {
2678 Log.d(TAG, "Folder info marked as open, but associated folder is not open. Screen: "
2679 + info.screenId + " (" + info.cellX + ", " + info.cellY + ")");
2680 info.opened = false;
2681 }
2682
2683 if (!info.opened && !folderIcon.getFolder().isDestroyed()) {
2684 // Close any open folder
2685 closeFolder();
2686 // Open the requested folder
2687 openFolder(folderIcon);
2688 } else {
2689 // Find the open folder...
2690 int folderScreen;
2691 if (openFolder != null) {
2692 folderScreen = mWorkspace.getPageForView(openFolder);
2693 // .. and close it
2694 closeFolder(openFolder);
2695 if (folderScreen != mWorkspace.getCurrentPage()) {
2696 // Close any folder open on the current screen
2697 closeFolder();
2698 // Pull the folder onto this screen
2699 openFolder(folderIcon);
2700 }
2701 }
2702 }
Adam Cohen9211d422014-10-07 18:14:53 -07002703
2704 if (mLauncherCallbacks != null) {
2705 mLauncherCallbacks.onClickFolderIcon(v);
2706 }
Michael Jurka5130e402011-10-13 04:55:35 -07002707 }
2708
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002709 /**
2710 * Event handler for the (Add) Widgets button that appears after a long press
2711 * on the home screen.
2712 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002713 protected void onClickAddWidgetButton(View view) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002714 if (LOGD) Log.d(TAG, "onClickAddWidgetButton");
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002715 if (mIsSafeModeEnabled) {
2716 Toast.makeText(this, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show();
2717 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08002718 showWidgetsView(true /* animated */, true /* resetPageToZero */);
Sunny Goyal9b4b0812014-10-08 10:47:28 -07002719 if (mLauncherCallbacks != null) {
2720 mLauncherCallbacks.onClickAddWidgetButton(view);
2721 }
Adam Cohen9211d422014-10-07 18:14:53 -07002722 }
Sandeep Siddharthad8058372014-01-28 10:41:15 -08002723 }
2724
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002725 /**
2726 * Event handler for the wallpaper picker button that appears after a long press
2727 * on the home screen.
2728 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002729 protected void onClickWallpaperPicker(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002730 if (LOGD) Log.d(TAG, "onClickWallpaperPicker");
Sunny Goyal6a1e95a2015-03-20 17:26:30 -07002731 startActivityForResult(new Intent(Intent.ACTION_SET_WALLPAPER).setPackage(getPackageName()),
2732 REQUEST_PICK_WALLPAPER);
Adam Cohen9211d422014-10-07 18:14:53 -07002733
2734 if (mLauncherCallbacks != null) {
2735 mLauncherCallbacks.onClickWallpaperPicker(v);
2736 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002737 }
2738
2739 /**
2740 * Event handler for a click on the settings button that appears after a long press
2741 * on the home screen.
2742 */
Anjali Koppal7b168a12014-03-04 17:16:11 -08002743 protected void onClickSettingsButton(View v) {
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002744 if (LOGD) Log.d(TAG, "onClickSettingsButton");
Adam Cohen9211d422014-10-07 18:14:53 -07002745 if (mLauncherCallbacks != null) {
2746 mLauncherCallbacks.onClickSettingsButton(v);
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07002747 } else {
Sunny Goyal4f3e9382015-06-05 00:13:25 -07002748 startActivity(new Intent(this, SettingsActivity.class));
Adam Cohen9211d422014-10-07 18:14:53 -07002749 }
Sandeep Siddharthaa9420302014-02-12 18:24:31 -08002750 }
2751
Adam Cohen61f560d2013-09-30 15:58:20 -07002752 public View.OnTouchListener getHapticFeedbackTouchListener() {
2753 if (mHapticFeedbackTouchListener == null) {
2754 mHapticFeedbackTouchListener = new View.OnTouchListener() {
Sunny Goyal70660032015-05-14 00:07:08 -07002755 @SuppressLint("ClickableViewAccessibility")
Adam Cohen61f560d2013-09-30 15:58:20 -07002756 @Override
2757 public boolean onTouch(View v, MotionEvent event) {
2758 if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
2759 v.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
2760 }
2761 return false;
2762 }
2763 };
2764 }
2765 return mHapticFeedbackTouchListener;
2766 }
2767
Adam Cohen9211d422014-10-07 18:14:53 -07002768 public void onDragStarted(View view) {
2769 if (isOnCustomContent()) {
2770 // Custom content screen doesn't participate in drag and drop. If on custom
2771 // content screen, move to default.
2772 moveWorkspaceToDefaultScreen();
2773 }
2774
2775 if (mLauncherCallbacks != null) {
2776 mLauncherCallbacks.onDragStarted(view);
2777 }
2778 }
Anjali Koppal62d18ed2014-03-10 17:04:03 -07002779
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002780 /**
2781 * Called when the user stops interacting with the launcher.
2782 * This implies that the user is now on the homescreen and is not doing housekeeping.
2783 */
Adam Cohen9211d422014-10-07 18:14:53 -07002784 protected void onInteractionEnd() {
2785 if (mLauncherCallbacks != null) {
2786 mLauncherCallbacks.onInteractionEnd();
2787 }
2788 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002789
2790 /**
2791 * Called when the user starts interacting with the launcher.
2792 * The possible interactions are:
2793 * - open all apps
2794 * - reorder an app shortcut, or a widget
2795 * - open the overview mode.
2796 * This is a good time to stop doing things that only make sense
2797 * when the user is on the homescreen and not doing housekeeping.
2798 */
Adam Cohen9211d422014-10-07 18:14:53 -07002799 protected void onInteractionBegin() {
2800 if (mLauncherCallbacks != null) {
2801 mLauncherCallbacks.onInteractionBegin();
2802 }
2803 }
Sandeep Siddharthaab2d9d72013-09-17 13:18:24 -07002804
Winson Chungcd99cd32015-04-29 11:03:24 -07002805 /** Updates the interaction state. */
2806 public void updateInteraction(Workspace.State fromState, Workspace.State toState) {
Winson Chung83f59ab2015-05-05 17:21:58 -07002807 // Only update the interacting state if we are transitioning to/from a view with an
Winson Chungcd99cd32015-04-29 11:03:24 -07002808 // overlay
Winson Chungef7f8742015-06-04 17:18:17 -07002809 boolean fromStateWithOverlay = fromState != Workspace.State.NORMAL;
2810 boolean toStateWithOverlay = toState != Workspace.State.NORMAL;
Winson Chung83f59ab2015-05-05 17:21:58 -07002811 if (toStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002812 onInteractionBegin();
Winson Chung83f59ab2015-05-05 17:21:58 -07002813 } else if (fromStateWithOverlay) {
Winson Chungcd99cd32015-04-29 11:03:24 -07002814 onInteractionEnd();
2815 }
2816 }
2817
Kenny Guyf07af7b2014-07-31 11:39:16 +01002818 void startApplicationDetailsActivity(ComponentName componentName, UserHandleCompat user) {
Kenny Guyf07af7b2014-07-31 11:39:16 +01002819 try {
2820 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Kenny Guyf07af7b2014-07-31 11:39:16 +01002821 launcherApps.showAppDetailsForProfile(componentName, user);
2822 } catch (SecurityException e) {
2823 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2824 Log.e(TAG, "Launcher does not have permission to launch settings");
2825 } catch (ActivityNotFoundException e) {
2826 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2827 Log.e(TAG, "Unable to launch settings");
2828 }
Patrick Dubroy4ed62782010-08-17 15:11:18 -07002829 }
2830
Michael Jurka1e2f4652013-07-08 18:03:46 -07002831 // returns true if the activity was started
Kenny Guyd31df542014-06-30 15:12:11 +01002832 boolean startApplicationUninstallActivity(ComponentName componentName, int flags,
2833 UserHandleCompat user) {
Michael Jurkaeadbfc52013-09-04 00:45:37 +02002834 if ((flags & AppInfo.DOWNLOADED_FLAG) == 0) {
Patrick Dubroy5539af72010-09-07 15:22:01 -07002835 // System applications cannot be installed. For now, show a toast explaining that.
2836 // We may give them the option of disabling apps this way.
2837 int messageId = R.string.uninstall_system_app_text;
2838 Toast.makeText(this, messageId, Toast.LENGTH_SHORT).show();
Michael Jurka1e2f4652013-07-08 18:03:46 -07002839 return false;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002840 } else {
Michael Jurka1e2f4652013-07-08 18:03:46 -07002841 String packageName = componentName.getPackageName();
2842 String className = componentName.getClassName();
Patrick Dubroy5539af72010-09-07 15:22:01 -07002843 Intent intent = new Intent(
2844 Intent.ACTION_DELETE, Uri.fromParts("package", packageName, className));
Winson Chungdff8ebb2011-09-08 17:25:31 -07002845 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
2846 Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Kenny Guyd31df542014-06-30 15:12:11 +01002847 if (user != null) {
2848 user.addToIntent(intent, Intent.EXTRA_USER);
2849 }
Patrick Dubroy5539af72010-09-07 15:22:01 -07002850 startActivity(intent);
Michael Jurka1e2f4652013-07-08 18:03:46 -07002851 return true;
Patrick Dubroy5539af72010-09-07 15:22:01 -07002852 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -07002853 }
2854
Winson Chung8f1eff72015-05-28 17:33:40 -07002855 private boolean startActivity(View v, Intent intent, Object tag) {
Kenny Guyb6cc40b2014-05-13 15:58:58 +01002856 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002857 try {
Winson Chung2672ff92012-05-04 16:22:30 -07002858 // Only launch using the new animation if the shortcut has not opted out (this is a
2859 // private contract between launcher and may be ignored in the future).
2860 boolean useLaunchAnimation = (v != null) &&
2861 !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION);
Kenny Guyed131872014-04-30 03:02:21 +01002862 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
2863 UserManagerCompat userManager = UserManagerCompat.getInstance(this);
Kenny Guyed131872014-04-30 03:02:21 +01002864
Kenny Guy1317e2d2014-05-08 18:52:50 +01002865 UserHandleCompat user = null;
2866 if (intent.hasExtra(AppInfo.EXTRA_PROFILE)) {
2867 long serialNumber = intent.getLongExtra(AppInfo.EXTRA_PROFILE, -1);
2868 user = userManager.getUserForSerialNumber(serialNumber);
2869 }
2870
2871 Bundle optsBundle = null;
Winson Chung2672ff92012-05-04 16:22:30 -07002872 if (useLaunchAnimation) {
Chet Haasea8f996d2015-02-17 12:56:04 -08002873 ActivityOptions opts = null;
2874 if (sClipRevealMethod != null) {
2875 // TODO: call method directly when Launcher3 can depend on M APIs
2876 int left = 0, top = 0;
2877 int width = v.getMeasuredWidth(), height = v.getMeasuredHeight();
2878 if (v instanceof TextView) {
2879 // Launch from center of icon, not entire view
Winson Chungb745afb2015-03-02 11:51:23 -08002880 Drawable icon = Workspace.getTextViewIcon((TextView) v);
2881 if (icon != null) {
2882 Rect bounds = icon.getBounds();
Chet Haasea8f996d2015-02-17 12:56:04 -08002883 left = (width - bounds.width()) / 2;
Winson Chungb745afb2015-03-02 11:51:23 -08002884 top = v.getPaddingTop();
Chet Haasea8f996d2015-02-17 12:56:04 -08002885 width = bounds.width();
2886 height = bounds.height();
2887 }
2888 }
2889 try {
2890 opts = (ActivityOptions) sClipRevealMethod.invoke(null, v,
2891 left, top, width, height);
2892 } catch (IllegalAccessException e) {
2893 Log.d(TAG, "Could not call makeClipRevealAnimation: " + e);
2894 sClipRevealMethod = null;
2895 } catch (InvocationTargetException e) {
2896 Log.d(TAG, "Could not call makeClipRevealAnimation: " + e);
2897 sClipRevealMethod = null;
2898 }
2899 }
Adam Cohen2e52c902015-04-06 13:11:28 -07002900 if (opts == null && !Utilities.isLmpOrAbove()) {
Adam Cohen947e02b2015-05-22 19:23:34 -07002901 // Below L, we use a scale up animation
Adam Cohen2e52c902015-04-06 13:11:28 -07002902 opts = ActivityOptions.makeScaleUpAnimation(v, 0, 0,
Chet Haasea8f996d2015-02-17 12:56:04 -08002903 v.getMeasuredWidth(), v.getMeasuredHeight());
Adam Cohen947e02b2015-05-22 19:23:34 -07002904 } else if (opts == null && Utilities.isLmpMR1()) {
2905 // On L devices, we use the device default slide-up transition.
2906 // On L MR1 devices, we a custom version of the slide-up transition which
2907 // doesn't have the delay present in the device default.
2908 opts = ActivityOptions.makeCustomAnimation(this,
2909 R.anim.task_open_enter, R.anim.no_anim);
Chet Haasea8f996d2015-02-17 12:56:04 -08002910 }
Adam Cohen2e52c902015-04-06 13:11:28 -07002911 optsBundle = opts != null ? opts.toBundle() : null;
Adam Cohen6ea3b112014-06-11 11:38:49 -07002912 }
Kenny Guy1317e2d2014-05-08 18:52:50 +01002913
2914 if (user == null || user.equals(UserHandleCompat.myUserHandle())) {
2915 // Could be launching some bookkeeping activity
2916 startActivity(intent, optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002917 } else {
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002918 // TODO Component can be null when shortcuts are supported for secondary user
Kenny Guyc2bd8102014-06-30 12:30:31 +01002919 launcherApps.startActivityForProfile(intent.getComponent(), user,
2920 intent.getSourceBounds(), optsBundle);
Winson Chungc7450e32012-04-17 17:34:08 -07002921 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002922 return true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002923 } catch (SecurityException e) {
2924 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
Joe Onoratoa30ce8e2009-11-11 08:16:49 -08002925 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002926 ". Make sure to create a MAIN intent-filter for the corresponding activity " +
Joe Onoratof984e852010-03-25 09:47:45 -07002927 "or use the exported attribute for this activity. "
2928 + "tag="+ tag + " intent=" + intent, e);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002929 }
Michael Jurkaddd62e92011-02-16 17:49:14 -08002930 return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08002931 }
Winson Chungaafa03c2010-06-11 17:34:16 -07002932
Sunny Goyal383c5072015-06-12 21:18:53 -07002933 @Thunk boolean startActivitySafely(View v, Intent intent, Object tag) {
Michael Jurka86a720e2012-05-09 11:23:23 -07002934 boolean success = false;
Sunny Goyalc5c60ad2014-07-14 12:02:01 -07002935 if (mIsSafeModeEnabled && !Utilities.isSystemApp(this, intent)) {
2936 Toast.makeText(this, R.string.safemode_shortcut_error, Toast.LENGTH_SHORT).show();
2937 return false;
2938 }
Michael Jurka86a720e2012-05-09 11:23:23 -07002939 try {
2940 success = startActivity(v, intent, tag);
2941 } catch (ActivityNotFoundException e) {
2942 Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show();
2943 Log.e(TAG, "Unable to launch. tag=" + tag + " intent=" + intent, e);
2944 }
2945 return success;
2946 }
2947
Adam Cohen268c4752012-06-06 17:47:33 -07002948 /**
2949 * This method draws the FolderIcon to an ImageView and then adds and positions that ImageView
2950 * in the DragLayer in the exact absolute location of the original FolderIcon.
2951 */
2952 private void copyFolderIconToImage(FolderIcon fi) {
2953 final int width = fi.getMeasuredWidth();
2954 final int height = fi.getMeasuredHeight();
2955
2956 // Lazy load ImageView, Bitmap and Canvas
2957 if (mFolderIconImageView == null) {
2958 mFolderIconImageView = new ImageView(this);
2959 }
2960 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
2961 mFolderIconBitmap.getHeight() != height) {
2962 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
2963 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
2964 }
2965
2966 DragLayer.LayoutParams lp;
2967 if (mFolderIconImageView.getLayoutParams() instanceof DragLayer.LayoutParams) {
2968 lp = (DragLayer.LayoutParams) mFolderIconImageView.getLayoutParams();
2969 } else {
2970 lp = new DragLayer.LayoutParams(width, height);
2971 }
2972
Adam Cohen307fe232012-08-16 17:55:58 -07002973 // The layout from which the folder is being opened may be scaled, adjust the starting
2974 // view size by this scale factor.
2975 float scale = mDragLayer.getDescendantRectRelativeToSelf(fi, mRectForFolderAnimation);
Adam Cohen268c4752012-06-06 17:47:33 -07002976 lp.customPosition = true;
2977 lp.x = mRectForFolderAnimation.left;
2978 lp.y = mRectForFolderAnimation.top;
Adam Cohen307fe232012-08-16 17:55:58 -07002979 lp.width = (int) (scale * width);
2980 lp.height = (int) (scale * height);
Adam Cohen268c4752012-06-06 17:47:33 -07002981
2982 mFolderIconCanvas.drawColor(0, PorterDuff.Mode.CLEAR);
2983 fi.draw(mFolderIconCanvas);
2984 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
Adam Cohenfb91f302012-06-11 15:45:18 -07002985 if (fi.getFolder() != null) {
2986 mFolderIconImageView.setPivotX(fi.getFolder().getPivotXForIconAnimation());
2987 mFolderIconImageView.setPivotY(fi.getFolder().getPivotYForIconAnimation());
Adam Cohen8ec23032012-06-08 14:46:22 -07002988 }
Adam Cohen268c4752012-06-06 17:47:33 -07002989 // Just in case this image view is still in the drag layer from a previous animation,
2990 // we remove it and re-add it.
2991 if (mDragLayer.indexOfChild(mFolderIconImageView) != -1) {
2992 mDragLayer.removeView(mFolderIconImageView);
2993 }
2994 mDragLayer.addView(mFolderIconImageView, lp);
Adam Cohenfb91f302012-06-11 15:45:18 -07002995 if (fi.getFolder() != null) {
2996 fi.getFolder().bringToFront();
Adam Cohen8ec23032012-06-08 14:46:22 -07002997 }
Adam Cohen268c4752012-06-06 17:47:33 -07002998 }
2999
Adam Cohen2801caf2011-05-13 20:57:39 -07003000 private void growAndFadeOutFolderIcon(FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003001 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003002 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
3003 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.5f);
3004 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.5f);
3005
Adam Cohenc51934b2011-07-26 21:07:43 -07003006 FolderInfo info = (FolderInfo) fi.getTag();
3007 if (info.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3008 CellLayout cl = (CellLayout) fi.getParent().getParent();
Winson Chunge50adee2011-08-11 16:12:00 -07003009 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) fi.getLayoutParams();
3010 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY);
Adam Cohenc51934b2011-07-26 21:07:43 -07003011 }
3012
Adam Cohen268c4752012-06-06 17:47:33 -07003013 // Push an ImageView copy of the FolderIcon into the DragLayer and hide the original
3014 copyFolderIconToImage(fi);
3015 fi.setVisibility(View.INVISIBLE);
3016
Michael Jurka2ecf9952012-06-18 12:52:28 -07003017 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003018 scaleX, scaleY);
Kenny Guyd794a3f2014-09-16 15:17:58 +01003019 if (Utilities.isLmpOrAbove()) {
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003020 oa.setInterpolator(new LogDecelerateInterpolator(100, 0));
3021 }
3022 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohen2801caf2011-05-13 20:57:39 -07003023 oa.start();
3024 }
3025
Adam Cohen268c4752012-06-06 17:47:33 -07003026 private void shrinkAndFadeInFolderIcon(final FolderIcon fi) {
Adam Cohen9932a9b2011-08-02 22:14:07 -07003027 if (fi == null) return;
Adam Cohen2801caf2011-05-13 20:57:39 -07003028 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
3029 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
3030 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
3031
Adam Cohen268c4752012-06-06 17:47:33 -07003032 final CellLayout cl = (CellLayout) fi.getParent().getParent();
Adam Cohenc51934b2011-07-26 21:07:43 -07003033
Adam Cohen268c4752012-06-06 17:47:33 -07003034 // We remove and re-draw the FolderIcon in-case it has changed
3035 mDragLayer.removeView(mFolderIconImageView);
3036 copyFolderIconToImage(fi);
Michael Jurka2ecf9952012-06-18 12:52:28 -07003037 ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
Adam Cohen268c4752012-06-06 17:47:33 -07003038 scaleX, scaleY);
Adam Cohenc4fe9ea2014-08-18 18:54:10 -07003039 oa.setDuration(getResources().getInteger(R.integer.config_folderExpandDuration));
Adam Cohenc51934b2011-07-26 21:07:43 -07003040 oa.addListener(new AnimatorListenerAdapter() {
3041 @Override
3042 public void onAnimationEnd(Animator animation) {
Adam Cohen268c4752012-06-06 17:47:33 -07003043 if (cl != null) {
3044 cl.clearFolderLeaveBehind();
3045 // Remove the ImageView copy of the FolderIcon and make the original visible.
3046 mDragLayer.removeView(mFolderIconImageView);
3047 fi.setVisibility(View.VISIBLE);
Adam Cohenc51934b2011-07-26 21:07:43 -07003048 }
3049 }
3050 });
Adam Cohen2801caf2011-05-13 20:57:39 -07003051 oa.start();
3052 }
3053
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003054 /**
Michael Jurka774bd372010-10-22 13:40:50 -07003055 * Opens the user folder described by the specified tag. The opening of the folder
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003056 * is animated relative to the specified View. If the View is null, no animation
3057 * is played.
3058 *
3059 * @param folderInfo The FolderInfo describing the folder to open.
3060 */
Adam Cohena9cf38f2011-05-02 15:36:58 -07003061 public void openFolder(FolderIcon folderIcon) {
Adam Cohenfb91f302012-06-11 15:45:18 -07003062 Folder folder = folderIcon.getFolder();
Sunny Goyalf4066152015-04-15 09:42:19 -07003063 Folder openFolder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
3064 if (openFolder != null && openFolder != folder) {
3065 // Close any open folder before opening a folder.
3066 closeFolder();
3067 }
3068
Adam Cohena9cf38f2011-05-02 15:36:58 -07003069 FolderInfo info = folder.mInfo;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003070
Adam Cohena9cf38f2011-05-02 15:36:58 -07003071 info.opened = true;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003072
Sunny Goyalf4066152015-04-15 09:42:19 -07003073 // While the folder is open, the position of the icon cannot change.
3074 ((CellLayout.LayoutParams) folderIcon.getLayoutParams()).canReorder = false;
3075
Adam Cohen4554ee12011-08-03 16:13:21 -07003076 // Just verify that the folder hasn't already been added to the DragLayer.
3077 // There was a one-off crash where the folder had a parent already.
3078 if (folder.getParent() == null) {
3079 mDragLayer.addView(folder);
3080 mDragController.addDropTarget((DropTarget) folder);
3081 } else {
3082 Log.w(TAG, "Opening folder (" + folder + ") which already has a parent (" +
3083 folder.getParent() + ").");
3084 }
Adam Cohena9cf38f2011-05-02 15:36:58 -07003085 folder.animateOpen();
Adam Cohen268c4752012-06-06 17:47:33 -07003086 growAndFadeOutFolderIcon(folderIcon);
Winson Chung83ca4802013-04-12 15:10:52 -07003087
3088 // Notify the accessibility manager that this folder "window" has appeared and occluded
3089 // the workspace items
3090 folder.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
3091 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Adam Cohen4554ee12011-08-03 16:13:21 -07003092 }
3093
3094 public void closeFolder() {
Adam Cohen37c717f2013-11-26 11:50:15 -08003095 Folder folder = mWorkspace != null ? mWorkspace.getOpenFolder() : null;
Adam Cohen4554ee12011-08-03 16:13:21 -07003096 if (folder != null) {
Adam Cohenac56cff2011-09-28 20:45:37 -07003097 if (folder.isEditingName()) {
3098 folder.dismissEditingName();
3099 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003100 closeFolder(folder);
3101 }
3102 }
3103
Sunny Goyal83a8f042015-05-19 12:52:12 -07003104 public void closeFolder(Folder folder) {
Adam Cohen4554ee12011-08-03 16:13:21 -07003105 folder.getInfo().opened = false;
3106
3107 ViewGroup parent = (ViewGroup) folder.getParent().getParent();
3108 if (parent != null) {
3109 FolderIcon fi = (FolderIcon) mWorkspace.getViewForTag(folder.mInfo);
3110 shrinkAndFadeInFolderIcon(fi);
Sunny Goyalf4066152015-04-15 09:42:19 -07003111 if (fi != null) {
3112 ((CellLayout.LayoutParams) fi.getLayoutParams()).canReorder = true;
3113 }
Adam Cohen4554ee12011-08-03 16:13:21 -07003114 }
3115 folder.animateClosed();
Winson Chung83ca4802013-04-12 15:10:52 -07003116
3117 // Notify the accessibility manager that this folder "window" has disappeard and no
3118 // longer occludeds the workspace items
3119 getDragLayer().sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003120 }
3121
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003122 public boolean onLongClick(View v) {
Winson Chung36a62fe2012-05-06 18:04:42 -07003123 if (!isDraggingEnabled()) return false;
3124 if (isWorkspaceLocked()) return false;
3125 if (mState != State.WORKSPACE) return false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003126
Winson Chung76648c52015-07-10 14:33:23 -07003127 if (v == mAllAppsButton) {
3128 onLongClickAllAppsButton(v);
3129 return true;
3130 }
3131
Adam Cohen1697b792013-09-17 19:08:21 -07003132 if (v instanceof Workspace) {
3133 if (!mWorkspace.isInOverviewMode()) {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003134 if (!mWorkspace.isTouchActive()) {
3135 showOverviewMode(true);
Adam Cohen93c97562013-09-26 13:48:01 -07003136 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3137 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
3138 return true;
3139 } else {
3140 return false;
3141 }
Adam Cohenaa4c8c12014-06-06 11:52:52 -07003142 } else {
3143 return false;
Adam Cohen1697b792013-09-17 19:08:21 -07003144 }
Adam Cohen1697b792013-09-17 19:08:21 -07003145 }
3146
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003147 CellLayout.CellInfo longClickCellInfo = null;
3148 View itemUnderLongClick = null;
3149 if (v.getTag() instanceof ItemInfo) {
3150 ItemInfo info = (ItemInfo) v.getTag();
Adam Cohenc9735cf2015-01-23 16:11:55 -08003151 longClickCellInfo = new CellLayout.CellInfo(v, info);
Adam Cohene0aaa0d2014-05-12 12:44:22 -07003152 itemUnderLongClick = longClickCellInfo.cell;
3153 resetAddInfo();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003154 }
3155
Winson Chung3d503fb2011-07-13 17:25:49 -07003156 // The hotseat touch handling does not go through Workspace, and we always allow long press
3157 // on hotseat items.
Dan Sandlere26d0942014-01-13 14:30:14 -05003158 final boolean inHotseat = isHotseatLayout(v);
Sunny Goyal8e2133b2015-05-06 13:39:07 -07003159 if (!mDragController.isDragging()) {
Michael Jurka0280c3b2010-09-17 15:00:07 -07003160 if (itemUnderLongClick == null) {
Adam Cohend3ecce92013-09-16 14:58:00 -07003161 // User long pressed on empty space
3162 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
3163 HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
Adam Cohend3ecce92013-09-16 14:58:00 -07003164 if (mWorkspace.isInOverviewMode()) {
3165 mWorkspace.startReordering(v);
3166 } else {
Winson Chungdc61c4d2015-04-20 18:26:57 -07003167 showOverviewMode(true);
Adam Cohendedbd962013-07-11 14:21:49 -07003168 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003169 } else {
Dan Sandlere26d0942014-01-13 14:30:14 -05003170 final boolean isAllAppsButton = inHotseat && isAllAppsButtonRank(
3171 mHotseat.getOrderInHotseat(
3172 longClickCellInfo.cellX,
3173 longClickCellInfo.cellY));
3174 if (!(itemUnderLongClick instanceof Folder || isAllAppsButton)) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003175 // User long pressed on an item
Michael Jurka0280c3b2010-09-17 15:00:07 -07003176 mWorkspace.startDrag(longClickCellInfo);
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003177 }
3178 }
3179 }
3180 return true;
3181 }
3182
Winson Chung3d503fb2011-07-13 17:25:49 -07003183 boolean isHotseatLayout(View layout) {
3184 return mHotseat != null && layout != null &&
3185 (layout instanceof CellLayout) && (layout == mHotseat.getLayout());
3186 }
Romain Guy1fbc1c82009-11-09 20:43:08 -08003187
Winson Chung3d503fb2011-07-13 17:25:49 -07003188 /**
3189 * Returns the CellLayout of the specified container at the specified screen.
3190 */
Sunny Goyal92820592015-03-02 11:31:35 -08003191 public CellLayout getCellLayout(long container, long screenId) {
Winson Chung3d503fb2011-07-13 17:25:49 -07003192 if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
3193 if (mHotseat != null) {
3194 return mHotseat.getLayout();
3195 } else {
3196 return null;
Romain Guye6b8e2f2009-11-10 11:56:55 -08003197 }
Winson Chung3d503fb2011-07-13 17:25:49 -07003198 } else {
Winson Chungb745afb2015-03-02 11:51:23 -08003199 return mWorkspace.getScreenWithId(screenId);
Romain Guya6abce82009-11-10 02:54:41 -08003200 }
3201 }
3202
Winson Chungb745afb2015-03-02 11:51:23 -08003203 /**
3204 * For overridden classes.
3205 */
Daniel Sandler843e8602010-06-07 14:59:01 -04003206 public boolean isAllAppsVisible() {
Winson Chungb745afb2015-03-02 11:51:23 -08003207 return isAppsViewVisible();
3208 }
3209
3210 public boolean isAppsViewVisible() {
3211 return (mState == State.APPS) || (mOnResumeState == State.APPS);
3212 }
3213
3214 public boolean isWidgetsViewVisible() {
3215 return (mState == State.WIDGETS) || (mOnResumeState == State.WIDGETS);
Joe Onoratofb0ca672009-09-14 17:55:46 -04003216 }
3217
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003218 private void setWorkspaceBackground(int background) {
3219 switch (background) {
3220 case WORKSPACE_BACKGROUND_TRANSPARENT:
3221 getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
3222 break;
3223 case WORKSPACE_BACKGROUND_BLACK:
3224 getWindow().setBackgroundDrawable(null);
3225 break;
3226 default:
3227 getWindow().setBackgroundDrawable(mWorkspaceBackgroundDrawable);
3228 }
Craig Mautner360310b2012-10-26 15:13:08 -07003229 }
3230
Selim Cinek3a8a8f72014-01-16 10:38:38 -08003231 protected void changeWallpaperVisiblity(boolean visible) {
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003232 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
3233 int curflags = getWindow().getAttributes().flags
3234 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
3235 if (wpflags != curflags) {
3236 getWindow().setFlags(wpflags, WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER);
3237 }
Sunny Goyal4a6c6f32015-05-19 12:36:46 -07003238 setWorkspaceBackground(visible ? WORKSPACE_BACKGROUND_GRADIENT : WORKSPACE_BACKGROUND_BLACK);
Dianne Hackbornbb003a52011-08-30 14:40:07 -07003239 }
3240
Michael Jurkae326f182011-11-21 14:05:46 -08003241 @Override
3242 public void onTrimMemory(int level) {
3243 super.onTrimMemory(level);
Adam Cohen3f9c9712014-10-31 11:48:25 -07003244 if (level >= ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) {
3245 // The widget preview db can result in holding onto over
3246 // 3MB of memory for caching which isn't necessary.
3247 SQLiteDatabase.releaseMemory();
3248
Adam Cohenc8f4e1b2014-11-19 16:03:20 -08003249 // This clears all widget bitmaps from the widget tray
Hyunyoung Song3f471442015-04-08 19:01:34 -07003250 // TODO(hyunyoungs)
Michael Jurkae326f182011-11-21 14:05:46 -08003251 }
Robert Kozikowski67c30862015-03-30 23:46:46 +01003252 if (mLauncherCallbacks != null) {
3253 mLauncherCallbacks.onTrimMemory(level);
3254 }
Michael Jurkae326f182011-11-21 14:05:46 -08003255 }
3256
Winson Chungb745afb2015-03-02 11:51:23 -08003257 @Override
3258 public void onStateTransitionHideSearchBar() {
3259 // Hide the search bar
3260 if (mSearchDropTargetBar != null) {
3261 mSearchDropTargetBar.hideSearchBar(false /* animated */);
3262 }
Adam Cohened66b2b2012-01-23 17:28:51 -08003263 }
3264
Winson Chung5f4e0fd2015-05-22 11:12:27 -07003265 public void showWorkspace(boolean animated) {
Sunny Goyalce5a7e52015-07-08 15:44:27 -07003266 showWorkspace(animated, null);
Adam Cohened307df2013-10-02 09:37:31 -07003267 }
3268
Sunny Goyal83a8f042015-05-19 12:52:12 -07003269 public void showWorkspace(boolean animated, Runnable onCompleteRunnable) {
Winson Chung0f785722015-04-08 10:27:49 -07003270 boolean changed = mState != State.WORKSPACE ||
3271 mWorkspace.getState() != Workspace.State.NORMAL;
3272 if (changed) {
Winson Chung2d75f122013-09-23 16:53:31 -07003273 boolean wasInSpringLoadedMode = (mState != State.WORKSPACE);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003274 mWorkspace.setVisibility(View.VISIBLE);
Winson Chungb745afb2015-03-02 11:51:23 -08003275 mStateTransitionAnimation.startAnimationToWorkspace(mState, Workspace.State.NORMAL,
Sunny Goyalce5a7e52015-07-08 15:44:27 -07003276 animated, onCompleteRunnable);
Michael Jurkab3e22d92011-10-31 15:58:33 -07003277
Winson Chungc7d2b602012-05-16 17:02:20 -07003278 // Show the search bar (only animate if we were showing the drop target bar in spring
3279 // loaded mode)
Winson Chungadf0c182012-08-23 14:59:07 -07003280 if (mSearchDropTargetBar != null) {
Winson Chung04c0a5c2013-10-08 17:13:12 -07003281 mSearchDropTargetBar.showSearchBar(animated && wasInSpringLoadedMode);
Winson Chungadf0c182012-08-23 14:59:07 -07003282 }
Winson Chungc7d2b602012-05-16 17:02:20 -07003283
Michael Jurkab3e22d92011-10-31 15:58:33 -07003284 // Set focus to the AppsCustomize button
3285 if (mAllAppsButton != null) {
3286 mAllAppsButton.requestFocus();
3287 }
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003288 }
Adam Lesinski6b879f02010-11-04 16:15:23 -07003289
Michael Jurkac0e8fca2010-10-06 16:41:29 -07003290 // Change the state *after* we've called all the transition code
3291 mState = State.WORKSPACE;
Svetoslav Ganov815ba2d2011-01-07 14:55:17 -08003292
Winson Chung5fb63472011-02-02 17:03:37 -08003293 // Resume the auto-advance of widgets
3294 mUserPresent = true;
Winson Chungb745afb2015-03-02 11:51:23 -08003295 updateAutoAdvanceState();
Winson Chung5fb63472011-02-02 17:03:37 -08003296
Winson Chung0f785722015-04-08 10:27:49 -07003297 if (changed) {
3298 // Send an accessibility event to announce the context change
3299 getWindow().getDecorView()
3300 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Winson Chung0f785722015-04-08 10:27:49 -07003301 }
Bjorn Bringertc459e522013-06-07 19:36:01 +01003302 }
3303
Adam Cohened307df2013-10-02 09:37:31 -07003304 void showOverviewMode(boolean animated) {
3305 mWorkspace.setVisibility(View.VISIBLE);
Winson Chungb745afb2015-03-02 11:51:23 -08003306 mStateTransitionAnimation.startAnimationToWorkspace(mState, Workspace.State.OVERVIEW,
Sunny Goyalce5a7e52015-07-08 15:44:27 -07003307 animated, null /* onCompleteRunnable */);
Adam Cohened307df2013-10-02 09:37:31 -07003308 mState = State.WORKSPACE;
Joe Onorato00acb122009-08-04 16:04:30 -04003309 }
3310
Winson Chungb745afb2015-03-02 11:51:23 -08003311 /**
3312 * Shows the apps view.
3313 */
Winson Chung76648c52015-07-10 14:33:23 -07003314 void showAppsView(boolean animated, boolean resetListToTop, boolean updatePredictedApps,
3315 boolean focusSearchBar) {
Winson Chungb745afb2015-03-02 11:51:23 -08003316 if (resetListToTop) {
3317 mAppsView.scrollToTop();
3318 }
Winson Chung4ac30062015-05-08 17:34:17 -07003319 if (updatePredictedApps) {
3320 tryAndUpdatePredictedApps();
3321 }
Winson Chung76648c52015-07-10 14:33:23 -07003322 showAppsOrWidgets(State.APPS, animated, focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003323 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003324
Winson Chungb745afb2015-03-02 11:51:23 -08003325 /**
3326 * Shows the widgets view.
3327 */
3328 void showWidgetsView(boolean animated, boolean resetPageToZero) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003329 if (LOGD) Log.d(TAG, "showWidgetsView:" + animated + " resetPageToZero:" + resetPageToZero);
Winson Chung82963d52013-10-09 11:20:57 -07003330 if (resetPageToZero) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003331 mWidgetsView.scrollToTop();
Winson Chung82963d52013-10-09 11:20:57 -07003332 }
Winson Chung76648c52015-07-10 14:33:23 -07003333 showAppsOrWidgets(State.WIDGETS, animated, false);
Hyunyoung Song3f471442015-04-08 19:01:34 -07003334
3335 mWidgetsView.post(new Runnable() {
Adam Cohendcc5e712014-06-23 15:38:55 -04003336 @Override
3337 public void run() {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003338 mWidgetsView.requestFocus();
Adam Cohendcc5e712014-06-23 15:38:55 -04003339 }
3340 });
Winson Chungb745afb2015-03-02 11:51:23 -08003341 }
3342
3343 /**
3344 * Sets up the transition to show the apps/widgets view.
Hyunyoung Songb7900832015-05-15 16:29:45 -07003345 *
3346 * @return whether the current from and to state allowed this operation
Winson Chungb745afb2015-03-02 11:51:23 -08003347 */
Hyunyoung Songb7900832015-05-15 16:29:45 -07003348 // TODO: calling method should use the return value so that when {@code false} is returned
3349 // the workspace transition doesn't fall into invalid state.
Winson Chung76648c52015-07-10 14:33:23 -07003350 private boolean showAppsOrWidgets(State toState, boolean animated, boolean focusSearchBar) {
Hyunyoung Songb7900832015-05-15 16:29:45 -07003351 if (mState != State.WORKSPACE && mState != State.APPS_SPRING_LOADED &&
3352 mState != State.WIDGETS_SPRING_LOADED) {
3353 return false;
3354 }
3355 if (toState != State.APPS && toState != State.WIDGETS) {
3356 return false;
3357 }
Winson Chungb745afb2015-03-02 11:51:23 -08003358
3359 if (toState == State.APPS) {
Winson Chung76648c52015-07-10 14:33:23 -07003360 mStateTransitionAnimation.startAnimationToAllApps(animated, focusSearchBar);
Winson Chungb745afb2015-03-02 11:51:23 -08003361 } else {
3362 mStateTransitionAnimation.startAnimationToWidgets(animated);
3363 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003364
Michael Jurkab3e22d92011-10-31 15:58:33 -07003365 // Change the state *after* we've called all the transition code
Winson Chungb745afb2015-03-02 11:51:23 -08003366 mState = toState;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003367
3368 // Pause the auto-advance of widgets until we are out of AllApps
3369 mUserPresent = false;
Winson Chungb745afb2015-03-02 11:51:23 -08003370 updateAutoAdvanceState();
Michael Jurkab3e22d92011-10-31 15:58:33 -07003371 closeFolder();
3372
3373 // Send an accessibility event to announce the context change
alanv1d4fde62012-10-17 13:15:47 -07003374 getWindow().getDecorView()
3375 .sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Hyunyoung Songb7900832015-05-15 16:29:45 -07003376 return true;
Michael Jurkab3e22d92011-10-31 15:58:33 -07003377 }
3378
Winson Chungcd99cd32015-04-29 11:03:24 -07003379 /**
3380 * Updates the workspace and interaction state on state change, and return the animation to this
3381 * new state.
3382 */
Sunny Goyalce5a7e52015-07-08 15:44:27 -07003383 public Animator startWorkspaceStateChangeAnimation(Workspace.State toState,
Winson Chungef7f8742015-06-04 17:18:17 -07003384 boolean animated, boolean hasOverlaySearchBar, HashMap<View, Integer> layerViews) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003385 Workspace.State fromState = mWorkspace.getState();
Sunny Goyalce5a7e52015-07-08 15:44:27 -07003386 Animator anim = mWorkspace.setStateWithAnimation(
3387 toState, animated, hasOverlaySearchBar, layerViews);
Winson Chungcd99cd32015-04-29 11:03:24 -07003388 updateInteraction(fromState, toState);
3389 return anim;
3390 }
3391
Hyunyoung Song3f471442015-04-08 19:01:34 -07003392 public void enterSpringLoadedDragMode() {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003393 if (LOGD) Log.d(TAG, String.format("enterSpringLoadedDragMode [mState=%s", mState.name()));
Winson Chungb745afb2015-03-02 11:51:23 -08003394 if (mState == State.WORKSPACE || mState == State.APPS_SPRING_LOADED ||
3395 mState == State.WIDGETS_SPRING_LOADED) {
3396 return;
Winson Chungb26f3d62011-06-02 10:49:29 -07003397 }
Winson Chungb745afb2015-03-02 11:51:23 -08003398
3399 mStateTransitionAnimation.startAnimationToWorkspace(mState, Workspace.State.SPRING_LOADED,
Sunny Goyalce5a7e52015-07-08 15:44:27 -07003400 true /* animated */, null /* onCompleteRunnable */);
Winson Chungb745afb2015-03-02 11:51:23 -08003401 mState = isAppsViewVisible() ? State.APPS_SPRING_LOADED : State.WIDGETS_SPRING_LOADED;
Michael Jurkad3ef3062010-11-23 16:23:58 -08003402 }
Adam Cohen7777d962011-08-18 18:58:38 -07003403
Hyunyoung Song3f471442015-04-08 19:01:34 -07003404 public void exitSpringLoadedDragModeDelayed(final boolean successfulDrop, int delay,
Adam Cohened66b2b2012-01-23 17:28:51 -08003405 final Runnable onCompleteRunnable) {
Winson Chungb745afb2015-03-02 11:51:23 -08003406 if (mState != State.APPS_SPRING_LOADED && mState != State.WIDGETS_SPRING_LOADED) return;
Winson Chung09bfc452011-09-09 11:30:20 -07003407
Winson Chunge7a03942011-08-05 15:05:12 -07003408 mHandler.postDelayed(new Runnable() {
Winson Chung557d6ed2011-07-08 15:34:52 -07003409 @Override
3410 public void run() {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003411 if (successfulDrop) {
Hyunyoung Song3f471442015-04-08 19:01:34 -07003412 // TODO(hyunyoungs): verify if this hack is still needed, if not, delete.
3413 //
Michael Jurka7bdb25a2011-08-03 15:16:44 -07003414 // Before we show workspace, hide all apps again because
3415 // exitSpringLoadedDragMode made it visible. This is a bit hacky; we should
3416 // clean up our state transition functions
Hyunyoung Song3f471442015-04-08 19:01:34 -07003417 mWidgetsView.setVisibility(View.GONE);
Adam Cohened66b2b2012-01-23 17:28:51 -08003418 showWorkspace(true, onCompleteRunnable);
Adam Cohen7777d962011-08-18 18:58:38 -07003419 } else {
3420 exitSpringLoadedDragMode();
Winson Chung6a3fd3f2011-08-02 14:03:26 -07003421 }
Winson Chung557d6ed2011-07-08 15:34:52 -07003422 }
Adam Cohenad4e15c2013-10-17 16:21:35 -07003423 }, delay);
Winson Chung557d6ed2011-07-08 15:34:52 -07003424 }
Michael Jurkab3e22d92011-10-31 15:58:33 -07003425
Michael Jurkad3ef3062010-11-23 16:23:58 -08003426 void exitSpringLoadedDragMode() {
Winson Chungb745afb2015-03-02 11:51:23 -08003427 if (mState == State.APPS_SPRING_LOADED) {
Winson Chung4ac30062015-05-08 17:34:17 -07003428 showAppsView(true /* animated */, false /* resetListToTop */,
Winson Chung76648c52015-07-10 14:33:23 -07003429 false /* updatePredictedApps */, false /* focusSearchBar */);
Winson Chungb745afb2015-03-02 11:51:23 -08003430 } else if (mState == State.WIDGETS_SPRING_LOADED) {
Winson Chungcd99cd32015-04-29 11:03:24 -07003431 showWidgetsView(true, false);
Winson Chungf0ea4d32011-06-06 14:27:16 -07003432 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07003433 }
3434
Winson Chung4ac30062015-05-08 17:34:17 -07003435 /**
3436 * Updates the set of predicted apps if it hasn't been updated since the last time Launcher was
3437 * resumed.
3438 */
3439 private void tryAndUpdatePredictedApps() {
3440 if (mLauncherCallbacks != null) {
Winson Chung6b1c73f2015-06-18 11:38:42 -07003441 List<ComponentKey> apps = mLauncherCallbacks.getPredictedApps();
Winson Chung91c05952015-06-25 12:17:30 -07003442 if (apps != null) {
Winson Chung4ac30062015-05-08 17:34:17 -07003443 mAppsView.setPredictedApps(apps);
3444 }
3445 }
3446 }
3447
Michael Jurkab3e22d92011-10-31 15:58:33 -07003448 void lockAllApps() {
3449 // TODO
3450 }
3451
3452 void unlockAllApps() {
3453 // TODO
3454 }
3455
Sunny Goyal594d76d2014-11-06 10:12:54 -08003456 protected void disableVoiceButtonProxy(boolean disable) {
3457 // NO-OP
Winson Chungbb185bd2011-11-21 12:31:42 -08003458 }
3459
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003460 public View getOrCreateQsbBar() {
Adam Cohenc2d6e892014-10-16 09:49:24 -07003461 if (mLauncherCallbacks != null && mLauncherCallbacks.providesSearch()) {
3462 return mLauncherCallbacks.getQsbBar();
Adam Cohen9211d422014-10-07 18:14:53 -07003463 }
3464
Adam Cohen24ce0b32014-01-14 16:18:14 -08003465 if (mQsb == null) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003466 AppWidgetProviderInfo searchProvider = Utilities.getSearchWidgetProvider(this);
3467 if (searchProvider == null) {
3468 return null;
3469 }
3470
3471 Bundle opts = new Bundle();
3472 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_HOST_CATEGORY,
Adam Coheneb8e2822015-02-20 16:38:48 +00003473 AppWidgetProviderInfo.WIDGET_CATEGORY_SEARCHBOX);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003474
3475 SharedPreferences sp = getSharedPreferences(
3476 LauncherAppState.getSharedPreferencesKey(), MODE_PRIVATE);
3477 int widgetId = sp.getInt(QSB_WIDGET_ID, -1);
Sunny Goyal416541c2014-11-14 11:59:57 -08003478 AppWidgetProviderInfo widgetInfo = mAppWidgetManager.getAppWidgetInfo(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003479 if (!searchProvider.provider.flattenToString().equals(
3480 sp.getString(QSB_WIDGET_PROVIDER, null))
Sunny Goyal416541c2014-11-14 11:59:57 -08003481 || (widgetInfo == null)
3482 || !widgetInfo.provider.equals(searchProvider.provider)) {
Sunny Goyal594d76d2014-11-06 10:12:54 -08003483 // A valid widget is not already bound.
3484 if (widgetId > -1) {
3485 mAppWidgetHost.deleteAppWidgetId(widgetId);
3486 widgetId = -1;
3487 }
3488
3489 // Try to bind a new widget
3490 widgetId = mAppWidgetHost.allocateAppWidgetId();
3491
3492 if (!AppWidgetManagerCompat.getInstance(this)
3493 .bindAppWidgetIdIfAllowed(widgetId, searchProvider, opts)) {
3494 mAppWidgetHost.deleteAppWidgetId(widgetId);
3495 widgetId = -1;
3496 }
3497
3498 sp.edit()
3499 .putInt(QSB_WIDGET_ID, widgetId)
3500 .putString(QSB_WIDGET_PROVIDER, searchProvider.provider.flattenToString())
3501 .commit();
3502 }
3503
Sunny Goyal8d595092015-07-06 12:22:14 -07003504 mAppWidgetHost.setQsbWidgetId(widgetId);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003505 if (widgetId != -1) {
3506 mQsb = mAppWidgetHost.createView(this, widgetId, searchProvider);
3507 mQsb.updateAppWidgetOptions(opts);
3508 mQsb.setPadding(0, 0, 0, 0);
3509 mSearchDropTargetBar.addView(mQsb);
Sunny Goyal64b3fcc2015-03-04 13:54:52 -08003510 mSearchDropTargetBar.setQsbSearchBar(mQsb);
Sunny Goyal594d76d2014-11-06 10:12:54 -08003511 }
Cristina Stancu476493b2013-08-07 17:20:14 +01003512 }
Adam Cohen24ce0b32014-01-14 16:18:14 -08003513 return mQsb;
Cristina Stancu476493b2013-08-07 17:20:14 +01003514 }
3515
Sunny Goyal22235bc2015-04-03 09:23:43 -07003516 private void reinflateQSBIfNecessary() {
3517 if (mQsb instanceof LauncherAppWidgetHostView &&
3518 ((LauncherAppWidgetHostView) mQsb).isReinflateRequired()) {
3519 mSearchDropTargetBar.removeView(mQsb);
3520 mQsb = null;
3521 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
3522 }
3523 }
3524
Michael Jurkad7c28052012-04-27 15:43:36 -07003525 @Override
3526 public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
alanv1d4fde62012-10-17 13:15:47 -07003527 final boolean result = super.dispatchPopulateAccessibilityEvent(event);
Michael Jurkad7c28052012-04-27 15:43:36 -07003528 final List<CharSequence> text = event.getText();
3529 text.clear();
alanv1d4fde62012-10-17 13:15:47 -07003530 // Populate event with a fake title based on the current state.
Winson Chungb745afb2015-03-02 11:51:23 -08003531 if (mState == State.APPS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003532 text.add(getString(R.string.all_apps_button_label));
Winson Chungb745afb2015-03-02 11:51:23 -08003533 } else if (mState == State.WIDGETS) {
Sunny Goyalc525d802015-04-29 11:05:34 -07003534 text.add(getString(R.string.widget_button_text));
Hyunyoung Song166e6482015-06-25 21:06:07 -07003535 } else if (mWorkspace != null) {
3536 text.add(mWorkspace.getCurrentPageDescription());
alanv1d4fde62012-10-17 13:15:47 -07003537 } else {
3538 text.add(getString(R.string.all_apps_home_button_label));
3539 }
Michael Jurkad7c28052012-04-27 15:43:36 -07003540 return result;
3541 }
3542
Patrick Dubroyceae05d2010-08-30 10:40:53 -07003543 /**
Winson Chungb8472bb2011-08-05 13:49:21 -07003544 * Receives notifications when system dialogs are to be closed.
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003545 */
Adam Cohen091440a2015-03-18 14:16:05 -07003546 @Thunk class CloseSystemDialogsIntentReceiver extends BroadcastReceiver {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003547 @Override
3548 public void onReceive(Context context, Intent intent) {
Joe Onorato2ca0ae72009-11-10 13:14:13 -08003549 closeSystemDialogs();
3550 }
3551 }
3552
3553 /**
Michael Jurka7607c2f2013-04-03 14:33:19 -07003554 * If the activity is currently paused, signal that we need to run the passed Runnable
3555 * in onResume.
3556 *
3557 * This needs to be called from incoming places where resources might have been loaded
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003558 * while the activity is paused. That is because the Configuration (e.g., rotation) might be
3559 * wrong when we're not running, and if the activity comes back to what the configuration was
3560 * when we were paused, activity is not restarted.
Michael Jurka7607c2f2013-04-03 14:33:19 -07003561 *
3562 * Implementation of the method from LauncherModel.Callbacks.
3563 *
Hyunyoung Song8821ca92015-05-04 16:28:20 -07003564 * @return {@code true} if we are currently paused. The caller might be able to skip some work
Michael Jurka7607c2f2013-04-03 14:33:19 -07003565 */
Rahul Chaturvedi799aa042015-06-01 21:26:41 -04003566 @Thunk boolean waitUntilResume(Runnable run, boolean deletePreviousRunnables) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003567 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003568 if (LOGD) Log.d(TAG, "Deferring update until onResume");
Michael Jurkac402cd92013-05-20 15:49:32 +02003569 if (deletePreviousRunnables) {
Michael Jurka1e2f4652013-07-08 18:03:46 -07003570 while (mBindOnResumeCallbacks.remove(run)) {
Michael Jurkac402cd92013-05-20 15:49:32 +02003571 }
3572 }
Michael Jurka1e2f4652013-07-08 18:03:46 -07003573 mBindOnResumeCallbacks.add(run);
Michael Jurka7607c2f2013-04-03 14:33:19 -07003574 return true;
3575 } else {
3576 return false;
3577 }
3578 }
3579
Michael Jurkac402cd92013-05-20 15:49:32 +02003580 private boolean waitUntilResume(Runnable run) {
3581 return waitUntilResume(run, false);
3582 }
3583
Michael Jurka1e2f4652013-07-08 18:03:46 -07003584 public void addOnResumeCallback(Runnable run) {
Michael Jurka54554252013-08-01 12:52:23 +02003585 mOnResumeCallbacks.add(run);
Michael Jurka1e2f4652013-07-08 18:03:46 -07003586 }
3587
Michael Jurka7607c2f2013-04-03 14:33:19 -07003588 /**
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003589 * If the activity is currently paused, signal that we need to re-run the loader
3590 * in onResume.
3591 *
3592 * This needs to be called from incoming places where resources might have been loaded
3593 * while we are paused. That is becaues the Configuration might be wrong
3594 * when we're not running, and if it comes back to what it was when we
3595 * were paused, we are not restarted.
3596 *
3597 * Implementation of the method from LauncherModel.Callbacks.
3598 *
3599 * @return true if we are currently paused. The caller might be able to
3600 * skip some work in that case since we will come back again.
3601 */
3602 public boolean setLoadOnResume() {
3603 if (mPaused) {
Sunny Goyal2bba4c32015-05-18 15:42:48 -07003604 if (LOGD) Log.d(TAG, "setLoadOnResume");
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003605 mOnResumeNeedsLoad = true;
3606 return true;
3607 } else {
3608 return false;
3609 }
3610 }
3611
3612 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003613 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003614 */
Joe Onorato9c1289c2009-08-17 11:03:03 -04003615 public int getCurrentWorkspaceScreen() {
Joe Onoratod0afc872010-06-11 00:03:15 -07003616 if (mWorkspace != null) {
Michael Jurka0142d492010-08-25 17:46:15 -07003617 return mWorkspace.getCurrentPage();
Joe Onoratod0afc872010-06-11 00:03:15 -07003618 } else {
Winson Chung882a52e2015-07-08 14:32:26 -07003619 return 0;
Joe Onoratod0afc872010-06-11 00:03:15 -07003620 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003621 }
The Android Open Source Projectf96811c2009-03-18 17:39:48 -07003622
Joe Onorato9c1289c2009-08-17 11:03:03 -04003623 /**
3624 * Refreshes the shortcuts shown on the workspace.
3625 *
3626 * Implementation of the method from LauncherModel.Callbacks.
3627 */
3628 public void startBinding() {
Anjali Koppalff7ceff2014-05-01 18:26:37 -07003629 setWorkspaceLoading(true);
Adam Cohen517a7f52014-03-01 12:12:59 -08003630
Michael Jurka7607c2f2013-04-03 14:33:19 -07003631 // If we're starting binding all over again, clear any bind calls we'd postponed in
3632 // the past (see waitUntilResume) -- we don't need them since we're starting binding
3633 // from scratch again
Michael Jurka1e2f4652013-07-08 18:03:46 -07003634 mBindOnResumeCallbacks.clear();
Adam Cohendf035382011-04-11 17:22:04 -07003635
Winson Chungd64d1762013-08-20 14:37:16 -07003636 // Clear the workspace because it's going to be rebound
Adam Cohendf035382011-04-11 17:22:04 -07003637 mWorkspace.clearDropTargets();
Winson Chung9e6a0a22013-08-27 11:58:12 -07003638 mWorkspace.removeAllWorkspaceScreens();
Winson Chungd64d1762013-08-20 14:37:16 -07003639
Michael Jurka05bf644e2011-11-30 20:28:53 -08003640 mWidgetsToAdvance.clear();
Winson Chung3d503fb2011-07-13 17:25:49 -07003641 if (mHotseat != null) {
3642 mHotseat.resetLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003643 }
3644 }
3645
Adam Cohendcd297f2013-06-18 13:13:40 -07003646 @Override
3647 public void bindScreens(ArrayList<Long> orderedScreenIds) {
Winson Chung64359a52013-07-08 17:17:08 -07003648 bindAddScreens(orderedScreenIds);
Winson Chung0e6a7132013-08-23 12:55:10 -07003649
Adam Cohen5084cba2013-09-03 12:01:16 -07003650 // If there are no screens, we need to have an empty screen
3651 if (orderedScreenIds.size() == 0) {
3652 mWorkspace.addExtraEmptyScreen();
3653 }
Winson Chung0e6a7132013-08-23 12:55:10 -07003654
3655 // Create the custom content page (this call updates mDefaultScreen which calls
Dave Hawkeya8881582013-09-17 15:55:33 -06003656 // setCurrentPage() so ensure that all pages are added before calling this).
Derek Prothrodadd9842014-01-17 13:43:50 -05003657 if (hasCustomContentToLeft()) {
3658 mWorkspace.createCustomContentContainer();
3659 populateCustomContentContainer();
Winson Chung0e6a7132013-08-23 12:55:10 -07003660 }
Winson Chung64359a52013-07-08 17:17:08 -07003661 }
3662
3663 @Override
3664 public void bindAddScreens(ArrayList<Long> orderedScreenIds) {
Adam Cohendcd297f2013-06-18 13:13:40 -07003665 int count = orderedScreenIds.size();
3666 for (int i = 0; i < count; i++) {
Adam Cohen89bddfa2013-08-20 11:57:13 -07003667 mWorkspace.insertNewWorkspaceScreenBeforeEmptyScreen(orderedScreenIds.get(i));
Adam Cohendcd297f2013-06-18 13:13:40 -07003668 }
Adam Cohendcd297f2013-06-18 13:13:40 -07003669 }
3670
Adam Cohen39a06042013-07-19 14:30:12 -07003671 private boolean shouldShowWeightWatcher() {
3672 String spKey = LauncherAppState.getSharedPreferencesKey();
3673 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
Daniel Sandler6053b8002013-08-15 15:44:26 -07003674 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, SHOW_WEIGHT_WATCHER_DEFAULT);
Adam Cohen39a06042013-07-19 14:30:12 -07003675
3676 return show;
3677 }
3678
3679 private void toggleShowWeightWatcher() {
3680 String spKey = LauncherAppState.getSharedPreferencesKey();
3681 SharedPreferences sp = getSharedPreferences(spKey, Context.MODE_PRIVATE);
3682 boolean show = sp.getBoolean(SHOW_WEIGHT_WATCHER, true);
3683
3684 show = !show;
3685
3686 SharedPreferences.Editor editor = sp.edit();
3687 editor.putBoolean(SHOW_WEIGHT_WATCHER, show);
3688 editor.commit();
3689
3690 if (mWeightWatcher != null) {
3691 mWeightWatcher.setVisibility(show ? View.VISIBLE : View.GONE);
3692 }
3693 }
3694
Winson Chungd64d1762013-08-20 14:37:16 -07003695 public void bindAppsAdded(final ArrayList<Long> newScreens,
3696 final ArrayList<ItemInfo> addNotAnimated,
Winson Chungc58497e2013-09-03 17:48:37 -07003697 final ArrayList<ItemInfo> addAnimated,
3698 final ArrayList<AppInfo> addedApps) {
Winson Chungd64d1762013-08-20 14:37:16 -07003699 Runnable r = new Runnable() {
3700 public void run() {
Winson Chungc58497e2013-09-03 17:48:37 -07003701 bindAppsAdded(newScreens, addNotAnimated, addAnimated, addedApps);
Winson Chungd64d1762013-08-20 14:37:16 -07003702 }
3703 };
3704 if (waitUntilResume(r)) {
3705 return;
3706 }
3707
Winson Chungd64d1762013-08-20 14:37:16 -07003708 // Add the new screens
Adam Cohen76a47a12014-02-05 11:47:43 -08003709 if (newScreens != null) {
3710 bindAddScreens(newScreens);
3711 }
Winson Chungd64d1762013-08-20 14:37:16 -07003712
3713 // We add the items without animation on non-visible pages, and with
3714 // animations on the new page (which we will try and snap to).
Adam Cohen76a47a12014-02-05 11:47:43 -08003715 if (addNotAnimated != null && !addNotAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003716 bindItems(addNotAnimated, 0,
3717 addNotAnimated.size(), false);
3718 }
Adam Cohen76a47a12014-02-05 11:47:43 -08003719 if (addAnimated != null && !addAnimated.isEmpty()) {
Winson Chungd64d1762013-08-20 14:37:16 -07003720 bindItems(addAnimated, 0,
3721 addAnimated.size(), true);
3722 }
Winson Chungc58497e2013-09-03 17:48:37 -07003723
Winson Chung87412982013-10-03 18:34:14 -07003724 // Remove the extra empty screen
Adam Cohen689ff162014-05-08 17:27:56 -07003725 mWorkspace.removeExtraEmptyScreen(false, false);
Winson Chung87412982013-10-03 18:34:14 -07003726
Winson Chungb745afb2015-03-02 11:51:23 -08003727 if (addedApps != null && mAppsView != null) {
3728 mAppsView.addApps(addedApps);
Winson Chungc58497e2013-09-03 17:48:37 -07003729 }
Winson Chungd64d1762013-08-20 14:37:16 -07003730 }
3731
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003732 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04003733 * Bind the items start-end from the list.
3734 *
3735 * Implementation of the method from LauncherModel.Callbacks.
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003736 */
Winson Chung64359a52013-07-08 17:17:08 -07003737 public void bindItems(final ArrayList<ItemInfo> shortcuts, final int start, final int end,
3738 final boolean forceAnimateIcons) {
Winson Chungd64d1762013-08-20 14:37:16 -07003739 Runnable r = new Runnable() {
3740 public void run() {
3741 bindItems(shortcuts, start, end, forceAnimateIcons);
3742 }
3743 };
3744 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003745 return;
3746 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003747
Winson Chungf0c6ae02012-03-21 16:10:31 -07003748 // Get the list of added shortcuts and intersect them with the set of shortcuts here
Winson Chung64359a52013-07-08 17:17:08 -07003749 final AnimatorSet anim = LauncherAnimUtils.createAnimatorSet();
3750 final Collection<Animator> bounceAnims = new ArrayList<Animator>();
Winson Chung997a9232013-07-24 15:33:46 -07003751 final boolean animateIcons = forceAnimateIcons && canRunNewAppsAnimation();
Winson Chungf0c6ae02012-03-21 16:10:31 -07003752 Workspace workspace = mWorkspace;
Winson Chung997a9232013-07-24 15:33:46 -07003753 long newShortcutsScreenId = -1;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003754 for (int i = start; i < end; i++) {
Joe Onorato9c1289c2009-08-17 11:03:03 -04003755 final ItemInfo item = shortcuts.get(i);
Winson Chung4d279d92011-07-21 11:46:32 -07003756
3757 // Short circuit if we are loading dock items for a configuration which has no dock
3758 if (item.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT &&
3759 mHotseat == null) {
3760 continue;
3761 }
3762
Joe Onorato9c1289c2009-08-17 11:03:03 -04003763 switch (item.itemType) {
3764 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
3765 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
Winson Chungf0c6ae02012-03-21 16:10:31 -07003766 ShortcutInfo info = (ShortcutInfo) item;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003767 View shortcut = createShortcut(info);
Adam Cohendcd297f2013-06-18 13:13:40 -07003768
Winson Chung64359a52013-07-08 17:17:08 -07003769 /*
3770 * TODO: FIX collision case
3771 */
Winson Chungce376632013-07-11 16:12:41 -07003772 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
3773 CellLayout cl = mWorkspace.getScreenWithId(item.screenId);
3774 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07003775 View v = cl.getChildAt(item.cellX, item.cellY);
3776 Object tag = v.getTag();
3777 String desc = "Collision while binding workspace item: " + item
3778 + ". Collides with " + tag;
Sunny Goyal6c56c682015-07-16 14:09:05 -07003779 if (ProviderConfig.IS_DOGFOOD_BUILD) {
Adam Cohen8f006ed2014-04-03 18:12:34 -07003780 throw (new RuntimeException(desc));
3781 } else {
3782 Log.d(TAG, desc);
3783 }
Winson Chungce376632013-07-11 16:12:41 -07003784 }
Winson Chung64359a52013-07-08 17:17:08 -07003785 }
3786
Adam Cohendcd297f2013-06-18 13:13:40 -07003787 workspace.addInScreenFromBind(shortcut, item.container, item.screenId, item.cellX,
3788 item.cellY, 1, 1);
Winson Chung997a9232013-07-24 15:33:46 -07003789 if (animateIcons) {
Winson Chung64359a52013-07-08 17:17:08 -07003790 // Animate all the applications up now
3791 shortcut.setAlpha(0f);
3792 shortcut.setScaleX(0f);
3793 shortcut.setScaleY(0f);
3794 bounceAnims.add(createNewAppBounceAnimation(shortcut, i));
Winson Chung997a9232013-07-24 15:33:46 -07003795 newShortcutsScreenId = item.screenId;
Winson Chungf0c6ae02012-03-21 16:10:31 -07003796 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003797 break;
Adam Cohendf2cc412011-04-27 16:56:57 -07003798 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
Winson Chung3d503fb2011-07-13 17:25:49 -07003799 FolderIcon newFolder = FolderIcon.fromXml(R.layout.folder_icon, this,
Michael Jurka0142d492010-08-25 17:46:15 -07003800 (ViewGroup) workspace.getChildAt(workspace.getCurrentPage()),
Adam Cohendf2cc412011-04-27 16:56:57 -07003801 (FolderInfo) item, mIconCache);
Adam Cohendcd297f2013-06-18 13:13:40 -07003802 workspace.addInScreenFromBind(newFolder, item.container, item.screenId, item.cellX,
3803 item.cellY, 1, 1);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003804 break;
Winson Chungc763c4e2013-07-19 13:49:06 -07003805 default:
3806 throw new RuntimeException("Invalid Item Type");
Joe Onorato9c1289c2009-08-17 11:03:03 -04003807 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003808 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07003809
Winson Chung997a9232013-07-24 15:33:46 -07003810 if (animateIcons) {
3811 // Animate to the correct page
3812 if (newShortcutsScreenId > -1) {
3813 long currentScreenId = mWorkspace.getScreenIdForPageIndex(mWorkspace.getNextPage());
Winson Chung94d67682013-09-25 16:29:40 -07003814 final int newScreenIndex = mWorkspace.getPageIndexForScreenId(newShortcutsScreenId);
Winson Chungb2323832013-10-03 15:22:09 -07003815 final Runnable startBounceAnimRunnable = new Runnable() {
3816 public void run() {
3817 anim.playTogether(bounceAnims);
3818 anim.start();
3819 }
3820 };
Winson Chung997a9232013-07-24 15:33:46 -07003821 if (newShortcutsScreenId != currentScreenId) {
Winson Chung94d67682013-09-25 16:29:40 -07003822 // We post the animation slightly delayed to prevent slowdowns
3823 // when we are loading right after we return to launcher.
3824 mWorkspace.postDelayed(new Runnable() {
3825 public void run() {
Ian Parkinson94449152014-01-21 13:09:59 +00003826 if (mWorkspace != null) {
3827 mWorkspace.snapToPage(newScreenIndex);
3828 mWorkspace.postDelayed(startBounceAnimRunnable,
3829 NEW_APPS_ANIMATION_DELAY);
3830 }
Winson Chung94d67682013-09-25 16:29:40 -07003831 }
3832 }, NEW_APPS_PAGE_MOVE_DELAY);
Winson Chungb2323832013-10-03 15:22:09 -07003833 } else {
3834 mWorkspace.postDelayed(startBounceAnimRunnable, NEW_APPS_ANIMATION_DELAY);
Winson Chung997a9232013-07-24 15:33:46 -07003835 }
3836 }
Winson Chung64359a52013-07-08 17:17:08 -07003837 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003838 workspace.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003839 }
3840
Joe Onorato9c1289c2009-08-17 11:03:03 -04003841 /**
3842 * Implementation of the method from LauncherModel.Callbacks.
3843 */
Sunny Goyale2df0622015-04-24 11:27:00 -07003844 public void bindFolders(final LongArrayMap<FolderInfo> folders) {
Winson Chungd64d1762013-08-20 14:37:16 -07003845 Runnable r = new Runnable() {
3846 public void run() {
3847 bindFolders(folders);
3848 }
3849 };
3850 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003851 return;
3852 }
Sunny Goyale2df0622015-04-24 11:27:00 -07003853 sFolders = folders.clone();
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003854 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003855
3856 /**
3857 * Add the views for a widget to the workspace.
3858 *
3859 * Implementation of the method from LauncherModel.Callbacks.
3860 */
Michael Jurka7607c2f2013-04-03 14:33:19 -07003861 public void bindAppWidget(final LauncherAppWidgetInfo item) {
Winson Chungd64d1762013-08-20 14:37:16 -07003862 Runnable r = new Runnable() {
3863 public void run() {
3864 bindAppWidget(item);
3865 }
3866 };
3867 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07003868 return;
3869 }
Joe Onoratoef2efcf2010-10-27 13:21:00 -07003870
Daniel Sandler843e8602010-06-07 14:59:01 -04003871 final long start = DEBUG_WIDGETS ? SystemClock.uptimeMillis() : 0;
3872 if (DEBUG_WIDGETS) {
3873 Log.d(TAG, "bindAppWidget: " + item);
3874 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003875 final Workspace workspace = mWorkspace;
3876
Adam Cohen59400422014-03-05 18:07:04 -08003877 LauncherAppWidgetProviderInfo appWidgetInfo =
Robin Lee26ace122015-03-16 19:41:43 +00003878 LauncherModel.getProviderInfo(this, item.providerName, item.user);
Adam Cohen59400422014-03-05 18:07:04 -08003879
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003880 if (!mIsSafeModeEnabled
3881 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY) == 0)
3882 && ((item.restoreStatus & LauncherAppWidgetInfo.FLAG_ID_NOT_VALID) != 0)) {
Sunny Goyalff572272014-07-23 13:58:07 -07003883 if (appWidgetInfo == null) {
3884 if (DEBUG_WIDGETS) {
3885 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3886 + " belongs to component " + item.providerName
3887 + ", as the povider is null");
3888 }
3889 LauncherModel.deleteItemFromDatabase(this, item);
3890 return;
3891 }
3892 // Note: This assumes that the id remap broadcast is received before this step.
3893 // If that is not the case, the id remap will be ignored and user may see the
3894 // click to setup view.
Adam Cohen2e6da152015-05-06 11:42:25 -07003895 PendingAddWidgetInfo pendingInfo = new PendingAddWidgetInfo(this, appWidgetInfo, null);
Sunny Goyalff572272014-07-23 13:58:07 -07003896 pendingInfo.spanX = item.spanX;
3897 pendingInfo.spanY = item.spanY;
3898 pendingInfo.minSpanX = item.minSpanX;
3899 pendingInfo.minSpanY = item.minSpanY;
Hyunyoung Song3f471442015-04-08 19:01:34 -07003900 Bundle options = null;
Hyunyoung Songb99ff3e2015-04-23 15:17:50 -07003901 WidgetHostViewLoader.getDefaultOptionsForWidget(this, pendingInfo);
Sunny Goyalff572272014-07-23 13:58:07 -07003902
Sunny Goyalff572272014-07-23 13:58:07 -07003903 int newWidgetId = mAppWidgetHost.allocateAppWidgetId();
Sunny Goyalffe83f12014-08-14 17:39:34 -07003904 boolean success = mAppWidgetManager.bindAppWidgetIdIfAllowed(
3905 newWidgetId, appWidgetInfo, options);
Sunny Goyalff572272014-07-23 13:58:07 -07003906
3907 // TODO consider showing a permission dialog when the widget is clicked.
3908 if (!success) {
3909 mAppWidgetHost.deleteAppWidgetId(newWidgetId);
3910 if (DEBUG_WIDGETS) {
3911 Log.d(TAG, "Removing restored widget: id=" + item.appWidgetId
3912 + " belongs to component " + item.providerName
3913 + ", as the launcher is unable to bing a new widget id");
3914 }
3915 LauncherModel.deleteItemFromDatabase(this, item);
3916 return;
3917 }
3918
3919 item.appWidgetId = newWidgetId;
3920
3921 // If the widget has a configure activity, it is still needs to set it up, otherwise
3922 // the widget is ready to go.
3923 item.restoreStatus = (appWidgetInfo.configure == null)
3924 ? LauncherAppWidgetInfo.RESTORE_COMPLETED
3925 : LauncherAppWidgetInfo.FLAG_UI_NOT_READY;
3926
3927 LauncherModel.updateItemInDatabase(this, item);
3928 }
3929
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003930 if (!mIsSafeModeEnabled && item.restoreStatus == LauncherAppWidgetInfo.RESTORE_COMPLETED) {
Sunny Goyal651077b2014-06-30 14:15:31 -07003931 final int appWidgetId = item.appWidgetId;
Sunny Goyal651077b2014-06-30 14:15:31 -07003932 if (DEBUG_WIDGETS) {
Adam Cohen59400422014-03-05 18:07:04 -08003933 Log.d(TAG, "bindAppWidget: id=" + item.appWidgetId + " belongs to component "
3934 + appWidgetInfo.provider);
Sunny Goyal651077b2014-06-30 14:15:31 -07003935 }
Daniel Sandler843e8602010-06-07 14:59:01 -04003936
Sunny Goyal651077b2014-06-30 14:15:31 -07003937 item.hostView = mAppWidgetHost.createView(this, appWidgetId, appWidgetInfo);
3938 } else {
3939 appWidgetInfo = null;
Sunny Goyal9b4b0812014-10-08 10:47:28 -07003940 PendingAppWidgetHostView view = new PendingAppWidgetHostView(this, item,
3941 mIsSafeModeEnabled);
Sunny Goyal0fc1be12014-08-11 17:05:23 -07003942 view.updateIcon(mIconCache);
3943 item.hostView = view;
Sunny Goyal651077b2014-06-30 14:15:31 -07003944 item.hostView.updateAppWidget(null);
Sunny Goyalff572272014-07-23 13:58:07 -07003945 item.hostView.setOnClickListener(this);
Sunny Goyal651077b2014-06-30 14:15:31 -07003946 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003947
Joe Onorato9c1289c2009-08-17 11:03:03 -04003948 item.hostView.setTag(item);
Winson Chung211bac32012-05-15 13:43:57 -07003949 item.onBindAppWidget(this);
Joe Onorato9c1289c2009-08-17 11:03:03 -04003950
Adam Cohendcd297f2013-06-18 13:13:40 -07003951 workspace.addInScreen(item.hostView, item.container, item.screenId, item.cellX,
Joe Onorato9c1289c2009-08-17 11:03:03 -04003952 item.cellY, item.spanX, item.spanY, false);
Adam Cohen59400422014-03-05 18:07:04 -08003953 if (!item.isCustomWidget()) {
3954 addWidgetToAutoAdvanceIfNeeded(item.hostView, appWidgetInfo);
3955 }
Adam Cohended9f8d2010-11-03 13:25:16 -07003956
Joe Onorato9c1289c2009-08-17 11:03:03 -04003957 workspace.requestLayout();
3958
Daniel Sandler843e8602010-06-07 14:59:01 -04003959 if (DEBUG_WIDGETS) {
3960 Log.d(TAG, "bound widget id="+item.appWidgetId+" in "
3961 + (SystemClock.uptimeMillis()-start) + "ms");
3962 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04003963 }
3964
Sunny Goyalff572272014-07-23 13:58:07 -07003965 /**
3966 * Restores a pending widget.
3967 *
3968 * @param appWidgetId The app widget id
3969 * @param cellInfo The position on screen where to create the widget.
3970 */
3971 private void completeRestoreAppWidget(final int appWidgetId) {
3972 LauncherAppWidgetHostView view = mWorkspace.getWidgetForAppWidgetId(appWidgetId);
3973 if ((view == null) || !(view instanceof PendingAppWidgetHostView)) {
3974 Log.e(TAG, "Widget update called, when the widget no longer exists.");
3975 return;
3976 }
3977
Sunny Goyal0fc1be12014-08-11 17:05:23 -07003978 LauncherAppWidgetInfo info = (LauncherAppWidgetInfo) view.getTag();
Sunny Goyalff572272014-07-23 13:58:07 -07003979 info.restoreStatus = LauncherAppWidgetInfo.RESTORE_COMPLETED;
3980
3981 mWorkspace.reinflateWidgetsIfNecessary();
3982 LauncherModel.updateItemInDatabase(this, info);
3983 }
3984
Adam Cohen1462de32012-07-24 22:34:36 -07003985 public void onPageBoundSynchronously(int page) {
3986 mSynchronouslyBoundPages.add(page);
3987 }
3988
Joe Onorato9c1289c2009-08-17 11:03:03 -04003989 /**
3990 * Callback saying that there aren't any more items to bind.
3991 *
3992 * Implementation of the method from LauncherModel.Callbacks.
3993 */
Sunny Goyal66cfdc22015-02-02 13:01:51 -08003994 public void finishBindingItems() {
Winson Chungd64d1762013-08-20 14:37:16 -07003995 Runnable r = new Runnable() {
3996 public void run() {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08003997 finishBindingItems();
Winson Chungd64d1762013-08-20 14:37:16 -07003998 }
3999 };
4000 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004001 return;
4002 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004003 if (mSavedState != null) {
4004 if (!mWorkspace.hasFocus()) {
Michael Jurka0142d492010-08-25 17:46:15 -07004005 mWorkspace.getChildAt(mWorkspace.getCurrentPage()).requestFocus();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004006 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004007 mSavedState = null;
4008 }
4009
Adam Cohen1462de32012-07-24 22:34:36 -07004010 mWorkspace.restoreInstanceStateForRemainingPages();
Joe Onorato9c1289c2009-08-17 11:03:03 -04004011
Anjali Koppalff7ceff2014-05-01 18:26:37 -07004012 setWorkspaceLoading(false);
Adam Cohen3ed316a2014-07-23 18:21:20 -07004013 sendLoadingCompleteBroadcastIfNecessary();
Adam Cohendb364c32014-05-20 14:23:40 -07004014
4015 // If we received the result of any pending adds while the loader was running (e.g. the
4016 // widget configuration forced an orientation change), process them now.
4017 if (sPendingAddItem != null) {
4018 final long screenId = completeAdd(sPendingAddItem);
4019
4020 // TODO: this moves the user to the page where the pending item was added. Ideally,
4021 // the screen would be guaranteed to exist after bind, and the page would be set through
4022 // the workspace restore process.
4023 mWorkspace.post(new Runnable() {
4024 @Override
4025 public void run() {
4026 mWorkspace.snapToScreenId(screenId);
4027 }
4028 });
4029 sPendingAddItem = null;
4030 }
4031
Sunny Goyal756adbc2015-04-16 15:20:51 -07004032 InstallShortcutReceiver.disableAndFlushInstallQueue(this);
Adam Cohen9211d422014-10-07 18:14:53 -07004033
4034 if (mLauncherCallbacks != null) {
Sunny Goyal66cfdc22015-02-02 13:01:51 -08004035 mLauncherCallbacks.finishBindingItems(false);
Adam Cohen9211d422014-10-07 18:14:53 -07004036 }
Winson Chungf0c6ae02012-03-21 16:10:31 -07004037 }
4038
Adam Cohen3ed316a2014-07-23 18:21:20 -07004039 private void sendLoadingCompleteBroadcastIfNecessary() {
4040 if (!mSharedPrefs.getBoolean(FIRST_LOAD_COMPLETE, false)) {
4041 String permission =
4042 getResources().getString(R.string.receive_first_load_broadcast_permission);
4043 Intent intent = new Intent(ACTION_FIRST_LOAD_COMPLETE);
4044 sendBroadcast(intent, permission);
4045 SharedPreferences.Editor editor = mSharedPrefs.edit();
4046 editor.putBoolean(FIRST_LOAD_COMPLETE, true);
4047 editor.apply();
4048 }
4049 }
4050
Winson Chunga0b7e862013-09-05 16:03:15 -07004051 public boolean isAllAppsButtonRank(int rank) {
4052 if (mHotseat != null) {
4053 return mHotseat.isAllAppsButtonRank(rank);
4054 }
4055 return false;
4056 }
4057
Winson Chunga2413752012-04-03 14:22:34 -07004058 private boolean canRunNewAppsAnimation() {
4059 long diff = System.currentTimeMillis() - mDragController.getLastGestureUpTime();
4060 return diff > (NEW_APPS_ANIMATION_INACTIVE_TIMEOUT_SECONDS * 1000);
4061 }
4062
Winson Chungc9168342013-06-26 14:54:55 -07004063 private ValueAnimator createNewAppBounceAnimation(View v, int i) {
4064 ValueAnimator bounceAnim = LauncherAnimUtils.ofPropertyValuesHolder(v,
4065 PropertyValuesHolder.ofFloat("alpha", 1f),
4066 PropertyValuesHolder.ofFloat("scaleX", 1f),
4067 PropertyValuesHolder.ofFloat("scaleY", 1f));
4068 bounceAnim.setDuration(InstallShortcutReceiver.NEW_SHORTCUT_BOUNCE_DURATION);
4069 bounceAnim.setStartDelay(i * InstallShortcutReceiver.NEW_SHORTCUT_STAGGER_DELAY);
Sunny Goyal5a1f53b2015-05-27 10:24:24 -07004070 bounceAnim.setInterpolator(new OvershootInterpolator(BOUNCE_ANIMATION_TENSION));
Winson Chungc9168342013-06-26 14:54:55 -07004071 return bounceAnim;
4072 }
4073
Adam Cohen27772732013-11-11 14:00:56 +00004074 public boolean useVerticalBarLayout() {
Sunny Goyaldfaccf62015-05-11 16:30:44 -07004075 return mDeviceProfile.isVerticalBarLayout();
Adam Cohen27772732013-11-11 14:00:56 +00004076 }
4077
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004078 protected Rect getSearchBarBounds() {
Sunny Goyalc6205602015-05-21 20:46:33 -07004079 return mDeviceProfile.getSearchBarBounds(Utilities.isRtl(getResources()));
Mac Duy Hai6def4f92013-11-28 16:17:33 +00004080 }
4081
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004082 public void bindSearchablesChanged() {
Sunny Goyal594d76d2014-11-06 10:12:54 -08004083 if (mSearchDropTargetBar == null) {
4084 return;
Winson Chungadf0c182012-08-23 14:59:07 -07004085 }
Sunny Goyal594d76d2014-11-06 10:12:54 -08004086 if (mQsb != null) {
4087 mSearchDropTargetBar.removeView(mQsb);
4088 mQsb = null;
4089 }
Adam Cohenb0df1b02015-03-18 22:21:40 -07004090 mSearchDropTargetBar.setQsbSearchBar(getOrCreateQsbBar());
Narayan Kamathcb1a4772011-06-28 13:46:59 +01004091 }
4092
Amith Yamasani6d7fe502010-11-16 09:05:07 -08004093 /**
Winson Chungbb785c62015-05-05 10:05:08 -07004094 * A runnable that we can dequeue and re-enqueue when all applications are bound (to prevent
4095 * multiple calls to bind the same list.)
4096 */
4097 @Thunk ArrayList<AppInfo> mTmpAppsList;
4098 private Runnable mBindAllApplicationsRunnable = new Runnable() {
4099 public void run() {
4100 bindAllApplications(mTmpAppsList);
4101 mTmpAppsList = null;
4102 }
4103 };
4104
4105 /**
Joe Onorato9c1289c2009-08-17 11:03:03 -04004106 * Add the icons for all apps.
4107 *
4108 * Implementation of the method from LauncherModel.Callbacks.
4109 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004110 public void bindAllApplications(final ArrayList<AppInfo> apps) {
Winson Chungbb785c62015-05-05 10:05:08 -07004111 if (waitUntilResume(mBindAllApplicationsRunnable, true)) {
4112 mTmpAppsList = apps;
4113 return;
4114 }
4115
Winson Chungb745afb2015-03-02 11:51:23 -08004116 if (mAppsView != null) {
4117 mAppsView.setApps(apps);
4118 }
Adam Cohen9211d422014-10-07 18:14:53 -07004119 if (mLauncherCallbacks != null) {
4120 mLauncherCallbacks.bindAllApplications(apps);
4121 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004122 }
4123
4124 /**
4125 * A package was updated.
4126 *
4127 * Implementation of the method from LauncherModel.Callbacks.
4128 */
Michael Jurkaeadbfc52013-09-04 00:45:37 +02004129 public void bindAppsUpdated(final ArrayList<AppInfo> apps) {
Winson Chungd64d1762013-08-20 14:37:16 -07004130 Runnable r = new Runnable() {
4131 public void run() {
4132 bindAppsUpdated(apps);
4133 }
4134 };
4135 if (waitUntilResume(r)) {
Michael Jurka7607c2f2013-04-03 14:33:19 -07004136 return;
4137 }
4138
Winson Chungb745afb2015-03-02 11:51:23 -08004139 if (mAppsView != null) {
4140 mAppsView.updateApps(apps);
Winson Chungc58497e2013-09-03 17:48:37 -07004141 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004142 }
4143
Sunny Goyal4390ace2014-10-13 11:33:11 -07004144 @Override
4145 public void bindWidgetsRestored(final ArrayList<LauncherAppWidgetInfo> widgets) {
4146 Runnable r = new Runnable() {
4147 public void run() {
4148 bindWidgetsRestored(widgets);
4149 }
4150 };
4151 if (waitUntilResume(r)) {
4152 return;
4153 }
4154 mWorkspace.widgetsRestored(widgets);
4155 }
4156
Joe Onorato9c1289c2009-08-17 11:03:03 -04004157 /**
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004158 * Some shortcuts were updated in the background.
4159 *
4160 * Implementation of the method from LauncherModel.Callbacks.
4161 */
Sunny Goyal4390ace2014-10-13 11:33:11 -07004162 @Override
4163 public void bindShortcutsChanged(final ArrayList<ShortcutInfo> updated,
4164 final ArrayList<ShortcutInfo> removed, final UserHandleCompat user) {
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004165 Runnable r = new Runnable() {
4166 public void run() {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004167 bindShortcutsChanged(updated, removed, user);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004168 }
4169 };
4170 if (waitUntilResume(r)) {
4171 return;
4172 }
4173
Sunny Goyal4390ace2014-10-13 11:33:11 -07004174 if (!updated.isEmpty()) {
4175 mWorkspace.updateShortcuts(updated);
4176 }
4177
4178 if (!removed.isEmpty()) {
4179 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4180 for (ShortcutInfo si : removed) {
4181 removedComponents.add(si.getTargetComponent());
4182 }
4183 mWorkspace.removeItemsByComponentName(removedComponents, user);
4184 // Notify the drag controller
4185 mDragController.onAppsRemoved(new ArrayList<String>(), removedComponents);
Sunny Goyalb50cc8c2014-10-06 16:23:56 -07004186 }
4187 }
4188
4189 /**
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004190 * Update the state of a package, typically related to install state.
4191 *
4192 * Implementation of the method from LauncherModel.Callbacks.
4193 */
Sunny Goyale755d462014-07-22 13:48:29 -07004194 @Override
Sunny Goyal756adbc2015-04-16 15:20:51 -07004195 public void bindRestoreItemsChange(final HashSet<ItemInfo> updates) {
4196 Runnable r = new Runnable() {
4197 public void run() {
4198 bindRestoreItemsChange(updates);
4199 }
4200 };
4201 if (waitUntilResume(r)) {
4202 return;
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004203 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -05004204
Sunny Goyal756adbc2015-04-16 15:20:51 -07004205 mWorkspace.updateRestoreItems(updates);
Sunny Goyala22666f2014-09-18 13:25:15 -07004206 }
4207
4208 /**
Winson Chung83892cc2013-05-01 16:53:33 -07004209 * A package was uninstalled. We take both the super set of packageNames
4210 * in addition to specific applications to remove, the reason being that
4211 * this can be called when a package is updated as well. In that scenario,
4212 * we only remove specific components from the workspace, where as
4213 * package-removal should clear all items by package name.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004214 *
Sunny Goyal1a745e82014-10-02 15:58:31 -07004215 * @param reason if non-zero, the icons are not permanently removed, rather marked as disabled.
Joe Onorato9c1289c2009-08-17 11:03:03 -04004216 * Implementation of the method from LauncherModel.Callbacks.
4217 */
Sunny Goyal1a745e82014-10-02 15:58:31 -07004218 @Override
Winson Chung83892cc2013-05-01 16:53:33 -07004219 public void bindComponentsRemoved(final ArrayList<String> packageNames,
Sunny Goyal1a745e82014-10-02 15:58:31 -07004220 final ArrayList<AppInfo> appInfos, final UserHandleCompat user, final int reason) {
Winson Chungd64d1762013-08-20 14:37:16 -07004221 Runnable r = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004222 public void run() {
Sunny Goyal1a745e82014-10-02 15:58:31 -07004223 bindComponentsRemoved(packageNames, appInfos, user, reason);
Winson Chung83892cc2013-05-01 16:53:33 -07004224 }
Winson Chungd64d1762013-08-20 14:37:16 -07004225 };
4226 if (waitUntilResume(r)) {
Winson Chung83892cc2013-05-01 16:53:33 -07004227 return;
4228 }
4229
Sunny Goyal1a745e82014-10-02 15:58:31 -07004230 if (reason == 0) {
Sunny Goyal4390ace2014-10-13 11:33:11 -07004231 HashSet<ComponentName> removedComponents = new HashSet<ComponentName>();
4232 for (AppInfo info : appInfos) {
4233 removedComponents.add(info.componentName);
4234 }
Sunny Goyal1a745e82014-10-02 15:58:31 -07004235 if (!packageNames.isEmpty()) {
4236 mWorkspace.removeItemsByPackageName(packageNames, user);
4237 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004238 if (!removedComponents.isEmpty()) {
4239 mWorkspace.removeItemsByComponentName(removedComponents, user);
Sunny Goyal1a745e82014-10-02 15:58:31 -07004240 }
Sunny Goyal4390ace2014-10-13 11:33:11 -07004241 // Notify the drag controller
4242 mDragController.onAppsRemoved(packageNames, removedComponents);
4243
Sunny Goyal1a745e82014-10-02 15:58:31 -07004244 } else {
4245 mWorkspace.disableShortcutsByPackageName(packageNames, user, reason);
Joe Onorato36115782010-06-17 13:28:48 -04004246 }
Winson Chungf0ea4d32011-06-06 14:27:16 -07004247
Winson Chungdf95eb12013-10-16 14:57:07 -07004248 // Update AllApps
Winson Chungb745afb2015-03-02 11:51:23 -08004249 if (mAppsView != null) {
4250 mAppsView.removeApps(appInfos);
Winson Chungc58497e2013-09-03 17:48:37 -07004251 }
Joe Onorato9c1289c2009-08-17 11:03:03 -04004252 }
Joe Onoratobe386092009-11-17 17:32:16 -08004253
Michael Jurkac402cd92013-05-20 15:49:32 +02004254 private Runnable mBindPackagesUpdatedRunnable = new Runnable() {
Winson Chung83892cc2013-05-01 16:53:33 -07004255 public void run() {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004256 bindAllPackages(mWidgetsModel);
Winson Chung83892cc2013-05-01 16:53:33 -07004257 }
Michael Jurkac402cd92013-05-20 15:49:32 +02004258 };
Hyunyoung Song3f471442015-04-08 19:01:34 -07004259
Hyunyoung Song8821ca92015-05-04 16:28:20 -07004260 @Override
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004261 public void bindAllPackages(final WidgetsModel model) {
Michael Jurkac402cd92013-05-20 15:49:32 +02004262 if (waitUntilResume(mBindPackagesUpdatedRunnable, true)) {
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004263 mWidgetsModel = model;
Winson Chung83892cc2013-05-01 16:53:33 -07004264 return;
4265 }
4266
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -07004267 if (mWidgetsView != null && model != null) {
4268 mWidgetsView.addWidgets(model);
4269 mWidgetsModel = null;
Winson Chung785d2eb2011-04-14 16:08:02 -07004270 }
Winson Chung80baf5a2010-08-09 16:03:15 -07004271 }
4272
Winson Chung400438b2011-01-16 17:53:48 -08004273 private int mapConfigurationOriActivityInfoOri(int configOri) {
4274 final Display d = getWindowManager().getDefaultDisplay();
4275 int naturalOri = Configuration.ORIENTATION_LANDSCAPE;
4276 switch (d.getRotation()) {
4277 case Surface.ROTATION_0:
4278 case Surface.ROTATION_180:
4279 // We are currently in the same basic orientation as the natural orientation
4280 naturalOri = configOri;
4281 break;
4282 case Surface.ROTATION_90:
4283 case Surface.ROTATION_270:
4284 // We are currently in the other basic orientation to the natural orientation
4285 naturalOri = (configOri == Configuration.ORIENTATION_LANDSCAPE) ?
4286 Configuration.ORIENTATION_PORTRAIT : Configuration.ORIENTATION_LANDSCAPE;
4287 break;
4288 }
4289
4290 int[] oriMap = {
4291 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT,
4292 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE,
4293 ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT,
4294 ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE
4295 };
4296 // Since the map starts at portrait, we need to offset if this device's natural orientation
4297 // is landscape.
4298 int indexOffset = 0;
4299 if (naturalOri == Configuration.ORIENTATION_LANDSCAPE) {
4300 indexOffset = 1;
4301 }
4302 return oriMap[(d.getRotation() + indexOffset) % 4];
4303 }
Adam Cohen446e9402011-09-15 18:21:21 -07004304
Winson Chung4b919f82012-05-01 10:44:08 -07004305 public void lockScreenOrientation() {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004306 if (mRotationEnabled) {
Sunny Goyal3c1865a2015-02-10 14:28:44 -08004307 if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN_MR2) {
4308 setRequestedOrientation(mapConfigurationOriActivityInfoOri(getResources()
4309 .getConfiguration().orientation));
4310 } else {
4311 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LOCKED);
4312 }
Winson Chung4b919f82012-05-01 10:44:08 -07004313 }
4314 }
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004315
Winson Chung4b919f82012-05-01 10:44:08 -07004316 public void unlockScreenOrientation(boolean immediate) {
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -07004317 if (mRotationEnabled) {
Winson Chung4b919f82012-05-01 10:44:08 -07004318 if (immediate) {
Winson Chung641d71d2012-04-26 15:58:01 -07004319 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
Winson Chung4b919f82012-05-01 10:44:08 -07004320 } else {
4321 mHandler.postDelayed(new Runnable() {
4322 public void run() {
4323 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4324 }
4325 }, mRestoreScreenOrientationDelay);
Winson Chung641d71d2012-04-26 15:58:01 -07004326 }
Winson Chung4b919f82012-05-01 10:44:08 -07004327 }
Winson Chung400438b2011-01-16 17:53:48 -08004328 }
4329
Winson Chunge43a1e72014-01-15 10:33:02 -08004330 protected boolean isLauncherPreinstalled() {
Adam Cohen9211d422014-10-07 18:14:53 -07004331 if (mLauncherCallbacks != null) {
4332 return mLauncherCallbacks.isLauncherPreinstalled();
4333 }
Winson Chunge43a1e72014-01-15 10:33:02 -08004334 PackageManager pm = getPackageManager();
4335 try {
4336 ApplicationInfo ai = pm.getApplicationInfo(getComponentName().getPackageName(), 0);
4337 if ((ai.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
4338 return true;
4339 } else {
4340 return false;
4341 }
4342 } catch (NameNotFoundException e) {
4343 e.printStackTrace();
4344 return false;
4345 }
4346 }
4347
Adam Cohenea90f832014-05-21 15:03:34 -07004348 /**
4349 * This method indicates whether or not we should suggest default wallpaper dimensions
4350 * when our wallpaper cropper was not yet used to set a wallpaper.
4351 */
4352 protected boolean overrideWallpaperDimensions() {
Adam Cohen9211d422014-10-07 18:14:53 -07004353 if (mLauncherCallbacks != null) {
4354 return mLauncherCallbacks.overrideWallpaperDimensions();
4355 }
Adam Cohenea90f832014-05-21 15:03:34 -07004356 return true;
4357 }
4358
Adam Cohen432609a2014-03-13 17:03:22 -07004359 /**
4360 * To be overridden by subclasses to indicate that there is an activity to launch
4361 * before showing the standard launcher experience.
4362 */
4363 protected boolean hasFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004364 if (mLauncherCallbacks != null) {
4365 return mLauncherCallbacks.hasFirstRunActivity();
4366 }
Adam Cohen432609a2014-03-13 17:03:22 -07004367 return false;
4368 }
4369
4370 /**
4371 * To be overridden by subclasses to launch any first run activity
4372 */
4373 protected Intent getFirstRunActivity() {
Adam Cohen9211d422014-10-07 18:14:53 -07004374 if (mLauncherCallbacks != null) {
4375 return mLauncherCallbacks.getFirstRunActivity();
4376 }
Adam Cohen432609a2014-03-13 17:03:22 -07004377 return null;
4378 }
4379
Winson Chunga6945242014-01-08 14:04:34 -08004380 private boolean shouldRunFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004381 return !ActivityManager.isRunningInTestHarness() &&
4382 !mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
Winson Chunga6945242014-01-08 14:04:34 -08004383 }
4384
Adam Cohen4a9423d2014-03-28 14:22:31 -07004385 protected boolean hasRunFirstRunActivity() {
4386 return mSharedPrefs.getBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, false);
4387 }
4388
Adam Cohen432609a2014-03-13 17:03:22 -07004389 public boolean showFirstRunActivity() {
Adam Cohenbc4539d2014-01-14 14:05:32 -08004390 if (shouldRunFirstRunActivity() &&
4391 hasFirstRunActivity()) {
Winson Chunga6945242014-01-08 14:04:34 -08004392 Intent firstRunIntent = getFirstRunActivity();
4393 if (firstRunIntent != null) {
4394 startActivity(firstRunIntent);
4395 markFirstRunActivityShown();
Adam Cohen432609a2014-03-13 17:03:22 -07004396 return true;
Winson Chunga6945242014-01-08 14:04:34 -08004397 }
4398 }
Adam Cohen432609a2014-03-13 17:03:22 -07004399 return false;
Winson Chunga6945242014-01-08 14:04:34 -08004400 }
4401
4402 private void markFirstRunActivityShown() {
4403 SharedPreferences.Editor editor = mSharedPrefs.edit();
4404 editor.putBoolean(FIRST_RUN_ACTIVITY_DISPLAYED, true);
4405 editor.apply();
4406 }
4407
Adam Cohen432609a2014-03-13 17:03:22 -07004408 /**
4409 * To be overridden by subclasses to indicate that there is an in-activity full-screen intro
4410 * screen that must be displayed and dismissed.
4411 */
4412 protected boolean hasDismissableIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004413 if (mLauncherCallbacks != null) {
4414 return mLauncherCallbacks.hasDismissableIntroScreen();
4415 }
Adam Cohen432609a2014-03-13 17:03:22 -07004416 return false;
4417 }
4418
4419 /**
4420 * Full screen intro screen to be shown and dismissed before the launcher can be used.
4421 */
4422 protected View getIntroScreen() {
Adam Cohen9211d422014-10-07 18:14:53 -07004423 if (mLauncherCallbacks != null) {
4424 return mLauncherCallbacks.getIntroScreen();
4425 }
Adam Cohen432609a2014-03-13 17:03:22 -07004426 return null;
4427 }
4428
4429 /**
4430 * To be overriden by subclasses to indicate whether the in-activity intro screen has been
4431 * dismissed. This method is ignored if #hasDismissableIntroScreen returns false.
4432 */
4433 private boolean shouldShowIntroScreen() {
4434 return hasDismissableIntroScreen() &&
4435 !mSharedPrefs.getBoolean(INTRO_SCREEN_DISMISSED, false);
4436 }
4437
4438 protected void showIntroScreen() {
4439 View introScreen = getIntroScreen();
4440 changeWallpaperVisiblity(false);
4441 if (introScreen != null) {
4442 mDragLayer.showOverlayView(introScreen);
4443 }
Adam Cohenc3e12c72014-10-31 16:15:36 -07004444 if (mLauncherOverlayContainer != null) {
4445 mLauncherOverlayContainer.setVisibility(View.INVISIBLE);
4446 }
Adam Cohen432609a2014-03-13 17:03:22 -07004447 }
4448
4449 public void dismissIntroScreen() {
4450 markIntroScreenDismissed();
4451 if (showFirstRunActivity()) {
4452 // We delay hiding the intro view until the first run activity is showing. This
4453 // avoids a blip.
4454 mWorkspace.postDelayed(new Runnable() {
4455 @Override
4456 public void run() {
4457 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004458 if (mLauncherOverlayContainer != null) {
4459 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4460 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004461 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004462 }
4463 }, ACTIVITY_START_DELAY);
4464 } else {
4465 mDragLayer.dismissOverlayView();
Adam Cohenc3e12c72014-10-31 16:15:36 -07004466 if (mLauncherOverlayContainer != null) {
4467 mLauncherOverlayContainer.setVisibility(View.VISIBLE);
4468 }
Sunny Goyal88d60f12014-09-08 03:47:29 -07004469 showFirstRunClings();
Adam Cohen432609a2014-03-13 17:03:22 -07004470 }
4471 changeWallpaperVisiblity(true);
4472 }
4473
4474 private void markIntroScreenDismissed() {
4475 SharedPreferences.Editor editor = mSharedPrefs.edit();
4476 editor.putBoolean(INTRO_SCREEN_DISMISSED, true);
4477 editor.apply();
4478 }
4479
Adam Cohen091440a2015-03-18 14:16:05 -07004480 @Thunk void showFirstRunClings() {
Sunny Goyal88d60f12014-09-08 03:47:29 -07004481 // The two first run cling paths are mutually exclusive, if the launcher is preinstalled
4482 // on the device, then we always show the first run cling experience (or if there is no
4483 // launcher2). Otherwise, we prompt the user upon started for migration
4484 LauncherClings launcherClings = new LauncherClings(this);
4485 if (launcherClings.shouldShowFirstRunOrMigrationClings()) {
4486 if (mModel.canMigrateFromOldLauncherDb(this)) {
4487 launcherClings.showMigrationCling();
4488 } else {
Sunny Goyalaf0628f2014-09-19 10:14:48 -07004489 launcherClings.showLongPressCling(true);
Sunny Goyal88d60f12014-09-08 03:47:29 -07004490 }
4491 }
4492 }
4493
Winson Chunga6945242014-01-08 14:04:34 -08004494 void showWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004495 if (mWorkspace != null) mWorkspace.setAlpha(1f);
4496 if (mHotseat != null) mHotseat.setAlpha(1f);
4497 if (mPageIndicators != null) mPageIndicators.setAlpha(1f);
4498 if (mSearchDropTargetBar != null) mSearchDropTargetBar.showSearchBar(false);
Winson Chunga6945242014-01-08 14:04:34 -08004499 }
4500
4501 void hideWorkspaceSearchAndHotseat() {
Winson Chung205cd772014-01-15 14:31:59 -08004502 if (mWorkspace != null) mWorkspace.setAlpha(0f);
4503 if (mHotseat != null) mHotseat.setAlpha(0f);
4504 if (mPageIndicators != null) mPageIndicators.setAlpha(0f);
4505 if (mSearchDropTargetBar != null) mSearchDropTargetBar.hideSearchBar(false);
Winson Chunga6945242014-01-08 14:04:34 -08004506 }
4507
Winson Chung5ffd51d2015-06-25 11:36:50 -07004508 // TODO: These method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004509 @TargetApi(Build.VERSION_CODES.LOLLIPOP)
Mathew Inwood72fbec12013-11-19 15:45:07 +00004510 public ItemInfo createAppDragInfo(Intent appLaunchIntent) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004511 // Called from search suggestion
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004512 UserHandleCompat user = null;
4513 if (Utilities.isLmpOrAbove()) {
4514 UserHandle userHandle = appLaunchIntent.getParcelableExtra(Intent.EXTRA_USER);
4515 if (userHandle != null) {
4516 user = UserHandleCompat.fromUser(userHandle);
4517 }
4518 }
4519 return createAppDragInfo(appLaunchIntent, user);
Winson Chung5ffd51d2015-06-25 11:36:50 -07004520 }
4521
4522 // TODO: This method should be a part of LauncherSearchCallback
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004523 public ItemInfo createAppDragInfo(Intent intent, UserHandleCompat user) {
Winson Chung5ffd51d2015-06-25 11:36:50 -07004524 if (user == null) {
4525 user = UserHandleCompat.myUserHandle();
4526 }
4527
4528 // Called from search suggestion, add the profile extra to the intent to ensure that we
4529 // can launch it correctly
Kenny Guyed131872014-04-30 03:02:21 +01004530 LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(this);
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004531 LauncherActivityInfoCompat activityInfo = launcherApps.resolveActivity(intent, user);
Kenny Guyed131872014-04-30 03:02:21 +01004532 if (activityInfo == null) {
Mathew Inwood72fbec12013-11-19 15:45:07 +00004533 return null;
4534 }
Winson Chung5ffd51d2015-06-25 11:36:50 -07004535 return new AppInfo(this, activityInfo, user, mIconCache);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004536 }
4537
Winson Chung5ffd51d2015-06-25 11:36:50 -07004538 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004539 public ItemInfo createShortcutDragInfo(Intent shortcutIntent, CharSequence caption,
4540 Bitmap icon) {
Sunny Goyala1d1bf32015-06-26 13:24:53 -07004541 return new ShortcutInfo(shortcutIntent, caption, caption, icon,
Kenny Guyed131872014-04-30 03:02:21 +01004542 UserHandleCompat.myUserHandle());
4543 }
4544
Winson Chung5ffd51d2015-06-25 11:36:50 -07004545 // TODO: This method should be a part of LauncherSearchCallback
Mathew Inwood72fbec12013-11-19 15:45:07 +00004546 public void startDrag(View dragView, ItemInfo dragInfo, DragSource source) {
4547 dragView.setTag(dragInfo);
Winson Chungbabb53e2014-04-14 17:12:49 -07004548 mWorkspace.onExternalDragStartedWithItem(dragView);
4549 mWorkspace.beginExternalDragShared(dragView, source);
Mathew Inwood72fbec12013-11-19 15:45:07 +00004550 }
4551
Winson Chung5ffd51d2015-06-25 11:36:50 -07004552 protected void moveWorkspaceToDefaultScreen() {
4553 mWorkspace.moveToDefaultScreen(false);
4554 }
4555
Anjali Koppalf5d29132014-02-28 13:33:27 -08004556 @Override
4557 public void onPageSwitch(View newPage, int newPageIndex) {
Adam Cohen9211d422014-10-07 18:14:53 -07004558 if (mLauncherCallbacks != null) {
4559 mLauncherCallbacks.onPageSwitch(newPage, newPageIndex);
4560 }
Anjali Koppalf5d29132014-02-28 13:33:27 -08004561 }
4562
Winson Chung80baf5a2010-08-09 16:03:15 -07004563 /**
Sunny Goyal53d7ee42015-05-22 12:25:45 -07004564 * Returns a FastBitmapDrawable with the icon, accurately sized.
4565 */
4566 public FastBitmapDrawable createIconDrawable(Bitmap icon) {
4567 FastBitmapDrawable d = new FastBitmapDrawable(icon);
4568 d.setFilterBitmap(true);
4569 resizeIconDrawable(d);
4570 return d;
4571 }
4572
4573 /**
4574 * Resizes an icon drawable to the correct icon size.
4575 */
4576 public void resizeIconDrawable(Drawable icon) {
4577 icon.setBounds(0, 0, mDeviceProfile.iconSizePx, mDeviceProfile.iconSizePx);
4578 }
4579
4580 /**
Joe Onoratobe386092009-11-17 17:32:16 -08004581 * Prints out out state for debugging.
4582 */
4583 public void dumpState() {
Daniel Sandler325dc232013-06-05 22:57:57 -04004584 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
Joe Onorato39bfc132009-11-18 17:22:01 -08004585 Log.d(TAG, "mSavedState=" + mSavedState);
Joe Onorato39bfc132009-11-18 17:22:01 -08004586 Log.d(TAG, "mWorkspaceLoading=" + mWorkspaceLoading);
4587 Log.d(TAG, "mRestoring=" + mRestoring);
4588 Log.d(TAG, "mWaitingForResult=" + mWaitingForResult);
Brad Fitzpatrick319226a2010-09-01 13:45:16 -07004589 Log.d(TAG, "sFolders.size=" + sFolders.size());
Joe Onoratobe386092009-11-17 17:32:16 -08004590 mModel.dumpState();
Hyunyoung Song3f471442015-04-08 19:01:34 -07004591 // TODO(hyunyoungs): add mWidgetsView.dumpState(); or mWidgetsModel.dumpState();
Winson Chungf0ea4d32011-06-06 14:27:16 -07004592
Daniel Sandler325dc232013-06-05 22:57:57 -04004593 Log.d(TAG, "END launcher3 dump state");
Joe Onoratobe386092009-11-17 17:32:16 -08004594 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004595
4596 @Override
4597 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
4598 super.dump(prefix, fd, writer, args);
Adam Cohen4caf2982013-08-20 18:54:31 -07004599 synchronized (sDumpLogs) {
4600 writer.println(" ");
4601 writer.println("Debug logs: ");
4602 for (int i = 0; i < sDumpLogs.size(); i++) {
4603 writer.println(" " + sDumpLogs.get(i));
4604 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004605 }
Adam Cohen9211d422014-10-07 18:14:53 -07004606 if (mLauncherCallbacks != null) {
4607 mLauncherCallbacks.dump(prefix, fd, writer, args);
4608 }
Adam Cohen16d7ffc2011-10-05 17:49:14 -07004609 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004610
4611 public static void dumpDebugLogsToConsole() {
Winson Chungede41292013-09-19 16:27:36 -07004612 if (DEBUG_DUMP_LOG) {
4613 synchronized (sDumpLogs) {
4614 Log.d(TAG, "");
4615 Log.d(TAG, "*********************");
4616 Log.d(TAG, "Launcher debug logs: ");
4617 for (int i = 0; i < sDumpLogs.size(); i++) {
4618 Log.d(TAG, " " + sDumpLogs.get(i));
4619 }
4620 Log.d(TAG, "*********************");
4621 Log.d(TAG, "");
Adam Cohen4caf2982013-08-20 18:54:31 -07004622 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004623 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004624 }
4625
4626 public static void addDumpLog(String tag, String log, boolean debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004627 addDumpLog(tag, log, null, debugLog);
4628 }
4629
4630 public static void addDumpLog(String tag, String log, Exception e, boolean debugLog) {
Adam Cohen4caf2982013-08-20 18:54:31 -07004631 if (debugLog) {
Dan Sandler295ae182013-12-10 16:05:47 -05004632 if (e != null) {
4633 Log.d(tag, log, e);
4634 } else {
4635 Log.d(tag, log);
4636 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004637 }
Winson Chungede41292013-09-19 16:27:36 -07004638 if (DEBUG_DUMP_LOG) {
4639 sDateStamp.setTime(System.currentTimeMillis());
4640 synchronized (sDumpLogs) {
Dan Sandler295ae182013-12-10 16:05:47 -05004641 sDumpLogs.add(sDateFormat.format(sDateStamp) + ": " + tag + ", " + log
4642 + (e == null ? "" : (", Exception: " + e)));
Adam Cohen4caf2982013-08-20 18:54:31 -07004643 }
Winson Chungede41292013-09-19 16:27:36 -07004644 }
Adam Cohen4caf2982013-08-20 18:54:31 -07004645 }
4646
Adam Cohen59400422014-03-05 18:07:04 -08004647 public static CustomAppWidget getCustomAppWidget(String name) {
4648 return sCustomAppWidgets.get(name);
4649 }
4650
4651 public static HashMap<String, CustomAppWidget> getCustomAppWidgets() {
4652 return sCustomAppWidgets;
4653 }
4654
Winson Chungede41292013-09-19 16:27:36 -07004655 public void dumpLogsToLocalData() {
4656 if (DEBUG_DUMP_LOG) {
Michael Jurka43467462013-11-14 12:03:58 +01004657 new AsyncTask<Void, Void, Void>() {
4658 public Void doInBackground(Void ... args) {
Winson Chungede41292013-09-19 16:27:36 -07004659 boolean success = false;
4660 sDateStamp.setTime(sRunStart);
4661 String FILENAME = sDateStamp.getMonth() + "-"
4662 + sDateStamp.getDay() + "_"
4663 + sDateStamp.getHours() + "-"
4664 + sDateStamp.getMinutes() + "_"
4665 + sDateStamp.getSeconds() + ".txt";
4666
4667 FileOutputStream fos = null;
4668 File outFile = null;
4669 try {
4670 outFile = new File(getFilesDir(), FILENAME);
4671 outFile.createNewFile();
4672 fos = new FileOutputStream(outFile);
4673 } catch (Exception e) {
4674 e.printStackTrace();
4675 }
4676 if (fos != null) {
4677 PrintWriter writer = new PrintWriter(fos);
4678
4679 writer.println(" ");
4680 writer.println("Debug logs: ");
4681 synchronized (sDumpLogs) {
4682 for (int i = 0; i < sDumpLogs.size(); i++) {
4683 writer.println(" " + sDumpLogs.get(i));
4684 }
4685 }
4686 writer.close();
4687 }
4688 try {
4689 if (fos != null) {
4690 fos.close();
4691 success = true;
4692 }
4693 } catch (IOException e) {
4694 e.printStackTrace();
4695 }
Michael Jurka43467462013-11-14 12:03:58 +01004696 return null;
Winson Chungede41292013-09-19 16:27:36 -07004697 }
Michael Jurka43467462013-11-14 12:03:58 +01004698 }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void) null);
Adam Cohen4caf2982013-08-20 18:54:31 -07004699 }
Adam Cohen487f7dd2012-06-28 18:12:10 -07004700 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08004701}
Michael Jurka2763be32011-02-24 11:19:57 -08004702
Dan Sandlerd5024042014-01-09 15:01:33 -05004703interface DebugIntents {
4704 static final String DELETE_DATABASE = "com.android.launcher3.action.DELETE_DATABASE";
4705 static final String MIGRATE_DATABASE = "com.android.launcher3.action.MIGRATE_DATABASE";
Adam Cohen8b5b05b2014-01-10 21:42:39 +00004706}